generated from calcit-lang/calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
13211 lines (13210 loc) · 982 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 |respo)
:configs $ {} (:init-fn |respo.main/main!) (:port 6001) (:reload-fn |respo.main/reload!) (:storage-key |calcit.cirru) (:version |0.16.13)
:modules $ [] |memof/ |lilac/ |calcit-test/
:entries $ {}
:files $ {}
|respo.app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |store)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1584718727659) (:by |rJoDgvdeG) (:text |states)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1706301894578) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1710959776036) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1706301896327) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1706301896626) (:by |rJoDgvdeG) (:text |highlight-defcomp)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1733856250731) (:by |rJoDgvdeG) (:text |:class-name)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |style-global)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-todolist)
|v $ %{} :Leaf (:at 1584718729784) (:by |rJoDgvdeG) (:text |states)
|x $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:tasks)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |store)
|s $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:style)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |style-states)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |<>)
|r $ %{} :Expr (:at 1515895708075) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1515895708881) (:by |rJoDgvdeG) (:text |str)
|L $ %{} :Leaf (:at 1623582927810) (:by |rJoDgvdeG) (:text "||states: ")
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1693242544168) (:by |rJoDgvdeG) (:text |to-lispy-string)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1505327099898) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |store)
|t $ %{} :Expr (:at 1656036581270) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036584992) (:by |rJoDgvdeG) (:text |comp-global-keydown)
|X $ %{} :Expr (:at 1656036736229) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036736614) (:by |rJoDgvdeG) (:text |{})
|b $ %{} :Expr (:at 1656036737351) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036756646) (:by |rJoDgvdeG) (:text |:disabled-commands)
|b $ %{} :Expr (:at 1656036867350) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036894841) (:by |rJoDgvdeG) (:text |#{})
|b $ %{} :Leaf (:at 1656036980245) (:by |rJoDgvdeG) (:text "|\"s")
|h $ %{} :Leaf (:at 1656036982066) (:by |rJoDgvdeG) (:text "|\"p")
|b $ %{} :Expr (:at 1656036585590) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036586012) (:by |rJoDgvdeG) (:text |fn)
|b $ %{} :Expr (:at 1656036586746) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036588563) (:by |rJoDgvdeG) (:text |e)
|b $ %{} :Leaf (:at 1656036589332) (:by |rJoDgvdeG) (:text |d!)
|h $ %{} :Expr (:at 1656036590111) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036593406) (:by |rJoDgvdeG) (:text |js/console.log)
|b $ %{} :Leaf (:at 1656036697578) (:by |rJoDgvdeG) (:text "|\"keydown")
|h $ %{} :Leaf (:at 1656036595798) (:by |rJoDgvdeG) (:text |e)
|u $ %{} :Expr (:at 1656036581270) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1699983962961) (:by |rJoDgvdeG) (:text |comp-global-keyup)
|X $ %{} :Expr (:at 1656036736229) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036736614) (:by |rJoDgvdeG) (:text |{})
|b $ %{} :Expr (:at 1656036737351) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036756646) (:by |rJoDgvdeG) (:text |:disabled-commands)
|b $ %{} :Expr (:at 1656036867350) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036894841) (:by |rJoDgvdeG) (:text |#{})
|b $ %{} :Leaf (:at 1656036980245) (:by |rJoDgvdeG) (:text "|\"s")
|h $ %{} :Leaf (:at 1656036982066) (:by |rJoDgvdeG) (:text "|\"p")
|b $ %{} :Expr (:at 1656036585590) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036586012) (:by |rJoDgvdeG) (:text |fn)
|b $ %{} :Expr (:at 1656036586746) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036588563) (:by |rJoDgvdeG) (:text |e)
|b $ %{} :Leaf (:at 1656036589332) (:by |rJoDgvdeG) (:text |d!)
|h $ %{} :Expr (:at 1656036590111) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036593406) (:by |rJoDgvdeG) (:text |js/console.log)
|b $ %{} :Leaf (:at 1699983972260) (:by |rJoDgvdeG) (:text "|\"keyup")
|h $ %{} :Leaf (:at 1656036595798) (:by |rJoDgvdeG) (:text |e)
|style-global $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1733856228078) (:by |rJoDgvdeG) (:text |defstyle)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |style-global)
|r $ %{} :Expr (:at 1733856228850) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1733856229366) (:by |rJoDgvdeG) (:text |{})
|T $ %{} :Expr (:at 1733856229922) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1733856231143) (:by |rJoDgvdeG) (:text "|\"&")
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:font-family)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text ||Avenir,Verdana)
|b $ %{} :Expr (:at 1733856229922) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1733856231143) (:by |rJoDgvdeG) (:text "|\"&")
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|n $ %{} :Expr (:at 1733856260235) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856262914) (:by |rJoDgvdeG) (:text |'contained)
|b $ %{} :Leaf (:at 1733856310157) (:by |rJoDgvdeG) (:text "|\"@media only screen and (max-width: 600px)")
|q $ %{} :Expr (:at 1733856375602) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856375602) (:by |rJoDgvdeG) (:text |:background-color)
|b $ %{} :Expr (:at 1733856375602) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856375602) (:by |rJoDgvdeG) (:text |hsl)
|b $ %{} :Leaf (:at 1733856375602) (:by |rJoDgvdeG) (:text |0)
|h $ %{} :Leaf (:at 1733856375602) (:by |rJoDgvdeG) (:text |0)
|l $ %{} :Leaf (:at 1733856384858) (:by |rJoDgvdeG) (:text |90)
|style-states $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |style-states)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |8)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |respo.app.comp.container)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:require)
|f $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1540830018171) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508915063808) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |defcomp)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|v $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |span)
|x $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |<>)
|yT $ %{} :Leaf (:at 1584718739742) (:by |rJoDgvdeG) (:text |>>)
|yj $ %{} :Leaf (:at 1610440507879) (:by |rJoDgvdeG) (:text |a)
|i $ %{} :Expr (:at 1733856332686) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856340705) (:by |rJoDgvdeG) (:text |respo.util.format)
|b $ %{} :Leaf (:at 1733856341868) (:by |rJoDgvdeG) (:text |:refer)
|h $ %{} :Expr (:at 1733856342089) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856342439) (:by |rJoDgvdeG) (:text |hsl)
|l $ %{} :Expr (:at 1733856235298) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856236366) (:by |rJoDgvdeG) (:text |respo.css)
|b $ %{} :Leaf (:at 1733856237148) (:by |rJoDgvdeG) (:text |:refer)
|h $ %{} :Expr (:at 1733856237456) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1733856238571) (:by |rJoDgvdeG) (:text |defstyle)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |respo.app.comp.todolist)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-todolist)
|x $ %{} :Expr (:at 1592134715191) (:by |rJoDgvdeG)
:data $ {}
|j $ %{} :Leaf (:at 1592134718074) (:by |rJoDgvdeG) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1592134718793) (:by |rJoDgvdeG) (:text |:refer)
|v $ %{} :Expr (:at 1592134718980) (:by |rJoDgvdeG)
:data $ {}
|j $ %{} :Leaf (:at 1592134722022) (:by |rJoDgvdeG) (:text |=<)
|y $ %{} :Expr (:at 1656036562023) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036571371) (:by |rJoDgvdeG) (:text |respo.comp.global-keydown)
|b $ %{} :Leaf (:at 1656036572678) (:by |rJoDgvdeG) (:text |:refer)
|h $ %{} :Expr (:at 1656036572901) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1656036578628) (:by |rJoDgvdeG) (:text |comp-global-keydown)
|b $ %{} :Leaf (:at 1699983983431) (:by |rJoDgvdeG) (:text |comp-global-keyup)
|z $ %{} :Expr (:at 1706301877428) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1706301882723) (:by |rJoDgvdeG) (:text |respo.comp.inspect)
|b $ %{} :Leaf (:at 1706301883949) (:by |rJoDgvdeG) (:text |:refer)
|h $ %{} :Expr (:at 1706301884285) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1706301887610) (:by |rJoDgvdeG) (:text |highlight-defcomp)
|respo.app.comp.task $ %{} :FileEntry
:defs $ {}
|comp-task $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1536679003089) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-task)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |task)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|D $ %{} :Expr (:at 1584719172690) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719173865) (:by |rJoDgvdeG) (:text |cursor)
|j $ %{} :Expr (:at 1584719174123) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719176906) (:by |rJoDgvdeG) (:text |:cursor)
|j $ %{} :Leaf (:at 1584719177962) (:by |rJoDgvdeG) (:text |states)
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |state)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610212419277) (:by |rJoDgvdeG) (:text |either)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:data)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |states)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text ||)
|r $ %{} :Expr (:at 1571586889509) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1571586890799) (:by |rJoDgvdeG) (:text |[])
|L $ %{} :Expr (:at 1571586895374) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1571586927464) (:by |rJoDgvdeG) (:text |effect-log)
|j $ %{} :Leaf (:at 1572083411761) (:by |rJoDgvdeG) (:text |task)
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1685804041444) (:by |rJoDgvdeG) (:text |:class-name)
|j $ %{} :Leaf (:at 1705596648151) (:by |rJoDgvdeG) (:text |style-task)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-inspect)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text ||Task)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |task)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:left)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |200)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |button)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1651180847678) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651180850144) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1651180850506) (:by |rJoDgvdeG) (:text |style-done)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1710960182689) (:by |rJoDgvdeG) (:text |:background-color)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:done?)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |200)
|r $ %{} :Leaf (:at 1549948909284) (:by |rJoDgvdeG) (:text |20)
|v $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |80)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |200)
|r $ %{} :Leaf (:at 1549948914057) (:by |rJoDgvdeG) (:text |80)
|v $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |70)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1513785917865) (:by |root) (:text |:on-click)
|r $ %{} :Expr (:at 1584719149495) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584719150633) (:by |rJoDgvdeG) (:text |fn)
|L $ %{} :Expr (:at 1584719150856) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719151115) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1584719151808) (:by |rJoDgvdeG) (:text |d!)
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1584719153664) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Expr (:at 1687721437704) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1687721438608) (:by |rJoDgvdeG) (:text |:)
|T $ %{} :Leaf (:at 1687721439703) (:by |rJoDgvdeG) (:text |toggle)
|b $ %{} :Expr (:at 1687721442267) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1687721442267) (:by |rJoDgvdeG) (:text |:id)
|b $ %{} :Leaf (:at 1687721442267) (:by |rJoDgvdeG) (:text |task)
|x $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |nil)
|y $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |input)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:value)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1651181046534) (:by |rJoDgvdeG) (:text |:class-name)
|j $ %{} :Leaf (:at 1651181043400) (:by |rJoDgvdeG) (:text |widget/style-input)
|v $ %{} :Expr (:at 1505382679150) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1513785912794) (:by |root) (:text |:on-input)
|j $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |fn)
|j $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719163429) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1584719164292) (:by |rJoDgvdeG) (:text |d!)
|r $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |let)
|j $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |task-id)
|j $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |:id)
|j $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |task)
|j $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |text)
|j $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719129318) (:by |rJoDgvdeG) (:text |:value)
|j $ %{} :Leaf (:at 1584719160982) (:by |rJoDgvdeG) (:text |e)
|r $ %{} :Expr (:at 1584719129318) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719134707) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Expr (:at 1687721444549) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1687721445713) (:by |rJoDgvdeG) (:text |:)
|T $ %{} :Leaf (:at 1687721446857) (:by |rJoDgvdeG) (:text |update)
|X $ %{} :Leaf (:at 1687721454103) (:by |rJoDgvdeG) (:text |task-id)
|Z $ %{} :Leaf (:at 1687721455454) (:by |rJoDgvdeG) (:text |text)
|yT $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |nil)
|yj $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |input)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:value)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |state)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1651181061428) (:by |rJoDgvdeG) (:text |:class-name)
|j $ %{} :Leaf (:at 1651181064305) (:by |rJoDgvdeG) (:text |widget/style-input)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1513786754951) (:by |root) (:text |:on-input)
|j $ %{} :Expr (:at 1584719089367) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584719090017) (:by |rJoDgvdeG) (:text |fn)
|L $ %{} :Expr (:at 1584719090626) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719090845) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1584719091699) (:by |rJoDgvdeG) (:text |d!)
|P $ %{} :Expr (:at 1584719094021) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719094932) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Leaf (:at 1584719096043) (:by |rJoDgvdeG) (:text |cursor)
|r $ %{} :Expr (:at 1584719097135) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719097786) (:by |rJoDgvdeG) (:text |:value)
|j $ %{} :Leaf (:at 1584720105188) (:by |rJoDgvdeG) (:text |e)
|yr $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |nil)
|yv $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|n $ %{} :Expr (:at 1651176559735) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651176561461) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1691559907639) (:by |rJoDgvdeG) (:text |widget/style-button)
|r $ %{} :Expr (:at 1515603131600) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1515603136628) (:by |root) (:text |:on-click)
|T $ %{} :Expr (:at 1584719102767) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584719103368) (:by |rJoDgvdeG) (:text |fn)
|L $ %{} :Expr (:at 1584719103687) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584719103914) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1584719104519) (:by |rJoDgvdeG) (:text |d!)
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1584719108258) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:remove)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |<>)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text ||Remove)
|yx $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |nil)
|yy $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |<>)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |state)
|effect-log $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1571586937354) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1571586939749) (:by |rJoDgvdeG) (:text |defeffect)
|j $ %{} :Leaf (:at 1571586937354) (:by |rJoDgvdeG) (:text |effect-log)
|r $ %{} :Expr (:at 1571586937354) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1571586950105) (:by |rJoDgvdeG) (:text |task)
|x $ %{} :Expr (:at 1571586952422) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1571586957133) (:by |rJoDgvdeG) (:text |action)
|j $ %{} :Leaf (:at 1571586961474) (:by |rJoDgvdeG) (:text |parent)
|v $ %{} :Leaf (:at 1572885426290) (:by |rJoDgvdeG) (:text |at-place?)
|y $ %{} :Expr (:at 1571586962138) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584720137605) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1571586967079) (:by |rJoDgvdeG) (:text |js/console.log)
|j $ %{} :Leaf (:at 1571586977512) (:by |rJoDgvdeG) (:text "|\"Task effect")
|x $ %{} :Leaf (:at 1571586982894) (:by |rJoDgvdeG) (:text |action)
|y $ %{} :Leaf (:at 1572885427880) (:by |rJoDgvdeG) (:text |at-place?)
|yT $ %{} :Expr (:at 1572086688548) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1643704195073) (:by |rJoDgvdeG) (:text |case-default)
|j $ %{} :Leaf (:at 1572086691733) (:by |rJoDgvdeG) (:text |action)
|n $ %{} :Leaf (:at 1643707442256) (:by |rJoDgvdeG) (:text |nil)
|r $ %{} :Expr (:at 1572086692002) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1572086697795) (:by |rJoDgvdeG) (:text |:mount)
|j $ %{} :Expr (:at 1572086730754) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1572086731349) (:by |rJoDgvdeG) (:text |let)
|L $ %{} :Expr (:at 1572086731782) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Expr (:at 1572086732615) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1572086733624) (:by |rJoDgvdeG) (:text |x0)
|j $ %{} :Expr (:at 1572086734358) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1572086734358) (:by |rJoDgvdeG) (:text |js/Math.random)
|j $ %{} :Expr (:at 1572086743497) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584720182535) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1572086744295) (:by |rJoDgvdeG) (:text |println)
|j $ %{} :Leaf (:at 1572086747755) (:by |rJoDgvdeG) (:text "|\"Stored")
|r $ %{} :Leaf (:at 1572086749463) (:by |rJoDgvdeG) (:text |x0)
|r $ %{} :Leaf (:at 1619539324128) (:by |rJoDgvdeG) (:text |nil)
|v $ %{} :Expr (:at 1572086750609) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1572086751544) (:by |rJoDgvdeG) (:text |:update)
|j $ %{} :Expr (:at 1572086751819) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584720178072) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1572086755689) (:by |rJoDgvdeG) (:text |println)
|j $ %{} :Leaf (:at 1572086756916) (:by |rJoDgvdeG) (:text "|\"read")
|r $ %{} :Leaf (:at 1619539168024) (:by |rJoDgvdeG) (:text |nil)
|x $ %{} :Expr (:at 1572086765428) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1572086766906) (:by |rJoDgvdeG) (:text |:unmount)
|j $ %{} :Expr (:at 1572086770977) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1584720180800) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1584720180308) (:by |rJoDgvdeG) (:text |println)
|j $ %{} :Leaf (:at 1572086770977) (:by |rJoDgvdeG) (:text "|\"read")
|r $ %{} :Leaf (:at 1619539170693) (:by |rJoDgvdeG) (:text |nil)
|style-done $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1651180825590) (:by |rJoDgvdeG) (:text |defstyle)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |style-done)
|r $ %{} :Expr (:at 1651180822430) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1651180832034) (:by |rJoDgvdeG) (:text |{})
|T $ %{} :Expr (:at 1651180832722) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1706302948410) (:by |rJoDgvdeG) (:text |:&)
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:width)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |32)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:height)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |32)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:outline)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:none)
|x $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:border)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:none)
|y $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:vertical-align)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:middle)
|z $ %{} :Expr (:at 1710960189920) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1710960191922) (:by |rJoDgvdeG) (:text |:cursor)
|b $ %{} :Leaf (:at 1710960192951) (:by |rJoDgvdeG) (:text |:pointer)
|style-task $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1685804025593) (:by |rJoDgvdeG) (:text |defstyle)
|j $ %{} :Leaf (:at 1705596639034) (:by |rJoDgvdeG) (:text |style-task)
|r $ %{} :Expr (:at 1685804026639) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1685804027288) (:by |rJoDgvdeG) (:text |{})
|T $ %{} :Expr (:at 1685804028443) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1685804030296) (:by |rJoDgvdeG) (:text "|\"&")
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:display)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:flex)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text "||4px 0px")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |respo.app.comp.task)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:require)
|b $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1540830039824) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508915091929) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |defcomp)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |div)
|v $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |input)
|x $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |span)
|y $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |button)
|yT $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |<>)
|yv $ %{} :Leaf (:at 1571586991762) (:by |rJoDgvdeG) (:text |defeffect)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1610031661069) (:by |rJoDgvdeG) (:text |respo.util.format)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |hsl)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |=<)
|x $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |respo.comp.inspect)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-inspect)
|y $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |respo.app.style.widget)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |widget)
|z $ %{} :Expr (:at 1651180811864) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651180814417) (:by |rJoDgvdeG) (:text |respo.css)
|b $ %{} :Leaf (:at 1651180816493) (:by |rJoDgvdeG) (:text |:refer)
|h $ %{} :Expr (:at 1651180816793) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651180818894) (:by |rJoDgvdeG) (:text |defstyle)
|respo.app.comp.todolist $ %{} :FileEntry
:defs $ {}
|comp-todolist $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1536678904198) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |comp-todolist)
|r $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |tasks)
|v $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|D $ %{} :Expr (:at 1584718933236) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584718934262) (:by |rJoDgvdeG) (:text |cursor)
|j $ %{} :Expr (:at 1584872700149) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1610211668152) (:by |rJoDgvdeG) (:text |either)
|T $ %{} :Expr (:at 1584718934490) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584718936300) (:by |rJoDgvdeG) (:text |:cursor)
|j $ %{} :Leaf (:at 1584718936996) (:by |rJoDgvdeG) (:text |states)
|j $ %{} :Expr (:at 1584872701364) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1584872702117) (:by |rJoDgvdeG) (:text |[])
|T $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |state)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610211670068) (:by |rJoDgvdeG) (:text |either)
|j $ %{} :Expr (:at 1504774121421) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |:data)
|j $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |states)
|r $ %{} :Leaf (:at 1504774121421) (:by |root) (:text |initial-state)
|r $ %{} :Expr (:at 1571574450097) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1571574450942) (:by |rJoDgvdeG) (:text |[])
|L $ %{} :Expr (:at 1571574456411) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1571574459596) (:by |rJoDgvdeG) (:text |effect-focus)
|f $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |div)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1705596407168) (:by |rJoDgvdeG) (:text |:class-name)
|j $ %{} :Leaf (:at 1705596410178) (:by |rJoDgvdeG) (:text |style-todo-root)
|n $ %{} :Expr (:at 1710342003984) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1710344400705) (:by |rJoDgvdeG) (:text |:data-name)
|b $ %{} :Leaf (:at 1710342684369) (:by |rJoDgvdeG) (:text "|\"todolist")
|n $ %{} :Expr (:at 1678121659036) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1678122870185) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1678121659661) (:by |rJoDgvdeG) (:text |a)
|b $ %{} :Expr (:at 1678121660095) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1678121660386) (:by |rJoDgvdeG) (:text |{})
|b $ %{} :Expr (:at 1678121661504) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1678122493464) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1678121661918) (:by |rJoDgvdeG) (:text |:href)
|b $ %{} :Leaf (:at 1678122874893) (:by |rJoDgvdeG) (:text "|\"A")
|e $ %{} :Expr (:at 1678121845271) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1678122406018) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1678121844978) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1678122876025) (:by |rJoDgvdeG) (:text "|\"B")
|h $ %{} :Expr (:at 1678121682620) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1678122409758) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1678121685292) (:by |rJoDgvdeG) (:text |:inner-text)
|b $ %{} :Leaf (:at 1678122877167) (:by |rJoDgvdeG) (:text "|\"C")
|l $ %{} :Expr (:at 1678122033141) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1678122475532) (:by |rJoDgvdeG) (:text |;)
|T $ %{} :Leaf (:at 1678122039614) (:by |rJoDgvdeG) (:text |:height)
|b $ %{} :Leaf (:at 1678122226753) (:by |rJoDgvdeG) (:text "|\"100px")
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |comp-inspect)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text ||States)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |state)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:left)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text ||80px)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |div)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:style)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |style-panel)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |input)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:placeholder)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text "|\"Text")
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:value)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:draft)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |state)
|t $ %{} :Expr (:at 1651181086495) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651181091202) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1651181093107) (:by |rJoDgvdeG) (:text |widget/style-input)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:style)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:width)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |&max)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |200)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |+)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |24)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |text-width)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:draft)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |state)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |16)
|v $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text ||BlinkMacSystemFont)
|x $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:on-input)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |fn)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |cursor)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |assoc)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |state)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:draft)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:value)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |e)
|y $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:on-focus)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |on-focus)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |=<)
|j $ %{} :Leaf (:at 1621412996120) (:by |rJoDgvdeG) (:text |8)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |nil)
|x $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |span)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|n $ %{} :Expr (:at 1651175827683) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651175830269) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1691559918584) (:by |rJoDgvdeG) (:text |widget/style-button)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:on-click)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |fn)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Expr (:at 1687721398570) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1687721399165) (:by |rJoDgvdeG) (:text |:)
|T $ %{} :Leaf (:at 1687721400405) (:by |rJoDgvdeG) (:text |add)
|b $ %{} :Expr (:at 1687721403326) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1687721403326) (:by |rJoDgvdeG) (:text |:draft)
|b $ %{} :Leaf (:at 1687721403326) (:by |rJoDgvdeG) (:text |state)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |cursor)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |assoc)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |state)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:draft)
|v $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text ||)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |span)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:on-click)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |nil)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:inner-text)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text "|\"Add")
|y $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |=<)
|j $ %{} :Leaf (:at 1621413802208) (:by |rJoDgvdeG) (:text |8)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |nil)
|yT $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |span)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:inner-text)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text ||Clear)
|r $ %{} :Expr (:at 1651178815442) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651178815442) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1691559919956) (:by |rJoDgvdeG) (:text |widget/style-button)
|v $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:on-click)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |fn)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |e)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |d!)
|j $ %{} :Expr (:at 1710341406498) (:by |rJoDgvdeG)
:data $ {}
|D $ %{} :Leaf (:at 1710341407177) (:by |rJoDgvdeG) (:text |::)
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:clear)
|yj $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |=<)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |8)
|r $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |nil)
|yr $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |div)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |div)
|j $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |{})
|j $ %{} :Expr (:at 1651178817288) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1651178817288) (:by |rJoDgvdeG) (:text |:class-name)
|b $ %{} :Leaf (:at 1691559921488) (:by |rJoDgvdeG) (:text |widget/style-button)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |:on-click)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |on-test)
|r $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |<>)
|j $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text "||heavy tasks")
|n $ %{} :Leaf (:at 1705596668699) (:by |rJoDgvdeG) (:text |style-bold!)
|x $ %{} :Expr (:at 1610203915704) (:by |rJoDgvdeG)
:data $ {}
|T $ %{} :Leaf (:at 1610203915704) (:by |rJoDgvdeG) (:text |list->)