generated from calcit-lang/respo-calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
1793 lines (1792 loc) · 143 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
{}
:configs $ {} (:compact-output? true) (: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/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-bullet $ {} (:at 1628710391430) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710395964) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1628710391430) (:by |rJG4IHzWf) (:text |comp-bullet) (:type :leaf)
|r $ {} (:at 1628710391430) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710393313) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|b $ {} (:at 1647458011385) (:by |rJG4IHzWf) (:text |color) (:type :leaf)
|v $ {} (:at 1628710396845) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710398924) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1628710400062) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|n $ {} (:at 1647457255176) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457255496) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1647457255779) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457258510) (:by |rJG4IHzWf) (:text |:white-space) (:type :leaf)
|b $ {} (:at 1647457259490) (:by |rJG4IHzWf) (:text |:nowrap) (:type :leaf)
|e $ {} (:at 1647457527591) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457530297) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|b $ {} (:at 1647458753500) (:by |rJG4IHzWf) (:text |26) (:type :leaf)
|h $ {} (:at 1647457448994) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457457457) (:by |rJG4IHzWf) (:text |:writing-mode) (:type :leaf)
|b $ {} (:at 1647457459455) (:by |rJG4IHzWf) (:text |:vertical-lr) (:type :leaf)
|l $ {} (:at 1647458013817) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647458015671) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|b $ {} (:at 1647458016890) (:by |rJG4IHzWf) (:text |color) (:type :leaf)
|comp-container $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1507461830530) (:by |root) (:text |reel) (:type :leaf)
|v $ {} (:at 1507461832154) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1507461833421) (:by |root) (:text |let) (:type :leaf)
|L $ {} (:at 1507461834351) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461834650) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461835738) (:by |root) (:text |store) (:type :leaf)
|j $ {} (:at 1507461836110) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461837276) (:by |root) (:text |:store) (:type :leaf)
|j $ {} (:at 1507461838285) (:by |root) (:text |reel) (:type :leaf)
|j $ {} (:at 1509727104820) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1509727105928) (:by |root) (:text |states) (:type :leaf)
|j $ {} (:at 1509727106316) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1509727107223) (:by |root) (:text |:states) (:type :leaf)
|j $ {} (:at 1626777497473) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|n $ {} (:at 1584780921790) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780923771) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1584780991636) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1627849325504) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|T $ {} (:at 1584780923944) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780925829) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1584780926681) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|j $ {} (:at 1584780993270) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780994497) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|r $ {} (:at 1584780887905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780889620) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|j $ {} (:at 1584780889933) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1627849327831) (:by |rJG4IHzWf) (:text |or) (:type :leaf)
|j $ {} (:at 1584780894090) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780894689) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|j $ {} (:at 1584780900314) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1584780901014) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780901408) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1584780901741) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584780906050) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1584780907617) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|v $ {} (:at 1628709652075) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709655682) (:by |rJG4IHzWf) (:text |progress) (:type :leaf)
|j $ {} (:at 1628709656186) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709657619) (:by |rJG4IHzWf) (:text |:progress) (:type :leaf)
|j $ {} (:at 1628709658451) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|T $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |div) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |{}) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |:style) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |merge) (:type :leaf)
|j $ {} (:at 1521129814235) (:by |root) (:text |ui/global) (:type :leaf)
|n $ {} (:at 1628705489543) (:by |rJG4IHzWf) (:text |ui/fullscreen) (:type :leaf)
|r $ {} (:at 1628705362477) (:by |rJG4IHzWf) (:text |ui/column) (:type :leaf)
|v $ {} (:at 1628705463013) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705463352) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1628705506546) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705508503) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1628705510110) (:by |rJG4IHzWf) (:text |:white) (:type :leaf)
|v $ {} (:at 1628707391187) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707395463) (:by |rJG4IHzWf) (:text |:user-select) (:type :leaf)
|j $ {} (:at 1628707398694) (:by |rJG4IHzWf) (:text |:none) (:type :leaf)
|w $ {} (:at 1647457555961) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457558939) (:by |rJG4IHzWf) (:text |:overflow) (:type :leaf)
|b $ {} (:at 1647457560245) (:by |rJG4IHzWf) (:text |:hidden) (:type :leaf)
|k $ {} (:at 1647456565211) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647456565908) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|L $ {} (:at 1647456566226) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456566520) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1647456571804) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647456574775) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|T $ {} (:at 1647456714405) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647456715692) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|L $ {} (:at 1647456717726) (:by |rJG4IHzWf) (:text |ui/fullscreen) (:type :leaf)
|P $ {} (:at 1647456732221) (:by |rJG4IHzWf) (:text |ui/center) (:type :leaf)
|T $ {} (:at 1647456575191) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647456576082) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|T $ {} (:at 1647456567227) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456568433) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|b $ {} (:at 1647456571429) (:by |rJG4IHzWf) (:text |:absolute) (:type :leaf)
|h $ {} (:at 1647456649549) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456649549) (:by |rJG4IHzWf) (:text |:z-index) (:type :leaf)
|b $ {} (:at 1647456649549) (:by |rJG4IHzWf) (:text |-10) (:type :leaf)
|T $ {} (:at 1647456455621) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647456481319) (:by |rJG4IHzWf) (:text |create-element) (:type :leaf)
|T $ {} (:at 1647456479121) (:by |rJG4IHzWf) (:text |:video) (:type :leaf)
|b $ {} (:at 1647456464175) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456463722) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|X $ {} (:at 1647456592467) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456593629) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|b $ {} (:at 1647456607196) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456606112) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|b $ {} (:at 1647456609435) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456611325) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|b $ {} (:at 1647456613324) (:by |rJG4IHzWf) (:text "|\"100%") (:type :leaf)
|b $ {} (:at 1647456489264) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456490391) (:by |rJG4IHzWf) (:text |:src) (:type :leaf)
|b $ {} (:at 1647456499612) (:by |rJG4IHzWf) (:text "|\"/videos/diandian.mov") (:type :leaf)
|h $ {} (:at 1647456510439) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456514464) (:by |rJG4IHzWf) (:text |:autoplay) (:type :leaf)
|b $ {} (:at 1647456515532) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|l $ {} (:at 1647456539573) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456541746) (:by |rJG4IHzWf) (:text |:muted) (:type :leaf)
|b $ {} (:at 1647456542588) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|o $ {} (:at 1647456889861) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647456890859) (:by |rJG4IHzWf) (:text |:loop) (:type :leaf)
|b $ {} (:at 1647456891419) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|m $ {} (:at 1628705459273) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647458773220) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1628705459738) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628705459984) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705460301) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707249914) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707252573) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628707333019) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707334672) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|T $ {} (:at 1628707259214) (:by |rJG4IHzWf) (:text |ui/row-parted) (:type :leaf)
|j $ {} (:at 1628707335593) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707335956) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707336318) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707341167) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1628707377854) (:by |rJG4IHzWf) (:text "|\"16px 24px") (:type :leaf)
|r $ {} (:at 1628705492214) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705492548) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1647457245445) (:by |rJG4IHzWf) (:text "|\"> 喵喵喵喵喵喵") (:type :leaf)
|r $ {} (:at 1628707351066) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707351514) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707351866) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707354658) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1628707356479) (:by |rJG4IHzWf) (:text |24) (:type :leaf)
|v $ {} (:at 1628707261156) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707263486) (:by |rJG4IHzWf) (:text |span) (:type :leaf)
|j $ {} (:at 1628707263735) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707264528) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707264838) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707272633) (:by |rJG4IHzWf) (:text |:inner-text) (:type :leaf)
|j $ {} (:at 1628707330051) (:by |rJG4IHzWf) (:text "|\"全屏") (:type :leaf)
|r $ {} (:at 1628707282869) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707286668) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1628707287036) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707287396) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1628707287536) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707288670) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1628707289383) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1628707290127) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707313743) (:by |rJG4IHzWf) (:text |js/document.body.requestFullscreen) (:type :leaf)
|o $ {} (:at 1628705513995) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705517627) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628705517882) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705518209) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628705518420) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705521032) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628705524987) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|r $ {} (:at 1628709299863) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709303028) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|b $ {} (:at 1628709322722) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709323111) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709324372) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628709325084) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|T $ {} (:at 1628709306483) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709453332) (:by |rJG4IHzWf) (:text |:bullets) (:type :leaf)
|j $ {} (:at 1628709315474) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|b $ {} (:at 1628709497825) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628709899799) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1628709701326) (:by |rJG4IHzWf) (:text |filter) (:type :leaf)
|j $ {} (:at 1628709499822) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709500422) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1628709501899) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709501408) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|r $ {} (:at 1628709666185) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628709666809) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1628709667469) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709667500) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709667715) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|j $ {} (:at 1628709668139) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709985125) (:by |rJG4IHzWf) (:text |:progress) (:type :leaf)
|j $ {} (:at 1628709671814) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|T $ {} (:at 1628709649350) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709664099) (:by |rJG4IHzWf) (:text |and) (:type :leaf)
|j $ {} (:at 1628709664466) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709675434) (:by |rJG4IHzWf) (:text |>) (:type :leaf)
|j $ {} (:at 1628709675692) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|r $ {} (:at 1628709822832) (:by |rJG4IHzWf) (:text |progress) (:type :leaf)
|r $ {} (:at 1628709683323) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709683661) (:by |rJG4IHzWf) (:text |<) (:type :leaf)
|j $ {} (:at 1628709684079) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|r $ {} (:at 1628709684502) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709686033) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|j $ {} (:at 1628709687580) (:by |rJG4IHzWf) (:text |progress) (:type :leaf)
|r $ {} (:at 1628709692187) (:by |rJG4IHzWf) (:text |display-duration) (:type :leaf)
|f $ {} (:at 1628709889378) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710025323) (:by |rJG4IHzWf) (:text |wo-log) (:type :leaf)
|j $ {} (:at 1628709326237) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709402442) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1628709327733) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709328020) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1628709393039) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628709409811) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|T $ {} (:at 1628709392329) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|r $ {} (:at 1628709717404) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628709718076) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1628709718576) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709718910) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709720124) (:by |rJG4IHzWf) (:text |dx) (:type :leaf)
|j $ {} (:at 1628709843882) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628709848795) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|T $ {} (:at 1628709720795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709723364) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1628709727180) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709727180) (:by |rJG4IHzWf) (:text |:progress) (:type :leaf)
|j $ {} (:at 1628709727180) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|r $ {} (:at 1628709747081) (:by |rJG4IHzWf) (:text |progress) (:type :leaf)
|j $ {} (:at 1628709849625) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709852465) (:by |rJG4IHzWf) (:text |/) (:type :leaf)
|j $ {} (:at 1628709857908) (:by |rJG4IHzWf) (:text |display-duration) (:type :leaf)
|r $ {} (:at 1628709858596) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709860386) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1628709868159) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|v $ {} (:at 1628709946376) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709949030) (:by |rJG4IHzWf) (:text |negate) (:type :leaf)
|x $ {} (:at 1628710216952) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710231182) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|j $ {} (:at 1628710242130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710245268) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1628710282610) (:by |rJG4IHzWf) (:text |0.25) (:type :leaf)
|r $ {} (:at 1628710254924) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|T $ {} (:at 1628709413639) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709413915) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1628709414543) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1628709415533) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709417270) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628709417630) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709418015) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709754736) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709757234) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628709759082) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709761140) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709761494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709763912) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1628709770153) (:by |rJG4IHzWf) (:text |:absolute) (:type :leaf)
|r $ {} (:at 1628709771120) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709772256) (:by |rJG4IHzWf) (:text |:top) (:type :leaf)
|b $ {} (:at 1647457348999) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647457349804) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|L $ {} (:at 1647457355461) (:by |rJG4IHzWf) (:text |js/window.innerHeight) (:type :leaf)
|P $ {} (:at 1647457356460) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457357365) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|b $ {} (:at 1647458304771) (:by |rJG4IHzWf) (:text |400) (:type :leaf)
|T $ {} (:at 1647457298036) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457322981) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|b $ {} (:at 1647457298036) (:by |rJG4IHzWf) (:text |dx) (:type :leaf)
|v $ {} (:at 1628709834932) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709836437) (:by |rJG4IHzWf) (:text |:right) (:type :leaf)
|b $ {} (:at 1647457492661) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647457493307) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|L $ {} (:at 1647457498314) (:by |rJG4IHzWf) (:text |js/window.innerWidth) (:type :leaf)
|P $ {} (:at 1647457503470) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457503675) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|b $ {} (:at 1647457504750) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|T $ {} (:at 1647457295123) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457295123) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|h $ {} (:at 1647457295123) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457295123) (:by |rJG4IHzWf) (:text |:rand) (:type :leaf)
|b $ {} (:at 1647457295123) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|b $ {} (:at 1647457518364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457515212) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|b $ {} (:at 1647457519454) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|r $ {} (:at 1628710379349) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710383297) (:by |rJG4IHzWf) (:text |comp-bullet) (:type :leaf)
|j $ {} (:at 1628710388818) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710388818) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1628710388818) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|n $ {} (:at 1647458006589) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647458008003) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|b $ {} (:at 1647458008310) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|p $ {} (:at 1628707413326) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1647458766216) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1628707418529) (:by |rJG4IHzWf) (:text |comp-progress) (:type :leaf)
|j $ {} (:at 1628707418859) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707420412) (:by |rJG4IHzWf) (:text |:progress) (:type :leaf)
|j $ {} (:at 1628707421315) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|q $ {} (:at 1628709348404) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|5 $ {} (:at 1647458766776) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|D $ {} (:at 1628710060834) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|T $ {} (:at 1628709350356) (:by |rJG4IHzWf) (:text |comp-footer) (:type :leaf)
|x $ {} (:at 1521954055333) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1521954057510) (:by |root) (:text |when) (:type :leaf)
|L $ {} (:at 1521954059290) (:by |root) (:text |dev?) (:type :leaf)
|T $ {} (:at 1507461809635) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461815046) (:by |root) (:text |comp-reel) (:type :leaf)
|b $ {} (:at 1584780610581) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1584780611347) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:at 1509727101297) (:by |root) (:text |states) (:type :leaf)
|j $ {} (:at 1584780613268) (:by |rJG4IHzWf) (:text |:reel) (:type :leaf)
|j $ {} (:at 1507461840459) (:by |root) (:text |reel) (:type :leaf)
|r $ {} (:at 1507461840980) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461841342) (:by |root) (:text |{}) (:type :leaf)
|comp-footer $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709343197) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |comp-footer) (:type :leaf)
|n $ {} (:at 1628709344429) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |ui/row-parted) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"8px 16px") (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |ui/row-middle) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |span) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:inner-text) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"开始/暂停") (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:toggle) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|v $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |=<) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|x $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |32) (:type :leaf)
|v $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:white) (:type :leaf)
|x $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"0 8px") (:type :leaf)
|y $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"4px") (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:value) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|v $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |reply) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |js/prompt) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"弹幕内容") (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |reset-timer!) (:type :leaf)
|v $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:bullet) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |reply) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"发弹幕") (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"#aaa") (:type :leaf)
|v $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |span) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:inner-text) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text "|\"重新开始") (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |:restart) (:type :leaf)
|r $ {} (:at 1628709340690) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|comp-progress $ {} (:at 1628707425935) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707427419) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1628707425935) (:by |rJG4IHzWf) (:text |comp-progress) (:type :leaf)
|r $ {} (:at 1628707425935) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707432453) (:by |rJG4IHzWf) (:text |progress) (:type :leaf)
|v $ {} (:at 1628707625279) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707627498) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1628707627948) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707628494) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707629526) (:by |rJG4IHzWf) (:text |ratio) (:type :leaf)
|j $ {} (:at 1628707630427) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707630785) (:by |rJG4IHzWf) (:text |/) (:type :leaf)
|j $ {} (:at 1628707634025) (:by |rJG4IHzWf) (:text |progress) (:type :leaf)
|r $ {} (:at 1628707638730) (:by |rJG4IHzWf) (:text |video-length) (:type :leaf)
|T $ {} (:at 1628707596450) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707597841) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|L $ {} (:at 1628707598459) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707598792) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707599293) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707601547) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1628707601927) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707602260) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707602544) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707603473) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1628708625076) (:by |rJG4IHzWf) (:text "|\"0px 8px") (:type :leaf)
|T $ {} (:at 1628707445886) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707446366) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628707585834) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707586369) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|T $ {} (:at 1628707587125) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707588979) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|T $ {} (:at 1628707446795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707447175) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707508022) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707525535) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1628708640439) (:by |rJG4IHzWf) (:text |12) (:type :leaf)
|r $ {} (:at 1628707529289) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707531534) (:by |rJG4IHzWf) (:text |:border-top) (:type :leaf)
|j $ {} (:at 1628707531929) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707532765) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1628707541415) (:by |rJG4IHzWf) (:text "|\"1px solid ") (:type :leaf)
|r $ {} (:at 1628707535785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707536609) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1628707536856) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1628707537128) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1628707617729) (:by |rJG4IHzWf) (:text |50) (:type :leaf)
|r $ {} (:at 1628707640629) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707641211) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1628707713288) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707713856) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|T $ {} (:at 1628707709751) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1628707711225) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|T $ {} (:at 1628707711663) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707641951) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1628707642520) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707645239) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1628707650336) (:by |rJG4IHzWf) (:text |16) (:type :leaf)
|r $ {} (:at 1628707651288) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707654852) (:by |rJG4IHzWf) (:text |:border-right) (:type :leaf)
|j $ {} (:at 1628707659320) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707659887) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1628707664293) (:by |rJG4IHzWf) (:text "|\"8px solid ") (:type :leaf)
|r $ {} (:at 1628707665648) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707666096) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1628707667924) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1628707668398) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1628707671058) (:by |rJG4IHzWf) (:text |90) (:type :leaf)
|x $ {} (:at 1628707831224) (:by |rJG4IHzWf) (:text |0.7) (:type :leaf)
|v $ {} (:at 1628707719472) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707721628) (:by |rJG4IHzWf) (:text |:bottom) (:type :leaf)
|j $ {} (:at 1628707732618) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|x $ {} (:at 1628707725600) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707726958) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1628707728854) (:by |rJG4IHzWf) (:text |:relative) (:type :leaf)
|y $ {} (:at 1628707736960) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707738370) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1628707740363) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707741197) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1628707741467) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707741813) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1628707744988) (:by |rJG4IHzWf) (:text |ratio) (:type :leaf)
|r $ {} (:at 1628707745847) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|r $ {} (:at 1628707748381) (:by |rJG4IHzWf) (:text "|\"%") (:type :leaf)
:ns $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |ns) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |app.comp.container) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |:require) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|j $ {} (:at 1516527080962) (:by |root) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |:as) (:type :leaf)
|v $ {} (:at 1499755354983) (:by |root) (:text |ui) (:type :leaf)
|t $ {} (:at 1628707559799) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707567523) (:by |rJG4IHzWf) (:text |respo-ui.core) (:type :leaf)
|j $ {} (:at 1628707569190) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|r $ {} (:at 1628707569431) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707570357) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|j $ {} (:at 1540958704705) (:by |root) (:text |respo.core) (:type :leaf)
|r $ {} (:at 1508946162679) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|j $ {} (:at 1499755354983) (:by |root) (:text |defcomp) (:type :leaf)
|l $ {} (:at 1573355389740) (:by |rJG4IHzWf) (:text |defeffect) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |<>) (:type :leaf)
|t $ {} (:at 1584780606618) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|v $ {} (:at 1499755354983) (:by |root) (:text |div) (:type :leaf)
|x $ {} (:at 1499755354983) (:by |root) (:text |button) (:type :leaf)
|xT $ {} (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea) (:type :leaf)
|y $ {} (:at 1499755354983) (:by |root) (:text |span) (:type :leaf)
|yT $ {} (:at 1552321107012) (:by |rJG4IHzWf) (:text |input) (:type :leaf)
|yj $ {} (:at 1628709430528) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|z $ {} (:at 1647456475593) (:by |rJG4IHzWf) (:text |create-element) (:type :leaf)
|x $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|j $ {} (:at 1499755354983) (:by |root) (:text |respo.comp.space) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|j $ {} (:at 1499755354983) (:by |root) (:text |=<) (:type :leaf)
|y $ {} (:at 1507461845717) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1507461855480) (:by |root) (:text |reel.comp.reel) (:type :leaf)
|r $ {} (:at 1507461856264) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1507461856484) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1507461858342) (:by |root) (:text |comp-reel) (:type :leaf)
|yT $ {} (:at 1519699088529) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1519699092590) (:by |root) (:text |respo-md.comp.md) (:type :leaf)
|r $ {} (:at 1519699093410) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1519699093683) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1519699096732) (:by |root) (:text |comp-md) (:type :leaf)
|yj $ {} (:at 1521954061310) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1527788377809) (:by |root) (:text |app.config) (:type :leaf)
|r $ {} (:at 1521954064826) (:by |root) (:text |:refer) (:type :leaf)
|v $ {} (:at 1521954065004) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1521954067604) (:by |root) (:text |dev?) (:type :leaf)
|r $ {} (:at 1628707441261) (:by |rJG4IHzWf) (:text |video-length) (:type :leaf)
|v $ {} (:at 1628709646534) (:by |rJG4IHzWf) (:text |display-duration) (:type :leaf)
|yr $ {} (:at 1628708443567) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628708446055) (:by |rJG4IHzWf) (:text |app.timer) (:type :leaf)
|j $ {} (:at 1628708446888) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|r $ {} (:at 1628708447164) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628708447759) (:by |rJG4IHzWf) (:text |reset-timer!) (:type :leaf)
|yv $ {} (:at 1628710064574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710068934) (:by |rJG4IHzWf) (:text |memof.alias) (:type :leaf)
|j $ {} (:at 1628710070599) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|r $ {} (:at 1628710071312) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628710071602) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
:proc $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|app.config $ {}
:defs $ {}
|dev? $ {} (:at 1544873875614) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1544873875614) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1544873875614) (:by |rJG4IHzWf) (:text |dev?) (:type :leaf)
|r $ {} (:at 1624469709435) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|5 $ {} (:at 1624469715390) (:by |rJG4IHzWf) (:text |=) (:type :leaf)
|D $ {} (:at 1624469714304) (:by |rJG4IHzWf) (:text "|\"dev") (:type :leaf)
|T $ {} (:at 1624469701389) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1624469706777) (:by |rJG4IHzWf) (:text |get-env) (:type :leaf)
|T $ {} (:at 1624469708397) (:by |rJG4IHzWf) (:text "|\"mode") (:type :leaf)
|b $ {} (:at 1658749257434) (:by |rJG4IHzWf) (:text "|\"release") (:type :leaf)
|display-duration $ {} (:at 1628709627457) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709629973) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1628709627457) (:by |rJG4IHzWf) (:text |display-duration) (:type :leaf)
|r $ {} (:at 1628709627457) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628709632890) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1628709633578) (:by |rJG4IHzWf) (:text |1000) (:type :leaf)
|r $ {} (:at 1628710115058) (:by |rJG4IHzWf) (:text |20) (:type :leaf)
|site $ {} (:at 1545933382603) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1518157345496) (:by |root) (:text |def) (:type :leaf)
|j $ {} (:at 1518157327696) (:by |root) (:text |site) (:type :leaf)
|r $ {} (:at 1518157327696) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1518157346643) (:by |root) (:text |{}) (:type :leaf)
|yf $ {} (:at 1544956719115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1544956719115) (:by |rJG4IHzWf) (:text |:storage-key) (:type :leaf)
|j $ {} (:at 1628704311136) (:by |rJG4IHzWf) (:text "|\"bullet-train") (:type :leaf)
|video-length $ {} (:at 1628705970518) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705972236) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1628705970518) (:by |rJG4IHzWf) (:text |video-length) (:type :leaf)
|r $ {} (:at 1628705978639) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628705978975) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1628705983212) (:by |rJG4IHzWf) (:text |1000) (:type :leaf)
|r $ {} (:at 1628705986284) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|v $ {} (:at 1628705987420) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
:ns $ {} (:at 1527788237503) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1527788237503) (:by |root) (:text |ns) (:type :leaf)
|j $ {} (:at 1527788237503) (:by |root) (:text |app.config) (:type :leaf)
:proc $ {} (:at 1527788237503) (:by |root) (:type :expr)
:data $ {}
|app.main $ {}
:defs $ {}
|*auto-bullets $ {} (:at 1647457138792) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1647457141789) (:by |rJG4IHzWf) (:text |defatom) (:type :leaf)
|b $ {} (:at 1647457138792) (:by |rJG4IHzWf) (:text |*auto-bullets) (:type :leaf)
|h $ {} (:at 1647457143026) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|*reel $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1610792986987) (:by |rJG4IHzWf) (:text |defatom) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |*reel) (:type :leaf)
|r $ {} (:at 1507399777531) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1507399778895) (:by |root) (:text |->) (:type :leaf)
|T $ {} (:at 1507399776350) (:by |root) (:text |reel-schema/reel) (:type :leaf)
|j $ {} (:at 1507399779656) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507399781682) (:by |root) (:text |assoc) (:type :leaf)
|j $ {} (:at 1507401405076) (:by |root) (:text |:base) (:type :leaf)
|r $ {} (:at 1507399787471) (:by |root) (:text |schema/store) (:type :leaf)
|r $ {} (:at 1507399779656) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507399781682) (:by |root) (:text |assoc) (:type :leaf)
|j $ {} (:at 1507399793097) (:by |root) (:text |:store) (:type :leaf)
|r $ {} (:at 1507399787471) (:by |root) (:text |schema/store) (:type :leaf)
|*ticking $ {} (:at 1628707920461) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1628707921871) (:by |rJG4IHzWf) (:text |defatom) (:type :leaf)
|j $ {} (:at 1628707920461) (:by |rJG4IHzWf) (:text |*ticking) (:type :leaf)
|r $ {} (:at 1628707923926) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|dispatch! $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |defn) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |dispatch!) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |op) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |op-data) (:type :leaf)
|t $ {} (:at 1547437686766) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1547437687530) (:by |root) (:text |when) (:type :leaf)
|L $ {} (:at 1584874661674) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1584874662518) (:by |rJG4IHzWf) (:text |and) (:type :leaf)
|T $ {} (:at 1547437691006) (:by |root) (:text |config/dev?) (:type :leaf)
|j $ {} (:at 1584874663522) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1584874664551) (:by |rJG4IHzWf) (:text |not=) (:type :leaf)
|j $ {} (:at 1584874665829) (:by |rJG4IHzWf) (:text |op) (:type :leaf)
|r $ {} (:at 1584874671745) (:by |rJG4IHzWf) (:text |:states) (:type :leaf)
|T $ {} (:at 1518156274050) (:by |root) (:type :expr)
:data $ {}
|j $ {} (:at 1518156276516) (:by |root) (:text |println) (:type :leaf)
|r $ {} (:at 1547437698992) (:by |root) (:text "|\"Dispatch:") (:type :leaf)
|v $ {} (:at 1518156280471) (:by |root) (:text |op) (:type :leaf)
|v $ {} (:at 1584780634192) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |reset!) (:type :leaf)
|j $ {} (:at 1507399899641) (:by |root) (:text |*reel) (:type :leaf)
|r $ {} (:at 1507399884621) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507399887573) (:by |root) (:text |reel-updater) (:type :leaf)
|j $ {} (:at 1507399888500) (:by |root) (:text |updater) (:type :leaf)
|r $ {} (:at 1507399891576) (:by |root) (:text |@*reel) (:type :leaf)
|v $ {} (:at 1507399892687) (:by |root) (:text |op) (:type :leaf)
|x $ {} (:at 1507399894594) (:by |root) (:text |op-data) (:type :leaf)
|main! $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |defn) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |main!) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|t $ {} (:at 1544874433785) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1544874434638) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1544874509800) (:by |rJG4IHzWf) (:text "|\"Running mode:") (:type :leaf)
|r $ {} (:at 1544874440404) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1544874440190) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|j $ {} (:at 1544874446442) (:by |rJG4IHzWf) (:text |config/dev?) (:type :leaf)
|r $ {} (:at 1544874449063) (:by |rJG4IHzWf) (:text "|\"dev") (:type :leaf)
|v $ {} (:at 1544874452316) (:by |rJG4IHzWf) (:text "|\"release") (:type :leaf)
|x $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |render-app!) (:type :leaf)
|y $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1507399915531) (:by |root) (:text |*reel) (:type :leaf)
|r $ {} (:at 1499755354983) (:by |root) (:text |:changes) (:type :leaf)
|v $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |fn) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1612280609284) (:by |rJG4IHzWf) (:text |reel) (:type :leaf)
|j $ {} (:at 1612280610651) (:by |rJG4IHzWf) (:text |prev) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |render-app!) (:type :leaf)
|yD $ {} (:at 1507461684494) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461739167) (:by |root) (:text |listen-devtools!) (:type :leaf)
|j $ {} (:at 1624007376825) (:by |rJG4IHzWf) (:text ||k) (:type :leaf)
|r $ {} (:at 1507461693919) (:by |root) (:text |dispatch!) (:type :leaf)
|yL $ {} (:at 1518157357847) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1624469377233) (:by |rJG4IHzWf) (:text |.!addEventListener) (:type :leaf)
|j $ {} (:at 1518157453505) (:by |root) (:text |js/window) (:type :leaf)
|r $ {} (:at 1518157458163) (:by |root) (:text ||beforeunload) (:type :leaf)
|v $ {} (:at 1612344221583) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1612344222204) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|L $ {} (:at 1612344222530) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612344223520) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|T $ {} (:at 1612344224533) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!) (:type :leaf)
|yN $ {} (:at 1533919529874) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1544956062322) (:by |rJG4IHzWf) (:text |repeat!) (:type :leaf)
|b $ {} (:at 1544956066171) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|j $ {} (:at 1533919535136) (:by |rJG4IHzWf) (:text |persist-storage!) (:type :leaf)
|yP $ {} (:at 1518157492640) (:by |root) (:type :expr)