This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalcit.cirru
4778 lines (4777 loc) · 437 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 $ {}
|B1y7Rc-Zz $ {} (:id |B1y7Rc-Zz) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
|root $ {} (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:avatar nil) (:theme :star-trail)
:ir $ {} (:package |app)
:root $ {} (:ns |main) (:def |main!)
:files $ {}
|app.vm $ {}
:ns $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1555177196453) (:id |70qGHGEI07)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177196453) (:text |ns) (:id |VyVZQBlof5)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177196453) (:text |app.vm) (:id |RRFBK8fcN8)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1555177669705) (:id |34bsHxKHjw)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177671111) (:text |:require) (:id |g-HzRiwrE)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1555177671338) (:id |WynBIrnFNH)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177671571) (:text |[]) (:id |ErhkEKnvmT)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177676088) (:text |app.config) (:id |lS6IEebpYp)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177676493) (:text |:as) (:id |wahUc6iGoW)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177677271) (:text |config) (:id |KTrf--DMD)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078840740) (:id |i2Kjwglai)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078841914) (:text |[]) (:id |i2Kjwglaileaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078846772) (:text |respo.util.list) (:id |6ponmW-Fh5)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078847645) (:text |:refer) (:id |oJU7USFSTe)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078847961) (:id |jTj8Gw9e7O)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078848115) (:text |[]) (:id |c7i_nDVmKn)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078849576) (:text |map-val) (:id |TX9UwNde3M)
:defs $ {}
|add-percent $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |dEDZ_Mhzx8)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078823882) (:text |defn) (:id |uMCGpoTPi7)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |add-percent) (:id |3ALxa61TrQ)
|n $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078827751) (:id |TXsM3_mDU)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078825746) (:text |book) (:id |OE2nx1y4j)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |btZFAGcnsd)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |assoc) (:id |X--KKo19_Z)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |book) (:id |h8B0gTEUWu)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |:percent) (:id |-Hf_4zLg1x)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |1m8w2Au_VE)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |str) (:id |Fi-f63Lp2M)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |blcrHddDks)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |.toFixed) (:id |-tXWDgbk97)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |yWuZIDEBnc)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |*) (:id |NrIs7r09zT)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |100) (:id |HBs-H0JWey)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |753BZUNdPL)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |/) (:id |CoGbwvkEcrV)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |2u6lJD-TkwI)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |:progress) (:id |XAWn0fWQnR2)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |book) (:id |9YhhiRaKVh3)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078822341) (:id |C4LjswmZEVo)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |:total-pages) (:id |Zva4nWVC7Gl)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text |book) (:id |-6v4vbjaWGl)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078822341) (:text "|\"%") (:id |OGDdXckoJ3I)
|state-book-overview $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236030757) (:id |P1mUNnDr1Z)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236031610) (:text |def) (:id |-2UIjFOR3J)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236030757) (:text |state-book-overview) (:id |fzjyV2UDgt)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |hjEeucmlXT)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |{}) (:id |1zV81F8XtE)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |AdXECQ_xXR)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |:init) (:id |3FRT0JDAj8)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |qY5zZ76Djh)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |fn) (:id |rdQpBc9SlM)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |Xe275ai--m)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |props) (:id |HgUrRPwa9a)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |state) (:id |tdu7vs2tXl)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242067140) (:id |tfZN0NjEsy)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242068469) (:text |or) (:id |CzRlfJjLA)
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |state) (:id |oym7E5TH05)
|b $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558248440515) (:text |props) (:id |kMqjEnyiV)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242069424) (:id |t7lXL3zJ3V)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242069968) (:text |{}) (:id |0fmp7ZRj2d)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242070413) (:id |O5uRpAgm49)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242076072) (:text |:show-remove?) (:id |x53vZ8bGiE)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242077156) (:text |false) (:id |gz8l79BFg)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242077525) (:id |o_Uo8N7_d)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242081040) (:text |:show-editor?) (:id |o_Uo8N7_dleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242081672) (:text |false) (:id |WnQqWXT1iE)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242082719) (:id |pJlBC7zlJ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242084460) (:text |:progress) (:id |pJlBC7zlJleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242096769) (:text |0) (:id |SQlV8Ux0P)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |b3kNt0cZWQ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |:update) (:id |dz5MDRwKHD)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |LXalnuAoMKa)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |fn) (:id |4aYU8qI2YKc)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236032225) (:id |X4aZFgz6IFX)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |d!) (:id |odoGtWVahuQ)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |op) (:id |DaT937vyESr)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |context) (:id |muZlr-_cuBA)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |options) (:id |bNV8Cu-37_I)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236032225) (:text |state) (:id |isJTq1FxvcW)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242169259) (:text |mutate!) (:id |iQ0EMgwZsNQ)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241514431) (:id |Oqe8nI9j2w)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241515183) (:text |case) (:id |Oqe8nI9j2wleaf)
|uw $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249693270) (:id |c8RS4Fg-c3)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249693270) (:text |:cancel-progress) (:id |rWWJwWP8zE)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249693270) (:id |7Ed0MQIBKj)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249693270) (:text |mutate!) (:id |VxcDpB8oyT)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249693270) (:id |mBlXOZ-MCC)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249693270) (:text |assoc) (:id |DD8NKiOFv2)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249693270) (:text |state) (:id |7FIv6ScbnK)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249693270) (:text |:show-editor?) (:id |yLHffpJNX7)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249693270) (:text |false) (:id |ktQRT130Md)
|un $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |A-FjNbs1tY)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:confirm-remove) (:id |gJ4a6iVv0k)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |0ObcZZ3JDa)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |do) (:id |9TaDaZlE2e)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |V7i-PQhOW1)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |d!) (:id |GRw2vA-Ned)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:book/remove) (:id |Ue_lqGdGGb)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |mrk6QvCLNl)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:param) (:id |4vYA07awTS)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |options) (:id |hHlkvByZHJ)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |3L3BoILp8R)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |mutate!) (:id |nB4gWwAgEw)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |umSi5zPLN8)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |assoc) (:id |30I004onYH)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |state) (:id |hKiOuWPLMqB)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:show-remove?) (:id |7r6PtV2GLu-)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |false) (:id |O2jxCEL5bac)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |8JoX5juSuEW)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |d!) (:id |QpNtQFVqT5w)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:router/change) (:id |UqaMdnYjwct)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |T0vRE9mb6KG)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |{}) (:id |uu9ha3VMNlq)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249606479) (:id |0YPQwLbavFH)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:name) (:id |oaKqUufsbKo)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249606479) (:text |:home) (:id |ceJMU6ZBUZk)
|uT $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241550938) (:id |gUN1LhSauO)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249640116) (:text |:show-progress-editor) (:id |XpOBp3QYGB)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241550938) (:id |yfEkr3Sdo9)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241550938) (:text |mutate!) (:id |hDBY3MO4Mu)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242174175) (:id |S7IyYbo-fT)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242175116) (:text |assoc) (:id |O1Y185P9a9)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242175692) (:text |state) (:id |GxA3We0KIp)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242178240) (:text |:progress) (:id |V6k-00igZ4)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242178699) (:id |89O6b8PaMp)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242180138) (:text |:param) (:id |QvdYR1qj5)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245396080) (:text |options) (:id |p-Oc0pJEey)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242186784) (:text |:show-editor?) (:id |t_XJ6SVC5)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245034670) (:text |true) (:id |NzfzHr3ruT)
|uf $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249618890) (:id |arZc4L2EuT)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249618890) (:text |:show-remove) (:id |8Pq_BiIFiS)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249618890) (:id |4RzyFxgFkN)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249618890) (:text |mutate!) (:id |7Fw1wbhGV6)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249618890) (:id |Nh03Rq8SBr)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249618890) (:text |assoc) (:id |W-BAV8ccSK)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249618890) (:text |state) (:id |3NXy3UHq_V)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249618890) (:text |:show-remove?) (:id |UFPn59nCnF)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249618890) (:text |true) (:id |xaG8n_mnpq)
|uh $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249682995) (:id |ZM0NzghX5R)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |:progress) (:id |0oNztE3SXB)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249682995) (:id |4wziEv8Qoo)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |mutate!) (:id |t3eZQlCeCU)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249682995) (:id |SXmEzC1s4O)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |assoc) (:id |IfpaX59P9q)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |state) (:id |nKnV-Pl23i)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |:progress) (:id |BIyjGm-HZy)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249682995) (:id |hB8VnHJGzi)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |:value) (:id |M_Bqsa8TI-)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249682995) (:text |options) (:id |EYtCfF2QgF)
|uj $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |s6xzDYb7aL)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249581657) (:text |:submit-progress) (:id |-p1LKYiO-S)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |_HVgLJF-UB)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |do) (:id |mBuOORTzCa)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |KpGlSd74wa)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |d!) (:id |XBGU1MM_P6)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |:book/edit-progress) (:id |kDLC7i_KdR)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |U6jY0rG8X7)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |{}) (:id |oHq5I6Sdgf)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |k-Gi71-n6s)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |:id) (:id |whpU5XOU6q)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242342034) (:id |fNT24IPQpi)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242343102) (:text |:param) (:id |X5pSqlTV-_)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242346543) (:text |options) (:id |bRE7Tj1hAw)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |JlX7JfP_CX)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |:progress) (:id |yiX448kxXx)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242379384) (:id |WJeVYFwxTP)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245358552) (:text |:progress) (:id |QqGn6-20q)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242383384) (:text |state) (:id |8n2arzmnU)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241556072) (:id |vThTgri6j-P)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241556072) (:text |mutate!) (:id |RhNkGbJUeO_)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242199311) (:id |P4gcbd4NfZ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242200461) (:text |assoc) (:id |_xUfx0BCrc)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242201312) (:text |state) (:id |JyD33KONnJ)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242204549) (:text |:show-editor?) (:id |LPUNbE3EvA)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242205261) (:text |false) (:id |iXCsZOdq8C)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241515436) (:text |op) (:id |mFiPHTUV2N)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241518265) (:id |Mqad5XVcE9)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241519142) (:text |println) (:id |Mqad5XVcE9leaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241523217) (:text "|\"Unhandled op") (:id |6tQYbL0t6k)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241524335) (:text |op) (:id |kC1s4vOeW9)
|ut $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249688675) (:id |ZkvrXgB5gk)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249688675) (:text |:cancel-remove) (:id |5pPNm8ipHz)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249688675) (:id |Cf1zpSZ8u-)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249688675) (:text |mutate!) (:id |8xxXfm83Hc)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249688675) (:id |QBhn85n3fn)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249688675) (:text |assoc) (:id |X6qhHBkqHz)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249688675) (:text |state) (:id |14OCpQcZh8)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249688675) (:text |:show-remove?) (:id |lPXcD_7FHw)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249688675) (:text |false) (:id |p3Bn6O_8ZN)
|o $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |ugFQGW26zC)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:open-editor) (:id |FXXPaI5Txc)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |uqvDAEq5AJ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |d!) (:id |9XYDLRpfhU)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:router/change) (:id |o9O_6Ut4Fd)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |hK8WQjzOZZ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |{}) (:id |_xL1FLqYnr)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |s05n5w_lq1)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:name) (:id |p3_txcKAii)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:edit-book) (:id |w7Q5ma116Q)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |avuu6PYSFr)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:data) (:id |j3xjSRPCje)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |_k1mnYhsTY)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:id) (:id |inOmbhLvw4)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249672052) (:id |JZKuUrlhx35)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |:param) (:id |lFQMiupuE4s)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249672052) (:text |options) (:id |XX1uGD972ow)
|state-profile $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236087164) (:id |_sHHt1ZxpN)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236087728) (:text |def) (:id |Y0fqnJsS1o)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236087164) (:text |state-profile) (:id |qBCDGQtaJs)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |haMOqlfpHy)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |{}) (:id |nSIbj4QPM1)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |_STgsMW76t)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |:init) (:id |ukNpETQSse)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |Fhk0mUBPj-)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |fn) (:id |XoiCzIRmMt)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |T9X-ui-wIL)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |props) (:id |UiLv2on7Bv)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |state) (:id |5GKF4O3MTr)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |state) (:id |-1sBIY5uQj)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |xwUrQcKn4o)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |:update) (:id |s0XM5CYvkY)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |VVjBTAy1Dl)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |fn) (:id |bqioDeadUm)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236088827) (:id |iAEvygsSmv)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |d!) (:id |b77uSxDvvzu)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |op) (:id |E7culAk8Zov)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |context) (:id |ZRgwbzrxQ4-)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |options) (:id |e8C_DfF_-oZ)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |state) (:id |5nsFShAJ6F8)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236088827) (:text |m!) (:id |2qfSB-9kYNV)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241335726) (:id |1dzvrNfr08)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241337833) (:text |case) (:id |1dzvrNfr08leaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241338302) (:text |op) (:id |MF8csNSLVo)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241361944) (:id |NerW_04xvG)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |:logout) (:id |xUFlhxl28E)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241361944) (:id |pzER27DynS)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |do) (:id |1Lsf30eXOF)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241361944) (:id |_Ejt_Mw3CF)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |d!) (:id |HOrrJxLM46)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |:user/log-out) (:id |lC6qPSIFNR)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |nil) (:id |bI_l2LRNXT)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241361944) (:id |0-WIFxmAr3)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |.removeItem) (:id |BNzeCi9vSM)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |js/localStorage) (:id |DkSCeAVbbV)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241361944) (:id |IWLFYdPq7D)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |:storage-key) (:id |owZXn04iuw)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241361944) (:text |config/site) (:id |JYNnyn4dJz)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241340020) (:id |i-YftACViE)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241341017) (:text |println) (:id |i-YftACViEleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241344667) (:text "|\"Unhandled op") (:id |mYmHKQKQiu)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241345703) (:text |op) (:id |Ze6mhtZLYn)
|get-view-model $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1555177201040) (:id |rnYgi6baW1)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177201040) (:text |defn) (:id |4ONAPON4Bl)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177201040) (:text |get-view-model) (:id |jArXoQmHnZ)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1555177201040) (:id |It46DTqVdy)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1555177204047) (:text |store) (:id |KF4G6Mi2LR)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245252192) (:text |states) (:id |YVcaTHlWv)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1556126141543) (:id |phA4RtKu3)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1556126142388) (:text |{}) (:id |M7xZEkmOyz)
|P $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1556126149683) (:id |c5uAGNRda)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1556126150876) (:text |:site) (:id |c5uAGNRdaleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1556126152958) (:text |config/site) (:id |wI7ZFHj7pQ)
|R $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1556126153576) (:id |tc-61UF6L)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1556126154377) (:text |:store) (:id |tc-61UF6Lleaf)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558245802603) (:id |tuzFTO4Wy)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245803254) (:text |if) (:id |Vw_C1gVL-b)
|L $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558245803505) (:id |D3QrzlA-cj)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245806942) (:text |nil?) (:id |axX_pkbADR)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245807596) (:text |store) (:id |3cesDumvL2)
|P $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245810106) (:text |nil) (:id |6oFiPgr2Fi)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078617754) (:id |jwVDViLfW)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078621052) (:text |update) (:id |tBUAuMwtE)
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1556126155644) (:text |store) (:id |-pDwvappT)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078623028) (:text |:router) (:id |3m8TMO-9r)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078623520) (:id |euzOxURzJ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078624001) (:text |fn) (:id |oPBJ8B-0UL)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078624307) (:id |vvrT0PZq-K)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078626328) (:text |router) (:id |GYCLwWXEtH)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078627744) (:id |-gT8QACjV-)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078628400) (:text |case) (:id |-gT8QACjV-leaf)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078628783) (:id |5y9MOLPSO)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078629611) (:text |:name) (:id |1poE_KgUyh)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078630362) (:text |router) (:id |8uU8HyNSAy)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078630920) (:id |Aey7s-Ulod)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078641034) (:text |:home) (:id |Aey7s-Ulodleaf)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078655409) (:id |RUyAl_zvAE)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078663451) (:text |update) (:id |GN9Bkttzl)
|L $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078666487) (:text |router) (:id |yWPdbhQeR)
|P $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078668649) (:text |:data) (:id |JbRfxZ4J6)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078669233) (:id |12r1-xR6fH)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078673234) (:text |fn) (:id |BlWafXOy1)
|L $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078673573) (:id |vyc7P7-Ls)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078676188) (:text |data) (:id |EPE6Xl1w4P)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078677264) (:id |31mdeUBF6T)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078678303) (:text |->>) (:id |kryT3D3rt)
|L $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078678997) (:text |data) (:id |FKVxVQGky5)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078649251) (:id |Nmcxgjj2Yi)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078838684) (:text |map-val) (:id |ZhUXc3c4hF)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078857248) (:text |add-percent) (:id |l9GgonV86h)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078767657) (:id |tWT6kBtRN)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078769390) (:text |into) (:id |tWT6kBtRNleaf)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557078769799) (:id |ZRUV8vShIH)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078770190) (:text |{}) (:id |Bd45Lxb_8)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557078682411) (:text |router) (:id |FBtlRHE__)
|i $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1557163286860) (:id |JjQra4nbdO)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557163287849) (:text |:dev?) (:id |JjQra4nbdOleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1557163292712) (:text |config/dev?) (:id |Wh7Dr4Xpm)
|q $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558245255191) (:id |BXbXl8-2L7)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245257193) (:text |:states) (:id |BXbXl8-2L7leaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558245258043) (:text |states) (:id |RdsSJcT5wJ)
|state-book-form $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235996004) (:id |Lf1SubqoYY)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997070) (:text |def) (:id |2x0aOZDwWD)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235996004) (:text |state-book-form) (:id |s2lL3y81ro)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |tHYYDY1eTg)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |{}) (:id |VgZKrX5rQw)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |pT8UUe-usb)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |:init) (:id |Xh8JXw3MtW)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |wadL9D4IAD)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |fn) (:id |L8IkHS2mav)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |mDmXi6Da0P)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |props) (:id |M7fJLmjWKM)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |state) (:id |iC1Jz1OcYh)
|n $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241913785) (:id |UhxkVO1Rv)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241914776) (:text |println) (:id |UhxkVO1Rvleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241918181) (:text "|\"book form props") (:id |Djum4qiGHt)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241919560) (:text |props) (:id |H9cbUxOKa)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241776557) (:id |j8r-ZcTp0)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241777396) (:text |or) (:id |ftXj1dWcov)
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |state) (:id |FK_reU3kkc)
|b $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241899447) (:text |props) (:id |6bVHOc8KcT)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241778191) (:id |slBCS-IUdZ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241778523) (:text |{}) (:id |xCSW3Z2DZM)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241779063) (:id |KM6zPb-Mvf)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241801376) (:text |:name) (:id |s0eiHhVlS0)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241802079) (:text "|\"") (:id |oBjkGIvzK3)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241802931) (:id |SEK2M9-VYg)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241806517) (:text |:total-pages) (:id |SEK2M9-VYgleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241807905) (:text |0) (:id |HzhM_TTWK)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241808445) (:id |4U3R7KBaSr)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241810022) (:text |:progress) (:id |4U3R7KBaSrleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241810649) (:text |0) (:id |HT76Ozb26g)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |yK9yXDXk4E)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |:update) (:id |1cKO_AlGFz)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |kveK7dq2vC)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |fn) (:id |fvbZ7emm_7)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235997758) (:id |PeWxxIrN_X)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |d!) (:id |67sEDx4o5hj)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |op) (:id |GGoqVqkENuT)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |context) (:id |roqHa7cMBdg)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |options) (:id |L2Si-CvXT0T)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235997758) (:text |state) (:id |xvxRSYS1bgX)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242318841) (:text |mutate!) (:id |h3dqWJKzdy1)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241606456) (:id |8fhYYxK5AB)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241605438) (:text |case) (:id |w_gKvWGRh)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241607060) (:text |op) (:id |80RdGBo01)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241607644) (:id |wXQshI5DfW)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249376033) (:text |:name) (:id |AH0luk2KFK)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241607644) (:id |55b-FojPaz)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241607644) (:text |mutate!) (:id |nnzibCOwbq)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241772952) (:id |DDzNX6AMkF)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241815381) (:text |assoc) (:id |6FMlpvvrD)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241816033) (:text |state) (:id |OUwyeH5QgH)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241818608) (:text |:name) (:id |5JgYNaL6v6)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241819148) (:id |b_KM0hEfx4)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241819800) (:text |:value) (:id |6b7as4ddtS)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241821346) (:text |options) (:id |FbybEbTVk_)
|t $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241630460) (:id |_scUcYpxgy)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249378018) (:text |:total-pages) (:id |mEqofGs9le)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241630460) (:id |38FMRq860g)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241630460) (:text |mutate!) (:id |8XBSPRX9eT)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241831685) (:id |n7GrEUH2gW)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241831685) (:text |assoc) (:id |dcz6ZJhKWy)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241831685) (:text |state) (:id |lp7fFv-1rE)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241835694) (:text |:total-pages) (:id |oBphkwDkYl)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241831685) (:id |xd7Zhzk2t8)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241831685) (:text |:value) (:id |y7ztE4gBq6)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241831685) (:text |options) (:id |t29JORGc3f)
|u $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241635708) (:id |sKdpWWra4d)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249379867) (:text |:progress) (:id |iab_eAPJlC)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241635708) (:id |r1QkDmgy0P)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241635708) (:text |mutate!) (:id |dDWeDIjUwl)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241843109) (:id |dCOAiJQSQ7)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241845018) (:text |assoc) (:id |rcozNl0h7X)
|L $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241847987) (:text |state) (:id |Aw7aexOTF-)
|P $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241851675) (:text |:progress) (:id |pujnrEzHTG)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241635708) (:id |yr52Q7fXeX)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241635708) (:text |:value) (:id |33PdZt4wnO)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241635708) (:text |options) (:id |pimcITD_83)
|uT $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241643592) (:id |AYdO47seHo)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249381750) (:text |:cancel) (:id |J_b6ux8UDM)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558248661796) (:id |C-BTTG6mdS)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558248662340) (:text |do) (:id |hlJfVJltb8)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241643592) (:id |rAq6DYq1zO)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241643592) (:text |d!) (:id |XoKJGTxQZG)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241643592) (:text |:router/change) (:id |6MGhJ1DgwE)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241643592) (:id |WGzRNBgnt2)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241643592) (:text |{}) (:id |RfQK3za5A5)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241643592) (:id |1w-tdoSiRj)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241643592) (:text |:name) (:id |pZeR2ArTvC)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241643592) (:text |:home) (:id |D3zVJZTqsL)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558248662851) (:id |99xq8JiK2c)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558248665089) (:text |mutate!) (:id |99xq8JiK2cleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558248665726) (:text |nil) (:id |7efVanOZZ5)
|uj $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |lgm9ZfYb72)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249383753) (:text |:submit) (:id |hiM60G95yg)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |2pwLzuFW6B)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |let) (:id |Lol-uBVp2i)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |70cx1_8r0M)
:data $ {}
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |q_6W0sEYaX)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |book-data) (:id |I6ly8DA8kR)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241862942) (:text |state) (:id |9chGbpxORn)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |67R0TjiygiB)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |if) (:id |swuBY8uvgE4)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |nzpVTZjTjhx)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |:id) (:id |MuOIxaxHFML)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |book-data) (:id |fPcQPyzMy0j)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |Wthd-P2D0hw)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |d!) (:id |w9VciCEffZH)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |:book/merge) (:id |XeNiF6TpZPB)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |book-data) (:id |mcdEVWN5-lh)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |UahbCIkP_1y)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |d!) (:id |kj33LNRTD_K)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |:book/add) (:id |Bgb2yWx24Z-)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |book-data) (:id |Kie-uR47BwV)
|t $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558248669938) (:id |yKTLcVY4ZT)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558248671031) (:text |mutate!) (:id |yKTLcVY4ZTleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558248671680) (:text |nil) (:id |uRenSGqWyI)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |fzCn027LZMx)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |d!) (:id |QfeZdORJiUX)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |:router/change) (:id |6hvP9pXLbdr)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |Zpm2APjchUn)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |{}) (:id |7tpiA83snY9)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241656452) (:id |9PGhI9K9sCl)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |:name) (:id |uTJp0n9KCpm)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241656452) (:text |:home) (:id |Hicx1nysh65)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241609321) (:id |RXqfw6lRaP)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241610078) (:text |println) (:id |n-6tBMptL5)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241619110) (:text "|\"Unhandled op") (:id |E81MWWwx7Q)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241619390) (:text |op) (:id |CEXcoG6PjK)
|states-manager $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235851473) (:id |NPzByWI2c7)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235853141) (:text |def) (:id |2lxpLRq-uR)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235851473) (:text |states-manager) (:id |DeTDX661GA)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235978932) (:id |-s94c2v5nH)
:data $ {}
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235851473) (:id |eujosp6GW1)
:data $ {}
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235934087) (:text "|\"book-card") (:id |_m5xk8act)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235942113) (:text |state-book-card) (:id |HcktXyoP9c)
|yT $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236094932) (:id |0ch0sQ9GYB)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236096923) (:text "|\"header") (:id |0ch0sQ9GYBleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236100399) (:text |state-header) (:id |7xIA0W8zBk)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235983508) (:id |21Bi7nuC8R)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235989094) (:text "|\"book-form") (:id |21Bi7nuC8Rleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235995303) (:text |state-book-form) (:id |dgA4pxSf_)
|x $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236068484) (:id |AurlLm_-nK)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236071447) (:text "|\"offline") (:id |AurlLm_-nKleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236073750) (:text |state-offline) (:id |ITPWVJTz6)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236020283) (:id |mt44yXcc8P)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236023638) (:text "|\"book-overview") (:id |mt44yXcc8Pleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241990109) (:text |state-book-overview) (:id |KjBEnm3-P)
|yj $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241393593) (:id |BdpPd0KT8)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241396310) (:text "|\"login") (:id |BdpPd0KT8leaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241397943) (:text |state-login) (:id |vuVdsntX5B)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236000272) (:id |23IG6mBMyj)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236008598) (:text "|\"workspace") (:id |23IG6mBMyjleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236012258) (:text |state-workspace) (:id |LtTB-DZK1l)
|y $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236078397) (:id |dgIGWOcClS)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236084409) (:text "|\"profile") (:id |dgIGWOcClSleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236086652) (:text |state-profile) (:id |_aW4Dvs43)
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235979985) (:text |{}) (:id |9JTQG0NUCt)
|state-offline $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236074213) (:id |q9AARUIdxQ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075024) (:text |def) (:id |JlsxAIBTzP)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236074213) (:text |state-offline) (:id |0l_yWVUyJ4)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |mLNv6EXSlb)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |{}) (:id |LaM1g9IUI5)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |Txg99HGoj4)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |:init) (:id |qhNpNvmNXU)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |gaTML3HbJF)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |fn) (:id |903umCsteE)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |Ko7Kv1-PI2)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |props) (:id |b5r3Khe_6q)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |state) (:id |6imjHasYlM)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |state) (:id |Z2fLXQeAO7)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |BUJvkO_CKd)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |:update) (:id |QIpimQ6x50)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |dLoJyCXYCQ)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |fn) (:id |dwG8JxpOEm)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236075642) (:id |SEJATp37ln)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |d!) (:id |dwsNDEa_ESO)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |op) (:id |AZVXXi6hYUT)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |context) (:id |WoJm8dfzmvc)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |options) (:id |hWImY_jL_Jw)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |state) (:id |QXRyEwUO3wO)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236075642) (:text |m!) (:id |p7SM5ddQDkG)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249957013) (:id |KSxZ2i0A5)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249959524) (:text |case) (:id |TvC7jY0Bv)
|L $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249960366) (:text |op) (:id |3mN7T7la3S)
|P $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249962097) (:id |xosShVNmcs)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249963779) (:text |:reconnect) (:id |KfsthytJbj)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558249964961) (:id |J2pImELl9i)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249966918) (:text |d!) (:id |RWQQiz31FE)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249979217) (:text |:effect/connect) (:id |2WDlfUj5q0)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249982479) (:text |nil) (:id |FpyxAvxHT)
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242399725) (:id |A84p9d_wYI)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242402389) (:text |println) (:id |A84p9d_wYIleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242405348) (:text "|\"not handled op") (:id |_14DZKJV3)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242406736) (:text |op) (:id |91o9oGATa)
|state-book-card $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235942857) (:id |07vZ0-uRxT)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235943497) (:text |def) (:id |76vmvXOFY5)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235942857) (:text |state-book-card) (:id |AU7h9DPewg)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235942857) (:id |qy-qFAR9L-)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235944546) (:text |{}) (:id |_I_StZ9I15)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235944880) (:id |C-kqaf6SH6)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235945921) (:text |:init) (:id |KfMkX3CXHU)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235946193) (:id |06sizPNjT1)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235946976) (:text |fn) (:id |b1ppT95RsW)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235947258) (:id |jWOM-i7qIL)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235948135) (:text |props) (:id |Z6AKFH2Zrv)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235948736) (:text |state) (:id |AWDxZK5Qwz)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235949844) (:text |state) (:id |F4AZo_BVo1)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235950688) (:id |zZyaG9LHw)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235951665) (:text |:update) (:id |zZyaG9LHwleaf)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235952049) (:id |d5RdC8cNIY)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235952405) (:text |fn) (:id |GQVsXF5ZZa)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558235952826) (:id |endOCctOvX)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235953753) (:text |d!) (:id |YuUVn7kK4)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235955471) (:text |op) (:id |TYonzkabD2)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235957482) (:text |context) (:id |yP9JZaD37)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235959085) (:text |options) (:id |78pdW-p7Y)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235963860) (:text |state) (:id |V3IFX6Kn1)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558235970231) (:text |m!) (:id |dqJDKGYKV8)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241455040) (:id |mQyxuwXLat)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241456513) (:text |case) (:id |omdQVZswlC)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241456705) (:text |op) (:id |aWcsh4248)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241457183) (:id |DjzbrQubIc)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558249361866) (:text |:view-book) (:id |RSSDyEnhsn)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241457183) (:id |Ze2HYIRH6K)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241457183) (:text |d!) (:id |Z8BUMDGe3o)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241457183) (:text |:router/change) (:id |WPPprd515v)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241457183) (:id |ZMLCBf5N9z)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241457183) (:text |{}) (:id |1ya9jHJnxU)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241457183) (:id |gG1LnIkI3Q)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241457183) (:text |:name) (:id |ILbltUE79u)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241457183) (:text |:book) (:id |nq4xtY9wMs)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241457183) (:id |kepTwK6cw7)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241457183) (:text |:data) (:id |8GqX1NzGy4J)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241752228) (:id |e0of9EPee)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241752762) (:text |:param) (:id |nfytcTpMTPL)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241755673) (:text |options) (:id |sRi6pDlBEW)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241457880) (:id |jND3pjcHa)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241460479) (:text |println) (:id |jND3pjcHaleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241463338) (:text "|\"Unhandled op") (:id |ivSoRdHpt)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241464022) (:text |op) (:id |g6o1zaFas)
|state-header $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236100772) (:id |2_58d5MLmR)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236101447) (:text |def) (:id |NeS6qOzF__)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236100772) (:text |state-header) (:id |Nxsrnr-KH5)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |ZzyprxFF14)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |{}) (:id |WEf9N748Iw)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |FckjwLGMs2)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |:init) (:id |kRrRX2JEjO)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |5Nc7AjJ1v7)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |fn) (:id |aNWW9pmNub)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |cEjutXIl54)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |props) (:id |qol6Q9nk76)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |state) (:id |ijhGW07r4f)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |state) (:id |dSLLUtPoMW)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |XQemAeo1dF)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |:update) (:id |VAmLjqLBUL)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |4heA9w-CG0)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |fn) (:id |n-sQsEXl40s)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236102052) (:id |o5h7kYpfMkE)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |d!) (:id |zjyEduBtNB4)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |op) (:id |N_1Rvhyp7bU)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |context) (:id |Mc4PEUlYEuu)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |options) (:id |Fo2Y8u-YDPF)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |state) (:id |pxk1KJcWSne)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236102052) (:text |m!) (:id |reDKgk1CVmu)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558240993120) (:id |_WBqeqdjX)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241102462) (:text |case) (:id |RJM6LXVG_)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241103376) (:text |op) (:id |xg4leDDTD)
|n $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241319757) (:id |duqO2PbFhS)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241319757) (:text |:home) (:id |YCJGl2A3Zg)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241319757) (:id |KRAYW7XY5a)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241319757) (:text |d!) (:id |gpqdd6ZEQJ)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241319757) (:text |:router/change) (:id |Syx4b6oQEp)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241319757) (:id |8QFg9gSrrm)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241319757) (:text |{}) (:id |Ne84PjOlmM)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241319757) (:id |phNQy_Y4EL)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241319757) (:text |:name) (:id |jsXaGY1CTf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241319757) (:text |:home) (:id |dfqvP5vir9)
|p $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241326623) (:id |JIgTd9tGEj)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241326623) (:text |:profile) (:id |MJ3s9YZQw0)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241326623) (:id |7lksifuElk)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241326623) (:text |d!) (:id |M6IGb6AYnf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241326623) (:text |:router/change) (:id |1J1PeHaiNF)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241326623) (:id |ySatcNWm01)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241326623) (:text |{}) (:id |GPCUDROaVx)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241326623) (:id |_gWqyid6c2)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241326623) (:text |:name) (:id |H-tHKJHqbh)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241326623) (:text |:profile) (:id |i94mCZG-9z)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241104415) (:id |p8YSMdqYaI)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241105792) (:text |println) (:id |dwRFkBk6P)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241111037) (:text "|\"Unhandled op:") (:id |cpt2u4UxQg)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241111366) (:text |op) (:id |-MhtrRN-KB)
|state-login $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241399145) (:id |TubVXi87kY)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241400338) (:text |def) (:id |49CXZ2jXaL)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241399145) (:text |state-login) (:id |b2PSUO-ME-)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |OcJd8Xae25)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |{}) (:id |R7xdI3yvtW)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |gklKbYJLKp)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |:init) (:id |fTISevI42Y)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |OJf1ImVgMc)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |fn) (:id |OqjlADOtYC)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |czJ7ZBZsW_)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |props) (:id |PznkWt3Df0)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |state) (:id |1nIuE8D-FU)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242422383) (:id |u1OESwXTeX)
:data $ {}
|D $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242423104) (:text |or) (:id |yqgqDilr6)
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |state) (:id |YofQ92WBr-)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242423841) (:id |KaJ6p9bP6K)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242424282) (:text |{}) (:id |awiHjtfVQ)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242424683) (:id |ibBSG1FxT)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242429626) (:text |:username) (:id |uDgw8PjIQg)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242431187) (:text "|\"") (:id |tTDdFAX7e)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242431671) (:id |s4iunKHBx)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242433866) (:text |:password) (:id |s4iunKHBxleaf)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242434904) (:text "|\"") (:id |8RPmZPoiy)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |mj5vcq0HLj)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |:update) (:id |N3lKBy3HOm)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |80u8hUcO_H)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |fn) (:id |d44DDL0OAQ)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |Nual7kIshK)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |d!) (:id |oGzmDQ3IQyG)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |op) (:id |0sppa_KcdVa)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |context) (:id |TCbbop10QJO)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |options) (:id |47XOdPmnmxT)
|x $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |state) (:id |q4-WbksMBN-)
|y $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242519395) (:text |mutate!) (:id |ZoqIiDGdb5m)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |korF5CtvxFz)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |case) (:id |0Koh_K6MLhB)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |op) (:id |PSvl1JUF5ci)
|n $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241576375) (:id |Ygci3KcvgD)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558250051768) (:text |:username) (:id |fr6afbd1qV)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241576375) (:id |f561xpt9E4)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241576375) (:text |mutate!) (:id |KvnnNokUdX)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242438790) (:id |7npFauWvh)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242439945) (:text |assoc) (:id |crPYvEhCcx)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242440930) (:text |state) (:id |0QP0o49CIf)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242443062) (:text |:username) (:id |hzs2GvvwFg)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242444412) (:id |wivsHhsiq)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242445171) (:text |:value) (:id |taJfIWPYJ4)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242446469) (:text |options) (:id |ixSQhlBdry)
|p $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241583771) (:id |fAxrx7_c1D)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558250053563) (:text |:password) (:id |j32z0EBf9F)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241583771) (:id |WOje7S2ThO)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241583771) (:text |mutate!) (:id |kB-IzAikn8)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242452670) (:id |LEtiBbl_f)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242453580) (:text |assoc) (:id |cqQw_8h6aQ)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242454253) (:text |state) (:id |Ar3Wp3LaPV)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242456315) (:text |:password) (:id |y_cFauz6Rk)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242458558) (:id |D8dPLTyZR)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242459396) (:text |:value) (:id |O7GFYFPXMa)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242462462) (:text |options) (:id |DNOta3J3er)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241426432) (:id |jT_dWEQV4t)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |:signup) (:id |v62fTrxykL)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241426432) (:id |YyqLCBpcr5)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242488524) (:text |let) (:id |aLG85vfgXH)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242488826) (:id |-bnTTvPw58)
:data $ {}
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242488980) (:id |aEx6_g6qlY)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242493585) (:text |login-pair) (:id |iFFUVOMJ0Y)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242494248) (:id |HI1NxPCoSb)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242494248) (:text |[]) (:id |LSKJa4O7dE)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242494248) (:id |WvNG94ZFy5)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242494248) (:text |:username) (:id |jvN4QcJaF3)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242494248) (:text |state) (:id |JGbO8uBUsW)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242494248) (:id |HENYHkbg-j)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242494248) (:text |:password) (:id |ybNm3_Y6NW)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242494248) (:text |state) (:id |LqDf4ojueN)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241426432) (:id |yrcrNqDYsN)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |d!) (:id |euelW2RAcV)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |:user/sign-up) (:id |9Pmt-Sg0GB)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242498388) (:text |login-pair) (:id |RX3-kdJLZy)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241426432) (:id |8cY2tebalc)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |.setItem) (:id |4ee2SRl_QF)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |js/localStorage) (:id |wdwRddghNw)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241426432) (:id |UWbnDDjPrh)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |:storage-key) (:id |UfXvi33NhJ)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |config/site) (:id |UUoQRc2ljM)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241426432) (:text |login-pair) (:id |yArrS8M29iH)
|v $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241419915) (:id |MET0AKq2UU)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |:login) (:id |VeS0SSN0Zx)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241419915) (:id |ZZClxSpziD)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242505739) (:text |let) (:id |p5kvpmE8Bt)
|b $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242506918) (:id |nlnA8W9oJH)
:data $ {}
|T $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242509137) (:id |Skg0GsziaS)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242509137) (:text |login-pair) (:id |SqB3ams2s8)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242509137) (:id |PxGc7evhlb)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242509137) (:text |[]) (:id |hZfR7FCKFH)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242509137) (:id |VbvZac1laV)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242509137) (:text |:username) (:id |nqMZBx2XzD)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242509137) (:text |state) (:id |1iDnVmbUKE)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558242509137) (:id |7iOMAxsXOq)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242509137) (:text |:password) (:id |IB2T9OvjEF)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558242509137) (:text |state) (:id |DVfrE9N2aj)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241419915) (:id |HAYylxpq4Y)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |d!) (:id |NigCJJSUZm)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |:user/log-in) (:id |oUysZ10sjb)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |login-pair) (:id |f4_5SxR_53)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241419915) (:id |Azf1zWOxBS)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |.setItem) (:id |8Z6_xLtGEw)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |js/localStorage) (:id |0Zfu6sauBu)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241419915) (:id |dkxsqpW--E)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |:storage-key) (:id |3eoLuJ7iC9)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |config/site) (:id |-16GlrFAZC)
|v $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241419915) (:text |login-pair) (:id |77wG-xjXr_)
|x $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558241408691) (:id |UqVrGUuvXpt)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |println) (:id |ohCMBmtsXJ_)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text "|\"Unhandled op:") (:id |rNfHt1Crv-N)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558241408691) (:text |op) (:id |VzN6GbfhjyN)
|state-workspace $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236012947) (:id |nDDA6on1Dr)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236013753) (:text |def) (:id |QfBfR2DLfS)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236012947) (:text |state-workspace) (:id |pF-lei5XBf)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236014489) (:id |YZo33fmlqI)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236014489) (:text |{}) (:id |2IXIuyDOuh)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236014489) (:id |lNAdW0UCpH)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236014489) (:text |:init) (:id |RyrCxkwf7d)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236014489) (:id |gbHDOcaQw0)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236014489) (:text |fn) (:id |aDGZsfIlzM)
|j $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236014489) (:id |xQr_rx4016)
:data $ {}
|T $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236014489) (:text |props) (:id |LVUJHjGi9s)
|j $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236014489) (:text |state) (:id |5itzAr3sYY)
|r $ {} (:type :leaf) (:by |B1y7Rc-Zz) (:at 1558236014489) (:text |state) (:id |5dqxKLv3if)
|r $ {} (:type :expr) (:by |B1y7Rc-Zz) (:at 1558236014489) (:id |JQEQjfx-nI)
:data $ {}