-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
3687 lines (3686 loc) · 341 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
{}
:users $ {}
|Oj4l0GxFU $ {} (:name |chen) (:id |Oj4l0GxFU) (:nickname |chen) (:avatar nil) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |reel)
:files $ {}
|reel.comp.reel $ {}
:ns $ {} (:type :expr) (:id |SkKMfjozlLnZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk5zGijfx82W) (:text |ns) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |BJiMfjjzgIhW) (:text |reel.comp.reel) (:by |root) (:at 1507357346880)
|r $ {} (:type :expr) (:id |Sy3MfssMxInW) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |r1TfGojfxUh-) (:text |:require) (:by |root) (:at 1507357346880)
|yr $ {} (:type :expr) (:id |ryTHMjiGeI2W) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |Sy0rGjiMgInb) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |ryJUMjjGxU2-) (:text |reel.comp.records) (:by |root) (:at 1507357346880)
|r $ {} (:type :leaf) (:id |B1e8GsiGgLnW) (:text |:refer) (:by |root) (:at 1507357346880)
|v $ {} (:type :expr) (:id |rJ-Uzisfx8h-) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |r1M8MosGg82W) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |rymLMsofxLnb) (:text |comp-records) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |ryxCujVRTb) (:by |root) (:at 1507358372096)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |B1-2sUxU3b) (:by |root) (:at 1507358374238)
|j $ {} (:type :leaf) (:text |respo.core) (:id |ByJnUeLn-) (:by |root) (:at 1540918186929)
|r $ {} (:type :leaf) (:text |:refer) (:id |ryGQ2IgI2W) (:by |root) (:at 1507358379750)
|v $ {} (:type :expr) (:id |BkX4hUg8hW) (:by |root) (:at 1507358379959)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |ByfN2UgI2W) (:by |root) (:at 1507358380189)
|j $ {} (:type :leaf) (:text |defcomp) (:id |BkS38lL3Z) (:by |root) (:at 1507358382917)
|r $ {} (:type :leaf) (:text |<>) (:id |HyXv38x8hZ) (:by |root) (:at 1507358383894)
|v $ {} (:type :leaf) (:text |div) (:id |Hy-O2UgI2Z) (:by |root) (:at 1507358385897)
|x $ {} (:type :leaf) (:text |button) (:id |ByGqhLx82-) (:by |root) (:at 1507358386740)
|y $ {} (:type :leaf) (:text |span) (:id |Bya7MDPhW) (:by |root) (:at 1507451429586)
|t $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1584768658961) (:text |>>) (:id |BuqBjGe0m)
|x $ {} (:type :expr) (:id |r1S4zosMeU2b) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |S18VfijfxL2Z) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |HyP4fjsMgIh-) (:text |respo-ui.core) (:by |root) (:at 1516431432078)
|r $ {} (:type :leaf) (:id |ByONMiizgU3Z) (:text |:as) (:by |root) (:at 1507357346880)
|v $ {} (:type :leaf) (:id |SyKNfiizlIhW) (:text |ui) (:by |root) (:at 1507357346880)
|v $ {} (:type :expr) (:id |HyRmGsjfeU3W) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |ryyNGsjfxUhb) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |ryxNziszx82Z) (:text |respo.comp.inspect) (:by |root) (:at 1507358398441)
|r $ {} (:type :leaf) (:id |rkZNfsoGlU2W) (:text |:refer) (:by |root) (:at 1507357346880)
|v $ {} (:type :expr) (:id |SyGEfoiMgL3b) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |ByQNGoifxUnb) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |BkEEGjjzlL2b) (:text |comp-inspect) (:by |root) (:at 1507358402753)
|yj $ {} (:type :expr) (:id |BJUrzsjMgI2W) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |SkvHMsizeI2b) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |BJuHfjiGl8nZ) (:text |respo.comp.space) (:by |root) (:at 1507357346880)
|r $ {} (:type :leaf) (:id |B1tSzjsGlI2Z) (:text |:refer) (:by |root) (:at 1507357346880)
|v $ {} (:type :expr) (:id |rJcBMiofxU3Z) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |BysBGiiGgU2W) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |SJ3SMiiGeLnW) (:text |=<) (:by |root) (:at 1507358410991)
|yx $ {} (:type :expr) (:id |BkxdQvvdp-) (:by |root) (:at 1508566816470)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |BkxdQvvdp-leaf) (:by |root) (:at 1508566816804)
|j $ {} (:type :leaf) (:text |reel.style) (:id |BJ-FXwP_pZ) (:by |root) (:at 1508566820130)
|r $ {} (:type :leaf) (:text |:as) (:id |rJpQPP_aW) (:by |root) (:at 1508566820959)
|v $ {} (:type :leaf) (:text |style) (:id |r1X6mwv_pb) (:by |root) (:at 1508566822307)
|yyj $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102243815)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102244270) (:text |[]) (:id |X_mmcvOXwZleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102244868) (:text |cirru-edn.core) (:id |4bPpJefvag)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102248069) (:text |:refer) (:id |cva1DBKGk)
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102248310)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102250073) (:text |[]) (:id |WsnmO_lKRU)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102250689) (:text |write) (:id |G_PwLTRXI1)
:id |-4hnfxUxnc
:id |X_mmcvOXwZ
|r $ {} (:type :expr) (:id |SyvXMjifl8hZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |rk_XMisGl82Z) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |HyK7MijMxIhZ) (:text |hsl.core) (:by |root) (:at 1507357346880)
|r $ {} (:type :leaf) (:id |S1cQzioGeL2-) (:text |:refer) (:by |root) (:at 1507357346880)
|v $ {} (:type :expr) (:id |BkjmGosGgUnW) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |Sk2QGoozlL2b) (:text |[]) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |B1amzjiflL3Z) (:text |hsl) (:by |root) (:at 1507357346880)
|yv $ {} (:type :expr) (:id |By4kHPd6b) (:by |root) (:at 1508566235717)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |By4kHPd6bleaf) (:by |root) (:at 1508566236347)
|j $ {} (:type :leaf) (:text |respo-value.comp.value) (:id |SJBJSvOTZ) (:by |root) (:at 1508566236831)
|r $ {} (:type :leaf) (:text |:refer) (:id |ByWByHvOp-) (:by |root) (:at 1508566238572)
|v $ {} (:type :expr) (:id |rJ-vyHPdaW) (:by |root) (:at 1508566238797)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |rkew1BPOa-) (:by |root) (:at 1508566238978)
|j $ {} (:type :leaf) (:text |comp-value) (:id |ryNPkSwO6-) (:by |root) (:at 1508566240401)
:defs $ {}
|comp-reel $ {} (:type :expr) (:id |Hkmvfjjze8nW) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |SyEwMijfgI3W) (:text |defcomp) (:by |root) (:at 1507358441536)
|j $ {} (:type :leaf) (:id |HkBPfjiMx82-) (:text |comp-reel) (:by |root) (:at 1507357346880)
|n $ {} (:type :expr) (:id |HJWSgPgU2W) (:by nil) (:at 1507357346880)
:data $ {}
|D $ {} (:type :leaf) (:text |states) (:id |BylyuVvupZ) (:by |root) (:at 1508566119721)
|T $ {} (:type :leaf) (:id |Sy2PMoizgUnZ) (:text |reel) (:by |root) (:at 1507357346880)
|r $ {} (:type :leaf) (:text |user-styles) (:id |B1lNv-PvhW) (:by |root) (:at 1507454243195)
|r $ {} (:type :expr) (:id |BJclDlUnW) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |HJSOfjszxUnW) (:text |if) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |S1UuMjoMeL2-) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |rJw_GoozeUhZ) (:text |:display?) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |Hk_dzojzxU2Z) (:text |reel) (:by |root) (:at 1507357346880)
|r $ {} (:type :expr) (:id |r1tdfssflIhZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |r1q_GjozeUhb) (:text |div) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |SJjOzoizl82b) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |BknufoszlLhZ) (:text |{}) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |rkauGjsGeUhZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |ryROzjjMlUnb) (:text |:style) (:by |root) (:at 1507454673680)
|j $ {} (:type :expr) (:id |SkJKzsoMeLnb) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |B1xtfjsGlI2-) (:text |merge) (:by |root) (:at 1507357346880)
|b $ {} (:type :leaf) (:text |ui/flex) (:id |rJYagPDhb) (:by |root) (:at 1507451074243)
|j $ {} (:type :leaf) (:id |ByZFGjjMlLnW) (:text |ui/column) (:by |root) (:at 1508651236047)
|r $ {} (:type :leaf) (:text |style-reel) (:id |r1gqwbDwhW) (:by |root) (:at 1507451234613)
|v $ {} (:type :leaf) (:text |user-styles) (:id |SkegMTvPn-) (:by |root) (:at 1507454245007)
|n $ {} (:type :expr) (:id |SJlvnl3FpZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |HyjqMsjMxI2Z) (:text |div) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |H1ncfjozl83b) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |S1a9zsszgUn-) (:text |{}) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102594654)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102596058) (:text |:style) (:id |8KjD1iQ4F)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102596296)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102596637) (:text |{}) (:id |7h0dmu0g5)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102596897)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102601925) (:text |:border-bottom) (:id |Ns2Op82Odb)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102602374)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102602933) (:text |str) (:id |zvp7eDrip)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102605368) (:text "|\"1px solid ") (:id |sEdv9nBIi)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102606014)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102606545) (:text |hsl) (:id |Sb34ObkHpG)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102607018) (:text |0) (:id |kW-YGkATUd)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102607335) (:text |0) (:id |P-EolwTdc)
|v $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102607722) (:text |90) (:id |c0mIEVLNK6)
:id |zruFrJlOrO
:id |iXFAh6F62d
:id |yPqhQah0VX
:id |Pbby4YXO5r
:id |TQAgg3RcR
|v1 $ {} (:type :expr) (:id |S1gSf9FpZ) (:by |root) (:at 1508642439874)
:data $ {}
|T $ {} (:type :leaf) (:text |render-button) (:id |r1Ne3wAFYab) (:by |root) (:at 1508642404409)
|j $ {} (:type :leaf) (:text ||Merge) (:id |rJxxc0YFTb) (:by |root) (:at 1508642794463)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304625936)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304632316) (:text |fn) (:id |JNInQSje6F)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304625936)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304625936) (:text |e) (:id |mK56cJuV5n)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304628641) (:text |d!) (:id |4xZb1yDbIM)
:id |nQAHTJDoAK
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304625936)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304629474) (:text |d!) (:id |hlGMWGTAwf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304625936) (:text |:reel/merge) (:id |CzGG64E6qD)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304625936) (:text |nil) (:id |ZPHY_PnvqZ)
:id |CkoU_ZFh8f
:id |hrmGHRDRUj
|v $ {} (:type :leaf) (:text |true) (:id |HJxF8HqFTZ) (:by |root) (:at 1508644177480)
|v5 $ {} (:type :expr) (:id |Skeee5FaW) (:by |root) (:at 1508642439874)
:data $ {}
|T $ {} (:type :leaf) (:text |render-button) (:id |r1Ne3wAFYab) (:by |root) (:at 1508642404409)
|j $ {} (:type :leaf) (:text ||Reset) (:id |rJxxc0YFTb) (:by |root) (:at 1508642441733)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304615632)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304617376) (:text |fn) (:id |SE-FOUIOKF)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304615632)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304615632) (:text |e) (:id |rb0A9CA20r)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304620071) (:text |d!) (:id |rZR1uR5YPo)
:id |RyKdWaE6qp
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304615632)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304620824) (:text |d!) (:id |In32Xx2RVd)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304615632) (:text |:reel/reset) (:id |i7OpN8I0sM)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304615632) (:text |nil) (:id |1ikm9iwjUW)
:id |q8Lu4grk5R
:id |MzXffzJTb5
|v $ {} (:type :leaf) (:text |true) (:id |Syec8H9Y6-) (:by |root) (:at 1508644179625)
|x5 $ {} (:type :expr) (:id |rksBr5K6b) (:by |root) (:at 1508642439874)
:data $ {}
|T $ {} (:type :leaf) (:text |render-button) (:id |r1Ne3wAFYab) (:by |root) (:at 1508642404409)
|j $ {} (:type :leaf) (:text ||Step) (:id |rJxxc0YFTb) (:by |root) (:at 1508643388541)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304605919)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304607880) (:text |fn) (:id |nUe4xvwj4t)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304605919)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304605919) (:text |e) (:id |tqDEiFK2bR)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304605919) (:text |d!) (:id |co2TJTY0e5)
:id |jabbtjLYwJ
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304605919)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304605919) (:text |d!) (:id |woGNjOtpul)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304605919) (:text |:reel/step) (:id |_yTS4B1iuP)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304605919) (:text |nil) (:id |UWRQTJvpI9)
:id |gDIRkUTQFw
:id |nPiNcn2bNu
|v $ {} (:type :expr) (:id |ByW-UH9tpb) (:by |root) (:at 1508643892933)
:data $ {}
|T $ {} (:type :leaf) (:text |:stopped?) (:id |BkWu4EcKab) (:by |root) (:at 1508643894102)
|j $ {} (:type :leaf) (:text |reel) (:id |Bk1rE5Y6W) (:by |root) (:at 1508643895824)
|xJ $ {} (:type :expr) (:id |HJl49BcKab) (:by |root) (:at 1508642445431)
:data $ {}
|T $ {} (:type :leaf) (:text |render-button) (:id |r1xr9CtKpbleaf) (:by |root) (:at 1508642447285)
|j $ {} (:type :leaf) (:text ||Run) (:id |H1rw50tt6W) (:by |root) (:at 1508642448866)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304593215)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304596023) (:text |fn) (:id |lpPvvr3ATX)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304593215)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304593215) (:text |e) (:id |OzCfYNeoec)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304597320) (:text |d!) (:id |WGpym-_Eyc)
:id |Q5Yc9qoyw8
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304593215)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304598029) (:text |d!) (:id |slpSMXTeSK)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304593215) (:text |:reel/run) (:id |vlNKnCR45d)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304593215) (:text |nil) (:id |ilVtGqRQV6)
:id |qbYFfBs1MB
:id |nCIpAddMwB
|v $ {} (:type :expr) (:id |Byb62Hctpb) (:by |root) (:at 1508643892933)
:data $ {}
|T $ {} (:type :leaf) (:text |:stopped?) (:id |BkWu4EcKab) (:by |root) (:at 1508643894102)
|j $ {} (:type :leaf) (:text |reel) (:id |Bk1rE5Y6W) (:by |root) (:at 1508643895824)
|xX $ {} (:type :expr) (:id |rJb0Br9tab) (:by |root) (:at 1508642454936)
:data $ {}
|T $ {} (:type :leaf) (:text |render-button) (:id |SJyiAYYpbleaf) (:by |root) (:at 1508642457910)
|j $ {} (:type :leaf) (:text ||Close) (:id |SJ7fi0YF6W) (:by |root) (:at 1508642459249)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304550646)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304549431)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304555546) (:text |d!) (:id |E6YNcFfTX1)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304549431) (:text |:reel/toggle) (:id |-jr1s-wVYJ)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304549431) (:text |nil) (:id |ivqJ0onzp4)
:id |GisPRBBaSi
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304551954) (:text |fn) (:id |t9iA-EhizN)
|L $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304552227)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304552496) (:text |e) (:id |UY_SwqYPeA)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304553206) (:text |d!) (:id |lnZalGFZJR)
:id |PEI_Gm9eZ
:id |zaMm8dI-J
|v $ {} (:type :expr) (:id |Bkx4IS9F6W) (:by |root) (:at 1508644172168)
:data $ {}
|D $ {} (:type :leaf) (:text |not) (:id |Sk-4UHctTW) (:by |root) (:at 1508644173126)
|T $ {} (:type :expr) (:id |SyQIB5Ypb) (:by |root) (:at 1508643892933)
:data $ {}
|T $ {} (:type :leaf) (:text |:stopped?) (:id |BkWu4EcKab) (:by |root) (:at 1508643894102)
|j $ {} (:type :leaf) (:text |reel) (:id |Bk1rE5Y6W) (:by |root) (:at 1508643895824)
|r $ {} (:type :expr) (:id |HkxY2x2KaZ) (:by |root) (:at 1508651184615)
:data $ {}
|D $ {} (:type :leaf) (:text |div) (:id |By-F2xnY6b) (:by |root) (:at 1508651185349)
|L $ {} (:type :expr) (:id |H19nehKTW) (:by |root) (:at 1508651185690)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rJSF3enYTZ) (:by |root) (:at 1508651186346)
|j $ {} (:type :expr) (:id |r1-ZAxhFTW) (:by |root) (:at 1508651209509)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |SJlWCl3FT-) (:by |root) (:at 1508651210359)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304467492)
:data $ {}
|T $ {} (:type :leaf) (:text |ui/row) (:id |SJSGRlhtTZ) (:by |root) (:at 1508651215697)
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304468483) (:text |merge) (:id |zaTkZPwHLM)
|L $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304470784) (:text |ui/expand) (:id |i2Ono28dVo)
:id |PxAQdNa7OJ
|T $ {} (:type :expr) (:id |ryUtfosMlU3W) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |B1vFfojGxLhW) (:text |comp-records) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |S1OFMijfeInb) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |rJYtGoifl82Z) (:text |:records) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |SycKGoszeL2b) (:text |reel) (:by |root) (:at 1507357346880)
|r $ {} (:type :expr) (:id |rkoKMsoMeL3W) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ2KMiozlL2b) (:text |:pointer) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |SJptMisGl8nW) (:text |reel) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |r1QpxhYTZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |rk0ZQsjMeU2b) (:text |div) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |SJkfQoifg82b) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |S1lMmjofg82Z) (:text |{}) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |BJbMQjsMlUhZ) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |SkzzQioMg8nb) (:text |:style) (:by |root) (:at 1507357346880)
|j $ {} (:type :expr) (:id |B1gVj0POa-) (:by |root) (:at 1508568732516)
:data $ {}
|D $ {} (:type :leaf) (:text |merge) (:id |S1roCPd6b) (:by |root) (:at 1508568733479)
|T $ {} (:type :leaf) (:id |Sk7MXojGl83Z) (:text |ui/column) (:by |root) (:at 1508565769673)
|r $ {} (:type :expr) (:id |BkgYWg__TZ) (:by |root) (:at 1508569089017)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |B1YZxdOpZ) (:by |root) (:at 1508569089422)
|j $ {} (:type :expr) (:id |H1g5We_Op-) (:by |root) (:at 1508569089678)
:data $ {}
|T $ {} (:type :leaf) (:text |:overflow) (:id |r15ZxOOT-) (:by |root) (:at 1508569092484)
|j $ {} (:type :leaf) (:text |:auto) (:id |S16-gdOTZ) (:by |root) (:at 1508569094082)
|r $ {} (:type :expr) (:by |root) (:at 1518143953913) (:id |Hye5RFKqIf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1518143955189) (:text |:padding) (:id |Hye5RFKqIfleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1518143957823) (:text "||0 8px") (:id |rJriCttcIf)
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102616677)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102619419) (:text |:border-left) (:id |kLBT1pbr63leaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102619708)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102620532) (:text |str) (:id |ijgg-Mpaln)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102622937) (:text "|\"1px solid ") (:id |D4-DyfFP_d)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593102624897)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102624624) (:text |hsl) (:id |DwomJOmNz)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102625580) (:text |0) (:id |Ll47Aq3jT)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102625984) (:text |0) (:id |8wlQiSGrIG)
|v $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318615769) (:text |94) (:id |57VUA6Qh5)
:id |gdFf2mLkJZ
:id |oN4hPVVO_9
:id |kLBT1pbr63
|f $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318525950) (:text |ui/expand) (:id |glrFWog9u)
|n $ {} (:type :expr) (:id |SyzvWvOTW) (:by |root) (:at 1508565337813)
:data $ {}
|D $ {} (:type :leaf) (:text |let) (:id |BJgfDbDO6Z) (:by |root) (:at 1508565339869)
|L $ {} (:type :expr) (:id |BkXVDZw_6b) (:by |root) (:at 1508565340224)
:data $ {}
|T $ {} (:type :expr) (:id |H1EVv-vda-) (:by |root) (:at 1508565340357)
:data $ {}
|T $ {} (:type :leaf) (:text |records) (:id |H1zVwbvO6-) (:by |root) (:at 1508565341489)
|j $ {} (:type :expr) (:id |HJxLDZvu6Z) (:by |root) (:at 1508565341750)
:data $ {}
|T $ {} (:type :leaf) (:text |:records) (:id |BJ8wZvu6W) (:by |root) (:at 1508565343854)
|j $ {} (:type :leaf) (:text |reel) (:id |HkZuvZPu6W) (:by |root) (:at 1508565344865)
|j $ {} (:type :expr) (:id |By5wZvda-) (:by |root) (:at 1508565345640)
:data $ {}
|T $ {} (:type :leaf) (:text |pointer) (:id |By5wZvda-leaf) (:by |root) (:at 1508565348389)
|j $ {} (:type :expr) (:id |r1Tv-w_pb) (:by |root) (:at 1508565348712)
:data $ {}
|T $ {} (:type :leaf) (:text |:pointer) (:id |rkP3w-P_ab) (:by |root) (:at 1508565350592)
|j $ {} (:type :leaf) (:text |reel) (:id |S1lyO-Pd6W) (:by |root) (:at 1508565351762)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318444149)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |record) (:id |6mP5GRq0Iu)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318444149)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |if) (:id |iYhJtb22RI)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318444149)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |:stopped?) (:id |cO2V5XUNbO)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |reel) (:id |fAhscdbLiH)
:id |d6J0PL_CQt
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318444149)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |get) (:id |2-v6d8C0Z0)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |records) (:id |hFsl0xtr_k)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318444149)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |dec) (:id |UUGbqY0kxc)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |pointer) (:id |LWXddKp8F5)
:id |j4fGGQles5
:id |JSEigGpVVz
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318444149)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |last) (:id |jTWLWpP-vO)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318444149) (:text |records) (:id |XdAj1JvY7sB)
:id |lV7lEEOMx8
:id |i6c_XhbSjg
:id |sP9Sw3aYOW
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101555449)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101555904) (:text |if) (:id |NkoFb_prLleaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101556269)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101557155) (:text |some?) (:id |enOqJdSVqi)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101558223) (:text |record) (:id |ltUTlMnY0T)
:id |zRgg8f70E
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101606097)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593103107877)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318424275)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101558841)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101560436) (:text |div) (:id |BI648rxDgJleaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101560661)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101560983) (:text |{}) (:id |slnISo3j_r)
:id |ntVcPB4wGz
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101596692)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101597799) (:text |<>) (:id |OUyLyOLbsleaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101626885)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101629076) (:text |str) (:id |XxdUw8nVmr)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101629927) (:text |action) (:id |H7rtZar57H)
:id |fVPG1wwpzy
:id |OUyLyOLbs
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101596692)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101597799) (:text |<>) (:id |OUyLyOLbsleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101641700) (:text |op-id) (:id |H7rtZar57H)
:id |zZWL1KhR_
|t $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101657766)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101658454) (:text |=<) (:id |plX1bspgrleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101669874) (:text |24) (:id |aY0zMnJ8wO)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101660396) (:text |nil) (:id |33Ptx5htf)
:id |plX1bspgr
|w $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101665843)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101665843) (:text |=<) (:id |Xf55E7XmfP)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101670960) (:text |8) (:id |nTXQrYES0i)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101665843) (:text |nil) (:id |-_qmW6GzYs)
:id |dUL-KR4ivH
|x $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593103220254)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103220254) (:text |<>) (:id |z2EoSd6ASC)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103244397) (:text |op-time) (:id |1f7csYOaCQ)
:id |jrRr1VhCl7
:id |BI648rxDgJ
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318424969) (:text |div) (:id |EJylzHbtby)
|L $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318425176)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318425741) (:text |{}) (:id |AgpfJERCKu)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318426019)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318431207) (:text |:style) (:id |_RcGwregxK)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318560029)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318429719) (:text |ui/row-parted) (:id |K0NdtVRk_X)
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318562012) (:text |merge) (:id |3_kFN4wmk)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318562621)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318563211) (:text |{}) (:id |aSuNRzYijb)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318563444)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318565085) (:text |:border-bottom) (:id |Ho-3CA12qE)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318565355)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318565869) (:text |str) (:id |_ClTGaWM_V)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318572584) (:text "|\"1px solid ") (:id |WMAnrV0I0U)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318569105)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318569794) (:text |hsl) (:id |PaW_zV0Zbw)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318570584) (:text |0) (:id |iklZ_2ZLs)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318570879) (:text |0) (:id |0mq_xraDut)
|v $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318618567) (:text |94) (:id |WgTWalzaVh)
:id |P2vER8vmO
:id |pbVq7q8qEL
:id |DOV1xP8ZDt
:id |WQi5xdneAv
:id |LPwmOJLgIy
:id |p8l1Lb1WuR
:id |qBTSk792p
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |if) (:id |E6YEvQ5We6)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |and) (:id |qWPq7gDXb8)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |some?) (:id |NIyrmyFTPc)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |pointer) (:id |QQSNjuryVW)
:id |6hlCVGbdJU
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |not=) (:id |GYna8CaBEW)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |pointer) (:id |tKnt_JXYgW)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |0) (:id |dqH2P-GJY8)
:id |15so4uD7Yb
:id |3CA7k3Sdva
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |span) (:id |_I5IfXl3_r)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |{}) (:id |F8em8Awp-op)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:inner-text) (:id |ly2uVtFmALI)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text ||Remove) (:id |EpAlSLmhYMW)
:id |3WaY_ibdBUW
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:style) (:id |cHB5-dfpVru)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |{}) (:id |VXiiilX31Tn)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:cursor) (:id |8MCNMnUTwlD)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:pointer) (:id |U5ceChuz_ah)
:id |tKzuwePglAH
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:font-size) (:id |iHWMXtn3J_o)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |12) (:id |gamugxYY1yo)
:id |MeDFmD1yRwK
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:font-family) (:id |4CtOwB7b6SV)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |ui/font-fancy) (:id |y_1PshLY9UU)
:id |_7RID_E4jWK
|x $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:color) (:id |ebusTvabUy6)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |hsl) (:id |52S9cbRIX2G)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |200) (:id |ZxyHlNSu7eD)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |100) (:id |0VeCjyBSmd7)
|v $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |84) (:id |RoGWzBIk6qw)
:id |KTLLp6TvEVe
:id |SStiTARRB84
:id |RTS5Hwjvjn-
:id |YU6tVCTmhfP
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:on-click) (:id |Bzu50LXC4vP)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |fn) (:id |f2lZYBGrnRl)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |e) (:id |OdjDfk1YCaM)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |d!) (:id |IJSC93LkgkO)
:id |8QrrSBm0RwN
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |d!) (:id |UDzy_ZbuqZJ)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:reel/remove) (:id |7t6gCa0tR2K)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318432935)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |:pointer) (:id |G45EDA-IH0m)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318432935) (:text |reel) (:id |yxQaE1LFzbz)
:id |DS2ba6GEhtw
:id |LMyrdo2GchY
:id |YN-xo1slumW
:id |4FQf9BG-TcN
:id |Mi9x5hNUln0
:id |YYY2iE6Qay
:id |1hFnIMZC3f
:id |2EzQBwIJA2
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103108845) (:text |div) (:id |VE0pZoicY)
|L $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593103109078)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103109447) (:text |{}) (:id |ZUIYxnBioS)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318151491)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318152239) (:text |:style) (:id |DCWeukA2z)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318276572)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318153740) (:text |ui/column) (:id |7EailCbQ4p)
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318277534) (:text |merge) (:id |glIuKmFKhK)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318457480)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318457480) (:text |{}) (:id |Lx7aliYI-N)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318457480)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318457480) (:text |:font-size) (:id |f5ldeWz52d)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318457480) (:text |12) (:id |guvucqaGKv)
:id |OlfVqS8YDk
:id |Sk4it-a6Mf
|n $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318461657) (:text |style/code) (:id |6AG39Qp-xE)
:id |-RlbX75nj
:id |6kLR2mq6k4
:id |cM8wEvIGU
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318160473)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593103110508)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103112534) (:text |<>) (:id |h11KkCq8vuleaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593103112860)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103115443) (:text |pr-str) (:id |ToEPVEOlVj)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593103117710) (:text |op-data) (:id |fxqy5P8h2z)
:id |YXQvxmQ_Ka
:id |h11KkCq8vu
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318161128) (:text |div) (:id |UEYqJlKpXh)
|L $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318161316)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318161596) (:text |{}) (:id |cxKGOc0rbE)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318162281)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318164691) (:text |:style) (:id |dqWeLOHge)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318170313)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318170149) (:text |ui/expand) (:id |xIi_4UZQcv)
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318171195) (:text |merge) (:id |Rq40PZK3Sx)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318171643)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318171973) (:text |{}) (:id |sbDCEFcDJV)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593318172223)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318178007) (:text |:max-height) (:id |0vn-Q_Y1X)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318180812) (:text "|\"200px") (:id |nMjjMpmHC1)
:id |HBtNFW8J6e
:id |i4V8gw9jCN
:id |dPjCK1Vh5T
:id |bPMC_yj4KY
:id |WgthAiFEsV
:id |1DXtlkl7px
:id |1473nmI2j8
|D $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101607982) (:text |let) (:id |ZgVOXhT9pM)
|L $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101608367)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101610261)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101608520)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101608805) (:text |[]) (:id |m6Skft-BqE)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101613234) (:text |action) (:id |5tKGHLdHn9)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101615997) (:text |op-data) (:id |QUjk48jFK2)
|v $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101617631) (:text |op-id) (:id |6zuLZjx8M)
|x $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101619151) (:text |op-time) (:id |P-z2hLTxmt)
:id |D1ubD1mzkU
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101623431) (:text |record) (:id |Kzjy8pxCf)
:id |A6YqqN2-XK
:id |s-Zpk2WZe
:id |Mk524skDq
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101566869)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101566869) (:text |<>) (:id |Q1SFboQK5S)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101572484) (:text "|\"nil") (:id |uYiovpB8pM)
:id |56Xhx4nwkQ
:id |NkoFb_prL
|t $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101116021)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101119089) (:text |div) (:id |TMghd1x8t)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101119414)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101119845) (:text |{}) (:id |Sim3aJ0v7m)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101120085)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101122568) (:text |:style) (:id |eXJEp7_bxG)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101122985)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101124014) (:text |merge) (:id |GZxw--Kl_w)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101126736) (:text |style/code) (:id |iy0DlwOCr)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101127512)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101127874) (:text |{}) (:id |VXFyftE0X)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101128369)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101129534) (:text |:font-size) (:id |XfF5kQ8J9)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101130220) (:text |12) (:id |JmsuaVMxZO)
:id |wk5t5nKzqi
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101130757)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101132622) (:text |:white-space) (:id |HMir9aPD-Yleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101133179) (:text |:pre) (:id |Z02BKhhlE4)
:id |HMir9aPD-Y
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101136256)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101137650) (:text |:padding) (:id |ZAJi83XQ6leaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101353792) (:text "|\"16px 0px 200px 0px") (:id |T-u00W5TJF)
:id |ZAJi83XQ6
|x $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101146571)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101149880) (:text |:line-height) (:id |nwWHVfI5ZDleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101151431) (:text "|\"20px") (:id |t29wG9ToYZ)
:id |nwWHVfI5ZD
|y $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101152236)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101335398) (:text |:overflow) (:id |d6c_PomsRleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101337134) (:text |:auto) (:id |5WXpBj0WIL)
:id |d6c_PomsR
|yT $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101248209)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101250970) (:text |:border-top) (:id |6TsVxjbQXleaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101251984)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101255403) (:text |str) (:id |OOeVoxzxs)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101260140) (:text "|\"1px solid ") (:id |S3v_T530iX)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101261081)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101261749) (:text |hsl) (:id |plYTI5Jde1)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101262314) (:text |0) (:id |axMYxkXml)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101262619) (:text |0) (:id |YYSzZIs7Cq)
|v $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593318625035) (:text |94) (:id |W-YWP7TQ2D)
:id |Oum_Thkv-
:id |upd9Fwt-qC
:id |6TsVxjbQX
:id |vB2S4IJgoV
|b $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101176271) (:text |ui/expand) (:id |HEcmWFbUM)
:id |PU3cKJwG3_
:id |4h98d6sUL
:id |aRlrpIoDaL
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101157010)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101158301) (:text |<>) (:id |5oE6GmMu4uleaf)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101159115)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593102254841) (:text |write) (:id |ma5TitI2MP)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101161154)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101162953) (:text |:store) (:id |Zl6qnYLIgo)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101164587) (:text |reel) (:id |LsjEmKw9P)
:id |6TLUW-1eC
:id |HPEUhIA6c
:id |5oE6GmMu4u
:id |fMNbtZVp4U
|v $ {} (:type :expr) (:id |Hke7fvDh-) (:by |root) (:at 1507451416170)
:data $ {}
|T $ {} (:type :leaf) (:text |span) (:id |Hke7fvDh-leaf) (:by |root) (:at 1507451419173)
|j $ {} (:type :expr) (:id |BJermGDvn-) (:by |root) (:at 1507451420773)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |S1SmGPv2W) (:by |root) (:at 1507451421144)
|render-button $ {} (:type :expr) (:id |rJxnPCKKa-) (:by |root) (:at 1508642404409)
:data $ {}
|T $ {} (:type :leaf) (:text |defn) (:id |rJZ3DAKtpZ) (:by |root) (:at 1508642408166)
|j $ {} (:type :leaf) (:text |render-button) (:id |ryf2wRKFaW) (:by |root) (:at 1508642404409)
|n $ {} (:type :expr) (:id |B1ZZd0tYpZ) (:by |root) (:at 1508642409197)
:data $ {}
|T $ {} (:type :leaf) (:text |guide) (:id |HyXu0Yt6-) (:by |root) (:at 1508642419053)
|j $ {} (:type :leaf) (:text |on-click) (:id |SJBj_AttTb) (:by |root) (:at 1508642427996)
|r $ {} (:type :leaf) (:text |enabled?) (:id |BJxMwSct6W) (:by |root) (:at 1508644187491)
|r $ {} (:type :expr) (:id |H1QhDCFFpb) (:by |root) (:at 1508642404409)
:data $ {}
|T $ {} (:type :leaf) (:text |div) (:id |HkNhvCFY6b) (:by |root) (:at 1508642404409)
|j $ {} (:type :expr) (:id |BkrnDAFYTW) (:by |root) (:at 1508642404409)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BkU3DAtYT-) (:by |root) (:at 1508642404409)
|j $ {} (:type :expr) (:id |rkw2P0KKT-) (:by |root) (:at 1508642404409)
:data $ {}
|T $ {} (:type :leaf) (:text |:style) (:id |rJuhwCtY6Z) (:by |root) (:at 1508642404409)
|j $ {} (:type :expr) (:id |S1WvvrcFT-) (:by |root) (:at 1508644191367)
:data $ {}
|D $ {} (:type :leaf) (:text |merge) (:id |BJdvS5taW) (:by |root) (:at 1508644192874)
|T $ {} (:type :leaf) (:text |ui/link) (:id |rJY3DAKFa-) (:by |root) (:at 1519838177199)
|b $ {} (:type :expr) (:id |rkZCTvqFaZ) (:by |root) (:at 1508644806194)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |BygCaDcF6-) (:by |root) (:at 1508644806562)
|j $ {} (:type :expr) (:id |B1ZyRDqtpb) (:by |root) (:at 1508644807249)
:data $ {}
|T $ {} (:type :leaf) (:text |:user-select) (:id |rJlJCPqt6-) (:by |root) (:at 1508644811640)
|j $ {} (:type :leaf) (:text |:none) (:id |H1lVAP5Kp-) (:by |root) (:at 1508644812543)
|j $ {} (:type :expr) (:id |ByE_BcYTb) (:by |root) (:at 1508644203599)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:id |r1gEuS5Kpb) (:by |root) (:at 1508644204269)
|L $ {} (:type :expr) (:id |Sk5dS5F6b) (:by |root) (:at 1508644210024)
:data $ {}
|D $ {} (:type :leaf) (:text |not) (:id |Hk3uB9Ka-) (:by |root) (:at 1508644212045)
|T $ {} (:type :leaf) (:text |enabled?) (:id |Hkr_r9Fp-) (:by |root) (:at 1508644210998)
|T $ {} (:type :expr) (:id |HJ4Kvr5KaZ) (:by |root) (:at 1508644193418)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |Hk7FPHcY6-) (:by |root) (:at 1508644193886)
|j $ {} (:type :expr) (:id |HyfcDB9FT-) (:by |root) (:at 1508644194173)
:data $ {}
|T $ {} (:type :leaf) (:text |:color) (:id |r1bcDrqY6-) (:by |root) (:at 1508644195405)
|j $ {} (:type :expr) (:id |B1xMKS5FaW) (:by |root) (:at 1508644217863)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:id |SJ2DB9KTZ) (:by |root) (:at 1508644218938)
|j $ {} (:type :leaf) (:text |0) (:id |SyfmYrct6b) (:by |root) (:at 1508644219277)
|r $ {} (:type :leaf) (:text |0) (:id |Hk47FBqKaZ) (:by |root) (:at 1508644219499)
|v $ {} (:type :leaf) (:text |90) (:id |BkEFr9KaW) (:by |root) (:at 1508644223185)
|r $ {} (:type :expr) (:id |ryF8FfB4M) (:by |root) (:at 1508642404409)
:data $ {}
|T $ {} (:type :leaf) (:text |:on-click) (:id |r11enDCYtpW) (:by |root) (:at 1515690318755)
|j $ {} (:type :expr) (:id |ryacHqY6b) (:by |root) (:at 1508644245209)
:data $ {}
|D $ {} (:type :leaf) (:text |if) (:id |Bk0qr9F6Z) (:by |root) (:at 1508644246382)
|L $ {} (:type :leaf) (:text |enabled?) (:id |rJMRqr9F6Z) (:by |root) (:at 1508644250995)
|T $ {} (:type :leaf) (:text |on-click) (:id |BJll2wAFtTb) (:by |root) (:at 1508642431590)
|j $ {} (:type :leaf) (:text |identity) (:id |Hyg4jS5Y6-) (:by |root) (:at 1508644254685)
|r $ {} (:type :expr) (:id |rkZxnPRYY6-) (:by |root) (:at 1508642404409)
:data $ {}
|T $ {} (:type :leaf) (:text |<>) (:id |HkMx3vCFt6Z) (:by |root) (:at 1508642404409)
|j $ {} (:type :leaf) (:text |guide) (:id |BJQlhPAKKab) (:by |root) (:at 1508642434512)
|style-reel $ {} (:type :expr) (:id |BkZjGaPDhW) (:by |root) (:at 1507454227127)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |BkMoGTvvnW) (:by |root) (:at 1507454228046)
|j $ {} (:type :leaf) (:text |style-reel) (:id |SkQoM6vD3-) (:by |root) (:at 1507454227127)
|r $ {} (:type :expr) (:id |S1pGawwhZ) (:by |root) (:at 1507452151460)
:data $ {}
|T $ {} (:type :leaf) (:text |{}) (:id |rkQk-rPvh-) (:by |root) (:at 1507452151763)
|n $ {} (:type :expr) (:id |HyxEZsPPnb) (:by |root) (:at 1507453692403)
:data $ {}
|T $ {} (:type :leaf) (:text |:height) (:id |HyxEZsPPnbleaf) (:by |root) (:at 1507453694324)
|j $ {} (:type :leaf) (:text ||80%) (:id |BySUbsDv2Z) (:by |Oj4l0GxFU) (:at 1593318597021)
|w $ {} (:type :expr) (:id |B1xrGivPn-) (:by |root) (:at 1507453709327)
:data $ {}
|T $ {} (:type :leaf) (:text |:bottom) (:id |B1xrGivPn-leaf) (:by |root) (:at 1507453710890)
|j $ {} (:type :leaf) (:text |0) (:id |HJXwfjDwnW) (:by |root) (:at 1507453711467)
|yr $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1593101279056)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101283086) (:text |:z-index) (:id |ZJCJg5TXHeleaf)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1593101284175) (:text |9999) (:id |zZrp9LRO4P)
:id |ZJCJg5TXHe
|yT $ {} (:type :expr) (:id |BJgqewuT-) (:by |root) (:at 1508565128058)
:data $ {}
|T $ {} (:type :leaf) (:text |:font-size) (:id |BJgqewuT-leaf) (:by |root) (:at 1508565136071)
|j $ {} (:type :leaf) (:text |14) (:id |r1eSqlPd6b) (:by |root) (:at 1508565143233)
|j $ {} (:type :expr) (:id |ByGgWSwP3Z) (:by |root) (:at 1507452152021)
:data $ {}
|T $ {} (:type :leaf) (:text |:width) (:id |rJblbSvwhW) (:by |root) (:at 1507452153111)
|j $ {} (:type :leaf) (:text ||60%) (:id |ByP-rvD2Z) (:by |Oj4l0GxFU) (:at 1593318594912)
|x $ {} (:type :expr) (:id |r1tzSDw2W) (:by |root) (:at 1507452177106)
:data $ {}
|T $ {} (:type :leaf) (:text |:background-color) (:id |r1tzSDw2Wleaf) (:by |root) (:at 1507452180135)
|j $ {} (:type :expr) (:id |H1L2zrPwhb) (:by |root) (:at 1507452180355)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:id |Syr2GBPwn-) (:by |root) (:at 1507452180632)
|j $ {} (:type :leaf) (:text |0) (:id |BJbTMHPD2-) (:by |root) (:at 1507452181050)
|r $ {} (:type :leaf) (:text |0) (:id |BJQpGHPv2b) (:by |root) (:at 1507452181286)
|v $ {} (:type :leaf) (:text |100) (:id |BkSpMHPvnW) (:by |root) (:at 1507452184217)
|x $ {} (:type :leaf) (:text |0.7) (:id |HyZ7HvDhZ) (:by |root) (:at 1508641672644)
|v $ {} (:type :expr) (:id |B14BMSDv2-) (:by |root) (:at 1507452173376)
:data $ {}
|T $ {} (:type :leaf) (:text |:right) (:id |B14BMSDv2-leaf) (:by |root) (:at 1507452174588)
|j $ {} (:type :leaf) (:text |0) (:id |SJewGBDD3-) (:by |root) (:at 1507452175734)
|yj $ {} (:type :expr) (:id |r1D9sYtpW) (:by |root) (:at 1508641456772)
:data $ {}
|T $ {} (:type :leaf) (:text |:backdrop-filter) (:id |ryeF2qYKaZleaf) (:by |root) (:at 1508641502324)
|j $ {} (:type :leaf) (:text "||blur(2px)") (:id |S1165KK6W) (:by |root) (:at 1508641893398)
|y $ {} (:type :expr) (:id |r1gBXrDv3W) (:by |root) (:at 1507452188930)
:data $ {}
|T $ {} (:type :leaf) (:text |:border) (:id |r1gBXrDv3Wleaf) (:by |root) (:at 1507452192423)
|j $ {} (:type :expr) (:id |HyeYQSDDhW) (:by |root) (:at 1507452192841)
:data $ {}
|T $ {} (:type :leaf) (:text |str) (:id |ryFmBPv2W) (:by |root) (:at 1507452195015)
|j $ {} (:type :leaf) (:text "||1px solid ") (:id |SyMomBvvhZ) (:by |root) (:at 1507452198184)
|r $ {} (:type :expr) (:id |Hkx1EBvv3b) (:by |root) (:at 1507452199074)
:data $ {}
|T $ {} (:type :leaf) (:text |hsl) (:id |ByJ4HPP2W) (:by |root) (:at 1507452201159)
|j $ {} (:type :leaf) (:text |0) (:id |HkzZVHvP2-) (:by |root) (:at 1507452201403)
|r $ {} (:type :leaf) (:text |0) (:id |ry4ZVBPvh-) (:by |root) (:at 1507452201547)
|v $ {} (:type :leaf) (:text |90) (:id |H1gG4BDvhb) (:by |root) (:at 1507452202300)
|wT $ {} (:type :expr) (:id |BkxOzsDv3b) (:by |root) (:at 1507453712454)
:data $ {}
|T $ {} (:type :leaf) (:text |:position) (:id |BkxOzsDv3bleaf) (:by |root) (:at 1507453716229)
|j $ {} (:type :leaf) (:text |:fixed) (:id |BkaGoPPnZ) (:by |root) (:at 1507453722949)
:proc $ {} (:type :expr) (:id |By4UGjifgU3Z) (:by nil) (:at 1507357346880) (:data $ {})
|reel.config $ {}
:ns $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450110319) (:id |BB_pAkWzoP)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450110319) (:text |ns) (:id |lQ6c4XYqUb)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450110319) (:text |reel.config) (:id |aPDxVNU1vd)
:defs $ {}
|cdn? $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |5vOErlwsdt)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |def) (:id |b_T5ViXdJh)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |cdn?) (:id |PfzqnTMKGR)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |OzvqCSJr6l)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |cond) (:id |rbFKS_lPHz)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |ZAYrT2itdO)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |hxvM0hgRum)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |exists?) (:id |wb9kgcqI1B)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |js/window) (:id |5poWjs5neW)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |false) (:id |22kmxiteFy)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |tYNc2n8IPF)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |X1jJbhDUJF)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |exists?) (:id |9ya8mc4fkw)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |js/process) (:id |rQGAAh4zKY)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |U_i0f1RTOh)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |=) (:id |oNPOX_xNSPO)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text "|\"true") (:id |IkhuCPJqfKI)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |js/process.env.cdn) (:id |d3nfHVyn-do)
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450119695) (:id |8-qVK0pMH47)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |:else) (:id |GchcpUzQ795)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450119695) (:text |false) (:id |8jck6NYWRa3)
|dev? $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |OrPetoXJdJ)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |def) (:id |miaY76g-g0)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |dev?) (:id |zQdPlU6Pn6)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |0nR4CKZgyv)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |let) (:id |TglcUfmHFv)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |7G1rH6z9rS)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |IIzyN-1SvT)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |debug?) (:id |ecO_Nxm7lc)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |rCnwNMuyOg)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |do) (:id |TDna-g_xs6)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |^boolean) (:id |-FOo7YurHW)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |js/goog.DEBUG) (:id |IrU4ojDBv7)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |7N71bFwkz2)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |cond) (:id |rKz5UPz2g7)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |ZuWejHkMeW)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |QCEs0Sv6Q1N)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |exists?) (:id |YIGxaq8aykZ)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |js/window) (:id |rZh7mRLnxfx)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |debug?) (:id |YTE40_6a8vw)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |MdgW3whSCS7)
:data $ {}
|T $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |crLBIkonKT3)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |exists?) (:id |TgBNUl6ExT9)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |js/process) (:id |mHyTXDLOTYF)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |DCrPFJQTbnh)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |not=) (:id |nKr8YNA3_Q5)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text "|\"true") (:id |JOaSxynHwO8)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |js/process.env.release) (:id |j0JgQJMaQ--)
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450129274) (:id |JLQjxgZzArq)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |:else) (:id |JPHb8pTlU73)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450129274) (:text |true) (:id |N_YX9tlpNHZ)
|site $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |8wfuBQPEnk)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |def) (:id |r11VDIbeTQ)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |site) (:id |dl_dncumVo)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |MRzAhJYQlM)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |{}) (:id |2uD6gWciZd)
|yr $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |YDuP127s89R)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:upload-folder) (:id |YQuuTX9OWdY)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450165598) (:text "|\"tiye.me:repo/Respo/reel/") (:id |_fuzPV0Vf3e)
|yT $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |bhjZk1bN9d2)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:icon) (:id |kej8MzUTYbq)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450152322) (:text "|\"http://cdn.tiye.me/logo/respo.png") (:id |EcVQN6SXhvj)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |MC9m1-vc2Q)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:dev-ui) (:id |6t-7d4W5gZ)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text "|\"http://localhost:8100/main-fonts.css") (:id |kPF0gDqEJC)
|x $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |aPOsVV8V_R)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:cdn-folder) (:id |kj7RYYXYyqB)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450145336) (:text "|\"tiye.me:cdn/reel") (:id |h_pZey5HqGE)
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |YnbmzXcLnp)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:cdn-url) (:id |w9jkO_QSa-)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450141744) (:text "|\"http://cdn.tiye.me/reel/") (:id |ZEj9tqg3tg)
|yj $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |73VPZy3XuBR)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:storage-key) (:id |wxcuhdaZvE5)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450158026) (:text "|\"reel") (:id |U3vWZ-XbCYU)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |v3258ioqKQ)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:release-ui) (:id |z3-UrNgkSL)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") (:id |VTGmZ_Ig1S)
|y $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450135531) (:id |Rdv6VoK1R-S)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450135531) (:text |:title) (:id |IDAcAOK2vBg)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1558450148862) (:text "|\"Reel") (:id |9JU_vFOa3sG)
:proc $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1558450110319) (:id |3Xztq_dfzb) (:data $ {})
|reel.updater $ {}
:ns $ {} (:type :expr) (:id |HJK9jozx83b) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |r155jjfxI2W) (:text |ns) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |rJi5siGeI3b) (:text |reel.updater) (:by |root) (:at 1507357346880)
|r $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304389453)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304390289) (:text |:require) (:id |P3jczBrHXg)
|j $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304390441)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304391569) (:text |[]) (:id |uFr1lv05JF)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304395114) (:text |respo.cursor) (:id |bDL75KOjMc)
|r $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304396018) (:text |:refer) (:id |s7rYrlvs6B)
|v $ {} (:type :expr) (:by |Oj4l0GxFU) (:at 1590304396155)
:data $ {}
|T $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304396413) (:text |[]) (:id |7Nd0sY6Xx)
|j $ {} (:type :leaf) (:by |Oj4l0GxFU) (:at 1590304397873) (:text |update-states) (:id |aNmMZOSNjQ)
:id |B-ocWzNM1O
:id |uDdy8WNkZl
:id |s8pZMu102a
:defs $ {}
|updater $ {} (:type :expr) (:id |r18jjiMgIhb) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |ByvoooGlU3b) (:text |defn) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |B1djiizeUh-) (:text |updater) (:by |root) (:at 1507357346880)
|r $ {} (:type :expr) (:id |B1FojiMxL3W) (:by nil) (:at 1507357346880)
:data $ {}
|T $ {} (:type :leaf) (:id |S1cssjMl8nb) (:text |store) (:by |root) (:at 1507357346880)
|j $ {} (:type :leaf) (:id |SJisjjMeUnb) (:text |op) (:by |root) (:at 1507357346880)
|r $ {} (:type :leaf) (:id |ry3osoGxU3b) (:text |op-data) (:by |root) (:at 1507357346880)