-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
1236 lines (1235 loc) · 92.5 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{} (:package |app)
:configs $ {} (:init-fn |app.main/main!) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |respo-router.calcit/ |alerts.calcit/ |docs-workflow/
:entries $ {}
:files $ {}
|app.config $ %{} :FileEntry
:defs $ {}
|dev? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1544873875614) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1624469709435) (:by |rJG4IHzWf)
:data $ {}
|5 $ %{} :Leaf (:at 1624469715390) (:by |rJG4IHzWf) (:text |=)
|D $ %{} :Leaf (:at 1624469714304) (:by |rJG4IHzWf) (:text "|\"dev")
|T $ %{} :Expr (:at 1624469701389) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1624469706777) (:by |rJG4IHzWf) (:text |get-env)
|T $ %{} :Leaf (:at 1624469708397) (:by |rJG4IHzWf) (:text "|\"mode")
|b $ %{} :Leaf (:at 1658657218485) (:by |rJG4IHzWf) (:text "|\"release")
|site $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1545933382603) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157345496) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1518157327696) (:by |root) (:text |site)
|r $ %{} :Expr (:at 1518157327696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157346643) (:by |root) (:text |{})
|yf $ %{} :Expr (:at 1544956719115) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956719115) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1544956719115) (:by |rJG4IHzWf) (:text "|\"workflow")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1527788237503) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |app.config)
|app.main $ %{} :FileEntry
:defs $ {}
|*reel $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610792986987) (:by |rJG4IHzWf) (:text |defatom)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507399777531) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507399778895) (:by |root) (:text |->)
|T $ %{} :Leaf (:at 1507399776350) (:by |root) (:text |reel-schema/reel)
|j $ %{} :Expr (:at 1507399779656) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399781682) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1507401405076) (:by |root) (:text |:base)
|r $ %{} :Leaf (:at 1507399787471) (:by |root) (:text |schema/store)
|r $ %{} :Expr (:at 1507399779656) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399781682) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1507399793097) (:by |root) (:text |:store)
|r $ %{} :Leaf (:at 1507399787471) (:by |root) (:text |schema/store)
|dispatch! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |op)
|t $ %{} :Expr (:at 1547437686766) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1547437687530) (:by |root) (:text |when)
|L $ %{} :Expr (:at 1584874661674) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1584874662518) (:by |rJG4IHzWf) (:text |and)
|T $ %{} :Leaf (:at 1547437691006) (:by |root) (:text |config/dev?)
|j $ %{} :Expr (:at 1584874663522) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584874664551) (:by |rJG4IHzWf) (:text |not=)
|r $ %{} :Leaf (:at 1584874671745) (:by |rJG4IHzWf) (:text |:states)
|t $ %{} :Expr (:at 1694467380782) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1694467381166) (:by |rJG4IHzWf) (:text |nth)
|b $ %{} :Leaf (:at 1694467382030) (:by |rJG4IHzWf) (:text |op)
|h $ %{} :Leaf (:at 1694467382214) (:by |rJG4IHzWf) (:text |0)
|T $ %{} :Expr (:at 1518156274050) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1694467388271) (:by |rJG4IHzWf) (:text |js/console.log)
|r $ %{} :Leaf (:at 1547437698992) (:by |root) (:text "|\"Dispatch:")
|v $ %{} :Leaf (:at 1518156280471) (:by |root) (:text |op)
|v $ %{} :Expr (:at 1584780634192) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |reset!)
|j $ %{} :Leaf (:at 1507399899641) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507399884621) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399887573) (:by |root) (:text |reel-updater)
|j $ %{} :Leaf (:at 1507399888500) (:by |root) (:text |updater)
|r $ %{} :Leaf (:at 1507399891576) (:by |root) (:text |@*reel)
|v $ %{} :Leaf (:at 1507399892687) (:by |root) (:text |op)
|main! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |main!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|sj $ %{} :Expr (:at 1648960476301) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648960476301) (:by |rJG4IHzWf) (:text |register-languages!)
|t $ %{} :Expr (:at 1544874433785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544874434638) (:by |rJG4IHzWf) (:text |println)
|j $ %{} :Leaf (:at 1544874509800) (:by |rJG4IHzWf) (:text "|\"Running mode:")
|r $ %{} :Expr (:at 1544874440404) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544874440190) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1544874446442) (:by |rJG4IHzWf) (:text |config/dev?)
|r $ %{} :Leaf (:at 1544874449063) (:by |rJG4IHzWf) (:text "|\"dev")
|v $ %{} :Leaf (:at 1544874452316) (:by |rJG4IHzWf) (:text "|\"release")
|v $ %{} :Expr (:at 1636914348413) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1636914349962) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1636914351563) (:by |rJG4IHzWf) (:text |config/dev?)
|r $ %{} :Expr (:at 1636914352112) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1636914358071) (:by |rJG4IHzWf) (:text |load-console-formatter!)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|y $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |add-watch)
|j $ %{} :Leaf (:at 1507399915531) (:by |root) (:text |*reel)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:changes)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1612280609284) (:by |rJG4IHzWf) (:text |reel)
|j $ %{} :Leaf (:at 1612280610651) (:by |rJG4IHzWf) (:text |prev)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|yD $ %{} :Expr (:at 1507461684494) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461739167) (:by |root) (:text |listen-devtools!)
|j $ %{} :Leaf (:at 1624007376825) (:by |rJG4IHzWf) (:text ||k)
|r $ %{} :Leaf (:at 1507461693919) (:by |root) (:text |dispatch!)
|yL $ %{} :Expr (:at 1518157357847) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1646150136497) (:by |rJG4IHzWf) (:text |js/window.addEventListener)
|r $ %{} :Leaf (:at 1518157458163) (:by |root) (:text ||beforeunload)
|v $ %{} :Expr (:at 1612344221583) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612344222204) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1612344222530) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612344223520) (:by |rJG4IHzWf) (:text |event)
|T $ %{} :Expr (:at 1612344224533) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!)
|yO $ %{} :Expr (:at 1646150039456) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1646150045747) (:by |rJG4IHzWf) (:text |flipped)
|T $ %{} :Leaf (:at 1646150042154) (:by |rJG4IHzWf) (:text |js/setInterval)
|b $ %{} :Leaf (:at 1646150175987) (:by |rJG4IHzWf) (:text |60000)
|h $ %{} :Leaf (:at 1646150050057) (:by |rJG4IHzWf) (:text |persist-storage!)
|yP $ %{} :Expr (:at 1518157492640) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1648634362331) (:by |rJG4IHzWf) (:text |;)
|T $ %{} :Leaf (:at 1518157495438) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1518157495644) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1518157495826) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157496930) (:by |root) (:text |raw)
|j $ %{} :Expr (:at 1518157497615) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1646150065132) (:by |rJG4IHzWf) (:text |js/localStorage.getItem)
|r $ %{} :Expr (:at 1518157506313) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1544956709260) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1527788293499) (:by |root) (:text |config/site)
|r $ %{} :Expr (:at 1518157514334) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533919640958) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Expr (:at 1518157515117) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157515786) (:by |root) (:text |some?)
|j $ %{} :Leaf (:at 1518157516878) (:by |root) (:text |raw)
|r $ %{} :Expr (:at 1518157521635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157523818) (:by |root) (:text |dispatch!)
|j $ %{} :Leaf (:at 1518157669936) (:by |root) (:text |:hydrate-storage)
|r $ %{} :Expr (:at 1518157527987) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1624469412598) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|j $ %{} :Leaf (:at 1518157531240) (:by |root) (:text |raw)
|yT $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |println)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text "||App started.")
|mount-target $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |mount-target)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1624469553191) (:by |rJG4IHzWf) (:text |.!querySelector)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |js/document)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text ||.app)
|persist-storage! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919517365) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!)
|n $ %{} :Expr (:at 1646150052705) (:by |rJG4IHzWf)
:data $ {}
|r $ %{} :Expr (:at 1646150152124) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1646150154932) (:by |rJG4IHzWf) (:text |js/console.log)
|b $ %{} :Leaf (:at 1646150157857) (:by |rJG4IHzWf) (:text "|\"persist")
|v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|j $ %{} :Leaf (:at 1646150150852) (:by |rJG4IHzWf) (:text |js/localStorage.setItem)
|r $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956703087) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |config/site)
|v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1624469402829) (:by |rJG4IHzWf) (:text |format-cirru-edn)
|j $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |:store)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |@*reel)
|reload! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1626201152815) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1626201153853) (:by |rJG4IHzWf) (:text |defn)
|L $ %{} :Leaf (:at 1626201157449) (:by |rJG4IHzWf) (:text |reload!)
|P $ %{} :Expr (:at 1626201163076) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1626201191606) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1626201192115) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1626201192626) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1626201534497) (:by |rJG4IHzWf) (:text |nil?)
|j $ %{} :Leaf (:at 1626201194806) (:by |rJG4IHzWf) (:text |build-errors)
|T $ %{} :Expr (:at 1626201164538) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1626201161775) (:by |rJG4IHzWf) (:text |do)
|j $ %{} :Expr (:at 1614750747553) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1614750747553) (:by |rJG4IHzWf) (:text |remove-watch)
|j $ %{} :Leaf (:at 1614750747553) (:by |rJG4IHzWf) (:text |*reel)
|r $ %{} :Leaf (:at 1614750747553) (:by |rJG4IHzWf) (:text |:changes)
|r $ %{} :Expr (:at 1507461699387) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461702453) (:by |root) (:text |clear-cache!)
|v $ %{} :Expr (:at 1612280627439) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |add-watch)
|j $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |*reel)
|r $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |:changes)
|v $ %{} :Expr (:at 1612280627439) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1612280627439) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |reel)
|j $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |prev)
|r $ %{} :Expr (:at 1612280627439) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612280627439) (:by |rJG4IHzWf) (:text |render-app!)
|x $ %{} :Expr (:at 1507461704162) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461706990) (:by |root) (:text |reset!)
|j $ %{} :Leaf (:at 1507461708965) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507461710020) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461730190) (:by |root) (:text |refresh-reel)
|j $ %{} :Leaf (:at 1507461719097) (:by |root) (:text |@*reel)
|r $ %{} :Leaf (:at 1507461721870) (:by |root) (:text |schema/store)
|v $ %{} :Leaf (:at 1507461722724) (:by |root) (:text |updater)
|y $ %{} :Expr (:at 1626777542168) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1626777542168) (:by |rJG4IHzWf) (:text |hud!)
|j $ %{} :Leaf (:at 1626777542168) (:by |rJG4IHzWf) (:text "|\"ok~")
|r $ %{} :Leaf (:at 1626777542168) (:by |rJG4IHzWf) (:text "|\"Ok")
|j $ %{} :Expr (:at 1626201203433) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1626290831868) (:by |rJG4IHzWf) (:text |hud!)
|b $ %{} :Leaf (:at 1626290930377) (:by |rJG4IHzWf) (:text "|\"error")
|j $ %{} :Leaf (:at 1626201209903) (:by |rJG4IHzWf) (:text |build-errors)
|render-app! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1624469436438) (:by |rJG4IHzWf) (:text |render!)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |mount-target)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|j $ %{} :Leaf (:at 1507400119272) (:by |root) (:text |@*reel)
|n $ %{} :Leaf (:at 1648585564758) (:by |rJG4IHzWf) (:text |schema/docs)
|v $ %{} :Leaf (:at 1623915174985) (:by |rJG4IHzWf) (:text |dispatch!)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |app.main)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render!)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |clear-cache!)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1648704877144) (:by |rJG4IHzWf) (:text |docs-workflow.comp.container)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|y $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1508556737455) (:by |root) (:text |app.updater)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |updater)
|yT $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |app.schema)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |schema)
|yj $ %{} :Expr (:at 1507399674125) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507399678694) (:by |root) (:text |reel.util)
|r $ %{} :Leaf (:at 1507399680625) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1507399680857) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1518156292092) (:by |root) (:text |listen-devtools!)
|yr $ %{} :Expr (:at 1507399683930) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507399687162) (:by |root) (:text |reel.core)
|r $ %{} :Leaf (:at 1507399688098) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1507399688322) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507399691010) (:by |root) (:text |reel-updater)
|q $ %{} :Leaf (:at 1518156288482) (:by |root) (:text |refresh-reel)
|yv $ %{} :Expr (:at 1507399715229) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507399717674) (:by |root) (:text |reel.schema)
|r $ %{} :Leaf (:at 1507399755750) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1507399757678) (:by |root) (:text |reel-schema)
|yy $ %{} :Expr (:at 1527788302920) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1527788304925) (:by |root) (:text |app.config)
|r $ %{} :Leaf (:at 1527788306048) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1527788306884) (:by |root) (:text |config)
|yyT $ %{} :Expr (:at 1626201173819) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1626201180939) (:by |rJG4IHzWf) (:text "|\"./calcit.build-errors")
|j $ %{} :Leaf (:at 1626201183958) (:by |rJG4IHzWf) (:text |:default)
|r $ %{} :Leaf (:at 1626201187310) (:by |rJG4IHzWf) (:text |build-errors)
|yyj $ %{} :Expr (:at 1626290808117) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1626290810913) (:by |rJG4IHzWf) (:text "|\"bottom-tip")
|j $ %{} :Leaf (:at 1626290816153) (:by |rJG4IHzWf) (:text |:default)
|r $ %{} :Leaf (:at 1626290825711) (:by |rJG4IHzWf) (:text |hud!)
|yz $ %{} :Expr (:at 1648960484486) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648960484486) (:by |rJG4IHzWf) (:text |docs-workflow.config)
|b $ %{} :Leaf (:at 1648960484486) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1648960484486) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648960484486) (:by |rJG4IHzWf) (:text |register-languages!)
|app.schema $ %{} :FileEntry
:defs $ {}
|docs $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1646491858255) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1646491860967) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1646491858255) (:by |rJG4IHzWf) (:text |docs)
|h $ %{} :Expr (:at 1646491858255) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1646491862770) (:by |rJG4IHzWf) (:text |[])
|X $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808161000) (:by |rJG4IHzWf) (:text "|\"Home")
|h $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808163311) (:by |rJG4IHzWf) (:text |:home)
|l $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808165228) (:by |rJG4IHzWf) (:text "|\"home.md")
|o $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:children)
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |[])
|e $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808211903) (:by |rJG4IHzWf) (:text "|\"Beginner Guide")
|h $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808215978) (:by |rJG4IHzWf) (:text |:beginner-guide)
|l $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808217349) (:by |rJG4IHzWf) (:text "|\"beginner-guide.md")
|o $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:children)
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808224891) (:by |rJG4IHzWf) (:text "|\"Guide")
|h $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808229943) (:by |rJG4IHzWf) (:text |:guide)
|l $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808231311) (:by |rJG4IHzWf) (:text "|\"guide.md")
|o $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |:children)
|b $ %{} :Expr (:at 1648705062222) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648705062222) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808244009) (:by |rJG4IHzWf) (:text "|\"Why Respo")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808282588) (:by |rJG4IHzWf) (:text |:why-respo)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808248723) (:by |rJG4IHzWf) (:text "|\"guide/why-respo.md")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808264877) (:by |rJG4IHzWf) (:text "|\"Pros and Cons")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808318595) (:by |rJG4IHzWf) (:text |:pros-and-cons)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808272513) (:by |rJG4IHzWf) (:text "|\"guide/pros-and-cons.md")
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808326392) (:by |rJG4IHzWf) (:text "|\"DOM Elements")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808334091) (:by |rJG4IHzWf) (:text |:dom-elements)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808337377) (:by |rJG4IHzWf) (:text "|\"guide/dom-elements.md")
|o $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808343517) (:by |rJG4IHzWf) (:text "|\"DOM Properties")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808348759) (:by |rJG4IHzWf) (:text |:dom-properties)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808352114) (:by |rJG4IHzWf) (:text "|\"guide/dom-properties.md")
|q $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808360541) (:by |rJG4IHzWf) (:text "|\"DOM Events")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808365212) (:by |rJG4IHzWf) (:text |:dom-events)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808368071) (:by |rJG4IHzWf) (:text "|\"guide/dom-events.md")
|s $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808374120) (:by |rJG4IHzWf) (:text "|\"Styles")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808379597) (:by |rJG4IHzWf) (:text |:styles)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808383314) (:by |rJG4IHzWf) (:text "|\"guide/styles.md")
|t $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808390558) (:by |rJG4IHzWf) (:text "|\"Virtual DOM")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808394640) (:by |rJG4IHzWf) (:text |:virtual-dom)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808395989) (:by |rJG4IHzWf) (:text "|\"guide/virtual-dom.md")
|u $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808403364) (:by |rJG4IHzWf) (:text "|\"Define Effect")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808407966) (:by |rJG4IHzWf) (:text |:defeffect)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808839391) (:by |rJG4IHzWf) (:text "|\"apis/defeffect.md")
|v $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808419029) (:by |rJG4IHzWf) (:text "|\"List Rendering")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808423513) (:by |rJG4IHzWf) (:text |:render-list)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808425714) (:by |rJG4IHzWf) (:text "|\"guide/render-list.md")
|w $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808432717) (:by |rJG4IHzWf) (:text "|\"Component States")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808438269) (:by |rJG4IHzWf) (:text |:component-states)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808441148) (:by |rJG4IHzWf) (:text "|\"guide/component-states.md")
|x $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808453774) (:by |rJG4IHzWf) (:text "|\"Hot Swapping")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808459887) (:by |rJG4IHzWf) (:text |:hot-swapping)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808462851) (:by |rJG4IHzWf) (:text "|\"guide/hot-swapping.md")
|y $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808470056) (:by |rJG4IHzWf) (:text "|\"Base Components")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808474511) (:by |rJG4IHzWf) (:text |:base-components)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808477209) (:by |rJG4IHzWf) (:text "|\"guide/base-components.md")
|z $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808484917) (:by |rJG4IHzWf) (:text "|\"Server Rendering")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808490273) (:by |rJG4IHzWf) (:text |:server-rendering)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808493865) (:by |rJG4IHzWf) (:text "|\"guide/server-rendering.md")
|zD $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808544146) (:by |rJG4IHzWf) (:text "|\"Trouble Shooting")
|h $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808550037) (:by |rJG4IHzWf) (:text |:trouble-shooting)
|l $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808236063) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808236063) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808552206) (:by |rJG4IHzWf) (:text "|\"guide/trouble-shooting.md")
|n $ %{} :Expr (:at 1648808853033) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808853033) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808853033) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808853033) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808856806) (:by |rJG4IHzWf) (:text "|\"API")
|h $ %{} :Expr (:at 1648808853033) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808853033) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808858974) (:by |rJG4IHzWf) (:text |:api)
|l $ %{} :Expr (:at 1648808853033) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808853033) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808853033) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808853033) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809273734) (:by |rJG4IHzWf) (:text "|\"api.md")
|o $ %{} :Expr (:at 1648808867377) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808869049) (:by |rJG4IHzWf) (:text |:children)
|b $ %{} :Expr (:at 1648808871950) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808872182) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808884122) (:by |rJG4IHzWf) (:text "|\"defcomp")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808888587) (:by |rJG4IHzWf) (:text |:defcomp)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808896559) (:by |rJG4IHzWf) (:text "|\"apis/defcomp.md")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808903910) (:by |rJG4IHzWf) (:text "|\"div")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808905244) (:by |rJG4IHzWf) (:text |:div)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808907033) (:by |rJG4IHzWf) (:text "|\"apis/div.md")
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808912948) (:by |rJG4IHzWf) (:text "|\"<>")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808917498) (:by |rJG4IHzWf) (:text |:expand-tag)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808920917) (:by |rJG4IHzWf) (:text "|\"apis/expand-tag.md")
|m $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808954784) (:by |rJG4IHzWf) (:text "|\"defeffect")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808957929) (:by |rJG4IHzWf) (:text |:defeffect)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808965285) (:by |rJG4IHzWf) (:text "|\"apis/defeffect.md")
|o $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808926327) (:by |rJG4IHzWf) (:text "|\"create-element")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808931553) (:by |rJG4IHzWf) (:text |:create-element)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808944289) (:by |rJG4IHzWf) (:text "|\"apis/create-element.md")
|q $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808972720) (:by |rJG4IHzWf) (:text "|\"render!")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648808985456) (:by |rJG4IHzWf) (:text |:render!)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648808983227) (:by |rJG4IHzWf) (:text "|\"apis/render_.md")
|s $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648808997854) (:by |rJG4IHzWf) (:text "|\"clear-cache!")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809005543) (:by |rJG4IHzWf) (:text |:clear-cacher!)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809012503) (:by |rJG4IHzWf) (:text "|\"apis/clear-cache_.md")
|t $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809023116) (:by |rJG4IHzWf) (:text "|\"realize-ssr!")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809032323) (:by |rJG4IHzWf) (:text |:realize-ssr!)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809039446) (:by |rJG4IHzWf) (:text "|\"apis/realize-ssr_.md")
|u $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809050297) (:by |rJG4IHzWf) (:text "|\"list->")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809057065) (:by |rJG4IHzWf) (:text |:list->)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809062396) (:by |rJG4IHzWf) (:text "|\"apis/list-_.md")
|v $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809070338) (:by |rJG4IHzWf) (:text "|\">>")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809076320) (:by |rJG4IHzWf) (:text |:pick-states)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809080235) (:by |rJG4IHzWf) (:text "|\"apis/pick-states.md")
|w $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809091582) (:by |rJG4IHzWf) (:text "|\"comp-space")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809094675) (:by |rJG4IHzWf) (:text |:comp-space)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809101343) (:by |rJG4IHzWf) (:text "|\"apis/comp-space.md")
|x $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809110612) (:by |rJG4IHzWf) (:text "|\"comp-inspect")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809113411) (:by |rJG4IHzWf) (:text |:comp-inspect)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809115999) (:by |rJG4IHzWf) (:text "|\"apis/comp-inspect.md")
|y $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809133831) (:by |rJG4IHzWf) (:text "|\"make-string")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809137078) (:by |rJG4IHzWf) (:text |:make-string)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |load-doc)
|b $ %{} :Leaf (:at 1648809141032) (:by |rJG4IHzWf) (:text "|\"apis/make-string.md")
|z $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:title)
|b $ %{} :Leaf (:at 1648809149452) (:by |rJG4IHzWf) (:text "|\"render-app")
|h $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:key)
|b $ %{} :Leaf (:at 1648809152749) (:by |rJG4IHzWf) (:text |:render-app)
|l $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1648808879824) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Expr (:at 1648808879824) (:by |rJG4IHzWf)
:data $ {}