-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
2376 lines (2375 loc) · 172 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 |pointed-prompt)
:configs $ {} (:compact-output? true) (:extension |.cljs) (:init-fn |pointed-prompt.app.main/main!) (:output |src) (:port 6001) (:reload-fn |pointed-prompt.app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.7)
:modules $ []
:entries $ {}
:files $ {}
|pointed-prompt.app.main $ %{} :FileEntry
:defs $ {}
|listen! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1623776277341) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776278932) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1623776277341) (:by |rJG4IHzWf) (:text |listen!)
|r $ %{} :Expr (:at 1623776277341) (:by |rJG4IHzWf)
:data $ {}
|v $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |.-onclick)
|j $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |js/window)
|r $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |event)
|r $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |js/console.log)
|j $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |event)
|v $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |.!stopPropagation)
|j $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |event)
|x $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |prompt-at!)
|j $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |.-pageX)
|j $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |event)
|r $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |.-pageY)
|j $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |event)
|r $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |:textarea?)
|j $ %{} :Expr (:at 1623778126461) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778127312) (:by |rJG4IHzWf) (:text |>)
|j $ %{} :Expr (:at 1623778129072) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1642519582878) (:by |rJG4IHzWf) (:text |js/Math.random)
|j $ %{} :Leaf (:at 1623778130341) (:by |rJG4IHzWf) (:text |1)
|r $ %{} :Leaf (:at 1623778131929) (:by |rJG4IHzWf) (:text |0.5)
|v $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |content)
|r $ %{} :Expr (:at 1623776280674) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |js/console.log)
|j $ %{} :Leaf (:at 1623776280674) (:by |rJG4IHzWf) (:text |content)
|x $ %{} :Expr (:at 1623778778834) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778780678) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1623778785325) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778796206) (:by |rJG4IHzWf) (:text |.-clearPrompt)
|T $ %{} :Leaf (:at 1623778784092) (:by |rJG4IHzWf) (:text |js/window)
|r $ %{} :Leaf (:at 1623778788141) (:by |rJG4IHzWf) (:text |clear-prompt!)
|main! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1548266583359) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1548266583359) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1548266583359) (:by |rJG4IHzWf) (:text |main!)
|r $ %{} :Expr (:at 1548266583359) (:by |rJG4IHzWf)
:data $ {}
|x5 $ %{} :Expr (:at 1619604279980) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1619604280258) (:by |rJG4IHzWf) (:text |load-console-formatter!)
|xH $ %{} :Expr (:at 1623776292194) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776292194) (:by |rJG4IHzWf) (:text |listen!)
|yT $ %{} :Expr (:at 1573356701317) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1573356701317) (:by |rJG4IHzWf) (:text |println)
|j $ %{} :Leaf (:at 1573356701317) (:by |rJG4IHzWf) (:text "|\"App Started")
|reload! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1548266585003) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1548266585003) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1548266585003) (:by |rJG4IHzWf) (:text |reload!)
|r $ %{} :Expr (:at 1548266585003) (:by |rJG4IHzWf)
:data $ {}
|t $ %{} :Expr (:at 1623776284941) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623776286222) (:by |rJG4IHzWf) (:text |listen!)
|v $ %{} :Expr (:at 1548266587906) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1548266588778) (:by |rJG4IHzWf) (:text |println)
|j $ %{} :Leaf (:at 1612598589710) (:by |rJG4IHzWf) (:text "|\"Code updated.")
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1548266580449) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1548266580449) (:by |rJG4IHzWf) (:text |ns)
|j $ %{} :Leaf (:at 1548266580449) (:by |rJG4IHzWf) (:text |pointed-prompt.app.main)
|r $ %{} :Expr (:at 1548267234269) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1548267234910) (:by |rJG4IHzWf) (:text |:require)
|j $ %{} :Expr (:at 1623755948556) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623755955004) (:by |rJG4IHzWf) (:text |pointed-prompt.core)
|j $ %{} :Leaf (:at 1623755955748) (:by |rJG4IHzWf) (:text |:refer)
|r $ %{} :Expr (:at 1623755956353) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756698321) (:by |rJG4IHzWf) (:text |prompt-at!)
|j $ %{} :Leaf (:at 1623778806457) (:by |rJG4IHzWf) (:text |clear-prompt!)
|pointed-prompt.core $ %{} :FileEntry
:defs $ {}
|*box-root $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1623756517629) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756521063) (:by |rJG4IHzWf) (:text |defatom)
|j $ %{} :Leaf (:at 1623756517629) (:by |rJG4IHzWf) (:text |*box-root)
|r $ %{} :Leaf (:at 1623756522649) (:by |rJG4IHzWf) (:text |nil)
|clear-prompt! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1623778624519) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778624519) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1623778624519) (:by |rJG4IHzWf) (:text |clear-prompt!)
|r $ %{} :Expr (:at 1623778624519) (:by |rJG4IHzWf)
:data $ {}
|v $ %{} :Expr (:at 1623778635353) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778700214) (:by |rJG4IHzWf) (:text |if)
|b $ %{} :Expr (:at 1623778702948) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778703763) (:by |rJG4IHzWf) (:text |some?)
|j $ %{} :Leaf (:at 1623778705602) (:by |rJG4IHzWf) (:text |@*box-root)
|j $ %{} :Expr (:at 1623778718110) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778719275) (:by |rJG4IHzWf) (:text |let)
|T $ %{} :Expr (:at 1623778720500) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1623778661202) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778662471) (:by |rJG4IHzWf) (:text |created)
|j $ %{} :Expr (:at 1623778681179) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778681881) (:by |rJG4IHzWf) (:text |if)
|L $ %{} :Expr (:at 1623778687566) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778688475) (:by |rJG4IHzWf) (:text |some?)
|j $ %{} :Leaf (:at 1623778714515) (:by |rJG4IHzWf) (:text |@*box-root)
|T $ %{} :Expr (:at 1623778666201) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778980685) (:by |rJG4IHzWf) (:text |js/parseFloat)
|T $ %{} :Expr (:at 1623778664914) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778664914) (:by |rJG4IHzWf) (:text |.-createdTime)
|j $ %{} :Expr (:at 1623778664914) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778664914) (:by |rJG4IHzWf) (:text |.-dataset)
|j $ %{} :Leaf (:at 1623778715849) (:by |rJG4IHzWf) (:text |@*box-root)
|j $ %{} :Leaf (:at 1623778694585) (:by |rJG4IHzWf) (:text |0)
|j $ %{} :Expr (:at 1623778731290) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778733715) (:by |rJG4IHzWf) (:text |duration)
|j $ %{} :Expr (:at 1623778734145) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778734703) (:by |rJG4IHzWf) (:text |-)
|j $ %{} :Expr (:at 1623778735871) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778742164) (:by |rJG4IHzWf) (:text |js/window.performance.now)
|r $ %{} :Leaf (:at 1623778744915) (:by |rJG4IHzWf) (:text |created)
|j $ %{} :Expr (:at 1623778721371) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778748138) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1623778748365) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778748689) (:by |rJG4IHzWf) (:text |>)
|f $ %{} :Leaf (:at 1623778955331) (:by |rJG4IHzWf) (:text |duration)
|r $ %{} :Leaf (:at 1623778859043) (:by |rJG4IHzWf) (:text |100)
|r $ %{} :Expr (:at 1623778759443) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778770234) (:by |rJG4IHzWf) (:text |.!remove)
|T $ %{} :Leaf (:at 1623778763495) (:by |rJG4IHzWf) (:text |@*box-root)
|prompt-at! $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1623756691456) (:by |rJG4IHzWf) (:text |prompt-at!)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623755770389) (:by |rJG4IHzWf) (:text |position)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |options)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |cb)
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |let)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/document.createElement)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"div")
|X $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403984853) (:by |rJG4IHzWf) (:text |control)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/document.createElement)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"div")
|b $ %{} :Expr (:at 1587288920955) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288923004) (:by |rJG4IHzWf) (:text |textarea?)
|j $ %{} :Expr (:at 1587288929167) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288929167) (:by |rJG4IHzWf) (:text |:textarea?)
|j $ %{} :Leaf (:at 1587288929167) (:by |rJG4IHzWf) (:text |options)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/document.createElement)
|j $ %{} :Expr (:at 1587288908261) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1587288910960) (:by |rJG4IHzWf) (:text |if)
|J $ %{} :Leaf (:at 1587288927552) (:by |rJG4IHzWf) (:text |textarea?)
|P $ %{} :Leaf (:at 1587288916909) (:by |rJG4IHzWf) (:text "|\"textarea")
|T $ %{} :Leaf (:at 1587288909768) (:by |rJG4IHzWf) (:text "|\"input")
|n $ %{} :Expr (:at 1588403753366) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403754900) (:by |rJG4IHzWf) (:text |submit)
|j $ %{} :Expr (:at 1588403761996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403761996) (:by |rJG4IHzWf) (:text |js/document.createElement)
|j $ %{} :Leaf (:at 1588403762994) (:by |rJG4IHzWf) (:text "|\"a")
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Expr (:at 1623755772610) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623755773861) (:by |rJG4IHzWf) (:text |nth)
|j $ %{} :Leaf (:at 1623755775299) (:by |rJG4IHzWf) (:text |position)
|r $ %{} :Leaf (:at 1623755775871) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |y)
|j $ %{} :Expr (:at 1623755777979) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623755778220) (:by |rJG4IHzWf) (:text |nth)
|j $ %{} :Leaf (:at 1623755780382) (:by |rJG4IHzWf) (:text |position)
|r $ %{} :Leaf (:at 1623755780968) (:by |rJG4IHzWf) (:text |1)
|x $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |close)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/document.createElement)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"span")
|y $ %{} :Expr (:at 1623777432850) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623777434599) (:by |rJG4IHzWf) (:text |width)
|j $ %{} :Expr (:at 1623777435693) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623777435693) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1623777435693) (:by |rJG4IHzWf) (:text |textarea?)
|r $ %{} :Leaf (:at 1623777442923) (:by |rJG4IHzWf) (:text |320)
|v $ %{} :Leaf (:at 1623777443588) (:by |rJG4IHzWf) (:text |240)
|l $ %{} :Expr (:at 1623756542747) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756543017) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1623756543413) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756545575) (:by |rJG4IHzWf) (:text |some?)
|j $ %{} :Leaf (:at 1623756547387) (:by |rJG4IHzWf) (:text |@*box-root)
|r $ %{} :Expr (:at 1623756552797) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756554900) (:by |rJG4IHzWf) (:text |.!remove)
|j $ %{} :Leaf (:at 1623756555397) (:by |rJG4IHzWf) (:text |@*box-root)
|n $ %{} :Expr (:at 1623756537677) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756525988) (:by |rJG4IHzWf) (:text |reset!)
|j $ %{} :Leaf (:at 1623756568419) (:by |rJG4IHzWf) (:text |*box-root)
|r $ %{} :Leaf (:at 1623756536133) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476175140) (:by |rJG4IHzWf) (:text |.!appendChild)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Leaf (:at 1588403995649) (:by |rJG4IHzWf) (:text |input)
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476176423) (:by |rJG4IHzWf) (:text |.!appendChild)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Leaf (:at 1588403999155) (:by |rJG4IHzWf) (:text |control)
|vT $ %{} :Expr (:at 1588403990529) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476177693) (:by |rJG4IHzWf) (:text |.!appendChild)
|j $ %{} :Leaf (:at 1588404002947) (:by |rJG4IHzWf) (:text |control)
|r $ %{} :Leaf (:at 1588404003723) (:by |rJG4IHzWf) (:text |close)
|w $ %{} :Expr (:at 1588403599852) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403603062) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Leaf (:at 1588403604066) (:by |rJG4IHzWf) (:text |textarea?)
|n $ %{} :Expr (:at 1588404073880) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476214888) (:by |rJG4IHzWf) (:text |.!appendChild)
|j $ %{} :Leaf (:at 1588404080445) (:by |rJG4IHzWf) (:text |control)
|r $ %{} :Leaf (:at 1588404082250) (:by |rJG4IHzWf) (:text |submit)
|r $ %{} :Expr (:at 1588403875543) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1588403876682) (:by |rJG4IHzWf) (:text |set!)
|T $ %{} :Expr (:at 1588403771664) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1588403883022) (:by |rJG4IHzWf) (:text |.-innerText)
|T $ %{} :Leaf (:at 1588403772264) (:by |rJG4IHzWf) (:text |submit)
|j $ %{} :Leaf (:at 1588403886845) (:by |rJG4IHzWf) (:text "|\"Ok")
|v $ %{} :Expr (:at 1588403795511) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476217052) (:by |rJG4IHzWf) (:text |.!appendChild)
|j $ %{} :Leaf (:at 1588403800431) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Leaf (:at 1588404010833) (:by |rJG4IHzWf) (:text |control)
|x $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-style)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |style->string)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |merge)
|j $ %{} :Leaf (:at 1622533807255) (:by |rJG4IHzWf) (:text |layout-row)
|r $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |style-container)
|s $ %{} :Expr (:at 1588403672812) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403672812) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1588403672812) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403672812) (:by |rJG4IHzWf) (:text |:top)
|j $ %{} :Leaf (:at 1588403672812) (:by |rJG4IHzWf) (:text |y)
|v $ %{} :Expr (:at 1588403672812) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403672812) (:by |rJG4IHzWf) (:text |:left)
|j $ %{} :Leaf (:at 1588403672812) (:by |rJG4IHzWf) (:text |x)
|x $ %{} :Expr (:at 1623777451156) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623777450938) (:by |rJG4IHzWf) (:text |:width)
|j $ %{} :Leaf (:at 1623777451821) (:by |rJG4IHzWf) (:text |width)
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |<)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |-)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/window.innerWidth)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1623777463451) (:by |rJG4IHzWf) (:text |width)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |:left)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |nil)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |:right)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |8)
|x $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |<)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |-)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/window.innerHeight)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |y)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |70)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |:top)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |nil)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |:bottom)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |8)
|xT $ %{} :Expr (:at 1623778572709) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778574959) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1623778584520) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778591973) (:by |rJG4IHzWf) (:text |.-createdTime)
|T $ %{} :Expr (:at 1623778576244) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778578094) (:by |rJG4IHzWf) (:text |.-dataset)
|j $ %{} :Leaf (:at 1623778580676) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Expr (:at 1623778924736) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1623778925623) (:by |rJG4IHzWf) (:text |str)
|T $ %{} :Expr (:at 1623778594859) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623778601415) (:by |rJG4IHzWf) (:text |js/window.performance.now)
|y $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-style)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |style->string)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |merge)
|j $ %{} :Leaf (:at 1622533819337) (:by |rJG4IHzWf) (:text |layout-expand)
|r $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |style-input)
|t $ %{} :Expr (:at 1587288945267) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288946935) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1587288950628) (:by |rJG4IHzWf) (:text |textarea?)
|r $ %{} :Expr (:at 1587288950945) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288951967) (:by |rJG4IHzWf) (:text |{})
|r $ %{} :Expr (:at 1587288959833) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288960971) (:by |rJG4IHzWf) (:text |:height)
|j $ %{} :Leaf (:at 1587289031568) (:by |rJG4IHzWf) (:text |80)
|v $ %{} :Expr (:at 1587288199334) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288201110) (:by |rJG4IHzWf) (:text |:style)
|j $ %{} :Leaf (:at 1587288221276) (:by |rJG4IHzWf) (:text |options)
|yD $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-style)
|j $ %{} :Leaf (:at 1588404016799) (:by |rJG4IHzWf) (:text |control)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |style->string)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |merge)
|j $ %{} :Leaf (:at 1622533814850) (:by |rJG4IHzWf) (:text |layout-column)
|r $ %{} :Expr (:at 1588404028632) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588404029030) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1588404029263) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588404036366) (:by |rJG4IHzWf) (:text |:justify-content)
|j $ %{} :Leaf (:at 1588404039766) (:by |rJG4IHzWf) (:text |:space-evenly)
|yT $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-style)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |close)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |style->string)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |style-close)
|yj $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-placeholder)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |either)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |:placeholder)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |options)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"text...")
|yr $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-value)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |either)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587288067701) (:by |rJG4IHzWf) (:text |:initial)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |options)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"")
|yv $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-innerText)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |close)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"×")
|yw $ %{} :Expr (:at 1623756639797) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756647597) (:by |rJG4IHzWf) (:text |.!addEventListener)
|j $ %{} :Leaf (:at 1623756648867) (:by |rJG4IHzWf) (:text |root)
|r $ %{} :Leaf (:at 1623756651327) (:by |rJG4IHzWf) (:text "|\"click")
|v $ %{} :Expr (:at 1623756651623) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756651897) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1623756652177) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756652794) (:by |rJG4IHzWf) (:text |event)
|r $ %{} :Expr (:at 1623756653290) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756657307) (:by |rJG4IHzWf) (:text |.!stopPropagation)
|j $ %{} :Leaf (:at 1623756658422) (:by |rJG4IHzWf) (:text |event)
|yx $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476183361) (:by |rJG4IHzWf) (:text |.!addEventListener)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"keydown")
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |event)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Expr (:at 1587289214709) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1587289215844) (:by |rJG4IHzWf) (:text |and)
|T $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"Enter")
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-key)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |event)
|j $ %{} :Expr (:at 1587289216584) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587289219094) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Leaf (:at 1587289221854) (:by |rJG4IHzWf) (:text |textarea?)
|r $ %{} :Expr (:at 1587289227341) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1587289234170) (:by |rJG4IHzWf) (:text |.-metaKey)
|j $ %{} :Leaf (:at 1587289237492) (:by |rJG4IHzWf) (:text |event)
|v $ %{} :Leaf (:at 1587289242568) (:by |rJG4IHzWf) (:text |true)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |cb)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |.-value)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476196384) (:by |rJG4IHzWf) (:text |.!remove)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|t $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |when)
|j $ %{} :Expr (:at 1624362231444) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1624362231444) (:by |rJG4IHzWf) (:text |=)
|j $ %{} :Leaf (:at 1624362251986) (:by |rJG4IHzWf) (:text "|\"Escape")
|r $ %{} :Expr (:at 1624362231444) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1624362231444) (:by |rJG4IHzWf) (:text |.-key)
|j $ %{} :Leaf (:at 1624362231444) (:by |rJG4IHzWf) (:text |event)
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476196384) (:by |rJG4IHzWf) (:text |.!remove)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|v $ %{} :Expr (:at 1624350104764) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1624350065033) (:by |rJG4IHzWf) (:text |.!stopPropagation)
|j $ %{} :Leaf (:at 1624350105888) (:by |rJG4IHzWf) (:text |event)
|yy $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476181413) (:by |rJG4IHzWf) (:text |.!addEventListener)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |close)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"click")
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |event)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476193874) (:by |rJG4IHzWf) (:text |.!remove)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|yyD $ %{} :Expr (:at 1588403815413) (:by |rJG4IHzWf)
:data $ {}
|D $ %{} :Leaf (:at 1588403816247) (:by |rJG4IHzWf) (:text |when)
|L $ %{} :Leaf (:at 1588403819315) (:by |rJG4IHzWf) (:text |textarea?)
|P $ %{} :Expr (:at 1588403925402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403925402) (:by |rJG4IHzWf) (:text |set!)
|j $ %{} :Expr (:at 1588403925402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403925402) (:by |rJG4IHzWf) (:text |.-style)
|j $ %{} :Leaf (:at 1588403927747) (:by |rJG4IHzWf) (:text |submit)
|r $ %{} :Expr (:at 1588403925402) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403925402) (:by |rJG4IHzWf) (:text |style->string)
|j $ %{} :Leaf (:at 1588403929799) (:by |rJG4IHzWf) (:text |style-submit)
|T $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476184989) (:by |rJG4IHzWf) (:text |.!addEventListener)
|j $ %{} :Leaf (:at 1588403822696) (:by |rJG4IHzWf) (:text |submit)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text "|\"click")
|v $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |event)
|n $ %{} :Expr (:at 1588403833029) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403833029) (:by |rJG4IHzWf) (:text |cb)
|j $ %{} :Expr (:at 1588403833029) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403833029) (:by |rJG4IHzWf) (:text |.-value)
|j $ %{} :Leaf (:at 1588403833029) (:by |rJG4IHzWf) (:text |input)
|r $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476191599) (:by |rJG4IHzWf) (:text |.!remove)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|yyT $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476187640) (:by |rJG4IHzWf) (:text |.!appendChild)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |js/document.body)
|r $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |root)
|yyj $ %{} :Expr (:at 1586366343733) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622476189857) (:by |rJG4IHzWf) (:text |.!select)
|j $ %{} :Leaf (:at 1586366343733) (:by |rJG4IHzWf) (:text |input)
|style-close $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |style-close)
|r $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:margin-left)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |8)
|r $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text "|\"Helvetica, sans-serif")
|v $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |24)
|x $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:font-weight)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |100)
|y $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:color)
|j $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |80)
|v $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |80)
|yT $ %{} :Expr (:at 1588403651265) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1588403651265) (:by |rJG4IHzWf) (:text |:pointer)
|style-container $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |style-container)
|r $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:position)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:absolute)
|x $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text "|\"10px 12px")
|y $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:background-color)
|j $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |30)
|x $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |0.9)
|yT $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:border)
|j $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text "|\"1px solid ")
|r $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |0)
|r $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |0)
|v $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |30)
|yj $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:width)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |240)
|yr $ %{} :Expr (:at 1588403637996) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text |:border-radius)
|j $ %{} :Leaf (:at 1588403637996) (:by |rJG4IHzWf) (:text "|\"2px")
|style-input $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |style-input)
|r $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:outline)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:none)
|r $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1622533841893) (:by |rJG4IHzWf) (:text |font-normal)
|v $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:line-height)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text "|\"20px")
|x $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |14)
|y $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:padding)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text "|\"6px 8px")
|yT $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:width)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text "|\"100%")
|yj $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:border-radius)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text "|\"2px")
|yr $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:border)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:none)
|yv $ %{} :Expr (:at 1588403645765) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |:height)
|j $ %{} :Leaf (:at 1588403645765) (:by |rJG4IHzWf) (:text |28)
|style-submit $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1588403930188) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403930188) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1588403930188) (:by |rJG4IHzWf) (:text |style-submit)
|r $ %{} :Expr (:at 1588403930188) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403931606) (:by |rJG4IHzWf) (:text |{})
|j $ %{} :Expr (:at 1588403931961) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403933599) (:by |rJG4IHzWf) (:text |:margin-left)
|j $ %{} :Leaf (:at 1588403934864) (:by |rJG4IHzWf) (:text |8)
|r $ %{} :Expr (:at 1588403935436) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403936927) (:by |rJG4IHzWf) (:text |:color)
|j $ %{} :Expr (:at 1588403937196) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403938538) (:by |rJG4IHzWf) (:text |hsl)
|j $ %{} :Leaf (:at 1588403939565) (:by |rJG4IHzWf) (:text |200)
|r $ %{} :Leaf (:at 1588403939876) (:by |rJG4IHzWf) (:text |80)
|v $ %{} :Leaf (:at 1588403941665) (:by |rJG4IHzWf) (:text |80)
|v $ %{} :Expr (:at 1588403946983) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1588403947947) (:by |rJG4IHzWf) (:text |:cursor)
|j $ %{} :Leaf (:at 1588403949114) (:by |rJG4IHzWf) (:text |:pointer)
|x $ %{} :Expr (:at 1642519865418) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1642519866727) (:by |rJG4IHzWf) (:text |:font-size)
|j $ %{} :Leaf (:at 1642519872828) (:by |rJG4IHzWf) (:text |14)
|y $ %{} :Expr (:at 1642519878109) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1642519879931) (:by |rJG4IHzWf) (:text |:font-family)
|j $ %{} :Leaf (:at 1642519891347) (:by |rJG4IHzWf) (:text |font-normal)
:ns $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1612611077451) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366333855) (:by |rJG4IHzWf) (:text |ns)
|j $ %{} :Leaf (:at 1586366333855) (:by |rJG4IHzWf) (:text |pointed-prompt.core)
|r $ %{} :Expr (:at 1586366356688) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366356688) (:by |rJG4IHzWf) (:text |:require)
|r $ %{} :Expr (:at 1586366356688) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366356688) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1623756103871) (:by |rJG4IHzWf) (:text |pointed-prompt.util.styles)
|r $ %{} :Leaf (:at 1586366356688) (:by |rJG4IHzWf) (:text |:refer)
|v $ %{} :Expr (:at 1586366356688) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1586366356688) (:by |rJG4IHzWf) (:text |[])
|j $ %{} :Leaf (:at 1586366356688) (:by |rJG4IHzWf) (:text |hsl)
|r $ %{} :Leaf (:at 1622533602010) (:by |rJG4IHzWf) (:text |style->string)
|v $ %{} :Leaf (:at 1622533785466) (:by |rJG4IHzWf) (:text |layout-row)
|x $ %{} :Leaf (:at 1622533787484) (:by |rJG4IHzWf) (:text |layout-column)
|y $ %{} :Leaf (:at 1622533792777) (:by |rJG4IHzWf) (:text |layout-expand)
|yT $ %{} :Leaf (:at 1622533794161) (:by |rJG4IHzWf) (:text |font-code)
|yj $ %{} :Leaf (:at 1622533797173) (:by |rJG4IHzWf) (:text |font-normal)
|pointed-prompt.util.styles $ %{} :FileEntry
:defs $ {}
|dashed->camel $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |dashed->camel)
|r $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |.!replace)
|j $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |dashed-letter-pattern)
|v $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |fn)
|j $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |cc)
|j $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |pos)
|r $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |prop)
|r $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |.!toUpperCase)
|j $ %{} :Expr (:at 1623756941636) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |aget)
|j $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |cc)
|r $ %{} :Leaf (:at 1623756941636) (:by |rJG4IHzWf) (:text |1)
|dashed-letter-pattern $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1623756945044) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756945044) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1623756945044) (:by |rJG4IHzWf) (:text |dashed-letter-pattern)
|r $ %{} :Expr (:at 1623756958818) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623756959990) (:by |rJG4IHzWf) (:text |new)
|j $ %{} :Leaf (:at 1623756963275) (:by |rJG4IHzWf) (:text |js/RegExp)
|r $ %{} :Leaf (:at 1623756964572) (:by |rJG4IHzWf) (:text "|\"-[a-z]")
|v $ %{} :Leaf (:at 1623756965517) (:by |rJG4IHzWf) (:text "|\"g")
|escape-html $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |escape-html)
|r $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |text)
|v $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |nil?)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |text)
|r $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text "|\"")
|v $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |->)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |text)
|r $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623717284486) (:by |rJG4IHzWf) (:text |.replace)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text "||\"")
|r $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text ||")
|v $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623717286040) (:by |rJG4IHzWf) (:text |.replace)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text ||<)
|r $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text ||<)
|x $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623717288046) (:by |rJG4IHzWf) (:text |.replace)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text ||>)
|r $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text ||>)
|y $ %{} :Expr (:at 1622533667720) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1623717289939) (:by |rJG4IHzWf) (:text |.replace)
|j $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text |&newline)
|r $ %{} :Leaf (:at 1622533667720) (:by |rJG4IHzWf) (:text "|\" ")
|font-code $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1622533537554) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533537554) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1622533537554) (:by |rJG4IHzWf) (:text |font-code)
|r $ %{} :Leaf (:at 1622533537554) (:by |rJG4IHzWf) (:text "||Source Code Pro, Menlo, Ubuntu Mono, Consolas, monospace")
|font-normal $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1622533552515) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533552515) (:by |rJG4IHzWf) (:text |def)
|j $ %{} :Leaf (:at 1622533552515) (:by |rJG4IHzWf) (:text |font-normal)
|r $ %{} :Leaf (:at 1622533552515) (:by |rJG4IHzWf) (:text "||Hind, Helvatica, Arial, sans-serif")
|get-style-value $ %{} :CodeEntry (:doc |)
:code $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |defn)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |get-style-value)
|r $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |prop)
|v $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |cond)
|j $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |string?)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|r $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1685552711406) (:by |rJG4IHzWf) (:text |tag?)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |turn-string)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |number?)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|j $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |if)
|j $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533264308) (:by |rJG4IHzWf) (:text |.!test)
|j $ %{} :Leaf (:at 1622533262477) (:by |rJG4IHzWf) (:text |pattern-non-dimension-props)
|r $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |prop)
|r $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)
|v $ %{} :Expr (:at 1622533243195) (:by |rJG4IHzWf)
:data $ {}
|T $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |str)
|j $ %{} :Leaf (:at 1622533243195) (:by |rJG4IHzWf) (:text |x)