generated from Phlox-GL/phlox-workflow.cljs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1645 lines (1644 loc) · 152 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 $ {} (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru)
:modules $ [] |memof/ |lilac/ |respo.calcit/ |respo-ui.calcit/ |phlox/
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.complex $ {}
:configs $ {}
:defs $ {}
|add $ {} (:at 1591547182460) (:by |rJG4IHzWf) (:id |W0li52XUab) (:type :expr)
:data $ {}
|T $ {} (:at 1591547182460) (:by |rJG4IHzWf) (:id |HuaZgI3sud) (:text |defn) (:type :leaf)
|j $ {} (:at 1591547182460) (:by |rJG4IHzWf) (:id |XHT3iQ0MwO) (:text |add) (:type :leaf)
|n $ {} (:at 1629392255661) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392257102) (:by |rJG4IHzWf) (:text |p1) (:type :leaf)
|j $ {} (:at 1629392258604) (:by |rJG4IHzWf) (:text |p2) (:type :leaf)
|r $ {} (:at 1629392264834) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629392276415) (:by |rJG4IHzWf) (:text |let-sugar) (:type :leaf)
|T $ {} (:at 1629392266525) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392269088) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1591547188986) (:by |rJG4IHzWf) (:id |Ur7xcNqtW) (:type :expr)
:data $ {}
|T $ {} (:at 1591547189881) (:by |rJG4IHzWf) (:id |KMYhG4AdJs) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547190374) (:by |rJG4IHzWf) (:id |CscdZocgow) (:text |a) (:type :leaf)
|r $ {} (:at 1591547191989) (:by |rJG4IHzWf) (:id |6ltV92oNyd) (:text |b) (:type :leaf)
|j $ {} (:at 1629392270486) (:by |rJG4IHzWf) (:text |p1) (:type :leaf)
|j $ {} (:at 1629392272020) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1591547188986) (:by |rJG4IHzWf) (:id |wtUEmcdaK) (:type :expr)
:data $ {}
|T $ {} (:at 1591547189881) (:by |rJG4IHzWf) (:id |KMYhG4AdJs) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547195057) (:by |rJG4IHzWf) (:id |CscdZocgow) (:text |x) (:type :leaf)
|r $ {} (:at 1591547196837) (:by |rJG4IHzWf) (:id |6ltV92oNyd) (:text |y) (:type :leaf)
|j $ {} (:at 1629392273522) (:by |rJG4IHzWf) (:text |p2) (:type :leaf)
|j $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|j $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|r $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|r $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|j $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|r $ {} (:at 1629392279795) (:by |rJG4IHzWf) (:text |y) (:type :leaf)
|minus $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |2Q_JNpUIZa) (:type :expr)
:data $ {}
|T $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |4BRGCzdLuT) (:text |defn) (:type :leaf)
|j $ {} (:at 1591547679173) (:by |rJG4IHzWf) (:id |A_U99qj_yA) (:text |minus) (:type :leaf)
|r $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |5pcBecryS9) (:type :expr)
:data $ {}
|T $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |78OgcV89jP) (:type :expr)
:data $ {}
|T $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |6UPXWG1Egv) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |2igX5ypxuG) (:text |a) (:type :leaf)
|r $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |ipXq0H9Vmo) (:text |b) (:type :leaf)
|j $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |grsx7NcMMY) (:type :expr)
:data $ {}
|T $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |vmnLocvwRd) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |k__NkwqhFV) (:text |x) (:type :leaf)
|r $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |WJsVOYN35t) (:text |y) (:type :leaf)
|v $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |PI6E5SPAp0) (:type :expr)
:data $ {}
|T $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |sbfUAdzdBo) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |Q97NDjDnc6X) (:type :expr)
:data $ {}
|T $ {} (:at 1591547281222) (:by |rJG4IHzWf) (:id |ZdOlz4ElHbR) (:text |-) (:type :leaf)
|j $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |SkxnWTT9fVP) (:text |a) (:type :leaf)
|r $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |eqNwmfDW6Jz) (:text |x) (:type :leaf)
|r $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |4EbI37O-A7l) (:type :expr)
:data $ {}
|T $ {} (:at 1591547283474) (:by |rJG4IHzWf) (:id |SRvk0IkGAXK) (:text |-) (:type :leaf)
|j $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |6FM-jEWAEBh) (:text |b) (:type :leaf)
|r $ {} (:at 1591547278295) (:by |rJG4IHzWf) (:id |Fm1f07IIctF) (:text |y) (:type :leaf)
|negate $ {} (:at 1591547368588) (:by |rJG4IHzWf) (:id |K35kV85ItD) (:type :expr)
:data $ {}
|T $ {} (:at 1591547368588) (:by |rJG4IHzWf) (:id |FVv1GyJV7-) (:text |defn) (:type :leaf)
|j $ {} (:at 1591547368588) (:by |rJG4IHzWf) (:id |Y3BciMhhDC) (:text |negate) (:type :leaf)
|r $ {} (:at 1591547368588) (:by |rJG4IHzWf) (:id |h39C4PYr8w) (:type :expr)
:data $ {}
|T $ {} (:at 1591547373970) (:by |rJG4IHzWf) (:id |4LlxSjq3tE) (:type :expr)
:data $ {}
|T $ {} (:at 1591547374972) (:by |rJG4IHzWf) (:id |Mp_c0XcNZU) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547375356) (:by |rJG4IHzWf) (:id |LZi4Ndshp) (:text |x) (:type :leaf)
|r $ {} (:at 1591547375742) (:by |rJG4IHzWf) (:id |u34gNhNYJt) (:text |y) (:type :leaf)
|v $ {} (:at 1591547377069) (:by |rJG4IHzWf) (:id |a-VzajOzr) (:type :expr)
:data $ {}
|T $ {} (:at 1591547377774) (:by |rJG4IHzWf) (:id |a-VzajOzrleaf) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547379357) (:by |rJG4IHzWf) (:id |c8I59NPvM) (:type :expr)
:data $ {}
|T $ {} (:at 1591547378728) (:by |rJG4IHzWf) (:id |4Jq4wchZc) (:text |-) (:type :leaf)
|j $ {} (:at 1591547380979) (:by |rJG4IHzWf) (:id |BQ5DUWYYv5) (:text |0) (:type :leaf)
|r $ {} (:at 1591547381721) (:by |rJG4IHzWf) (:id |1q_JjpSpb) (:text |x) (:type :leaf)
|r $ {} (:at 1591547382685) (:by |rJG4IHzWf) (:id |yHw8Ifnm44) (:type :expr)
:data $ {}
|T $ {} (:at 1591547385242) (:by |rJG4IHzWf) (:id |yHw8Ifnm44leaf) (:text |-) (:type :leaf)
|j $ {} (:at 1591547385620) (:by |rJG4IHzWf) (:id |PDFuij8i_5) (:text |0) (:type :leaf)
|r $ {} (:at 1591547386007) (:by |rJG4IHzWf) (:id |ZVsQpjV1BM) (:text |y) (:type :leaf)
|times $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |9gllm3lrzi) (:type :expr)
:data $ {}
|T $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |PiwFOsdkep) (:text |defn) (:type :leaf)
|j $ {} (:at 1591547294355) (:by |rJG4IHzWf) (:id |jeyQ5GTkce) (:text |times) (:type :leaf)
|p $ {} (:at 1629392302065) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392303040) (:by |rJG4IHzWf) (:text |p1) (:type :leaf)
|j $ {} (:at 1629392303753) (:by |rJG4IHzWf) (:text |p2) (:type :leaf)
|v $ {} (:at 1629392285959) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1629392288488) (:by |rJG4IHzWf) (:text |let-sugar) (:type :leaf)
|L $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392294288) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:text |a) (:type :leaf)
|r $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:text |b) (:type :leaf)
|j $ {} (:at 1629392295965) (:by |rJG4IHzWf) (:text |p1) (:type :leaf)
|j $ {} (:at 1629392297942) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:text |x) (:type :leaf)
|r $ {} (:at 1629392292232) (:by |rJG4IHzWf) (:text |y) (:type :leaf)
|j $ {} (:at 1629392299130) (:by |rJG4IHzWf) (:text |p2) (:type :leaf)
|T $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |xWi0iIy5W9) (:type :expr)
:data $ {}
|T $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |LAOCiPbHSs) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547301420) (:by |rJG4IHzWf) (:id |gkiupb7tf) (:type :expr)
:data $ {}
|D $ {} (:at 1591547307724) (:by |rJG4IHzWf) (:id |nguUBAgb8M) (:text |-) (:type :leaf)
|T $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |IcDZtFUelC) (:type :expr)
:data $ {}
|T $ {} (:at 1591547305856) (:by |rJG4IHzWf) (:id |6776HTGHrJK) (:text |*) (:type :leaf)
|j $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |2rUqg46fIZe) (:text |a) (:type :leaf)
|r $ {} (:at 1591547292875) (:by |rJG4IHzWf) (:id |ACRy3vL1KNF) (:text |x) (:type :leaf)
|j $ {} (:at 1591547311473) (:by |rJG4IHzWf) (:id |s8uMK7P9O4) (:type :expr)
:data $ {}
|T $ {} (:at 1591547316538) (:by |rJG4IHzWf) (:id |7morGDfwtb) (:text |*) (:type :leaf)
|j $ {} (:at 1591547311473) (:by |rJG4IHzWf) (:id |JgzJz9Qjc3) (:text |b) (:type :leaf)
|r $ {} (:at 1591547311473) (:by |rJG4IHzWf) (:id |kLjZIKvScz) (:text |y) (:type :leaf)
|r $ {} (:at 1591547318020) (:by |rJG4IHzWf) (:id |GP-WAiWXBD) (:type :expr)
:data $ {}
|T $ {} (:at 1591547318996) (:by |rJG4IHzWf) (:id |GP-WAiWXBDleaf) (:text |+) (:type :leaf)
|j $ {} (:at 1591547320253) (:by |rJG4IHzWf) (:id |DKrN_hnDy) (:type :expr)
:data $ {}
|T $ {} (:at 1591547320789) (:by |rJG4IHzWf) (:id |Zaa42F_yp) (:text |*) (:type :leaf)
|j $ {} (:at 1591547323416) (:by |rJG4IHzWf) (:id |L5mVLiHp0k) (:text |a) (:type :leaf)
|r $ {} (:at 1591547323782) (:by |rJG4IHzWf) (:id |6--sJTFLnN) (:text |y) (:type :leaf)
|r $ {} (:at 1591547324470) (:by |rJG4IHzWf) (:id |YxF55L4qS7) (:type :expr)
:data $ {}
|T $ {} (:at 1591547326565) (:by |rJG4IHzWf) (:id |YxF55L4qS7leaf) (:text |*) (:type :leaf)
|j $ {} (:at 1591547328322) (:by |rJG4IHzWf) (:id |am-w6Rsic) (:text |b) (:type :leaf)
|r $ {} (:at 1591547329042) (:by |rJG4IHzWf) (:id |e5qvBKL5Wa) (:text |x) (:type :leaf)
:ns $ {} (:at 1591547176763) (:by |rJG4IHzWf) (:id |uPazwVNRJp) (:type :expr)
:data $ {}
|T $ {} (:at 1591547176763) (:by |rJG4IHzWf) (:id |kfdAI9U3ac) (:text |ns) (:type :leaf)
|j $ {} (:at 1591547176763) (:by |rJG4IHzWf) (:id |hSaiPDjU7U) (:text |app.complex) (:type :leaf)
:proc $ {} (:at 1591547176763) (:by |rJG4IHzWf) (:id |-ryI8-_cj2) (:type :expr)
:data $ {}
|app.config $ {}
:defs $ {}
|cdn? $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |d2hK2S1JOD) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |9RM4tZ4okA) (:text |def) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |WrkWOQw_bj) (:text |cdn?) (:type :leaf)
|r $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |KMohe96ljT) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |HfFnF74aaH) (:text |cond) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |H4CD8BoV9R) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |5FyvPxZHZQ) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |rWvB7a-BK6) (:text |exists?) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |Bip59OdxiB) (:text |js/window) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |fpGEB9Lxk0) (:text |false) (:type :leaf)
|r $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |P8yR9FwKKf) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |MUHEZV1fJy) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |AQzq6hgdwW) (:text |exists?) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |rasbU6lVBQ) (:text |js/process) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |KhHDSOBz9Vi) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |PZOibZsLN9C) (:text |=) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |ZdyzBf5GbL5) (:text "|\"true") (:type :leaf)
|r $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |NCvHTnvee8P) (:text |js/process.env.cdn) (:type :leaf)
|v $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |azAjKbw0e0L) (:type :expr)
:data $ {}
|T $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |ZglnnMdBFOo) (:text |:else) (:type :leaf)
|j $ {} (:at 1544873887168) (:by |rJG4IHzWf) (:id |SGrp6kA7itv) (:text |false) (:type :leaf)
|dev? $ {} (:at 1544873875614) (:by |rJG4IHzWf) (:id |soffpzT3iV) (:type :expr)
:data $ {}
|T $ {} (:at 1544873875614) (:by |rJG4IHzWf) (:id |YFw1U8z4Tf) (:text |def) (:type :leaf)
|j $ {} (:at 1544873875614) (:by |rJG4IHzWf) (:id |aWMTO74W56) (:text |dev?) (:type :leaf)
|r $ {} (:at 1629392397370) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392398089) (:by |rJG4IHzWf) (:text |=) (:type :leaf)
|j $ {} (:at 1629392401132) (:by |rJG4IHzWf) (:text "|\"dev") (:type :leaf)
|r $ {} (:at 1629392401501) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392402848) (:by |rJG4IHzWf) (:text |get-env) (:type :leaf)
|j $ {} (:at 1629392405182) (:by |rJG4IHzWf) (:text "|\"mode") (:type :leaf)
|n $ {} (:at 1658686794124) (:by |rJG4IHzWf) (:text "|\"release") (:type :leaf)
|site $ {} (:at 1545933382603) (:by |root) (:id |i6pfoMgwq) (:type :expr)
:data $ {}
|T $ {} (:at 1518157345496) (:by |root) (:id |Hy-Of025IG) (:text |def) (:type :leaf)
|j $ {} (:at 1518157327696) (:by |root) (:id |SyfufCnc8G) (:text |site) (:type :leaf)
|r $ {} (:at 1518157327696) (:by |root) (:id |Hy7OfCnqUG) (:type :expr)
:data $ {}
|T $ {} (:at 1518157346643) (:by |root) (:id |HyZ5XCh58M) (:text |{}) (:type :leaf)
|r $ {} (:at 1527526861413) (:by |root) (:id |HkeSAB3K1X) (:type :expr)
:data $ {}
|T $ {} (:at 1527526864597) (:by |root) (:id |HkeSAB3K1Xleaf) (:text |:dev-ui) (:type :leaf)
|x $ {} (:at 1582120090429) (:by |rJG4IHzWf) (:id |GHE5A-5h_P) (:text "|\"http://localhost:8100/main-fonts.css") (:type :leaf)
|v $ {} (:at 1527526865931) (:by |root) (:id |rygq0H3YJm) (:type :expr)
:data $ {}
|T $ {} (:at 1527526868617) (:by |root) (:id |rygq0H3YJmleaf) (:text |:release-ui) (:type :leaf)
|j $ {} (:at 1582120125940) (:by |rJG4IHzWf) (:id |HklT1LntyQ) (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") (:type :leaf)
|w $ {} (:at 1528008960614) (:by |root) (:id |Syt-WGZgQ) (:type :expr)
:data $ {}
|T $ {} (:at 1528008962775) (:by |root) (:id |Syt-WGZgQleaf) (:text |:cdn-url) (:type :leaf)
|j $ {} (:at 1591550368016) (:by |rJG4IHzWf) (:id |Bye6-ZzbxX) (:text "|\"http://cdn.tiye.me/waving-rail/") (:type :leaf)
|y $ {} (:at 1527868456422) (:by |root) (:id |HJlgNn11gm) (:type :expr)
:data $ {}
|T $ {} (:at 1527868457305) (:by |root) (:id |HJlgNn11gmleaf) (:text |:title) (:type :leaf)
|j $ {} (:at 1591550361021) (:by |rJG4IHzWf) (:id |S1eWS2JJlm) (:text "|\"Waving Rail") (:type :leaf)
|yT $ {} (:at 1527868457696) (:by |root) (:id |HJxzN3kyxm) (:type :expr)
:data $ {}
|T $ {} (:at 1527868458476) (:by |root) (:id |HJxzN3kyxmleaf) (:text |:icon) (:type :leaf)
|j $ {} (:at 1573292425255) (:by |rJG4IHzWf) (:id |rJeUB2k1xQ) (:text "|\"http://cdn.tiye.me/logo/quamolit.png") (:type :leaf)
|yf $ {} (:at 1544956719115) (:by |rJG4IHzWf) (:id |E81qVD65QI) (:type :expr)
:data $ {}
|T $ {} (:at 1544956719115) (:by |rJG4IHzWf) (:id |uzAHSBrxME) (:text |:storage-key) (:type :leaf)
|j $ {} (:at 1591550356076) (:by |rJG4IHzWf) (:id |3M_DNn-aUN) (:text "|\"waving-rail") (:type :leaf)
:ns $ {} (:at 1527788237503) (:by |root) (:id |BJlrAf2TyX) (:type :expr)
:data $ {}
|T $ {} (:at 1527788237503) (:by |root) (:id |SkZHRz3TJ7) (:text |ns) (:type :leaf)
|j $ {} (:at 1527788237503) (:by |root) (:id |HJzrRGhp1X) (:text |app.config) (:type :leaf)
:proc $ {} (:at 1527788237503) (:by |root) (:id |Hk7B0z3pJX) (:type :expr)
:data $ {}
|app.container $ {}
:defs $ {}
|cal-position $ {} (:at 1591547525009) (:by |rJG4IHzWf) (:id |3jLzoDcO9z) (:type :expr)
:data $ {}
|T $ {} (:at 1591547525009) (:by |rJG4IHzWf) (:id |N_Q7bt5Exe) (:text |defn) (:type :leaf)
|j $ {} (:at 1591547525009) (:by |rJG4IHzWf) (:id |YtXCzt7z81) (:text |cal-position) (:type :leaf)
|r $ {} (:at 1591547525009) (:by |rJG4IHzWf) (:id |DRxvXDJoLt) (:type :expr)
:data $ {}
|L $ {} (:at 1591547531109) (:by |rJG4IHzWf) (:id |4yH1z-2LYl) (:text |base-point) (:type :leaf)
|X $ {} (:at 1591547532688) (:by |rJG4IHzWf) (:id |octAFR3Tu-) (:text |r) (:type :leaf)
|a $ {} (:at 1591634710250) (:by |rJG4IHzWf) (:id |LqtAuz-MPh) (:text |v0) (:type :leaf)
|d $ {} (:at 1591547533208) (:by |rJG4IHzWf) (:id |CUzYtcoxAn) (:text |v) (:type :leaf)
|k $ {} (:at 1591547537166) (:by |rJG4IHzWf) (:id |cKV6ohc1QZ) (:text |phi) (:type :leaf)
|x $ {} (:at 1591547525009) (:by |rJG4IHzWf) (:id |oEudYALWxRJ) (:text |idx) (:type :leaf)
|v $ {} (:at 1591547541423) (:by |rJG4IHzWf) (:id |0GbncAm_Y) (:type :expr)
:data $ {}
|T $ {} (:at 1591547735441) (:by |rJG4IHzWf) (:id |0GbncAm_Yleaf) (:text |complex/add) (:type :leaf)
|j $ {} (:at 1591547548273) (:by |rJG4IHzWf) (:id |CZ5seMogE0) (:text |base-point) (:type :leaf)
|r $ {} (:at 1591547562855) (:by |rJG4IHzWf) (:id |c3ZXgKbMv) (:type :expr)
:data $ {}
|D $ {} (:at 1591547737161) (:by |rJG4IHzWf) (:id |MfTrlXdsK) (:text |complex/times) (:type :leaf)
|T $ {} (:at 1591547554578) (:by |rJG4IHzWf) (:id |vYoz3mMot) (:type :expr)
:data $ {}
|T $ {} (:at 1591547559223) (:by |rJG4IHzWf) (:id |U8prDIuYQ) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547559808) (:by |rJG4IHzWf) (:id |LE7COPA5E7) (:text |r) (:type :leaf)
|r $ {} (:at 1591547560580) (:by |rJG4IHzWf) (:id |AUz3ER95Z) (:text |0) (:type :leaf)
|j $ {} (:at 1591547571620) (:by |rJG4IHzWf) (:id |H3ZAmM1xFH) (:type :expr)
:data $ {}
|T $ {} (:at 1591547572229) (:by |rJG4IHzWf) (:id |FxHEgWCqv) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547574472) (:by |rJG4IHzWf) (:id |hvnJY1qjh) (:type :expr)
:data $ {}
|T $ {} (:at 1591547582632) (:by |rJG4IHzWf) (:id |Fpwf-0Xmn) (:text |js/Math.cos) (:type :leaf)
|j $ {} (:at 1591547591590) (:by |rJG4IHzWf) (:id |0_3V2BUJwu) (:type :expr)
:data $ {}
|D $ {} (:at 1591547592189) (:by |rJG4IHzWf) (:id |CxhaZQUDzB) (:text |+) (:type :leaf)
|L $ {} (:at 1591547593311) (:by |rJG4IHzWf) (:id |zw_TmNZoFO) (:text |phi) (:type :leaf)
|T $ {} (:at 1591547587955) (:by |rJG4IHzWf) (:id |o4M4Kf1-Xu) (:type :expr)
:data $ {}
|T $ {} (:at 1591547588378) (:by |rJG4IHzWf) (:id |iaYFGk6i1) (:text |*) (:type :leaf)
|f $ {} (:at 1591634713558) (:by |rJG4IHzWf) (:id |hbLPmXNERg) (:text |v0) (:type :leaf)
|r $ {} (:at 1591547590101) (:by |rJG4IHzWf) (:id |eUZwsGb9_) (:text |v) (:type :leaf)
|v $ {} (:at 1591547604157) (:by |rJG4IHzWf) (:id |luapwwEer) (:text |idx) (:type :leaf)
|r $ {} (:at 1591547574472) (:by |rJG4IHzWf) (:id |ojUOkQ-zL) (:type :expr)
:data $ {}
|T $ {} (:at 1591547598406) (:by |rJG4IHzWf) (:id |Fpwf-0Xmn) (:text |js/Math.sin) (:type :leaf)
|j $ {} (:at 1591547591590) (:by |rJG4IHzWf) (:id |0_3V2BUJwu) (:type :expr)
:data $ {}
|D $ {} (:at 1591547592189) (:by |rJG4IHzWf) (:id |CxhaZQUDzB) (:text |+) (:type :leaf)
|L $ {} (:at 1591547593311) (:by |rJG4IHzWf) (:id |zw_TmNZoFO) (:text |phi) (:type :leaf)
|T $ {} (:at 1591547587955) (:by |rJG4IHzWf) (:id |o4M4Kf1-Xu) (:type :expr)
:data $ {}
|T $ {} (:at 1591547588378) (:by |rJG4IHzWf) (:id |iaYFGk6i1) (:text |*) (:type :leaf)
|f $ {} (:at 1591634715271) (:by |rJG4IHzWf) (:id |xnstRp-MYX) (:text |v0) (:type :leaf)
|r $ {} (:at 1591547590101) (:by |rJG4IHzWf) (:id |eUZwsGb9_) (:text |v) (:type :leaf)
|v $ {} (:at 1591547605784) (:by |rJG4IHzWf) (:id |xA5WLqfEO) (:text |idx) (:type :leaf)
|comp-container $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:id |Txfqxt4rCB) (:type :expr)
:data $ {}
|T $ {} (:at 1573923376454) (:by |rJG4IHzWf) (:id |ZA64iDmVDY) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:id |cnaxAYx-vP) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1573356299931) (:by |rJG4IHzWf) (:id |LJOqz2qL0L) (:type :expr)
:data $ {}
|T $ {} (:at 1573662792335) (:by |rJG4IHzWf) (:id |6d14YihKa) (:text |store) (:type :leaf)
|v $ {} (:at 1582981227143) (:by |rJG4IHzWf) (:id |YWz8iHdI) (:type :expr)
:data $ {}
|D $ {} (:at 1582981228465) (:by |rJG4IHzWf) (:id |a5rkA2hPa) (:text |let) (:type :leaf)
|L $ {} (:at 1582981229181) (:by |rJG4IHzWf) (:id |jUH4nAEt) (:type :expr)
:data $ {}
|T $ {} (:at 1582981229329) (:by |rJG4IHzWf) (:id |gSvpUyfN1) (:type :expr)
:data $ {}
|T $ {} (:at 1582981230028) (:by |rJG4IHzWf) (:id |GSObTjjnX) (:text |states) (:type :leaf)
|j $ {} (:at 1582981230263) (:by |rJG4IHzWf) (:id |MAs7xVt_V) (:type :expr)
:data $ {}
|T $ {} (:at 1582981231046) (:by |rJG4IHzWf) (:id |f-GQyJLp) (:text |:states) (:type :leaf)
|j $ {} (:at 1582981231774) (:by |rJG4IHzWf) (:id |uFb3Tykz) (:text |store) (:type :leaf)
|j $ {} (:at 1582981235652) (:by |rJG4IHzWf) (:id |nc6DSexf) (:type :expr)
:data $ {}
|T $ {} (:at 1582981237122) (:by |rJG4IHzWf) (:id |nc6DSexfleaf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1582981237365) (:by |rJG4IHzWf) (:id |kQkDUOA4K) (:type :expr)
:data $ {}
|T $ {} (:at 1582981237700) (:by |rJG4IHzWf) (:id |nQ2hBEqil) (:text |[]) (:type :leaf)
|r $ {} (:at 1591546842320) (:by |rJG4IHzWf) (:id |5BOZu2eh7) (:type :expr)
:data $ {}
|T $ {} (:at 1591546844388) (:by |rJG4IHzWf) (:id |5BOZu2eh7leaf) (:text |state) (:type :leaf)
|j $ {} (:at 1591546844622) (:by |rJG4IHzWf) (:id |5QlCndTt9B) (:type :expr)
:data $ {}
|T $ {} (:at 1591546845538) (:by |rJG4IHzWf) (:id |ytmmKn79TW) (:text |or) (:type :leaf)
|j $ {} (:at 1591546845730) (:by |rJG4IHzWf) (:id |2aIFim_eNX) (:type :expr)
:data $ {}
|T $ {} (:at 1591546847505) (:by |rJG4IHzWf) (:id |CvBGrqOwi7) (:text |:data) (:type :leaf)
|j $ {} (:at 1591546848748) (:by |rJG4IHzWf) (:id |mXAMhXk6Sr) (:text |states) (:type :leaf)
|r $ {} (:at 1591546849502) (:by |rJG4IHzWf) (:id |D5jr1w72wc) (:type :expr)
:data $ {}
|T $ {} (:at 1591546850438) (:by |rJG4IHzWf) (:id |D5jr1w72wcleaf) (:text |{}) (:type :leaf)
|b $ {} (:at 1591634684440) (:by |rJG4IHzWf) (:id |WjlNoAfwi) (:type :expr)
:data $ {}
|T $ {} (:at 1591634685970) (:by |rJG4IHzWf) (:id |WjlNoAfwileaf) (:text |:v0) (:type :leaf)
|j $ {} (:at 1591635020089) (:by |rJG4IHzWf) (:id |FR7FRM8ep) (:text |0.01) (:type :leaf)
|j $ {} (:at 1591546850835) (:by |rJG4IHzWf) (:id |A2A-yRFpTl) (:type :expr)
:data $ {}
|T $ {} (:at 1591546856354) (:by |rJG4IHzWf) (:id |hyXFJ9R-VC) (:text |:r1) (:type :leaf)
|j $ {} (:at 1591550037321) (:by |rJG4IHzWf) (:id |-t3ID08BZR) (:text |150) (:type :leaf)
|n $ {} (:at 1591546872237) (:by |rJG4IHzWf) (:id |ntkalWarS) (:type :expr)
:data $ {}
|T $ {} (:at 1591546874323) (:by |rJG4IHzWf) (:id |ntkalWarSleaf) (:text |:p1) (:type :leaf)
|j $ {} (:at 1591546874770) (:by |rJG4IHzWf) (:id |ZF8EBrKd-X) (:type :expr)
:data $ {}
|T $ {} (:at 1591546874973) (:by |rJG4IHzWf) (:id |D8Vw6FuqFC) (:text |[]) (:type :leaf)
|j $ {} (:at 1591548218761) (:by |rJG4IHzWf) (:id |_YZOWGhGz) (:text |300) (:type :leaf)
|r $ {} (:at 1591548220315) (:by |rJG4IHzWf) (:id |NUB5hf1aCy) (:text |300) (:type :leaf)
|p $ {} (:at 1591546947255) (:by |rJG4IHzWf) (:id |H3CpPiWt1) (:type :expr)
:data $ {}
|T $ {} (:at 1591546948471) (:by |rJG4IHzWf) (:id |H3CpPiWt1leaf) (:text |:v1) (:type :leaf)
|j $ {} (:at 1591550043738) (:by |rJG4IHzWf) (:id |-GpKvrt8D) (:text |0.2) (:type :leaf)
|r $ {} (:at 1591546863636) (:by |rJG4IHzWf) (:id |LOW47jZh6) (:type :expr)
:data $ {}
|T $ {} (:at 1591546866657) (:by |rJG4IHzWf) (:id |LOW47jZh6leaf) (:text |:r2) (:type :leaf)
|j $ {} (:at 1591548034771) (:by |rJG4IHzWf) (:id |AI0SgRrcA) (:text |200) (:type :leaf)
|v $ {} (:at 1591546884071) (:by |rJG4IHzWf) (:id |2hS4fMz4I) (:type :expr)
:data $ {}
|T $ {} (:at 1591546885776) (:by |rJG4IHzWf) (:id |2hS4fMz4Ileaf) (:text |:p2) (:type :leaf)
|j $ {} (:at 1591546886205) (:by |rJG4IHzWf) (:id |xupAsgqFT) (:type :expr)
:data $ {}
|T $ {} (:at 1591546886410) (:by |rJG4IHzWf) (:id |SLIj16-mx5) (:text |[]) (:type :leaf)
|j $ {} (:at 1591548221657) (:by |rJG4IHzWf) (:id |KYeTnx_5f) (:text |300) (:type :leaf)
|r $ {} (:at 1591548223536) (:by |rJG4IHzWf) (:id |zfM97SK5m) (:text |300) (:type :leaf)
|w $ {} (:at 1591546951280) (:by |rJG4IHzWf) (:id |XUkLHWcKP) (:type :expr)
:data $ {}
|T $ {} (:at 1591546953224) (:by |rJG4IHzWf) (:id |XUkLHWcKPleaf) (:text |:v2) (:type :leaf)
|j $ {} (:at 1591550045830) (:by |rJG4IHzWf) (:id |gOZNeeLWe) (:text |0.2) (:type :leaf)
|x $ {} (:at 1591546897225) (:by |rJG4IHzWf) (:id |Kc1jKLghJ) (:type :expr)
:data $ {}
|T $ {} (:at 1591546908157) (:by |rJG4IHzWf) (:id |Kc1jKLghJleaf) (:text |:phi2) (:type :leaf)
|j $ {} (:at 1591550053892) (:by |rJG4IHzWf) (:id |tmp1S1rBRx) (:text |0) (:type :leaf)
|y $ {} (:at 1591546963680) (:by |rJG4IHzWf) (:id |pyPb2agBJ) (:type :expr)
:data $ {}
|T $ {} (:at 1591546965115) (:by |rJG4IHzWf) (:id |pyPb2agBJleaf) (:text |:steps) (:type :leaf)
|j $ {} (:at 1591548049925) (:by |rJG4IHzWf) (:id |Oky-nKqIq0) (:text |100) (:type :leaf)
|yT $ {} (:at 1591635721822) (:by |rJG4IHzWf) (:id |OBbAhOgI2) (:type :expr)
:data $ {}
|T $ {} (:at 1591635722720) (:by |rJG4IHzWf) (:id |OBbAhOgI2leaf) (:text |:alpha) (:type :leaf)
|j $ {} (:at 1591635726825) (:by |rJG4IHzWf) (:id |Fme8nkiKN) (:text |1) (:type :leaf)
|T $ {} (:at 1574353986671) (:by |rJG4IHzWf) (:id |zbWGDI_uN) (:type :expr)
:data $ {}
|D $ {} (:at 1574353987962) (:by |rJG4IHzWf) (:id |s0MLbB2Ul2) (:text |container) (:type :leaf)
|L $ {} (:at 1574353988241) (:by |rJG4IHzWf) (:id |Xh6W7OvUDo) (:type :expr)
:data $ {}
|T $ {} (:at 1574353988566) (:by |rJG4IHzWf) (:id |5qlHXnVzOU) (:text |{}) (:type :leaf)
|f $ {} (:at 1591549433776) (:by |rJG4IHzWf) (:id |451_LaVsn) (:type :expr)
:data $ {}
|D $ {} (:at 1591549437152) (:by |rJG4IHzWf) (:id |eucYac0K5) (:text |container) (:type :leaf)
|L $ {} (:at 1591549437707) (:by |rJG4IHzWf) (:id |JknBlEHz3k) (:type :expr)
:data $ {}
|T $ {} (:at 1591549438174) (:by |rJG4IHzWf) (:id |r_jTN3aniI) (:text |{}) (:type :leaf)
|j $ {} (:at 1591549439480) (:by |rJG4IHzWf) (:id |LO4pEM1ODK) (:type :expr)
:data $ {}
|T $ {} (:at 1591549439480) (:by |rJG4IHzWf) (:id |ZN1s27rkOq) (:text |:position) (:type :leaf)
|j $ {} (:at 1591549439480) (:by |rJG4IHzWf) (:id |iIpdw44O9b) (:type :expr)
:data $ {}
|T $ {} (:at 1591549439480) (:by |rJG4IHzWf) (:id |avQeXuk766) (:text |[]) (:type :leaf)
|j $ {} (:at 1632894754043) (:by |rJG4IHzWf) (:id |dufZ5mOQTY) (:text |-300) (:type :leaf)
|r $ {} (:at 1632894756644) (:by |rJG4IHzWf) (:id |CJ4ON9PRUf) (:text |-300) (:type :leaf)
|T $ {} (:at 1591547088226) (:by |rJG4IHzWf) (:id |RRtWhJlUU) (:type :expr)
:data $ {}
|T $ {} (:at 1591547755845) (:by |rJG4IHzWf) (:id |RRtWhJlUUleaf) (:text |graphics) (:type :leaf)
|j $ {} (:at 1591547093377) (:by |rJG4IHzWf) (:id |60sFFTpiBw) (:type :expr)
:data $ {}
|T $ {} (:at 1591547093763) (:by |rJG4IHzWf) (:id |l7QRjV9et) (:text |{}) (:type :leaf)
|j $ {} (:at 1591547094036) (:by |rJG4IHzWf) (:id |wFoV3mzzJf) (:type :expr)
:data $ {}
|T $ {} (:at 1591547094947) (:by |rJG4IHzWf) (:id |nmH2qE5ULp) (:text |:ops) (:type :leaf)
|j $ {} (:at 1591547859241) (:by |rJG4IHzWf) (:id |GIOIArgUD) (:type :expr)
:data $ {}
|D $ {} (:at 1591547864579) (:by |rJG4IHzWf) (:id |sw5c4eYCQn) (:text |concat) (:type :leaf)
|L $ {} (:at 1591547864820) (:by |rJG4IHzWf) (:id |ulQwexNbZV) (:type :expr)
:data $ {}
|T $ {} (:at 1591547865027) (:by |rJG4IHzWf) (:id |VCorczYH73) (:text |[]) (:type :leaf)
|j $ {} (:at 1591547866345) (:by |rJG4IHzWf) (:id |Xx4k2rJzc) (:type :expr)
:data $ {}
|T $ {} (:at 1591547867722) (:by |rJG4IHzWf) (:id |pJTYM5-WA) (:text |g) (:type :leaf)
|j $ {} (:at 1591547872187) (:by |rJG4IHzWf) (:id |HVO2fgTW8) (:text |:line-style) (:type :leaf)
|r $ {} (:at 1591547873455) (:by |rJG4IHzWf) (:id |-DlQd1CWOM) (:type :expr)
:data $ {}
|T $ {} (:at 1591547873871) (:by |rJG4IHzWf) (:id |vIIsKFRmd) (:text |{}) (:type :leaf)
|j $ {} (:at 1591547874137) (:by |rJG4IHzWf) (:id |dfwyPj98N) (:type :expr)
:data $ {}
|T $ {} (:at 1591547884307) (:by |rJG4IHzWf) (:id |QhzhWoIzPq) (:text |:width) (:type :leaf)
|j $ {} (:at 1591549475315) (:by |rJG4IHzWf) (:id |Vjny8N_CMu) (:text |1) (:type :leaf)
|r $ {} (:at 1591547885998) (:by |rJG4IHzWf) (:id |t0-GZjMJnr) (:type :expr)
:data $ {}
|T $ {} (:at 1591547889187) (:by |rJG4IHzWf) (:id |t0-GZjMJnrleaf) (:text |:color) (:type :leaf)
|j $ {} (:at 1591547889469) (:by |rJG4IHzWf) (:id |PpDYWB87oV) (:type :expr)
:data $ {}
|T $ {} (:at 1591547890755) (:by |rJG4IHzWf) (:id |PS-AYPyPkK) (:text |hslx) (:type :leaf)
|j $ {} (:at 1591547893949) (:by |rJG4IHzWf) (:id |idlYZXtQQb) (:text |200) (:type :leaf)
|r $ {} (:at 1591547894303) (:by |rJG4IHzWf) (:id |2-JbY4c6M) (:text |80) (:type :leaf)
|v $ {} (:at 1591547895120) (:by |rJG4IHzWf) (:id |ZHUZS3hZ07) (:text |80) (:type :leaf)
|v $ {} (:at 1591547896671) (:by |rJG4IHzWf) (:id |n6HFVfYgX0) (:type :expr)
:data $ {}
|T $ {} (:at 1591547898939) (:by |rJG4IHzWf) (:id |n6HFVfYgX0leaf) (:text |:alpha) (:type :leaf)
|j $ {} (:at 1591635818460) (:by |rJG4IHzWf) (:id |IHwnd7jnz) (:type :expr)
:data $ {}
|T $ {} (:at 1591635823306) (:by |rJG4IHzWf) (:id |XjfzVBBopT) (:text |:alpha) (:type :leaf)
|j $ {} (:at 1591635824687) (:by |rJG4IHzWf) (:id |WT5mt1gISW) (:text |state) (:type :leaf)
|T $ {} (:at 1591547816168) (:by |rJG4IHzWf) (:id |5qA7-gVmQ) (:type :expr)
:data $ {}
|T $ {} (:at 1629392228012) (:by |rJG4IHzWf) (:id |LIsWoevNDA) (:text |->) (:type :leaf)
|j $ {} (:at 1591634303805) (:by |rJG4IHzWf) (:id |FklCDf_8Xt) (:type :expr)
:data $ {}
|T $ {} (:at 1591634303702) (:by |rJG4IHzWf) (:id |j1oOkn4Bt) (:text |gen-trails) (:type :leaf)
|j $ {} (:at 1591634304750) (:by |rJG4IHzWf) (:id |sAz77kgCI) (:text |state) (:type :leaf)
|r $ {} (:at 1591547819769) (:by |rJG4IHzWf) (:id |5b4la8fBiM) (:type :expr)
:data $ {}
|T $ {} (:at 1591547821739) (:by |rJG4IHzWf) (:id |MIV95fviA) (:text |mapcat) (:type :leaf)
|j $ {} (:at 1591547823440) (:by |rJG4IHzWf) (:id |6MJIUB8Sv) (:type :expr)
:data $ {}
|T $ {} (:at 1591547825468) (:by |rJG4IHzWf) (:id |OKOmDFPmp) (:text |fn) (:type :leaf)
|j $ {} (:at 1591547825954) (:by |rJG4IHzWf) (:id |AqfEzhj3c4) (:type :expr)
:data $ {}
|T $ {} (:at 1629392242585) (:by |rJG4IHzWf) (:text |pair) (:type :leaf)
|r $ {} (:at 1591547980939) (:by |rJG4IHzWf) (:id |US17mP_eW4) (:type :expr)
:data $ {}
|D $ {} (:at 1591547982523) (:by |rJG4IHzWf) (:id |7T_1RY0i4) (:text |[]) (:type :leaf)
|T $ {} (:at 1591547834020) (:by |rJG4IHzWf) (:id |nn8Tiz0Y7) (:type :expr)
:data $ {}
|T $ {} (:at 1591547838505) (:by |rJG4IHzWf) (:id |nn8Tiz0Y7leaf) (:text |g) (:type :leaf)
|j $ {} (:at 1591547840292) (:by |rJG4IHzWf) (:id |_axbNdXk0i) (:text |:move-to) (:type :leaf)
|r $ {} (:at 1629392231047) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392234984) (:by |rJG4IHzWf) (:id |-LhX7pRT7Y) (:text |first) (:type :leaf)
|j $ {} (:at 1629392236245) (:by |rJG4IHzWf) (:text |pair) (:type :leaf)
|j $ {} (:at 1591547985352) (:by |rJG4IHzWf) (:id |Zwg-sM6w2l) (:type :expr)
:data $ {}
|T $ {} (:at 1591547985352) (:by |rJG4IHzWf) (:id |9TMzKiON55) (:text |g) (:type :leaf)
|j $ {} (:at 1591547985352) (:by |rJG4IHzWf) (:id |oT9a5HuwFM) (:text |:line-to) (:type :leaf)
|r $ {} (:at 1629392238392) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1629392239082) (:by |rJG4IHzWf) (:id |fBW8rno91J) (:text |last) (:type :leaf)
|j $ {} (:at 1629392239725) (:by |rJG4IHzWf) (:text |pair) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |PU0bFLYRvo) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |jtmla2Waf0) (:text |comp-drag-point) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |UQFbL1uV-Z) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |-6PGHUf3C2) (:text |>>) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |k6HJsmyeBp) (:text |states) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |kODEJqryd_) (:text |:p1) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |TkrWYRN1zP) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |q4TpZLEiTx) (:text |{}) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |bw8UFL6jIX) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |QIRBwMqyBT) (:text |:position) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |7L8kHYpm5a) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |Nzj7Zi_RCq) (:text |:p1) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |tjz1BgotY7) (:text |state) (:type :leaf)
|n $ {} (:at 1591635083647) (:by |rJG4IHzWf) (:id |okrgaz_oiu) (:type :expr)
:data $ {}
|T $ {} (:at 1591635083647) (:by |rJG4IHzWf) (:id |XInQERlHdr) (:text |:radius) (:type :leaf)
|j $ {} (:at 1591635107802) (:by |rJG4IHzWf) (:id |N5PCBwHQd0) (:text |4) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |SAceemPSZU) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |wTpG7BpjflJ) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |x7RVG7uDFGM) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |h3zvM3x97UR) (:text |fn) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |p4wOC0xAvCb) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |YNgSGrJNBjt) (:text |p) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |viOLAPCbGTt) (:text |d!) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |7H7wrGcyjt0) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |4novTpFTa0M) (:text |d!) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |wORrXkhnoco) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |5lCsfE95I63) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |MfiGKrfEDc7) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |WkfUTdWFpe2) (:text |state) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |31VqgE_L4zs) (:text |:p1) (:type :leaf)
|v $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |ucEphvms9nX) (:text |p) (:type :leaf)
|n $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |NhS7g6n5m) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |jtmla2Waf0) (:text |comp-drag-point) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |UQFbL1uV-Z) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |-6PGHUf3C2) (:text |>>) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |k6HJsmyeBp) (:text |states) (:type :leaf)
|r $ {} (:at 1591549743365) (:by |rJG4IHzWf) (:id |kODEJqryd_) (:text |:r1) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |TkrWYRN1zP) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |q4TpZLEiTx) (:text |{}) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |bw8UFL6jIX) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |QIRBwMqyBT) (:text |:position) (:type :leaf)
|j $ {} (:at 1591549770143) (:by |rJG4IHzWf) (:id |loK74yL5R) (:type :expr)
:data $ {}
|D $ {} (:at 1591549774417) (:by |rJG4IHzWf) (:id |EZngwmehdD) (:text |complex/add) (:type :leaf)
|L $ {} (:at 1591549775468) (:by |rJG4IHzWf) (:id |GVU7cdqdJY) (:type :expr)
:data $ {}
|T $ {} (:at 1591549782444) (:by |rJG4IHzWf) (:id |C6Uke_TVt) (:text |:p1) (:type :leaf)
|j $ {} (:at 1591549780579) (:by |rJG4IHzWf) (:id |hJfOcHOX-6) (:text |state) (:type :leaf)
|T $ {} (:at 1591549763147) (:by |rJG4IHzWf) (:id |Uzxf8AxGa) (:type :expr)
:data $ {}
|D $ {} (:at 1591549767054) (:by |rJG4IHzWf) (:id |y2YQ8TYbC) (:text |[]) (:type :leaf)
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |7L8kHYpm5a) (:type :expr)
:data $ {}
|T $ {} (:at 1591549747751) (:by |rJG4IHzWf) (:id |Nzj7Zi_RCq) (:text |:r1) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |tjz1BgotY7) (:text |state) (:type :leaf)
|j $ {} (:at 1591549768577) (:by |rJG4IHzWf) (:id |NEacmIpsd) (:text |0) (:type :leaf)
|n $ {} (:at 1591635081799) (:by |rJG4IHzWf) (:id |QmxLNZW-BO) (:type :expr)
:data $ {}
|T $ {} (:at 1591635081799) (:by |rJG4IHzWf) (:id |UW4TM-Q6g6) (:text |:radius) (:type :leaf)
|j $ {} (:at 1591635105844) (:by |rJG4IHzWf) (:id |SOoxUQ1vad) (:text |4) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |SAceemPSZU) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |wTpG7BpjflJ) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |x7RVG7uDFGM) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |h3zvM3x97UR) (:text |fn) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |p4wOC0xAvCb) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |YNgSGrJNBjt) (:text |p) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |viOLAPCbGTt) (:text |d!) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |7H7wrGcyjt0) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |4novTpFTa0M) (:text |d!) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |wORrXkhnoco) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |5lCsfE95I63) (:type :expr)
:data $ {}
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |MfiGKrfEDc7) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |WkfUTdWFpe2) (:text |state) (:type :leaf)
|r $ {} (:at 1591549750655) (:by |rJG4IHzWf) (:id |31VqgE_L4zs) (:text |:r1) (:type :leaf)
|v $ {} (:at 1591549805677) (:by |rJG4IHzWf) (:id |aZnQMMliql) (:type :expr)
:data $ {}
|D $ {} (:at 1591549807104) (:by |rJG4IHzWf) (:id |BmBBhatKZ) (:text |-) (:type :leaf)
|T $ {} (:at 1591549914308) (:by |rJG4IHzWf) (:id |AbUkXh45g) (:type :expr)
:data $ {}
|D $ {} (:at 1591549917119) (:by |rJG4IHzWf) (:id |ynmRwmBzR) (:text |first) (:type :leaf)
|T $ {} (:at 1591549449769) (:by |rJG4IHzWf) (:id |ucEphvms9nX) (:text |p) (:type :leaf)
|j $ {} (:at 1591549812828) (:by |rJG4IHzWf) (:id |Jh2NtBWmW) (:type :expr)
:data $ {}
|T $ {} (:at 1591549815106) (:by |rJG4IHzWf) (:id |Cjmi21EtQ) (:text |first) (:type :leaf)
|j $ {} (:at 1591549827022) (:by |rJG4IHzWf) (:id |mIqxhMEN5) (:type :expr)
:data $ {}
|T $ {} (:at 1591549829515) (:by |rJG4IHzWf) (:id |Rpphtp368W) (:text |:p1) (:type :leaf)
|j $ {} (:at 1591549833911) (:by |rJG4IHzWf) (:id |lCyf26V_b) (:text |state) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |OYbDPLHZXF) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |4WTMGSU1Tx) (:text |comp-drag-point) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |1joK88y1Xt) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |88fW-IBLxg) (:text |>>) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |cbzUugsW-X) (:text |states) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |n3aH5KXr8_) (:text |:p2) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |Rj81crTRJo) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |HA5zX8y_Nm) (:text |{}) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |VawTNj7WRj) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |2p4mvM7nfo) (:text |:position) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |fzNTfAC_V9) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |ctCw1dyxaM) (:text |:p2) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |jWaNb55tFX) (:text |state) (:type :leaf)
|n $ {} (:at 1591635070769) (:by |rJG4IHzWf) (:id |ZnrYHbAzT4) (:type :expr)
:data $ {}
|T $ {} (:at 1591635076119) (:by |rJG4IHzWf) (:id |ZnrYHbAzT4leaf) (:text |:radius) (:type :leaf)
|j $ {} (:at 1591635102956) (:by |rJG4IHzWf) (:id |11IphQP-sF) (:text |4) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |Na2YdIvRBa) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |slGFpC9NFL) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |12G2MIC6dq_) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |gYkLeu7FiRS) (:text |fn) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |4aZluJVNa5Q) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |Jz4-Y_9fKxU) (:text |p) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |EWGLpM_vWdG) (:text |d!) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |_oNH6NWPuwr) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |adz_Xg1CdVf) (:text |d!) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |0ctYx03yntd) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |yxqHtuNCMi_) (:type :expr)
:data $ {}
|T $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |PND4ZNO1sSe) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |AJdBoSBa8Zk) (:text |state) (:type :leaf)
|r $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |r3qAjlLGZhZ) (:text |:p2) (:type :leaf)
|v $ {} (:at 1591549456228) (:by |rJG4IHzWf) (:id |LkrF25KJouq) (:text |p) (:type :leaf)
|v $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |6HNKCRBdGK) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |B7kVHDSAsj) (:text |comp-drag-point) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |hKYH12M3YR) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |G7YKLrJIIe) (:text |>>) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |CH4fciTBG5) (:text |states) (:type :leaf)
|r $ {} (:at 1591549963992) (:by |rJG4IHzWf) (:id |8MFux-rDjd) (:text |:r2) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |4IRx_PbzQP) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |6tO1swYDP9) (:text |{}) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |bNXWQpO_I_) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |RWoPcbG40R) (:text |:position) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |45Is1cv0PI) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |iI4fCYJVSD) (:text |complex/add) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |hxxZD5li1E) (:type :expr)
:data $ {}
|T $ {} (:at 1591549965557) (:by |rJG4IHzWf) (:id |EofbnJkUfM) (:text |:p2) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |Eg-5-ANfPV) (:text |state) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |HbSwAchVcn1) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |Hy1-7WyIxtf) (:text |[]) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |GFOJ1EuQaEa) (:type :expr)
:data $ {}
|T $ {} (:at 1591549966978) (:by |rJG4IHzWf) (:id |pLd2zbSgj91) (:text |:r2) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |qAra049j4lk) (:text |state) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |UjDApVG0CS_) (:text |0) (:type :leaf)
|n $ {} (:at 1591635079626) (:by |rJG4IHzWf) (:id |z3DbQtxG9B) (:type :expr)
:data $ {}
|T $ {} (:at 1591635079626) (:by |rJG4IHzWf) (:id |8iTqDYjacy) (:text |:radius) (:type :leaf)
|j $ {} (:at 1591635104674) (:by |rJG4IHzWf) (:id |Iy1m8tiDQu) (:text |4) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |p7v9gqASQ3g) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |2r0PAEcRW5p) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |bQA48-nkhil) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |_IYWQvX4osO) (:text |fn) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |wfnT2U8peI8) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |JmU61iXPshL) (:text |p) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |J-Q20IvF35n) (:text |d!) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |e2shqlz9XlC) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |XE5lFIfvh14) (:text |d!) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |NaNVXme97nU) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |mMGRDDc9qR9) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |AMqJcRvOU4R) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |URix6b2pjmV) (:text |state) (:type :leaf)
|r $ {} (:at 1591549968441) (:by |rJG4IHzWf) (:id |UP8eIWJrzc-) (:text |:r2) (:type :leaf)
|v $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |A6fXPHpHSlY) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |GZPqIqmmetf) (:text |-) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |SH_sjI86nGk) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |4KAMA-HpRns) (:text |first) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |7Ag7mIx9SBi) (:text |p) (:type :leaf)
|r $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |XZvlJuPqt5N) (:type :expr)
:data $ {}
|T $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |NpK2e0bxZVi) (:text |first) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |68cYt4KfkCc) (:type :expr)
:data $ {}
|T $ {} (:at 1591549970084) (:by |rJG4IHzWf) (:id |j7XQ-9pDCIB) (:text |:p2) (:type :leaf)
|j $ {} (:at 1591549960561) (:by |rJG4IHzWf) (:id |wknRsm1EB_T) (:text |state) (:type :leaf)
|p $ {} (:at 1591548846408) (:by |rJG4IHzWf) (:id |tZGNOONCcN) (:type :expr)
:data $ {}
|T $ {} (:at 1591548846876) (:by |rJG4IHzWf) (:id |tZGNOONCcNleaf) (:text |comp-slider) (:type :leaf)
|j $ {} (:at 1591548848107) (:by |rJG4IHzWf) (:id |CQlWgskWe) (:type :expr)
:data $ {}
|T $ {} (:at 1591548848641) (:by |rJG4IHzWf) (:id |ejk3KZUaC) (:text |>>) (:type :leaf)
|j $ {} (:at 1591548851234) (:by |rJG4IHzWf) (:id |d1M8EzKNMO) (:text |states) (:type :leaf)
|r $ {} (:at 1591548852893) (:by |rJG4IHzWf) (:id |GpM1u1lL25) (:text |:steps) (:type :leaf)
|r $ {} (:at 1591548854242) (:by |rJG4IHzWf) (:id |CzC_j1s3w) (:type :expr)
:data $ {}
|T $ {} (:at 1591548855609) (:by |rJG4IHzWf) (:id |CzC_j1s3wleaf) (:text |{}) (:type :leaf)
|j $ {} (:at 1591548855890) (:by |rJG4IHzWf) (:id |BLNvra3ba1) (:type :expr)
:data $ {}
|T $ {} (:at 1591548857180) (:by |rJG4IHzWf) (:id |LqjJokDJPe) (:text |:value) (:type :leaf)
|j $ {} (:at 1591548858100) (:by |rJG4IHzWf) (:id |d5NduvlAX) (:type :expr)
:data $ {}
|T $ {} (:at 1591548858891) (:by |rJG4IHzWf) (:id |xHJZQ2mVPD) (:text |:steps) (:type :leaf)
|j $ {} (:at 1591548863809) (:by |rJG4IHzWf) (:id |jkREfn0Vf) (:text |state) (:type :leaf)
|r $ {} (:at 1591548865896) (:by |rJG4IHzWf) (:id |SRQqVm8_9) (:type :expr)
:data $ {}
|T $ {} (:at 1591548871293) (:by |rJG4IHzWf) (:id |SRQqVm8_9leaf) (:text |:round?) (:type :leaf)
|j $ {} (:at 1591548872634) (:by |rJG4IHzWf) (:id |H7UCz-3i2l) (:text |true) (:type :leaf)
|t $ {} (:at 1591549527006) (:by |rJG4IHzWf) (:id |m0XbnPmgCW) (:type :expr)
:data $ {}
|T $ {} (:at 1591549532015) (:by |rJG4IHzWf) (:id |m0XbnPmgCWleaf) (:text |:unit) (:type :leaf)
|j $ {} (:at 1591549534591) (:by |rJG4IHzWf) (:id |ww1vUK15X) (:text |1) (:type :leaf)
|v $ {} (:at 1591548873541) (:by |rJG4IHzWf) (:id |ruwGb1pqGR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548874394) (:by |rJG4IHzWf) (:id |ruwGb1pqGRleaf) (:text |:min) (:type :leaf)
|j $ {} (:at 1591548875149) (:by |rJG4IHzWf) (:id |wJcP1zPBf5) (:text |2) (:type :leaf)
|x $ {} (:at 1591548879482) (:by |rJG4IHzWf) (:id |2J3A7GgQh) (:type :expr)
:data $ {}
|T $ {} (:at 1591548880732) (:by |rJG4IHzWf) (:id |2J3A7GgQhleaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1591548881510) (:by |rJG4IHzWf) (:id |nUf4DgyR1h) (:type :expr)
:data $ {}
|T $ {} (:at 1591548881744) (:by |rJG4IHzWf) (:id |Qu091lodc) (:text |[]) (:type :leaf)
|j $ {} (:at 1632894819612) (:by |rJG4IHzWf) (:id |u6HrxnYJU) (:text |140) (:type :leaf)
|r $ {} (:at 1632894878299) (:by |rJG4IHzWf) (:id |JoD_BXdeGd) (:text |-280) (:type :leaf)
|xT $ {} (:at 1591635687426) (:by |rJG4IHzWf) (:id |BUFflFO3qM) (:type :expr)
:data $ {}
|T $ {} (:at 1591635691432) (:by |rJG4IHzWf) (:id |BUFflFO3qMleaf) (:text |:title) (:type :leaf)
|j $ {} (:at 1591635692566) (:by |rJG4IHzWf) (:id |F-S6eWCXn0) (:text "|\"Steps") (:type :leaf)
|y $ {} (:at 1591548887872) (:by |rJG4IHzWf) (:id |xYVP1AlFl) (:type :expr)
:data $ {}
|T $ {} (:at 1591548891610) (:by |rJG4IHzWf) (:id |xYVP1AlFlleaf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591548891845) (:by |rJG4IHzWf) (:id |7BdULF9J9Y) (:type :expr)
:data $ {}
|T $ {} (:at 1591548892330) (:by |rJG4IHzWf) (:id |z62HOTyMH0) (:text |fn) (:type :leaf)
|j $ {} (:at 1591548892639) (:by |rJG4IHzWf) (:id |Ahz4dhJvCR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548894630) (:by |rJG4IHzWf) (:id |G5le_3jp8P) (:text |v) (:type :leaf)
|j $ {} (:at 1591548895398) (:by |rJG4IHzWf) (:id |rb-APVHbSH) (:text |d!) (:type :leaf)
|r $ {} (:at 1591548896024) (:by |rJG4IHzWf) (:id |FxnI84W-yL) (:type :expr)
:data $ {}
|T $ {} (:at 1591548896593) (:by |rJG4IHzWf) (:id |FxnI84W-yLleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1591548898958) (:by |rJG4IHzWf) (:id |S45ifUP46Y) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591548900122) (:by |rJG4IHzWf) (:id |pLd_JnhvK) (:type :expr)
:data $ {}
|T $ {} (:at 1591548901299) (:by |rJG4IHzWf) (:id |GrZPAm-ij) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591548902378) (:by |rJG4IHzWf) (:id |jE0s1LdArS) (:text |state) (:type :leaf)
|r $ {} (:at 1591548908059) (:by |rJG4IHzWf) (:id |itVjP5rE2d) (:text |:steps) (:type :leaf)
|v $ {} (:at 1591548916960) (:by |rJG4IHzWf) (:id |J15xnQ0tl) (:text |v) (:type :leaf)
|u $ {} (:at 1591548846408) (:by |rJG4IHzWf) (:id |JVlGX6m-B) (:type :expr)
:data $ {}
|T $ {} (:at 1591548846876) (:by |rJG4IHzWf) (:id |tZGNOONCcNleaf) (:text |comp-slider) (:type :leaf)
|j $ {} (:at 1591548848107) (:by |rJG4IHzWf) (:id |CQlWgskWe) (:type :expr)
:data $ {}
|T $ {} (:at 1591548848641) (:by |rJG4IHzWf) (:id |ejk3KZUaC) (:text |>>) (:type :leaf)
|j $ {} (:at 1591548851234) (:by |rJG4IHzWf) (:id |d1M8EzKNMO) (:text |states) (:type :leaf)
|r $ {} (:at 1591634724657) (:by |rJG4IHzWf) (:id |GpM1u1lL25) (:text |:v0) (:type :leaf)
|r $ {} (:at 1591548854242) (:by |rJG4IHzWf) (:id |CzC_j1s3w) (:type :expr)
:data $ {}
|T $ {} (:at 1591548855609) (:by |rJG4IHzWf) (:id |CzC_j1s3wleaf) (:text |{}) (:type :leaf)
|j $ {} (:at 1591548855890) (:by |rJG4IHzWf) (:id |BLNvra3ba1) (:type :expr)
:data $ {}
|T $ {} (:at 1591548857180) (:by |rJG4IHzWf) (:id |LqjJokDJPe) (:text |:value) (:type :leaf)
|j $ {} (:at 1591634759876) (:by |rJG4IHzWf) (:id |VGk0M7sSEh) (:type :expr)
:data $ {}
|D $ {} (:at 1591634760521) (:by |rJG4IHzWf) (:id |IO-YnXZ-d) (:text |or) (:type :leaf)
|T $ {} (:at 1591548858100) (:by |rJG4IHzWf) (:id |d5NduvlAX) (:type :expr)
:data $ {}
|T $ {} (:at 1591634728268) (:by |rJG4IHzWf) (:id |xHJZQ2mVPD) (:text |:v0) (:type :leaf)
|j $ {} (:at 1591548863809) (:by |rJG4IHzWf) (:id |jkREfn0Vf) (:text |state) (:type :leaf)
|j $ {} (:at 1591635015079) (:by |rJG4IHzWf) (:id |wB1FCuOFi) (:text |0.1) (:type :leaf)
|m $ {} (:at 1591634742783) (:by |rJG4IHzWf) (:id |-s1f9TcVwm) (:type :expr)
:data $ {}
|T $ {} (:at 1591634744236) (:by |rJG4IHzWf) (:id |-s1f9TcVwmleaf) (:text |:title) (:type :leaf)
|j $ {} (:at 1591634745755) (:by |rJG4IHzWf) (:id |Xph21nneo-) (:text "|\"v0") (:type :leaf)
|p $ {} (:at 1591548998960) (:by |rJG4IHzWf) (:id |mV9ZPw0Mb) (:type :expr)
:data $ {}
|T $ {} (:at 1591549000344) (:by |rJG4IHzWf) (:id |mV9ZPw0Mbleaf) (:text |:unit) (:type :leaf)
|j $ {} (:at 1591636021057) (:by |rJG4IHzWf) (:id |z52HKZerag) (:text |0.0001) (:type :leaf)
|v $ {} (:at 1591548873541) (:by |rJG4IHzWf) (:id |ruwGb1pqGR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548874394) (:by |rJG4IHzWf) (:id |ruwGb1pqGRleaf) (:text |:min) (:type :leaf)
|j $ {} (:at 1591636026617) (:by |rJG4IHzWf) (:id |wJcP1zPBf5) (:text |0.0001) (:type :leaf)
|w $ {} (:at 1591636027758) (:by |rJG4IHzWf) (:id |RDuqLqnKDt) (:type :expr)
:data $ {}
|T $ {} (:at 1591636028807) (:by |rJG4IHzWf) (:id |RDuqLqnKDtleaf) (:text |:max) (:type :leaf)
|j $ {} (:at 1591636029589) (:by |rJG4IHzWf) (:id |ICHgBLHsd) (:text |2) (:type :leaf)
|x $ {} (:at 1591548879482) (:by |rJG4IHzWf) (:id |2J3A7GgQh) (:type :expr)
:data $ {}
|T $ {} (:at 1591548880732) (:by |rJG4IHzWf) (:id |2J3A7GgQhleaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1591548881510) (:by |rJG4IHzWf) (:id |nUf4DgyR1h) (:type :expr)
:data $ {}
|T $ {} (:at 1591548881744) (:by |rJG4IHzWf) (:id |Qu091lodc) (:text |[]) (:type :leaf)
|j $ {} (:at 1632894823955) (:by |rJG4IHzWf) (:id |u6HrxnYJU) (:text |-280) (:type :leaf)
|r $ {} (:at 1632894880582) (:by |rJG4IHzWf) (:id |JoD_BXdeGd) (:text |-280) (:type :leaf)
|y $ {} (:at 1591548887872) (:by |rJG4IHzWf) (:id |xYVP1AlFl) (:type :expr)
:data $ {}
|T $ {} (:at 1591548891610) (:by |rJG4IHzWf) (:id |xYVP1AlFlleaf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591548891845) (:by |rJG4IHzWf) (:id |7BdULF9J9Y) (:type :expr)
:data $ {}
|T $ {} (:at 1591548892330) (:by |rJG4IHzWf) (:id |z62HOTyMH0) (:text |fn) (:type :leaf)
|j $ {} (:at 1591548892639) (:by |rJG4IHzWf) (:id |Ahz4dhJvCR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548894630) (:by |rJG4IHzWf) (:id |G5le_3jp8P) (:text |v) (:type :leaf)
|j $ {} (:at 1591548895398) (:by |rJG4IHzWf) (:id |rb-APVHbSH) (:text |d!) (:type :leaf)
|r $ {} (:at 1591548896024) (:by |rJG4IHzWf) (:id |FxnI84W-yL) (:type :expr)
:data $ {}
|T $ {} (:at 1591548896593) (:by |rJG4IHzWf) (:id |FxnI84W-yLleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1591548898958) (:by |rJG4IHzWf) (:id |S45ifUP46Y) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591548900122) (:by |rJG4IHzWf) (:id |pLd_JnhvK) (:type :expr)
:data $ {}
|T $ {} (:at 1591548901299) (:by |rJG4IHzWf) (:id |GrZPAm-ij) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591548902378) (:by |rJG4IHzWf) (:id |jE0s1LdArS) (:text |state) (:type :leaf)
|r $ {} (:at 1591634730059) (:by |rJG4IHzWf) (:id |itVjP5rE2d) (:text |:v0) (:type :leaf)
|v $ {} (:at 1591548916960) (:by |rJG4IHzWf) (:id |J15xnQ0tl) (:text |v) (:type :leaf)
|v $ {} (:at 1591548846408) (:by |rJG4IHzWf) (:id |fKqK2wpzYQ) (:type :expr)
:data $ {}
|T $ {} (:at 1591548846876) (:by |rJG4IHzWf) (:id |tZGNOONCcNleaf) (:text |comp-slider) (:type :leaf)
|j $ {} (:at 1591548848107) (:by |rJG4IHzWf) (:id |CQlWgskWe) (:type :expr)
:data $ {}
|T $ {} (:at 1591548848641) (:by |rJG4IHzWf) (:id |ejk3KZUaC) (:text |>>) (:type :leaf)
|j $ {} (:at 1591548851234) (:by |rJG4IHzWf) (:id |d1M8EzKNMO) (:text |states) (:type :leaf)
|r $ {} (:at 1591548975243) (:by |rJG4IHzWf) (:id |GpM1u1lL25) (:text |:v1) (:type :leaf)
|r $ {} (:at 1591548854242) (:by |rJG4IHzWf) (:id |CzC_j1s3w) (:type :expr)
:data $ {}
|T $ {} (:at 1591548855609) (:by |rJG4IHzWf) (:id |CzC_j1s3wleaf) (:text |{}) (:type :leaf)
|j $ {} (:at 1591548855890) (:by |rJG4IHzWf) (:id |BLNvra3ba1) (:type :expr)
:data $ {}
|T $ {} (:at 1591548857180) (:by |rJG4IHzWf) (:id |LqjJokDJPe) (:text |:value) (:type :leaf)
|j $ {} (:at 1591548858100) (:by |rJG4IHzWf) (:id |d5NduvlAX) (:type :expr)
:data $ {}
|T $ {} (:at 1591548977426) (:by |rJG4IHzWf) (:id |xHJZQ2mVPD) (:text |:v1) (:type :leaf)
|j $ {} (:at 1591548863809) (:by |rJG4IHzWf) (:id |jkREfn0Vf) (:text |state) (:type :leaf)
|m $ {} (:at 1591634771615) (:by |rJG4IHzWf) (:id |xOklV8CKGi) (:type :expr)
:data $ {}
|T $ {} (:at 1591634774028) (:by |rJG4IHzWf) (:id |xOklV8CKGileaf) (:text |:title) (:type :leaf)
|j $ {} (:at 1591634775094) (:by |rJG4IHzWf) (:id |ZZF-3IlMY) (:text "|\"v1") (:type :leaf)
|p $ {} (:at 1591548998960) (:by |rJG4IHzWf) (:id |mV9ZPw0Mb) (:type :expr)
:data $ {}
|T $ {} (:at 1591549000344) (:by |rJG4IHzWf) (:id |mV9ZPw0Mbleaf) (:text |:unit) (:type :leaf)
|j $ {} (:at 1591634886679) (:by |rJG4IHzWf) (:id |z52HKZerag) (:text |0.1) (:type :leaf)
|v $ {} (:at 1591548873541) (:by |rJG4IHzWf) (:id |ruwGb1pqGR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548874394) (:by |rJG4IHzWf) (:id |ruwGb1pqGRleaf) (:text |:min) (:type :leaf)
|j $ {} (:at 1591634832477) (:by |rJG4IHzWf) (:id |wJcP1zPBf5) (:text |1) (:type :leaf)
|x $ {} (:at 1591548879482) (:by |rJG4IHzWf) (:id |2J3A7GgQh) (:type :expr)
:data $ {}
|T $ {} (:at 1591548880732) (:by |rJG4IHzWf) (:id |2J3A7GgQhleaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1591548881510) (:by |rJG4IHzWf) (:id |nUf4DgyR1h) (:type :expr)
:data $ {}
|T $ {} (:at 1591548881744) (:by |rJG4IHzWf) (:id |Qu091lodc) (:text |[]) (:type :leaf)
|j $ {} (:at 1632894827840) (:by |rJG4IHzWf) (:id |u6HrxnYJU) (:text |-140) (:type :leaf)
|r $ {} (:at 1632894885980) (:by |rJG4IHzWf) (:id |JoD_BXdeGd) (:text |-280) (:type :leaf)
|xT $ {} (:at 1591634865616) (:by |rJG4IHzWf) (:id |kLHlrXAlmR) (:type :expr)
:data $ {}
|T $ {} (:at 1591634869206) (:by |rJG4IHzWf) (:id |kLHlrXAlmRleaf) (:text |:round?) (:type :leaf)
|j $ {} (:at 1591634869816) (:by |rJG4IHzWf) (:id |jOU1RUJD1p) (:text |true) (:type :leaf)
|y $ {} (:at 1591548887872) (:by |rJG4IHzWf) (:id |xYVP1AlFl) (:type :expr)
:data $ {}
|T $ {} (:at 1591548891610) (:by |rJG4IHzWf) (:id |xYVP1AlFlleaf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591548891845) (:by |rJG4IHzWf) (:id |7BdULF9J9Y) (:type :expr)
:data $ {}
|T $ {} (:at 1591548892330) (:by |rJG4IHzWf) (:id |z62HOTyMH0) (:text |fn) (:type :leaf)
|j $ {} (:at 1591548892639) (:by |rJG4IHzWf) (:id |Ahz4dhJvCR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548894630) (:by |rJG4IHzWf) (:id |G5le_3jp8P) (:text |v) (:type :leaf)
|j $ {} (:at 1591548895398) (:by |rJG4IHzWf) (:id |rb-APVHbSH) (:text |d!) (:type :leaf)
|r $ {} (:at 1591548896024) (:by |rJG4IHzWf) (:id |FxnI84W-yL) (:type :expr)
:data $ {}
|T $ {} (:at 1591548896593) (:by |rJG4IHzWf) (:id |FxnI84W-yLleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1591548898958) (:by |rJG4IHzWf) (:id |S45ifUP46Y) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591548900122) (:by |rJG4IHzWf) (:id |pLd_JnhvK) (:type :expr)
:data $ {}
|T $ {} (:at 1591548901299) (:by |rJG4IHzWf) (:id |GrZPAm-ij) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591548902378) (:by |rJG4IHzWf) (:id |jE0s1LdArS) (:text |state) (:type :leaf)
|r $ {} (:at 1591548979826) (:by |rJG4IHzWf) (:id |itVjP5rE2d) (:text |:v1) (:type :leaf)
|v $ {} (:at 1591548916960) (:by |rJG4IHzWf) (:id |J15xnQ0tl) (:text |v) (:type :leaf)
|w $ {} (:at 1591548846408) (:by |rJG4IHzWf) (:id |dBln3aoJt) (:type :expr)
:data $ {}
|T $ {} (:at 1591548846876) (:by |rJG4IHzWf) (:id |tZGNOONCcNleaf) (:text |comp-slider) (:type :leaf)
|j $ {} (:at 1591548848107) (:by |rJG4IHzWf) (:id |CQlWgskWe) (:type :expr)
:data $ {}
|T $ {} (:at 1591548848641) (:by |rJG4IHzWf) (:id |ejk3KZUaC) (:text |>>) (:type :leaf)
|j $ {} (:at 1591548851234) (:by |rJG4IHzWf) (:id |d1M8EzKNMO) (:text |states) (:type :leaf)
|r $ {} (:at 1591549026064) (:by |rJG4IHzWf) (:id |GpM1u1lL25) (:text |:v2) (:type :leaf)
|r $ {} (:at 1591548854242) (:by |rJG4IHzWf) (:id |CzC_j1s3w) (:type :expr)
:data $ {}
|T $ {} (:at 1591548855609) (:by |rJG4IHzWf) (:id |CzC_j1s3wleaf) (:text |{}) (:type :leaf)
|j $ {} (:at 1591548855890) (:by |rJG4IHzWf) (:id |BLNvra3ba1) (:type :expr)
:data $ {}
|T $ {} (:at 1591548857180) (:by |rJG4IHzWf) (:id |LqjJokDJPe) (:text |:value) (:type :leaf)
|j $ {} (:at 1591548858100) (:by |rJG4IHzWf) (:id |d5NduvlAX) (:type :expr)
:data $ {}
|T $ {} (:at 1591549028606) (:by |rJG4IHzWf) (:id |xHJZQ2mVPD) (:text |:v2) (:type :leaf)
|j $ {} (:at 1591548863809) (:by |rJG4IHzWf) (:id |jkREfn0Vf) (:text |state) (:type :leaf)
|m $ {} (:at 1591634776834) (:by |rJG4IHzWf) (:id |erOdn3iJVw) (:type :expr)
:data $ {}
|T $ {} (:at 1591634778390) (:by |rJG4IHzWf) (:id |erOdn3iJVwleaf) (:text |:title) (:type :leaf)
|j $ {} (:at 1591634780496) (:by |rJG4IHzWf) (:id |HrkS6f2-i3) (:text "|\"v2") (:type :leaf)
|p $ {} (:at 1591548998960) (:by |rJG4IHzWf) (:id |mV9ZPw0Mb) (:type :expr)
:data $ {}
|T $ {} (:at 1591549000344) (:by |rJG4IHzWf) (:id |mV9ZPw0Mbleaf) (:text |:unit) (:type :leaf)
|j $ {} (:at 1591634888710) (:by |rJG4IHzWf) (:id |z52HKZerag) (:text |0.1) (:type :leaf)
|v $ {} (:at 1591548873541) (:by |rJG4IHzWf) (:id |ruwGb1pqGR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548874394) (:by |rJG4IHzWf) (:id |ruwGb1pqGRleaf) (:text |:min) (:type :leaf)
|j $ {} (:at 1591634835237) (:by |rJG4IHzWf) (:id |wJcP1zPBf5) (:text |1) (:type :leaf)
|w $ {} (:at 1591634873007) (:by |rJG4IHzWf) (:id |TxqnrK8YcX) (:type :expr)
:data $ {}
|T $ {} (:at 1591634873007) (:by |rJG4IHzWf) (:id |bATJ99dz6z) (:text |:round?) (:type :leaf)
|j $ {} (:at 1591634873007) (:by |rJG4IHzWf) (:id |p_KtH2IIXN) (:text |true) (:type :leaf)
|x $ {} (:at 1591548879482) (:by |rJG4IHzWf) (:id |2J3A7GgQh) (:type :expr)
:data $ {}
|T $ {} (:at 1591548880732) (:by |rJG4IHzWf) (:id |2J3A7GgQhleaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1591548881510) (:by |rJG4IHzWf) (:id |nUf4DgyR1h) (:type :expr)
:data $ {}
|T $ {} (:at 1591548881744) (:by |rJG4IHzWf) (:id |Qu091lodc) (:text |[]) (:type :leaf)
|j $ {} (:at 1632894830680) (:by |rJG4IHzWf) (:id |u6HrxnYJU) (:text |0) (:type :leaf)
|r $ {} (:at 1632894887869) (:by |rJG4IHzWf) (:id |JoD_BXdeGd) (:text |-280) (:type :leaf)
|y $ {} (:at 1591548887872) (:by |rJG4IHzWf) (:id |xYVP1AlFl) (:type :expr)
:data $ {}
|T $ {} (:at 1591548891610) (:by |rJG4IHzWf) (:id |xYVP1AlFlleaf) (:text |:on-change) (:type :leaf)
|j $ {} (:at 1591548891845) (:by |rJG4IHzWf) (:id |7BdULF9J9Y) (:type :expr)
:data $ {}
|T $ {} (:at 1591548892330) (:by |rJG4IHzWf) (:id |z62HOTyMH0) (:text |fn) (:type :leaf)
|j $ {} (:at 1591548892639) (:by |rJG4IHzWf) (:id |Ahz4dhJvCR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548894630) (:by |rJG4IHzWf) (:id |G5le_3jp8P) (:text |v) (:type :leaf)
|j $ {} (:at 1591548895398) (:by |rJG4IHzWf) (:id |rb-APVHbSH) (:text |d!) (:type :leaf)
|r $ {} (:at 1591548896024) (:by |rJG4IHzWf) (:id |FxnI84W-yL) (:type :expr)
:data $ {}
|T $ {} (:at 1591548896593) (:by |rJG4IHzWf) (:id |FxnI84W-yLleaf) (:text |d!) (:type :leaf)
|j $ {} (:at 1591548898958) (:by |rJG4IHzWf) (:id |S45ifUP46Y) (:text |cursor) (:type :leaf)
|r $ {} (:at 1591548900122) (:by |rJG4IHzWf) (:id |pLd_JnhvK) (:type :expr)
:data $ {}
|T $ {} (:at 1591548901299) (:by |rJG4IHzWf) (:id |GrZPAm-ij) (:text |assoc) (:type :leaf)
|j $ {} (:at 1591548902378) (:by |rJG4IHzWf) (:id |jE0s1LdArS) (:text |state) (:type :leaf)
|r $ {} (:at 1591549030955) (:by |rJG4IHzWf) (:id |itVjP5rE2d) (:text |:v2) (:type :leaf)
|v $ {} (:at 1591548916960) (:by |rJG4IHzWf) (:id |J15xnQ0tl) (:text |v) (:type :leaf)
|x $ {} (:at 1591548846408) (:by |rJG4IHzWf) (:id |Wh0ZPWUOvz) (:type :expr)
:data $ {}
|T $ {} (:at 1591548846876) (:by |rJG4IHzWf) (:id |tZGNOONCcNleaf) (:text |comp-slider) (:type :leaf)
|j $ {} (:at 1591548848107) (:by |rJG4IHzWf) (:id |CQlWgskWe) (:type :expr)
:data $ {}
|T $ {} (:at 1591548848641) (:by |rJG4IHzWf) (:id |ejk3KZUaC) (:text |>>) (:type :leaf)
|j $ {} (:at 1591548851234) (:by |rJG4IHzWf) (:id |d1M8EzKNMO) (:text |states) (:type :leaf)
|r $ {} (:at 1591635733116) (:by |rJG4IHzWf) (:id |GpM1u1lL25) (:text |:alpha) (:type :leaf)
|r $ {} (:at 1591548854242) (:by |rJG4IHzWf) (:id |CzC_j1s3w) (:type :expr)
:data $ {}
|T $ {} (:at 1591548855609) (:by |rJG4IHzWf) (:id |CzC_j1s3wleaf) (:text |{}) (:type :leaf)
|j $ {} (:at 1591548855890) (:by |rJG4IHzWf) (:id |BLNvra3ba1) (:type :expr)
:data $ {}
|T $ {} (:at 1591548857180) (:by |rJG4IHzWf) (:id |LqjJokDJPe) (:text |:value) (:type :leaf)
|j $ {} (:at 1591548858100) (:by |rJG4IHzWf) (:id |d5NduvlAX) (:type :expr)
:data $ {}
|T $ {} (:at 1591635736723) (:by |rJG4IHzWf) (:id |xHJZQ2mVPD) (:text |:alpha) (:type :leaf)
|j $ {} (:at 1591548863809) (:by |rJG4IHzWf) (:id |jkREfn0Vf) (:text |state) (:type :leaf)
|m $ {} (:at 1591634776834) (:by |rJG4IHzWf) (:id |erOdn3iJVw) (:type :expr)
:data $ {}
|T $ {} (:at 1591634778390) (:by |rJG4IHzWf) (:id |erOdn3iJVwleaf) (:text |:title) (:type :leaf)
|j $ {} (:at 1591635738473) (:by |rJG4IHzWf) (:id |HrkS6f2-i3) (:text "|\"alpha") (:type :leaf)
|p $ {} (:at 1591548998960) (:by |rJG4IHzWf) (:id |mV9ZPw0Mb) (:type :expr)
:data $ {}
|T $ {} (:at 1591549000344) (:by |rJG4IHzWf) (:id |mV9ZPw0Mbleaf) (:text |:unit) (:type :leaf)
|j $ {} (:at 1591635801645) (:by |rJG4IHzWf) (:id |z52HKZerag) (:text |0.004) (:type :leaf)
|v $ {} (:at 1591548873541) (:by |rJG4IHzWf) (:id |ruwGb1pqGR) (:type :expr)
:data $ {}
|T $ {} (:at 1591548874394) (:by |rJG4IHzWf) (:id |ruwGb1pqGRleaf) (:text |:min) (:type :leaf)
|j $ {} (:at 1591635752784) (:by |rJG4IHzWf) (:id |wJcP1zPBf5) (:text |0.001) (:type :leaf)
|vT $ {} (:at 1591635748065) (:by |rJG4IHzWf) (:id |ilT3FnV7q) (:type :expr)
:data $ {}
|T $ {} (:at 1591635748788) (:by |rJG4IHzWf) (:id |ilT3FnV7qleaf) (:text |:max) (:type :leaf)
|j $ {} (:at 1591635749576) (:by |rJG4IHzWf) (:id |4qLrZ_syn) (:text |1) (:type :leaf)
|w $ {} (:at 1591634873007) (:by |rJG4IHzWf) (:id |TxqnrK8YcX) (:type :expr)
:data $ {}
|T $ {} (:at 1591634873007) (:by |rJG4IHzWf) (:id |bATJ99dz6z) (:text |:round?) (:type :leaf)
|j $ {} (:at 1591635783537) (:by |rJG4IHzWf) (:id |p_KtH2IIXN) (:text |false) (:type :leaf)
|x $ {} (:at 1591548879482) (:by |rJG4IHzWf) (:id |2J3A7GgQh) (:type :expr)
:data $ {}
|T $ {} (:at 1591548880732) (:by |rJG4IHzWf) (:id |2J3A7GgQhleaf) (:text |:position) (:type :leaf)
|j $ {} (:at 1591548881510) (:by |rJG4IHzWf) (:id |nUf4DgyR1h) (:type :expr)
:data $ {}
|T $ {} (:at 1591548881744) (:by |rJG4IHzWf) (:id |Qu091lodc) (:text |[]) (:type :leaf)