-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
1604 lines (1603 loc) · 111 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{} (:package |app)
:configs $ {} (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |reel.calcit/ |hud-nav/
:entries $ {}
:files $ {}
|app.comp.container $ %{} :FileEntry
:defs $ {}
|comp-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |comp-container)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1507461830530) (:by |root) (:text |reel)
|v $ %{} :Expr (:at 1507461832154) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507461833421) (:by |root) (:text |let)
|L $ %{} :Expr (:at 1507461834351) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1507461834650) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461835738) (:by |root) (:text |store)
|j $ %{} :Expr (:at 1507461836110) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461837276) (:by |root) (:text |:store)
|j $ %{} :Leaf (:at 1507461838285) (:by |root) (:text |reel)
|j $ %{} :Expr (:at 1509727104820) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727105928) (:by |root) (:text |states)
|j $ %{} :Expr (:at 1509727106316) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1509727107223) (:by |root) (:text |:states)
|j $ %{} :Leaf (:at 1626777497473) (:by |rJG4IHzWf) (:text |store)
|n $ %{} :Expr (:at 1584780921790) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780923771) (:by |rJG4IHzWf) (:text |cursor)
|j $ %{} :Expr (:at 1584780991636) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1627849325504) (:by |rJG4IHzWf) (:text |or)
|T $ %{} :Expr (:at 1584780923944) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780925829) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1584780926681) (:by |rJG4IHzWf) (:text |states)
|b $ %{} :Expr (:at 1679237728653) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1679237728821) (:by |rJG4IHzWf) (:text |[])
|r $ %{} :Expr (:at 1584780887905) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780889620) (:by |rJG4IHzWf) (:text |state)
|j $ %{} :Expr (:at 1584780889933) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1627849327831) (:by |rJG4IHzWf) (:text |or)
|j $ %{} :Expr (:at 1584780894090) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780894689) (:by |rJG4IHzWf) (:text |:data)
|j $ %{} :Leaf (:at 1584780900314) (:by |rJG4IHzWf) (:text |states)
|r $ %{} :Expr (:at 1584780901014) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780901408) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1584780901741) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584780906050) (:by |rJG4IHzWf) (:text |:content)
|j $ %{} :Leaf (:at 1584780907617) (:by |rJG4IHzWf) (:text "|\"")
|T $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |{})
|q $ %{} :Expr (:at 1700072698846) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700072701950) (:by |rJG4IHzWf) (:text |if-not)
|L $ %{} :Leaf (:at 1700072702337) (:by |rJG4IHzWf) (:text |hide-tabs?)
|T $ %{} :Expr (:at 1699548514626) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548519034) (:by |rJG4IHzWf) (:text |comp-hud-nav)
|b $ %{} :Expr (:at 1699548541093) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548542277) (:by |rJG4IHzWf) (:text |:tab)
|b $ %{} :Leaf (:at 1699548542956) (:by |rJG4IHzWf) (:text |store)
|h $ %{} :Leaf (:at 1699548546731) (:by |rJG4IHzWf) (:text |tabs)
|l $ %{} :Expr (:at 1699548560792) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548561036) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1699548561311) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548565070) (:by |rJG4IHzWf) (:text |next)
|b $ %{} :Leaf (:at 1699548566242) (:by |rJG4IHzWf) (:text |d!)
|h $ %{} :Expr (:at 1699548566683) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548567705) (:by |rJG4IHzWf) (:text |d!)
|b $ %{} :Expr (:at 1699548569093) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548569321) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699548577981) (:by |rJG4IHzWf) (:text |:tab)
|h $ %{} :Leaf (:at 1699548571517) (:by |rJG4IHzWf) (:text |next)
|x $ %{} :Expr (:at 1521954055333) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when)
|L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?)
|T $ %{} :Expr (:at 1507461809635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461815046) (:by |root) (:text |comp-reel)
|b $ %{} :Expr (:at 1584780610581) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1584780611347) (:by |rJG4IHzWf) (:text |>>)
|T $ %{} :Leaf (:at 1509727101297) (:by |root) (:text |states)
|j $ %{} :Leaf (:at 1584780613268) (:by |rJG4IHzWf) (:text |:reel)
|j $ %{} :Leaf (:at 1507461840459) (:by |root) (:text |reel)
|r $ %{} :Expr (:at 1507461840980) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461841342) (:by |root) (:text |{})
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |app.comp.container)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:require)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1695659797743) (:by |rJG4IHzWf) (:text |respo-ui.css)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:as)
|v $ %{} :Leaf (:at 1695659799627) (:by |rJG4IHzWf) (:text |css)
|t $ %{} :Expr (:at 1695659844346) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695659847085) (:by |rJG4IHzWf) (:text |respo.css)
|b $ %{} :Leaf (:at 1695659847949) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1695659848197) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695659850247) (:by |rJG4IHzWf) (:text |defstyle)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1540958704705) (:by |root) (:text |respo.core)
|r $ %{} :Leaf (:at 1508946162679) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defcomp)
|l $ %{} :Leaf (:at 1573355389740) (:by |rJG4IHzWf) (:text |defeffect)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |<>)
|t $ %{} :Leaf (:at 1584780606618) (:by |rJG4IHzWf) (:text |>>)
|v $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |div)
|x $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |button)
|xT $ %{} :Leaf (:at 1512359490531) (:by |rJG4IHzWf) (:text |textarea)
|y $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |span)
|yT $ %{} :Leaf (:at 1552321107012) (:by |rJG4IHzWf) (:text |input)
|x $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |respo.comp.space)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |=<)
|y $ %{} :Expr (:at 1507461845717) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507461855480) (:by |root) (:text |reel.comp.reel)
|r $ %{} :Leaf (:at 1507461856264) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1507461856484) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1507461858342) (:by |root) (:text |comp-reel)
|yj $ %{} :Expr (:at 1521954061310) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |app.config)
|r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer)
|v $ %{} :Expr (:at 1521954065004) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?)
|n $ %{} :Leaf (:at 1700072706257) (:by |rJG4IHzWf) (:text |hide-tabs?)
|yr $ %{} :Expr (:at 1699810363601) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699811633981) (:by |rJG4IHzWf) (:text |app.config)
|b $ %{} :Leaf (:at 1699810368661) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1699810368958) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699810370543) (:by |rJG4IHzWf) (:text |tabs)
|z $ %{} :Expr (:at 1699548477878) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548477878) (:by |rJG4IHzWf) (:text |hud-nav.comp)
|b $ %{} :Leaf (:at 1699548477878) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1699548477878) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548477878) (:by |rJG4IHzWf) (:text |comp-hud-nav)
|app.config $ %{} :FileEntry
:defs $ {}
|default-tab $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1699779561261) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699779563196) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1699779561261) (:by |rJG4IHzWf) (:text |default-tab)
|h $ %{} :Expr (:at 1699779573973) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1699779575542) (:by |rJG4IHzWf) (:text |turn-tag)
|T $ %{} :Expr (:at 1699779561261) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699779565260) (:by |rJG4IHzWf) (:text |get-env)
|b $ %{} :Leaf (:at 1699779567944) (:by |rJG4IHzWf) (:text "|\"tab")
|h $ %{} :Expr (:at 1699810321522) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1699810324753) (:by |rJG4IHzWf) (:text |turn-string)
|T $ %{} :Expr (:at 1699810315319) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1699810319219) (:by |rJG4IHzWf) (:text |nth)
|T $ %{} :Expr (:at 1699810306448) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1699810312896) (:by |rJG4IHzWf) (:text |last)
|L $ %{} :Leaf (:at 1699810313585) (:by |rJG4IHzWf) (:text |tabs)
|b $ %{} :Leaf (:at 1699810336230) (:by |rJG4IHzWf) (:text |0)
|dev? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1544873875614) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |dev?)
|r $ %{} :Expr (:at 1624469709435) (:by |rJG4IHzWf)
:data $ {}
|5 $ %{} :Leaf (:at 1624469715390) (:by |rJG4IHzWf) (:text |=)
|D $ %{} :Leaf (:at 1624469714304) (:by |rJG4IHzWf) (:text "|\"dev")
|T $ %{} :Expr (:at 1624469701389) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1624469706777) (:by |rJG4IHzWf) (:text |get-env)
|T $ %{} :Leaf (:at 1624469708397) (:by |rJG4IHzWf) (:text "|\"mode")
|b $ %{} :Leaf (:at 1658121345573) (:by |rJG4IHzWf) (:text "|\"release")
|hide-tabs? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1700072678650) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700072680769) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1700072678650) (:by |rJG4IHzWf) (:text |hide-tabs?)
|h $ %{} :Expr (:at 1700072678650) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700072681938) (:by |rJG4IHzWf) (:text |=)
|b $ %{} :Leaf (:at 1700072683269) (:by |rJG4IHzWf) (:text "|\"true")
|h $ %{} :Expr (:at 1700072683976) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700072686842) (:by |rJG4IHzWf) (:text |get-env)
|b $ %{} :Leaf (:at 1700072690268) (:by |rJG4IHzWf) (:text "|\"hide-tabs")
|h $ %{} :Leaf (:at 1700072692063) (:by |rJG4IHzWf) (:text |false)
|site $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1545933382603) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157345496) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1518157327696) (:by |root) (:text |site)
|r $ %{} :Expr (:at 1518157327696) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157346643) (:by |root) (:text |{})
|yf $ %{} :Expr (:at 1544956719115) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956719115) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1544956719115) (:by |rJG4IHzWf) (:text "|\"workflow")
|skip-rendering? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1700071264060) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700071264060) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1700071264060) (:by |rJG4IHzWf) (:text |skip-rendering?)
|h $ %{} :Expr (:at 1700071279332) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1700071279767) (:by |rJG4IHzWf) (:text |=)
|L $ %{} :Leaf (:at 1700071281354) (:by |rJG4IHzWf) (:text "|\"true")
|T $ %{} :Expr (:at 1700071264060) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700071267174) (:by |rJG4IHzWf) (:text |get-env)
|b $ %{} :Leaf (:at 1700071271992) (:by |rJG4IHzWf) (:text "|\"skip")
|h $ %{} :Leaf (:at 1700071275246) (:by |rJG4IHzWf) (:text "|\"false")
|tabs $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1699548547107) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548547107) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1699811617595) (:by |rJG4IHzWf) (:text |tabs)
|h $ %{} :Expr (:at 1699548547107) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548548668) (:by |rJG4IHzWf) (:text |[])
|b $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699548554126) (:by |rJG4IHzWf) (:text |:fireworks)
|h $ %{} :Leaf (:at 1699548557325) (:by |rJG4IHzWf) (:text ||Fireworks)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|h $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699553312026) (:by |rJG4IHzWf) (:text |:lorenz)
|h $ %{} :Leaf (:at 1699553314825) (:by |rJG4IHzWf) (:text ||Lorenz)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|j $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699553321692) (:by |rJG4IHzWf) (:text |:aizawa)
|h $ %{} :Leaf (:at 1699553325599) (:by |rJG4IHzWf) (:text ||Aizawa)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|k $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699553330156) (:by |rJG4IHzWf) (:text |:fourwing)
|h $ %{} :Leaf (:at 1699553333120) (:by |rJG4IHzWf) (:text "||Four Wing")
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|l $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699551253672) (:by |rJG4IHzWf) (:text |:fractal)
|h $ %{} :Leaf (:at 1699551256580) (:by |rJG4IHzWf) (:text ||Fractal)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|o $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699776559502) (:by |rJG4IHzWf) (:text |:collision)
|h $ %{} :Leaf (:at 1699776562972) (:by |rJG4IHzWf) (:text ||Collision)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|q $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1699895717018) (:by |rJG4IHzWf) (:text |:bounce)
|h $ %{} :Leaf (:at 1699895719384) (:by |rJG4IHzWf) (:text ||Bounce)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|s $ %{} :Expr (:at 1699548549247) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699548549451) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1700242048779) (:by |rJG4IHzWf) (:text |:feday)
|h $ %{} :Leaf (:at 1700241890967) (:by |rJG4IHzWf) (:text ||FEDAY)
|l $ %{} :Leaf (:at 1699548558878) (:by |rJG4IHzWf) (:text |:dark)
|t $ %{} :Expr (:at 1700503243366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700503243775) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1700503244842) (:by |rJG4IHzWf) (:text |:bifurcation)
|h $ %{} :Leaf (:at 1700503248729) (:by |rJG4IHzWf) (:text "|\"Bifurcation")
|l $ %{} :Leaf (:at 1700503251549) (:by |rJG4IHzWf) (:text |:dark)
|u $ %{} :Expr (:at 1700503243366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700503243775) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1700761078243) (:by |rJG4IHzWf) (:text |:ball-spin)
|h $ %{} :Leaf (:at 1700761082254) (:by |rJG4IHzWf) (:text "|\"Ball Spin")
|l $ %{} :Leaf (:at 1700503251549) (:by |rJG4IHzWf) (:text |:dark)
|v $ %{} :Expr (:at 1700503243366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700503243775) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1701579124569) (:by |rJG4IHzWf) (:text |:lifegame)
|h $ %{} :Leaf (:at 1701579128396) (:by |rJG4IHzWf) (:text "|\"Lifegame")
|l $ %{} :Leaf (:at 1700503251549) (:by |rJG4IHzWf) (:text |:dark)
|w $ %{} :Expr (:at 1700503243366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1700503243775) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1701798866412) (:by |rJG4IHzWf) (:text |:lifegame-trail)
|h $ %{} :Leaf (:at 1701798869465) (:by |rJG4IHzWf) (:text "|\"Lifegame Trail")
|l $ %{} :Leaf (:at 1700503251549) (:by |rJG4IHzWf) (:text |:dark)
|x $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:bounce-trail)
|h $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text "||Bounce Trail")
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|y $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1704090054042) (:by |rJG4IHzWf) (:text |:orbit-spark)
|h $ %{} :Leaf (:at 1704090060565) (:by |rJG4IHzWf) (:text "||Orbit Spark")
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|z $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1706427265576) (:by |rJG4IHzWf) (:text |:chen)
|h $ %{} :Leaf (:at 1706427268968) (:by |rJG4IHzWf) (:text ||Chen)
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|zD $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1706459667300) (:by |rJG4IHzWf) (:text |:sprott)
|h $ %{} :Leaf (:at 1706459673341) (:by |rJG4IHzWf) (:text ||Sprott)
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|zP $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1706460593534) (:by |rJG4IHzWf) (:text |:lorenz83)
|h $ %{} :Leaf (:at 1706460597111) (:by |rJG4IHzWf) (:text ||Lorenz83)
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|zY $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1709317599896) (:by |rJG4IHzWf) (:text |:orbits)
|h $ %{} :Leaf (:at 1709317602493) (:by |rJG4IHzWf) (:text ||Orbits)
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|ze $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1709356865096) (:by |rJG4IHzWf) (:text |:lamps)
|h $ %{} :Leaf (:at 1709356870392) (:by |rJG4IHzWf) (:text ||Lamps)
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|zj $ %{} :Expr (:at 1702230361864) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1709387587936) (:by |rJG4IHzWf) (:text |:debug-grid)
|h $ %{} :Leaf (:at 1709387591545) (:by |rJG4IHzWf) (:text "||Debug Grid")
|l $ %{} :Leaf (:at 1702230361864) (:by |rJG4IHzWf) (:text |:dark)
|zn $ %{} :Expr (:at 1710063101339) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710063102869) (:by |rJG4IHzWf) (:text |::)
|X $ %{} :Leaf (:at 1710063110666) (:by |rJG4IHzWf) (:text |:den-tsucs)
|b $ %{} :Leaf (:at 1710063104176) (:by |rJG4IHzWf) (:text "|\"Den Tsucs")
|h $ %{} :Leaf (:at 1710063105599) (:by |rJG4IHzWf) (:text |:dark)
|zq $ %{} :Expr (:at 1710063101339) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710063102869) (:by |rJG4IHzWf) (:text |::)
|X $ %{} :Leaf (:at 1710175422947) (:by |rJG4IHzWf) (:text |:bouali)
|b $ %{} :Leaf (:at 1710175427155) (:by |rJG4IHzWf) (:text "|\"Bouali")
|h $ %{} :Leaf (:at 1710063105599) (:by |rJG4IHzWf) (:text |:dark)
|zs $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1713461164759) (:by |rJG4IHzWf) (:text |:orbits2)
|h $ %{} :Leaf (:at 1713461183671) (:by |rJG4IHzWf) (:text "|\"Orbits 2")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zt $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1714942266923) (:by |rJG4IHzWf) (:text |:halvorsen)
|h $ %{} :Leaf (:at 1714942263596) (:by |rJG4IHzWf) (:text "|\"Halvorsen")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zu $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1715106921105) (:by |rJG4IHzWf) (:text |:clifford)
|h $ %{} :Leaf (:at 1715106924197) (:by |rJG4IHzWf) (:text "|\"Clifford")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zv $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1715197257496) (:by |rJG4IHzWf) (:text |:dequanli)
|h $ %{} :Leaf (:at 1715197263594) (:by |rJG4IHzWf) (:text "|\"Dequan Li")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zw $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1715355819079) (:by |rJG4IHzWf) (:text |:dadras)
|h $ %{} :Leaf (:at 1715355822368) (:by |rJG4IHzWf) (:text "|\"Dadras")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zx $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1715357719865) (:by |rJG4IHzWf) (:text |:burke-shaw)
|h $ %{} :Leaf (:at 1715357725054) (:by |rJG4IHzWf) (:text "|\"Burke Shaw")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zy $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1715485133728) (:by |rJG4IHzWf) (:text |:quadratic)
|h $ %{} :Leaf (:at 1715485136939) (:by |rJG4IHzWf) (:text "|\"Quadratic")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|zz $ %{} :Expr (:at 1713461149809) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461150298) (:by |rJG4IHzWf) (:text |::)
|b $ %{} :Leaf (:at 1730571700438) (:by |rJG4IHzWf) (:text |:rule1001)
|h $ %{} :Leaf (:at 1730556102131) (:by |rJG4IHzWf) (:text "|\"rule1001")
|l $ %{} :Leaf (:at 1713461169806) (:by |rJG4IHzWf) (:text |:dark)
|threshold $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1709145122009) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709145144404) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1709145122009) (:by |rJG4IHzWf) (:text |threshold)
|h $ %{} :Expr (:at 1709145122009) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709145149293) (:by |rJG4IHzWf) (:text |js/parseFloat)
|b $ %{} :Expr (:at 1709145151331) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709145155765) (:by |rJG4IHzWf) (:text |or)
|b $ %{} :Expr (:at 1709145158533) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709145166013) (:by |rJG4IHzWf) (:text |get-env)
|b $ %{} :Leaf (:at 1709145163826) (:by |rJG4IHzWf) (:text "|\"threshold")
|h $ %{} :Leaf (:at 1709145170193) (:by |rJG4IHzWf) (:text "|\"0.016")
|use-gamepad? $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1709145115022) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709145132175) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1709145130497) (:by |rJG4IHzWf) (:text |use-gamepad?)
|h $ %{} :Expr (:at 1709145115022) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709145135535) (:by |rJG4IHzWf) (:text |get-env)
|b $ %{} :Leaf (:at 1709145137508) (:by |rJG4IHzWf) (:text "|\"gamepad")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1527788237503) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |ns)
|j $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |app.config)
|n $ %{} :Expr (:at 1699810338569) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699810339974) (:by |rJG4IHzWf) (:text |:require)
|b $ %{} :Expr (:at 1699810341728) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699810344079) (:by |rJG4IHzWf) (:text |app.schema)
|b $ %{} :Leaf (:at 1699810352776) (:by |rJG4IHzWf) (:text |:refer)
|h $ %{} :Expr (:at 1699810350705) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699810348828) (:by |rJG4IHzWf) (:text |tabs)
|app.main $ %{} :FileEntry
:defs $ {}
|*instance-renderer $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1699549151317) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699549152792) (:by |rJG4IHzWf) (:text |defatom)
|b $ %{} :Leaf (:at 1699549151317) (:by |rJG4IHzWf) (:text |*instance-renderer)
|h $ %{} :Leaf (:at 1699549154898) (:by |rJG4IHzWf) (:text |nil)
|*reel $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1610792986987) (:by |rJG4IHzWf) (:text |defatom)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507399777531) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1507399778895) (:by |root) (:text |->)
|T $ %{} :Leaf (:at 1507399776350) (:by |root) (:text |reel-schema/reel)
|j $ %{} :Expr (:at 1507399779656) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399781682) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1507401405076) (:by |root) (:text |:base)
|r $ %{} :Leaf (:at 1507399787471) (:by |root) (:text |schema/store)
|r $ %{} :Expr (:at 1507399779656) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399781682) (:by |root) (:text |assoc)
|j $ %{} :Leaf (:at 1507399793097) (:by |root) (:text |:store)
|r $ %{} :Leaf (:at 1507399787471) (:by |root) (:text |schema/store)
|*t $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1699549333819) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699549335181) (:by |rJG4IHzWf) (:text |defatom)
|b $ %{} :Leaf (:at 1699549333819) (:by |rJG4IHzWf) (:text |*t)
|h $ %{} :Leaf (:at 1699549337106) (:by |rJG4IHzWf) (:text |0)
|canvas $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1699549095683) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699549095683) (:by |rJG4IHzWf) (:text |def)
|b $ %{} :Leaf (:at 1699549095683) (:by |rJG4IHzWf) (:text |canvas)
|h $ %{} :Expr (:at 1699549095683) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699549106012) (:by |rJG4IHzWf) (:text |js/document.querySelector)
|b $ %{} :Leaf (:at 1699549107415) (:by |rJG4IHzWf) (:text "|\"canvas")
|dispatch! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |dispatch!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |op)
|s $ %{} :Expr (:at 1709576658992) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576660516) (:by |rJG4IHzWf) (:text |hint-fn)
|b $ %{} :Leaf (:at 1709576661253) (:by |rJG4IHzWf) (:text |async)
|t $ %{} :Expr (:at 1547437686766) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1547437687530) (:by |root) (:text |when)
|L $ %{} :Expr (:at 1584874661674) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1584874662518) (:by |rJG4IHzWf) (:text |and)
|T $ %{} :Leaf (:at 1547437691006) (:by |root) (:text |config/dev?)
|j $ %{} :Expr (:at 1584874663522) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1584874664551) (:by |rJG4IHzWf) (:text |not=)
|j $ %{} :Leaf (:at 1584874665829) (:by |rJG4IHzWf) (:text |op)
|r $ %{} :Leaf (:at 1584874671745) (:by |rJG4IHzWf) (:text |:states)
|T $ %{} :Expr (:at 1518156274050) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1692546015701) (:by |rJG4IHzWf) (:text |js/console.log)
|r $ %{} :Leaf (:at 1547437698992) (:by |root) (:text "|\"Dispatch:")
|v $ %{} :Leaf (:at 1518156280471) (:by |root) (:text |op)
|v $ %{} :Expr (:at 1584780634192) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |reset!)
|j $ %{} :Leaf (:at 1507399899641) (:by |root) (:text |*reel)
|r $ %{} :Expr (:at 1507399884621) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507399887573) (:by |root) (:text |reel-updater)
|j $ %{} :Leaf (:at 1507399888500) (:by |root) (:text |updater)
|r $ %{} :Leaf (:at 1507399891576) (:by |root) (:text |@*reel)
|v $ %{} :Leaf (:at 1507399892687) (:by |root) (:text |op)
|w $ %{} :Expr (:at 1699551268289) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699551273449) (:by |rJG4IHzWf) (:text |tag-match)
|b $ %{} :Leaf (:at 1699551278048) (:by |rJG4IHzWf) (:text |op)
|h $ %{} :Expr (:at 1699551278457) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1699551278567) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699551280755) (:by |rJG4IHzWf) (:text |:tab)
|b $ %{} :Leaf (:at 1699551281330) (:by |rJG4IHzWf) (:text |t)
|h $ %{} :Leaf (:at 1710264034178) (:by |rJG4IHzWf) (:text |theme)
|h $ %{} :Expr (:at 1709576830346) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576830346) (:by |rJG4IHzWf) (:text |set-renderer!)
|b $ %{} :Expr (:at 1709576830346) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576830346) (:by |rJG4IHzWf) (:text |:tab)
|b $ %{} :Expr (:at 1709576830346) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576830346) (:by |rJG4IHzWf) (:text |:store)
|b $ %{} :Leaf (:at 1709576830346) (:by |rJG4IHzWf) (:text |@*reel)
|l $ %{} :Expr (:at 1699551284501) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699551286230) (:by |rJG4IHzWf) (:text |_)
|b $ %{} :Expr (:at 1710264044983) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710264047461) (:by |rJG4IHzWf) (:text |eprintln)
|b $ %{} :Leaf (:at 1710264051394) (:by |rJG4IHzWf) (:text "|\"unknown op:")
|h $ %{} :Leaf (:at 1710264050308) (:by |rJG4IHzWf) (:text |op)
|main! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |defn)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |main!)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|s $ %{} :Expr (:at 1699549079805) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699549081940) (:by |rJG4IHzWf) (:text |hint-fn)
|b $ %{} :Leaf (:at 1699549082855) (:by |rJG4IHzWf) (:text |async)
|sT $ %{} :Expr (:at 1699549087828) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1699549093348) (:by |rJG4IHzWf) (:text |js-await)
|T $ %{} :Expr (:at 1699549083833) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699549084204) (:by |rJG4IHzWf) (:text |setupInitials)
|b $ %{} :Leaf (:at 1699549095308) (:by |rJG4IHzWf) (:text |canvas)
|sj $ %{} :Expr (:at 1699814606394) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1699814609041) (:by |rJG4IHzWf) (:text |set!)
|T $ %{} :Leaf (:at 1699814606871) (:by |rJG4IHzWf) (:text |js/window.skipComputing)
|b $ %{} :Leaf (:at 1700071263640) (:by |rJG4IHzWf) (:text |config/skip-rendering?)
|t $ %{} :Expr (:at 1544874433785) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544874434638) (:by |rJG4IHzWf) (:text |println)
|j $ %{} :Leaf (:at 1544874509800) (:by |rJG4IHzWf) (:text "|\"Running mode:")
|r $ %{} :Expr (:at 1544874440404) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544874440190) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1544874446442) (:by |rJG4IHzWf) (:text |config/dev?)
|r $ %{} :Leaf (:at 1544874449063) (:by |rJG4IHzWf) (:text "|\"dev")
|v $ %{} :Leaf (:at 1544874452316) (:by |rJG4IHzWf) (:text "|\"release")
|v $ %{} :Expr (:at 1636914348413) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1636914349962) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1636914351563) (:by |rJG4IHzWf) (:text |config/dev?)
|r $ %{} :Expr (:at 1636914352112) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1636914358071) (:by |rJG4IHzWf) (:text |load-console-formatter!)
|w $ %{} :Expr (:at 1699550910012) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699550910012) (:by |rJG4IHzWf) (:text |render-app!)
|y $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |add-watch)
|j $ %{} :Leaf (:at 1507399915531) (:by |root) (:text |*reel)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |:changes)
|v $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |fn)
|j $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1612280609284) (:by |rJG4IHzWf) (:text |reel)
|j $ %{} :Leaf (:at 1612280610651) (:by |rJG4IHzWf) (:text |prev)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |render-app!)
|yD $ %{} :Expr (:at 1507461684494) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1507461739167) (:by |root) (:text |listen-devtools!)
|j $ %{} :Leaf (:at 1624007376825) (:by |rJG4IHzWf) (:text ||k)
|r $ %{} :Leaf (:at 1507461693919) (:by |root) (:text |dispatch!)
|yL $ %{} :Expr (:at 1518157357847) (:by |root)
:data $ {}
|L $ %{} :Leaf (:at 1699779623799) (:by |rJG4IHzWf) (:text |;)
|j $ %{} :Leaf (:at 1646150136497) (:by |rJG4IHzWf) (:text |js/window.addEventListener)
|r $ %{} :Leaf (:at 1518157458163) (:by |root) (:text ||beforeunload)
|v $ %{} :Expr (:at 1612344221583) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612344222204) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1612344222530) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612344223520) (:by |rJG4IHzWf) (:text |event)
|T $ %{} :Expr (:at 1612344224533) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!)
|yM $ %{} :Expr (:at 1518157357847) (:by |root)
:data $ {}
|L $ %{} :Leaf (:at 1699779623181) (:by |rJG4IHzWf) (:text |;)
|j $ %{} :Leaf (:at 1646150136497) (:by |rJG4IHzWf) (:text |js/window.addEventListener)
|r $ %{} :Leaf (:at 1695833113543) (:by |rJG4IHzWf) (:text ||visibilitychange)
|v $ %{} :Expr (:at 1612344221583) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1612344222204) (:by |rJG4IHzWf) (:text |fn)
|L $ %{} :Expr (:at 1612344222530) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1612344223520) (:by |rJG4IHzWf) (:text |event)
|T $ %{} :Expr (:at 1695833124329) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1695833125950) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1695833126511) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1695833145858) (:by |rJG4IHzWf) (:text |=)
|L $ %{} :Leaf (:at 1695833179425) (:by |rJG4IHzWf) (:text "|\"hidden")
|T $ %{} :Leaf (:at 1695833167249) (:by |rJG4IHzWf) (:text |js/document.visibilityState)
|T $ %{} :Expr (:at 1612344224533) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!)
|yP $ %{} :Expr (:at 1518157492640) (:by |root)
:data $ {}
|D $ %{} :Leaf (:at 1699779622204) (:by |rJG4IHzWf) (:text |;)
|T $ %{} :Leaf (:at 1518157495438) (:by |root) (:text |let)
|j $ %{} :Expr (:at 1518157495644) (:by |root)
:data $ {}
|T $ %{} :Expr (:at 1518157495826) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157496930) (:by |root) (:text |raw)
|j $ %{} :Expr (:at 1518157497615) (:by |root)
:data $ {}
|j $ %{} :Leaf (:at 1646150065132) (:by |rJG4IHzWf) (:text |js/localStorage.getItem)
|r $ %{} :Expr (:at 1518157506313) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1544956709260) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1527788293499) (:by |root) (:text |config/site)
|r $ %{} :Expr (:at 1518157514334) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1533919640958) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Expr (:at 1518157515117) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157515786) (:by |root) (:text |some?)
|j $ %{} :Leaf (:at 1518157516878) (:by |root) (:text |raw)
|r $ %{} :Expr (:at 1518157521635) (:by |root)
:data $ {}
|T $ %{} :Leaf (:at 1518157523818) (:by |root) (:text |dispatch!)
|j $ %{} :Expr (:at 1688397806134) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1688397806833) (:by |rJG4IHzWf) (:text |::)
|T $ %{} :Leaf (:at 1518157669936) (:by |root) (:text |:hydrate-storage)
|b $ %{} :Expr (:at 1688397811073) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1688397811073) (:by |rJG4IHzWf) (:text |parse-cirru-edn)
|b $ %{} :Leaf (:at 1688397811073) (:by |rJG4IHzWf) (:text |raw)
|zJ $ %{} :Expr (:at 1709576900393) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1709576902286) (:by |rJG4IHzWf) (:text |js-await)
|T $ %{} :Expr (:at 1709576809341) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576815976) (:by |rJG4IHzWf) (:text |set-renderer!)
|b $ %{} :Expr (:at 1709576820100) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576820100) (:by |rJG4IHzWf) (:text |:tab)
|b $ %{} :Expr (:at 1709576820100) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576820100) (:by |rJG4IHzWf) (:text |:store)
|b $ %{} :Leaf (:at 1709576820100) (:by |rJG4IHzWf) (:text |@*reel)
|zP $ %{} :Expr (:at 1699551087579) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576524471) (:by |rJG4IHzWf) (:text |render-loop!)
|zT $ %{} :Expr (:at 1710004820748) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710004821098) (:by |rJG4IHzWf) (:text |listenShaderError)
|b $ %{} :Expr (:at 1710004821762) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710004821992) (:by |rJG4IHzWf) (:text |fn)
|b $ %{} :Expr (:at 1710004822999) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710004824645) (:by |rJG4IHzWf) (:text |err)
|h $ %{} :Expr (:at 1710004825526) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710004825885) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Expr (:at 1710004826785) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1710004827889) (:by |rJG4IHzWf) (:text |some?)
|T $ %{} :Leaf (:at 1710004826217) (:by |rJG4IHzWf) (:text |err)
|h $ %{} :Expr (:at 1710004829911) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710005161675) (:by |rJG4IHzWf) (:text |hud!)
|X $ %{} :Leaf (:at 1710005176575) (:by |rJG4IHzWf) (:text "|\"error")
|b $ %{} :Leaf (:at 1710004836276) (:by |rJG4IHzWf) (:text |err)
|zY $ %{} :Expr (:at 1709576498501) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576498501) (:by |rJG4IHzWf) (:text |println)
|b $ %{} :Leaf (:at 1709576498501) (:by |rJG4IHzWf) (:text "||App started.")
|mount-target $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|T $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |def)
|j $ %{} :Leaf (:at 1499755354983) (:by |root) (:text |mount-target)
|r $ %{} :Expr (:at 1499755354983) (:by nil)
:data $ {}
|j $ %{} :Leaf (:at 1695659910770) (:by |rJG4IHzWf) (:text |js/document.querySelector)
|r $ %{} :Leaf (:at 1499755354983) (:by |root) (:text ||.app)
|persist-storage! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919517365) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!)
|n $ %{} :Expr (:at 1646150052705) (:by |rJG4IHzWf)
:data $ {}
|r $ %{} :Expr (:at 1646150152124) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1695833186592) (:by |rJG4IHzWf) (:text |println)
|b $ %{} :Leaf (:at 1695833194980) (:by |rJG4IHzWf) (:text "|\"Saved at")
|e $ %{} :Expr (:at 1695833205162) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1695833211484) (:by |rJG4IHzWf) (:text |.!toISOString)
|T $ %{} :Expr (:at 1695833196620) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1695833204629) (:by |rJG4IHzWf) (:text |new)
|T $ %{} :Leaf (:at 1695833201386) (:by |rJG4IHzWf) (:text |js/Date)
|v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|j $ %{} :Leaf (:at 1646150150852) (:by |rJG4IHzWf) (:text |js/localStorage.setItem)
|r $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1544956703087) (:by |rJG4IHzWf) (:text |:storage-key)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |config/site)
|v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1624469402829) (:by |rJG4IHzWf) (:text |format-cirru-edn)
|j $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |:store)
|j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |@*reel)
|pick-renderer $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1699550466340) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699550466340) (:by |rJG4IHzWf) (:text |defn)
|b $ %{} :Leaf (:at 1709576689264) (:by |rJG4IHzWf) (:text |pick-renderer)
|h $ %{} :Expr (:at 1699550466340) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1699550470192) (:by |rJG4IHzWf) (:text |tab)
|k $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |case-default)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |tab)
|h $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |do)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |eprintln)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text "|\"unknown tab:")
|h $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |tab)
|h $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |fireworks/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|l $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:fireworks)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |fireworks/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|o $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:lorenz)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |lorenz/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|q $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:aizawa)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |aizawa/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|s $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:fourwing)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |fourwing/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|t $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:fractal)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |fractal/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|u $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:collision)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |collision/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|v $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:bounce)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |bounce/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|w $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:bounce-trail)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |bounce-trail/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|x $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:feday)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |feday/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|y $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:bifurcation)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |bifurcation/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|z $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:ball-spin)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |ball-spin/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zD $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:lifegame)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |lifegame/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zP $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:lifegame-trail)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |lifegame-trail/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zY $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:orbit-spark)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |orbit-spark/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|ze $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:chen)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |chen/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zj $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:sprott)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |sprott/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zn $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:lorenz83)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |lorenz-83/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zq $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:orbits)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |orbits/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zr $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461307605) (:by |rJG4IHzWf) (:text |:orbits2)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1713461310274) (:by |rJG4IHzWf) (:text |orbits-2/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zs $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:lamps)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |lamps/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zt $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |:debug-grid)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |debug-grid/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zu $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710063578040) (:by |rJG4IHzWf) (:text |:den-tsucs)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710063576896) (:by |rJG4IHzWf) (:text |den-tsucs/loadRenderer)
|b $ %{} :Leaf (:at 1709576589750) (:by |rJG4IHzWf) (:text |canvas)
|zv $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1710175451854) (:by |rJG4IHzWf) (:text |:bouali)
|b $ %{} :Expr (:at 1709576589750) (:by |rJG4IHzWf)
:data $ {}