-
Notifications
You must be signed in to change notification settings - Fork 1
/
calcit.cirru
7174 lines (7173 loc) · 603 KB
/
calcit.cirru
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{}
:users $ {}
|bjmr3HZle $ {} (:name |chen) (:id |bjmr3HZle) (:nickname |chen) (:avatar nil) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |respo-ui)
:files $ {}
|respo-ui.schema $ {}
:ns $ {} (:type :expr) (:id |rk1vfUFhYisW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJlwGUKhKosW) (:text |ns) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |H1bPG8YhYoj-) (:text |respo-ui.schema) (:by |root) (:at 1506675837748)
:defs $ {}
|store $ {} (:type :expr) (:id |BkQvM8YhYss-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk4vMLYhKji-) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJHvzUFhFsiW) (:text |store) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |S1IwfLY2KsiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1DDzIKhtjob) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |BkdDGUt3YsoW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BktDMUthtsob) (:text |:router) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |S19wzUF2tjib) (:text |nil) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |S10vf8F3FjoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJy_f8FhFoiW) (:text |:states) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |rygOMItntjob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1-dMLtnYijb) (:text |{}) (:by |root) (:at 1506675837748)
:proc $ {} (:type :expr) (:id |HkGwMUY2tsjb) (:by nil) (:at 1506675837748) (:data $ {})
|respo-ui.router $ {}
:ns $ {} (:type :expr) (:id |ryo3D8YnKsi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Byh3PIFhtoiW) (:text |ns) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1a3v8K2KoiZ) (:text |respo-ui.router) (:by |root) (:at 1506675837748)
:defs $ {}
|dict $ {} (:type :expr) (:id |Sk16vUt2Yoib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyx6wIYhFosZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyZpPIKhKoo-) (:text |dict) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |SkfaD8thtisb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1QpwLY2Ksob) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |SyNavUthYsi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkBpwIK3YjiZ) (:text ||index.html) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |Hk8awIFhKsjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1wpvIY2YjjW) (:text |[]) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |S1d6DLKnKjo-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJY6w8YhtsjZ) (:text ||dev.html) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |BJ9pDIF3Kjjb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByspvLF3FosZ) (:text |[]) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |B1gCDLY3Fjob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ-0PLF2Yoib) (:text ||fonts.html) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |ryzADIKnFoo-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJQCwUt2YjsZ) (:text |[]) (:by |root) (:at 1506675837748)
|y $ {} (:type :expr) (:id |SJECvUKnYos-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJB0vLK3FojZ) (:text ||widgets.html) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |ryLAvIthKjiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Syw0v8thKjsb) (:text |[]) (:by |root) (:at 1506675837748)
|yT $ {} (:type :expr) (:id |H1uADLt2KiiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJF0wUFhFoob) (:text ||layouts.html) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r15CD8KnYis-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJoCPLtnYisW) (:text |[]) (:by |root) (:at 1506675837748)
|yj $ {} (:type :expr) (:id |Hy2ADIF3tjob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1TCvIY2Ysi-) (:text ||components.html) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |SkAAP8F3Fjs-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rky1_IK3tjiZ) (:text |[]) (:by |root) (:at 1506675837748)
|yb $ {} (:type :expr) (:id |ywrIcNVTdg) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJF0wUFhFoob) (:text ||lay-out.html) (:by |bjmr3HZle) (:at 1600160601011)
|j $ {} (:type :expr) (:id |r15CD8KnYis-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJoCPLtnYisW) (:text |[]) (:by |root) (:at 1506675837748)
|mode $ {} (:type :expr) (:id |rkgkOIt2Ysob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyZJ_LY2tij-) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |S1G1d8Fntoj-) (:text |mode) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |SJ7yOLY2tjsW) (:text |:history) (:by |root) (:at 1506675837748)
:proc $ {} (:type :expr) (:id |S1CnD8KnYosb) (:by nil) (:at 1506675837748) (:data $ {})
|respo-ui.core $ {}
:ns $ {} (:type :expr) (:id |S1qPX8K3Kjj-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1ov7UFhKssb) (:text |ns) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1nv7Lt2Kio-) (:text |respo-ui.core) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ByTwQUK2KjjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyCDQ8YhtojZ) (:text |:require) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |Sk1OX8K3Kso-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BkxdmUt2KioZ) (:text |[]) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1bO7UY2Yjsb) (:text |hsl.core) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |HyfdQLt2Fjs-) (:text |:refer) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |SJQu7LK3YjoW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJN_mUYnKoiW) (:text |[]) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |H1rdmUYntiob) (:text |hsl) (:by |root) (:at 1506675837748)
:defs $ {}
|expand $ {} (:type :expr) (:by |bjmr3HZle) (:at 1555608078875) (:id |jIdtvzarG9)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608605616) (:text |def) (:id |2-86BzxhyD)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608078875) (:text |expand) (:id |aW3K7hBWzG)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1555608082406) (:id |Vw5tTYYwht)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608082406) (:text |{}) (:id |HuwKCsPCx6)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1555608082406) (:id |PRmM-oyxT7)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608082406) (:text |:flex) (:id |r1wJvKzXO9)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608082406) (:text |1) (:id |rKcwm0peMs)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1555608086252) (:id |hqlwSJFIXJ)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608087667) (:text |:overflow) (:id |hqlwSJFIXJleaf)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1555608088453) (:text |:auto) (:id |lXXRUqhJJO)
|text-label $ {} (:type :expr) (:id |B1h97It2tos-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1a57LF2FijZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Bk09mIK2tjjb) (:text |text-label) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ByJs7IKnFjsW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyxsm8K2KoiZ) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |HJZi7Lt2Koo-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SyzomIF3KjsZ) (:text |:line-height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rymi7IK2toob) (:text ||32px) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |SkVoQLFnKjjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJHjm8FnKjjW) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ByUsmUY2Yjob) (:text |14) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |HyDomLt3Yiob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJdoX8K2Yso-) (:text |:color) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1557076527164) (:id |bjG7X3j4IW)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076527164) (:text |hsl) (:id |m8S10f9YZB)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076527164) (:text |0) (:id |TrnPYXGjrR)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076527164) (:text |0) (:id |O_OtQA4wwp)
|v $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076527164) (:text |20) (:id |fDIGpgWo_g)
|x $ {} (:type :expr) (:id |SJ5s7LF2Foj-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SyssmIt2Kjob) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SynsXIK3Fji-) (:text |:inline-block) (:by |root) (:at 1506675837748)
|y $ {} (:type :expr) (:id |B1TiQLFntjj-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1AsX8F2Ksjb) (:text |:vertical-align) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HJJ37UY2YjoW) (:text |:top) (:by |root) (:at 1506675837748)
|row-evenly $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685689315)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685715526) (:text |def) (:id |Q2HQGsZ6wP)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685689315) (:text |row-evenly) (:id |tYRTy-jL0n)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685693448)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685693448) (:text |{}) (:id |SbPpQIJwNU)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685693448)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685693448) (:text |:display) (:id |Dt_MYP1Gjj)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685693448) (:text ||flex) (:id |BPKxFHZ7h6)
:id |WMD0QigX-7
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685693448)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685693448) (:text |:align-items) (:id |8GBX6SKTxW)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685794506) (:text ||center) (:id |W2ljdBNn2x)
:id |iYjWSPOKX_
|v $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685693448)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685693448) (:text |:flex-direction) (:id |zBAflUpsP0)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685693448) (:text ||row) (:id |xkmRIEkX4C)
:id |67WlZ9etjz
|x $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685701295)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685706760) (:text |:justify-content) (:id |4tYQiEA8Eleaf)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685710234) (:text "|\"space-evenly") (:id |UXJKI1oLSn)
:id |4tYQiEA8E
:id |VUMw4xKjnU
:id |QOv9ncn2ba
|center $ {} (:type :expr) (:id |rkxh78KhYjsZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1bnQ8FnKojb) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HkG2mUY2Ysjb) (:text |center) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |S173mUF3FsoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJVhm8thtoj-) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |S1B3mUt3toib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyUnmUKhtssb) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BkvhQIF3FooZ) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ByO27IYnFiiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1K2mIYhtjsb) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1937UYhKoob) (:text ||column) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |ryj2QLF3tsib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r13h7UFnFsjW) (:text |:justify-content) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJ6hQUFnKjjZ) (:text ||center) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |ry03QLY2Kijb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkJ6XLF3Kjjb) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rylT7LY2Yjs-) (:text ||center) (:by |root) (:at 1506675837748)
|column-evenly $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685723588)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731987) (:text |def) (:id |2gdecIIXAn)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685723588) (:text |column-evenly) (:id |w4UDyzWhW4)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685731002)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text |{}) (:id |BNABRNwBvK)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685731002)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text |:display) (:id |WSjkg2_zAA)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text ||flex) (:id |A23zfZMMbP)
:id |C0AA7RAh5w
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685731002)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text |:align-items) (:id |TJsEgYRF4S)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text ||center) (:id |JCcsH6Do0V)
:id |HBGYNIxtSI
|v $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685731002)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text |:justify-content) (:id |DYNA-eAffD)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685739578) (:text ||space-evenly) (:id |3QlxizTEsQ)
:id |K6nRv6s96g
|x $ {} (:type :expr) (:by |bjmr3HZle) (:at 1590685731002)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text |:flex-direction) (:id |3cCeW1AX59)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1590685731002) (:text ||column) (:id |BVtXULYd3m)
:id |Q1q-a_7aCl
:id |IWIBCfu7Xa
:id |pewx11nkFP
|select $ {} (:type :expr) (:id |BJ-TmIFhFsi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkG6QIF3YjjZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HkQa78KhFsiZ) (:text |select) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ByNpmIYnFiiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SkBp78F3Yjib) (:text |{}) (:by |root) (:at 1506675837748)
|yr $ {} (:type :expr) (:id |ryiCmIF3KisW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk2AQIFhtsjb) (:text |:vertical-align) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HkpCQUt3Koob) (:text |:top) (:by |root) (:at 1506675837748)
|yL $ {} (:type :expr) (:by |root) (:at 1526831291841) (:id |ByET_fkJm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831295849) (:text |:border-radius) (:id |ByET_fkJmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1526831297065) (:text "|\"4px") (:id |r1zO6_fkyX)
|j $ {} (:type :expr) (:id |Hy8amLthYsoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Skwa78YnKssW) (:text |:height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1uaX8F2KoiW) (:text |32) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |SJJ078KhFsib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1eCQLthFoo-) (:text |:min-width) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1ZRmLY3FjiZ) (:text |120) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |Sk3aXUthKisW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BkT6mLYntjsZ) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1AT7Lt3Kso-) (:text |14) (:by |root) (:at 1506675837748)
|yj $ {} (:type :expr) (:id |BkORmLY2Yjsb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJYRQUY3tssW) (:text |:font-family) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1qR7LY2toj-) (:text |default-fonts) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ByKp7UY2KojW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJ9TX8tnYojZ) (:text |:outline) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HJsT78Y2FjiZ) (:text ||none) (:by |root) (:at 1506675837748)
|y $ {} (:type :expr) (:id |SJGRQUFnYjoW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1QC7IK2YijZ) (:text |:border) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |root) (:at 1526831280646) (:id |ryK3OMJkQ)
:data $ {}
|T $ {} (:type :leaf) (:id |HJVAQ8Y3YojW) (:text |str) (:by |root) (:at 1526831282020)
|j $ {} (:type :leaf) (:by |root) (:at 1526831285357) (:text "|\"1px solid ") (:id |B1ihuGyJX)
|r $ {} (:type :expr) (:by |root) (:at 1526831286005) (:id |BkeCndGyym)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831287078) (:text |hsl) (:id |ryAhOf11m)
|j $ {} (:type :leaf) (:by |root) (:at 1526831287379) (:text |0) (:id |rygk6dGJy7)
|r $ {} (:type :leaf) (:by |root) (:at 1526831287639) (:text |0) (:id |r1zkTdMkkm)
|v $ {} (:type :leaf) (:by |root) (:at 1526831288131) (:text |80) (:id |Hyeg6dGyym)
|column-parted $ {} (:type :expr) (:id |HJlDgnrJQM) (:by |root) (:at 1514261487262)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |HkZDxhrymf) (:by |root) (:at 1514261499324)
|j $ {} (:type :leaf) (:text |column-parted) (:id |H1MvlhSJmz) (:by |root) (:at 1514261487262)
|r $ {} (:type :expr) (:id |ByG-hHyXG) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJiKVIKnKsjW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r12Y4UK2Fssb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1TFVLKhKoo-) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SkRK4UFhtjsZ) (:text |:flex) (:by |root) (:at 1514303164740)
|r $ {} (:type :expr) (:id |rkkcEIt2tii-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyx5EUKnFssZ) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJWqE8thYojb) (:text |:stretch) (:by |root) (:at 1514303174417)
|v $ {} (:type :expr) (:id |HkfcVIthKsjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ7cEUF2YjsW) (:text |:justify-content) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyNqVIt3FjjZ) (:text |:space-between) (:by |root) (:at 1514303167183)
|x $ {} (:type :expr) (:id |B1H5E8Y2Ksi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkIcVIKhFisZ) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkv54IKnKio-) (:text |:column) (:by |root) (:at 1514303169675)
|default-fonts $ {} (:type :expr) (:id |S100m8F2FsoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByJ1VIt2too-) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HkeJVUt3Yji-) (:text |default-fonts) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |rkbJELKhtojb) (:text "||Hind,Verdana,'Hiragino Sans GB','WenQuanYi Micro Hei','Microsoft Yahei',sans-serif") (:by |root) (:at 1506675837748)
|input $ {} (:type :expr) (:id |rkXlVLt2Yojb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryVeVLFnFiiZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1Hg48KhtojW) (:text |input) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |B1IlEIKhFojb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkDxVLFhFoj-) (:text |merge) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1OxV8YnFijZ) (:text |global) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |rkKxEUY3FjiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyceNLt3tosW) (:text |{}) (:by |root) (:at 1506675837748)
|w $ {} (:type :expr) (:by |root) (:at 1526831195146) (:id |SklmPdMyk7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831196256) (:text |:border) (:id |SklmPdMyk7leaf)
|j $ {} (:type :expr) (:by |root) (:at 1526831197768) (:id |SkLDOfkJ7)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831199011) (:text |str) (:id |HkrEPuMJy7)
|j $ {} (:type :leaf) (:by |root) (:at 1526831202665) (:text "|\"1px solid ") (:id |BJMvDOMkkm)
|r $ {} (:type :expr) (:by |root) (:at 1526831203743) (:id |H1nD_fJyQ)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831210461) (:text |hsl) (:id |H1eivdfyJ7)
|j $ {} (:type :leaf) (:by |root) (:at 1526831210978) (:text |0) (:id |SkXduzyJ7)
|r $ {} (:type :leaf) (:by |root) (:at 1526831211201) (:text |0) (:id |SybQ__G1JX)
|v $ {} (:type :leaf) (:by |root) (:at 1526831224804) (:text |80) (:id |SkmmOuMyJ7)
|yr $ {} (:type :expr) (:id |SkxzEIY2FijW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1WfELF2tjo-) (:text |:height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SkffNIK3Yiib) (:text |32) (:by |root) (:at 1506675837748)
|yT $ {} (:type :expr) (:id |rJ5WEUK2YojZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJiWE8K3Yijb) (:text |:min-width) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkhbVUtnFjjb) (:text ||120px) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |rJox4UYnYoiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ3lVUK2tos-) (:text |:border) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJ6gEUYnKjo-) (:text ||none) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |B1NbV8KnKjiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1rWEUKhKsjZ) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJIZ4IYhtiob) (:text ||14px) (:by |root) (:at 1506675837748)
|yj $ {} (:type :expr) (:id |HJTbNIFhFioZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SkAbN8YntjsW) (:text |:line-height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HkyzE8YhFosZ) (:text ||16px) (:by |root) (:at 1506675837748)
|yx $ {} (:type :expr) (:id |BkIfVUY3KiiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BkwM48YhYsob) (:text |:vertical-align) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |By_MNUY3Kso-) (:text |:top) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ryAlV8K3KoiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkkWE8K3FiiW) (:text |:outline) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BkeWVIKntsiZ) (:text ||none) (:by |root) (:at 1506675837748)
|y $ {} (:type :expr) (:id |S1DWN8YnYssW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByOZ4UFhFjjb) (:text |:padding) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJKbNUY3tsi-) (:text "||8px 8px") (:by |root) (:at 1506675837748)
|wT $ {} (:type :expr) (:by |root) (:at 1526831228656) (:id |SJrK_f1Jm)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831233780) (:text |:border-radius) (:id |SJrK_f1Jmleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1526831237609) (:text "|\"4px") (:id |Hyf5YufJy7)
|yv $ {} (:type :expr) (:id |rJXGEIKhFsjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyEMV8KnYos-) (:text |:font-family) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJSf4LKhtjib) (:text |default-fonts) (:by |root) (:at 1506675837748)
|column $ {} (:type :expr) (:id |H1tf4Lt2FojZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJqMVLYhKooW) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ByszVIKnKisb) (:text |column) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |SkhMNUFnYjiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1pfE8YhFoib) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r1AfVIKnYssZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryyQ4IF3Yijb) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BygQVUYntjiZ) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |HJZQVUY3FsiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1GQNUFntjjZ) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BkQXELYhKoo-) (:text ||stretch) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |BkNQN8KhFoiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SkHQE8F2Fij-) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJ87E8YhKsjZ) (:text ||column) (:by |root) (:at 1506675837748)
|column-dispersive $ {} (:type :expr) (:id |r1gXcuy-fz) (:by |root) (:at 1513318539348)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |H1W75_1WfM) (:by |root) (:at 1513318544243)
|j $ {} (:type :leaf) (:text |column-dispersive) (:id |rJGQ9u1ZfM) (:by |root) (:at 1513318539348)
|r $ {} (:type :expr) (:id |SJe8qukbMG) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1LkELFhKjoW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |Hkw148thFoib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJuJVUF2KosZ) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJty4IKhYjs-) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |BJckVLY3FooW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BkjJNUFntjs-) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Sk2yEIF2tjs-) (:text ||center) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |H1pkE8K3Yoi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyR1NUFhFijW) (:text |:justify-content) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ByJxNUFnYsoZ) (:text ||space-around) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |HJxgNUK3YssZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1WgEUY3Kio-) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJzeVIYnFssZ) (:text ||column) (:by |root) (:at 1506675837748)
|font-code $ {} (:type :expr) (:by |root) (:at 1516429369300) (:id |BJgWHeDlrz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1516429602614) (:text |def) (:id |rJbWHxPlBz)
|j $ {} (:type :leaf) (:by |root) (:at 1516429369300) (:text |font-code) (:id |HkfWrewlHz)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1583727181875) (:text "||Source Code Pro, Menlo, Ubuntu Mono, Consolas, monospace") (:id |r1x3QbvlSG)
|textarea $ {} (:type :expr) (:id |SJDX48t3Kij-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Bkd7VUY2Fijb) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HJF7E8t3YooZ) (:text |textarea) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |S1cQNItnFooZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyj7EUY2Kosb) (:text |{}) (:by |root) (:at 1506675837748)
|yr $ {} (:type :expr) (:id |HkWHEUYhKjoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1zSV8FntsoZ) (:text |:vertical-align) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HJ7rE8KhFio-) (:text |:top) (:by |root) (:at 1506675837748)
|yT $ {} (:type :expr) (:id |S1sENLFhYjib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S12NVUY2FsiW) (:text |:padding) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ryTNV8thtjiZ) (:text |8) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |B1374UY3Yjob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJT7E8FnYjiZ) (:text |:outline) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyA7VUF2Fijb) (:text |:none) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |ryBE4UY3Yoob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1IEEIthtisb) (:text |:font-family) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1wNV8thFsjW) (:text |default-fonts) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |S1z448t2KjiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rk7EVIY2Ysib) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJ4EELthtisb) (:text |14) (:by |root) (:at 1506675837748)
|yj $ {} (:type :expr) (:id |rJAEN8Y2YiiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SyyHVUt2Kisb) (:text |:min-width) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJer4LthKjs-) (:text |240) (:by |root) (:at 1506675837748)
|yD $ {} (:type :expr) (:by |root) (:at 1526831264297) (:id |S1e_jdfk1Q)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526831268223) (:text |:border-radius) (:id |S1e_jdfk1Qleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1526831270155) (:text "|\"4px") (:id |Hk6iuz11m)
|r $ {} (:type :expr) (:id |rJ1E4LY2Fij-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkl4V8YhKioZ) (:text |:border) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJZENLY3KoiW) (:text |:none) (:by |root) (:at 1506675837748)
|y $ {} (:type :expr) (:id |rJ_EN8thYijZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkY4EIY3tjsZ) (:text |:border) (:by |root) (:at 1526831253118)
|j $ {} (:type :expr) (:by |root) (:at 1526831253650) (:id |H1AcOGJ1m)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1526831255055) (:text |str) (:id |HyeC5df1y7)
|L $ {} (:type :leaf) (:by |root) (:at 1526831259172) (:text "|\"1px solid ") (:id |BkZkouGk1X)
|T $ {} (:type :expr) (:by |root) (:at 1526831260447) (:id |SkZVjuz1km)
:data $ {}
|T $ {} (:type :leaf) (:id |H194NIt2KosW) (:text |hsl) (:by |root) (:at 1526831261302)
|j $ {} (:type :leaf) (:by |root) (:at 1526831261895) (:text |0) (:id |rJLj_G1JQ)
|r $ {} (:type :leaf) (:by |root) (:at 1526831262138) (:text |0) (:id |SJZLjuMykX)
|v $ {} (:type :leaf) (:by |root) (:at 1526831262580) (:text |80) (:id |HyQUsuf1J7)
|link $ {} (:type :expr) (:id |By3d7UKhYjsW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H16d7LKhYssW) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |H10_7UKnYii-) (:text |link) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |HyJKm8FhFss-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BygKXLFhYss-) (:text |{}) (:by |root) (:at 1506675837748)
|yr $ {} (:type :expr) (:id |Bk85XUt2tjjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJvcm8KnKiiW) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1_5Q8YhYjoZ) (:text |:inline-block) (:by |root) (:at 1506675837748)
|yT $ {} (:type :expr) (:id |B1lqQLKhFijZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1ZcmLY3Yiob) (:text |:margin) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyM5QLKhFjsZ) (:text |4) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |BybFQLtnKjsW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1fFQIYntsoW) (:text |:color) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1557076471462) (:id |gs9HJmcGJf)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076471462) (:text |hsl) (:id |uY--xGC-2U)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076471462) (:text |200) (:id |kquekgkxrz)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076471462) (:text |100) (:id |I1HISgvE4A)
|v $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076471462) (:text |76) (:id |N2J2Kt4-2K)
|x $ {} (:type :expr) (:id |rJ9t7UY2YsiW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryjFXLY3YjiZ) (:text |:height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJhKQItnYiiZ) (:text |24) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |H1wF7It3FjiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Bk_FX8FhtjjZ) (:text |:user-select) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyYYX8thKsob) (:text |:no-select) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |B1EY7UKntjsW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rySFm8thFisW) (:text |:text-decoration) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJIt7LFnYoiW) (:text |:underline) (:by |root) (:at 1506675837748)
|y $ {} (:type :expr) (:id |r16FXLKnYsi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJAFmLYnFjob) (:text |:line-height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Hy1cXUK3YisW) (:text ||24px) (:by |root) (:at 1506675837748)
|yv $ {} (:type :expr) (:id |SyF5QUt2tiib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r155XIF2Yiob) (:text |:cursor) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BkiqQIYntioZ) (:text |:pointer) (:by |root) (:at 1506675837748)
|row $ {} (:type :expr) (:id |SkNB4IFnYijb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJrrELtnYisb) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyLHNIF2Kjsb) (:text |row) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |BkwHN8Y2Fsjb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1dSNIt2FsjW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r1YH48K3KjoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SkqB4Ut3Fij-) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ByorEUK2FiiZ) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |rkhHV8Yntos-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByprEUK2FsoW) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJAHVIYnYjsZ) (:text ||stretch) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |Bk1IN8KnYiib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1lINLK2FjiW) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BkWU4IFntiiW) (:text ||row) (:by |root) (:at 1506675837748)
|font-fancy $ {} (:type :expr) (:by |root) (:at 1516429352990) (:id |S1x-EgvlHM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1516429578596) (:text |def) (:id |B1ZWVlDxHG)
|j $ {} (:type :leaf) (:by |root) (:at 1516429352990) (:text |font-fancy) (:id |H1MW4gDerG)
|r $ {} (:type :leaf) (:by |root) (:at 1516429595718) (:text "||Josefin Sans, Helvetica neue, Arial, sans-serif") (:id |r1NMbweSM)
|fullscreen $ {} (:type :expr) (:id |H1GLELK2Yoob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ78N8KntssZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |H148EIthFoob) (:text |fullscreen) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |SkHUVUFnFojW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ8LEUY3Kii-) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |SJPL4IY3toi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Sk_U4UFnYssb) (:text |:position) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkKI4UK2Kiob) (:text "|\"absolute") (:by |bjmr3HZle) (:at 1534871017251)
|r $ {} (:type :expr) (:id |SyqLELtnKjs-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1oIELFnFjoW) (:text |:left) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HJ2UV8F2Yjo-) (:text |0) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |r1aL4LY2tsoZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkR8E8F2Koi-) (:text |:top) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJkD48F2YssZ) (:text |0) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |HJxvEIY2tsi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJWv4IYhtij-) (:text |:width) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ByfDEUtntijW) (:text "|\"100%") (:by |bjmr3HZle) (:at 1534871019152)
|y $ {} (:type :expr) (:id |B1mwE8F3tiib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJNvVIK2Kjo-) (:text |:height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HySPEUYnFoib) (:text "|\"100%") (:by |bjmr3HZle) (:at 1534871020947)
|yT $ {} (:type :expr) (:by |bjmr3HZle) (:at 1534871010802) (:id |1s5xisxOKF)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1534871014006) (:text |:overflow) (:id |1s5xisxOKFleaf)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1534871015087) (:text |:auto) (:id |qKsjHHlVPH)
|card $ {} (:type :expr) (:id |rJ8vNLF3Ksj-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkDvNIF3tooW) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Sy_vN8K3FioW) (:text |card) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |HyKPV8Y2tjjb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ry5w4UFhKoib) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |rkiwNUtnFiiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryhPEIF3tsib) (:text |:padding) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJavNUYnFij-) (:text ||16px) (:by |root) (:at 1506675837748)
|row-parted $ {} (:type :expr) (:id |BJe646QgGG) (:by |root) (:at 1513270580779)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |HyZTNp7lfG) (:by |root) (:at 1513270615529)
|j $ {} (:type :leaf) (:text |row-parted) (:id |HyGa4a7gGM) (:by |root) (:at 1513270580779)
|r $ {} (:type :expr) (:id |BkAI67eff) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJiKVIKnKsjW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r12Y4UK2Fssb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1TFVLKhKoo-) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SkRK4UFhtjsZ) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |rkkcEIt2tii-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyx5EUKnFssZ) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJWqE8thYojb) (:text ||center) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |HkfcVIthKsjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ7cEUF2YjsW) (:text |:justify-content) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyNqVIt3FjjZ) (:text ||space-between) (:by |root) (:at 1513270620374)
|x $ {} (:type :expr) (:id |B1H5E8Y2Ksi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkIcVIKhFisZ) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkv54IKnKio-) (:text ||row) (:by |root) (:at 1506675837748)
|global $ {} (:type :expr) (:id |ByAPNLt2FjjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1y_4IKhKosb) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Skgd48KhKiob) (:text |global) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |SJbOVUY3Ksob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Syz_E8tnKijb) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |S17ONUY3FjjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BkV_4UF2tsiZ) (:text |:line-height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyH_VUt3Kjjb) (:text "|\"2") (:by |bjmr3HZle) (:at 1573058081484)
|r $ {} (:type :expr) (:id |SyIdELYnFsi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJw_4Lt2Koib) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Byd_NUKhYojW) (:text "|\"14px") (:by |bjmr3HZle) (:at 1573058055695)
|v $ {} (:type :expr) (:id |ByFONLthtioZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJc_VUY3tsoZ) (:text |:font-family) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |S1ou4LFhFoj-) (:text |default-fonts) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |B13OVIthtssZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJauNUFhFooW) (:text |:color) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1557076631725) (:id |mBUC5OzisD)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076631725) (:text |hsl) (:id |kvg0uHAktY)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076631725) (:text |0) (:id |ZVOzh1kA7A)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076631725) (:text |0) (:id |R52vaGTpU1)
|v $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076631725) (:text |20) (:id |IivUlTfT5f)
|row-middle $ {} (:type :expr) (:by |bjmr3HZle) (:at 1539919964573) (:id |wTSM7c1XnN)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539920439537) (:text |def) (:id |ycybEkJ_Md)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919964573) (:text |row-middle) (:id |BMgFalQYQM)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1539919976502) (:id |zDKmRfuIdI)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919976502) (:text |{}) (:id |NM3pOWj5-p)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1539919976502) (:id |14U0CHK7TS)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919976502) (:text |:display) (:id |uhdrN50GHP)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919979097) (:text |:flex) (:id |Fl4fyrM-Sh)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1539919976502) (:id |8ogUUQqkGZ)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919976502) (:text |:align-items) (:id |3VAOSjdRwJ)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919982472) (:text |:center) (:id |HWafD0awQz)
|v $ {} (:type :expr) (:by |bjmr3HZle) (:at 1539919976502) (:id |Y3cMjEy6Az)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919976502) (:text |:justify-content) (:id |Ia121EmVSl)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919985629) (:text |:flex-start) (:id |eSvJ8DzYTr)
|x $ {} (:type :expr) (:by |bjmr3HZle) (:at 1539919976502) (:id |g11Z24QN3h)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919976502) (:text |:flex-direction) (:id |4UQaNiH-mWR)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1539919987430) (:text |:row) (:id |suDoRAmRkvp)
|font-normal $ {} (:type :expr) (:by |root) (:at 1516429434734) (:id |HklQKlDgrM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1516429537898) (:text |def) (:id |rk-mKgPxrz)
|j $ {} (:type :leaf) (:by |root) (:at 1516429539641) (:text |font-normal) (:id |HyzQtlPeHM)
|r $ {} (:type :leaf) (:by |root) (:at 1516429563157) (:text "||Hind, Helvatica, Arial, sans-serif") (:id |rkenyWweSz)
|row-dispersive $ {} (:type :expr) (:id |H1gi_uyWGG) (:by |root) (:at 1513318514526)
:data $ {}
|T $ {} (:type :leaf) (:text |def) (:id |SJ-jddJWGf) (:by |root) (:at 1513318519080)
|j $ {} (:type :leaf) (:text |row-dispersive) (:id |B1zod_ybfG) (:by |root) (:at 1513318514526)
|r $ {} (:type :expr) (:id |HklT_OkWzz) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJiKVIKnKsjW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r12Y4UK2Fssb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1TFVLKhKoo-) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SkRK4UFhtjsZ) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |rkkcEIt2tii-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyx5EUKnFssZ) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJWqE8thYojb) (:text ||center) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |HkfcVIthKsjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ7cEUF2YjsW) (:text |:justify-content) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyNqVIt3FjjZ) (:text ||space-around) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |B1H5E8Y2Ksi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkIcVIKhFisZ) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkv54IKnKio-) (:text ||row) (:by |root) (:at 1506675837748)
|flex $ {} (:type :expr) (:id |SkktELY3KsjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryxKVIKnYoib) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SkbY4LFnYjj-) (:text |flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |S1zKVIF3tjib) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H17K48KhYjs-) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |SJNYEUtnYjjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1BYNIKnFisW) (:text |:flex) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJLFN8Y2tiib) (:text |1) (:by |root) (:at 1506675837748)
|row-center $ {} (:type :expr) (:id |SJwFNUt3Yjsb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1_FVUK3tjoZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1YKELt3tsjW) (:text |row-center) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |S19YVUY2Kssb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rJiKVIKnKsjW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |r12Y4UK2Fssb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1TFVLKhKoo-) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SkRK4UFhtjsZ) (:text ||flex) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |rkkcEIt2tii-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hyx5EUKnFssZ) (:text |:align-items) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJWqE8thYojb) (:text ||center) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |HkfcVIthKsjW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJ7cEUF2YjsW) (:text |:justify-content) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyNqVIt3FjjZ) (:text ||center) (:by |root) (:at 1513318501523)
|x $ {} (:type :expr) (:id |B1H5E8Y2Ksi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkIcVIKhFisZ) (:text |:flex-direction) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkv54IKnKio-) (:text ||row) (:by |root) (:at 1506675837748)
|button $ {} (:type :expr) (:id |HJO5NLF3tjsZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJYqVIY3YssZ) (:text |def) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r1954UthYoob) (:text |button) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |Syic4LY2FsiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkhcVIF3tijb) (:text |{}) (:by |root) (:at 1506675837748)
|yr $ {} (:type :expr) (:id |H1L3VIYntojZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJvhVLYnYjsb) (:text |:display) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyuhELKhtjsZ) (:text ||inline-block) (:by |root) (:at 1506675837748)
|yT $ {} (:type :expr) (:id |rknjV8Y3Fjo-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BJToNUt2Kso-) (:text |:color) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1557076453214) (:id |T2lkuPDafH)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076453214) (:text |hsl) (:id |2LouJUWXVY)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076453214) (:text |200) (:id |CfJo-b6LGz)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076453214) (:text |100) (:id |peIILf6GYE)
|v $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076453214) (:text |76) (:id |HQfoYmCakX)
|j $ {} (:type :expr) (:id |S1aqE8K3YssW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByA94UF3tjob) (:text |:min-width) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r11iVUthKjiW) (:text ||80px) (:by |root) (:at 1506675837748)
|x $ {} (:type :expr) (:id |H1UoE8Y2tsiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkPiNLthKsoW) (:text |:text-align) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJ_jEIK2Kio-) (:text ||center) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |SJQjEUthKsoW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |BkVoE8KhtjjW) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HyHi4UKnFosb) (:text |14) (:by |root) (:at 1506675837748)
|yj $ {} (:type :expr) (:id |rJQ3VUK3tji-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ43VUYnFsjb) (:text |:cursor) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJr3NIKhKos-) (:text ||pointer) (:by |root) (:at 1506675837748)
|yD $ {} (:type :expr) (:by |root) (:at 1526747777953) (:id |BJg5tf06Cf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526747783694) (:text |:border) (:id |BJg5tf06Cfleaf)
|j $ {} (:type :expr) (:by |root) (:at 1526747784475) (:id |rkbxqz06Az)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526747785506) (:text |str) (:id |rJxl9zATRz)
|j $ {} (:type :leaf) (:by |root) (:at 1526747787925) (:text "|\"1px solid ") (:id |SJfqMC6CG)
|r $ {} (:type :expr) (:by |bjmr3HZle) (:at 1557076449744) (:id |NnF08HVBRo)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076449744) (:text |hsl) (:id |Li64Be53nF)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076449744) (:text |200) (:id |4yVUDpgOx7)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076449744) (:text |100) (:id |hJ2OBhJvAU)
|v $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076449744) (:text |76) (:id |tCYzR7gMMY)
|yyj $ {} (:type :expr) (:by |bjmr3HZle) (:at 1534871032508) (:id |p9F5ykBRyH)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1534871036254) (:text |:background-color) (:id |p9F5ykBRyHleaf)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1534871037037) (:text |:white) (:id |Oe5TMsxyE9)
|yyT $ {} (:type :expr) (:id |SJGT4UYnKssZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |Hk764UKhFooW) (:text |:vertical-align) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJ4pVLKnKsib) (:text |:top) (:by |root) (:at 1506675837748)
|t $ {} (:type :expr) (:by |root) (:at 1526747646503) (:id |Syg8-MRT0M)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1526747652850) (:text |:border-radius) (:id |Syg8-MRT0Mleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1526747656050) (:text "|\"16px") (:id |Bkza-GR6Af)
|r $ {} (:type :expr) (:id |HJloNLK2Fis-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryWsN8tnFjs-) (:text |:line-height) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rJGjV8Y2Yji-) (:text ||30px) (:by |root) (:at 1526748088919)
|yy $ {} (:type :expr) (:id |ry16VLYhYojW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ryx6VUKhKsoZ) (:text |:outline) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyW6EUtnYjoW) (:text |:none) (:by |root) (:at 1506675837748)
|yv $ {} (:type :expr) (:id |HkFhVUt2FisW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ry52E8t2YsjW) (:text |:padding) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BJihVLFhFoi-) (:text "||0 8px") (:by |root) (:at 1506675837748)
:proc $ {} (:type :expr) (:id |B1jd7Lt2KssW) (:by nil) (:at 1506675837748) (:data $ {})
|respo-ui.comp.sidebar $ {}
:ns $ {} (:type :expr) (:id |Bk41_8t2YoiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SJBk_IF2YjsW) (:text |ns) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyUyu8Y3tos-) (:text |respo-ui.comp.sidebar) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |BJDyOLFnKji-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyuJ_8Yntsj-) (:text |:require) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |Skg_k1UzZz) (:by |root) (:at 1506677135435)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Hyev9b5osb) (:by |root) (:at 1506677136254)
|j $ {} (:type :leaf) (:text |respo.core) (:id |r1-d9bcjo-) (:by |root) (:at 1540954181487)
|r $ {} (:type :leaf) (:text |:refer) (:id |r1g3cbcsiW) (:by |root) (:at 1506677140188)
|v $ {} (:type :expr) (:id |Bku3cZ9jsb) (:by |root) (:at 1506677140385)
:data $ {}
|T $ {} (:type :leaf) (:text |[]) (:id |Hkv3qZ9ji-) (:by |root) (:at 1506677142339)
|j $ {} (:type :leaf) (:text |defcomp) (:id |HkJsZqiiZ) (:by |root) (:at 1506677143803)
|r $ {} (:type :leaf) (:text |div) (:id |SJfeiZcoib) (:by |root) (:at 1506677145301)
|v $ {} (:type :leaf) (:text |<>) (:id |BkXjZqioZ) (:by |root) (:at 1506677146898)
|x $ {} (:type :expr) (:by |root) (:at 1519834441198) (:id |H1ZbIrLE_G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834442199) (:text |[]) (:id |H1ZbIrLE_Gleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1519834446679) (:text |respo-ui.core) (:id |SybMUr8VOf)
|r $ {} (:type :leaf) (:by |root) (:at 1519834447274) (:text |:as) (:id |Bkbv8SINOf)
|v $ {} (:type :leaf) (:by |root) (:at 1519834447679) (:text |ui) (:id |BJrvIHIN_G)
|y $ {} (:type :expr) (:by |root) (:at 1519834857269) (:id |HJl-lwLV_G)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834857678) (:text |[]) (:id |HJl-lwLV_Gleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1519834859604) (:text |hsl.core) (:id |Hy-fxP84OG)
|r $ {} (:type :leaf) (:by |root) (:at 1519834860275) (:text |:refer) (:id |Hyg4lwUNOG)
|v $ {} (:type :expr) (:by |root) (:at 1519834860528) (:id |SJrxwIVdM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834860698) (:text |[]) (:id |ryPEgwU4uz)
|j $ {} (:type :leaf) (:by |root) (:at 1519834861435) (:text |hsl) (:id |S1GrxwLVOz)
|yT $ {} (:type :expr) (:by |root) (:at 1520614339997) (:id |HyxhajNgtf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614340743) (:text |[]) (:id |HyxhajNgtfleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1520614361659) (:text |respo.comp.space) (:id |rJb6pj4lFz)
|r $ {} (:type :leaf) (:by |root) (:at 1520614349010) (:text |:refer) (:id |ryBbRoNgFz)
|v $ {} (:type :expr) (:by |root) (:at 1520614350167) (:id |rkUAoEetG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614349507) (:text |[]) (:id |HJMrRjVeFz)
|j $ {} (:type :leaf) (:by |root) (:at 1520614351004) (:text |=<) (:id |Syl8As4lFz)
:defs $ {}
|comp-sidebar $ {} (:type :expr) (:id |SynZOUK2KisW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByTb_LY2Fjo-) (:text |defcomp) (:by |root) (:at 1506677161043)
|j $ {} (:type :leaf) (:id |B10bO8F2tsi-) (:text |comp-sidebar) (:by |root) (:at 1506675837748)
|n $ {} (:type :expr) (:id |B1TjWqiob) (:by |root) (:at 1506677156547)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834292598) (:text |router-name) (:id |ryuhVUEOM)
|r $ {} (:type :expr) (:id |SJ0sbcjjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1jGOUt3KsjZ) (:text |div) (:by |root) (:at 1506675837748)
|n $ {} (:type :expr) (:by |root) (:at 1520614300655) (:id |ryrioVgFf)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1520614303317) (:text |div) (:id |rkIjsVxFG)
|L $ {} (:type :expr) (:by |root) (:at 1520614303734) (:id |rkdsiElYf)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614304097) (:text |{}) (:id |H1QDosExtf)
|j $ {} (:type :expr) (:by |root) (:at 1520614304788) (:id |BJlKjoEgYM)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614305574) (:text |:style) (:id |SkFjoElKM)
|j $ {} (:type :expr) (:by |root) (:at 1520614306123) (:id |HkWcjoNlFz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614320918) (:text |{}) (:id |SklqjjNetM)
|j $ {} (:type :expr) (:by |root) (:at 1520614321366) (:id |Sy7tnsEgKz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614325068) (:text |:text-align) (:id |HyGY2i4ltG)
|j $ {} (:type :leaf) (:by |root) (:at 1520614326137) (:text |:right) (:id |H1V6nsNxtz)
|T $ {} (:type :expr) (:id |BJg1joEgKG) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SyMgv8F2Yijb) (:text |div) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |SkmevUK2toiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJ4gDUY2YojW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |SJSlPIKnFijW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1LlwUKnFisZ) (:text |:style) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |S1PgP8Y2KioZ) (:text |style-logo) (:by |root) (:at 1506675837748)
|yT $ {} (:type :expr) (:id |HyPNOUYnKssZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1u4OLt3FosZ) (:text |render-entry) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyKEuUt2FsiW) (:text ||layouts.html) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |r19V_UFhYjsb) (:text ||Layouts) (:by |root) (:at 1506675837748)
|v $ {} (:type :leaf) (:by |root) (:at 1519834330565) (:text |router-name) (:id |BJWz1rLE_M)
|yt $ {} (:type :expr) (:id |SkbucJAbdG) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HypVOLt3tojb) (:text |render-entry) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |r104_IKhKisZ) (:text ||components.html) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |HJ1Bd8F3tjoZ) (:text ||Components) (:by |root) (:at 1506675837748)
|v $ {} (:type :leaf) (:by |root) (:at 1519834334427) (:text |router-name) (:id |S1lLkB8EOG)
|p $ {} (:type :expr) (:by |root) (:at 1520614331677) (:id |SJEaoNxKG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1520614332862) (:text |=<) (:id |SJEaoNxKGleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1520614334852) (:text |nil) (:id |HkL6jEgFf)
|r $ {} (:type :leaf) (:by |root) (:at 1520614335422) (:text |16) (:id |Hyev6s4eFG)
|ysT $ {} (:type :expr) (:id |HygSsJ0-Of) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H1Cmu8t2YjjW) (:text |render-entry) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyJEd8tnYioZ) (:text ||fonts.html) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |H1xVO8F3Kijb) (:text ||Fonts) (:by |root) (:at 1506675837748)
|v $ {} (:type :leaf) (:by |root) (:at 1519834333483) (:text |router-name) (:id |HkZS1HUN_z)
|j $ {} (:type :expr) (:id |Hy2fuIY2Fisb) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HJpMdUFnKojZ) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |ByCfd8FnFoi-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |H11m_UKnKsjW) (:text |:style) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |HJ_K8U4Oz) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1J8OLtnYjj-) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |HJlLdLY2YsoW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1b8OIF2FssZ) (:text |:width) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SJzIuUKhYsjZ) (:text |160) (:by |root) (:at 1519834724355)
|r $ {} (:type :expr) (:by |root) (:at 1519834754332) (:id |SJ-9FIIEuG)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834756238) (:text |:margin-right) (:id |SJ-9FIIEuGleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1519834905678) (:text |24) (:id |BkBnYI84uM)
|ys $ {} (:type :expr) (:id |B1bhq1CW_f) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyXEOUY2Yio-) (:text |render-entry) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ryN4_UKnKss-) (:text ||widgets.html) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |r1S4uLt2Fio-) (:text ||Widgets) (:by |root) (:at 1506675837748)
|v $ {} (:type :leaf) (:by |root) (:at 1519834331671) (:text |router-name) (:id |S1bQkBU4uM)
|r $ {} (:type :expr) (:id |SJQm_8K2Ysob) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1NQdIYntisW) (:text |render-entry) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |B1SQuItnKosZ) (:text ||index.html) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |BJ8XuUY3YiiZ) (:text "||Respo UI") (:by |root) (:at 1519834817688)
|v $ {} (:type :leaf) (:by |root) (:at 1519834328668) (:text |router-name) (:id |Bk3CV8E_G)
|yf $ {} (:type :expr) (:id |wpRsBF-Ma) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1u4OLt3FosZ) (:text |render-entry) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |SyKEuUt2FsiW) (:text ||lay-out.html) (:by |bjmr3HZle) (:at 1600160376082)
|r $ {} (:type :leaf) (:id |r19V_UFhYjsb) (:text "||Lay Out") (:by |bjmr3HZle) (:at 1600160382761)
|v $ {} (:type :leaf) (:by |root) (:at 1519834330565) (:text |router-name) (:id |BJWz1rLE_M)
|on-route $ {} (:type :expr) (:id |S10xOIthtss-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SkJZu8Y2Fisb) (:text |defn) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |Hkxbu8K3Foib) (:text |on-route) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |ryZZu8Yntio-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |B1zZuItnKsjb) (:text |path-name) (:by |root) (:at 1506675837748)
|v $ {} (:type :expr) (:id |SkmbdIK3FiiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1E-dIthFojZ) (:text |fn) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |HySZ_ItnFsjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1U-uIK2Yjs-) (:text |e) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |rkvZ_8Y2YsoW) (:text |dispatch!) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:text |mutate!) (:id |Hye76-qisZ) (:by |root) (:at 1506677180407)
|r $ {} (:type :expr) (:id |BJdWOUK3KiiZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HkY-_8tnYjoW) (:text |dispatch!) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |HycbOIKhYoob) (:text |:router/nav) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:id |S1j-dIFntojZ) (:text |path-name) (:by |root) (:at 1506675837748)
|render-entry $ {} (:type :expr) (:id |rktOuIKntjjZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ry9O_UFnYijb) (:text |defn) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |BkiddUY2Kio-) (:text |render-entry) (:by |root) (:at 1506675837748)
|r $ {} (:type :expr) (:id |Hk2udIt3KojZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |SkpuuIt2YisW) (:text |path) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ry0d_8K2FiiW) (:text |title) (:by |root) (:at 1506675837748)
|r $ {} (:type :leaf) (:by |root) (:at 1519834337747) (:text |router-name) (:id |SylY1H8Euf)
|v $ {} (:type :expr) (:id |r1xKdLtnKijW) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |r1bYuIKnKssW) (:text |div) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |BJMK_UY2Yso-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |HyQKdIY2tojW) (:text |{}) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:id |H14YuLKhtioZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1SKOIYhtio-) (:text |:style) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |root) (:at 1519834340100) (:id |Skb3kBINOG)
:data $ {}
|D $ {} (:type :leaf) (:by |root) (:at 1519834341115) (:text |merge) (:id |HJGnkHL4OM)
|T $ {} (:type :expr) (:id |SJTeDIE_M) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |S1jIOUYnFosZ) (:text |{}) (:by |root) (:at 1506675837748)
|yr $ {} (:type :expr) (:by |root) (:at 1519834706073) (:id |Hyl9U88Nuz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834708246) (:text |:text-align) (:id |Hyl9U88Nuzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1519834709836) (:text |:right) (:id |By8nUULE_z)
|yT $ {} (:type :expr) (:by |root) (:at 1519834406453) (:id |H1eR7SUVuz)
:data $ {}
|T $ {} (:type :leaf) (:by |root) (:at 1519834410007) (:text |:font-weight) (:id |H1eR7SUVuzleaf)
|j $ {} (:type :leaf) (:by |root) (:at 1519834410802) (:text |100) (:id |SyHG4SI4OG)
|j $ {} (:type :expr) (:id |HyhI_LY3tji-) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |ByaU_UK2Yji-) (:text |:color) (:by |root) (:at 1506675837748)
|j $ {} (:type :expr) (:by |bjmr3HZle) (:at 1557076546326) (:id |QOhNUoCKfw)
:data $ {}
|T $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076546326) (:text |hsl) (:id |NT5pQtw9Fe)
|j $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076546326) (:text |0) (:id |eoH85UEVpQ)
|r $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076546326) (:text |0) (:id |CfdGKIR_xe)
|v $ {} (:type :leaf) (:by |bjmr3HZle) (:at 1557076546326) (:text |20) (:id |0W8hDUE3ei)
|x $ {} (:type :expr) (:id |r1HwdUKhYojZ) (:by nil) (:at 1506675837748)
:data $ {}
|T $ {} (:type :leaf) (:id |rkUvO8t2KjiW) (:text |:font-size) (:by |root) (:at 1506675837748)
|j $ {} (:type :leaf) (:id |ryPwuLF2YjoZ) (:text |20) (:by |root) (:at 1519834473461)