-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
2906 lines (2905 loc) · 224 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 $ {} (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (: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-feather.calcit/ |respo-message.calcit/
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1507461830530) (:by |root) (:text |reel)
|v $ %{} :Expr (:at 1507461832154) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507461833421) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1507461834351) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1507461834650) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461835738) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1507461836110) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461837276) (:by |root) (:text |:store)
|j $ %{} :Leaf (:at 1507461838285) (:by |root) (:text |reel)
|j $ %{} :Expr (:at 1509727104820) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727105928) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1509727106316) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727107223) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1509727108033) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1526142656380) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142658337) (:by |root) (:text |router)
|j $ %{} :Expr (:at 1526142658598) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142660011) (:by |root) (:text |:router)
|j $ %{} :Leaf (:at 1526142660790) (:by |root) (:text |store)
|T $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1667580068234) (:by |root) (:text |:class-name)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1667580071430) (:by |root) (:text |str-spaced)
|j $ %{} :Leaf (:at 1667580073229) (:by |root) (:text |css/global)
|n $ %{} :Leaf (:at 1667580075358) (:by |rJG4IHzWf) (:text |css/fullscreen)
|r $ %{} :Leaf (:at 1667580077227) (:by |root) (:text |css/column)
|m $ %{} :Expr (:at 1526142646067) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1667580046961) (:by |rJG4IHzWf) (:text |case-default)
|j $ %{} :Expr (:at 1526142648058) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142649002) (:by |root) (:text |:name)
|j $ %{} :Leaf (:at 1526142664443) (:by |root) (:text |router)
|n $ %{} :Expr (:at 1667580050436) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580050436) (:by |rJG4IHzWf) (:text |<>)
|b $ %{} :Leaf (:at 1667580050436) (:by |rJG4IHzWf) (:text |router)
|r $ %{} :Expr (:at 1526142665060) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142667536) (:by |root) (:text |:home)
|j $ %{} :Expr (:at 1526142770743) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142773139) (:by |root) (:text |comp-editor)
|b $ %{} :Expr (:at 1629306269651) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629306270509) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1526143067156) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1629306271356) (:by |rJG4IHzWf) (:text |:editor)
|j $ %{} :Expr (:at 1526142796422) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142797302) (:by |root) (:text |:content)
|j $ %{} :Leaf (:at 1526142798097) (:by |root) (:text |store)
|v $ %{} :Expr (:at 1526142674509) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142680542) (:by |root) (:text |:viewer)
|j $ %{} :Expr (:at 1526142850284) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142853979) (:by |root) (:text |comp-viewer)
|j $ %{} :Expr (:at 1526142854460) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142856331) (:by |root) (:text |:content)
|j $ %{} :Leaf (:at 1526142857183) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1526142294815) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142297760) (:by |root) (:text |comp-nav)
|j $ %{} :Expr (:at 1527094654122) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094655539) (:by |root) (:text |:name)
|j $ %{} :Leaf (:at 1527094657870) (:by |root) (:text |router)
|u $ %{} :Expr (:at 1722793330466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793335139) (:by |rJG4IHzWf) (:text |comp-upload)
|b $ %{} :Expr (:at 1722793336430) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793337166) (:by |rJG4IHzWf) (:text |:content)
|b $ %{} :Leaf (:at 1722793338723) (:by |rJG4IHzWf) (:text |store)
|v $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |comp-messages)
|b $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |:messages)
|b $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |store)
|h $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |:bottom?)
|b $ %{} :Leaf (:at 1722795421848) (:by |rJG4IHzWf) (:text |false)
|l $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |info)
|b $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1722794892196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |action/remove-one)
|h $ %{} :Leaf (:at 1722794892196) (:by |rJG4IHzWf) (:text |info)
|w $ %{} :Expr (:at 1722795279366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722795281024) (:by |rJG4IHzWf) (:text |when)
|b $ %{} :Leaf (:at 1722795309899) (:by |rJG4IHzWf) (:text |dev?)
|h $ %{} :Expr (:at 1722795283135) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722795284834) (:by |rJG4IHzWf) (:text |comp-inspect)
|b $ %{} :Leaf (:at 1722795287824) (:by |rJG4IHzWf) (:text "|\"Store")
|h $ %{} :Leaf (:at 1722795290194) (:by |rJG4IHzWf) (:text |store)
|l $ %{} :Expr (:at 1722795290738) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722795291034) (:by |rJG4IHzWf) (:text |{})
|x $ %{} :Expr (:at 1521954055333) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?)
|T $ %{} :Expr (:at 1507461809635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461815046) (:by |root) (:text |comp-reel)
|b $ %{} :Expr (:at 1629306263617) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629306264684) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1629306265573) (:by |rJG4IHzWf) (:text |:reel)
|j $ %{} :Leaf (:at 1507461840459) (:by |root) (:text |reel)
|r $ %{} :Expr (:at 1507461840980) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461841342) (:by |root) (:text |{})
: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.comp.container)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1629306252147) (:by |rJG4IHzWf) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1629306245435) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|n $ %{} :Leaf (:at 1629306257674) (:by |root) (:text |>>)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by nil) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|xT $ %{} :Expr (:at 1722795297354) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722795302742) (:by |rJG4IHzWf) (:text |respo.comp.inspect)
|b $ %{} :Leaf (:at 1722795303676) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1722795303947) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722795307018) (:by |rJG4IHzWf) (:text |comp-inspect)
|y $ %{} :Expr (:at 1507461845717) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507461855480) (:by |root) (:text |reel.comp.reel)
|r $ %{} :Leaf (:at 1507461856264) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1507461856484) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507461858342) (:by |root) (:text |comp-reel)
|yT $ %{} :Expr (:at 1519699088529) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1519699093683) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1667579820720) (:by |rJG4IHzWf) (:text |app.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|yr $ %{} :Expr (:at 1526142301823) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142310226) (:by |root) (:text |app.comp.nav)
|r $ %{} :Leaf (:at 1526142310973) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1526142311227) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142313110) (:by |root) (:text |comp-nav)
|n $ %{} :Leaf (:at 1722793384942) (:by |rJG4IHzWf) (:text |comp-upload)
|yv $ %{} :Expr (:at 1526142301823) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142779455) (:by |root) (:text |app.comp.editor)
|r $ %{} :Leaf (:at 1526142310973) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1526142311227) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142781524) (:by |root) (:text |comp-editor)
|yx $ %{} :Expr (:at 1526142301823) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142863316) (:by |root) (:text |app.comp.viewer)
|r $ %{} :Leaf (:at 1526142310973) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1526142311227) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142875980) (:by |root) (:text |comp-viewer)
|z $ %{} :Expr (:at 1667580056007) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580060465) (:by |rJG4IHzWf) (:text |respo-ui.css)
|b $ %{} :Leaf (:at 1667580097129) (:by |rJG4IHzWf) (:text |:as)
|h $ %{} :Leaf (:at 1667580062258) (:by |rJG4IHzWf) (:text |css)
|zD $ %{} :Expr (:at 1722794830194) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794830477) (:by |rJG4IHzWf) (:text |respo-message.comp.messages)
|b $ %{} :Leaf (:at 1722794831948) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1722794832289) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794835334) (:by |rJG4IHzWf) (:text |comp-messages)
|zP $ %{} :Expr (:at 1722794910484) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794910109) (:by |rJG4IHzWf) (:text |respo-message.action)
|b $ %{} :Leaf (:at 1722794917949) (:by |rJG4IHzWf) (:text |:as)
|h $ %{} :Leaf (:at 1722794915773) (:by |rJG4IHzWf) (:text |action)
|app.comp.editor $ %{} :FileEntry
:defs $ {}
|comp-editor $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1526142739535) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142741435) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1526142739535) (:by |root) (:text |comp-editor)
|r $ %{} :Expr (:at 1526142739535) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1526143071616) (:by |root) (:text |states)
|T $ %{} :Leaf (:at 1526142801390) (:by |root) (:text |content)
|v $ %{} :Expr (:at 1526143073042) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1526143075084) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1526143075335) (:by |root)
:data $ {}
|D $ %{} :Expr (:at 1629306300395) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629306301563) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1629306301841) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629306303536) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1629306305062) (:by |rJG4IHzWf) (:text |states)
|T $ %{} :Expr (:at 1526143075452) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143076154) (:by |root) (:text |state)
|j $ %{} :Expr (:at 1526143089255) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1526143089874) (:by |root) (:text |or)
|T $ %{} :Expr (:at 1526143076686) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143077312) (:by |root) (:text |:data)
|j $ %{} :Leaf (:at 1526143078148) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1526143091141) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143091469) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1526143091687) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143094610) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1526143095432) (:by |root) (:text "|\"")
|T $ %{} :Expr (:at 1526142742414) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142742870) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1526142743092) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142743430) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1667580549911) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580553017) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1667580553331) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580555868) (:by |rJG4IHzWf) (:text |str-spaced)
|b $ %{} :Leaf (:at 1667580558008) (:by |rJG4IHzWf) (:text |css/flex)
|h $ %{} :Leaf (:at 1667580559873) (:by |rJG4IHzWf) (:text |css/flex)
|j $ %{} :Expr (:at 1526143147883) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143150297) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1526923679466) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526923679802) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1526923683345) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526923685286) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1526923694017) (:by |root) (:text "|\"16px")
|r $ %{} :Expr (:at 1512359496483) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1512359503438) (:by nil) (:text |textarea)
|j $ %{} :Expr (:at 1512359504511) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1512359504843) (:by nil) (:text |{})
|j $ %{} :Expr (:at 1512359505095) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1512359505740) (:by nil) (:text |:value)
|j $ %{} :Expr (:at 1526143097385) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143098375) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1526143099267) (:by |root) (:text |state)
|n $ %{} :Expr (:at 1512359562842) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1512359565393) (:by nil) (:text |:placeholder)
|j $ %{} :Expr (:at 1526143097385) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143098375) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1526143099267) (:by |root) (:text |state)
|p $ %{} :Expr (:at 1512359616676) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1671618431271) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1667580525981) (:by |rJG4IHzWf) (:text |css-textbox)
|r $ %{} :Expr (:at 1512359551423) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1515731637149) (:by |root) (:text |:on-input)
|r $ %{} :Expr (:at 1629306310921) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629306311652) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1629306311953) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629306312490) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1629306313317) (:by |rJG4IHzWf) (:text |d!)
|T $ %{} :Expr (:at 1515731639686) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629306308231) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Leaf (:at 1629306310360) (:by |rJG4IHzWf) (:text |cursor)
|v $ %{} :Expr (:at 1526143113424) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1526143115619) (:by |root) (:text |assoc)
|L $ %{} :Leaf (:at 1526143117534) (:by |root) (:text |state)
|P $ %{} :Leaf (:at 1526143120838) (:by |root) (:text |:text)
|T $ %{} :Expr (:at 1512359558827) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1512359559399) (:by nil) (:text |:value)
|j $ %{} :Leaf (:at 1629307854956) (:by |rJG4IHzWf) (:text |e)
|t $ %{} :Expr (:at 1526143201449) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143202017) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1526143204214) (:by |root) (:text |nil)
|r $ %{} :Leaf (:at 1526143205061) (:by |root) (:text |16)
|v $ %{} :Expr (:at 1526143144062) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143145184) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1526143145387) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143145717) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1526143160197) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143161034) (:by |root) (:text |button)
|j $ %{} :Expr (:at 1526143161450) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143161864) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1526143193536) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1667580579296) (:by |rJG4IHzWf) (:text |:class-name)
|j $ %{} :Leaf (:at 1667580576055) (:by |rJG4IHzWf) (:text |css/button)
|r $ %{} :Expr (:at 1526143219595) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143221525) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1526143221996) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143222413) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1526143223127) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143223462) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1526143224161) (:by |root) (:text |d!)
|r $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |do)
|j $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |:content)
|r $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|j $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |:text)
|j $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |state)
|r $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |:router)
|r $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1629313096657) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |:name)
|j $ %{} :Leaf (:at 1629313096657) (:by |rJG4IHzWf) (:text |:viewer)
|r $ %{} :Expr (:at 1526143185045) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526143185584) (:by |root) (:text |<>)
|j $ %{} :Leaf (:at 1526143189268) (:by |root) (:text "|\"Submit")
|css-textbox $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1667580526421) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580528271) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1667580526421) (:by |rJG4IHzWf) (:text |css-textbox)
|h $ %{} :Expr (:at 1667580526421) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580529409) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1667580529882) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531019) (:by |rJG4IHzWf) (:text "|\"$0")
|b $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |merge)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |ui/textarea)
|h $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:width)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text "|\"100%")
|h $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:height)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |400)
|l $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:font-family)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |ui/font-code)
|o $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:font-size)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |12)
|q $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:line-height)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text "|\"1.6em")
|s $ %{} :Expr (:at 1667580531466) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:white-space)
|b $ %{} :Leaf (:at 1667580531466) (:by |rJG4IHzWf) (:text |:nowrap)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1526142735890) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142735890) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1526142735890) (:by |root) (:text |app.comp.editor)
|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 1629306449736) (:by |rJG4IHzWf) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1629306442335) (:by |rJG4IHzWf) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by nil) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|yT $ %{} :Expr (:at 1519699088529) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1519699093683) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md)
|yr $ %{} :Expr (:at 1526142458304) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142466435) (:by |root) (:text |respo-ui.comp.icon)
|r $ %{} :Leaf (:at 1526142467254) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1526142467511) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1526142469515) (:by |root) (:text |comp-icon)
|z $ %{} :Expr (:at 1667580534129) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580536255) (:by |rJG4IHzWf) (:text |respo.css)
|b $ %{} :Leaf (:at 1667580541553) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1667580541840) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580543137) (:by |rJG4IHzWf) (:text |defstyle)
|zD $ %{} :Expr (:at 1667580563138) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580565079) (:by |rJG4IHzWf) (:text |respo-ui.css)
|b $ %{} :Leaf (:at 1667580565507) (:by |rJG4IHzWf) (:text |:as)
|h $ %{} :Leaf (:at 1667580566128) (:by |rJG4IHzWf) (:text |css)
|app.comp.nav $ %{} :FileEntry
:defs $ {}
|comp-link $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094562755) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |comp-link)
|n $ %{} :Expr (:at 1527094563544) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094576742) (:by |root) (:text |page)
|b $ %{} :Leaf (:at 1527094590921) (:by |root) (:text |icon)
|j $ %{} :Leaf (:at 1527094587055) (:by |root) (:text |active?)
|r $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1667580483093) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580484891) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1667580486766) (:by |rJG4IHzWf) (:text |css-icon)
|j $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1527094604065) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094606233) (:by |root) (:text |if)
|j $ %{} :Leaf (:at 1527094607925) (:by |root) (:text |active?)
|r $ %{} :Expr (:at 1527094608295) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094609042) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1527094610701) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094611579) (:by |root) (:text |:color)
|j $ %{} :Leaf (:at 1527094614215) (:by |root) (:text |:black)
|r $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1629306283437) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1629306284388) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1629306284720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629306284970) (:by |rJG4IHzWf) (:text |e)
|j $ %{} :Leaf (:at 1629306285579) (:by |rJG4IHzWf) (:text |d!)
|T $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629306282471) (:by |rJG4IHzWf) (:text |d!)
|j $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |:router)
|r $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |:name)
|j $ %{} :Leaf (:at 1527094599927) (:by |root) (:text |page)
|r $ %{} :Expr (:at 1527094559101) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629307713471) (:by |rJG4IHzWf) (:text |comp-i)
|j $ %{} :Leaf (:at 1527094594621) (:by |root) (:text |icon)
|r $ %{} :Leaf (:at 1629314820479) (:by |rJG4IHzWf) (:text |16)
|v $ %{} :Expr (:at 1629307739539) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629307740857) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1629307743651) (:by |rJG4IHzWf) (:text |200)
|r $ %{} :Leaf (:at 1629307744679) (:by |rJG4IHzWf) (:text |80)
|v $ %{} :Leaf (:at 1629307746017) (:by |rJG4IHzWf) (:text |70)
|comp-nav $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1526142259031) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142262043) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1526142259031) (:by |root) (:text |comp-nav)
|r $ %{} :Expr (:at 1526142259031) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094665164) (:by |root) (:text |current-page)
|v $ %{} :Expr (:at 1526142262897) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142264266) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1526142264524) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142264923) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1526142401546) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1667580504889) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Leaf (:at 1667580506405) (:by |rJG4IHzWf) (:text |css-nav)
|w5 $ %{} :Expr (:at 1722793234213) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793234213) (:by |rJG4IHzWf) (:text |=<)
|b $ %{} :Leaf (:at 1722793234213) (:by |rJG4IHzWf) (:text |8)
|h $ %{} :Leaf (:at 1722793234213) (:by |rJG4IHzWf) (:text |nil)
|wD $ %{} :Expr (:at 1527094623434) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |comp-link)
|j $ %{} :Leaf (:at 1527094635292) (:by |root) (:text |:home)
|r $ %{} :Leaf (:at 1527094637671) (:by |root) (:text |:code)
|v $ %{} :Expr (:at 1527094667333) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094667874) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1527094668318) (:by |root) (:text |current-page)
|r $ %{} :Leaf (:at 1527094671161) (:by |root) (:text |:home)
|wT $ %{} :Expr (:at 1629314793717) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629314794708) (:by |rJG4IHzWf) (:text |=<)
|j $ %{} :Leaf (:at 1629314800650) (:by |rJG4IHzWf) (:text |8)
|r $ %{} :Leaf (:at 1629314797537) (:by |rJG4IHzWf) (:text |nil)
|x $ %{} :Expr (:at 1527094623434) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094559101) (:by |root) (:text |comp-link)
|j $ %{} :Leaf (:at 1527094625449) (:by |root) (:text |:viewer)
|r $ %{} :Leaf (:at 1629308110845) (:by |rJG4IHzWf) (:text |:monitor)
|v $ %{} :Expr (:at 1527094672827) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094672950) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1527094673482) (:by |root) (:text |current-page)
|r $ %{} :Leaf (:at 1527094674693) (:by |root) (:text |:viewer)
|comp-upload $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1722793339773) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793339773) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1722793376178) (:by |rJG4IHzWf) (:text |comp-upload)
|h $ %{} :Expr (:at 1722793339773) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793343359) (:by |rJG4IHzWf) (:text |content)
|l $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |div)
|b $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |:class-name)
|b $ %{} :Expr (:at 1722793418926) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1722793421038) (:by |rJG4IHzWf) (:text |str-spaced)
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |css-icon)
|b $ %{} :Leaf (:at 1722793426404) (:by |rJG4IHzWf) (:text |css-place-upload)
|h $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |:on-click)
|b $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |e)
|b $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |d!)
|e $ %{} :Expr (:at 1722794153966) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794158343) (:by |rJG4IHzWf) (:text |hint-fn)
|b $ %{} :Leaf (:at 1722794159260) (:by |rJG4IHzWf) (:text |async)
|h $ %{} :Expr (:at 1722794160988) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1722794163197) (:by |rJG4IHzWf) (:text |js-await)
|T $ %{} :Expr (:at 1722793549153) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1722793592007) (:by |rJG4IHzWf) (:text |.!post)
|L $ %{} :Leaf (:at 1722793593091) (:by |rJG4IHzWf) (:text |axios)
|P $ %{} :Leaf (:at 1722793615186) (:by |rJG4IHzWf) (:text "|\"https://data-backs.chenyong.life/data/pudica-schedule-viewer")
|T $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794078210) (:by |rJG4IHzWf) (:text |to-js-data)
|b $ %{} :Leaf (:at 1722793397981) (:by |rJG4IHzWf) (:text |content)
|l $ %{} :Expr (:at 1722794933445) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794935234) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Leaf (:at 1722794939861) (:by |rJG4IHzWf) (:text |action/create)
|h $ %{} :Expr (:at 1722794941083) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794941456) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1722794941798) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794942623) (:by |rJG4IHzWf) (:text |:text)
|b $ %{} :Leaf (:at 1722794946303) (:by |rJG4IHzWf) (:text "|\"uploaded")
|h $ %{} :Expr (:at 1722794949076) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794951459) (:by |rJG4IHzWf) (:text |:token)
|b $ %{} :Expr (:at 1722794975751) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794979494) (:by |rJG4IHzWf) (:text |nanoid)
|h $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |comp-i)
|b $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |:upload-cloud)
|h $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |16)
|l $ %{} :Expr (:at 1722793344113) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |200)
|h $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |80)
|l $ %{} :Leaf (:at 1722793344113) (:by |rJG4IHzWf) (:text |70)
|css-icon $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1526142550142) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1667580463563) (:by |rJG4IHzWf) (:text |defstyle)
|j $ %{} :Leaf (:at 1667580443965) (:by |rJG4IHzWf) (:text |css-icon)
|r $ %{} :Expr (:at 1667580473241) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1667580474013) (:by |rJG4IHzWf) (:text |{})
|T $ %{} :Expr (:at 1667580474498) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1667580475968) (:by |rJG4IHzWf) (:text "|\"$0")
|T $ %{} :Expr (:at 1526142550142) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142552357) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1526142552627) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142558553) (:by |root) (:text |:margin)
|j $ %{} :Leaf (:at 1526142563010) (:by |root) (:text "|\"8")
|r $ %{} :Expr (:at 1526142570935) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142572465) (:by |root) (:text |:font-size)
|j $ %{} :Leaf (:at 1526142579423) (:by |root) (:text |16)
|v $ %{} :Expr (:at 1526142585316) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142586635) (:by |root) (:text |:cursor)
|j $ %{} :Leaf (:at 1526142588423) (:by |root) (:text |:pointer)
|x $ %{} :Expr (:at 1527094616617) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094617407) (:by |root) (:text |:color)
|j $ %{} :Expr (:at 1527094617669) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527094617996) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1527094618641) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1527094618992) (:by |root) (:text |0)
|v $ %{} :Leaf (:at 1527094620107) (:by |root) (:text |70)
|css-nav $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1667580506822) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580508738) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1667580506822) (:by |rJG4IHzWf) (:text |css-nav)
|h $ %{} :Expr (:at 1667580506822) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580510709) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1667580511364) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580512722) (:by |rJG4IHzWf) (:text "|\"$0")
|b $ %{} :Expr (:at 1667580513157) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |merge)
|b $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |ui/row)
|h $ %{} :Expr (:at 1667580513157) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |{})
|X $ %{} :Expr (:at 1671619253080) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1671619257013) (:by |rJG4IHzWf) (:text |:position)
|b $ %{} :Leaf (:at 1671619258709) (:by |rJG4IHzWf) (:text |:absolute)
|Z $ %{} :Expr (:at 1671619259669) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1671619260736) (:by |rJG4IHzWf) (:text |:bottom)
|b $ %{} :Leaf (:at 1671619261572) (:by |rJG4IHzWf) (:text |0)
|a $ %{} :Expr (:at 1671619266308) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1671619268703) (:by |rJG4IHzWf) (:text |:right)
|b $ %{} :Leaf (:at 1671619268888) (:by |rJG4IHzWf) (:text |0)
|b $ %{} :Expr (:at 1667580513157) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |:padding)
|b $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |8)
|h $ %{} :Expr (:at 1667580513157) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |:justify-content)
|b $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |:flex-end)
|l $ %{} :Expr (:at 1667580513157) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |:background-color)
|b $ %{} :Expr (:at 1667580513157) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |hsl)
|b $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |0)
|h $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |0)
|l $ %{} :Leaf (:at 1667580513157) (:by |rJG4IHzWf) (:text |96)
|o $ %{} :Expr (:at 1671619286506) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1671619287372) (:by |rJG4IHzWf) (:text |:gap)
|b $ %{} :Leaf (:at 1671619291644) (:by |rJG4IHzWf) (:text |4)
|css-place-upload $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1722793426926) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793427973) (:by |rJG4IHzWf) (:text |defstyle)
|b $ %{} :Leaf (:at 1722793426926) (:by |rJG4IHzWf) (:text |css-place-upload)
|h $ %{} :Expr (:at 1722793426926) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793429062) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1722793429391) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793499168) (:by |rJG4IHzWf) (:text "|\"$0")
|b $ %{} :Expr (:at 1722793431620) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793431914) (:by |rJG4IHzWf) (:text |{})
|b $ %{} :Expr (:at 1722793432505) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793434774) (:by |rJG4IHzWf) (:text |:position)
|b $ %{} :Leaf (:at 1722793437935) (:by |rJG4IHzWf) (:text |:absolute)
|h $ %{} :Expr (:at 1722793438747) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793439294) (:by |rJG4IHzWf) (:text |:top)
|b $ %{} :Leaf (:at 1722793440018) (:by |rJG4IHzWf) (:text |8)
|l $ %{} :Expr (:at 1722793438747) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793443442) (:by |rJG4IHzWf) (:text |:right)
|b $ %{} :Leaf (:at 1722793440018) (:by |rJG4IHzWf) (:text |8)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1526142251307) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1526142251307) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1526142251307) (:by |root) (:text |app.comp.nav)
|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 1629306511691) (:by |rJG4IHzWf) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ui)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1629306521926) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|n $ %{} :Leaf (:at 1629307107675) (:by |root) (:text |>>)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by nil) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|yT $ %{} :Expr (:at 1519699088529) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md)
|r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1519699093683) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md)
|yr $ %{} :Expr (:at 1526142458304) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1629307758069) (:by |rJG4IHzWf) (:text |feather.core)
|r $ %{} :Leaf (:at 1526142467254) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1526142467511) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1629307725306) (:by |rJG4IHzWf) (:text |comp-i)
|z $ %{} :Expr (:at 1667580455187) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580459555) (:by |rJG4IHzWf) (:text |respo.css)
|b $ %{} :Leaf (:at 1667580467210) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1667580467479) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1667580470870) (:by |rJG4IHzWf) (:text |defstyle)
|z5 $ %{} :Expr (:at 1722794996878) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794999457) (:by |rJG4IHzWf) (:text |respo-message.action)
|b $ %{} :Leaf (:at 1722795000253) (:by |rJG4IHzWf) (:text |:as)
|h $ %{} :Leaf (:at 1722795001034) (:by |rJG4IHzWf) (:text |action)
|zD $ %{} :Expr (:at 1722793579183) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722793580037) (:by |rJG4IHzWf) (:text "|\"axios")
|b $ %{} :Leaf (:at 1722793586566) (:by |rJG4IHzWf) (:text |:default)
|h $ %{} :Leaf (:at 1722793581847) (:by |rJG4IHzWf) (:text |axios)
|zP $ %{} :Expr (:at 1722794982555) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794983006) (:by |rJG4IHzWf) (:text "|\"nanoid")
|b $ %{} :Leaf (:at 1722795017693) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1722795018327) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1722794985478) (:by |rJG4IHzWf) (:text |nanoid)
|app.comp.viewer $ %{} :FileEntry
:defs $ {}
|by-larger $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1629307634198) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629307637983) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1629307634198) (:by |rJG4IHzWf) (:text |by-larger)
|r $ %{} :Expr (:at 1629307635029) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629307635029) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Leaf (:at 1629307635029) (:by |rJG4IHzWf) (:text |y)
|v $ %{} :Expr (:at 1629307635029) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1629307635029) (:by |rJG4IHzWf) (:text |&compare)
|j $ %{} :Expr (:at 1679376699631) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1679376700846) (:by |rJG4IHzWf) (:text |nth)
|T $ %{} :Leaf (:at 1629307635029) (:by |rJG4IHzWf) (:text |y)
|b $ %{} :Leaf (:at 1679376701488) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Expr (:at 1679376704373) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1679376705360) (:by |rJG4IHzWf) (:text |nth)
|T $ %{} :Leaf (:at 1629307635029) (:by |rJG4IHzWf) (:text |x)
|b $ %{} :Leaf (:at 1679376706681) (:by |rJG4IHzWf) (:text |0)
|by-latest-task $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459808750) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |by-latest-task)
|v $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |task-a)
|j $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |task-b)
|x $ %{} :Expr (:at 1670583917214) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1670583917870) (:by |rJG4IHzWf) (:text |let)
|T $ %{} :Expr (:at 1670583920089) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1670583918567) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1670583927955) (:by |rJG4IHzWf) (:text |ret)
|T $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |=)
|j $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |:done-time)
|j $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |task-b)
|r $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |:done-time)
|j $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |task-a)
|r $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |<)
|j $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |:archived-time)
|j $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |task-b)
|r $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |:archived-time)
|j $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |task-a)
|v $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |<)
|j $ %{} :Expr (:at 1533459803428) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533459803428) (:by |root) (:text |:done-time)