-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcalcit.cirru
4182 lines (4181 loc) · 308 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/ |bisection-key/
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1553790232228) (:by |root) (:text |reel)
|v $ %{} :Expr (:at 1553790219433) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1553790221906) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1553790222397) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1553790222612) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790223373) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1553790224586) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790224152) (:by |root) (:text |:store)
|j $ %{} :Leaf (:at 1553790229544) (:by |root) (:text |reel)
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1659861864852) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659861868160) (:by |Qr5ffqtY) (:text |:class-name)
|b $ %{} :Expr (:at 1659861868690) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659861870405) (:by |Qr5ffqtY) (:text |str-spaced)
|b $ %{} :Leaf (:at 1659861876195) (:by |Qr5ffqtY) (:text |css/global)
|h $ %{} :Leaf (:at 1659861882169) (:by |Qr5ffqtY) (:text |css/fullscreen)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |merge)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:background-position)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text "||left top")
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:overflow)
|j $ %{} :Leaf (:at 1518022143160) (:by |root) (:text |:auto)
|x $ %{} :Expr (:at 1518022225758) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518022227607) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1518022694025) (:by |root) (:text "||160px 200px")
|y $ %{} :Expr (:at 1665906395502) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1665906395502) (:by |Qr5ffqtY) (:text |;)
|b $ %{} :Leaf (:at 1665906395502) (:by |Qr5ffqtY) (:text |:color)
|h $ %{} :Leaf (:at 1665906395502) (:by |Qr5ffqtY) (:text |:white)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |comp-todolist)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:tasks)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |store)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:pointer)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |store)
|v $ %{} :Expr (:at 1518169595891) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169599432) (:by |root) (:text |:dragging-id)
|j $ %{} :Leaf (:at 1518169600590) (:by |root) (:text |store)
|x $ %{} :Expr (:at 1518169595891) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519749560154) (:by |root) (:text |:dropping-id)
|j $ %{} :Leaf (:at 1518169600590) (:by |root) (:text |store)
|x $ %{} :Expr (:at 1525626576832) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1525626577528) (:by |root) (:text |div)
|L $ %{} :Expr (:at 1525626577710) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626578579) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1525626580551) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626581968) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1525626582177) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626582510) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1525626626404) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626629423) (:by |root) (:text |:position)
|j $ %{} :Leaf (:at 1525626631133) (:by |root) (:text |:fixed)
|r $ %{} :Expr (:at 1525626632221) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626633112) (:by |root) (:text |:bottom)
|j $ %{} :Leaf (:at 1525626634072) (:by |root) (:text |0)
|v $ %{} :Expr (:at 1525626636483) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626639856) (:by |root) (:text |:left)
|j $ %{} :Leaf (:at 1525626887670) (:by |root) (:text |16)
|T $ %{} :Expr (:at 1508857721923) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626834564) (:by |root) (:text |a)
|j $ %{} :Expr (:at 1508857725461) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1508857725923) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1508857726249) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1508857728283) (:by |root) (:text |:inner-text)
|j $ %{} :Leaf (:at 1670583141607) (:by |Qr5ffqtY) (:text ||Ease)
|r $ %{} :Expr (:at 1508857747506) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1659861969124) (:by |Qr5ffqtY) (:text |:class-name)
|j $ %{} :Expr (:at 1670583119299) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1670583120845) (:by |Qr5ffqtY) (:text |str-spaced)
|T $ %{} :Leaf (:at 1670583118417) (:by |Qr5ffqtY) (:text |css/link)
|b $ %{} :Leaf (:at 1670583126749) (:by |Qr5ffqtY) (:text |css/font-fancy)
|v $ %{} :Expr (:at 1508857783984) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1514170045981) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1629051747860) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1629051748469) (:by |Qr5ffqtY) (:text |fn)
|L $ %{} :Expr (:at 1629051748826) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1629051749406) (:by |Qr5ffqtY) (:text |e)
|j $ %{} :Leaf (:at 1629051750083) (:by |Qr5ffqtY) (:text |d!)
|T $ %{} :Expr (:at 1508857794826) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629051747281) (:by |Qr5ffqtY) (:text |d!)
|j $ %{} :Expr (:at 1739027135552) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1739027136270) (:by |Qr5ffqtY) (:text |::)
|T $ %{} :Leaf (:at 1527734621999) (:by |root) (:text |:task/relax)
|j $ %{} :Expr (:at 1525626644234) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626644681) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1525626645454) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1525626645919) (:by |root) (:text |nil)
|r $ %{} :Expr (:at 1508857721923) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626844862) (:by |root) (:text |a)
|j $ %{} :Expr (:at 1508857725461) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1508857725923) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1508857726249) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1508857728283) (:by |root) (:text |:inner-text)
|j $ %{} :Leaf (:at 1525626892923) (:by |root) (:text ||Review)
|r $ %{} :Expr (:at 1508857747506) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1659861923011) (:by |Qr5ffqtY) (:text |:class-name)
|j $ %{} :Expr (:at 1670583132726) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1670583132726) (:by |Qr5ffqtY) (:text |str-spaced)
|b $ %{} :Leaf (:at 1670583132726) (:by |Qr5ffqtY) (:text |css/link)
|h $ %{} :Leaf (:at 1670583132726) (:by |Qr5ffqtY) (:text |css/font-fancy)
|v $ %{} :Expr (:at 1508857783984) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1514170045981) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1525626662424) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626663420) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1525626663717) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525626663959) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1525626664643) (:by |root) (:text |d!)
|n $ %{} :Expr (:at 1645027784440) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text |let)
|b $ %{} :Expr (:at 1645027784440) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Expr (:at 1645027784440) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text |raw)
|b $ %{} :Expr (:at 1645027784440) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text |format-cirru-edn)
|b $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text |store)
|h $ %{} :Expr (:at 1645027784440) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text |js/localStorage.setItem)
|b $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text "|\"pudica-schedule-viewer")
|h $ %{} :Leaf (:at 1645027784440) (:by |Qr5ffqtY) (:text |raw)
|l $ %{} :Expr (:at 1645027790419) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text |js/window.open)
|b $ %{} :Expr (:at 1645027790419) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text |if)
|b $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text |config/dev?)
|h $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text "|\"http://localhost:3000")
|l $ %{} :Expr (:at 1645027790419) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text |str)
|b $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text |js/location.origin)
|h $ %{} :Leaf (:at 1645027790419) (:by |Qr5ffqtY) (:text "|\"/Memkits/pudica-schedule-viewer/")
|xT $ %{} :Expr (:at 1525625883663) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525625885339) (:by |root) (:text |comp-transparent)
|y $ %{} :Expr (:at 1525625865516) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1525625866351) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1574870876165) (:by |Qr5ffqtY) (:text |config/dev?)
|T $ %{} :Expr (:at 1518018965645) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518018968061) (:by |root) (:text |comp-inspect)
|j $ %{} :Leaf (:at 1553790252629) (:by |root) (:text "|\"Store")
|p $ %{} :Leaf (:at 1519746710559) (:by |root) (:text |store)
|v $ %{} :Leaf (:at 1518018979985) (:by |root) (:text |nil)
|z $ %{} :Expr (:at 1525625865516) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1525625866351) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1574870876165) (:by |Qr5ffqtY) (:text |config/dev?)
|T $ %{} :Expr (:at 1518018965645) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1665906103983) (:by |Qr5ffqtY) (:text |comp-reel)
|m $ %{} :Expr (:at 1665906131594) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1665906131153) (:by |Qr5ffqtY) (:text |:states)
|b $ %{} :Leaf (:at 1665906132596) (:by |Qr5ffqtY) (:text |reel)
|p $ %{} :Leaf (:at 1665906124213) (:by |Qr5ffqtY) (:text |reel)
|v $ %{} :Expr (:at 1665906302100) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1665906302509) (:by |Qr5ffqtY) (:text |{})
|comp-transparent $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1519748330160) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1525625881681) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1519748330160) (:by |root) (:text |comp-transparent)
|n $ %{} :Expr (:at 1525625871652) (:by |root)
:data $ {}
|r $ %{} :Expr (:at 1519748099447) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748100466) (:by |root) (:text |span)
|j $ %{} :Expr (:at 1519748101249) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748101641) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519748101845) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748103509) (:by |root) (:text |:class-name)
|j $ %{} :Leaf (:at 1519748112228) (:by |root) (:text ||transparent)
|r $ %{} :Expr (:at 1519748287927) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748289118) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519748289353) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748289635) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519748290444) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748292353) (:by |root) (:text |:width)
|j $ %{} :Leaf (:at 1519748292976) (:by |root) (:text |1)
|r $ %{} :Expr (:at 1519748293291) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748294311) (:by |root) (:text |:height)
|j $ %{} :Leaf (:at 1519748294608) (:by |root) (:text |1)
|v $ %{} :Expr (:at 1519748302119) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748306984) (:by |root) (:text |:background-color)
|j $ %{} :Leaf (:at 1519748309884) (:by |root) (:text ||red)
|x $ %{} :Expr (:at 1519748310336) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748312451) (:by |root) (:text |:display)
|j $ %{} :Leaf (:at 1519748316564) (:by |root) (:text |:inline-block)
|on-clear $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |on-clear)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |dispatch!)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |dispatch!)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:task/clear)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |nil)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |app.comp.container)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:require)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1659861900471) (:by |Qr5ffqtY) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |hsl)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1518014652028) (:by |root) (:text |respo-ui.core)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |ui)
|t $ %{} :Expr (:at 1659861885698) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659861887926) (:by |Qr5ffqtY) (:text |respo-ui.css)
|b $ %{} :Leaf (:at 1659861888458) (:by |Qr5ffqtY) (:text |:as)
|h $ %{} :Leaf (:at 1659861889560) (:by |Qr5ffqtY) (:text |css)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1553789391022) (:by |root) (:text |respo.core)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:refer)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |defcomp)
|X $ %{} :Leaf (:at 1525626361581) (:by |root) (:text |action->)
|b $ %{} :Leaf (:at 1500454524965) (:by |root) (:text |<>)
|j $ %{} :Leaf (:at 1500454520939) (:by |root) (:text |div)
|r $ %{} :Leaf (:at 1500454521496) (:by |root) (:text |span)
|v $ %{} :Leaf (:at 1500454522392) (:by |root) (:text |button)
|x $ %{} :Leaf (:at 1525626836783) (:by |root) (:text |a)
|x $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1500454541733) (:by |root) (:text |=<)
|yT $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |app.comp.todolist)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |comp-todolist)
|yj $ %{} :Expr (:at 1518018999691) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1518019005934) (:by |root) (:text |respo.comp.inspect)
|r $ %{} :Leaf (:at 1518019006741) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1518019006991) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1518019010155) (:by |root) (:text |comp-inspect)
|yv $ %{} :Expr (:at 1525626838911) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1525626840365) (:by |root) (:text |app.style)
|r $ %{} :Leaf (:at 1525626840954) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1525626841700) (:by |root) (:text |style)
|yx $ %{} :Expr (:at 1528871401920) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1528871403449) (:by |root) (:text |app.config)
|r $ %{} :Leaf (:at 1528871473957) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1528871405519) (:by |root) (:text |config)
|z $ %{} :Expr (:at 1665906078109) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1665906233338) (:by |Qr5ffqtY) (:text |reel.comp.reel)
|b $ %{} :Leaf (:at 1665906086971) (:by |Qr5ffqtY) (:text |:refer)
|h $ %{} :Expr (:at 1665906087160) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1665906090197) (:by |Qr5ffqtY) (:text |comp-reel)
|app.comp.task $ %{} :FileEntry
:defs $ {}
|comp-task $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |comp-task)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |task)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |idx)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |focused?)
|v $ %{} :Leaf (:at 1518620618638) (:by |root) (:text |dragging-id)
|x $ %{} :Leaf (:at 1519749533570) (:by |root) (:text |dropping-id)
|v $ %{} :Expr (:at 1644772996025) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1644772998586) (:by |Qr5ffqtY) (:text |[])
|L $ %{} :Expr (:at 1644773225288) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644773005008) (:by |Qr5ffqtY) (:text |effect-in)
|b $ %{} :Expr (:at 1659804738535) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659804740235) (:by |Qr5ffqtY) (:text |:done?)
|b $ %{} :Leaf (:at 1659804740907) (:by |Qr5ffqtY) (:text |task)
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1659862089913) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659862093493) (:by |Qr5ffqtY) (:text |:class-name)
|b $ %{} :Expr (:at 1659862107214) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1659862109812) (:by |Qr5ffqtY) (:text |str-spaced)
|T $ %{} :Leaf (:at 1659862106552) (:by |Qr5ffqtY) (:text |css/row)
|b $ %{} :Leaf (:at 1659862135437) (:by |Qr5ffqtY) (:text |css-task)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |merge)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:top)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |str)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |*)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |idx)
|r $ %{} :Leaf (:at 1644387262450) (:by |Qr5ffqtY) (:text |49)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text ||px)
|w $ %{} :Expr (:at 1659803907471) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659803907471) (:by |Qr5ffqtY) (:text |if)
|b $ %{} :Expr (:at 1659803907471) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659803907471) (:by |Qr5ffqtY) (:text |:done?)
|b $ %{} :Leaf (:at 1659803907471) (:by |Qr5ffqtY) (:text |task)
|h $ %{} :Expr (:at 1659803907471) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659803907471) (:by |Qr5ffqtY) (:text |{})
|b $ %{} :Expr (:at 1659803907471) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659803907471) (:by |Qr5ffqtY) (:text |:opacity)
|b $ %{} :Leaf (:at 1670583356648) (:by |Qr5ffqtY) (:text |0.5)
|xL $ %{} :Expr (:at 1518169630165) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169630555) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1518620626404) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518620625929) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1519749515996) (:by |root) (:text |dropping-id)
|r $ %{} :Expr (:at 1518620628802) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518620629205) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518620629776) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1518169632333) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169632690) (:by |root) (:text |{})
|r $ %{} :Expr (:at 1519748428375) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748430385) (:by |root) (:text |:opacity)
|j $ %{} :Leaf (:at 1670583045887) (:by |Qr5ffqtY) (:text |0.8)
|v $ %{} :Expr (:at 1644386718904) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644386732718) (:by |Qr5ffqtY) (:text |:transform)
|j $ %{} :Leaf (:at 1644387285559) (:by |Qr5ffqtY) (:text "|\"translate(2px,4px)")
|w $ %{} :Expr (:at 1644386859404) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644386859404) (:by |Qr5ffqtY) (:text |:z-index)
|j $ %{} :Leaf (:at 1644386859404) (:by |Qr5ffqtY) (:text |900)
|x $ %{} :Expr (:at 1644386795729) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644386800071) (:by |Qr5ffqtY) (:text |:outline)
|j $ %{} :Expr (:at 1644386801161) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644386801625) (:by |Qr5ffqtY) (:text |str)
|j $ %{} :Leaf (:at 1644386853979) (:by |Qr5ffqtY) (:text "|\"2px solid ")
|r $ %{} :Expr (:at 1644386805646) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644386809074) (:by |Qr5ffqtY) (:text |hsl)
|j $ %{} :Leaf (:at 1644386809642) (:by |Qr5ffqtY) (:text |0)
|r $ %{} :Leaf (:at 1644386810034) (:by |Qr5ffqtY) (:text |0)
|v $ %{} :Leaf (:at 1644386855992) (:by |Qr5ffqtY) (:text |86)
|yj $ %{} :Expr (:at 1518169630165) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169630555) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1518620626404) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518620625929) (:by |root) (:text |=)
|j $ %{} :Leaf (:at 1518620628010) (:by |root) (:text |dragging-id)
|r $ %{} :Expr (:at 1518620628802) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518620629205) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518620629776) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1518169632333) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169632690) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519747275669) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519747278418) (:by |root) (:text |:z-index)
|j $ %{} :Leaf (:at 1519747279223) (:by |root) (:text |999)
|r $ %{} :Expr (:at 1519748428375) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748430385) (:by |root) (:text |:opacity)
|j $ %{} :Leaf (:at 1670583024810) (:by |Qr5ffqtY) (:text |0.5)
|v $ %{} :Expr (:at 1644387278367) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644387278367) (:by |Qr5ffqtY) (:text |:transform)
|j $ %{} :Leaf (:at 1644387283729) (:by |Qr5ffqtY) (:text "|\"translate(-2px,-4px)")
|p $ %{} :Expr (:at 1518015576637) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015579443) (:by |root) (:text |:draggable)
|j $ %{} :Leaf (:at 1518015580631) (:by |root) (:text |true)
|v $ %{} :Expr (:at 1518015809684) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015812073) (:by |root) (:text |:on-dragstart)
|j $ %{} :Expr (:at 1518015813155) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015814070) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1518015814315) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015814490) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1518015815400) (:by |root) (:text |d!)
|r $ %{} :Expr (:at 1518015816810) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015817362) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1518015817663) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1518015817977) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015818890) (:by |root) (:text |event)
|j $ %{} :Expr (:at 1518015819706) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015820361) (:by |root) (:text |:event)
|j $ %{} :Leaf (:at 1518015820593) (:by |root) (:text |e)
|r $ %{} :Expr (:at 1518015834966) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015835862) (:by |root) (:text |->)
|j $ %{} :Leaf (:at 1518015836937) (:by |root) (:text |event)
|r $ %{} :Leaf (:at 1518015841687) (:by |root) (:text |.-dataTransfer)
|v $ %{} :Expr (:at 1518015848644) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629053173188) (:by |Qr5ffqtY) (:text |.!setData)
|j $ %{} :Leaf (:at 1518015854166) (:by |root) (:text ||text)
|r $ %{} :Expr (:at 1518015857778) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1518015859260) (:by |root) (:text |:id)
|T $ %{} :Leaf (:at 1518015855348) (:by |root) (:text |task)
|t $ %{} :Expr (:at 1519748138479) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748140064) (:by |root) (:text |->)
|j $ %{} :Leaf (:at 1519748141445) (:by |root) (:text |event)
|r $ %{} :Leaf (:at 1519748146197) (:by |root) (:text |.-dataTransfer)
|v $ %{} :Expr (:at 1519748147055) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629053174684) (:by |Qr5ffqtY) (:text |.!setDragImage)
|b $ %{} :Expr (:at 1519748157882) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1629053178392) (:by |Qr5ffqtY) (:text |js/document.querySelector)
|r $ %{} :Leaf (:at 1519748171970) (:by |root) (:text ||.transparent)
|j $ %{} :Leaf (:at 1519748155367) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1519748155590) (:by |root) (:text |0)
|v $ %{} :Expr (:at 1518169503021) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169504937) (:by |root) (:text |d!)
|j $ %{} :Leaf (:at 1518169516011) (:by |root) (:text |:mark/dragging)
|r $ %{} :Expr (:at 1518169520345) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169518786) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518169521191) (:by |root) (:text |task)
|w $ %{} :Expr (:at 1518169526254) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169528760) (:by |root) (:text |:on-dragend)
|j $ %{} :Expr (:at 1519749449219) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519749449858) (:by |root) (:text |fn)
|L $ %{} :Expr (:at 1519749450214) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519749451444) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1519749452307) (:by |root) (:text |d!)
|T $ %{} :Expr (:at 1518169529075) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519749455072) (:by |root) (:text |d!)
|r $ %{} :Leaf (:at 1518169516011) (:by |root) (:text |:mark/dragging)
|v $ %{} :Leaf (:at 1518169544788) (:by |root) (:text |nil)
|j $ %{} :Expr (:at 1518169529075) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519749455072) (:by |root) (:text |d!)
|r $ %{} :Leaf (:at 1519749458623) (:by |root) (:text |:mark/dropping)
|v $ %{} :Leaf (:at 1518169544788) (:by |root) (:text |nil)
|wT $ %{} :Expr (:at 1519749465916) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519749471665) (:by |root) (:text |:on-dragenter)
|j $ %{} :Expr (:at 1629052122430) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1629052125518) (:by |Qr5ffqtY) (:text |fn)
|L $ %{} :Expr (:at 1629052125869) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1629052126048) (:by |Qr5ffqtY) (:text |e)
|j $ %{} :Leaf (:at 1629052126797) (:by |Qr5ffqtY) (:text |d!)
|T $ %{} :Expr (:at 1519749472662) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629052121859) (:by |Qr5ffqtY) (:text |d!)
|j $ %{} :Leaf (:at 1519749480470) (:by |root) (:text |:mark/dropping)
|r $ %{} :Expr (:at 1519749481605) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519749482701) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1519749483216) (:by |root) (:text |task)
|x $ %{} :Expr (:at 1518620647940) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015890564) (:by |root) (:text |:on-dragover)
|j $ %{} :Expr (:at 1518015891239) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015891784) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1518015892126) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015892340) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1518015893338) (:by |root) (:text |d!)
|v $ %{} :Expr (:at 1518017596767) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518017598556) (:by |root) (:text |->)
|j $ %{} :Leaf (:at 1518017600129) (:by |root) (:text |e)
|r $ %{} :Leaf (:at 1518017601083) (:by |root) (:text |:event)
|v $ %{} :Expr (:at 1518017602601) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1629053182288) (:by |Qr5ffqtY) (:text |.!preventDefault)
|y $ %{} :Expr (:at 1518015912224) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748210188) (:by |root) (:text |:on-drop)
|j $ %{} :Expr (:at 1518015913974) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015914884) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1518015915164) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518015916509) (:by |root) (:text |e)
|j $ %{} :Leaf (:at 1518015917134) (:by |root) (:text |d!)
|r $ %{} :Expr (:at 1519748471942) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519748472706) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1519748472932) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1519748473085) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748475258) (:by |root) (:text |event)
|j $ %{} :Expr (:at 1519748475622) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519748476308) (:by |root) (:text |:event)
|j $ %{} :Leaf (:at 1519748477202) (:by |root) (:text |e)
|T $ %{} :Expr (:at 1518017404132) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518017404663) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1518017404931) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518017408011) (:by |root) (:text |not=)
|j $ %{} :Leaf (:at 1518017411658) (:by |root) (:text |dragging-id)
|r $ %{} :Expr (:at 1518017412896) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518017413431) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518017414121) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1518017415386) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518017416024) (:by |root) (:text |do)
|j $ %{} :Expr (:at 1518017416265) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518021117300) (:by |root) (:text |d!)
|f $ %{} :Leaf (:at 1519749104170) (:by |root) (:text |:task/move)
|l $ %{} :Expr (:at 1518020766049) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518020766404) (:by |root) (:text |[])
|j $ %{} :Leaf (:at 1518020769378) (:by |root) (:text |dragging-id)
|r $ %{} :Expr (:at 1518020770218) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518020771427) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518020772286) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|b $ %{} :Expr (:at 1659862437880) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659862443786) (:by |Qr5ffqtY) (:text |:class-name)
|b $ %{} :Leaf (:at 1659862462195) (:by |Qr5ffqtY) (:text |css-done)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |if)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:done?)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:transform)
|j $ %{} :Leaf (:at 1508174307378) (:by |root) (:text "||scale(0.7)")
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1514170085789) (:by |root) (:text |:on-click)
|r $ %{} :Expr (:at 1629052131994) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1629052132743) (:by |Qr5ffqtY) (:text |fn)
|L $ %{} :Expr (:at 1629052133473) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1629052134781) (:by |Qr5ffqtY) (:text |e)
|j $ %{} :Leaf (:at 1629052136443) (:by |Qr5ffqtY) (:text |d!)
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1629052131472) (:by |Qr5ffqtY) (:text |d!)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:task/toggle)
|r $ %{} :Expr (:at 1518022718978) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518022720060) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518022721269) (:by |root) (:text |task)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1508038817659) (:by |root) (:text |=<)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |8)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |nil)
|x $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |input)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:value)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:placeholder)
|j $ %{} :Leaf (:at 1519744927201) (:by |root) (:text ||task...)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:id)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |str)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text ||input-)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |idx)
|vT $ %{} :Expr (:at 1659862556346) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659862560818) (:by |Qr5ffqtY) (:text |:spellcheck)
|b $ %{} :Leaf (:at 1659862561529) (:by |Qr5ffqtY) (:text |false)
|w $ %{} :Expr (:at 1659862180063) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659862183142) (:by |Qr5ffqtY) (:text |:class-name)
|b $ %{} :Expr (:at 1659862184191) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1659862187416) (:by |Qr5ffqtY) (:text |str-spaced)
|b $ %{} :Leaf (:at 1659862190019) (:by |Qr5ffqtY) (:text |css/input)
|h $ %{} :Leaf (:at 1659862220198) (:by |Qr5ffqtY) (:text |css-text)
|x $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:style)
|j $ %{} :Expr (:at 1519746327430) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519746328090) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1519746328320) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1519746328467) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746333487) (:by |root) (:text |text-width)
|j $ %{} :Expr (:at 1519746334877) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746334617) (:by |root) (:text |get-width)
|j $ %{} :Expr (:at 1519746336369) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746337618) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1519746338441) (:by |root) (:text |task)
|n $ %{} :Leaf (:at 1519746417660) (:by |root) (:text ||Hind)
|r $ %{} :Leaf (:at 1519746342412) (:by |root) (:text |16)
|T $ %{} :Expr (:at 1519746315723) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746321200) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1519746321567) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746322725) (:by |root) (:text |:width)
|j $ %{} :Expr (:at 1519746428825) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1519746429998) (:by |root) (:text |+)
|L $ %{} :Leaf (:at 1519748808793) (:by |root) (:text |16)
|T $ %{} :Leaf (:at 1519746354940) (:by |root) (:text |text-width)
|y $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1514170096615) (:by |root) (:text |:on-input)
|j $ %{} :Expr (:at 1629052142430) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1629052143793) (:by |Qr5ffqtY) (:text |fn)
|L $ %{} :Expr (:at 1629052144112) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1629052144342) (:by |Qr5ffqtY) (:text |e)
|j $ %{} :Leaf (:at 1629052144880) (:by |Qr5ffqtY) (:text |d!)
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1629052141870) (:by |Qr5ffqtY) (:text |d!)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|D $ %{} :Leaf (:at 1688745188750) (:by |Qr5ffqtY) (:text |::)
|T $ %{} :Leaf (:at 1688745187864) (:by |Qr5ffqtY) (:text |:task/edit)
|j $ %{} :Expr (:at 1518019425022) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518019425403) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518019427381) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:value)
|j $ %{} :Leaf (:at 1629052204174) (:by |Qr5ffqtY) (:text |e)
|yT $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1514170099725) (:by |root) (:text |:on-keydown)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1665908736733) (:by |Qr5ffqtY) (:text |on-keydown)
|b $ %{} :Expr (:at 1518020142155) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518020143507) (:by |root) (:text |:id)
|j $ %{} :Leaf (:at 1518020144051) (:by |root) (:text |task)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:text)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |task)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |idx)
|yj $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1514170101439) (:by |root) (:text |:on-click)
|j $ %{} :Expr (:at 1629052147896) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1629052150168) (:by |Qr5ffqtY) (:text |fn)
|L $ %{} :Expr (:at 1629052151989) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1629052150483) (:by |Qr5ffqtY) (:text |e)
|j $ %{} :Leaf (:at 1629052152786) (:by |Qr5ffqtY) (:text |d!)
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1629052147230) (:by |Qr5ffqtY) (:text |d!)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:pointer/touch)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |idx)
|y $ %{} :Expr (:at 1553790273161) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790274968) (:by |root) (:text |<>)
|j $ %{} :Expr (:at 1553790275793) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790288794) (:by |root) (:text |:sort-id)
|j $ %{} :Leaf (:at 1553790289761) (:by |root) (:text |task)
|r $ %{} :Expr (:at 1638686513825) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1638686514697) (:by |Qr5ffqtY) (:text |merge)
|T $ %{} :Expr (:at 1553790312622) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790319135) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1553790319452) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790320260) (:by |root) (:text |:color)
|j $ %{} :Expr (:at 1553790321473) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1553790322378) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1553790323655) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1553790324052) (:by |root) (:text |0)
|v $ %{} :Leaf (:at 1644387390951) (:by |Qr5ffqtY) (:text |40)
|x $ %{} :Leaf (:at 1631341719513) (:by |Qr5ffqtY) (:text |0.1)
|j $ %{} :Expr (:at 1638686528180) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1638686528549) (:by |Qr5ffqtY) (:text |if)
|j $ %{} :Leaf (:at 1638686529729) (:by |Qr5ffqtY) (:text |demo?)
|r $ %{} :Expr (:at 1638686530227) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1638686531503) (:by |Qr5ffqtY) (:text |{})
|j $ %{} :Expr (:at 1638686531909) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1638686534732) (:by |Qr5ffqtY) (:text |:color)
|j $ %{} :Expr (:at 1638686534969) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1638686535399) (:by |Qr5ffqtY) (:text |hsl)
|j $ %{} :Leaf (:at 1638686536032) (:by |Qr5ffqtY) (:text |0)
|r $ %{} :Leaf (:at 1638686536915) (:by |Qr5ffqtY) (:text |0)
|v $ %{} :Leaf (:at 1638686537475) (:by |Qr5ffqtY) (:text |0)
|x $ %{} :Leaf (:at 1638686584196) (:by |Qr5ffqtY) (:text |0.4)
|v $ %{} :Expr (:at 1638686574357) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1638686576282) (:by |Qr5ffqtY) (:text |:font-size)
|j $ %{} :Leaf (:at 1638686591094) (:by |Qr5ffqtY) (:text |16)
|x $ %{} :Expr (:at 1638686591726) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1638686596153) (:by |Qr5ffqtY) (:text |:font-family)
|j $ %{} :Leaf (:at 1638686601727) (:by |Qr5ffqtY) (:text |ui/font-code)
|css-done $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1659862456178) (:by |Qr5ffqtY) (:text |defstyle)
|j $ %{} :Leaf (:at 1659862453198) (:by |Qr5ffqtY) (:text |css-done)
|r $ %{} :Expr (:at 1659862456949) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1659862457452) (:by |Qr5ffqtY) (:text |{})
|T $ %{} :Expr (:at 1659862457947) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1659862459180) (:by |Qr5ffqtY) (:text "|\"$0")
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:width)
|j $ %{} :Leaf (:at 1644379267156) (:by |Qr5ffqtY) (:text |20)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:height)
|j $ %{} :Leaf (:at 1644379268572) (:by |Qr5ffqtY) (:text |20)
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:background-color)
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1514170201103) (:by |root) (:text |240)
|r $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |90)
|v $ %{} :Leaf (:at 1514170218757) (:by |root) (:text |88)
|x $ %{} :Leaf (:at 1518168766763) (:by |root) (:text |0.3)
|x $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:cursor)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:pointer)
|y $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:transition-duration)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text ||300ms)
|yT $ %{} :Expr (:at 1644379249743) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644379253831) (:by |Qr5ffqtY) (:text |:border-radius)
|j $ %{} :Leaf (:at 1644379255758) (:by |Qr5ffqtY) (:text "|\"50%")
|css-task $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1659862123182) (:by |Qr5ffqtY) (:text |defstyle)
|j $ %{} :Leaf (:at 1659862120946) (:by |Qr5ffqtY) (:text |css-task)
|r $ %{} :Expr (:at 1659862123934) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1659862124490) (:by |Qr5ffqtY) (:text |{})
|T $ %{} :Expr (:at 1659862125256) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1659862126833) (:by |Qr5ffqtY) (:text "|\"$0")
|T $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |{})
|j $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:position)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:absolute)
|r $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:padding)
|j $ %{} :Leaf (:at 1519749681502) (:by |root) (:text "||0 16px")
|v $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:transition-duration)
|j $ %{} :Leaf (:at 1659804884847) (:by |Qr5ffqtY) (:text ||300ms)
|w $ %{} :Expr (:at 1518169780875) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518169785564) (:by |root) (:text |:transition-property)
|j $ %{} :Leaf (:at 1659862686118) (:by |Qr5ffqtY) (:text ||top,transform,outline,opacity,box-shadow)
|x $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:align-items)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:center)
|y $ %{} :Expr (:at 1500452996813) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1500452996813) (:by |root) (:text |:transform-origin)
|j $ %{} :Leaf (:at 1500452996813) (:by |root) (:text "||8% 50%")
|yT $ %{} :Expr (:at 1519746502576) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746508250) (:by |root) (:text |:background-color)
|j $ %{} :Expr (:at 1519746508538) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746508868) (:by |root) (:text |hsl)
|j $ %{} :Leaf (:at 1519746510920) (:by |root) (:text |0)
|r $ %{} :Leaf (:at 1519746511129) (:by |root) (:text |0)
|v $ %{} :Leaf (:at 1644387173655) (:by |Qr5ffqtY) (:text |100)
|yj $ %{} :Expr (:at 1519746592438) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746594830) (:by |root) (:text |:min-width)
|j $ %{} :Leaf (:at 1644379286321) (:by |Qr5ffqtY) (:text |720)
|yr $ %{} :Expr (:at 1519746622115) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1519746623973) (:by |root) (:text |:cursor)
|j $ %{} :Leaf (:at 1519746627770) (:by |root) (:text |:move)
|yv $ %{} :Expr (:at 1644379303116) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644379306372) (:by |Qr5ffqtY) (:text |:border-radius)
|j $ %{} :Leaf (:at 1670583061351) (:by |Qr5ffqtY) (:text "|\"2px")
|yx $ %{} :Expr (:at 1644387110640) (:by |Qr5ffqtY)
:data $ {}
|T $ %{} :Leaf (:at 1644387118618) (:by |Qr5ffqtY) (:text |:box-shadow)
|j $ %{} :Expr (:at 1644387129618) (:by |Qr5ffqtY)
:data $ {}
|D $ %{} :Leaf (:at 1644387130661) (:by |Qr5ffqtY) (:text |str)
|T $ %{} :Leaf (:at 1644387149279) (:by |Qr5ffqtY) (:text "|\"0 0 2px ")