generated from calcit-lang/respo-calcit-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calcit.cirru
1745 lines (1744 loc) · 137 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:configs $ {} (:compact-output? true) (:extension |.cljs) (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1)
:modules $ [] |respo.calcit/compact.cirru |lilac/compact.cirru |memof/compact.cirru |respo-ui.calcit/compact.cirru |respo-markdown.calcit/compact.cirru |reel.calcit/compact.cirru
:entries $ {}
:ir $ {} (:package |app)
:files $ {}
|app.comp.container $ {}
:defs $ {}
|comp-char $ {} (:at 1622960173022) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960174947) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1622960173022) (:by |rJG4IHzWf) (:text |comp-char) (:type :leaf)
|r $ {} (:at 1622960173022) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960176968) (:by |rJG4IHzWf) (:text |code) (:type :leaf)
|x $ {} (:at 1622961959312) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961959850) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1622961960092) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961960241) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961966680) (:by |rJG4IHzWf) (:text |points) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |turn-codes) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|r $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |code) (:type :leaf)
|r $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1658751104860) (:by |rJG4IHzWf) (:text |section-by) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|v $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |.map) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |pair) (:type :leaf)
|r $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |+) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |*) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |2) (:type :leaf)
|r $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |first) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |pair) (:type :leaf)
|r $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |last) (:type :leaf)
|j $ {} (:at 1622961967130) (:by |rJG4IHzWf) (:text |pair) (:type :leaf)
|T $ {} (:at 1622961944980) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961953864) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622961970219) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961970867) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962069272) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962070831) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622962071029) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962073750) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962074028) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962074970) (:by |rJG4IHzWf) (:text |:display) (:type :leaf)
|j $ {} (:at 1622962077626) (:by |rJG4IHzWf) (:text |:inline-block) (:type :leaf)
|r $ {} (:at 1622962147567) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962150371) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1622962151005) (:by |rJG4IHzWf) (:text |18) (:type :leaf)
|v $ {} (:at 1622962163411) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962167946) (:by |rJG4IHzWf) (:text |:line-height) (:type :leaf)
|j $ {} (:at 1622962174655) (:by |rJG4IHzWf) (:text "|\"6px") (:type :leaf)
|x $ {} (:at 1622962191083) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962194313) (:by |rJG4IHzWf) (:text |:margin-right) (:type :leaf)
|j $ {} (:at 1622962597991) (:by |rJG4IHzWf) (:text |4) (:type :leaf)
|y $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:text |:box-shadow) (:type :leaf)
|j $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1622962542387) (:by |rJG4IHzWf) (:text "|\"0 0 2px ") (:type :leaf)
|r $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1622962530332) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|n $ {} (:at 1622961975901) (:by |rJG4IHzWf) (:text |&) (:type :leaf)
|r $ {} (:at 1622961974254) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961972190) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1622961973443) (:by |rJG4IHzWf) (:text |points) (:type :leaf)
|r $ {} (:at 1622961977196) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961977606) (:by |rJG4IHzWf) (:text |map) (:type :leaf)
|j $ {} (:at 1622961977967) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961978296) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622961978968) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961983520) (:by |rJG4IHzWf) (:text |point) (:type :leaf)
|r $ {} (:at 1622961988679) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961994080) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622961994309) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961994686) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961995886) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961999596) (:by |rJG4IHzWf) (:text |:class-name) (:type :leaf)
|j $ {} (:at 1622961999875) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962002325) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1622962020254) (:by |rJG4IHzWf) (:text "|\"cell cell-") (:type :leaf)
|r $ {} (:at 1622962010118) (:by |rJG4IHzWf) (:text |point) (:type :leaf)
|r $ {} (:at 1622962029430) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962031780) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622962032041) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962032368) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962033173) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962034882) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1622962036213) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|r $ {} (:at 1622962037453) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962038508) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1622962039219) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|v $ {} (:at 1622962046632) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962048233) (:by |rJG4IHzWf) (:text |:display) (:type :leaf)
|j $ {} (:at 1622962050356) (:by |rJG4IHzWf) (:text |:inline-block) (:type :leaf)
|comp-container $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1499755354983) (:by |root) (:text |comp-container) (:type :leaf)
|r $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1507461830530) (:by |root) (:text |reel) (:type :leaf)
|v $ {} (:at 1507461832154) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1507461833421) (:by |root) (:text |let) (:type :leaf)
|L $ {} (:at 1507461834351) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461834650) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461835738) (:by |root) (:text |store) (:type :leaf)
|j $ {} (:at 1507461836110) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461837276) (:by |root) (:text |:store) (:type :leaf)
|j $ {} (:at 1507461838285) (:by |root) (:text |reel) (:type :leaf)
|j $ {} (:at 1509727104820) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1509727105928) (:by |root) (:text |states) (:type :leaf)
|j $ {} (:at 1509727106316) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1509727107223) (:by |root) (:text |:states) (:type :leaf)
|j $ {} (:at 1509727108033) (:by |root) (:text |store) (:type :leaf)
|T $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |div) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |{}) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |:style) (:type :leaf)
|j $ {} (:at 1499755354983) (:type :expr)
:data $ {}
|T $ {} (:at 1499755354983) (:by |root) (:text |merge) (:type :leaf)
|j $ {} (:at 1521129814235) (:by |root) (:text |ui/global) (:type :leaf)
|n $ {} (:at 1622959239734) (:by |rJG4IHzWf) (:text |ui/fullscreen) (:type :leaf)
|r $ {} (:at 1622959200524) (:by |rJG4IHzWf) (:text |ui/column) (:type :leaf)
|k $ {} (:at 1622961277995) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961723795) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|T $ {} (:at 1622961280752) (:by |rJG4IHzWf) (:text |comp-header) (:type :leaf)
|l $ {} (:at 1622961667180) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961694682) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|T $ {} (:at 1622961670779) (:by |rJG4IHzWf) (:text |comp-messages) (:type :leaf)
|j $ {} (:at 1622961672877) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961673700) (:by |rJG4IHzWf) (:text |:messages) (:type :leaf)
|j $ {} (:at 1622961674381) (:by |rJG4IHzWf) (:text |store) (:type :leaf)
|r $ {} (:at 1622961729082) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961733132) (:by |rJG4IHzWf) (:text |memof-call) (:type :leaf)
|j $ {} (:at 1622961735478) (:by |rJG4IHzWf) (:text |comp-input) (:type :leaf)
|r $ {} (:at 1622961740055) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961740463) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|j $ {} (:at 1622961741274) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1622961743019) (:by |rJG4IHzWf) (:text |:input) (:type :leaf)
|x $ {} (:at 1521954055333) (:by |root) (:type :expr)
:data $ {}
|D $ {} (:at 1521954057510) (:by |root) (:text |when) (:type :leaf)
|L $ {} (:at 1521954059290) (:by |root) (:text |dev?) (:type :leaf)
|T $ {} (:at 1507461809635) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461815046) (:by |root) (:text |comp-reel) (:type :leaf)
|b $ {} (:at 1584780610581) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1584780611347) (:by |rJG4IHzWf) (:text |>>) (:type :leaf)
|T $ {} (:at 1509727101297) (:by |root) (:text |states) (:type :leaf)
|j $ {} (:at 1584780613268) (:by |rJG4IHzWf) (:text |:reel) (:type :leaf)
|j $ {} (:at 1507461840459) (:by |root) (:text |reel) (:type :leaf)
|r $ {} (:at 1507461840980) (:by |root) (:type :expr)
:data $ {}
|T $ {} (:at 1507461841342) (:by |root) (:text |{}) (:type :leaf)
|comp-header $ {} (:at 1622961281366) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961283520) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1622961281366) (:by |rJG4IHzWf) (:text |comp-header) (:type :leaf)
|r $ {} (:at 1622961281366) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|v $ {} (:at 1622961284919) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961284919) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622961284919) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961284919) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961287554) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961289035) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622961402748) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961408681) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|L $ {} (:at 1622961413653) (:by |rJG4IHzWf) (:text |ui/row-parted) (:type :leaf)
|T $ {} (:at 1622961289287) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961290230) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961290878) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961295533) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1622961327229) (:by |rJG4IHzWf) (:text "|\"4px 6px") (:type :leaf)
|r $ {} (:at 1622961301149) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961303556) (:by |rJG4IHzWf) (:text |:font-weight) (:type :leaf)
|j $ {} (:at 1622961305581) (:by |rJG4IHzWf) (:text |:bold) (:type :leaf)
|v $ {} (:at 1622961314444) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961317378) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1622961318089) (:by |rJG4IHzWf) (:text |16) (:type :leaf)
|x $ {} (:at 1622961332227) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961337826) (:by |rJG4IHzWf) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1622961338113) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961338910) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622961339281) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622961339567) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1622961347743) (:by |rJG4IHzWf) (:text |97) (:type :leaf)
|y $ {} (:at 1622961350029) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961354893) (:by |rJG4IHzWf) (:text |:border-bottom) (:type :leaf)
|j $ {} (:at 1622961355552) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961356080) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1622961358957) (:by |rJG4IHzWf) (:text "|\"1px solid ") (:type :leaf)
|r $ {} (:at 1622961360123) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961360462) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622961361250) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622961361535) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1622961362226) (:by |rJG4IHzWf) (:text |90) (:type :leaf)
|o $ {} (:at 1632654555853) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654556516) (:by |rJG4IHzWf) (:text |span) (:type :leaf)
|j $ {} (:at 1632654558353) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|t $ {} (:at 1632654593106) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1632654594474) (:by |rJG4IHzWf) (:text |span) (:type :leaf)
|L $ {} (:at 1632654594773) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654595106) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1632654596452) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654598221) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1632654598504) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654598764) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1632654599020) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654599242) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1632654600296) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1632654601035) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654611055) (:by |rJG4IHzWf) (:text |js/document.body.requestFullscreen) (:type :leaf)
|T $ {} (:at 1622961431414) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961432784) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1622961442247) (:by |rJG4IHzWf) (:text "|\"Sky Chat") (:type :leaf)
|r $ {} (:at 1632654565474) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654565854) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1632654566140) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654567761) (:by |rJG4IHzWf) (:text |:font-family) (:type :leaf)
|j $ {} (:at 1632654570419) (:by |rJG4IHzWf) (:text |ui/font-fancy) (:type :leaf)
|w $ {} (:at 1632654559752) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632654559752) (:by |rJG4IHzWf) (:text |span) (:type :leaf)
|j $ {} (:at 1632654559752) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|comp-input $ {} (:at 1622961747223) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961749251) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1622961747223) (:by |rJG4IHzWf) (:text |comp-input) (:type :leaf)
|r $ {} (:at 1622961747223) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961754963) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|v $ {} (:at 1622961768364) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961769356) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1622961770717) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961771925) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961773028) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|j $ {} (:at 1622961773223) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961775098) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1622961775861) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|T $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|j $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|j $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text |:data) (:type :leaf)
|j $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text |states) (:type :leaf)
|r $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1622961769905) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |ui/row-middle) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"6px 4px") (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |97) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:border-top) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"1px solid ") (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |90) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |textarea) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:value) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:placeholder) (:type :leaf)
|j $ {} (:at 1632659768524) (:by |rJG4IHzWf) (:text "|\"Message...") (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |ui/textarea) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:line-height) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"24px") (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:border) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:none) (:type :leaf)
|x $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:on-input) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:value) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|xT $ {} (:at 1622963037199) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622963048459) (:by |rJG4IHzWf) (:text |:autofocus) (:type :leaf)
|j $ {} (:at 1622963041186) (:by |rJG4IHzWf) (:text |true) (:type :leaf)
|y $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:on-keydown) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:event) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |when) (:type :leaf)
|j $ {} (:at 1632656208893) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1632656209884) (:by |rJG4IHzWf) (:text |and) (:type :leaf)
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |=) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"Enter") (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |.-key) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|j $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|j $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:text |.blank?) (:type :leaf)
|j $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1632656210958) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |.!preventDefault) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:event) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:message) (:type :leaf)
|r $ {} (:at 1632656233291) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656233291) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1632656233291) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|x $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|y $ {} (:at 1622962748262) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962753034) (:by |rJG4IHzWf) (:text |scroll-view!) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |=<) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |6) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|x $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:border) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"2px solid ") (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |200) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |60) (:type :leaf)
|r $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |28) (:type :leaf)
|v $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |28) (:type :leaf)
|x $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1622961750930) (:by |rJG4IHzWf) (:text "|\"50%") (:type :leaf)
|y $ {} (:at 1632656221115) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656226006) (:by |rJG4IHzWf) (:text |:cursor) (:type :leaf)
|j $ {} (:at 1632656227822) (:by |rJG4IHzWf) (:text |:pointer) (:type :leaf)
|r $ {} (:at 1632656131453) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656133702) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1632656134011) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656134343) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1632656134701) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656134956) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1632656135433) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |event) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |:event) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|r $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |when) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656149966) (:by |rJG4IHzWf) (:text |not) (:type :leaf)
|f $ {} (:at 1632656150525) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656154750) (:by |rJG4IHzWf) (:text |.blank?) (:type :leaf)
|j $ {} (:at 1632656160437) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656161504) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1632656162359) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |.!preventDefault) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |:event) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|v $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |:message) (:type :leaf)
|r $ {} (:at 1632656191440) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656193851) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|j $ {} (:at 1632656194626) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|x $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |cursor) (:type :leaf)
|r $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |assoc) (:type :leaf)
|j $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |state) (:type :leaf)
|r $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |:content) (:type :leaf)
|v $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|xT $ {} (:at 1632659638191) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1632659646597) (:by |rJG4IHzWf) (:text |.!focus) (:type :leaf)
|T $ {} (:at 1632659623377) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632659635232) (:by |rJG4IHzWf) (:text |js/document.querySelector) (:type :leaf)
|j $ {} (:at 1632659637712) (:by |rJG4IHzWf) (:text "|\"textarea") (:type :leaf)
|y $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656137169) (:by |rJG4IHzWf) (:text |scroll-view!) (:type :leaf)
|comp-message $ {} (:at 1622959795159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959796591) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1622959795159) (:by |rJG4IHzWf) (:text |comp-message) (:type :leaf)
|r $ {} (:at 1622959795159) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655446381) (:by |rJG4IHzWf) (:text |msg) (:type :leaf)
|v $ {} (:at 1632655447914) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1632655448445) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|L $ {} (:at 1632655448701) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655448851) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655450681) (:by |rJG4IHzWf) (:text |content) (:type :leaf)
|j $ {} (:at 1632655451575) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655455677) (:by |rJG4IHzWf) (:text |:message) (:type :leaf)
|j $ {} (:at 1632655456440) (:by |rJG4IHzWf) (:text |msg) (:type :leaf)
|j $ {} (:at 1632655457657) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655459850) (:by |rJG4IHzWf) (:text |name) (:type :leaf)
|j $ {} (:at 1632655460099) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655462098) (:by |rJG4IHzWf) (:text |:token) (:type :leaf)
|j $ {} (:at 1632655463638) (:by |rJG4IHzWf) (:text |msg) (:type :leaf)
|T $ {} (:at 1622959797486) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959798134) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622959798563) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959799335) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622959803019) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959805858) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622959813500) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622959814328) (:by |rJG4IHzWf) (:text |merge) (:type :leaf)
|L $ {} (:at 1622959815768) (:by |rJG4IHzWf) (:text |ui/row) (:type :leaf)
|T $ {} (:at 1622959806154) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959806485) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622959806790) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959807642) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1622962437012) (:by |rJG4IHzWf) (:text "|\"90%") (:type :leaf)
|r $ {} (:at 1622959862925) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959864036) (:by |rJG4IHzWf) (:text |:padding) (:type :leaf)
|j $ {} (:at 1622959872093) (:by |rJG4IHzWf) (:text "|\"4px 6px") (:type :leaf)
|r $ {} (:at 1622959817803) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959818254) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622959818481) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959818824) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|r $ {} (:at 1622959823148) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959823788) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622959824097) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959824393) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622959824654) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959825980) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622959826530) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959826905) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622959827224) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959829615) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1622959885005) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|r $ {} (:at 1622959835804) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959837415) (:by |rJG4IHzWf) (:text |:height) (:type :leaf)
|j $ {} (:at 1622959886550) (:by |rJG4IHzWf) (:text |40) (:type :leaf)
|v $ {} (:at 1622959839042) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959843466) (:by |rJG4IHzWf) (:text |:background-color) (:type :leaf)
|j $ {} (:at 1632656041903) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632656042487) (:by |rJG4IHzWf) (:text |gen-color) (:type :leaf)
|j $ {} (:at 1632656046594) (:by |rJG4IHzWf) (:text |name) (:type :leaf)
|x $ {} (:at 1622959919026) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959921496) (:by |rJG4IHzWf) (:text |:border-radius) (:type :leaf)
|j $ {} (:at 1622959926819) (:by |rJG4IHzWf) (:text "|\"4px") (:type :leaf)
|r $ {} (:at 1632655505063) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655508337) (:by |rJG4IHzWf) (:text |:on-click) (:type :leaf)
|j $ {} (:at 1632655508594) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655508842) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1632655509102) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655509267) (:by |rJG4IHzWf) (:text |e) (:type :leaf)
|j $ {} (:at 1632655509770) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|r $ {} (:at 1632655510409) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632655512518) (:by |rJG4IHzWf) (:text |d!) (:type :leaf)
|j $ {} (:at 1632655514387) (:by |rJG4IHzWf) (:text |:rename) (:type :leaf)
|r $ {} (:at 1632659133686) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1632659134476) (:by |rJG4IHzWf) (:text |str) (:type :leaf)
|T $ {} (:at 1632655514643) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1632659132953) (:by |rJG4IHzWf) (:text |js/Math.random) (:type :leaf)
|t $ {} (:at 1622959846384) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959846841) (:by |rJG4IHzWf) (:text |=<) (:type :leaf)
|j $ {} (:at 1622959847487) (:by |rJG4IHzWf) (:text |8) (:type :leaf)
|r $ {} (:at 1622959848108) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|v $ {} (:at 1622959819592) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959820074) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622959821116) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959821440) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962426908) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962428671) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622962430067) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|n $ {} (:at 1622959942729) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959944989) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622959945289) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959945613) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622960015810) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960016816) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |:color) (:type :leaf)
|j $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |hsl) (:type :leaf)
|j $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|v $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |70) (:type :leaf)
|r $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |:font-size) (:type :leaf)
|j $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |10) (:type :leaf)
|v $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960017370) (:by |rJG4IHzWf) (:text |:line-height) (:type :leaf)
|j $ {} (:at 1622962451870) (:by |rJG4IHzWf) (:text "|\"16px") (:type :leaf)
|r $ {} (:at 1622959946259) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622959946685) (:by |rJG4IHzWf) (:text |<>) (:type :leaf)
|j $ {} (:at 1632655477815) (:by |rJG4IHzWf) (:text |name) (:type :leaf)
|r $ {} (:at 1622959850397) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960050480) (:by |rJG4IHzWf) (:text |comp-sentence) (:type :leaf)
|j $ {} (:at 1622960701057) (:by |rJG4IHzWf) (:text |content) (:type :leaf)
|comp-messages $ {} (:at 1622961676109) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961687980) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1622961676109) (:by |rJG4IHzWf) (:text |comp-messages) (:type :leaf)
|r $ {} (:at 1622961676109) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961681247) (:by |rJG4IHzWf) (:text |ms) (:type :leaf)
|v $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |div) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |ui/expand) (:type :leaf)
|r $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962718440) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962719842) (:by |rJG4IHzWf) (:text |:id) (:type :leaf)
|j $ {} (:at 1622962726267) (:by |rJG4IHzWf) (:text "|\"message-area") (:type :leaf)
|r $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|f $ {} (:at 1622961684246) (:by |rJG4IHzWf) (:text |ms) (:type :leaf)
|r $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |either) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|v $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |.map-indexed) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |m) (:type :leaf)
|r $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |comp-message) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |m) (:type :leaf)
|v $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |=<) (:type :leaf)
|j $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |nil) (:type :leaf)
|r $ {} (:at 1622961678987) (:by |rJG4IHzWf) (:text |80) (:type :leaf)
|comp-sentence $ {} (:at 1622960057029) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960061205) (:by |rJG4IHzWf) (:text |defcomp) (:type :leaf)
|j $ {} (:at 1622960057029) (:by |rJG4IHzWf) (:text |comp-sentence) (:type :leaf)
|r $ {} (:at 1622960057029) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960063792) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|v $ {} (:at 1622960064342) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960074059) (:by |rJG4IHzWf) (:text |list->) (:type :leaf)
|j $ {} (:at 1622960065746) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960066077) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962365537) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962367894) (:by |rJG4IHzWf) (:text |:style) (:type :leaf)
|j $ {} (:at 1622962368128) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962369057) (:by |rJG4IHzWf) (:text |{}) (:type :leaf)
|j $ {} (:at 1622962369302) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962370068) (:by |rJG4IHzWf) (:text |:width) (:type :leaf)
|j $ {} (:at 1622962371998) (:by |rJG4IHzWf) (:text "|\"100%") (:type :leaf)
|r $ {} (:at 1622962372822) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962382229) (:by |rJG4IHzWf) (:text |:word-break) (:type :leaf)
|j $ {} (:at 1622962387819) (:by |rJG4IHzWf) (:text |:break-all) (:type :leaf)
|v $ {} (:at 1622962456335) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962458555) (:by |rJG4IHzWf) (:text |:line-height) (:type :leaf)
|j $ {} (:at 1622962466307) (:by |rJG4IHzWf) (:text "|\"16px") (:type :leaf)
|r $ {} (:at 1622960085490) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960100595) (:by |rJG4IHzWf) (:text |->) (:type :leaf)
|j $ {} (:at 1622960103991) (:by |rJG4IHzWf) (:text |text) (:type :leaf)
|r $ {} (:at 1622960104766) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960115537) (:by |rJG4IHzWf) (:text |.split) (:type :leaf)
|j $ {} (:at 1622960116656) (:by |rJG4IHzWf) (:text "|\"") (:type :leaf)
|v $ {} (:at 1622960117671) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960131367) (:by |rJG4IHzWf) (:text |.map-indexed) (:type :leaf)
|j $ {} (:at 1622960119592) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960120418) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622960120628) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622960133768) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|T $ {} (:at 1622960124488) (:by |rJG4IHzWf) (:text |char) (:type :leaf)
|r $ {} (:at 1622960127813) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960128421) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1622960135902) (:by |rJG4IHzWf) (:text |idx) (:type :leaf)
|r $ {} (:at 1622960158271) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960160452) (:by |rJG4IHzWf) (:text |comp-char) (:type :leaf)
|j $ {} (:at 1622960161358) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622960168963) (:by |rJG4IHzWf) (:text |.!charCodeAt) (:type :leaf)
|j $ {} (:at 1622960171565) (:by |rJG4IHzWf) (:text |char) (:type :leaf)
|r $ {} (:at 1622960171912) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|pad9 $ {} (:at 1622961554758) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961554758) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1622961554758) (:by |rJG4IHzWf) (:text |pad9) (:type :leaf)
|r $ {} (:at 1622961554758) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961554758) (:by |rJG4IHzWf) (:text |acc) (:type :leaf)
|v $ {} (:at 1622961556671) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961557033) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|j $ {} (:at 1622961570363) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961570749) (:by |rJG4IHzWf) (:text |<) (:type :leaf)
|b $ {} (:at 1622961572832) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961573585) (:by |rJG4IHzWf) (:text |count) (:type :leaf)
|j $ {} (:at 1622961574101) (:by |rJG4IHzWf) (:text |acc) (:type :leaf)
|j $ {} (:at 1622961859447) (:by |rJG4IHzWf) (:text |18) (:type :leaf)
|r $ {} (:at 1622961580680) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|D $ {} (:at 1622961581596) (:by |rJG4IHzWf) (:text |recur) (:type :leaf)
|T $ {} (:at 1622961574995) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961576454) (:by |rJG4IHzWf) (:text |concat) (:type :leaf)
|j $ {} (:at 1622961577310) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622961577454) (:by |rJG4IHzWf) (:text |[]) (:type :leaf)
|j $ {} (:at 1622961578116) (:by |rJG4IHzWf) (:text |0) (:type :leaf)
|r $ {} (:at 1622961579331) (:by |rJG4IHzWf) (:text |acc) (:type :leaf)
|v $ {} (:at 1622961604866) (:by |rJG4IHzWf) (:text |acc) (:type :leaf)
|scroll-view! $ {} (:at 1622962753702) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962753702) (:by |rJG4IHzWf) (:text |defn) (:type :leaf)
|j $ {} (:at 1622962753702) (:by |rJG4IHzWf) (:text |scroll-view!) (:type :leaf)
|r $ {} (:at 1622962753702) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|v $ {} (:at 1622962754553) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962761338) (:by |rJG4IHzWf) (:text |js/setTimeout) (:type :leaf)
|j $ {} (:at 1622962761678) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962761953) (:by |rJG4IHzWf) (:text |fn) (:type :leaf)
|j $ {} (:at 1622962762160) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|r $ {} (:at 1622962768972) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962768160) (:by |rJG4IHzWf) (:text |let) (:type :leaf)
|j $ {} (:at 1622962769729) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962769863) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962770740) (:by |rJG4IHzWf) (:text |target) (:type :leaf)
|j $ {} (:at 1622962770970) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962781824) (:by |rJG4IHzWf) (:text |js/document.querySelector) (:type :leaf)
|j $ {} (:at 1622962784743) (:by |rJG4IHzWf) (:text "|\"#message-area") (:type :leaf)
|j $ {} (:at 1622962841645) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962844917) (:by |rJG4IHzWf) (:text |last-child) (:type :leaf)
|j $ {} (:at 1622962845552) (:by |rJG4IHzWf) (:type :expr)
:data $ {}
|T $ {} (:at 1622962847451) (:by |rJG4IHzWf) (:text |if) (:type :leaf)
|j $ {} (:at 1622962847635) (:by |rJG4IHzWf) (:type :expr)
:data $ {}