generated from Phlox-GL/phlox-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
3396 lines (3395 loc) · 280 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.4.10)
:modules $ [] |memof/ |lilac/ |respo.calcit/ |respo-ui.calcit/ |phlox/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-container $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1615450365814) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662792335) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1583036824444) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1583036827332) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1583036827630) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036827827) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036828777) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1583036829493) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036830034) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1583036831664) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036832446) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|j $ {} (:at 1583036832651) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036833411) (:by |rJG4IHzWf) (:text |:states) (:type :leaf)
|j $ {} (:at 1583036834181) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1631262740262) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262743117) (:by |rJG4IHzWf) (:text |grid) (:type :leaf)
|j $ {} (:at 1631262743563) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262745606) (:by |rJG4IHzWf) (:text |:grid) (:type :leaf)
|j $ {} (:at 1631262746278) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|v $ {} (:at 1631262747278) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262757408) (:by |rJG4IHzWf) (:text |drop-position) (:type :leaf)
|j $ {} (:at 1631262795562) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631262796568) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|T $ {} (:at 1631262760164) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262759989) (:by |rJG4IHzWf) (:text |:drop-position) (:type :leaf)
|j $ {} (:at 1631262761300) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|j $ {} (:at 1631262797668) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262798140) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631262798848) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631262799134) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|w $ {} (:at 1631263270350) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263271863) (:by |rJG4IHzWf) (:text |drop-pick) (:type :leaf)
|j $ {} (:at 1631263272433) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263275120) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|j $ {} (:at 1631263276612) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631263281203) (:by |rJG4IHzWf) (:text |:drop-pick) (:type :leaf)
|T $ {} (:at 1631263276173) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1631263282235) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263282469) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631263282980) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631263283366) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|x $ {} (:at 1631262762123) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262764114) (:by |rJG4IHzWf) (:text |dropping) (:type :leaf)
|j $ {} (:at 1631262801378) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631263285613) (:by |rJG4IHzWf) (:text |get-in) (:type :leaf)
|T $ {} (:at 1631263328253) (:by |rJG4IHzWf) (:text |shapes-variations) (:type :leaf)
|j $ {} (:at 1631263303559) (:by |rJG4IHzWf) (:text |drop-pick) (:type :leaf)
|y $ {} (:at 1631262868682) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262879770) (:by |rJG4IHzWf) (:text |dropping-cells) (:type :leaf)
|j $ {} (:at 1631270292955) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631270293715) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1631270294531) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270295636) (:by |rJG4IHzWf) (:text |some?) (:type :leaf)
|j $ {} (:at 1631270297095) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270299953) (:by |rJG4IHzWf) (:text |:drop-pick) (:type :leaf)
|j $ {} (:at 1631270300971) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|T $ {} (:at 1631262880782) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262882578) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1631262885070) (:by |rJG4IHzWf) (:text |dropping) (:type :leaf)
|r $ {} (:at 1631262886809) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262887430) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|j $ {} (:at 1631262887818) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262888136) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631262888985) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262888726) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|r $ {} (:at 1631262909727) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262911863) (:by |rJG4IHzWf) (:text |complex/add) (:type :leaf)
|j $ {} (:at 1631262914577) (:by |rJG4IHzWf) (:text |drop-position) (:type :leaf)
|r $ {} (:at 1631262916680) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|v $ {} (:at 1631262920405) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262921596) (:by |rJG4IHzWf) (:text |.to-set) (:type :leaf)
|j $ {} (:at 1631270306750) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270306218) (:by |rJG4IHzWf) (:text |#{}) (:type :leaf)
|P $ {} (:at 1631262924238) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631266445474) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1631262929120) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1631266197306) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266201082) (:by |rJG4IHzWf) (:text |:failed?) (:type :leaf)
|j $ {} (:at 1631266199243) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|T $ {} (:at 1631266071881) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631266073125) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|L $ {} (:at 1631266076126) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266076126) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1631266076126) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266076126) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1631266076126) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266076126) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|f $ {} (:at 1632893046026) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|p $ {} (:at 1632893047273) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|P $ {} (:at 1631269016904) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269017554) (:by |rJG4IHzWf) (:text |rect) (:type :leaf)
|j $ {} (:at 1631269018371) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269018785) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1631269019204) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269021005) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1631269025655) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269027351) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631271308257) (:by |rJG4IHzWf) (:text |-300) (:type :leaf)
|r $ {} (:at 1631271309994) (:by |rJG4IHzWf) (:text |-300) (:type :leaf)
|r $ {} (:at 1631269029830) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269033089) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1631269034898) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269036580) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631269039391) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631269040062) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1631269062580) (:by |rJG4IHzWf) (:text |96) (:type :leaf)
|v $ {} (:at 1631269046317) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269046317) (:by |rJG4IHzWf) (:text |:size) (:type :leaf)
|j $ {} (:at 1631269046317) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631269046317) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631271305818) (:by |rJG4IHzWf) (:text |600) (:type :leaf)
|r $ {} (:at 1631271304166) (:by |rJG4IHzWf) (:text |600) (:type :leaf)
|T $ {} (:at 1574353986671) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1574353987962) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|L $ {} (:at 1574353988241) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1574353988566) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|V $ {} (:at 1631256271727) (:by |rJG4IHzWf) (:text |&) (:type :leaf)
|f $ {} (:at 1631256033445) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256133344) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1631256035963) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256036900) (:by |rJG4IHzWf) (:text |:grid) (:type :leaf)
|j $ {} (:at 1631256038437) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1631256038789) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256077702) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1631256078029) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256078313) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631256078593) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256127318) (:by |rJG4IHzWf) (:text |row-idx) (:type :leaf)
|j $ {} (:at 1631256080421) (:by |rJG4IHzWf) (:text |row) (:type :leaf)
|r $ {} (:at 1631256123678) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256131467) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1631256134984) (:by |rJG4IHzWf) (:text |row) (:type :leaf)
|r $ {} (:at 1631256135520) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256138099) (:by |rJG4IHzWf) (:text |map-indexed) (:type :leaf)
|j $ {} (:at 1631256141214) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631256141733) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|T $ {} (:at 1631256138484) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256140676) (:by |rJG4IHzWf) (:text |col-idx) (:type :leaf)
|j $ {} (:at 1631256144710) (:by |rJG4IHzWf) (:text |cell) (:type :leaf)
|j $ {} (:at 1631262951454) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631262952244) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1631262952447) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262952621) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263068364) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|j $ {} (:at 1631263068672) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263069245) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631263071531) (:by |rJG4IHzWf) (:text |row-idx) (:type :leaf)
|r $ {} (:at 1631263073240) (:by |rJG4IHzWf) (:text |col-idx) (:type :leaf)
|T $ {} (:at 1631256146146) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256149105) (:by |rJG4IHzWf) (:text |rect) (:type :leaf)
|j $ {} (:at 1631256182901) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631256185414) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|T $ {} (:at 1631256179757) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256182247) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|r $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|b $ {} (:at 1631263099289) (:by |rJG4IHzWf) (:text |col-idx) (:type :leaf)
|r $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |middle-idx) (:type :leaf)
|r $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |12) (:type :leaf)
|r $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |-) (:type :leaf)
|j $ {} (:at 1631263102022) (:by |rJG4IHzWf) (:text |row-idx) (:type :leaf)
|r $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |middle-idx) (:type :leaf)
|r $ {} (:at 1631263057688) (:by |rJG4IHzWf) (:text |12) (:type :leaf)
|j $ {} (:at 1631256204221) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256207938) (:by |rJG4IHzWf) (:text |:size) (:type :leaf)
|j $ {} (:at 1631256210407) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631256214900) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|T $ {} (:at 1631269101349) (:by |rJG4IHzWf) (:text |12) (:type :leaf)
|j $ {} (:at 1631269102209) (:by |rJG4IHzWf) (:text |12) (:type :leaf)
|r $ {} (:at 1631256215685) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256220508) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1631265351979) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631265353938) (:by |rJG4IHzWf) (:text |cond) (:type :leaf)
|T $ {} (:at 1631262960466) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|L $ {} (:at 1631262962458) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262965229) (:by |rJG4IHzWf) (:text |.includes?) (:type :leaf)
|j $ {} (:at 1631262967770) (:by |rJG4IHzWf) (:text |dropping-cells) (:type :leaf)
|r $ {} (:at 1631262968985) (:by |rJG4IHzWf) (:text |p) (:type :leaf)
|T $ {} (:at 1631256221692) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256222183) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631256224486) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|r $ {} (:at 1631256355335) (:by |rJG4IHzWf) (:text |10) (:type :leaf)
|v $ {} (:at 1631269973672) (:by |rJG4IHzWf) (:text |50) (:type :leaf)
|b $ {} (:at 1631265385787) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631265392235) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631265398737) (:by |rJG4IHzWf) (:text |some?) (:type :leaf)
|j $ {} (:at 1631265399582) (:by |rJG4IHzWf) (:text |cell) (:type :leaf)
|b $ {} (:at 1631471057869) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471061453) (:by |rJG4IHzWf) (:text |case-default) (:type :leaf)
|j $ {} (:at 1631471064806) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471064806) (:by |rJG4IHzWf) (:text |:kind) (:type :leaf)
|j $ {} (:at 1631471064806) (:by |rJG4IHzWf) (:text |cell) (:type :leaf)
|r $ {} (:at 1631471258206) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471258206) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631471258206) (:by |rJG4IHzWf) (:text |10) (:type :leaf)
|r $ {} (:at 1631471258206) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|v $ {} (:at 1631471258206) (:by |rJG4IHzWf) (:text |10) (:type :leaf)
|v $ {} (:at 1631471068062) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471073497) (:by |rJG4IHzWf) (:text |:preset) (:type :leaf)
|j $ {} (:at 1631471075475) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471075475) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1631471075475) (:by |rJG4IHzWf) (:text |cell) (:type :leaf)
|x $ {} (:at 1631471079944) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631472933525) (:by |rJG4IHzWf) (:text |:collapsing) (:type :leaf)
|j $ {} (:at 1631471082157) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471084790) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631471088247) (:by |rJG4IHzWf) (:text |30) (:type :leaf)
|r $ {} (:at 1631471089352) (:by |rJG4IHzWf) (:text |90) (:type :leaf)
|v $ {} (:at 1631471091769) (:by |rJG4IHzWf) (:text |70) (:type :leaf)
|j $ {} (:at 1631265378023) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631265378958) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|j $ {} (:at 1631265379678) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631265379678) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631265379678) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|r $ {} (:at 1631265379678) (:by |rJG4IHzWf) (:text |10) (:type :leaf)
|v $ {} (:at 1631269142923) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|v $ {} (:at 1631256081842) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256086088) (:by |rJG4IHzWf) (:text |concat-all) (:type :leaf)
|b $ {} (:at 1631270069279) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270188203) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1631270073053) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270073456) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1631270076375) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270077688) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1631270080150) (:by |rJG4IHzWf) (:text "|\"Reset") (:type :leaf)
|r $ {} (:at 1631270081193) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270085470) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1631270086114) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270086527) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631271283889) (:by |rJG4IHzWf) (:text |340) (:type :leaf)
|r $ {} (:at 1631270089864) (:by |rJG4IHzWf) (:text |-40) (:type :leaf)
|v $ {} (:at 1631270092083) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270094370) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1631270094726) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270095665) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631270099550) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631270100048) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1631270112283) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|x $ {} (:at 1631270092083) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270109686) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1631270094726) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270095665) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631270099550) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631270100048) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1631270102034) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|y $ {} (:at 1631270119623) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270227969) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1631270123770) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270124195) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631270124869) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270125263) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1631270125977) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1631270126541) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270127518) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1631270128544) (:by |rJG4IHzWf) (:text |:reset) (:type :leaf)
|r $ {} (:at 1631270130998) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|f $ {} (:at 1631270069279) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270188203) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|j $ {} (:at 1631270073053) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270073456) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1631270076375) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270077688) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1631271236006) (:by |rJG4IHzWf) (:text "|\"Fullscreen") (:type :leaf)
|r $ {} (:at 1631270081193) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270085470) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1631270086114) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270086527) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631271286450) (:by |rJG4IHzWf) (:text |340) (:type :leaf)
|r $ {} (:at 1631271230673) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|v $ {} (:at 1631270092083) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270094370) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1631270094726) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270095665) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631270099550) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631270100048) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1631270112283) (:by |rJG4IHzWf) (:text |100) (:type :leaf)
|x $ {} (:at 1631270092083) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270109686) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1631270094726) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270095665) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|j $ {} (:at 1631270099550) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631270100048) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1631270102034) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|y $ {} (:at 1631270119623) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270227969) (:by |rJG4IHzWf) (:text |:on-pointertap) (:type :leaf)
|j $ {} (:at 1631270123770) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270124195) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631270124869) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270125263) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1631270125977) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1631271244179) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631271264977) (:by |rJG4IHzWf) (:text |js/document.body.requestFullscreen) (:type :leaf)
|j $ {} (:at 1631266162657) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631266163329) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1631266163735) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266165687) (:by |rJG4IHzWf) (:text |:failed?) (:type :leaf)
|j $ {} (:at 1631266167682) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|T $ {} (:at 1631266080371) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266082824) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|j $ {} (:at 1631266084749) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266085147) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1631266085416) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266089050) (:by |rJG4IHzWf) (:text |:position) (:type :leaf)
|j $ {} (:at 1631266089452) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266089782) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1631271287916) (:by |rJG4IHzWf) (:text |340) (:type :leaf)
|r $ {} (:at 1631266091986) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1631266093215) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266094400) (:by |rJG4IHzWf) (:text |:text) (:type :leaf)
|j $ {} (:at 1631266095972) (:by |rJG4IHzWf) (:text "|\"Failed") (:type :leaf)
|v $ {} (:at 1631266096464) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266102190) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1631266110445) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266110851) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1631266111124) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266112521) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1631266371243) (:by |rJG4IHzWf) (:text |24) (:type :leaf)
|r $ {} (:at 1631266113889) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266116111) (:by |rJG4IHzWf) (:text |:fill) (:type :leaf)
|j $ {} (:at 1631266120453) (:by |rJG4IHzWf) (:text "|\"red") (:type :leaf)
|v $ {} (:at 1631266129039) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266131596) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1631267896562) (:by |rJG4IHzWf) (:text "|\"Josefin Sans") (:type :leaf)
|concat-all $ {} (:at 1631256092620) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256094083) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1631256092620) (:by |rJG4IHzWf) (:text |concat-all) (:type :leaf)
|r $ {} (:at 1631256092620) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256096881) (:by |rJG4IHzWf) (:text |xs) (:type :leaf)
|v $ {} (:at 1631256100096) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256103115) (:by |rJG4IHzWf) (:text |&list:concat) (:type :leaf)
|j $ {} (:at 1631256104513) (:by |rJG4IHzWf) (:text |&) (:type :leaf)
|r $ {} (:at 1631256105994) (:by |rJG4IHzWf) (:text |xs) (:type :leaf)
|middle-idx $ {} (:at 1631256301766) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256303365) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1631256301766) (:by |rJG4IHzWf) (:text |middle-idx) (:type :leaf)
|r $ {} (:at 1631256327214) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631256328391) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|L $ {} (:at 1631256329735) (:by |rJG4IHzWf) (:text |0.5) (:type :leaf)
|T $ {} (:at 1631256301766) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256324487) (:by |rJG4IHzWf) (:text |dec) (:type :leaf)
|j $ {} (:at 1631256326729) (:by |rJG4IHzWf) (:text |grid-size) (:type :leaf)
:ns $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:text |ns) (:type :leaf)
|j $ {} (:at 1573356292089) (:by |rJG4IHzWf) (:text |app.comp.container) (:type :leaf)
|r $ {} (:at 1573356347927) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573356351680) (:by |rJG4IHzWf) (:text |:require) (:type :leaf)
|j $ {} (:at 1573356351873) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1573356354451) (:by |rJG4IHzWf) (:text |phlox.core) (:type :leaf)
|r $ {} (:at 1573356355219) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1573356355436) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|s $ {} (:at 1581850032842) (:by |rJG4IHzWf) (:text |g) (:type :leaf)
|t $ {} (:at 1581003569723) (:by |rJG4IHzWf) (:text |hslx) (:type :leaf)
|v $ {} (:at 1573974176863) (:by |rJG4IHzWf) (:text |rect) (:type :leaf)
|x $ {} (:at 1573974179009) (:by |rJG4IHzWf) (:text |circle) (:type :leaf)
|y $ {} (:at 1573974179800) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|yT $ {} (:at 1573974254119) (:by |rJG4IHzWf) (:text |container) (:type :leaf)
|yb $ {} (:at 1574181633700) (:by |rJG4IHzWf) (:text |graphics) (:type :leaf)
|yj $ {} (:at 1574007057783) (:by |rJG4IHzWf) (:text |create-list) (:type :leaf)
|yr $ {} (:at 1584639017252) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|x $ {} (:at 1583034151993) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583034161865) (:by |rJG4IHzWf) (:text |phlox.comp.button) (:type :leaf)
|r $ {} (:at 1583034163079) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1583034163311) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583034313642) (:by |rJG4IHzWf) (:text |comp-button) (:type :leaf)
|yT $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:text |phlox.comp.drag-point) (:type :leaf)
|r $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1583040803587) (:by |rJG4IHzWf) (:text |comp-drag-point) (:type :leaf)
|yy $ {} (:at 1586601776776) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1586601779518) (:by |rJG4IHzWf) (:text "|\"shortid") (:type :leaf)
|r $ {} (:at 1586601780086) (:by |rJG4IHzWf) (:text |:as) (:type :leaf)
|v $ {} (:at 1586601781086) (:by |rJG4IHzWf) (:text |shortid) (:type :leaf)
|yyT $ {} (:at 1587288593017) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1587288596975) (:by |rJG4IHzWf) (:text |respo-ui.core) (:type :leaf)
|r $ {} (:at 1587288597735) (:by |rJG4IHzWf) (:text |:as) (:type :leaf)
|v $ {} (:at 1587288598134) (:by |rJG4IHzWf) (:text |ui) (:type :leaf)
|yyj $ {} (:at 1612613233615) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1612613236216) (:by |rJG4IHzWf) (:text |memof.alias) (:type :leaf)
|r $ {} (:at 1612613237132) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|v $ {} (:at 1612613237369) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1612613239222) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|yyr $ {} (:at 1631256305585) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256308444) (:by |rJG4IHzWf) (:text |app.config) (:type :leaf)
|j $ {} (:at 1631256311005) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|r $ {} (:at 1631256311204) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631256312594) (:by |rJG4IHzWf) (:text |grid-size) (:type :leaf)
|yyv $ {} (:at 1631262897212) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631262900823) (:by |rJG4IHzWf) (:text |phlox.complex) (:type :leaf)
|j $ {} (:at 1631262902563) (:by |rJG4IHzWf) (:text |:as) (:type :leaf)
|r $ {} (:at 1631262905270) (:by |rJG4IHzWf) (:text |complex) (:type :leaf)
|yyx $ {} (:at 1631263307936) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263311232) (:by |rJG4IHzWf) (:text |app.schema) (:type :leaf)
|j $ {} (:at 1631263312913) (:by |rJG4IHzWf) (:text |:refer) (:type :leaf)
|r $ {} (:at 1631263313620) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631263325696) (:by |rJG4IHzWf) (:text |shapes-variations) (:type :leaf)
:proc $ {} (:at 1573356292089) (:by |rJG4IHzWf) (: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 1629169637330) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629169639390) (:by |rJG4IHzWf) (:text |=) (:type :leaf)
|j $ {} (:at 1629169645405) (:by |rJG4IHzWf) (:text "|\"dev") (:type :leaf)
|r $ {} (:at 1629169640598) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629169641719) (:by |rJG4IHzWf) (:text |get-env) (:type :leaf)
|j $ {} (:at 1629169643174) (:by |rJG4IHzWf) (:text "|\"mode") (:type :leaf)
|n $ {} (:at 1658689013367) (:by |rJG4IHzWf) (:text "|\"release") (:type :leaf)
|grid-size $ {} (:at 1631253950708) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631253953053) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1631253950708) (:by |rJG4IHzWf) (:text |grid-size) (:type :leaf)
|r $ {} (:at 1631270911764) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631270915487) (:by |rJG4IHzWf) (:text |js/parseInt) (:type :leaf)
|T $ {} (:at 1631270849414) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631270854061) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|T $ {} (:at 1631270841755) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631270844527) (:by |rJG4IHzWf) (:text |get-env) (:type :leaf)
|L $ {} (:at 1631270846350) (:by |rJG4IHzWf) (:text "|\"size") (:type :leaf)
|j $ {} (:at 1631270918149) (:by |rJG4IHzWf) (:text "|\"31") (: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)
|r $ {} (:at 1527526861413) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1527526864597) (:by |root) (:text |:dev-ui) (:type :leaf)
|x $ {} (:at 1540054307727) (:by |root) (:text "|\"http://localhost:8100/main.css") (:type :leaf)
|v $ {} (:at 1527526865931) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1527526868617) (:by |root) (:text |:release-ui) (:type :leaf)
|j $ {} (:at 1527526887965) (:by |root) (:text "|\"http://cdn.tiye.me/favored-fonts/main.css") (:type :leaf)
|w $ {} (:at 1528008960614) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1528008962775) (:by |root) (:text |:cdn-url) (:type :leaf)
|j $ {} (:at 1573292416508) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/phlox/") (:type :leaf)
|y $ {} (:at 1527868456422) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1527868457305) (:by |root) (:text |:title) (:type :leaf)
|j $ {} (:at 1573292411084) (:by |rJG4IHzWf) (:text "|\"Phlox") (:type :leaf)
|yT $ {} (:at 1527868457696) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1527868458476) (:by |root) (:text |:icon) (:type :leaf)
|j $ {} (:at 1573292425255) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/logo/quamolit.png") (:type :leaf)
|yf $ {} (:at 1544956719115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1544956719115) (:by |rJG4IHzWf) (:text |:storage-key) (:type :leaf)
|j $ {} (:at 1573294243713) (:by |rJG4IHzWf) (:text "|\"phlox") (:type :leaf)
|tick-interval $ {} (:at 1631270865088) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270867729) (:by |rJG4IHzWf) (:text |def) (:type :leaf)
|j $ {} (:at 1631270865088) (:by |rJG4IHzWf) (:text |tick-interval) (:type :leaf)
|r $ {} (:at 1631270898844) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631270902933) (:by |rJG4IHzWf) (:text |js/parseInt) (:type :leaf)
|T $ {} (:at 1631270865088) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270869786) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|j $ {} (:at 1631270870162) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631270871909) (:by |rJG4IHzWf) (:text |get-env) (:type :leaf)
|j $ {} (:at 1631270877704) (:by |rJG4IHzWf) (:text "|\"interval") (:type :leaf)
|r $ {} (:at 1631271017225) (:by |rJG4IHzWf) (:text "|\"300") (: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 $ {}
|*dispatch-fn $ {} (:at 1631261608627) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261613310) (:by |rJG4IHzWf) (:text |defatom) (:type :leaf)
|j $ {} (:at 1631261608627) (:by |rJG4IHzWf) (:text |*dispatch-fn) (:type :leaf)
|r $ {} (:at 1631261616502) (:by |rJG4IHzWf) (:text |dispatch!) (:type :leaf)
|*store $ {} (:at 1573662553239) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612518324467) (:by |rJG4IHzWf) (:text |defatom) (:type :leaf)
|j $ {} (:at 1573662553239) (:by |rJG4IHzWf) (:text |*store) (:type :leaf)
|r $ {} (:at 1573662562450) (:by |rJG4IHzWf) (:text |schema/store) (:type :leaf)
|dispatch! $ {} (:at 1573662594481) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662594481) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1573662594481) (:by |rJG4IHzWf) (:text |dispatch!) (:type :leaf)
|r $ {} (:at 1573662594481) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662598886) (:by |rJG4IHzWf) (:text |op) (:type :leaf)
|j $ {} (:at 1573662603266) (:by |rJG4IHzWf) (:text |op-data) (:type :leaf)
|x $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |when) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |and) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |dev?) (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |not=) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op) (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |:states) (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text "|\"dispatch!") (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op) (:type :leaf)
|v $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op-data) (:type :leaf)
|y $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op-id) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |shortid/generate) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op-time) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|j $ {} (:at 1622476150108) (:by |rJG4IHzWf) (:text |js/Date.now) (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |reset!) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |*store) (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |updater) (:type :leaf)
|j $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |@*store) (:type :leaf)
|r $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op) (:type :leaf)
|v $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op-data) (:type :leaf)
|x $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op-id) (:type :leaf)
|y $ {} (:at 1583036785574) (:by |rJG4IHzWf) (:text |op-time) (:type :leaf)
|main! $ {} (:at 1548266583359) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1548266583359) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1548266583359) (:by |rJG4IHzWf) (:text |main!) (:type :leaf)
|r $ {} (:at 1548266583359) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|x $ {} (:at 1548267246722) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1573356695965) (:by |rJG4IHzWf) (:text |;) (:type :leaf)
|T $ {} (:at 1548267254997) (:by |rJG4IHzWf) (:text |js/console.log) (:type :leaf)
|j $ {} (:at 1548267256875) (:by |rJG4IHzWf) (:text |PIXI) (:type :leaf)
|x5 $ {} (:at 1629169679580) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629169680159) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1629169690355) (:by |rJG4IHzWf) (:text |dev?) (:type :leaf)
|T $ {} (:at 1619604279980) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1619604280258) (:by |rJG4IHzWf) (:text |load-console-formatter!) (:type :leaf)
|yD $ {} (:at 1583685469966) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1583685471113) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|T $ {} (:at 1583685458471) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|5 $ {} (:at 1612518371822) (:by |rJG4IHzWf) (:text |new) (:type :leaf)
|D $ {} (:at 1612537470545) (:by |rJG4IHzWf) (:text |FontFaceObserver/default) (:type :leaf)
|L $ {} (:at 1583685465541) (:by |rJG4IHzWf) (:text "|\"Josefin Sans") (:type :leaf)
|j $ {} (:at 1583685473053) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622473394612) (:by |rJG4IHzWf) (:text |.!load) (:type :leaf)
|r $ {} (:at 1583685474396) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622473396717) (:by |rJG4IHzWf) (:text |.!then) (:type :leaf)
|j $ {} (:at 1583685475787) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1583685476122) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1583685476351) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612518724131) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|r $ {} (:at 1612598209322) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612598212748) (:by |rJG4IHzWf) (:text |render-app!) (:type :leaf)
|yL $ {} (:at 1573662742473) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662744127) (:by |rJG4IHzWf) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1573662745368) (:by |rJG4IHzWf) (:text |*store) (:type :leaf)
|r $ {} (:at 1573662747477) (:by |rJG4IHzWf) (:text |:change) (:type :leaf)
|v $ {} (:at 1573662747891) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573662748179) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1573662748480) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612523240288) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|j $ {} (:at 1612523241647) (:by |rJG4IHzWf) (:text |prev) (:type :leaf)
|r $ {} (:at 1612598419615) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612598461873) (:by |rJG4IHzWf) (:text |render-app!) (:type :leaf)
|yP $ {} (:at 1631261188218) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261201172) (:by |rJG4IHzWf) (:text |js/window.addEventListener) (:type :leaf)
|j $ {} (:at 1631261203405) (:by |rJG4IHzWf) (:text "|\"resize") (:type :leaf)
|r $ {} (:at 1631261203741) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261204293) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631261204926) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261206596) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|r $ {} (:at 1631261207216) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261213271) (:by |rJG4IHzWf) (:text |render-app!) (:type :leaf)
|yR $ {} (:at 1631261308448) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261316442) (:by |rJG4IHzWf) (:text |js/setInterval) (:type :leaf)
|b $ {} (:at 1631261323401) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261324459) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631261324771) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|r $ {} (:at 1631476002366) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631476002982) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1631476003743) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631476004202) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|j $ {} (:at 1631476014691) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631476007780) (:by |rJG4IHzWf) (:text |:paused?) (:type :leaf)
|j $ {} (:at 1631476013416) (:by |rJG4IHzWf) (:text |@*store) (:type :leaf)
|r $ {} (:at 1631476016381) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631476018912) (:by |rJG4IHzWf) (:text |:failed?) (:type :leaf)
|j $ {} (:at 1631476024930) (:by |rJG4IHzWf) (:text |@*store) (:type :leaf)
|T $ {} (:at 1631261326346) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261634138) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631261347816) (:by |rJG4IHzWf) (:text |:tick) (:type :leaf)
|r $ {} (:at 1631261348992) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|j $ {} (:at 1631270940475) (:by |rJG4IHzWf) (:text |config/tick-interval) (:type :leaf)
|yS $ {} (:at 1631261354008) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261360574) (:by |rJG4IHzWf) (:text |js/window.addEventListener) (:type :leaf)
|j $ {} (:at 1631261477529) (:by |rJG4IHzWf) (:text "|\"keydown") (:type :leaf)
|r $ {} (:at 1631261441477) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261448509) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631261448810) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261449822) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|r $ {} (:at 1631261456737) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631261490813) (:by |rJG4IHzWf) (:text |case-default) (:type :leaf)
|T $ {} (:at 1631261450711) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261454392) (:by |rJG4IHzWf) (:text |.-key) (:type :leaf)
|j $ {} (:at 1631261455110) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|j $ {} (:at 1631329215919) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631329216581) (:by |rJG4IHzWf) (:text |do) (:type :leaf)
|L $ {} (:at 1631329217231) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631329218352) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1631329231108) (:by |rJG4IHzWf) (:text "|\"Event:") (:type :leaf)
|r $ {} (:at 1631329228830) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631329228830) (:by |rJG4IHzWf) (:text |.-key) (:type :leaf)
|j $ {} (:at 1631329228830) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|T $ {} (:at 1631261493425) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|r $ {} (:at 1631261494115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261496208) (:by |rJG4IHzWf) (:text "|\"ArrowUp") (:type :leaf)
|j $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261637361) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631261501231) (:by |rJG4IHzWf) (:text |:up) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|v $ {} (:at 1631261494115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261505996) (:by |rJG4IHzWf) (:text "|\"ArrowDown") (:type :leaf)
|j $ {} (:at 1631476139321) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631476139906) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1631476142141) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631476142141) (:by |rJG4IHzWf) (:text |.-shiftKey) (:type :leaf)
|j $ {} (:at 1631476142141) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|T $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261638379) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631476152960) (:by |rJG4IHzWf) (:text |:down-most) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|j $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261638379) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631261508697) (:by |rJG4IHzWf) (:text |:down) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|x $ {} (:at 1631261494115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261512738) (:by |rJG4IHzWf) (:text "|\"ArrowLeft") (:type :leaf)
|j $ {} (:at 1631476074978) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631476077425) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1631476077721) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631476083253) (:by |rJG4IHzWf) (:text |.-shiftKey) (:type :leaf)
|j $ {} (:at 1631476084345) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|T $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261639262) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631476090140) (:by |rJG4IHzWf) (:text |:left-most) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|j $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261639262) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631261514419) (:by |rJG4IHzWf) (:text |:left) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|y $ {} (:at 1631261494115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261520593) (:by |rJG4IHzWf) (:text "|\"ArrowRight") (:type :leaf)
|j $ {} (:at 1631476092573) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1631476094167) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1631476096332) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631476096332) (:by |rJG4IHzWf) (:text |.-shiftKey) (:type :leaf)
|j $ {} (:at 1631476096332) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|T $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261640330) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631476105976) (:by |rJG4IHzWf) (:text |:right-most) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|j $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261640330) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631261522914) (:by |rJG4IHzWf) (:text |:right) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|yT $ {} (:at 1631261494115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631329245709) (:by |rJG4IHzWf) (:text "|\" ") (:type :leaf)
|j $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261640330) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631476155946) (:by |rJG4IHzWf) (:text |:down-most) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|yj $ {} (:at 1631261494115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631471712928) (:by |rJG4IHzWf) (:text "|\"Enter") (:type :leaf)
|j $ {} (:at 1631261499333) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261640330) (:by |rJG4IHzWf) (:text |@*dispatch-fn) (:type :leaf)
|j $ {} (:at 1631471678761) (:by |rJG4IHzWf) (:text |:toggle-pause) (:type :leaf)
|r $ {} (:at 1631261501994) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|yT $ {} (:at 1573356701317) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1573356701317) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1573356701317) (:by |rJG4IHzWf) (:text "|\"App Started") (:type :leaf)
|reload! $ {} (:at 1629390760417) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629390761154) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|L $ {} (:at 1629390762875) (:by |rJG4IHzWf) (:text |reload!) (:type :leaf)
|P $ {} (:at 1629390763423) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629390769213) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629390769642) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|L $ {} (:at 1629390769878) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629390771868) (:by |rJG4IHzWf) (:text |nil?) (:type :leaf)
|j $ {} (:at 1629390773740) (:by |rJG4IHzWf) (:text |build-errors) (:type :leaf)
|T $ {} (:at 1548266585003) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629390768014) (:by |rJG4IHzWf) (:text |do) (:type :leaf)
|v $ {} (:at 1548266587906) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1548266588778) (:by |rJG4IHzWf) (:text |println) (:type :leaf)
|j $ {} (:at 1612598589710) (:by |rJG4IHzWf) (:text "|\"Code updated.") (:type :leaf)
|w $ {} (:at 1593275706640) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1593275715294) (:by |rJG4IHzWf) (:text |clear-phlox-caches!) (:type :leaf)
|xD $ {} (:at 1631261752368) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631261754729) (:by |rJG4IHzWf) (:text |reset!) (:type :leaf)
|j $ {} (:at 1631261760126) (:by |rJG4IHzWf) (:text |*dispatch-fn) (:type :leaf)
|r $ {} (:at 1631261765177) (:by |rJG4IHzWf) (:text |dispatch!) (:type :leaf)
|xH $ {} (:at 1631266418330) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266420791) (:by |rJG4IHzWf) (:text |remove-watch) (:type :leaf)
|j $ {} (:at 1631266421907) (:by |rJG4IHzWf) (:text |*store) (:type :leaf)
|r $ {} (:at 1631266424116) (:by |rJG4IHzWf) (:text |:change) (:type :leaf)
|xL $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |add-watch) (:type :leaf)
|j $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |*store) (:type :leaf)
|r $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |:change) (:type :leaf)
|v $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|j $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |prev) (:type :leaf)
|r $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1631266417375) (:by |rJG4IHzWf) (:text |render-app!) (:type :leaf)
|yT $ {} (:at 1612598631582) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612598631582) (:by |rJG4IHzWf) (:text |render-app!) (:type :leaf)
|yj $ {} (:at 1629390777796) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629390783109) (:by |rJG4IHzWf) (:text |hud!) (:type :leaf)
|j $ {} (:at 1629390803362) (:by |rJG4IHzWf) (:text "|\"ok~") (:type :leaf)
|r $ {} (:at 1629390804302) (:by |rJG4IHzWf) (:text "|\"Ok") (:type :leaf)
|j $ {} (:at 1629390805229) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629390808107) (:by |rJG4IHzWf) (:text |hud!) (:type :leaf)
|j $ {} (:at 1629390809537) (:by |rJG4IHzWf) (:text "|\"error") (:type :leaf)
|r $ {} (:at 1629390812951) (:by |rJG4IHzWf) (:text |build-errors) (:type :leaf)
|render-app! $ {} (:at 1612598213430) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612598215112) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1612598213430) (:by |rJG4IHzWf) (:text |render-app!) (:type :leaf)
|r $ {} (:at 1612598213430) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1613831657319) (:by |rJG4IHzWf) (:text |?) (:type :leaf)
|j $ {} (:at 1613831657933) (:by |rJG4IHzWf) (:text |arg) (:type :leaf)
|v $ {} (:at 1612598216289) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1612598216289) (:by |rJG4IHzWf) (:text |render!) (:type :leaf)