-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathibom.html
4419 lines (3997 loc) · 438 KB
/
ibom.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive BOM for KiCAD</title>
<style type="text/css">
:root {
--pcb-edge-color: black;
--pad-color: #878787;
--pad-hole-color: #CCCCCC;
--pad-color-highlight: #D04040;
--pad-color-highlight-both: #D0D040;
--pad-color-highlight-marked: #44a344;
--pin1-outline-color: #ffb629;
--pin1-outline-color-highlight: #ffb629;
--pin1-outline-color-highlight-both: #fcbb39;
--pin1-outline-color-highlight-marked: #fdbe41;
--silkscreen-edge-color: #aa4;
--silkscreen-polygon-color: #4aa;
--silkscreen-text-color: #4aa;
--fabrication-edge-color: #907651;
--fabrication-polygon-color: #907651;
--fabrication-text-color: #a27c24;
--track-color: #def5f1;
--track-color-highlight: #D04040;
--zone-color: #def5f1;
--zone-color-highlight: #d0404080;
}
html,
body {
margin: 0px;
height: 100%;
font-family: Verdana, sans-serif;
}
.dark.topmostdiv {
--pcb-edge-color: #eee;
--pad-color: #808080;
--pin1-outline-color: #ffa800;
--pin1-outline-color-highlight: #ccff00;
--track-color: #42524f;
--zone-color: #42524f;
background-color: #252c30;
color: #eee;
}
button {
background-color: #eee;
border: 1px solid #888;
color: black;
height: 44px;
width: 44px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
font-weight: bolder;
}
.dark button {
/* This will be inverted */
background-color: #c3b7b5;
}
button.depressed {
background-color: #0a0;
color: white;
}
.dark button.depressed {
/* This will be inverted */
background-color: #b3b;
}
button:focus {
outline: 0;
}
button#tb-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.32 290.12h5.82M1.32 291.45h5.82' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 292.5v4.23M.26 292.63H8.2' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='1.35' y='295.73'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
}
button#lr-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' fill='none' stroke='%23000' stroke-width='.4' stroke-linejoin='round'/%3E%3Cpath d='M1.06 290.12H3.7m-2.64 1.33H3.7m-2.64 1.32H3.7m-2.64 1.3H3.7m-2.64 1.33H3.7' fill='none' stroke='%23000' stroke-width='.4'/%3E%3Cpath d='M4.37 288.8v7.94m0-4.11h3.96' fill='none' stroke='%23000' stroke-width='.3'/%3E%3Ctext font-weight='700' font-size='3.17' font-family='sans-serif'%3E%3Ctspan x='5.11' y='291.96'%3EF%3C/tspan%3E%3Ctspan x='5.03' y='295.68'%3EB%3C/tspan%3E%3C/text%3E%3C/g%3E%3C/svg%3E%0A");
}
button#bom-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.47 8.47'%3E%3Crect transform='translate(0 -288.53)' ry='1.17' y='288.8' x='.27' height='7.94' width='7.94' fill='%23f9f9f9'/%3E%3Cg transform='translate(0 -288.53)' fill='none' stroke='%23000' stroke-width='.4'%3E%3Crect width='7.94' height='7.94' x='.27' y='288.8' ry='1.17' stroke-linejoin='round'/%3E%3Cpath d='M1.59 290.12h5.29M1.59 291.45h5.33M1.59 292.75h5.33M1.59 294.09h5.33M1.59 295.41h5.33'/%3E%3C/g%3E%3C/svg%3E");
}
button#bom-grouped-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg stroke='%23000' stroke-linejoin='round' class='layer'%3E%3Crect width='29' height='29' x='1.5' y='1.5' stroke-width='2' fill='%23fff' rx='5' ry='5'/%3E%3Cpath stroke-linecap='square' stroke-width='2' d='M6 10h4m4 0h5m4 0h3M6.1 22h3m3.9 0h5m4 0h4m-16-8h4m4 0h4'/%3E%3Cpath stroke-linecap='null' d='M5 17.5h22M5 26.6h22M5 5.5h22'/%3E%3C/g%3E%3C/svg%3E");
}
button#bom-ungrouped-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg stroke='%23000' stroke-linejoin='round' class='layer'%3E%3Crect width='29' height='29' x='1.5' y='1.5' stroke-width='2' fill='%23fff' rx='5' ry='5'/%3E%3Cpath stroke-linecap='square' stroke-width='2' d='M6 10h4m-4 8h3m-3 8h4'/%3E%3Cpath stroke-linecap='null' d='M5 13.5h22m-22 8h22M5 5.5h22'/%3E%3C/g%3E%3C/svg%3E");
}
button#bom-netlist-btn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32'%3E%3Cg fill='none' stroke='%23000' class='layer'%3E%3Crect width='29' height='29' x='1.5' y='1.5' stroke-width='2' fill='%23fff' rx='5' ry='5'/%3E%3Cpath stroke-width='2' d='M6 26l6-6v-8m13.8-6.3l-6 6v8'/%3E%3Ccircle cx='11.8' cy='9.5' r='2.8' stroke-width='2'/%3E%3Ccircle cx='19.8' cy='22.8' r='2.8' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
button#copy {
background-image: url("data:image/svg+xml,%3Csvg height='48' viewBox='0 0 48 48' width='48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3Cpath d='M32 2h-24c-2.21 0-4 1.79-4 4v28h4v-28h24v-4zm6 8h-22c-2.21 0-4 1.79-4 4v28c0 2.21 1.79 4 4 4h22c2.21 0 4-1.79 4-4v-28c0-2.21-1.79-4-4-4zm0 32h-22v-28h22v28z'/%3E%3C/svg%3E");
background-position: 6px 6px;
background-repeat: no-repeat;
background-size: 26px 26px;
border-radius: 6px;
height: 40px;
width: 40px;
margin: 10px 5px;
}
button#copy:active {
box-shadow: inset 0px 0px 5px #6c6c6c;
}
textarea.clipboard-temp {
position: fixed;
top: 0;
left: 0;
width: 2em;
height: 2em;
padding: 0;
border: None;
outline: None;
box-shadow: None;
background: transparent;
}
.left-most-button {
border-right: 0;
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
}
.middle-button {
border-right: 0;
}
.right-most-button {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.button-container {
font-size: 0;
margin: 10px 10px 10px 0px;
}
.dark .button-container {
filter: invert(1);
}
.button-container button {
background-size: 32px 32px;
background-position: 5px 5px;
background-repeat: no-repeat;
}
@media print {
.hideonprint {
display: none;
}
}
canvas {
cursor: crosshair;
}
canvas:active {
cursor: grabbing;
}
.fileinfo {
width: 100%;
max-width: 1000px;
border: none;
padding: 5px;
}
.fileinfo .title {
font-size: 20pt;
font-weight: bold;
}
.fileinfo td {
overflow: hidden;
white-space: nowrap;
max-width: 1px;
width: 50%;
text-overflow: ellipsis;
}
.bom {
border-collapse: collapse;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 10pt;
table-layout: fixed;
width: 100%;
margin-top: 1px;
position: relative;
}
.bom th,
.bom td {
border: 1px solid black;
padding: 5px;
word-wrap: break-word;
text-align: center;
position: relative;
}
.dark .bom th,
.dark .bom td {
border: 1px solid #777;
}
.bom th {
background-color: #CCCCCC;
background-clip: padding-box;
}
.dark .bom th {
background-color: #3b4749;
}
.bom tr.highlighted:nth-child(n) {
background-color: #cfc;
}
.dark .bom tr.highlighted:nth-child(n) {
background-color: #226022;
}
.bom tr:nth-child(even) {
background-color: #f2f2f2;
}
.dark .bom tr:nth-child(even) {
background-color: #313b40;
}
.bom tr.checked {
color: #1cb53d;
}
.dark .bom tr.checked {
color: #2cce54;
}
.bom tr {
transition: background-color 0.2s;
}
.bom .numCol {
width: 30px;
}
.bom .value {
width: 15%;
}
.bom .quantity {
width: 65px;
}
.bom th .sortmark {
position: absolute;
right: 1px;
top: 1px;
margin-top: -5px;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #221 transparent;
transform-origin: 50% 85%;
transition: opacity 0.2s, transform 0.4s;
}
.dark .bom th .sortmark {
filter: invert(1);
}
.bom th .sortmark.none {
opacity: 0;
}
.bom th .sortmark.desc {
transform: rotate(180deg);
}
.bom th:hover .sortmark.none {
opacity: 0.5;
}
.bom .bom-checkbox {
width: 30px;
position: relative;
user-select: none;
-moz-user-select: none;
}
.bom .bom-checkbox:before {
content: "";
position: absolute;
border-width: 15px;
border-style: solid;
border-color: #51829f transparent transparent transparent;
visibility: hidden;
top: -15px;
}
.bom .bom-checkbox:after {
content: "Double click to set/unset all";
position: absolute;
color: white;
top: -35px;
left: -26px;
background: #51829f;
padding: 5px 15px;
border-radius: 8px;
white-space: nowrap;
visibility: hidden;
}
.bom .bom-checkbox:hover:before,
.bom .bom-checkbox:hover:after {
visibility: visible;
transition: visibility 0.2s linear 1s;
}
.split {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
overflow-y: auto;
overflow-x: hidden;
background-color: inherit;
}
.split.split-horizontal,
.gutter.gutter-horizontal {
height: 100%;
float: left;
}
.gutter {
background-color: #ddd;
background-repeat: no-repeat;
background-position: 50%;
transition: background-color 0.3s;
}
.dark .gutter {
background-color: #777;
}
.gutter.gutter-horizontal {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
cursor: ew-resize;
width: 5px;
}
.gutter.gutter-vertical {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
cursor: ns-resize;
height: 5px;
}
.searchbox {
float: left;
height: 40px;
margin: 10px 5px;
padding: 12px 32px;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 18px;
box-sizing: border-box;
border: 1px solid #888;
border-radius: 6px;
outline: none;
background-color: #eee;
transition: background-color 0.2s, border 0.2s;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABNklEQVQ4T8XSMUvDQBQH8P/LElFa/AIZHcTBQSz0I/gFstTBRR2KUC4ldDxw7h0Bl3RRUATxi4iiODgoiLNrbQYp5J6cpJJqomkX33Z37/14d/dIa33MzDuYI4johOI4XhyNRteO46zNYjDzAxE1yBZprVeZ+QbAUhXEGJMA2Ox2u4+fQIa0mPmsCgCgJYQ4t7lfgF0opQYAdv9ABkKI/UnOFCClXKjX61cA1osQY8x9kiRNKeV7IWA3oyhaSdP0FkAtjxhj3hzH2RBCPOf3pzqYHCilfAAX+URm9oMguPzeWSGQvUcMYC8rOBJCHBRdqxTo9/vbRHRqi8bj8XKv1xvODbiuW2u32/bvf0SlDv4XYOY7z/Mavu+nM1+BmQ+NMc0wDF/LprP0DbTWW0T00ul0nn4b7Q87+X4Qmfiq2wAAAABJRU5ErkJggg==');
background-position: 10px 10px;
background-repeat: no-repeat;
}
.dark .searchbox {
background-color: #111;
color: #eee;
}
.searchbox::placeholder {
color: #ccc;
}
.dark .searchbox::placeholder {
color: #666;
}
.filter {
width: calc(60% - 64px);
}
.reflookup {
width: calc(40% - 10px);
}
input[type=text]:focus {
background-color: white;
border: 1px solid #333;
}
.dark input[type=text]:focus {
background-color: #333;
border: 1px solid #ccc;
}
mark.highlight {
background-color: #5050ff;
color: #fff;
padding: 2px;
border-radius: 6px;
}
.dark mark.highlight {
background-color: #76a6da;
color: #111;
}
.menubtn {
background-color: white;
border: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 20 20'%3E%3Cpath fill='none' d='M0 0h20v20H0V0z'/%3E%3Cpath d='M15.95 10.78c.03-.25.05-.51.05-.78s-.02-.53-.06-.78l1.69-1.32c.15-.12.19-.34.1-.51l-1.6-2.77c-.1-.18-.31-.24-.49-.18l-1.99.8c-.42-.32-.86-.58-1.35-.78L12 2.34c-.03-.2-.2-.34-.4-.34H8.4c-.2 0-.36.14-.39.34l-.3 2.12c-.49.2-.94.47-1.35.78l-1.99-.8c-.18-.07-.39 0-.49.18l-1.6 2.77c-.1.18-.06.39.1.51l1.69 1.32c-.04.25-.07.52-.07.78s.02.53.06.78L2.37 12.1c-.15.12-.19.34-.1.51l1.6 2.77c.1.18.31.24.49.18l1.99-.8c.42.32.86.58 1.35.78l.3 2.12c.04.2.2.34.4.34h3.2c.2 0 .37-.14.39-.34l.3-2.12c.49-.2.94-.47 1.35-.78l1.99.8c.18.07.39 0 .49-.18l1.6-2.77c.1-.18.06-.39-.1-.51l-1.67-1.32zM10 13c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z'/%3E%3C/svg%3E%0A");
background-position: center;
background-repeat: no-repeat;
}
.statsbtn {
background-color: white;
border: none;
background-image: url("data:image/svg+xml,%3Csvg width='36' height='36' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h28v24H4V6zm0 8h28v8H4m9-16v24h10V5.8' fill='none' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E");
background-position: center;
background-repeat: no-repeat;
}
.iobtn {
background-color: white;
border: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' d='M3 33v-7l6.8-7h16.5l6.7 7v7H3zM3.2 26H33M21 9l5-5.9 5 6h-2.5V15h-5V9H21zm-4.9 0l-5 6-5-6h2.5V3h5v6h2.5z'/%3E%3Cpath fill='none' stroke='%23000' d='M6.1 29.5H10'/%3E%3C/svg%3E");
background-position: center;
background-repeat: no-repeat;
}
.visbtn {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='none' stroke='%23333' d='M2.5 4.5h5v15h-5zM9.5 4.5h5v15h-5zM16.5 4.5h5v15h-5z'/%3E%3C/svg%3E");
background-position: center;
background-repeat: no-repeat;
padding: 15px;
}
#vismenu-content {
left: 0px;
font-family: Verdana, sans-serif;
}
.dark .statsbtn,
.dark .savebtn,
.dark .menubtn,
.dark .iobtn,
.dark .visbtn {
filter: invert(1);
}
.flexbox {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.savebtn {
background-color: #d6d6d6;
width: auto;
height: 30px;
flex-grow: 1;
margin: 5px;
border-radius: 4px;
}
.savebtn:active {
background-color: #0a0;
color: white;
}
.dark .savebtn:active {
/* This will be inverted */
background-color: #b3b;
}
.stats {
border-collapse: collapse;
font-size: 12pt;
table-layout: fixed;
width: 100%;
min-width: 450px;
}
.dark .stats td {
border: 1px solid #bbb;
}
.stats td {
border: 1px solid black;
padding: 5px;
word-wrap: break-word;
text-align: center;
position: relative;
}
#checkbox-stats div {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#checkbox-stats .bar {
background-color: rgba(28, 251, 0, 0.6);
}
.menu {
position: relative;
display: inline-block;
margin: 10px 10px 10px 0px;
}
.menu-content {
font-size: 12pt !important;
text-align: left !important;
font-weight: normal !important;
display: none;
position: absolute;
background-color: white;
right: 0;
min-width: 300px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 100;
padding: 8px;
}
.dark .menu-content {
background-color: #111;
}
.menu:hover .menu-content {
display: block;
}
.menu:hover .menubtn,
.menu:hover .iobtn,
.menu:hover .statsbtn {
background-color: #eee;
}
.menu-label {
display: inline-block;
padding: 8px;
border: 1px solid #ccc;
border-top: 0;
width: calc(100% - 18px);
}
.menu-label-top {
border-top: 1px solid #ccc;
}
.menu-textbox {
float: left;
height: 24px;
margin: 10px 5px;
padding: 5px 5px;
font-family: Consolas, "DejaVu Sans Mono", Monaco, monospace;
font-size: 14px;
box-sizing: border-box;
border: 1px solid #888;
border-radius: 4px;
outline: none;
background-color: #eee;
transition: background-color 0.2s, border 0.2s;
width: calc(100% - 10px);
}
.menu-textbox.invalid,
.dark .menu-textbox.invalid {
color: red;
}
.dark .menu-textbox {
background-color: #222;
color: #eee;
}
.radio-container {
margin: 4px;
}
.topmostdiv {
width: 100%;
height: 100%;
background-color: white;
transition: background-color 0.3s;
}
#top {
height: 78px;
border-bottom: 2px solid black;
}
.dark #top {
border-bottom: 2px solid #ccc;
}
#dbg {
display: block;
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #aaa;
}
::-webkit-scrollbar-thumb {
background: #666;
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.slider {
-webkit-appearance: none;
width: 100%;
margin: 3px 0;
padding: 0;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
border-radius: 3px;
}
.slider:hover {
opacity: 1;
}
.slider:focus {
outline: none;
}
.slider::-webkit-slider-runnable-track {
-webkit-appearance: none;
width: 100%;
height: 8px;
background: #d3d3d3;
border-radius: 3px;
border: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
margin-top: -4px;
}
.dark .slider::-webkit-slider-thumb {
background: #3d3;
}
.slider::-moz-range-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
}
.slider::-moz-range-track {
height: 8px;
background: #d3d3d3;
border-radius: 3px;
}
.dark .slider::-moz-range-thumb {
background: #3d3;
}
.slider::-ms-track {
width: 100%;
height: 8px;
border-width: 3px 0;
background: transparent;
border-color: transparent;
color: transparent;
transition: opacity .2s;
}
.slider::-ms-fill-lower {
background: #d3d3d3;
border: none;
border-radius: 3px;
}
.slider::-ms-fill-upper {
background: #d3d3d3;
border: none;
border-radius: 3px;
}
.slider::-ms-thumb {
width: 15px;
height: 15px;
border-radius: 50%;
background: #0a0;
cursor: pointer;
margin: 0;
}
.shameless-plug {
font-size: 0.8em;
text-align: center;
display: block;
}
a {
color: #0278a4;
}
.dark a {
color: #00b9fd;
}
#frontcanvas,
#backcanvas {
touch-action: none;
}
.placeholder {
border: 1px dashed #9f9fda !important;
background-color: #edf2f7 !important;
}
.dragging {
z-index: 999;
}
.dark .dragging>table>tbody>tr {
background-color: #252c30;
}
.dark .placeholder {
filter: invert(1);
}
.column-spacer {
top: 0;
left: 0;
width: calc(100% - 4px);
position: absolute;
cursor: pointer;
user-select: none;
height: 100%;
}
.column-width-handle {
top: 0;
right: 0;
width: 4px;
position: absolute;
cursor: col-resize;
user-select: none;
height: 100%;
}
.column-width-handle:hover {
background-color: #4f99bd;
}
.help-link {
border: 1px solid #0278a4;
padding-inline: 0.3rem;
border-radius: 3px;
cursor: pointer;
}
.dark .help-link {
border: 1px solid #00b9fd;
}
</style>
<script type="text/javascript" >
///////////////////////////////////////////////
/*
Split.js - v1.3.5
MIT License
https://github.com/nathancahill/Split.js
*/
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.Split=t()}(this,function(){"use strict";var e=window,t=e.document,n="addEventListener",i="removeEventListener",r="getBoundingClientRect",s=function(){return!1},o=e.attachEvent&&!e[n],a=["","-webkit-","-moz-","-o-"].filter(function(e){var n=t.createElement("div");return n.style.cssText="width:"+e+"calc(9px)",!!n.style.length}).shift()+"calc",l=function(e){return"string"==typeof e||e instanceof String?t.querySelector(e):e};return function(u,c){function z(e,t,n){var i=A(y,t,n);Object.keys(i).forEach(function(t){return e.style[t]=i[t]})}function h(e,t){var n=B(y,t);Object.keys(n).forEach(function(t){return e.style[t]=n[t]})}function f(e){var t=E[this.a],n=E[this.b],i=t.size+n.size;t.size=e/this.size*i,n.size=i-e/this.size*i,z(t.element,t.size,this.aGutterSize),z(n.element,n.size,this.bGutterSize)}function m(e){var t;this.dragging&&((t="touches"in e?e.touches[0][b]-this.start:e[b]-this.start)<=E[this.a].minSize+M+this.aGutterSize?t=E[this.a].minSize+this.aGutterSize:t>=this.size-(E[this.b].minSize+M+this.bGutterSize)&&(t=this.size-(E[this.b].minSize+this.bGutterSize)),f.call(this,t),c.onDrag&&c.onDrag())}function g(){var e=E[this.a].element,t=E[this.b].element;this.size=e[r]()[y]+t[r]()[y]+this.aGutterSize+this.bGutterSize,this.start=e[r]()[G]}function d(){var t=this,n=E[t.a].element,r=E[t.b].element;t.dragging&&c.onDragEnd&&c.onDragEnd(),t.dragging=!1,e[i]("mouseup",t.stop),e[i]("touchend",t.stop),e[i]("touchcancel",t.stop),t.parent[i]("mousemove",t.move),t.parent[i]("touchmove",t.move),delete t.stop,delete t.move,n[i]("selectstart",s),n[i]("dragstart",s),r[i]("selectstart",s),r[i]("dragstart",s),n.style.userSelect="",n.style.webkitUserSelect="",n.style.MozUserSelect="",n.style.pointerEvents="",r.style.userSelect="",r.style.webkitUserSelect="",r.style.MozUserSelect="",r.style.pointerEvents="",t.gutter.style.cursor="",t.parent.style.cursor=""}function S(t){var i=this,r=E[i.a].element,o=E[i.b].element;!i.dragging&&c.onDragStart&&c.onDragStart(),t.preventDefault(),i.dragging=!0,i.move=m.bind(i),i.stop=d.bind(i),e[n]("mouseup",i.stop),e[n]("touchend",i.stop),e[n]("touchcancel",i.stop),i.parent[n]("mousemove",i.move),i.parent[n]("touchmove",i.move),r[n]("selectstart",s),r[n]("dragstart",s),o[n]("selectstart",s),o[n]("dragstart",s),r.style.userSelect="none",r.style.webkitUserSelect="none",r.style.MozUserSelect="none",r.style.pointerEvents="none",o.style.userSelect="none",o.style.webkitUserSelect="none",o.style.MozUserSelect="none",o.style.pointerEvents="none",i.gutter.style.cursor=j,i.parent.style.cursor=j,g.call(i)}function v(e){e.forEach(function(t,n){if(n>0){var i=F[n-1],r=E[i.a],s=E[i.b];r.size=e[n-1],s.size=t,z(r.element,r.size,i.aGutterSize),z(s.element,s.size,i.bGutterSize)}})}function p(){F.forEach(function(e){e.parent.removeChild(e.gutter),E[e.a].element.style[y]="",E[e.b].element.style[y]=""})}void 0===c&&(c={});var y,b,G,E,w=l(u[0]).parentNode,D=e.getComputedStyle(w).flexDirection,U=c.sizes||u.map(function(){return 100/u.length}),k=void 0!==c.minSize?c.minSize:100,x=Array.isArray(k)?k:u.map(function(){return k}),L=void 0!==c.gutterSize?c.gutterSize:10,M=void 0!==c.snapOffset?c.snapOffset:30,O=c.direction||"horizontal",j=c.cursor||("horizontal"===O?"ew-resize":"ns-resize"),C=c.gutter||function(e,n){var i=t.createElement("div");return i.className="gutter gutter-"+n,i},A=c.elementStyle||function(e,t,n){var i={};return"string"==typeof t||t instanceof String?i[e]=t:i[e]=o?t+"%":a+"("+t+"% - "+n+"px)",i},B=c.gutterStyle||function(e,t){return n={},n[e]=t+"px",n;var n};"horizontal"===O?(y="width","clientWidth",b="clientX",G="left","paddingLeft"):"vertical"===O&&(y="height","clientHeight",b="clientY",G="top","paddingTop");var F=[];return E=u.map(function(e,t){var i,s={element:l(e),size:U[t],minSize:x[t]};if(t>0&&(i={a:t-1,b:t,dragging:!1,isFirst:1===t,isLast:t===u.length-1,direction:O,parent:w},i.aGutterSize=L,i.bGutterSize=L,i.isFirst&&(i.aGutterSize=L/2),i.isLast&&(i.bGutterSize=L/2),"row-reverse"===D||"column-reverse"===D)){var a=i.a;i.a=i.b,i.b=a}if(!o&&t>0){var c=C(t,O);h(c,L),c[n]("mousedown",S.bind(i)),c[n]("touchstart",S.bind(i)),w.insertBefore(c,s.element),i.gutter=c}0===t||t===u.length-1?z(s.element,s.size,L/2):z(s.element,s.size,L);var f=s.element[r]()[y];return f<s.minSize&&(s.minSize=f),t>0&&F.push(i),s}),o?{setSizes:v,destroy:p}:{setSizes:v,getSizes:function(){return E.map(function(e){return e.size})},collapse:function(e){if(e===F.length){var t=F[e-1];g.call(t),o||f.call(t,t.size-t.bGutterSize)}else{var n=F[e];g.call(n),o||f.call(n,n.aGutterSize)}},destroy:p}}});
///////////////////////////////////////////////
///////////////////////////////////////////////
///////////////////////////////////////////////
///////////////////////////////////////////////
/*!
* PEP v0.4.3 | https://github.com/jquery/PEP
* Copyright jQuery Foundation and other contributors | http://jquery.org/license
*/
!function(a,b){"object"==typeof exports&&"undefined"!=typeof module?module.exports=b():"function"==typeof define&&define.amd?define(b):a.PointerEventsPolyfill=b()}(this,function(){"use strict";function a(a,b){b=b||Object.create(null);var c=document.createEvent("Event");c.initEvent(a,b.bubbles||!1,b.cancelable||!1);
for(var d,e=2;e<m.length;e++)d=m[e],c[d]=b[d]||n[e];c.buttons=b.buttons||0;
var f=0;return f=b.pressure&&c.buttons?b.pressure:c.buttons?.5:0,c.x=c.clientX,c.y=c.clientY,c.pointerId=b.pointerId||0,c.width=b.width||0,c.height=b.height||0,c.pressure=f,c.tiltX=b.tiltX||0,c.tiltY=b.tiltY||0,c.twist=b.twist||0,c.tangentialPressure=b.tangentialPressure||0,c.pointerType=b.pointerType||"",c.hwTimestamp=b.hwTimestamp||0,c.isPrimary=b.isPrimary||!1,c}function b(){this.array=[],this.size=0}function c(a,b,c,d){this.addCallback=a.bind(d),this.removeCallback=b.bind(d),this.changedCallback=c.bind(d),A&&(this.observer=new A(this.mutationWatcher.bind(this)))}function d(a){return"body /shadow-deep/ "+e(a)}function e(a){return'[touch-action="'+a+'"]'}function f(a){return"{ -ms-touch-action: "+a+"; touch-action: "+a+"; }"}function g(){if(F){D.forEach(function(a){String(a)===a?(E+=e(a)+f(a)+"\n",G&&(E+=d(a)+f(a)+"\n")):(E+=a.selectors.map(e)+f(a.rule)+"\n",G&&(E+=a.selectors.map(d)+f(a.rule)+"\n"))});var a=document.createElement("style");a.textContent=E,document.head.appendChild(a)}}function h(){if(!window.PointerEvent){if(window.PointerEvent=a,window.navigator.msPointerEnabled){var b=window.navigator.msMaxTouchPoints;Object.defineProperty(window.navigator,"maxTouchPoints",{value:b,enumerable:!0}),u.registerSource("ms",_)}else Object.defineProperty(window.navigator,"maxTouchPoints",{value:0,enumerable:!0}),u.registerSource("mouse",N),void 0!==window.ontouchstart&&u.registerSource("touch",V);u.register(document)}}function i(a){if(!u.pointermap.has(a)){var b=new Error("InvalidPointerId");throw b.name="InvalidPointerId",b}}function j(a){for(var b=a.parentNode;b&&b!==a.ownerDocument;)b=b.parentNode;if(!b){var c=new Error("InvalidStateError");throw c.name="InvalidStateError",c}}function k(a){var b=u.pointermap.get(a);return 0!==b.buttons}function l(){window.Element&&!Element.prototype.setPointerCapture&&Object.defineProperties(Element.prototype,{setPointerCapture:{value:W},releasePointerCapture:{value:X},hasPointerCapture:{value:Y}})}
var m=["bubbles","cancelable","view","detail","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","pageX","pageY"],n=[!1,!1,null,null,0,0,0,0,!1,!1,!1,!1,0,null,0,0],o=window.Map&&window.Map.prototype.forEach,p=o?Map:b;b.prototype={set:function(a,b){return void 0===b?this["delete"](a):(this.has(a)||this.size++,void(this.array[a]=b))},has:function(a){return void 0!==this.array[a]},"delete":function(a){this.has(a)&&(delete this.array[a],this.size--)},get:function(a){return this.array[a]},clear:function(){this.array.length=0,this.size=0},forEach:function(a,b){return this.array.forEach(function(c,d){a.call(b,c,d,this)},this)}};var q=["bubbles","cancelable","view","detail","screenX","screenY","clientX","clientY","ctrlKey","altKey","shiftKey","metaKey","button","relatedTarget","buttons","pointerId","width","height","pressure","tiltX","tiltY","pointerType","hwTimestamp","isPrimary","type","target","currentTarget","which","pageX","pageY","timeStamp"],r=[!1,!1,null,null,0,0,0,0,!1,!1,!1,!1,0,null,0,0,0,0,0,0,0,"",0,!1,"",null,null,0,0,0,0],s={pointerover:1,pointerout:1,pointerenter:1,pointerleave:1},t="undefined"!=typeof SVGElementInstance,u={pointermap:new p,eventMap:Object.create(null),captureInfo:Object.create(null),eventSources:Object.create(null),eventSourceList:[],registerSource:function(a,b){var c=b,d=c.events;d&&(d.forEach(function(a){c[a]&&(this.eventMap[a]=c[a].bind(c))},this),this.eventSources[a]=c,this.eventSourceList.push(c))},register:function(a){for(var b,c=this.eventSourceList.length,d=0;d<c&&(b=this.eventSourceList[d]);d++)
b.register.call(b,a)},unregister:function(a){for(var b,c=this.eventSourceList.length,d=0;d<c&&(b=this.eventSourceList[d]);d++)
b.unregister.call(b,a)},contains:function(a,b){try{return a.contains(b)}catch(c){return!1}},down:function(a){a.bubbles=!0,this.fireEvent("pointerdown",a)},move:function(a){a.bubbles=!0,this.fireEvent("pointermove",a)},up:function(a){a.bubbles=!0,this.fireEvent("pointerup",a)},enter:function(a){a.bubbles=!1,this.fireEvent("pointerenter",a)},leave:function(a){a.bubbles=!1,this.fireEvent("pointerleave",a)},over:function(a){a.bubbles=!0,this.fireEvent("pointerover",a)},out:function(a){a.bubbles=!0,this.fireEvent("pointerout",a)},cancel:function(a){a.bubbles=!0,this.fireEvent("pointercancel",a)},leaveOut:function(a){this.out(a),this.propagate(a,this.leave,!1)},enterOver:function(a){this.over(a),this.propagate(a,this.enter,!0)},eventHandler:function(a){if(!a._handledByPE){var b=a.type,c=this.eventMap&&this.eventMap[b];c&&c(a),a._handledByPE=!0}},listen:function(a,b){b.forEach(function(b){this.addEvent(a,b)},this)},unlisten:function(a,b){b.forEach(function(b){this.removeEvent(a,b)},this)},addEvent:function(a,b){a.addEventListener(b,this.boundHandler)},removeEvent:function(a,b){a.removeEventListener(b,this.boundHandler)},makeEvent:function(b,c){this.captureInfo[c.pointerId]&&(c.relatedTarget=null);var d=new a(b,c);return c.preventDefault&&(d.preventDefault=c.preventDefault),d._target=d._target||c.target,d},fireEvent:function(a,b){var c=this.makeEvent(a,b);return this.dispatchEvent(c)},cloneEvent:function(a){for(var b,c=Object.create(null),d=0;d<q.length;d++)b=q[d],c[b]=a[b]||r[d],!t||"target"!==b&&"relatedTarget"!==b||c[b]instanceof SVGElementInstance&&(c[b]=c[b].correspondingUseElement);return a.preventDefault&&(c.preventDefault=function(){a.preventDefault()}),c},getTarget:function(a){var b=this.captureInfo[a.pointerId];return b?a._target!==b&&a.type in s?void 0:b:a._target},propagate:function(a,b,c){for(var d=a.target,e=[];d!==document&&!d.contains(a.relatedTarget);) if(e.push(d),d=d.parentNode,!d)return;c&&e.reverse(),e.forEach(function(c){a.target=c,b.call(this,a)},this)},setCapture:function(b,c,d){this.captureInfo[b]&&this.releaseCapture(b,d),this.captureInfo[b]=c,this.implicitRelease=this.releaseCapture.bind(this,b,d),document.addEventListener("pointerup",this.implicitRelease),document.addEventListener("pointercancel",this.implicitRelease);var e=new a("gotpointercapture");e.pointerId=b,e._target=c,d||this.asyncDispatchEvent(e)},releaseCapture:function(b,c){var d=this.captureInfo[b];if(d){this.captureInfo[b]=void 0,document.removeEventListener("pointerup",this.implicitRelease),document.removeEventListener("pointercancel",this.implicitRelease);var e=new a("lostpointercapture");e.pointerId=b,e._target=d,c||this.asyncDispatchEvent(e)}},dispatchEvent:/*scope.external.dispatchEvent || */function(a){var b=this.getTarget(a);if(b)return b.dispatchEvent(a)},asyncDispatchEvent:function(a){requestAnimationFrame(this.dispatchEvent.bind(this,a))}};u.boundHandler=u.eventHandler.bind(u);var v={shadow:function(a){if(a)return a.shadowRoot||a.webkitShadowRoot},canTarget:function(a){return a&&Boolean(a.elementFromPoint)},targetingShadow:function(a){var b=this.shadow(a);if(this.canTarget(b))return b},olderShadow:function(a){var b=a.olderShadowRoot;if(!b){var c=a.querySelector("shadow");c&&(b=c.olderShadowRoot)}return b},allShadows:function(a){for(var b=[],c=this.shadow(a);c;)b.push(c),c=this.olderShadow(c);return b},searchRoot:function(a,b,c){if(a){var d,e,f=a.elementFromPoint(b,c);for(e=this.targetingShadow(f);e;){if(d=e.elementFromPoint(b,c)){var g=this.targetingShadow(d);return this.searchRoot(g,b,c)||d} e=this.olderShadow(e)} return f}},owner:function(a){
for(var b=a;b.parentNode;)b=b.parentNode;
return b.nodeType!==Node.DOCUMENT_NODE&&b.nodeType!==Node.DOCUMENT_FRAGMENT_NODE&&(b=document),b},findTarget:function(a){var b=a.clientX,c=a.clientY,d=this.owner(a.target);
return d.elementFromPoint(b,c)||(d=document),this.searchRoot(d,b,c)}},w=Array.prototype.forEach.call.bind(Array.prototype.forEach),x=Array.prototype.map.call.bind(Array.prototype.map),y=Array.prototype.slice.call.bind(Array.prototype.slice),z=Array.prototype.filter.call.bind(Array.prototype.filter),A=window.MutationObserver||window.WebKitMutationObserver,B="[touch-action]",C={subtree:!0,childList:!0,attributes:!0,attributeOldValue:!0,attributeFilter:["touch-action"]};c.prototype={watchSubtree:function(a){
//
this.observer&&v.canTarget(a)&&this.observer.observe(a,C)},enableOnSubtree:function(a){this.watchSubtree(a),a===document&&"complete"!==document.readyState?this.installOnLoad():this.installNewSubtree(a)},installNewSubtree:function(a){w(this.findElements(a),this.addElement,this)},findElements:function(a){return a.querySelectorAll?a.querySelectorAll(B):[]},removeElement:function(a){this.removeCallback(a)},addElement:function(a){this.addCallback(a)},elementChanged:function(a,b){this.changedCallback(a,b)},concatLists:function(a,b){return a.concat(y(b))},
installOnLoad:function(){document.addEventListener("readystatechange",function(){"complete"===document.readyState&&this.installNewSubtree(document)}.bind(this))},isElement:function(a){return a.nodeType===Node.ELEMENT_NODE},flattenMutationTree:function(a){
var b=x(a,this.findElements,this);
return b.push(z(a,this.isElement)),b.reduce(this.concatLists,[])},mutationWatcher:function(a){a.forEach(this.mutationHandler,this)},mutationHandler:function(a){if("childList"===a.type){var b=this.flattenMutationTree(a.addedNodes);b.forEach(this.addElement,this);var c=this.flattenMutationTree(a.removedNodes);c.forEach(this.removeElement,this)}else"attributes"===a.type&&this.elementChanged(a.target,a.oldValue)}};var D=["none","auto","pan-x","pan-y",{rule:"pan-x pan-y",selectors:["pan-x pan-y","pan-y pan-x"]}],E="",F=window.PointerEvent||window.MSPointerEvent,G=!window.ShadowDOMPolyfill&&document.head.createShadowRoot,H=u.pointermap,I=25,J=[1,4,2,8,16],K=!1;try{K=1===new MouseEvent("test",{buttons:1}).buttons}catch(L){}
var M,N={POINTER_ID:1,POINTER_TYPE:"mouse",events:["mousedown","mousemove","mouseup","mouseover","mouseout"],register:function(a){u.listen(a,this.events)},unregister:function(a){u.unlisten(a,this.events)},lastTouches:[],
isEventSimulatedFromTouch:function(a){for(var b,c=this.lastTouches,d=a.clientX,e=a.clientY,f=0,g=c.length;f<g&&(b=c[f]);f++){
var h=Math.abs(d-b.x),i=Math.abs(e-b.y);if(h<=I&&i<=I)return!0}},prepareEvent:function(a){var b=u.cloneEvent(a),c=b.preventDefault;return b.preventDefault=function(){a.preventDefault(),c()},b.pointerId=this.POINTER_ID,b.isPrimary=!0,b.pointerType=this.POINTER_TYPE,b},prepareButtonsForMove:function(a,b){var c=H.get(this.POINTER_ID);
0!==b.which&&c?a.buttons=c.buttons:a.buttons=0,b.buttons=a.buttons},mousedown:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=H.get(this.POINTER_ID),c=this.prepareEvent(a);K||(c.buttons=J[c.button],b&&(c.buttons|=b.buttons),a.buttons=c.buttons),H.set(this.POINTER_ID,a),b&&0!==b.buttons?u.move(c):u.down(c)}},mousemove:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,H.set(this.POINTER_ID,a),u.move(b)}},mouseup:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=H.get(this.POINTER_ID),c=this.prepareEvent(a);if(!K){var d=J[c.button];
c.buttons=b?b.buttons&~d:0,a.buttons=c.buttons}H.set(this.POINTER_ID,a),
c.buttons&=~J[c.button],0===c.buttons?u.up(c):u.move(c)}},mouseover:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,H.set(this.POINTER_ID,a),u.enterOver(b)}},mouseout:function(a){if(!this.isEventSimulatedFromTouch(a)){var b=this.prepareEvent(a);K||this.prepareButtonsForMove(b,a),b.button=-1,u.leaveOut(b)}},cancel:function(a){var b=this.prepareEvent(a);u.cancel(b),this.deactivateMouse()},deactivateMouse:function(){H["delete"](this.POINTER_ID)}},O=u.captureInfo,P=v.findTarget.bind(v),Q=v.allShadows.bind(v),R=u.pointermap,S=2500,T=200,U="touch-action",V={events:["touchstart","touchmove","touchend","touchcancel"],register:function(a){M.enableOnSubtree(a)},unregister:function(){},elementAdded:function(a){var b=a.getAttribute(U),c=this.touchActionToScrollType(b);c&&(a._scrollType=c,u.listen(a,this.events),
Q(a).forEach(function(a){a._scrollType=c,u.listen(a,this.events)},this))},elementRemoved:function(a){a._scrollType=void 0,u.unlisten(a,this.events),
Q(a).forEach(function(a){a._scrollType=void 0,u.unlisten(a,this.events)},this)},elementChanged:function(a,b){var c=a.getAttribute(U),d=this.touchActionToScrollType(c),e=this.touchActionToScrollType(b);
d&&e?(a._scrollType=d,Q(a).forEach(function(a){a._scrollType=d},this)):e?this.elementRemoved(a):d&&this.elementAdded(a)},scrollTypes:{EMITTER:"none",XSCROLLER:"pan-x",YSCROLLER:"pan-y",SCROLLER:/^(?:pan-x pan-y)|(?:pan-y pan-x)|auto$/},touchActionToScrollType:function(a){var b=a,c=this.scrollTypes;return"none"===b?"none":b===c.XSCROLLER?"X":b===c.YSCROLLER?"Y":c.SCROLLER.exec(b)?"XY":void 0},POINTER_TYPE:"touch",firstTouch:null,isPrimaryTouch:function(a){return this.firstTouch===a.identifier},setPrimaryTouch:function(a){
(0===R.size||1===R.size&&R.has(1))&&(this.firstTouch=a.identifier,this.firstXY={X:a.clientX,Y:a.clientY},this.scrolling=!1,this.cancelResetClickCount())},removePrimaryPointer:function(a){a.isPrimary&&(this.firstTouch=null,this.firstXY=null,this.resetClickCount())},clickCount:0,resetId:null,resetClickCount:function(){var a=function(){this.clickCount=0,this.resetId=null}.bind(this);this.resetId=setTimeout(a,T)},cancelResetClickCount:function(){this.resetId&&clearTimeout(this.resetId)},typeToButtons:function(a){var b=0;return"touchstart"!==a&&"touchmove"!==a||(b=1),b},touchToPointer:function(a){var b=this.currentTouchEvent,c=u.cloneEvent(a),d=c.pointerId=a.identifier+2;c.target=O[d]||P(c),c.bubbles=!0,c.cancelable=!0,c.detail=this.clickCount,c.button=0,c.buttons=this.typeToButtons(b.type),c.width=2*(a.radiusX||a.webkitRadiusX||0),c.height=2*(a.radiusY||a.webkitRadiusY||0),c.pressure=a.force||a.webkitForce||.5,c.isPrimary=this.isPrimaryTouch(a),c.pointerType=this.POINTER_TYPE,
c.altKey=b.altKey,c.ctrlKey=b.ctrlKey,c.metaKey=b.metaKey,c.shiftKey=b.shiftKey;
var e=this;return c.preventDefault=function(){e.scrolling=!1,e.firstXY=null,b.preventDefault()},c},processTouches:function(a,b){var c=a.changedTouches;this.currentTouchEvent=a;for(var d,e=0;e<c.length;e++)d=c[e],b.call(this,this.touchToPointer(d))},
shouldScroll:function(a){if(this.firstXY){var b,c=a.currentTarget._scrollType;if("none"===c)
b=!1;else if("XY"===c)
b=!0;else{var d=a.changedTouches[0],e=c,f="Y"===c?"X":"Y",g=Math.abs(d["client"+e]-this.firstXY[e]),h=Math.abs(d["client"+f]-this.firstXY[f]);
b=g>=h}return this.firstXY=null,b}},findTouch:function(a,b){for(var c,d=0,e=a.length;d<e&&(c=a[d]);d++)if(c.identifier===b)return!0},
vacuumTouches:function(a){var b=a.touches;
if(R.size>=b.length){var c=[];R.forEach(function(a,d){
if(1!==d&&!this.findTouch(b,d-2)){var e=a.out;c.push(e)}},this),c.forEach(this.cancelOut,this)}},touchstart:function(a){this.vacuumTouches(a),this.setPrimaryTouch(a.changedTouches[0]),this.dedupSynthMouse(a),this.scrolling||(this.clickCount++,this.processTouches(a,this.overDown))},overDown:function(a){R.set(a.pointerId,{target:a.target,out:a,outTarget:a.target}),u.enterOver(a),u.down(a)},touchmove:function(a){this.scrolling||(this.shouldScroll(a)?(this.scrolling=!0,this.touchcancel(a)):(a.preventDefault(),this.processTouches(a,this.moveOverOut)))},moveOverOut:function(a){var b=a,c=R.get(b.pointerId);
if(c){var d=c.out,e=c.outTarget;u.move(b),d&&e!==b.target&&(d.relatedTarget=b.target,b.relatedTarget=e,
d.target=e,b.target?(u.leaveOut(d),u.enterOver(b)):(
b.target=e,b.relatedTarget=null,this.cancelOut(b))),c.out=b,c.outTarget=b.target}},touchend:function(a){this.dedupSynthMouse(a),this.processTouches(a,this.upOut)},upOut:function(a){this.scrolling||(u.up(a),u.leaveOut(a)),this.cleanUpPointer(a)},touchcancel:function(a){this.processTouches(a,this.cancelOut)},cancelOut:function(a){u.cancel(a),u.leaveOut(a),this.cleanUpPointer(a)},cleanUpPointer:function(a){R["delete"](a.pointerId),this.removePrimaryPointer(a)},
dedupSynthMouse:function(a){var b=N.lastTouches,c=a.changedTouches[0];
if(this.isPrimaryTouch(c)){
var d={x:c.clientX,y:c.clientY};b.push(d);var e=function(a,b){var c=a.indexOf(b);c>-1&&a.splice(c,1)}.bind(null,b,d);setTimeout(e,S)}}};M=new c(V.elementAdded,V.elementRemoved,V.elementChanged,V);var W,X,Y,Z=u.pointermap,$=window.MSPointerEvent&&"number"==typeof window.MSPointerEvent.MSPOINTER_TYPE_MOUSE,_={events:["MSPointerDown","MSPointerMove","MSPointerUp","MSPointerOut","MSPointerOver","MSPointerCancel","MSGotPointerCapture","MSLostPointerCapture"],register:function(a){u.listen(a,this.events)},unregister:function(a){u.unlisten(a,this.events)},POINTER_TYPES:["","unavailable","touch","pen","mouse"],prepareEvent:function(a){var b=a;return $&&(b=u.cloneEvent(a),b.pointerType=this.POINTER_TYPES[a.pointerType]),b},cleanup:function(a){Z["delete"](a)},MSPointerDown:function(a){Z.set(a.pointerId,a);var b=this.prepareEvent(a);u.down(b)},MSPointerMove:function(a){var b=this.prepareEvent(a);u.move(b)},MSPointerUp:function(a){var b=this.prepareEvent(a);u.up(b),this.cleanup(a.pointerId)},MSPointerOut:function(a){var b=this.prepareEvent(a);u.leaveOut(b)},MSPointerOver:function(a){var b=this.prepareEvent(a);u.enterOver(b)},MSPointerCancel:function(a){var b=this.prepareEvent(a);u.cancel(b),this.cleanup(a.pointerId)},MSLostPointerCapture:function(a){var b=u.makeEvent("lostpointercapture",a);u.dispatchEvent(b)},MSGotPointerCapture:function(a){var b=u.makeEvent("gotpointercapture",a);u.dispatchEvent(b)}},aa=window.navigator;aa.msPointerEnabled?(W=function(a){i(a),j(this),k(a)&&(u.setCapture(a,this,!0),this.msSetPointerCapture(a))},X=function(a){i(a),u.releaseCapture(a,!0),this.msReleasePointerCapture(a)}):(W=function(a){i(a),j(this),k(a)&&u.setCapture(a,this)},X=function(a){i(a),u.releaseCapture(a)}),Y=function(a){return!!u.captureInfo[a]},g(),h(),l();var ba={dispatcher:u,Installer:c,PointerEvent:a,PointerMap:p,targetFinding:v};return ba});
///////////////////////////////////////////////
///////////////////////////////////////////////
var config = {"dark_mode": false, "show_pads": true, "show_fabrication": false, "show_silkscreen": true, "highlight_pin1": true, "redraw_on_drag": true, "board_rotation": 0.0, "checkboxes": "Sourced,Placed", "bom_view": "left-right", "layer_view": "F", "offset_back_rotation": false, "fields": ["Value", "Footprint"]}
///////////////////////////////////////////////
///////////////////////////////////////////////
var pcbdata = {"edges_bbox": {"minx": 127.2125, "miny": 66.9875, "maxx": 167.3125, "maxy": 132.0875}, "edges": [{"type": "segment", "start": [167.2625, 129.5375], "end": [167.2625, 69.5375], "width": 0.1}, {"type": "segment", "start": [164.7625, 67.0375], "end": [129.7625, 67.0375], "width": 0.1}, {"type": "arc", "start": [164.7625, 129.5375], "radius": 2.5, "startangle": 0.0, "endangle": 90.0, "width": 0.1}, {"type": "arc", "start": [129.7625, 129.5375], "radius": 2.5, "startangle": 90.0, "endangle": 180.0, "width": 0.1}, {"type": "arc", "start": [164.7625, 69.5375], "radius": 2.5, "startangle": -90.0, "endangle": 0.0, "width": 0.1}, {"type": "segment", "start": [164.7625, 132.0375], "end": [129.7625, 132.0375], "width": 0.1}, {"type": "segment", "start": [127.2625, 69.5375], "end": [127.2625, 129.5375], "width": 0.1}, {"type": "arc", "start": [129.7625, 69.5375], "radius": 2.5, "startangle": 180.0, "endangle": 270.0, "width": 0.1}], "drawings": {"silkscreen": {"F": [{"thickness": 0.15, "svgpath": "M147.536404,79.527976L147.536404,79.032738L147.841166,79.299404L147.841166,79.185119L147.879261,79.108928L147.917357,79.070833L147.993547,79.032738L148.184023,79.032738L148.260214,79.070833L148.298309,79.108928L148.336404,79.185119L148.336404,79.41369L148.298309,79.48988L148.260214,79.527976M147.536404,78.804166L148.336404,78.5375L147.536404,78.270833M147.536404,78.080357L147.536404,77.585119L147.841166,77.851785L147.841166,77.7375L147.879261,77.661309L147.917357,77.623214L147.993547,77.585119L148.184023,77.585119L148.260214,77.623214L148.298309,77.661309L148.336404,77.7375L148.336404,77.966071L148.298309,78.042261L148.260214,78.080357M149.319642,79.832738L149.319642,79.223214M149.319642,78.842261L149.319642,78.232738M149.319642,77.851785L149.319642,77.242261M150.1505,79.147023L150.112404,79.223214L150.112404,79.3375L150.1505,79.451785L150.22669,79.527976L150.30288,79.566071L150.455261,79.604166L150.569547,79.604166L150.721928,79.566071L150.798119,79.527976L150.874309,79.451785L150.912404,79.3375L150.912404,79.261309L150.874309,79.147023L150.836214,79.108928L150.569547,79.108928L150.569547,79.261309M150.912404,78.766071L150.112404,78.766071L150.912404,78.308928L150.112404,78.308928M150.912404,77.927976L150.112404,77.927976L150.112404,77.7375L150.1505,77.623214L150.22669,77.547023L150.30288,77.508928L150.455261,77.470833L150.569547,77.470833L150.721928,77.508928L150.798119,77.547023L150.874309,77.623214L150.912404,77.7375L150.912404,77.927976"}, {"thickness": 0.15, "svgpath": "M142.536404,79.527976L142.536404,79.032738L142.841166,79.299404L142.841166,79.185119L142.879261,79.108928L142.917357,79.070833L142.993547,79.032738L143.184023,79.032738L143.260214,79.070833L143.298309,79.108928L143.336404,79.185119L143.336404,79.41369L143.298309,79.48988L143.260214,79.527976M142.536404,78.804166L143.336404,78.5375L142.536404,78.270833M142.536404,78.080357L142.536404,77.585119L142.841166,77.851785L142.841166,77.7375L142.879261,77.661309L142.917357,77.623214L142.993547,77.585119L143.184023,77.585119L143.260214,77.623214L143.298309,77.661309L143.336404,77.7375L143.336404,77.966071L143.298309,78.042261L143.260214,78.080357M144.319642,79.832738L144.319642,79.223214M144.319642,78.842261L144.319642,78.232738M144.319642,77.851785L144.319642,77.242261M145.1505,79.147023L145.112404,79.223214L145.112404,79.3375L145.1505,79.451785L145.22669,79.527976L145.30288,79.566071L145.455261,79.604166L145.569547,79.604166L145.721928,79.566071L145.798119,79.527976L145.874309,79.451785L145.912404,79.3375L145.912404,79.261309L145.874309,79.147023L145.836214,79.108928L145.569547,79.108928L145.569547,79.261309M145.912404,78.766071L145.112404,78.766071L145.912404,78.308928L145.112404,78.308928M145.912404,77.927976L145.112404,77.927976L145.112404,77.7375L145.1505,77.623214L145.22669,77.547023L145.30288,77.508928L145.455261,77.470833L145.569547,77.470833L145.721928,77.508928L145.798119,77.547023L145.874309,77.623214L145.912404,77.7375L145.912404,77.927976"}, {"thickness": 0.15, "svgpath": "M141.71488,128.656547L142.429166,128.656547L142.572023,128.704166L142.667261,128.799404L142.71488,128.942261L142.71488,129.0375M142.71488,127.704166L142.71488,128.180357L141.71488,128.180357M142.619642,126.799404L142.667261,126.847023L142.71488,126.98988L142.71488,127.085119L142.667261,127.227976L142.572023,127.323214L142.476785,127.370833L142.286309,127.418452L142.143452,127.418452L141.952976,127.370833L141.857738,127.323214L141.7625,127.227976L141.71488,127.085119L141.71488,126.98988L141.7625,126.847023L141.810119,126.799404M141.71488,126.085119L142.429166,126.085119L142.572023,126.132738L142.667261,126.227976L142.71488,126.370833L142.71488,126.466071M142.71488,125.132738L142.71488,125.608928L141.71488,125.608928M142.619642,124.227976L142.667261,124.275595L142.71488,124.418452L142.71488,124.51369L142.667261,124.656547L142.572023,124.751785L142.476785,124.799404L142.286309,124.847023L142.143452,124.847023L141.952976,124.799404L141.857738,124.751785L141.7625,124.656547L141.71488,124.51369L141.71488,124.418452L141.7625,124.275595L141.810119,124.227976M141.71488,123.51369L142.429166,123.51369L142.572023,123.561309L142.667261,123.656547L142.71488,123.799404L142.71488,123.894642M142.71488,122.561309L142.71488,123.0375L141.71488,123.0375M142.619642,121.656547L142.667261,121.704166L142.71488,121.847023L142.71488,121.942261L142.667261,122.085119L142.572023,122.180357L142.476785,122.227976L142.286309,122.275595L142.143452,122.275595L141.952976,122.227976L141.857738,122.180357L141.7625,122.085119L141.71488,121.942261L141.71488,121.847023L141.7625,121.704166L141.810119,121.656547M141.71488,120.942261L142.429166,120.942261L142.572023,120.98988L142.667261,121.085119L142.71488,121.227976L142.71488,121.323214M142.71488,119.98988L142.71488,120.466071L141.71488,120.466071M142.619642,119.085119L142.667261,119.132738L142.71488,119.275595L142.71488,119.370833L142.667261,119.51369L142.572023,119.608928L142.476785,119.656547L142.286309,119.704166L142.143452,119.704166L141.952976,119.656547L141.857738,119.608928L141.7625,119.51369L141.71488,119.370833L141.71488,119.275595L141.7625,119.132738L141.810119,119.085119"}, {"thickness": 0.15, "svgpath": "M140.800595,68.399404L140.800595,67.599404L141.105357,67.599404L141.181547,67.6375L141.219642,67.675595L141.257738,67.751785L141.257738,67.866071L141.219642,67.942261L141.181547,67.980357L141.105357,68.018452L140.800595,68.018452M141.600595,68.399404L141.600595,67.599404M141.981547,68.399404L141.981547,67.599404L142.43869,68.399404L142.43869,67.599404M143.23869,68.399404L142.781547,68.399404M143.010119,68.399404L143.010119,67.599404L142.933928,67.71369L142.857738,67.78988L142.781547,67.827976M143.772023,68.666071L143.772023,67.523214M144.343452,68.399404L144.343452,67.599404L144.648214,67.599404L144.724404,67.6375L144.7625,67.675595L144.800595,67.751785L144.800595,67.866071L144.7625,67.942261L144.724404,67.980357L144.648214,68.018452L144.343452,68.018452M145.143452,68.399404L145.143452,67.599404M145.524404,68.399404L145.524404,67.599404L145.981547,68.399404L145.981547,67.599404M146.324404,67.675595L146.3625,67.6375L146.43869,67.599404L146.629166,67.599404L146.705357,67.6375L146.743452,67.675595L146.781547,67.751785L146.781547,67.827976L146.743452,67.942261L146.286309,68.399404L146.781547,68.399404M147.31488,68.666071L147.31488,67.523214M147.848214,68.361309L147.9625,68.399404L148.152976,68.399404L148.229166,68.361309L148.267261,68.323214L148.305357,68.247023L148.305357,68.170833L148.267261,68.094642L148.229166,68.056547L148.152976,68.018452L148.000595,67.980357L147.924404,67.942261L147.886309,67.904166L147.848214,67.827976L147.848214,67.751785L147.886309,67.675595L147.924404,67.6375L148.000595,67.599404L148.191071,67.599404L148.305357,67.6375M149.105357,68.323214L149.067261,68.361309L148.952976,68.399404L148.876785,68.399404L148.7625,68.361309L148.686309,68.285119L148.648214,68.208928L148.610119,68.056547L148.610119,67.942261L148.648214,67.78988L148.686309,67.71369L148.7625,67.6375L148.876785,67.599404L148.952976,67.599404L149.067261,67.6375L149.105357,67.675595M149.829166,68.399404L149.448214,68.399404L149.448214,67.599404M150.286309,68.666071L150.286309,67.523214M150.819642,68.361309L150.933928,68.399404L151.124404,68.399404L151.200595,68.361309L151.23869,68.323214L151.276785,68.247023L151.276785,68.170833L151.23869,68.094642L151.200595,68.056547L151.124404,68.018452L150.972023,67.980357L150.895833,67.942261L150.857738,67.904166L150.819642,67.827976L150.819642,67.751785L150.857738,67.675595L150.895833,67.6375L150.972023,67.599404L151.1625,67.599404L151.276785,67.6375M151.619642,68.399404L151.619642,67.599404L151.810119,67.599404L151.924404,67.6375L152.000595,67.71369L152.03869,67.78988L152.076785,67.942261L152.076785,68.056547L152.03869,68.208928L152.000595,68.285119L151.924404,68.361309L151.810119,68.399404L151.619642,68.399404M152.381547,68.170833L152.7625,68.170833M152.305357,68.399404L152.572023,67.599404L152.83869,68.399404"}, {"thickness": 0.15, "svgpath": "M151.329166,103.323214L151.291071,103.361309L151.176785,103.399404L151.100595,103.399404L150.986309,103.361309L150.910119,103.285119L150.872023,103.208928L150.833928,103.056547L150.833928,102.942261L150.872023,102.78988L150.910119,102.71369L150.986309,102.6375L151.100595,102.599404L151.176785,102.599404L151.291071,102.6375L151.329166,102.675595M151.710119,103.399404L151.8625,103.399404L151.93869,103.361309L151.976785,103.323214L152.052976,103.208928L152.091071,103.056547L152.091071,102.751785L152.052976,102.675595L152.01488,102.6375L151.93869,102.599404L151.786309,102.599404L151.710119,102.6375L151.672023,102.675595L151.633928,102.751785L151.633928,102.942261L151.672023,103.018452L151.710119,103.056547L151.786309,103.094642L151.93869,103.094642L152.01488,103.056547L152.052976,103.018452L152.091071,102.942261", "ref": 1}, {"type": "segment", "start": [154.323752, 103.7725], "end": [153.801248, 103.7725], "width": 0.12}, {"type": "segment", "start": [154.323752, 102.3025], "end": [153.801248, 102.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M129.624404,110.551785L129.243452,110.818452M129.624404,111.008928L128.824404,111.008928L128.824404,110.704166L128.8625,110.627976L128.900595,110.58988L128.976785,110.551785L129.091071,110.551785L129.167261,110.58988L129.205357,110.627976L129.243452,110.704166L129.243452,111.008928M128.900595,110.247023L128.8625,110.208928L128.824404,110.132738L128.824404,109.942261L128.8625,109.866071L128.900595,109.827976L128.976785,109.78988L129.052976,109.78988L129.167261,109.827976L129.624404,110.285119L129.624404,109.78988M128.824404,109.294642L128.824404,109.218452L128.8625,109.142261L128.900595,109.104166L128.976785,109.066071L129.129166,109.027976L129.319642,109.027976L129.472023,109.066071L129.548214,109.104166L129.586309,109.142261L129.624404,109.218452L129.624404,109.294642L129.586309,109.370833L129.548214,109.408928L129.472023,109.447023L129.319642,109.485119L129.129166,109.485119L128.976785,109.447023L128.900595,109.408928L128.8625,109.370833L128.824404,109.294642", "ref": 1}, {"type": "segment", "start": [130.4975, 112.810436], "end": [130.4975, 113.264564], "width": 0.12}, {"type": "segment", "start": [129.0275, 112.810436], "end": [129.0275, 113.264564], "width": 0.12}, {"thickness": 0.15, "svgpath": "M134.748214,129.323214L134.710119,129.361309L134.595833,129.399404L134.519642,129.399404L134.405357,129.361309L134.329166,129.285119L134.291071,129.208928L134.252976,129.056547L134.252976,128.942261L134.291071,128.78988L134.329166,128.71369L134.405357,128.6375L134.519642,128.599404L134.595833,128.599404L134.710119,128.6375L134.748214,128.675595M135.510119,129.399404L135.052976,129.399404M135.281547,129.399404L135.281547,128.599404L135.205357,128.71369L135.129166,128.78988L135.052976,128.827976M136.272023,129.399404L135.81488,129.399404M136.043452,129.399404L136.043452,128.599404L135.967261,128.71369L135.891071,128.78988L135.81488,128.827976", "ref": 1}, {"type": "segment", "start": [134.5275, 125.976248], "end": [134.5275, 126.498752], "width": 0.12}, {"type": "segment", "start": [135.9975, 125.976248], "end": [135.9975, 126.498752], "width": 0.12}, {"thickness": 0.15, "svgpath": "M142.329166,93.399404L142.0625,93.018452M141.872023,93.399404L141.872023,92.599404L142.176785,92.599404L142.252976,92.6375L142.291071,92.675595L142.329166,92.751785L142.329166,92.866071L142.291071,92.942261L142.252976,92.980357L142.176785,93.018452L141.872023,93.018452M143.052976,92.599404L142.672023,92.599404L142.633928,92.980357L142.672023,92.942261L142.748214,92.904166L142.93869,92.904166L143.01488,92.942261L143.052976,92.980357L143.091071,93.056547L143.091071,93.247023L143.052976,93.323214L143.01488,93.361309L142.93869,93.399404L142.748214,93.399404L142.672023,93.361309L142.633928,93.323214", "ref": 1}, {"type": "segment", "start": [140.035436, 93.7725], "end": [140.489564, 93.7725], "width": 0.12}, {"type": "segment", "start": [140.035436, 92.3025], "end": [140.489564, 92.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M151.148214,101.399404L150.881547,101.018452M150.691071,101.399404L150.691071,100.599404L150.995833,100.599404L151.072023,100.6375L151.110119,100.675595L151.148214,100.751785L151.148214,100.866071L151.110119,100.942261L151.072023,100.980357L150.995833,101.018452L150.691071,101.018452M151.910119,101.399404L151.452976,101.399404M151.681547,101.399404L151.681547,100.599404L151.605357,100.71369L151.529166,100.78988L151.452976,100.827976M152.633928,100.599404L152.252976,100.599404L152.21488,100.980357L152.252976,100.942261L152.329166,100.904166L152.519642,100.904166L152.595833,100.942261L152.633928,100.980357L152.672023,101.056547L152.672023,101.247023L152.633928,101.323214L152.595833,101.361309L152.519642,101.399404L152.329166,101.399404L152.252976,101.361309L152.21488,101.323214", "ref": 1}, {"type": "segment", "start": [154.489564, 101.7725], "end": [154.035436, 101.7725], "width": 0.12}, {"type": "segment", "start": [154.489564, 100.3025], "end": [154.035436, 100.3025], "width": 0.12}, {"type": "polygon", "pos": [162.2625, 110.0375], "angle": 0.0, "polygons": [[[0.555814, -2.531069], [0.639635, -2.086445], [0.94892, -1.958947], [1.258206, -1.831449], [1.629246, -2.083754], [1.733157, -2.154004], [1.827087, -2.216728], [1.906652, -2.269062], [1.96747, -2.308143], [2.005157, -2.331107], [2.015421, -2.336058], [2.03391, -2.323324], [2.07342, -2.288118], [2.129522, -2.234938], [2.197787, -2.168282], [2.273786, -2.092646], [2.353092, -2.012528], [2.431275, -1.932426], [2.503907, -1.856836], [2.566559, -1.790255], [2.614803, -1.737182], [2.64421, -1.702113], [2.651241, -1.690377], [2.641123, -1.66874], [2.612759, -1.621338], [2.569129, -1.552807], [2.513218, -1.467785], [2.448006, -1.370907], [2.410219, -1.31565], [2.341343, -1.214752], [2.28014, -1.123701], [2.229578, -1.04703], [2.192628, -0.989272], [2.172258, -0.954957], [2.169197, -0.947746], [2.176136, -0.927252], [2.195051, -0.879487], [2.223087, -0.811168], [2.257391, -0.729011], [2.295109, -0.63973], [2.333387, -0.550042], [2.36937, -0.466662], [2.400206, -0.396306], [2.423039, -0.34569], [2.435017, -0.321529], [2.435724, -0.320578], [2.454531, -0.315964], [2.504618, -0.305672], [2.580793, -0.290713], [2.677865, -0.272099], [2.790643, -0.250841], [2.856442, -0.238582], [2.97695, -0.215638], [3.085797, -0.193805], [3.177476, -0.174278], [3.246481, -0.158252], [3.287304, -0.146921], [3.295511, -0.143326], [3.303548, -0.118994], [3.310033, -0.064041], [3.31497, 0.015108], [3.318364, 0.112026], [3.320218, 0.220287], [3.320538, 0.333465], [3.319327, 0.445135], [3.31659, 0.548868], [3.312331, 0.638241], [3.306555, 0.706826], [3.299267, 0.748197], [3.294895, 0.75681], [3.268764, 0.767133], [3.213393, 0.781892], [3.136107, 0.799352], [3.04423, 0.81778], [3.012158, 0.823741], [2.857524, 0.852066], [2.735375, 0.874876], [2.641673, 0.89308], [2.572384, 0.907583], [2.523471, 0.919292], [2.490897, 0.929115], [2.470628, 0.937956], [2.458626, 0.946724], [2.456947, 0.948457], [2.440184, 0.976371], [2.414614, 1.030695], [2.382788, 1.104777], [2.34726, 1.191965], [2.310583, 1.285608], [2.275311, 1.379052], [2.243996, 1.465647], [2.219193, 1.53874], [2.203454, 1.591678], [2.199332, 1.617811], [2.199676, 1.618726], [2.213641, 1.640086], [2.245322, 1.687084], [2.291391, 1.754827], [2.348518, 1.838423], [2.413373, 1.932982], [2.431843, 1.959854], [2.497699, 2.057275], [2.55565, 2.146163], [2.602538, 2.221412], [2.635207, 2.27792], [2.6505, 2.310581], [2.651241, 2.314593], [2.638392, 2.335684], [2.602888, 2.377464], [2.549293, 2.435445], [2.482171, 2.505135], [2.406087, 2.582045], [2.325604, 2.661683], [2.245287, 2.739561], [2.169699, 2.811186], [2.103405, 2.87207], [2.050969, 2.917721], [2.016955, 2.94365], [2.007545, 2.947883], [1.985643, 2.937912], [1.9408, 2.91102], [1.880321, 2.871736], [1.833789, 2.840117], [1.749475, 2.782098], [1.649626, 2.713784], [1.549473, 2.645579], [1.495627, 2.609075], [1.313371, 2.4858], [1.160381, 2.56852], [1.090682, 2.604759], [1.031414, 2.632926], [0.991311, 2.648991], [0.981103, 2.651226], [0.968829, 2.634722], [0.944613, 2.588082], [0.910263, 2.515609], [0.867588, 2.421606], [0.818394, 2.310374], [0.76449, 2.186215], [0.707684, 2.053432], [0.649782, 1.916327], [0.592593, 1.779202], [0.537924, 1.646358], [0.487584, 1.522098], [0.44338, 1.410725], [0.407119, 1.316539], [0.380609, 1.243844], [0.365658, 1.196941], [0.363254, 1.180833], [0.382311, 1.160286], [0.424036, 1.126933], [0.479706, 1.087702], [0.484378, 1.084599], [0.628264, 0.969423], [0.744283, 0.835053], [0.83143, 0.685784], [0.888699, 0.525913], [0.915086, 0.359737], [0.909585, 0.191552], [0.87119, 0.025655], [0.798895, -0.133658], [0.777626, -0.168513], [0.666996, -0.309263], [0.536302, -0.422286], [0.390064, -0.506997], [0.232808, -0.562806], [0.069057, -0.589126], [-0.096667, -0.58537], [-0.259838, -0.55095], [-0.415935, -0.485277], [-0.560433, -0.387765], [-0.605131, -0.348187], [-0.718888, -0.224297], [-0.801782, -0.093876], [-0.858644, 0.052315], [-0.890313, 0.197088], [-0.898131, 0.35986], [-0.872062, 0.52344], [-0.814755, 0.682298], [-0.728856, 0.830906], [-0.617014, 0.963735], [-0.481877, 1.075256], [-0.464117, 1.087011], [-0.40785, 1.125508], [-0.365077, 1.158863], [-0.344628, 1.18016], [-0.344331, 1.180833], [-0.348721, 1.203871], [-0.366124, 1.256157], [-0.394732, 1.33339], [-0.432735, 1.431268], [-0.478326, 1.545491], [-0.529697, 1.671758], [-0.585038, 1.805767], [-0.642542, 1.943218], [-0.700399, 2.079808], [-0.756802, 2.211237], [-0.809942, 2.333205], [-0.85801, 2.441409], [-0.899199, 2.531549], [-0.931699, 2.599323], [-0.953703, 2.64043], [-0.962564, 2.651226], [-0.98964, 2.642819], [-1.040303, 2.620272], [-1.105817, 2.587613], [-1.141841, 2.56852], [-1.294832, 2.4858], [-1.477088, 2.609075], [-1.570125, 2.672228], [-1.671985, 2.741727], [-1.767438, 2.807165], [-1.81525, 2.840117], [-1.882495, 2.885273], [-1.939436, 2.921057], [-1.978646, 2.942938], [-1.991381, 2.947563], [-2.009917, 2.935085], [-2.050941, 2.900252], [-2.110475, 2.846678], [-2.184542, 2.777983], [-2.269165, 2.697781], [-2.322685, 2.646286], [-2.416319, 2.554286], [-2.497241, 2.471999], [-2.562177, 2.402945], [-2.607858, 2.350644], [-2.631011, 2.318616], [-2.633232, 2.312116], [-2.622924, 2.287394], [-2.594439, 2.237405], [-2.550937, 2.167212], [-2.495577, 2.081875], [-2.43152, 1.986456], [-2.413303, 1.959854], [-2.346927, 1.863167], [-2.287378, 1.776117], [-2.237984, 1.703595], [-2.202075, 1.650493], [-2.182981, 1.621703], [-2.181136, 1.618726], [-2.183895, 1.595782], [-2.198538, 1.545336], [-2.222513, 1.474041], [-2.253266, 1.388547], [-2.288244, 1.295507], [-2.324893, 1.201574], [-2.360661, 1.113399], [-2.392994, 1.037634], [-2.419338, 0.980931], [-2.437142, 0.949943], [-2.438407, 0.948457], [-2.449294, 0.939601], [-2.467682, 0.930843], [-2.497606, 0.921277], [-2.543103, 0.909996], [-2.608209, 0.896093], [-2.696961, 0.878663], [-2.813393, 0.856798], [-2.961542, 0.829591], [-2.993618, 0.823741], [-3.088686, 0.805374], [-3.171565, 0.787405], [-3.23493, 0.771569], [-3.271458, 0.7596], [-3.276356, 0.75681], [-3.284427, 0.732072], [-3.290987, 0.67679], [-3.296033, 0.597389], [-3.299559, 0.500296], [-3.301561, 0.391938], [-3.302036, 0.27874], [-3.300977, 0.167128], [-3.298382, 0.063529], [-3.294246, -0.025632], [-3.288563, -0.093928], [-3.281331, -0.134934], [-3.276971, -0.143326], [-3.252698, -0.151792], [-3.197426, -0.165565], [-3.116662, -0.18345], [-3.015912, -0.204252], [-2.900683, -0.226777], [-2.837902, -0.238582], [-2.718787, -0.260849], [-2.612565, -0.281021], [-2.524427, -0.298085], [-2.459566, -0.311031], [-2.423174, -0.318845], [-2.417184, -0.320578], [-2.407061, -0.34011], [-2.385662, -0.387157], [-2.355839, -0.454997], [-2.320445, -0.536909], [-2.282332, -0.626172], [-2.244353, -0.716065], [-2.20936, -0.799865], [-2.180206, -0.870853], [-2.159743, -0.922306], [-2.150823, -0.947503], [-2.150657, -0.948604], [-2.160769, -0.968481], [-2.189117, -1.014223], [-2.232723, -1.081283], [-2.288606, -1.165116], [-2.353787, -1.261174], [-2.391679, -1.31635], [-2.460725, -1.417519], [-2.52205, -1.50937], [-2.572663, -1.587256], [-2.609571, -1.646531], [-2.629782, -1.682549], [-2.632701, -1.690623], [-2.620153, -1.709416], [-2.585463, -1.749543], [-2.533063, -1.806507], [-2.467384, -1.875815], [-2.392856, -1.952969], [-2.313913, -2.033475], [-2.234983, -2.112837], [-2.1605, -2.18656], [-2.094894, -2.250148], [-2.042596, -2.299106], [-2.008039, -2.328939], [-1.996478, -2.336058], [-1.977654, -2.326047], [-1.932631, -2.297922], [-1.865787, -2.254546], [-1.781499, -2.198782], [-1.684144, -2.133494], [-1.610707, -2.083754], [-1.239667, -1.831449], [-0.621095, -2.086445], [-0.537275, -2.531069], [-0.453454, -2.975693], [0.471994, -2.975693], [0.555814, -2.531069]]]}, {"thickness": 0.15, "svgpath": "M142.329166,95.399404L142.0625,95.018452M141.872023,95.399404L141.872023,94.599404L142.176785,94.599404L142.252976,94.6375L142.291071,94.675595L142.329166,94.751785L142.329166,94.866071L142.291071,94.942261L142.252976,94.980357L142.176785,95.018452L141.872023,95.018452M143.01488,94.599404L142.8625,94.599404L142.786309,94.6375L142.748214,94.675595L142.672023,94.78988L142.633928,94.942261L142.633928,95.247023L142.672023,95.323214L142.710119,95.361309L142.786309,95.399404L142.93869,95.399404L143.01488,95.361309L143.052976,95.323214L143.091071,95.247023L143.091071,95.056547L143.052976,94.980357L143.01488,94.942261L142.93869,94.904166L142.786309,94.904166L142.710119,94.942261L142.672023,94.980357L142.633928,95.056547", "ref": 1}, {"type": "segment", "start": [140.035436, 94.3025], "end": [140.489564, 94.3025], "width": 0.12}, {"type": "segment", "start": [140.035436, 95.7725], "end": [140.489564, 95.7725], "width": 0.12}, {"type": "polygon", "pos": [132.7625, 110.5375], "angle": 0.0, "polygons": [[[2.116877, -2.764724], [3.383025, -2.074333], [3.384846, -1.562038], [3.386667, -1.049742], [3.001301, -0.862517], [2.790526, -0.744233], [2.670184, -0.645099], [2.658544, -0.606349], [2.756204, -0.53197], [2.951559, -0.426272], [3.04391, -0.382844], [3.386667, -0.228282], [3.385955, 0.753692], [3.385242, 1.735667], [2.958732, 1.961382], [2.532222, 2.187098], [2.176278, 1.983569], [1.955571, 1.864108], [1.796662, 1.790367], [1.756834, 1.77902], [1.721214, 1.854803], [1.697798, 2.050556], [1.692499, 2.2225], [1.691665, 2.667], [0.909333, 3.090334], [0.572241, 3.267716], [0.281728, 3.411355], [0.075183, 3.503285], [0.0, 3.527314], [-0.123164, 3.493503], [-0.355769, 3.391419], [-0.661039, 3.238198], [-0.908502, 3.10398], [-1.690003, 2.667], [-1.69278, 1.100667], [-1.100666, 1.100667], [-0.57469, 1.100667], [-0.635467, 0.3175], [-0.656467, -0.015334], [-0.662989, -0.266572], [-0.654674, -0.4023], [-0.643244, -0.415066], [-0.591922, -0.31503], [-0.506157, -0.098671], [-0.403589, 0.189211], [-0.393179, 0.219934], [-0.253409, 0.583479], [-0.129647, 0.781514], [-0.013063, 0.816032], [0.105175, 0.689025], [0.233899, 0.402484], [0.247907, 0.364532], [0.389806, -0.016194], [0.484588, -0.237516], [0.539083, -0.300543], [0.56012, -0.206382], [0.554529, 0.043861], [0.53802, 0.3175], [0.486159, 1.100667], [1.016, 1.100667], [1.016, -1.185333], [0.734573, -1.185333], [0.592127, -1.178256], [0.494874, -1.134867], [0.417781, -1.021929], [0.335814, -0.806205], [0.25236, -0.545104], [0.151022, -0.23986], [0.062012, -0.003481], [0.001326, 0.122357], [-0.007325, 0.131527], [-0.059519, 0.074492], [-0.148137, -0.109023], [-0.257282, -0.38445], [-0.301766, -0.508702], [-0.419082, -0.837342], [-0.50633, -1.037477], [-0.587853, -1.140954], [-0.687997, -1.179621], [-0.818987, -1.185333], [-1.100666, -1.185333], [-1.100666, 1.100667], [-1.69278, 1.100667], [-1.693333, 0.788912], [-2.119295, 0.557074], [-2.545257, 0.325237], [-2.521462, -0.64663], [-2.497666, -1.618497], [-1.694762, -2.059689], [-0.856296, -1.603339], [-0.00244, -2.074333], [-0.000508, -2.54], [0.001425, -3.005666], [0.426076, -3.230391], [0.850728, -3.455115]]]}, {"thickness": 0.15, "svgpath": "M152.879166,72.799404L152.6125,72.418452M152.422023,72.799404L152.422023,71.999404L152.726785,71.999404L152.802976,72.0375L152.841071,72.075595L152.879166,72.151785L152.879166,72.266071L152.841071,72.342261L152.802976,72.380357L152.726785,72.418452L152.422023,72.418452M153.260119,72.799404L153.4125,72.799404L153.48869,72.761309L153.526785,72.723214L153.602976,72.608928L153.641071,72.456547L153.641071,72.151785L153.602976,72.075595L153.56488,72.0375L153.48869,71.999404L153.336309,71.999404L153.260119,72.0375L153.222023,72.075595L153.183928,72.151785L153.183928,72.342261L153.222023,72.418452L153.260119,72.456547L153.336309,72.494642L153.48869,72.494642L153.56488,72.456547L153.602976,72.418452L153.641071,72.342261", "ref": 1}, {"type": "segment", "start": [154.489564, 70.3025], "end": [154.035436, 70.3025], "width": 0.12}, {"type": "segment", "start": [154.489564, 71.7725], "end": [154.035436, 71.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M153.748214,84.570833L153.786309,84.608928L153.824404,84.723214L153.824404,84.799404L153.786309,84.91369L153.710119,84.98988L153.633928,85.027976L153.481547,85.066071L153.367261,85.066071L153.21488,85.027976L153.13869,84.98988L153.0625,84.91369L153.024404,84.799404L153.024404,84.723214L153.0625,84.608928L153.100595,84.570833M153.024404,84.304166L153.024404,83.770833L153.824404,84.11369", "ref": 1}, {"type": "segment", "start": [155.5975, 83.776248], "end": [155.5975, 84.298752], "width": 0.12}, {"type": "segment", "start": [154.1275, 83.776248], "end": [154.1275, 84.298752], "width": 0.12}, {"thickness": 0.15, "svgpath": "M142.329166,85.399404L142.0625,85.018452M141.872023,85.399404L141.872023,84.599404L142.176785,84.599404L142.252976,84.6375L142.291071,84.675595L142.329166,84.751785L142.329166,84.866071L142.291071,84.942261L142.252976,84.980357L142.176785,85.018452L141.872023,85.018452M143.01488,84.866071L143.01488,85.399404M142.824404,84.561309L142.633928,85.132738L143.129166,85.132738", "ref": 1}, {"type": "segment", "start": [140.035436, 85.7725], "end": [140.489564, 85.7725], "width": 0.12}, {"type": "segment", "start": [140.035436, 84.3025], "end": [140.489564, 84.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M146.897976,107.099404L146.897976,107.747023L146.936071,107.823214L146.974166,107.861309L147.050357,107.899404L147.202738,107.899404L147.278928,107.861309L147.317023,107.823214L147.355119,107.747023L147.355119,107.099404M148.155119,107.899404L147.697976,107.899404M147.926547,107.899404L147.926547,107.099404L147.850357,107.21369L147.774166,107.28988L147.697976,107.327976", "ref": 1}, {"type": "segment", "start": [138.3675, 110.9875], "end": [138.3675, 108.4475], "width": 0.12}, {"type": "segment", "start": [151.0675, 109.0825], "end": [151.0675, 110.9875], "width": 0.12}, {"type": "segment", "start": [149.7975, 110.3525], "end": [148.5275, 110.3525], "width": 0.12}, {"type": "segment", "start": [147.2575, 109.7175], "end": [147.2575, 110.3525], "width": 0.12}, {"type": "segment", "start": [148.5275, 110.3525], "end": [148.5275, 109.7175], "width": 0.12}, {"type": "segment", "start": [156.1475, 131.9425], "end": [156.1475, 131.3075], "width": 0.12}, {"type": "segment", "start": [156.1475, 108.4475], "end": [156.1475, 110.9875], "width": 0.12}, {"type": "segment", "start": [145.9875, 110.3525], "end": [145.9875, 109.7175], "width": 0.12}, {"type": "segment", "start": [138.3675, 131.9425], "end": [138.3675, 131.3075], "width": 0.12}, {"type": "segment", "start": [142.1775, 133.2125], "end": [142.1775, 131.9425], "width": 0.12}, {"type": "segment", "start": [142.1775, 131.9425], "end": [138.3675, 131.9425], "width": 0.12}, {"type": "segment", "start": [138.3675, 108.4475], "end": [156.1475, 108.4475], "width": 0.12}, {"type": "segment", "start": [151.0675, 110.9875], "end": [143.4475, 110.9875], "width": 0.12}, {"type": "segment", "start": [148.5275, 109.7175], "end": [147.2575, 109.7175], "width": 0.12}, {"type": "segment", "start": [144.7175, 109.7175], "end": [144.7175, 110.3525], "width": 0.12}, {"type": "segment", "start": [149.7975, 109.0825], "end": [149.7975, 110.3525], "width": 0.12}, {"type": "segment", "start": [145.9875, 109.7175], "end": [144.7175, 109.7175], "width": 0.12}, {"type": "segment", "start": [152.3375, 131.9425], "end": [152.3375, 133.2125], "width": 0.12}, {"type": "segment", "start": [156.1475, 131.9425], "end": [152.3375, 131.9425], "width": 0.12}, {"type": "segment", "start": [152.3375, 133.2125], "end": [142.1775, 133.2125], "width": 0.12}, {"type": "segment", "start": [147.2575, 110.3525], "end": [145.9875, 110.3525], "width": 0.12}, {"type": "segment", "start": [143.4475, 110.9875], "end": [143.4475, 109.0825], "width": 0.12}, {"type": "segment", "start": [143.4475, 109.0825], "end": [151.0675, 109.0825], "width": 0.12}, {"thickness": 0.15, "svgpath": "M151.148214,89.399404L150.881547,89.018452M150.691071,89.399404L150.691071,88.599404L150.995833,88.599404L151.072023,88.6375L151.110119,88.675595L151.148214,88.751785L151.148214,88.866071L151.110119,88.942261L151.072023,88.980357L150.995833,89.018452L150.691071,89.018452M151.910119,89.399404L151.452976,89.399404M151.681547,89.399404L151.681547,88.599404L151.605357,88.71369L151.529166,88.78988L151.452976,88.827976M152.595833,88.866071L152.595833,89.399404M152.405357,88.561309L152.21488,89.132738L152.710119,89.132738", "ref": 1}, {"type": "segment", "start": [154.489564, 89.7725], "end": [154.035436, 89.7725], "width": 0.12}, {"type": "segment", "start": [154.489564, 88.3025], "end": [154.035436, 88.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M142.329166,101.399404L142.0625,101.018452M141.872023,101.399404L141.872023,100.599404L142.176785,100.599404L142.252976,100.6375L142.291071,100.675595L142.329166,100.751785L142.329166,100.866071L142.291071,100.942261L142.252976,100.980357L142.176785,101.018452L141.872023,101.018452M142.595833,100.599404L143.129166,100.599404L142.786309,101.399404", "ref": 1}, {"type": "segment", "start": [140.035436, 100.3025], "end": [140.489564, 100.3025], "width": 0.12}, {"type": "segment", "start": [140.035436, 101.7725], "end": [140.489564, 101.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M152.148214,82.999404L151.881547,82.618452M151.691071,82.999404L151.691071,82.199404L151.995833,82.199404L152.072023,82.2375L152.110119,82.275595L152.148214,82.351785L152.148214,82.466071L152.110119,82.542261L152.072023,82.580357L151.995833,82.618452L151.691071,82.618452M152.910119,82.999404L152.452976,82.999404M152.681547,82.999404L152.681547,82.199404L152.605357,82.31369L152.529166,82.38988L152.452976,82.427976M153.672023,82.999404L153.21488,82.999404M153.443452,82.999404L153.443452,82.199404L153.367261,82.31369L153.291071,82.38988L153.21488,82.427976", "ref": 1}, {"type": "segment", "start": [154.489564, 81.7725], "end": [154.035436, 81.7725], "width": 0.12}, {"type": "segment", "start": [154.489564, 80.3025], "end": [154.035436, 80.3025], "width": 0.12}, {"type": "polygon", "pos": [147.2625, 123.0375], "angle": 90.0, "polygons": [[[-4.600575, -1.935162], [-4.600972, -1.935162], [-4.600972, -1.935163], [-4.978503, -1.897979], [-5.341527, -1.787857], [-5.676091, -1.609029], [-5.969338, -1.368367], [-6.210001, -1.075119], [-6.388829, -0.740555], [-6.498951, -0.377531], [-6.536134, 0.0], [-6.498951, 0.377531], [-6.388829, 0.740555], [-6.210001, 1.075119], [-5.969338, 1.368367], [-5.676091, 1.609029], [-5.341527, 1.787857], [-4.978503, 1.897979], [-4.600972, 1.935163], [-4.600575, 1.935163], [-2.605088, 1.935163], [-2.605088, 1.476375], [-4.529138, 1.476375], [-4.541044, 1.357313], [-4.538663, 1.2573], [-4.516636, 1.0287], [-4.450556, 0.81915], [-4.350544, 0.626864], [-4.226719, 0.450056], [-4.086225, 0.286941], [-3.936206, 0.135731], [-3.786188, -0.006548], [-3.645694, -0.142875], [-3.421856, -0.40005], [-3.33375, -0.652462], [-3.443288, -0.931069], [-3.719512, -1.0287], [-4.010025, -0.962025], [-4.310063, -0.738187], [-4.600575, -1.147762], [-4.395192, -1.321594], [-4.160044, -1.443037], [-3.910608, -1.514475], [-3.662363, -1.538287], [-3.3147, -1.4859], [-3.019425, -1.328738], [-2.814638, -1.064419], [-2.738438, -0.695325], [-2.795588, -0.402431], [-2.947988, -0.128587], [-3.1623, 0.128587], [-3.405188, 0.366713], [-3.548063, 0.502444], [-3.700462, 0.664369], [-3.821906, 0.833437], [-3.871913, 0.9906], [-2.605088, 0.9906], [-2.605088, 1.476375], [-2.605088, 1.935163], [-1.233488, 1.935163], [-1.233488, 1.538288], [-1.540404, 1.495954], [-1.794404, 1.368954], [-1.995488, 1.157288], [-2.110085, 0.941784], [-2.191941, 0.676275], [-2.241054, 0.360759], [-2.257425, -0.004762], [-2.240756, -0.366117], [-2.19075, -0.678656], [-2.107406, -0.94238], [-1.990725, -1.157287], [-1.788054, -1.368954], [-1.535642, -1.495954], [-1.233488, -1.538287], [-0.926571, -1.496219], [-0.672571, -1.370012], [-0.471488, -1.159669], [-0.35689, -0.945505], [-0.275034, -0.681633], [-0.225921, -0.368052], [-0.20955, -0.004762], [-0.225921, 0.360759], [-0.275034, 0.676275], [-0.35689, 0.941784], [-0.471488, 1.157288], [-0.672571, 1.368954], [-0.926571, 1.495954], [-1.233488, 1.538288], [-1.233488, 1.935163], [2.157413, 1.935163], [2.157413, 1.476375], [0.233362, 1.476375], [0.221456, 1.357313], [0.223838, 1.2573], [0.245864, 1.0287], [0.311944, 0.81915], [0.411956, 0.626864], [0.535781, 0.450056], [0.676275, 0.286941], [0.826294, 0.135731], [0.976313, -0.006548], [1.116806, -0.142875], [1.340644, -0.40005], [1.42875, -0.652462], [1.319213, -0.931069], [1.042988, -1.0287], [0.752475, -0.962025], [0.452437, -0.738187], [0.161925, -1.147762], [0.367308, -1.321594], [0.602456, -1.443037], [0.851892, -1.514475], [1.100137, -1.538287], [1.4478, -1.4859], [1.743075, -1.328738], [1.947862, -1.064419], [2.024062, -0.695325], [1.966912, -0.402431], [1.814512, -0.128587], [1.6002, 0.128587], [1.357313, 0.366713], [1.214437, 0.502444], [1.062038, 0.664369], [0.940594, 0.833437], [0.890587, 0.9906], [2.157413, 0.9906], [2.157413, 1.476375], [2.157413, 1.935163], [4.281488, 1.935163], [4.281488, 1.476375], [3.6957, 1.476375], [3.6957, 0.78105], [2.466975, 0.78105], [2.466975, 0.352425], [2.570559, 0.154186], [2.700337, -0.069056], [2.850356, -0.307777], [3.014663, -0.55245], [3.190875, -0.798314], [3.376612, -1.040606], [3.567112, -1.268611], [3.757612, -1.471612], [4.281488, -1.471612], [4.281488, 0.300038], [4.600575, 0.300038], [4.600575, 0.78105], [4.281488, 0.78105], [4.281488, 1.476375], [4.281488, 1.935163], [4.600575, 1.935163], [4.600972, 1.935163], [4.600972, 1.935162], [4.978503, 1.897979], [5.341527, 1.787857], [5.676091, 1.609029], [5.969338, 1.368367], [6.210001, 1.075119], [6.388829, 0.740555], [6.498951, 0.377531], [6.536134, 0.0], [6.498951, -0.377531], [6.388829, -0.740555], [6.210001, -1.075119], [5.969338, -1.368367], [5.676091, -1.609029], [5.341527, -1.787857], [4.978503, -1.897979], [4.600972, -1.935162], [4.600575, -1.935162], [-4.600575, -1.935162]]]}, {"type": "polygon", "pos": [147.2625, 123.0375], "angle": 90.0, "polygons": [[[3.6957, -0.738187], [3.519487, -0.504825], [3.340894, -0.245269], [3.171825, 0.028575], [3.02895, 0.300038], [3.6957, 0.300038], [3.6957, -0.738187]]]}, {"type": "polygon", "pos": [147.2625, 123.0375], "angle": 90.0, "polygons": [[[-0.738187, -0.004762], [-0.75221, -0.31459], [-0.794279, -0.570971], [-0.864394, -0.773906], [-1.01977, -0.972145], [-1.233488, -1.038225], [-1.444228, -0.972145], [-1.6002, -0.773906], [-1.671638, -0.570971], [-1.7145, -0.31459], [-1.728788, -0.004762], [-1.7145, 0.30771], [-1.671638, 0.565679], [-1.6002, 0.769144], [-1.444228, 0.967383], [-1.233488, 1.033463], [-1.228725, 1.03199], [-1.228725, 0.261938], [-1.423988, 0.169069], [-1.495425, -0.052387], [-1.423988, -0.276225], [-1.228725, -0.371475], [-1.040606, -0.276225], [-0.966787, -0.052387], [-1.040606, 0.169069], [-1.228725, 0.261938], [-1.228725, 1.03199], [-1.01977, 0.967383], [-0.864394, 0.769144], [-0.794279, 0.565679], [-0.75221, 0.30771], [-0.738187, -0.004762]]]}, {"thickness": 0.15, "svgpath": "M163.152976,95.099404L163.610119,95.099404M163.381547,95.899404L163.381547,95.099404M163.800595,95.099404L164.333928,95.099404L163.991071,95.899404", "ref": 1}, {"type": "segment", "start": [167.2125, 89.2875], "end": [156.4625, 89.2875], "width": 0.12}, {"type": "segment", "start": [156.4625, 94.7875], "end": [167.2125, 94.7875], "width": 0.12}, {"type": "segment", "start": [167.2625, 88.7875], "end": [167.2625, 95.2875], "width": 0.12}, {"type": "segment", "start": [156.4625, 89.2875], "end": [156.4625, 94.7875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M130.152976,85.099404L130.610119,85.099404M130.381547,85.899404L130.381547,85.099404M130.83869,85.175595L130.876785,85.1375L130.952976,85.099404L131.143452,85.099404L131.219642,85.1375L131.257738,85.175595L131.295833,85.251785L131.295833,85.327976L131.257738,85.442261L130.800595,85.899404L131.295833,85.899404", "ref": 1}, {"type": "segment", "start": [138.0625, 84.7875], "end": [138.0625, 79.2875], "width": 0.12}, {"type": "segment", "start": [127.3125, 84.7875], "end": [138.0625, 84.7875], "width": 0.12}, {"type": "segment", "start": [138.0625, 79.2875], "end": [127.3125, 79.2875], "width": 0.12}, {"type": "segment", "start": [127.2625, 85.2875], "end": [127.2625, 78.7875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M163.152976,75.099404L163.610119,75.099404M163.381547,75.899404L163.381547,75.099404M164.257738,75.099404L163.876785,75.099404L163.83869,75.480357L163.876785,75.442261L163.952976,75.404166L164.143452,75.404166L164.219642,75.442261L164.257738,75.480357L164.295833,75.556547L164.295833,75.747023L164.257738,75.823214L164.219642,75.861309L164.143452,75.899404L163.952976,75.899404L163.876785,75.861309L163.83869,75.823214", "ref": 1}, {"type": "segment", "start": [167.2125, 69.2875], "end": [156.4625, 69.2875], "width": 0.12}, {"type": "segment", "start": [167.2625, 68.7875], "end": [167.2625, 75.2875], "width": 0.12}, {"type": "segment", "start": [156.4625, 74.7875], "end": [167.2125, 74.7875], "width": 0.12}, {"type": "segment", "start": [156.4625, 69.2875], "end": [156.4625, 74.7875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M160.348214,114.399404L160.081547,114.018452M159.891071,114.399404L159.891071,113.599404L160.195833,113.599404L160.272023,113.6375L160.310119,113.675595L160.348214,113.751785L160.348214,113.866071L160.310119,113.942261L160.272023,113.980357L160.195833,114.018452L159.891071,114.018452M160.652976,113.675595L160.691071,113.6375L160.767261,113.599404L160.957738,113.599404L161.033928,113.6375L161.072023,113.675595L161.110119,113.751785L161.110119,113.827976L161.072023,113.942261L160.61488,114.399404L161.110119,114.399404M161.872023,114.399404L161.41488,114.399404M161.643452,114.399404L161.643452,113.599404L161.567261,113.71369L161.491071,113.78988L161.41488,113.827976", "ref": 1}, {"type": "segment", "start": [163.235436, 113.3025], "end": [163.689564, 113.3025], "width": 0.12}, {"type": "segment", "start": [163.235436, 114.7725], "end": [163.689564, 114.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M153.748214,77.899404L153.481547,77.518452M153.291071,77.899404L153.291071,77.099404L153.595833,77.099404L153.672023,77.1375L153.710119,77.175595L153.748214,77.251785L153.748214,77.366071L153.710119,77.442261L153.672023,77.480357L153.595833,77.518452L153.291071,77.518452M154.510119,77.899404L154.052976,77.899404M154.281547,77.899404L154.281547,77.099404L154.205357,77.21369L154.129166,77.28988L154.052976,77.327976M154.81488,77.175595L154.852976,77.1375L154.929166,77.099404L155.119642,77.099404L155.195833,77.1375L155.233928,77.175595L155.272023,77.251785L155.272023,77.327976L155.233928,77.442261L154.776785,77.899404L155.272023,77.899404", "ref": 1}, {"type": "segment", "start": [154.489564, 78.3025], "end": [154.035436, 78.3025], "width": 0.12}, {"type": "segment", "start": [154.489564, 79.7725], "end": [154.035436, 79.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M141.348214,89.970833L141.386309,90.008928L141.424404,90.123214L141.424404,90.199404L141.386309,90.31369L141.310119,90.38988L141.233928,90.427976L141.081547,90.466071L140.967261,90.466071L140.81488,90.427976L140.73869,90.38988L140.6625,90.31369L140.624404,90.199404L140.624404,90.123214L140.6625,90.008928L140.700595,89.970833M140.624404,89.704166L140.624404,89.208928L140.929166,89.475595L140.929166,89.361309L140.967261,89.285119L141.005357,89.247023L141.081547,89.208928L141.272023,89.208928L141.348214,89.247023L141.386309,89.285119L141.424404,89.361309L141.424404,89.58988L141.386309,89.666071L141.348214,89.704166", "ref": 1}, {"type": "segment", "start": [138.9275, 90.298752], "end": [138.9275, 89.776248], "width": 0.12}, {"type": "segment", "start": [140.3975, 90.298752], "end": [140.3975, 89.776248], "width": 0.12}, {"thickness": 0.15, "svgpath": "M141.548214,79.909581L141.586309,79.947676L141.624404,80.061962L141.624404,80.138152L141.586309,80.252438L141.510119,80.328628L141.433928,80.366724L141.281547,80.404819L141.167261,80.404819L141.01488,80.366724L140.93869,80.328628L140.8625,80.252438L140.824404,80.138152L140.824404,80.061962L140.8625,79.947676L140.900595,79.909581M140.900595,79.604819L140.8625,79.566724L140.824404,79.490533L140.824404,79.300057L140.8625,79.223867L140.900595,79.185771L140.976785,79.147676L141.052976,79.147676L141.167261,79.185771L141.624404,79.642914L141.624404,79.147676", "ref": 1}, {"type": "segment", "start": [138.9275, 80.298752], "end": [138.9275, 79.776248], "width": 0.12}, {"type": "segment", "start": [140.3975, 80.298752], "end": [140.3975, 79.776248], "width": 0.12}, {"thickness": 0.15, "svgpath": "M128.836309,121.104166L128.874404,120.98988L128.874404,120.799404L128.836309,120.723214L128.798214,120.685119L128.722023,120.647023L128.645833,120.647023L128.569642,120.685119L128.531547,120.723214L128.493452,120.799404L128.455357,120.951785L128.417261,121.027976L128.379166,121.066071L128.302976,121.104166L128.226785,121.104166L128.150595,121.066071L128.1125,121.027976L128.074404,120.951785L128.074404,120.761309L128.1125,120.647023M128.074404,120.380357L128.874404,120.18988L128.302976,120.0375L128.874404,119.885119L128.074404,119.694642M128.874404,118.970833L128.874404,119.427976M128.874404,119.199404L128.074404,119.199404L128.18869,119.275595L128.26488,119.351785L128.302976,119.427976", "ref": 1}, {"type": "segment", "start": [131.2625, 122.7875], "end": [133.2625, 122.7875], "width": 0.12}, {"type": "segment", "start": [129.5125, 121.2875], "end": [129.5125, 118.7875], "width": 0.12}, {"type": "segment", "start": [135.0125, 121.2875], "end": [135.0125, 118.7875], "width": 0.12}, {"type": "segment", "start": [134.5625, 118.3375], "end": [135.0125, 118.7875], "width": 0.12}, {"type": "segment", "start": [129.9625, 121.7375], "end": [129.5125, 121.2875], "width": 0.12}, {"type": "segment", "start": [129.9625, 118.3375], "end": [129.5125, 118.7875], "width": 0.12}, {"type": "segment", "start": [131.2625, 117.2875], "end": [133.2625, 117.2875], "width": 0.12}, {"type": "segment", "start": [134.5625, 121.7375], "end": [135.0125, 121.2875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M153.548214,94.370833L153.586309,94.408928L153.624404,94.523214L153.624404,94.599404L153.586309,94.71369L153.510119,94.78988L153.433928,94.827976L153.281547,94.866071L153.167261,94.866071L153.01488,94.827976L152.93869,94.78988L152.8625,94.71369L152.824404,94.599404L152.824404,94.523214L152.8625,94.408928L152.900595,94.370833M153.167261,93.91369L153.129166,93.98988L153.091071,94.027976L153.01488,94.066071L152.976785,94.066071L152.900595,94.027976L152.8625,93.98988L152.824404,93.91369L152.824404,93.761309L152.8625,93.685119L152.900595,93.647023L152.976785,93.608928L153.01488,93.608928L153.091071,93.647023L153.129166,93.685119L153.167261,93.761309L153.167261,93.91369L153.205357,93.98988L153.243452,94.027976L153.319642,94.066071L153.472023,94.066071L153.548214,94.027976L153.586309,93.98988L153.624404,93.91369L153.624404,93.761309L153.586309,93.685119L153.548214,93.647023L153.472023,93.608928L153.319642,93.608928L153.243452,93.647023L153.205357,93.685119L153.167261,93.761309", "ref": 1}, {"type": "segment", "start": [155.5975, 93.776248], "end": [155.5975, 94.298752], "width": 0.12}, {"type": "segment", "start": [154.1275, 93.776248], "end": [154.1275, 94.298752], "width": 0.12}, {"thickness": 0.15, "svgpath": "M165.68869,118.970833L165.650595,119.085119L165.650595,119.275595L165.68869,119.351785L165.726785,119.38988L165.802976,119.427976L165.879166,119.427976L165.955357,119.38988L165.993452,119.351785L166.031547,119.275595L166.069642,119.123214L166.107738,119.047023L166.145833,119.008928L166.222023,118.970833L166.298214,118.970833L166.374404,119.008928L166.4125,119.047023L166.450595,119.123214L166.450595,119.31369L166.4125,119.427976M166.450595,119.694642L165.650595,119.885119L166.222023,120.0375L165.650595,120.18988L166.450595,120.380357M166.374404,120.647023L166.4125,120.685119L166.450595,120.761309L166.450595,120.951785L166.4125,121.027976L166.374404,121.066071L166.298214,121.104166L166.222023,121.104166L166.107738,121.066071L165.650595,120.608928L165.650595,121.104166", "ref": 1}, {"type": "segment", "start": [164.5625, 118.3375], "end": [165.0125, 118.7875], "width": 0.12}, {"type": "segment", "start": [164.5625, 121.7375], "end": [165.0125, 121.2875], "width": 0.12}, {"type": "segment", "start": [159.9625, 121.7375], "end": [159.5125, 121.2875], "width": 0.12}, {"type": "segment", "start": [159.9625, 118.3375], "end": [159.5125, 118.7875], "width": 0.12}, {"type": "segment", "start": [165.0125, 118.7875], "end": [165.0125, 121.2875], "width": 0.12}, {"type": "segment", "start": [163.2625, 122.7875], "end": [161.2625, 122.7875], "width": 0.12}, {"type": "segment", "start": [159.5125, 118.7875], "end": [159.5125, 121.2875], "width": 0.12}, {"type": "segment", "start": [163.2625, 117.2875], "end": [161.2625, 117.2875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M139.129166,68.723214L139.091071,68.761309L138.976785,68.799404L138.900595,68.799404L138.786309,68.761309L138.710119,68.685119L138.672023,68.608928L138.633928,68.456547L138.633928,68.342261L138.672023,68.18988L138.710119,68.11369L138.786309,68.0375L138.900595,67.999404L138.976785,67.999404L139.091071,68.0375L139.129166,68.075595M139.891071,68.799404L139.433928,68.799404M139.6625,68.799404L139.6625,67.999404L139.586309,68.11369L139.510119,68.18988L139.433928,68.227976", "ref": 1}, {"type": "segment", "start": [140.3975, 71.098752], "end": [140.3975, 70.576248], "width": 0.12}, {"type": "segment", "start": [138.9275, 71.098752], "end": [138.9275, 70.576248], "width": 0.12}, {"thickness": 0.15, "svgpath": "M163.152976,105.099404L163.610119,105.099404M163.381547,105.899404L163.381547,105.099404M163.991071,105.442261L163.91488,105.404166L163.876785,105.366071L163.83869,105.28988L163.83869,105.251785L163.876785,105.175595L163.91488,105.1375L163.991071,105.099404L164.143452,105.099404L164.219642,105.1375L164.257738,105.175595L164.295833,105.251785L164.295833,105.28988L164.257738,105.366071L164.219642,105.404166L164.143452,105.442261L163.991071,105.442261L163.91488,105.480357L163.876785,105.518452L163.83869,105.594642L163.83869,105.747023L163.876785,105.823214L163.91488,105.861309L163.991071,105.899404L164.143452,105.899404L164.219642,105.861309L164.257738,105.823214L164.295833,105.747023L164.295833,105.594642L164.257738,105.518452L164.219642,105.480357L164.143452,105.442261", "ref": 1}, {"type": "segment", "start": [167.2625, 98.7875], "end": [167.2625, 105.2875], "width": 0.12}, {"type": "segment", "start": [156.4625, 104.7875], "end": [167.2125, 104.7875], "width": 0.12}, {"type": "segment", "start": [156.4625, 99.2875], "end": [156.4625, 104.7875], "width": 0.12}, {"type": "segment", "start": [167.2125, 99.2875], "end": [156.4625, 99.2875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M148.748214,82.899404L148.481547,82.518452M148.291071,82.899404L148.291071,82.099404L148.595833,82.099404L148.672023,82.1375L148.710119,82.175595L148.748214,82.251785L148.748214,82.366071L148.710119,82.442261L148.672023,82.480357L148.595833,82.518452L148.291071,82.518452M149.510119,82.899404L149.052976,82.899404M149.281547,82.899404L149.281547,82.099404L149.205357,82.21369L149.129166,82.28988L149.052976,82.327976M149.967261,82.442261L149.891071,82.404166L149.852976,82.366071L149.81488,82.28988L149.81488,82.251785L149.852976,82.175595L149.891071,82.1375L149.967261,82.099404L150.119642,82.099404L150.195833,82.1375L150.233928,82.175595L150.272023,82.251785L150.272023,82.28988L150.233928,82.366071L150.195833,82.404166L150.119642,82.442261L149.967261,82.442261L149.891071,82.480357L149.852976,82.518452L149.81488,82.594642L149.81488,82.747023L149.852976,82.823214L149.891071,82.861309L149.967261,82.899404L150.119642,82.899404L150.195833,82.861309L150.233928,82.823214L150.272023,82.747023L150.272023,82.594642L150.233928,82.518452L150.195833,82.480357L150.119642,82.442261", "ref": 1}, {"type": "segment", "start": [150.2625, 80.3025], "end": [149.808372, 80.3025], "width": 0.12}, {"type": "segment", "start": [150.2625, 81.7725], "end": [149.808372, 81.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M151.148214,99.599404L150.881547,99.218452M150.691071,99.599404L150.691071,98.799404L150.995833,98.799404L151.072023,98.8375L151.110119,98.875595L151.148214,98.951785L151.148214,99.066071L151.110119,99.142261L151.072023,99.180357L150.995833,99.218452L150.691071,99.218452M151.910119,99.599404L151.452976,99.599404M151.681547,99.599404L151.681547,98.799404L151.605357,98.91369L151.529166,98.98988L151.452976,99.027976M152.595833,98.799404L152.443452,98.799404L152.367261,98.8375L152.329166,98.875595L152.252976,98.98988L152.21488,99.142261L152.21488,99.447023L152.252976,99.523214L152.291071,99.561309L152.367261,99.599404L152.519642,99.599404L152.595833,99.561309L152.633928,99.523214L152.672023,99.447023L152.672023,99.256547L152.633928,99.180357L152.595833,99.142261L152.519642,99.104166L152.367261,99.104166L152.291071,99.142261L152.252976,99.180357L152.21488,99.256547", "ref": 1}, {"type": "segment", "start": [154.489564, 98.3025], "end": [154.035436, 98.3025], "width": 0.12}, {"type": "segment", "start": [154.489564, 99.7725], "end": [154.035436, 99.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M130.152976,105.099404L130.610119,105.099404M130.381547,105.899404L130.381547,105.099404M131.219642,105.366071L131.219642,105.899404M131.029166,105.061309L130.83869,105.632738L131.333928,105.632738", "ref": 1}, {"type": "segment", "start": [127.2625, 105.2875], "end": [127.2625, 98.7875], "width": 0.12}, {"type": "segment", "start": [138.0625, 104.7875], "end": [138.0625, 99.2875], "width": 0.12}, {"type": "segment", "start": [127.3125, 104.7875], "end": [138.0625, 104.7875], "width": 0.12}, {"type": "segment", "start": [138.0625, 99.2875], "end": [127.3125, 99.2875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M163.152976,85.099404L163.610119,85.099404M163.381547,85.899404L163.381547,85.099404M164.219642,85.099404L164.067261,85.099404L163.991071,85.1375L163.952976,85.175595L163.876785,85.28988L163.83869,85.442261L163.83869,85.747023L163.876785,85.823214L163.91488,85.861309L163.991071,85.899404L164.143452,85.899404L164.219642,85.861309L164.257738,85.823214L164.295833,85.747023L164.295833,85.556547L164.257738,85.480357L164.219642,85.442261L164.143452,85.404166L163.991071,85.404166L163.91488,85.442261L163.876785,85.480357L163.83869,85.556547", "ref": 1}, {"type": "segment", "start": [156.4625, 79.2875], "end": [156.4625, 84.7875], "width": 0.12}, {"type": "segment", "start": [167.2125, 79.2875], "end": [156.4625, 79.2875], "width": 0.12}, {"type": "segment", "start": [156.4625, 84.7875], "end": [167.2125, 84.7875], "width": 0.12}, {"type": "segment", "start": [167.2625, 78.7875], "end": [167.2625, 85.2875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M151.148214,91.599404L150.881547,91.218452M150.691071,91.599404L150.691071,90.799404L150.995833,90.799404L151.072023,90.8375L151.110119,90.875595L151.148214,90.951785L151.148214,91.066071L151.110119,91.142261L151.072023,91.180357L150.995833,91.218452L150.691071,91.218452M151.910119,91.599404L151.452976,91.599404M151.681547,91.599404L151.681547,90.799404L151.605357,90.91369L151.529166,90.98988L151.452976,91.027976M152.176785,90.799404L152.672023,90.799404L152.405357,91.104166L152.519642,91.104166L152.595833,91.142261L152.633928,91.180357L152.672023,91.256547L152.672023,91.447023L152.633928,91.523214L152.595833,91.561309L152.519642,91.599404L152.291071,91.599404L152.21488,91.561309L152.176785,91.523214", "ref": 1}, {"type": "segment", "start": [154.489564, 91.7725], "end": [154.035436, 91.7725], "width": 0.12}, {"type": "segment", "start": [154.489564, 90.3025], "end": [154.035436, 90.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M140.129166,77.699404L139.8625,77.318452M139.672023,77.699404L139.672023,76.899404L139.976785,76.899404L140.052976,76.9375L140.091071,76.975595L140.129166,77.051785L140.129166,77.166071L140.091071,77.242261L140.052976,77.280357L139.976785,77.318452L139.672023,77.318452M140.433928,76.975595L140.472023,76.9375L140.548214,76.899404L140.73869,76.899404L140.81488,76.9375L140.852976,76.975595L140.891071,77.051785L140.891071,77.127976L140.852976,77.242261L140.395833,77.699404L140.891071,77.699404", "ref": 1}, {"type": "segment", "start": [140.035436, 76.5725], "end": [140.489564, 76.5725], "width": 0.12}, {"type": "segment", "start": [140.035436, 75.1025], "end": [140.489564, 75.1025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M147.7625,74.28988L147.7625,73.28988L148.143452,73.28988L148.23869,73.3375L148.286309,73.385119L148.333928,73.480357L148.333928,73.623214L148.286309,73.718452L148.23869,73.766071L148.143452,73.81369L147.7625,73.81369M148.7625,74.28988L148.7625,73.28988M149.23869,74.28988L149.23869,73.28988L149.810119,74.28988L149.810119,73.28988M150.23869,73.385119L150.286309,73.3375L150.381547,73.28988L150.619642,73.28988L150.71488,73.3375L150.7625,73.385119L150.810119,73.480357L150.810119,73.575595L150.7625,73.718452L150.191071,74.28988L150.810119,74.28988", "val": 1}, {"type": "segment", "start": [151.3125, 75.7375], "end": [151.3125, 76.3375], "width": 0.12}, {"type": "segment", "start": [147.8625, 75.0375], "end": [150.6625, 75.0375], "width": 0.12}, {"type": "segment", "start": [150.6625, 77.0375], "end": [147.8625, 77.0375], "width": 0.12}, {"type": "segment", "start": [150.4625, 74.8375], "end": [150.7625, 74.5375], "width": 0.12}, {"type": "segment", "start": [150.7625, 74.5375], "end": [150.1625, 74.5375], "width": 0.12}, {"type": "segment", "start": [150.4625, 74.8375], "end": [150.1625, 74.5375], "width": 0.12}, {"type": "segment", "start": [147.2125, 76.3375], "end": [147.2125, 75.7375], "width": 0.12}, {"type": "arc", "start": [147.9125, 76.3375], "radius": 0.7, "startangle": 90.0, "endangle": 180.0, "width": 0.12}, {"type": "arc", "start": [150.612501, 75.737499], "radius": 0.699999, "startangle": -90.0, "endangle": 0.0, "width": 0.12}, {"type": "arc", "start": [150.612501, 76.337501], "radius": 0.699999, "startangle": -0.0, "endangle": 90.0, "width": 0.12}, {"type": "arc", "start": [147.9125, 75.7375], "radius": 0.7, "startangle": 180.0, "endangle": 270.0, "width": 0.12}, {"thickness": 0.15, "svgpath": "M130.152976,95.099404L130.610119,95.099404M130.381547,95.899404L130.381547,95.099404M130.800595,95.099404L131.295833,95.099404L131.029166,95.404166L131.143452,95.404166L131.219642,95.442261L131.257738,95.480357L131.295833,95.556547L131.295833,95.747023L131.257738,95.823214L131.219642,95.861309L131.143452,95.899404L130.91488,95.899404L130.83869,95.861309L130.800595,95.823214", "ref": 1}, {"type": "segment", "start": [127.3125, 94.7875], "end": [138.0625, 94.7875], "width": 0.12}, {"type": "segment", "start": [138.0625, 89.2875], "end": [127.3125, 89.2875], "width": 0.12}, {"type": "segment", "start": [138.0625, 94.7875], "end": [138.0625, 89.2875], "width": 0.12}, {"type": "segment", "start": [127.2625, 95.2875], "end": [127.2625, 88.7875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M153.898214,74.570833L153.936309,74.608928L153.974404,74.723214L153.974404,74.799404L153.936309,74.91369L153.860119,74.98988L153.783928,75.027976L153.631547,75.066071L153.517261,75.066071L153.36488,75.027976L153.28869,74.98988L153.2125,74.91369L153.174404,74.799404L153.174404,74.723214L153.2125,74.608928L153.250595,74.570833M153.174404,73.885119L153.174404,74.0375L153.2125,74.11369L153.250595,74.151785L153.36488,74.227976L153.517261,74.266071L153.822023,74.266071L153.898214,74.227976L153.936309,74.18988L153.974404,74.11369L153.974404,73.961309L153.936309,73.885119L153.898214,73.847023L153.822023,73.808928L153.631547,73.808928L153.555357,73.847023L153.517261,73.885119L153.479166,73.961309L153.479166,74.11369L153.517261,74.18988L153.555357,74.227976L153.631547,74.266071", "ref": 1}, {"type": "segment", "start": [155.5975, 73.776248], "end": [155.5975, 74.298752], "width": 0.12}, {"type": "segment", "start": [154.1275, 73.776248], "end": [154.1275, 74.298752], "width": 0.12}, {"thickness": 0.15, "svgpath": "M144.624404,98.051785L144.243452,98.318452M144.624404,98.508928L143.824404,98.508928L143.824404,98.204166L143.8625,98.127976L143.900595,98.08988L143.976785,98.051785L144.091071,98.051785L144.167261,98.08988L144.205357,98.127976L144.243452,98.204166L144.243452,98.508928M144.624404,97.28988L144.624404,97.747023M144.624404,97.518452L143.824404,97.518452L143.93869,97.594642L144.01488,97.670833L144.052976,97.747023M143.824404,97.023214L143.824404,96.48988L144.624404,96.832738", "ref": 1}, {"type": "segment", "start": [143.4975, 97.810436], "end": [143.4975, 98.264564], "width": 0.12}, {"type": "segment", "start": [142.0275, 97.810436], "end": [142.0275, 98.264564], "width": 0.12}, {"thickness": 0.15, "svgpath": "M130.152976,75.099404L130.610119,75.099404M130.381547,75.899404L130.381547,75.099404M131.295833,75.899404L130.83869,75.899404M131.067261,75.899404L131.067261,75.099404L130.991071,75.21369L130.91488,75.28988L130.83869,75.327976", "ref": 1}, {"type": "segment", "start": [127.3125, 74.7875], "end": [138.0625, 74.7875], "width": 0.12}, {"type": "segment", "start": [138.0625, 69.2875], "end": [127.3125, 69.2875], "width": 0.12}, {"type": "segment", "start": [127.2625, 75.2875], "end": [127.2625, 68.7875], "width": 0.12}, {"type": "segment", "start": [138.0625, 74.7875], "end": [138.0625, 69.2875], "width": 0.12}, {"thickness": 0.15, "svgpath": "M148.748214,86.399404L148.481547,86.018452M148.291071,86.399404L148.291071,85.599404L148.595833,85.599404L148.672023,85.6375L148.710119,85.675595L148.748214,85.751785L148.748214,85.866071L148.710119,85.942261L148.672023,85.980357L148.595833,86.018452L148.291071,86.018452M149.510119,86.399404L149.052976,86.399404M149.281547,86.399404L149.281547,85.599404L149.205357,85.71369L149.129166,85.78988L149.052976,85.827976M149.891071,86.399404L150.043452,86.399404L150.119642,86.361309L150.157738,86.323214L150.233928,86.208928L150.272023,86.056547L150.272023,85.751785L150.233928,85.675595L150.195833,85.6375L150.119642,85.599404L149.967261,85.599404L149.891071,85.6375L149.852976,85.675595L149.81488,85.751785L149.81488,85.942261L149.852976,86.018452L149.891071,86.056547L149.967261,86.094642L150.119642,86.094642L150.195833,86.056547L150.233928,86.018452L150.272023,85.942261", "ref": 1}, {"type": "segment", "start": [150.216628, 83.8025], "end": [149.7625, 83.8025], "width": 0.12}, {"type": "segment", "start": [150.216628, 85.2725], "end": [149.7625, 85.2725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M140.995833,70.399404L140.995833,70.970833L140.957738,71.085119L140.881547,71.161309L140.767261,71.199404L140.691071,71.199404M141.795833,71.199404L141.33869,71.199404M141.567261,71.199404L141.567261,70.399404L141.491071,70.51369L141.41488,70.58988L141.33869,70.627976", "ref": 1}, {"type": "polygon", "pos": [0, 0], "angle": 0, "polygons": [[[141.9825, 72.2375], [152.1425, 72.2375], [152.1425, 69.8335], [141.9825, 69.8335]]], "width": 0.12, "filled": 0}, {"thickness": 0.15, "svgpath": "M144.509466,82.823214L144.471371,82.861309L144.357085,82.899404L144.280894,82.899404L144.166609,82.861309L144.090418,82.785119L144.052323,82.708928L144.014228,82.556547L144.014228,82.442261L144.052323,82.28988L144.090418,82.21369L144.166609,82.1375L144.280894,82.099404L144.357085,82.099404L144.471371,82.1375L144.509466,82.175595M145.271371,82.899404L144.814228,82.899404M145.042799,82.899404L145.042799,82.099404L144.966609,82.21369L144.890418,82.28988L144.814228,82.327976M145.766609,82.099404L145.842799,82.099404L145.91899,82.1375L145.957085,82.175595L145.99518,82.251785L146.033275,82.404166L146.033275,82.594642L145.99518,82.747023L145.957085,82.823214L145.91899,82.861309L145.842799,82.899404L145.766609,82.899404L145.690418,82.861309L145.652323,82.823214L145.614228,82.747023L145.576132,82.594642L145.576132,82.404166L145.614228,82.251785L145.652323,82.175595L145.690418,82.1375L145.766609,82.099404", "ref": 1}, {"type": "segment", "start": [144.501248, 81.7725], "end": [145.023752, 81.7725], "width": 0.12}, {"type": "segment", "start": [144.501248, 80.3025], "end": [145.023752, 80.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M141.348214,98.170833L141.386309,98.208928L141.424404,98.323214L141.424404,98.399404L141.386309,98.51369L141.310119,98.58988L141.233928,98.627976L141.081547,98.666071L140.967261,98.666071L140.81488,98.627976L140.73869,98.58988L140.6625,98.51369L140.624404,98.399404L140.624404,98.323214L140.6625,98.208928L140.700595,98.170833M140.891071,97.485119L141.424404,97.485119M140.586309,97.675595L141.157738,97.866071L141.157738,97.370833", "ref": 1}, {"type": "segment", "start": [140.3975, 98.298752], "end": [140.3975, 97.776248], "width": 0.12}, {"type": "segment", "start": [138.9275, 98.298752], "end": [138.9275, 97.776248], "width": 0.12}, {"thickness": 0.15, "svgpath": "M151.329166,97.323214L151.291071,97.361309L151.176785,97.399404L151.100595,97.399404L150.986309,97.361309L150.910119,97.285119L150.872023,97.208928L150.833928,97.056547L150.833928,96.942261L150.872023,96.78988L150.910119,96.71369L150.986309,96.6375L151.100595,96.599404L151.176785,96.599404L151.291071,96.6375L151.329166,96.675595M152.052976,96.599404L151.672023,96.599404L151.633928,96.980357L151.672023,96.942261L151.748214,96.904166L151.93869,96.904166L152.01488,96.942261L152.052976,96.980357L152.091071,97.056547L152.091071,97.247023L152.052976,97.323214L152.01488,97.361309L151.93869,97.399404L151.748214,97.399404L151.672023,97.361309L151.633928,97.323214", "ref": 1}, {"type": "segment", "start": [154.001248, 96.3025], "end": [154.523752, 96.3025], "width": 0.12}, {"type": "segment", "start": [154.001248, 97.7725], "end": [154.523752, 97.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M142.329166,83.399404L142.0625,83.018452M141.872023,83.399404L141.872023,82.599404L142.176785,82.599404L142.252976,82.6375L142.291071,82.675595L142.329166,82.751785L142.329166,82.866071L142.291071,82.942261L142.252976,82.980357L142.176785,83.018452L141.872023,83.018452M142.595833,82.599404L143.091071,82.599404L142.824404,82.904166L142.93869,82.904166L143.01488,82.942261L143.052976,82.980357L143.091071,83.056547L143.091071,83.247023L143.052976,83.323214L143.01488,83.361309L142.93869,83.399404L142.710119,83.399404L142.633928,83.361309L142.595833,83.323214", "ref": 1}, {"type": "segment", "start": [140.035436, 82.3025], "end": [140.489564, 82.3025], "width": 0.12}, {"type": "segment", "start": [140.035436, 83.7725], "end": [140.489564, 83.7725], "width": 0.12}, {"thickness": 0.15, "svgpath": "M142.7625,74.28988L142.7625,73.28988L143.143452,73.28988L143.23869,73.3375L143.286309,73.385119L143.333928,73.480357L143.333928,73.623214L143.286309,73.718452L143.23869,73.766071L143.143452,73.81369L142.7625,73.81369M143.7625,74.28988L143.7625,73.28988M144.23869,74.28988L144.23869,73.28988L144.810119,74.28988L144.810119,73.28988M145.810119,74.28988L145.23869,74.28988M145.524404,74.28988L145.524404,73.28988L145.429166,73.432738L145.333928,73.527976L145.23869,73.575595", "val": 1}, {"type": "segment", "start": [145.4625, 74.8375], "end": [145.1625, 74.5375], "width": 0.12}, {"type": "segment", "start": [142.8625, 75.0375], "end": [145.6625, 75.0375], "width": 0.12}, {"type": "segment", "start": [142.2125, 76.3375], "end": [142.2125, 75.7375], "width": 0.12}, {"type": "segment", "start": [145.7625, 74.5375], "end": [145.1625, 74.5375], "width": 0.12}, {"type": "segment", "start": [146.3125, 75.7375], "end": [146.3125, 76.3375], "width": 0.12}, {"type": "segment", "start": [145.4625, 74.8375], "end": [145.7625, 74.5375], "width": 0.12}, {"type": "segment", "start": [145.6625, 77.0375], "end": [142.8625, 77.0375], "width": 0.12}, {"type": "arc", "start": [142.9125, 75.7375], "radius": 0.7, "startangle": 180.0, "endangle": 270.0, "width": 0.12}, {"type": "arc", "start": [142.9125, 76.3375], "radius": 0.7, "startangle": 90.0, "endangle": 180.0, "width": 0.12}, {"type": "arc", "start": [145.612501, 75.737499], "radius": 0.699999, "startangle": -90.0, "endangle": 0.0, "width": 0.12}, {"type": "arc", "start": [145.612501, 76.337501], "radius": 0.699999, "startangle": -0.0, "endangle": 90.0, "width": 0.12}, {"thickness": 0.15, "svgpath": "M154.248214,68.149404L153.981547,67.768452M153.791071,68.149404L153.791071,67.349404L154.095833,67.349404L154.172023,67.3875L154.210119,67.425595L154.248214,67.501785L154.248214,67.616071L154.210119,67.692261L154.172023,67.730357L154.095833,67.768452L153.791071,67.768452M155.010119,68.149404L154.552976,68.149404M154.781547,68.149404L154.781547,67.349404L154.705357,67.46369L154.629166,67.53988L154.552976,67.577976M155.505357,67.349404L155.581547,67.349404L155.657738,67.3875L155.695833,67.425595L155.733928,67.501785L155.772023,67.654166L155.772023,67.844642L155.733928,67.997023L155.695833,68.073214L155.657738,68.111309L155.581547,68.149404L155.505357,68.149404L155.429166,68.111309L155.391071,68.073214L155.352976,67.997023L155.31488,67.844642L155.31488,67.654166L155.352976,67.501785L155.391071,67.425595L155.429166,67.3875L155.505357,67.349404", "ref": 1}, {"type": "segment", "start": [154.489564, 69.7725], "end": [154.035436, 69.7725], "width": 0.12}, {"type": "segment", "start": [154.489564, 68.3025], "end": [154.035436, 68.3025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M141.129166,72.699404L140.8625,72.318452M140.672023,72.699404L140.672023,71.899404L140.976785,71.899404L141.052976,71.9375L141.091071,71.975595L141.129166,72.051785L141.129166,72.166071L141.091071,72.242261L141.052976,72.280357L140.976785,72.318452L140.672023,72.318452M141.891071,72.699404L141.433928,72.699404M141.6625,72.699404L141.6625,71.899404L141.586309,72.01369L141.510119,72.08988L141.433928,72.127976", "ref": 1}, {"type": "segment", "start": [140.035436, 74.5725], "end": [140.489564, 74.5725], "width": 0.12}, {"type": "segment", "start": [140.035436, 73.1025], "end": [140.489564, 73.1025], "width": 0.12}, {"thickness": 0.15, "svgpath": "M142.329166,103.399404L142.0625,103.018452M141.872023,103.399404L141.872023,102.599404L142.176785,102.599404L142.252976,102.6375L142.291071,102.675595L142.329166,102.751785L142.329166,102.866071L142.291071,102.942261L142.252976,102.980357L142.176785,103.018452L141.872023,103.018452M142.786309,102.942261L142.710119,102.904166L142.672023,102.866071L142.633928,102.78988L142.633928,102.751785L142.672023,102.675595L142.710119,102.6375L142.786309,102.599404L142.93869,102.599404L143.01488,102.6375L143.052976,102.675595L143.091071,102.751785L143.091071,102.78988L143.052976,102.866071L143.01488,102.904166L142.93869,102.942261L142.786309,102.942261L142.710119,102.980357L142.672023,103.018452L142.633928,103.094642L142.633928,103.247023L142.672023,103.323214L142.710119,103.361309L142.786309,103.399404L142.93869,103.399404L143.01488,103.361309L143.052976,103.323214L143.091071,103.247023L143.091071,103.094642L143.052976,103.018452L143.01488,102.980357L142.93869,102.942261", "ref": 1}, {"type": "segment", "start": [140.035436, 102.3025], "end": [140.489564, 102.3025], "width": 0.12}, {"type": "segment", "start": [140.035436, 103.7725], "end": [140.489564, 103.7725], "width": 0.12}], "B": [{"type": "segment", "start": [152.2625, 98.5375], "end": [152.2625, 99.0375], "width": 0.15}, {"type": "segment", "start": [142.7625, 97.0375], "end": [142.7625, 100.5375], "width": 0.15}, {"type": "segment", "start": [151.7625, 98.0375], "end": [152.2625, 98.5375], "width": 0.15}, {"type": "segment", "start": [145.7625, 98.0375], "end": [145.7625, 99.5375], "width": 0.15}, {"type": "segment", "start": [151.2625, 98.0375], "end": [151.7625, 98.0375], "width": 0.15}, {"type": "segment", "start": [150.7625, 98.5375], "end": [151.2625, 98.0375], "width": 0.15}, {"type": "segment", "start": [150.2625, 99.5375], "end": [143.2625, 99.5375], "width": 0.15}, {"type": "segment", "start": [150.2625, 98.0375], "end": [150.2625, 99.5375], "width": 0.15}, {"type": "segment", "start": [143.2625, 97.0375], "end": [143.2625, 98.0375], "width": 0.15}, {"type": "segment", "start": [151.2625, 99.5375], "end": [150.7625, 99.0375], "width": 0.15}, {"type": "segment", "start": [150.2625, 98.0375], "end": [150.7625, 98.5375], "width": 0.15}, {"type": "segment", "start": [143.2625, 98.0375], "end": [145.2625, 98.0375], "width": 0.15}, {"type": "segment", "start": [143.2625, 99.5375], "end": [143.2625, 100.5375], "width": 0.15}, {"type": "segment", "start": [145.2625, 98.0375], "end": [150.2625, 98.0375], "width": 0.15}, {"type": "segment", "start": [152.2625, 99.0375], "end": [151.7625, 99.5375], "width": 0.15}, {"type": "segment", "start": [150.7625, 99.0375], "end": [150.2625, 99.5375], "width": 0.15}, {"type": "segment", "start": [151.7625, 99.5375], "end": [151.2625, 99.5375], "width": 0.15}, {"type": "segment", "start": [143.2625, 97.0375], "end": [142.7625, 97.0375], "width": 0.15}, {"type": "segment", "start": [143.2625, 98.0375], "end": [143.2625, 99.5375], "width": 0.15}, {"type": "segment", "start": [148.2625, 98.0375], "end": [148.2625, 99.5375], "width": 0.15}, {"type": "segment", "start": [142.7625, 100.5375], "end": [143.2625, 100.5375], "width": 0.15}, {"thickness": 0.3, "svgpath": "M152.206428,96.699642L152.206428,95.8425M150.706428,96.271071L152.206428,96.271071M150.706428,95.3425L151.706428,95.3425M152.206428,95.3425L152.135,95.413928L152.063571,95.3425L152.135,95.271071L152.206428,95.3425L152.063571,95.3425M151.706428,94.628214L150.206428,94.628214M151.635,94.628214L151.706428,94.485357L151.706428,94.199642L151.635,94.056785L151.563571,93.985357L151.420714,93.913928L150.992142,93.913928L150.849285,93.985357L150.777857,94.056785L150.706428,94.199642L150.706428,94.485357L150.777857,94.628214M151.277857,92.128214L151.277857,90.985357M150.706428,89.128214L152.206428,89.128214L152.206428,88.771071L152.135,88.556785L151.992142,88.413928L151.849285,88.3425L151.563571,88.271071L151.349285,88.271071L151.063571,88.3425L150.920714,88.413928L150.777857,88.556785L150.706428,88.771071L150.706428,89.128214M151.135,87.699642L151.135,86.985357M150.706428,87.8425L152.206428,87.3425L150.706428,86.8425M152.206428,86.556785L152.206428,85.699642M150.706428,86.128214L152.206428,86.128214M151.135,85.271071L151.135,84.556785M150.706428,85.413928L152.206428,84.913928L150.706428,84.413928M148.291428,95.628214L149.005714,96.128214M148.291428,96.485357L149.791428,96.485357L149.791428,95.913928L149.72,95.771071L149.648571,95.699642L149.505714,95.628214L149.291428,95.628214L149.148571,95.699642L149.077142,95.771071L149.005714,95.913928L149.005714,96.485357M148.291428,94.985357L149.291428,94.985357M149.791428,94.985357L149.72,95.056785L149.648571,94.985357L149.72,94.913928L149.791428,94.985357L149.648571,94.985357M149.291428,94.271071L148.291428,94.271071M149.148571,94.271071L149.22,94.199642L149.291428,94.056785L149.291428,93.8425L149.22,93.699642L149.077142,93.628214L148.291428,93.628214M149.291428,92.271071L148.077142,92.271071L147.934285,92.3425L147.862857,92.413928L147.791428,92.556785L147.791428,92.771071L147.862857,92.913928M148.362857,92.271071L148.291428,92.413928L148.291428,92.699642L148.362857,92.8425L148.434285,92.913928L148.577142,92.985357L149.005714,92.985357L149.148571,92.913928L149.22,92.8425L149.291428,92.699642L149.291428,92.413928L149.22,92.271071M148.291428,90.771071L148.291428,91.628214M148.291428,91.199642L149.791428,91.199642L149.577142,91.3425L149.434285,91.485357L149.362857,91.628214M148.862857,88.985357L148.862857,87.8425M148.291428,85.985357L149.791428,85.985357L148.291428,85.128214L149.791428,85.128214M148.434285,83.556785L148.362857,83.628214L148.291428,83.8425L148.291428,83.985357L148.362857,84.199642L148.505714,84.3425L148.648571,84.413928L148.934285,84.485357L149.148571,84.485357L149.434285,84.413928L149.577142,84.3425L149.72,84.199642L149.791428,83.985357L149.791428,83.8425L149.72,83.628214L149.648571,83.556785M145.876428,95.628214L146.590714,96.128214M145.876428,96.485357L147.376428,96.485357L147.376428,95.913928L147.305,95.771071L147.233571,95.699642L147.090714,95.628214L146.876428,95.628214L146.733571,95.699642L146.662142,95.771071L146.590714,95.913928L146.590714,96.485357M145.876428,94.985357L146.876428,94.985357M147.376428,94.985357L147.305,95.056785L147.233571,94.985357L147.305,94.913928L147.376428,94.985357L147.233571,94.985357M146.876428,94.271071L145.876428,94.271071M146.733571,94.271071L146.805,94.199642L146.876428,94.056785L146.876428,93.8425L146.805,93.699642L146.662142,93.628214L145.876428,93.628214M146.876428,92.271071L145.662142,92.271071L145.519285,92.3425L145.447857,92.413928L145.376428,92.556785L145.376428,92.771071L145.447857,92.913928M145.947857,92.271071L145.876428,92.413928L145.876428,92.699642L145.947857,92.8425L146.019285,92.913928L146.162142,92.985357L146.590714,92.985357L146.733571,92.913928L146.805,92.8425L146.876428,92.699642L146.876428,92.413928L146.805,92.271071M147.233571,91.628214L147.305,91.556785L147.376428,91.413928L147.376428,91.056785L147.305,90.913928L147.233571,90.8425L147.090714,90.771071L146.947857,90.771071L146.733571,90.8425L145.876428,91.699642L145.876428,90.771071M146.447857,88.985357L146.447857,87.8425M147.305,85.199642L147.376428,85.3425L147.376428,85.556785L147.305,85.771071L147.162142,85.913928L147.019285,85.985357L146.733571,86.056785L146.519285,86.056785L146.233571,85.985357L146.090714,85.913928L145.947857,85.771071L145.876428,85.556785L145.876428,85.413928L145.947857,85.199642L146.019285,85.128214L146.519285,85.128214L146.519285,85.413928M145.876428,84.485357L147.376428,84.485357L145.876428,83.628214L147.376428,83.628214M145.876428,82.913928L147.376428,82.913928L147.376428,82.556785L147.305,82.3425L147.162142,82.199642L147.019285,82.128214L146.733571,82.056785L146.519285,82.056785L146.233571,82.128214L146.090714,82.199642L145.947857,82.3425L145.876428,82.556785L145.876428,82.913928M143.532857,96.556785L143.461428,96.3425L143.461428,95.985357L143.532857,95.8425L143.604285,95.771071L143.747142,95.699642L143.89,95.699642L144.032857,95.771071L144.104285,95.8425L144.175714,95.985357L144.247142,96.271071L144.318571,96.413928L144.39,96.485357L144.532857,96.556785L144.675714,96.556785L144.818571,96.485357L144.89,96.413928L144.961428,96.271071L144.961428,95.913928L144.89,95.699642M143.461428,94.8425L143.532857,94.985357L143.675714,95.056785L144.961428,95.056785M143.532857,93.699642L143.461428,93.8425L143.461428,94.128214L143.532857,94.271071L143.675714,94.3425L144.247142,94.3425L144.39,94.271071L144.461428,94.128214L144.461428,93.8425L144.39,93.699642L144.247142,93.628214L144.104285,93.628214L143.961428,94.3425M143.532857,92.413928L143.461428,92.556785L143.461428,92.8425L143.532857,92.985357L143.675714,93.056785L144.247142,93.056785L144.39,92.985357L144.461428,92.8425L144.461428,92.556785L144.39,92.413928L144.247142,92.3425L144.104285,92.3425L143.961428,93.056785M144.461428,91.8425L143.461428,91.485357L144.461428,91.128214M143.532857,89.985357L143.461428,90.128214L143.461428,90.413928L143.532857,90.556785L143.675714,90.628214L144.247142,90.628214L144.39,90.556785L144.461428,90.413928L144.461428,90.128214L144.39,89.985357L144.247142,89.913928L144.104285,89.913928L143.961428,90.628214M144.032857,88.128214L144.032857,86.985357M144.961428,85.3425L143.461428,84.8425L144.961428,84.3425M143.604285,82.985357L143.532857,83.056785L143.461428,83.271071L143.461428,83.413928L143.532857,83.628214L143.675714,83.771071L143.818571,83.8425L144.104285,83.913928L144.318571,83.913928L144.604285,83.8425L144.747142,83.771071L144.89,83.628214L144.961428,83.413928L144.961428,83.271071L144.89,83.056785L144.818571,82.985357M143.604285,81.485357L143.532857,81.556785L143.461428,81.771071L143.461428,81.913928L143.532857,82.128214L143.675714,82.271071L143.818571,82.3425L144.104285,82.413928L144.318571,82.413928L144.604285,82.3425L144.747142,82.271071L144.89,82.128214L144.961428,81.913928L144.961428,81.771071L144.89,81.556785L144.818571,81.485357"}, {"thickness": 0.15, "svgpath": "M166.2625,69.180357L166.2625,67.980357M165.748214,69.180357L165.748214,68.551785L165.805357,68.4375L165.919642,68.380357L166.091071,68.380357L166.205357,68.4375L166.2625,68.494642M165.348214,68.380357L164.891071,68.380357M165.176785,67.980357L165.176785,69.008928L165.119642,69.123214L165.005357,69.180357L164.891071,69.180357M164.6625,68.380357L164.205357,68.380357M164.491071,67.980357L164.491071,69.008928L164.433928,69.123214L164.319642,69.180357L164.205357,69.180357M163.805357,68.380357L163.805357,69.580357M163.805357,68.4375L163.691071,68.380357L163.4625,68.380357L163.348214,68.4375L163.291071,68.494642L163.233928,68.608928L163.233928,68.951785L163.291071,69.066071L163.348214,69.123214L163.4625,69.180357L163.691071,69.180357L163.805357,69.123214M162.719642,69.066071L162.6625,69.123214L162.719642,69.180357L162.776785,69.123214L162.719642,69.066071L162.719642,69.180357M162.719642,68.4375L162.6625,68.494642L162.719642,68.551785L162.776785,68.494642L162.719642,68.4375L162.719642,68.551785M161.291071,67.923214L162.319642,69.466071M160.033928,67.923214L161.0625,69.466071M159.805357,68.380357L159.348214,68.380357M159.633928,67.980357L159.633928,69.008928L159.576785,69.123214L159.4625,69.180357L159.348214,69.180357M158.491071,69.123214L158.605357,69.180357L158.833928,69.180357L158.948214,69.123214L159.005357,69.008928L159.005357,68.551785L158.948214,68.4375L158.833928,68.380357L158.605357,68.380357L158.491071,68.4375L158.433928,68.551785L158.433928,68.666071L159.005357,68.780357M157.919642,69.180357L157.919642,68.380357M157.919642,68.494642L157.8625,68.4375L157.748214,68.380357L157.576785,68.380357L157.4625,68.4375L157.405357,68.551785L157.405357,69.180357M157.405357,68.551785L157.348214,68.4375L157.233928,68.380357L157.0625,68.380357L156.948214,68.4375L156.891071,68.551785L156.891071,69.180357M156.319642,68.380357L156.319642,69.580357M156.319642,68.4375L156.205357,68.380357L155.976785,68.380357L155.8625,68.4375L155.805357,68.494642L155.748214,68.608928L155.748214,68.951785L155.805357,69.066071L155.8625,69.123214L155.976785,69.180357L156.205357,69.180357L156.319642,69.123214M155.233928,68.723214L154.319642,68.723214M153.119642,69.180357L153.805357,69.180357M153.4625,69.180357L153.4625,67.980357L153.576785,68.151785L153.691071,68.266071L153.805357,68.323214M152.719642,68.380357L152.491071,69.180357L152.2625,68.608928L152.033928,69.180357L151.805357,68.380357M151.176785,68.494642L151.291071,68.4375L151.348214,68.380357L151.405357,68.266071L151.405357,68.208928L151.348214,68.094642L151.291071,68.0375L151.176785,67.980357L150.948214,67.980357L150.833928,68.0375L150.776785,68.094642L150.719642,68.208928L150.719642,68.266071L150.776785,68.380357L150.833928,68.4375L150.948214,68.494642L151.176785,68.494642L151.291071,68.551785L151.348214,68.608928L151.405357,68.723214L151.405357,68.951785L151.348214,69.066071L151.291071,69.123214L151.176785,69.180357L150.948214,69.180357L150.833928,69.123214L150.776785,69.066071L150.719642,68.951785L150.719642,68.723214L150.776785,68.608928L150.833928,68.551785L150.948214,68.494642M150.205357,68.723214L149.291071,68.723214M148.719642,68.380357L148.719642,69.580357M148.719642,68.4375L148.605357,68.380357L148.376785,68.380357L148.2625,68.4375L148.205357,68.494642L148.148214,68.608928L148.148214,68.951785L148.205357,69.066071L148.2625,69.123214L148.376785,69.180357L148.605357,69.180357L148.719642,69.123214M147.633928,69.180357L147.633928,68.380357M147.633928,68.608928L147.576785,68.494642L147.519642,68.4375L147.405357,68.380357L147.291071,68.380357M146.719642,69.180357L146.833928,69.123214L146.891071,69.066071L146.948214,68.951785L146.948214,68.608928L146.891071,68.494642L146.833928,68.4375L146.719642,68.380357L146.548214,68.380357L146.433928,68.4375L146.376785,68.494642L146.319642,68.608928L146.319642,68.951785L146.376785,69.066071L146.433928,69.123214L146.548214,69.180357L146.719642,69.180357M145.805357,69.066071L145.748214,69.123214L145.805357,69.180357L145.8625,69.123214L145.805357,69.066071L145.805357,69.180357M145.233928,69.180357L145.233928,68.380357M145.233928,68.494642L145.176785,68.4375L145.0625,68.380357L144.891071,68.380357L144.776785,68.4375L144.719642,68.551785L144.719642,69.180357M144.719642,68.551785L144.6625,68.4375L144.548214,68.380357L144.376785,68.380357L144.2625,68.4375L144.205357,68.551785L144.205357,69.180357M143.119642,69.180357L143.119642,68.551785L143.176785,68.4375L143.291071,68.380357L143.519642,68.380357L143.633928,68.4375M143.119642,69.123214L143.233928,69.180357L143.519642,69.180357L143.633928,69.123214L143.691071,69.008928L143.691071,68.894642L143.633928,68.780357L143.519642,68.723214L143.233928,68.723214L143.119642,68.666071M142.548214,69.180357L142.548214,67.980357M142.433928,68.723214L142.091071,69.180357M142.091071,68.380357L142.548214,68.8375M141.119642,69.123214L141.233928,69.180357L141.4625,69.180357L141.576785,69.123214L141.633928,69.008928L141.633928,68.551785L141.576785,68.4375L141.4625,68.380357L141.233928,68.380357L141.119642,68.4375L141.0625,68.551785L141.0625,68.666071L141.633928,68.780357M140.548214,69.180357L140.548214,68.380357M140.548214,68.608928L140.491071,68.494642L140.433928,68.4375L140.319642,68.380357L140.205357,68.380357M139.8625,69.123214L139.748214,69.180357L139.519642,69.180357L139.405357,69.123214L139.348214,69.008928L139.348214,68.951785L139.405357,68.8375L139.519642,68.780357L139.691071,68.780357L139.805357,68.723214L139.8625,68.608928L139.8625,68.551785L139.805357,68.4375L139.691071,68.380357L139.519642,68.380357L139.405357,68.4375M138.833928,68.380357L138.833928,69.580357M138.833928,68.4375L138.719642,68.380357L138.491071,68.380357L138.376785,68.4375L138.319642,68.494642L138.2625,68.608928L138.2625,68.951785L138.319642,69.066071L138.376785,69.123214L138.491071,69.180357L138.719642,69.180357L138.833928,69.123214M137.233928,69.180357L137.233928,68.551785L137.291071,68.4375L137.405357,68.380357L137.633928,68.380357L137.748214,68.4375M137.233928,69.123214L137.348214,69.180357L137.633928,69.180357L137.748214,69.123214L137.805357,69.008928L137.805357,68.894642L137.748214,68.780357L137.633928,68.723214L137.348214,68.723214L137.233928,68.666071M136.148214,69.123214L136.2625,69.180357L136.491071,69.180357L136.605357,69.123214L136.6625,69.066071L136.719642,68.951785L136.719642,68.608928L136.6625,68.494642L136.605357,68.4375L136.491071,68.380357L136.2625,68.380357L136.148214,68.4375M135.176785,69.123214L135.291071,69.180357L135.519642,69.180357L135.633928,69.123214L135.691071,69.008928L135.691071,68.551785L135.633928,68.4375L135.519642,68.380357L135.291071,68.380357L135.176785,68.4375L135.119642,68.551785L135.119642,68.666071L135.691071,68.780357M134.605357,69.066071L134.548214,69.123214L134.605357,69.180357L134.6625,69.123214L134.605357,69.066071L134.605357,69.180357M133.8625,69.180357L133.976785,69.123214L134.033928,69.008928L134.033928,67.980357M133.576785,68.380357L133.119642,68.380357M133.405357,67.980357L133.405357,69.008928L133.348214,69.123214L133.233928,69.180357L133.119642,69.180357M131.8625,67.923214L132.891071,69.466071M131.576785,68.380357L131.291071,69.180357L131.005357,68.380357M130.033928,68.380357L130.033928,69.180357M130.319642,67.923214L130.605357,68.780357L129.8625,68.780357M129.405357,69.066071L129.348214,69.123214L129.405357,69.180357L129.4625,69.123214L129.405357,69.066071L129.405357,69.180357M128.605357,67.980357L128.491071,67.980357L128.376785,68.0375L128.319642,68.094642L128.2625,68.208928L128.205357,68.4375L128.205357,68.723214L128.2625,68.951785L128.319642,69.066071L128.376785,69.123214L128.491071,69.180357L128.605357,69.180357L128.719642,69.123214L128.776785,69.066071L128.833928,68.951785L128.891071,68.723214L128.891071,68.4375L128.833928,68.208928L128.776785,68.094642L128.719642,68.0375L128.605357,67.980357"}, {"type": "polygon", "pos": [132.7625, 102.0375], "angle": 180.0, "polygons": [[[0.2159, 0.987425], [-0.01905, 0.676275], [-0.257175, 0.3302], [-0.4826, -0.034925], [-0.6731, -0.396875], [0.2159, -0.396875], [0.2159, 0.987425]]]}, {"type": "polygon", "pos": [132.7625, 102.0375], "angle": 180.0, "polygons": [[[-1.4224, 2.494492], [-2.480733, 2.494492], [-2.967384, 2.446561], [-3.435334, 2.30461], [-3.866599, 2.074094], [-4.244605, 1.763872], [-4.554827, 1.385865], [-4.785343, 0.954601], [-4.927294, 0.486651], [-4.975225, 0.0], [-4.927294, -0.486651], [-4.785343, -0.954601], [-4.554827, -1.385865], [-4.244605, -1.763872], [-3.866599, -2.074094], [-3.435334, -2.30461], [-2.967384, -2.446561], [-2.480733, -2.494492], [-1.4224, -2.494492], [0.99695, -2.494492], [0.99695, -1.965325], [0.2159, -1.965325], [0.2159, -1.038225], [-1.4224, -1.038225], [-1.4224, -0.466725], [-1.284287, -0.202406], [-1.11125, 0.09525], [-0.911225, 0.413544], [-0.69215, 0.739775], [-0.4572, 1.067594], [-0.20955, 1.39065], [0.04445, 1.694656], [0.29845, 1.965325], [0.99695, 1.965325], [0.99695, -0.396875], [1.4224, -0.396875], [1.4224, -1.038225], [0.99695, -1.038225], [0.99695, -1.965325], [0.99695, -2.494492], [1.4224, -2.494492], [2.480733, -2.494492], [2.967385, -2.446561], [3.435334, -2.30461], [3.866599, -2.074094], [4.244605, -1.763872], [4.554827, -1.385865], [4.785343, -0.954601], [4.927294, -0.486651], [4.975225, 0.0], [4.927294, 0.486651], [4.785343, 0.954601], [4.554827, 1.385865], [4.244605, 1.763872], [3.866599, 2.074094], [3.435334, 2.30461], [2.967385, 2.446561], [2.480733, 2.494492], [1.4224, 2.494492], [-1.4224, 2.494492]]]}, {"type": "polygon", "pos": [132.7625, 72.0375], "angle": 180.0, "polygons": [[[-1.304925, 2.494492], [-2.363258, 2.494492], [-2.849909, 2.446561], [-3.317859, 2.30461], [-3.749124, 2.074094], [-4.12713, 1.763872], [-4.437352, 1.385865], [-4.667868, 0.954601], [-4.809819, 0.486651], [-4.85775, 0.0], [-4.809819, -0.486651], [-4.667868, -0.954601], [-4.437352, -1.385865], [-4.12713, -1.763872], [-3.749124, -2.074094], [-3.317859, -2.30461], [-2.849909, -2.446561], [-2.363258, -2.494492], [-1.304925, -2.494492], [1.304925, -2.494492], [1.304925, -1.965325], [-1.082675, -1.965325], [-1.082675, -1.317625], [-0.257175, -1.317625], [-0.257175, 0.879475], [-0.663575, 0.65405], [-1.050925, 0.498475], [-1.304925, 1.146175], [-0.974725, 1.292225], [-0.619125, 1.489075], [-0.282575, 1.717675], [-0.009525, 1.965325], [0.523875, 1.965325], [0.523875, -1.317625], [1.304925, -1.317625], [1.304925, -1.965325], [1.304925, -2.494492], [2.363258, -2.494492], [2.84991, -2.446561], [3.317859, -2.30461], [3.749124, -2.074094], [4.12713, -1.763872], [4.437352, -1.385865], [4.667868, -0.954601], [4.809819, -0.486651], [4.85775, 0.0], [4.809819, 0.486651], [4.667868, 0.954601], [4.437352, 1.385865], [4.12713, 1.763872], [3.749124, 2.074094], [3.317859, 2.30461], [2.84991, 2.446561], [2.363258, 2.494492], [1.304925, 2.494492], [-1.304925, 2.494492]]]}, {"type": "polygon", "pos": [132.7625, 92.0375], "angle": 180.0, "polygons": [[[-1.30175, 2.580217], [-2.360083, 2.580217], [-2.863459, 2.530639], [-3.347489, 2.383809], [-3.793575, 2.145372], [-4.184572, 1.824489], [-4.505455, 1.433492], [-4.743893, 0.987406], [-4.890722, 0.503375], [-4.9403, 0.0], [-4.890722, -0.503375], [-4.743893, -0.987406], [-4.505455, -1.433492], [-4.184572, -1.824489], [-3.793575, -2.145372], [-3.347489, -2.383809], [-2.863459, -2.530639], [-2.360083, -2.580217], [-1.30175, -2.580217], [-0.20955, -2.580217], [-0.20955, -2.05105], [-0.517525, -2.028825], [-0.828675, -1.97485], [-1.1049, -1.905], [-1.30175, -1.83515], [-1.14935, -1.1811], [-0.771525, -1.31445], [-0.516731, -1.366838], [-0.2159, -1.3843], [0.124619, -1.341438], [0.346075, -1.21285], [0.508, -0.7874], [0.446088, -0.523081], [0.26035, -0.352425], [-0.020637, -0.259556], [-0.3683, -0.2286], [-0.6096, -0.2286], [-0.6096, 0.4191], [-0.3175, 0.4191], [-0.0762, 0.4445], [0.1397, 0.52705], [0.295275, 0.67945], [0.3556, 0.92075], [0.225425, 1.260475], [-0.13335, 1.3843], [-0.574675, 1.311275], [-0.9525, 1.1303], [-1.2319, 1.7018], [-0.777875, 1.933575], [-0.477044, 2.021681], [-0.1397, 2.05105], [0.169069, 2.030412], [0.434975, 1.9685], [0.8382, 1.736725], [1.07315, 1.3843], [1.14935, 0.94615], [1.016, 0.4953], [0.6604, 0.1651], [0.931069, 0.007937], [1.133475, -0.20955], [1.259681, -0.481013], [1.30175, -0.8001], [1.21285, -1.30175], [0.9398, -1.698625], [0.73025, -1.84785], [0.4699, -1.958975], [0.157163, -2.028031], [-0.20955, -2.05105], [-0.20955, -2.580217], [1.30175, -2.580217], [2.360083, -2.580217], [2.863459, -2.530639], [3.34749, -2.383809], [3.793575, -2.145372], [4.184572, -1.824489], [4.505455, -1.433492], [4.743893, -0.987406], [4.890722, -0.503375], [4.9403, 0.0], [4.890722, 0.503375], [4.743893, 0.987406], [4.505455, 1.433492], [4.184572, 1.824489], [3.793575, 2.145372], [3.34749, 2.383809], [2.863459, 2.530639], [2.360083, 2.580217], [1.30175, 2.580217], [-1.30175, 2.580217]]]}, {"type": "polygon", "pos": [164.4625, 114.0375], "angle": 90.0, "polygons": [[[4.119563, 0.004762], [4.10554, 0.31459], [4.063471, 0.570971], [3.993356, 0.773906], [3.83798, 0.972145], [3.624262, 1.038225], [3.413522, 0.972145], [3.25755, 0.773906], [3.186112, 0.570971], [3.14325, 0.31459], [3.128962, 0.004762], [3.14325, -0.30771], [3.186112, -0.565679], [3.25755, -0.769144], [3.413522, -0.967383], [3.624262, -1.033463], [3.629025, -1.03199], [3.629025, -0.261938], [3.433762, -0.169069], [3.362325, 0.052387], [3.433762, 0.276225], [3.629025, 0.371475], [3.817144, 0.276225], [3.890962, 0.052387], [3.817144, -0.169069], [3.629025, -0.261938], [3.629025, -1.03199], [3.83798, -0.967383], [3.993356, -0.769144], [4.063471, -0.565679], [4.10554, -0.30771], [4.119563, 0.004762]]]}, {"type": "polygon", "pos": [164.4625, 114.0375], "angle": 90.0, "polygons": [[[-0.97155, 0.738187], [-1.147763, 0.504825], [-1.326356, 0.245269], [-1.495425, -0.028575], [-1.6383, -0.300038], [-0.97155, -0.300038], [-0.97155, 0.738187]]]}, {"type": "polygon", "pos": [164.4625, 114.0375], "angle": 90.0, "polygons": [[[-4.6482, 1.935162], [-4.648597, 1.935162], [-4.648597, 1.935163], [-5.026128, 1.897979], [-5.389152, 1.787857], [-5.723716, 1.609029], [-6.016963, 1.368367], [-6.257626, 1.075119], [-6.436454, 0.740555], [-6.546576, 0.377531], [-6.583759, 0.0], [-6.546576, -0.377531], [-6.436454, -0.740555], [-6.257626, -1.075119], [-6.016963, -1.368367], [-5.723716, -1.609029], [-5.389152, -1.787857], [-5.026128, -1.897979], [-4.648597, -1.935163], [-4.6482, -1.935163], [-3.824288, -1.935163], [-3.824288, -1.476375], [-3.942159, -1.126331], [-4.067175, -0.733425], [-4.151313, -0.457465], [-4.232275, -0.182033], [-4.310063, 0.092869], [-4.383617, 0.362479], [-4.451879, 0.622035], [-4.51485, 0.871537], [-4.593431, 1.204912], [-4.6482, 1.471612], [-4.029075, 1.471612], [-3.993356, 1.224558], [-3.94335, 0.940594], [-3.883223, 0.633412], [-3.817144, 0.316706], [-3.745706, -0.002381], [-3.669506, -0.316706], [-3.59152, -0.612577], [-3.514725, -0.8763], [-3.438525, -0.616148], [-3.362325, -0.321469], [-3.288506, -0.007144], [-3.21945, 0.311944], [-3.155156, 0.629245], [-3.095625, 0.938212], [-3.043238, 1.223962], [-3.000375, 1.471612], [-2.386013, 1.471612], [-2.449711, 1.169194], [-2.526506, 0.833437], [-2.615803, 0.472083], [-2.717006, 0.092869], [-2.790825, -0.167481], [-2.869406, -0.431006], [-2.95275, -0.697706], [-3.039533, -0.963083], [-3.128433, -1.22264], [-3.21945, -1.476375], [-3.824288, -1.476375], [-3.824288, -1.935163], [-0.385763, -1.935163], [-0.385763, -1.476375], [-0.97155, -1.476375], [-0.97155, -0.78105], [-2.200275, -0.78105], [-2.200275, -0.352425], [-2.096691, -0.154186], [-1.966913, 0.069056], [-1.816894, 0.307777], [-1.652588, 0.55245], [-1.476375, 0.798314], [-1.290638, 1.040606], [-1.100138, 1.268611], [-0.909638, 1.471612], [-0.385763, 1.471612], [-0.385763, -0.300038], [-0.066675, -0.300038], [-0.066675, -0.78105], [-0.385763, -0.78105], [-0.385763, -1.476375], [-0.385763, -1.935163], [1.247775, -1.935163], [1.247775, -1.528763], [1.08585, -1.500188], [0.950119, -1.416844], [0.854869, -1.283494], [0.81915, -1.100138], [0.854869, -0.921544], [0.950119, -0.790575], [1.08585, -0.709613], [1.247775, -0.681038], [1.54305, -0.790575], [1.671637, -1.100138], [1.54305, -1.419225], [1.247775, -1.528763], [1.247775, -1.935163], [3.624262, -1.935163], [3.624262, -1.538288], [3.317346, -1.495954], [3.063346, -1.368954], [2.862262, -1.157288], [2.747665, -0.941784], [2.665809, -0.676275], [2.616696, -0.360759], [2.600325, 0.004762], [2.616994, 0.366117], [2.667, 0.678656], [2.750344, 0.94238], [2.867025, 1.157287], [3.069696, 1.368954], [3.322108, 1.495954], [3.624262, 1.538287], [3.931179, 1.496219], [4.185179, 1.370012], [4.386263, 1.159669], [4.50086, 0.945505], [4.582716, 0.681633], [4.631829, 0.368052], [4.6482, 0.004762], [4.631829, -0.360759], [4.582716, -0.676275], [4.50086, -0.941784], [4.386263, -1.157288], [4.185179, -1.368954], [3.931179, -1.495954], [3.624262, -1.538288], [3.624262, -1.935163], [4.6482, -1.935163], [4.648597, -1.935163], [4.648597, -1.935162], [5.026128, -1.897979], [5.389152, -1.787857], [5.723716, -1.609029], [6.016963, -1.368367], [6.257626, -1.075119], [6.436454, -0.740555], [6.546576, -0.377531], [6.583759, 0.0], [6.546576, 0.377531], [6.436454, 0.740555], [6.257626, 1.075119], [6.016963, 1.368367], [5.723716, 1.609029], [5.389152, 1.787857], [5.026128, 1.897979], [4.648597, 1.935163], [4.648597, 1.935162], [4.6482, 1.935162], [-4.6482, 1.935162]]]}, {"type": "polygon", "pos": [161.7625, 92.0375], "angle": 180.0, "polygons": [[[-1.2827, 2.494492], [-2.341033, 2.494492], [-2.827684, 2.446561], [-3.295634, 2.30461], [-3.726899, 2.074094], [-4.104905, 1.763872], [-4.415127, 1.385865], [-4.645643, 0.954601], [-4.787594, 0.486651], [-4.835525, 0.0], [-4.787594, -0.486651], [-4.645643, -0.954601], [-4.415127, -1.385865], [-4.104905, -1.763872], [-3.726899, -2.074094], [-3.295634, -2.30461], [-2.827684, -2.446561], [-2.341033, -2.494492], [-1.2827, -2.494492], [-0.75565, -2.494492], [-0.75565, -1.965325], [-0.712787, -1.547019], [-0.6223, -1.1049], [-0.496094, -0.653256], [-0.346075, -0.206375], [-0.177006, 0.226219], [0.00635, 0.635], [0.192088, 1.004094], [0.3683, 1.317625], [-1.2827, 1.317625], [-1.2827, 1.965325], [1.2827, 1.965325], [1.2827, 1.374775], [1.103313, 1.138238], [0.90805, 0.822325], [0.710406, 0.442912], [0.523875, 0.015875], [0.354013, -0.450056], [0.206375, -0.94615], [0.096044, -1.456531], [0.0381, -1.965325], [-0.75565, -1.965325], [-0.75565, -2.494492], [1.2827, -2.494492], [2.341033, -2.494492], [2.827685, -2.446561], [3.295634, -2.30461], [3.726899, -2.074094], [4.104905, -1.763872], [4.415127, -1.385865], [4.645643, -0.954601], [4.787594, -0.486651], [4.835525, 0.0], [4.787594, 0.486651], [4.645643, 0.954601], [4.415127, 1.385865], [4.104905, 1.763872], [3.726899, 2.074094], [3.295634, 2.30461], [2.827685, 2.446561], [2.341033, 2.494492], [1.2827, 2.494492], [-1.2827, 2.494492]]]}, {"type": "polygon", "pos": [132.7625, 82.0375], "angle": 180.0, "polygons": [[[-1.330325, 2.538942], [-2.388658, 2.538942], [-2.883981, 2.490157], [-3.360269, 2.345676], [-3.799219, 2.111053], [-4.183961, 1.795303], [-4.499711, 1.41056], [-4.734335, 0.971611], [-4.878815, 0.495323], [-4.9276, 0.0], [-4.878815, -0.495323], [-4.734335, -0.971611], [-4.499711, -1.41056], [-4.183961, -1.795303], [-3.799219, -2.111053], [-3.360269, -2.345676], [-2.883981, -2.490157], [-2.388658, -2.538942], [-1.330325, -2.538942], [1.330325, -2.538942], [1.330325, -2.009775], [-1.235075, -2.009775], [-1.25095, -1.851025], [-1.247775, -1.717675], [-1.218406, -1.412875], [-1.1303, -1.133475], [-0.99695, -0.877094], [-0.83185, -0.64135], [-0.644525, -0.423863], [-0.4445, -0.22225], [-0.244475, -0.032544], [-0.05715, 0.149225], [0.2413, 0.492125], [0.358775, 0.828675], [0.212725, 1.20015], [-0.155575, 1.330325], [-0.542925, 1.241425], [-0.942975, 0.942975], [-1.330325, 1.489075], [-1.056481, 1.72085], [-0.74295, 1.882775], [-0.410369, 1.978025], [-0.079375, 2.009775], [0.384175, 1.939925], [0.777875, 1.730375], [1.050925, 1.37795], [1.152525, 0.885825], [1.076325, 0.4953], [0.873125, 0.130175], [0.587375, -0.212725], [0.263525, -0.530225], [0.073025, -0.7112], [-0.130175, -0.9271], [-0.2921, -1.152525], [-0.358775, -1.362075], [1.330325, -1.362075], [1.330325, -2.009775], [1.330325, -2.538942], [2.388658, -2.538942], [2.883981, -2.490157], [3.360269, -2.345676], [3.799219, -2.111053], [4.183961, -1.795303], [4.499711, -1.41056], [4.734335, -0.971611], [4.878815, -0.495323], [4.9276, 0.0], [4.878815, 0.495323], [4.734335, 0.971611], [4.499711, 1.41056], [4.183961, 1.795303], [3.799219, 2.111053], [3.360269, 2.345676], [2.883981, 2.490157], [2.388658, 2.538942], [1.330325, 2.538942], [-1.330325, 2.538942]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[12.634912, -0.002381], [12.63908, -0.210145], [12.651581, -0.404813], [12.718256, -0.731044], [12.85875, -0.950119], [13.101637, -1.031081], [13.342144, -0.950119], [13.485019, -0.728663], [13.551694, -0.402431], [13.564195, -0.20955], [13.568362, -0.002381], [13.564195, 0.205383], [13.551694, 0.40005], [13.485019, 0.726281], [13.344525, 0.945356], [13.101637, 1.026319], [12.85875, 0.945356], [12.718256, 0.7239], [12.651581, 0.397669], [12.63908, 0.204787], [12.634912, -0.002381]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[-14.163675, 1.937544], [-14.164072, 1.937544], [-14.542068, 1.900314], [-14.905538, 1.790057], [-15.240514, 1.611009], [-15.534122, 1.37005], [-15.775081, 1.076442], [-15.954129, 0.741466], [-16.064386, 0.377996], [-16.101616, 0.0], [-16.064386, -0.377996], [-15.954129, -0.741466], [-15.775081, -1.076442], [-15.534122, -1.37005], [-15.240514, -1.611009], [-14.905538, -1.790057], [-14.542068, -1.900314], [-14.164072, -1.937544], [-14.163675, -1.937544], [-12.796838, -1.937544], [-12.796838, -1.478756], [-13.387388, -1.478756], [-13.387388, 0.983456], [-14.163675, 0.983456], [-14.163675, 1.469231], [-12.02055, 1.469231], [-12.02055, 0.983456], [-12.796838, 0.983456], [-12.796838, -1.478756], [-12.796838, -1.937544], [-11.60145, -1.937544], [-11.60145, -1.478756], [-11.60145, 1.469231], [-9.815513, 1.469231], [-9.815513, 0.983456], [-11.015663, 0.983456], [-11.015663, 0.321469], [-9.972675, 0.321469], [-9.972675, -0.164306], [-11.015663, -0.164306], [-11.015663, -0.992981], [-9.710738, -0.992981], [-9.710738, -1.478756], [-11.60145, -1.478756], [-11.60145, -1.937544], [-7.248525, -1.937544], [-7.248525, -1.478756], [-7.786688, -1.478756], [-7.758113, 0.812006], [-8.120063, -0.435769], [-8.548688, -0.435769], [-8.89635, 0.812006], [-8.872538, -1.478756], [-9.4107, -1.478756], [-9.395817, -1.109663], [-9.379744, -0.726281], [-9.36248, -0.336947], [-9.344025, 0.050006], [-9.323189, 0.429816], [-9.298781, 0.797719], [-9.270802, 1.146572], [-9.23925, 1.469231], [-8.753475, 1.469231], [-8.670131, 1.212056], [-8.562975, 0.873919], [-8.448675, 0.507206], [-8.339138, 0.164306], [-8.220075, 0.528637], [-8.101013, 0.890587], [-7.996238, 1.216819], [-7.910513, 1.469231], [-7.424738, 1.469231], [-7.391995, 1.088231], [-7.360444, 0.716756], [-7.331869, 0.35183], [-7.308056, -0.009525], [-7.288411, -0.370284], [-7.272338, -0.733425], [-7.259241, -1.101923], [-7.248525, -1.478756], [-7.248525, -1.937544], [-6.296025, -1.937544], [-6.296025, -1.478756], [-6.881813, -1.478756], [-6.881813, 1.431131], [-6.688931, 1.464469], [-6.472238, 1.4859], [-6.257925, 1.497806], [-6.072188, 1.502569], [-5.725583, 1.476904], [-5.435071, 1.39991], [-5.20065, 1.271587], [-5.028671, 1.085056], [-4.925483, 0.833437], [-4.891088, 0.516731], [-4.925748, 0.19685], [-5.029729, -0.057944], [-5.203031, -0.24765], [-5.439833, -0.378619], [-5.734315, -0.4572], [-6.086475, -0.483394], [-6.296025, -0.483394], [-6.296025, -1.478756], [-6.296025, -1.937544], [-2.91465, -1.937544], [-2.91465, -0.545306], [-4.219575, -0.545306], [-4.219575, 0.030956], [-2.91465, 0.030956], [-2.91465, -0.545306], [-2.91465, -1.937544], [-0.1905, -1.937544], [-0.1905, -1.478756], [-1.9812, -1.478756], [-1.9812, -0.992981], [-1.362075, -0.992981], [-1.362075, 0.654844], [-1.666875, 0.485775], [-1.957388, 0.369094], [-2.147888, 0.854869], [-1.900238, 0.964406], [-1.633538, 1.112044], [-1.381125, 1.283494], [-1.176338, 1.469231], [-0.776288, 1.469231], [-0.776288, -0.992981], [-0.1905, -0.992981], [-0.1905, -1.478756], [-0.1905, -1.937544], [2.109787, -1.937544], [2.109787, -1.478756], [1.624012, -1.478756], [1.519237, -1.167408], [1.414462, -0.833438], [1.309687, -0.495895], [1.204912, -0.173831], [1.097756, -0.486966], [0.985837, -0.826294], [0.8763, -1.165622], [0.776287, -1.478756], [0.290512, -1.478756], [0.254794, -1.140023], [0.223837, -0.78105], [0.197048, -0.409575], [0.173831, -0.033338], [0.154186, 0.346472], [0.138112, 0.728662], [0.125016, 1.105495], [0.1143, 1.469231], [0.657225, 1.469231], [0.652462, 1.183481], [0.6477, 0.888206], [0.642937, 0.588764], [0.638175, 0.290512], [0.633412, -0.003572], [0.62865, -0.290513], [0.625078, -0.564952], [0.623887, -0.821531], [0.721519, -0.488156], [0.826294, -0.130969], [0.919162, 0.192881], [0.985837, 0.426244], [1.414462, 0.426244], [1.471612, 0.202406], [1.554956, -0.092869], [1.654969, -0.440531], [1.762125, -0.821531], [1.760934, -0.564952], [1.757362, -0.290513], [1.7526, -0.004167], [1.747837, 0.288131], [1.743075, 0.585192], [1.738312, 0.885825], [1.734741, 1.182886], [1.73355, 1.469231], [2.276475, 1.469231], [2.262187, 1.101923], [2.2479, 0.7239], [2.232422, 0.341709], [2.214562, -0.0381], [2.193727, -0.413742], [2.169319, -0.783431], [2.141339, -1.140619], [2.109787, -1.478756], [2.109787, -1.937544], [3.56235, -1.937544], [3.56235, -1.540669], [3.348633, -1.526977], [3.155156, -1.4859], [2.840831, -1.328738], [2.638425, -1.076325], [2.566987, -0.740569], [2.593181, -0.52328], [2.671762, -0.319088], [2.806303, -0.132755], [3.000375, 0.030956], [2.824163, 0.178594], [2.714625, 0.335756], [2.638425, 0.678656], [2.688431, 0.976312], [2.847975, 1.254919], [3.138487, 1.459706], [3.340894, 1.520428], [3.586162, 1.540669], [3.966567, 1.488281], [4.260056, 1.331119], [4.44758, 1.08585], [4.510087, 0.769144], [4.485084, 0.566142], [4.410075, 0.366712], [4.281487, 0.185142], [4.09575, 0.035719], [4.327327, -0.128587], [4.479131, -0.307181], [4.56307, -0.502444], [4.59105, -0.716756], [4.536281, -1.007269], [4.360069, -1.271588], [4.043362, -1.464469], [3.825478, -1.521619], [3.56235, -1.540669], [3.56235, -1.937544], [6.61035, -1.937544], [6.61035, -0.545306], [5.305425, -0.545306], [5.305425, 0.030956], [6.61035, 0.030956], [6.61035, -0.545306], [6.61035, -1.937544], [7.991475, -1.937544], [7.991475, -1.478756], [7.405687, -1.478756], [7.405687, 1.431131], [7.598569, 1.464469], [7.815262, 1.4859], [8.029575, 1.497806], [8.215312, 1.502569], [8.561917, 1.476904], [8.852429, 1.39991], [9.08685, 1.271587], [9.258829, 1.085056], [9.362017, 0.833437], [9.396412, 0.516731], [9.361752, 0.19685], [9.257771, -0.057944], [9.084469, -0.24765], [8.847667, -0.378619], [8.553185, -0.4572], [8.201025, -0.483394], [7.991475, -0.483394], [7.991475, -1.478756], [7.991475, -1.937544], [11.858625, -1.937544], [11.858625, -1.478756], [11.244262, -1.478756], [11.125795, -1.198364], [10.989469, -0.928688], [10.838855, -0.662583], [10.677525, -0.392906], [10.372725, -0.392906], [10.372725, -1.478756], [9.786937, -1.478756], [9.786937, 1.426369], [9.975056, 1.462087], [10.182225, 1.4859], [10.38225, 1.497806], [10.548937, 1.502569], [10.789444, 1.488281], [11.006137, 1.445419], [11.196637, 1.372791], [11.358562, 1.269206], [11.584781, 0.966787], [11.643717, 0.767358], [11.663362, 0.535781], [11.637169, 0.290512], [11.558587, 0.069056], [11.419284, -0.115491], [11.210925, -0.250031], [11.382375, -0.523875], [11.558587, -0.8382], [11.722894, -1.166813], [11.858625, -1.478756], [11.858625, -1.937544], [13.1064, -1.937544], [13.1064, -1.540669], [12.787577, -1.497542], [12.523258, -1.36816], [12.313444, -1.152525], [12.193637, -0.935087], [12.108061, -0.670917], [12.056715, -0.360015], [12.0396, -0.002381], [12.057162, 0.355253], [12.109847, 0.666155], [12.197655, 0.930325], [12.320587, 1.147762], [12.532254, 1.363398], [12.792604, 1.492779], [13.101637, 1.535906], [13.420196, 1.492779], [13.683721, 1.363398], [13.892212, 1.147762], [14.010977, 0.930325], [14.095809, 0.666155], [14.146709, 0.355253], [14.163675, -0.002381], [14.146411, -0.360015], [14.094619, -0.670917], [14.008298, -0.935087], [13.88745, -1.152525], [13.6779, -1.36816], [13.41755, -1.497542], [13.1064, -1.540669], [13.1064, -1.937544], [14.163675, -1.937544], [14.164072, -1.937544], [14.542068, -1.900314], [14.905538, -1.790057], [15.240514, -1.611009], [15.534122, -1.37005], [15.775081, -1.076442], [15.954129, -0.741466], [16.064386, -0.377996], [16.101616, 0.0], [16.064386, 0.377996], [15.954129, 0.741466], [15.775081, 1.076442], [15.534122, 1.37005], [15.240514, 1.611009], [14.905538, 1.790057], [14.542068, 1.900314], [14.164072, 1.937544], [14.163675, 1.937544], [-14.163675, 1.937544]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[4.0386, -0.707231], [4.002881, -0.540544], [3.888581, -0.409575], [3.686175, -0.290513], [3.3909, -0.164306], [3.186112, -0.409575], [3.114675, -0.669131], [3.250406, -0.957263], [3.571875, -1.054894], [3.912394, -0.9525], [4.0386, -0.707231]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[-6.005513, 0.992981], [-6.150769, 0.9906], [-6.296025, 0.978694], [-6.296025, 0.026194], [-6.0579, 0.026194], [-5.811441, 0.054173], [-5.634038, 0.138112], [-5.526881, 0.289917], [-5.491163, 0.521494], [-5.526286, 0.741164], [-5.631656, 0.885825], [-5.795367, 0.966192], [-6.005513, 0.992981]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[8.281987, 0.992981], [8.136731, 0.9906], [7.991475, 0.978694], [7.991475, 0.026194], [8.2296, 0.026194], [8.476059, 0.054173], [8.653462, 0.138112], [8.760619, 0.289917], [8.796337, 0.521494], [8.761214, 0.741164], [8.655844, 0.885825], [8.492133, 0.966192], [8.281987, 0.992981]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[3.576637, 1.054894], [3.307556, 0.969169], [3.190875, 0.716756], [3.300412, 0.445294], [3.451622, 0.338137], [3.686175, 0.226219], [3.895725, 0.466725], [3.957637, 0.721519], [3.845719, 0.97155], [3.576637, 1.054894]]]}, {"type": "polygon", "pos": [140.7625, 89.0375], "angle": 90.0, "polygons": [[[11.06805, 0.540544], [11.032331, 0.74295], [10.925175, 0.883444], [10.759678, 0.965597], [10.548937, 0.992981], [10.467975, 0.9906], [10.372725, 0.978694], [10.372725, 0.092869], [10.501312, 0.092869], [10.759678, 0.122039], [10.9347, 0.20955], [11.06805, 0.540544]]]}, {"type": "polygon", "pos": [161.7625, 72.0375], "angle": 180.0, "polygons": [[[-1.3081, 2.535767], [-2.366433, 2.535767], [-2.861137, 2.487043], [-3.336829, 2.342743], [-3.77523, 2.108413], [-4.159491, 1.793058], [-4.474846, 1.408796], [-4.709176, 0.970396], [-4.853476, 0.494704], [-4.9022, 0.0], [-4.853476, -0.494704], [-4.709176, -0.970396], [-4.474846, -1.408796], [-4.159491, -1.793058], [-3.77523, -2.108413], [-3.336829, -2.342743], [-2.861137, -2.487043], [-2.366433, -2.535767], [-1.3081, -2.535767], [-0.24765, -2.535767], [-0.24765, -2.0066], [-0.5588, -1.98755], [-0.8636, -1.939925], [-1.127125, -1.87325], [-1.3081, -1.8034], [-1.14935, -1.1557], [-0.79375, -1.2827], [-0.550863, -1.325562], [-0.254, -1.33985], [0.123825, -1.28905], [0.358775, -1.158875], [0.47625, -0.9779], [0.508, -0.76835], [0.454025, -0.466725], [0.238125, -0.231775], [-0.22225, -0.079375], [-0.566738, -0.038894], [-1.0033, -0.0254], [-0.94615, 0.502444], [-0.9017, 1.019175], [-0.868363, 1.521619], [-0.84455, 2.0066], [1.16205, 2.0066], [1.16205, 1.3589], [-0.1905, 1.3589], [-0.22225, 0.93345], [-0.254, 0.5715], [0.226483, 0.506589], [0.618067, 0.379589], [0.92075, 0.1905], [1.135944, -0.059267], [1.265061, -0.3683], [1.3081, -0.7366], [1.21285, -1.241425], [0.92075, -1.64465], [0.700087, -1.79705], [0.4318, -1.91135], [0.115887, -1.982788], [-0.24765, -2.0066], [-0.24765, -2.535767], [1.3081, -2.535767], [2.366433, -2.535767], [2.861137, -2.487043], [3.336829, -2.342743], [3.77523, -2.108413], [4.159491, -1.793058], [4.474846, -1.408796], [4.709176, -0.970396], [4.853476, -0.494704], [4.9022, 0.0], [4.853476, 0.494704], [4.709176, 0.970396], [4.474846, 1.408796], [4.159491, 1.793058], [3.77523, 2.108413], [3.336829, 2.342743], [2.861137, 2.487043], [2.366433, 2.535767], [1.3081, 2.535767], [-1.3081, 2.535767]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[-4.2, 4.2], [-6.7, 4.2], [-6.7, 4.7], [-6.2, 4.7], [-4.7, 4.7], [-4.7, 6.2], [-6.2, 6.2], [-6.2, 4.7], [-6.7, 4.7], [-6.7, 6.7], [-4.2, 6.7]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[-4.2, -6.8], [-6.7, -6.8], [-6.7, -6.3], [-6.2, -6.3], [-4.7, -6.3], [-4.7, -4.8], [-6.2, -4.8], [-6.2, -6.3], [-6.7, -6.3], [-6.7, -4.3], [-4.2, -4.3]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[2.698372, -4.316211], [2.772392, -4.398941], [2.797631, -4.599338], [2.8, -4.8], [2.808105, -5.096744], [2.84947, -5.244784], [2.949669, -5.295263], [3.05, -5.3], [3.240301, -5.341302], [3.298944, -5.503928], [3.3, -5.55], [3.341302, -5.740301], [3.503928, -5.798944], [3.55, -5.8], [3.740301, -5.758697], [3.798944, -5.596071], [3.8, -5.55], [3.841302, -5.359698], [4.003928, -5.301055], [4.05, -5.3], [4.198372, -5.316211], [4.272392, -5.398941], [4.297631, -5.599338], [4.3, -5.8], [4.291894, -6.096744], [4.250529, -6.244784], [4.15033, -6.295263], [4.05, -6.3], [3.859698, -6.341302], [3.801055, -6.503928], [3.8, -6.55], [3.758697, -6.740301], [3.596071, -6.798944], [3.55, -6.8], [3.401627, -6.783788], [3.327607, -6.701058], [3.302368, -6.500661], [3.3, -6.3], [3.291894, -6.003255], [3.250529, -5.855215], [3.15033, -5.804736], [3.05, -5.8], [2.901627, -5.816211], [2.827607, -5.898941], [2.802368, -6.099338], [2.8, -6.3], [2.791894, -6.596744], [2.750529, -6.744784], [2.65033, -6.795263], [2.55, -6.8], [2.401627, -6.783788], [2.327607, -6.701058], [2.302368, -6.500661], [2.3, -6.3], [2.291894, -6.003255], [2.250529, -5.855215], [2.15033, -5.804736], [2.05, -5.8], [1.901627, -5.783788], [1.827607, -5.701058], [1.808582, -5.55], [2.3, -5.55], [2.341302, -5.740301], [2.503928, -5.798944], [2.55, -5.8], [2.740301, -5.758697], [2.798944, -5.596071], [2.8, -5.55], [2.758697, -5.359698], [2.596071, -5.301055], [2.55, -5.3], [2.359698, -5.341302], [2.301055, -5.503928], [2.3, -5.55], [1.808582, -5.55], [1.802368, -5.500661], [1.8, -5.3], [1.808105, -5.003255], [1.84947, -4.855215], [1.949669, -4.804736], [2.05, -4.8], [2.240301, -4.758697], [2.298944, -4.596071], [2.3, -4.55], [2.341302, -4.359698], [2.503928, -4.301055], [2.55, -4.3]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[-1.403256, -6.308105], [-1.255216, -6.34947], [-1.204737, -6.449669], [-1.2, -6.55], [-1.216212, -6.698372], [-1.298942, -6.772392], [-1.499339, -6.797631], [-1.7, -6.8], [-1.996745, -6.791894], [-2.144785, -6.750529], [-2.195264, -6.65033], [-2.2, -6.55], [-2.183789, -6.401627], [-2.101059, -6.327607], [-1.900662, -6.302368], [-1.7, -6.3]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[-5.903256, 2.691895], [-5.755216, 2.65053], [-5.704737, 2.550331], [-5.7, 2.45], [-5.716212, 2.301628], [-5.798942, 2.227608], [-5.999339, 2.202369], [-6.2, 2.2], [-6.496745, 2.208106], [-6.644785, 2.249471], [-6.695264, 2.34967], [-6.7, 2.45], [-6.683789, 2.598373], [-6.601059, 2.672393], [-6.400662, 2.697632], [-6.2, 2.7]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[2.240301, 3.158698], [2.298944, 2.996072], [2.3, 2.95], [2.341302, 2.759699], [2.503928, 2.701056], [2.55, 2.7], [2.67716, 2.690654], [2.751698, 2.634528], [2.787658, 2.489494], [2.79908, 2.213426], [2.8, 1.95], [2.796884, 1.568519], [2.778175, 1.344904], [2.729831, 1.237026], [2.637808, 1.202758], [2.55, 1.2], [2.359698, 1.158698], [2.301055, 0.996072], [2.3, 0.95], [2.309346, 0.82284], [2.365472, 0.748302], [2.510506, 0.712342], [2.786574, 0.70092], [3.05, 0.7], [3.431481, 0.696885], [3.655096, 0.678176], [3.762974, 0.629832], [3.797242, 0.537809], [3.8, 0.45], [3.758697, 0.259699], [3.596071, 0.201056], [3.55, 0.2], [3.359698, 0.158698], [3.301055, -0.003928], [3.3, -0.05], [3.341302, -0.240301], [3.503928, -0.298944], [3.55, -0.3], [3.67716, -0.309346], [3.751698, -0.365472], [3.787658, -0.510506], [3.79908, -0.786574], [3.8, -1.05], [3.803115, -1.431481], [3.821824, -1.655096], [3.870168, -1.762974], [3.962191, -1.797242], [4.05, -1.8], [4.240301, -1.758697], [4.298944, -1.596071], [4.3, -1.55], [4.341302, -1.359698], [4.503928, -1.301055], [4.55, -1.3], [4.698372, -1.283788], [4.772392, -1.201058], [4.797631, -1.000661], [4.8, -0.8], [4.791894, -0.503255], [4.750529, -0.355215], [4.65033, -0.304736], [4.55, -0.3], [4.359698, -0.258697], [4.301055, -0.096071], [4.3, -0.05], [4.8, -0.05], [4.841302, -0.240301], [5.003928, -0.298944], [5.05, -0.3], [5.240301, -0.341302], [5.298944, -0.503928], [5.3, -0.55], [5.341302, -0.740301], [5.503928, -0.798944], [5.55, -0.8], [5.740301, -0.758697], [5.798944, -0.596071], [5.8, -0.55], [5.758697, -0.359698], [5.596071, -0.301055], [5.55, -0.3], [5.359698, -0.258697], [5.301055, -0.096071], [5.3, -0.05], [5.258697, 0.140302], [5.096071, 0.198945], [5.05, 0.2], [4.859698, 0.158698], [4.801055, -0.003928], [4.8, -0.05], [4.3, -0.05], [4.341302, 0.140302], [4.503928, 0.198945], [4.55, 0.2], [4.740301, 0.241303], [4.798944, 0.403929], [4.8, 0.45], [4.758697, 0.640302], [4.596071, 0.698945], [4.55, 0.7], [4.359698, 0.741303], [4.301055, 0.903929], [4.3, 0.95], [4.283788, 1.098373], [4.201058, 1.172393], [4.000661, 1.197632], [3.8, 1.2], [3.3, 1.2], [3.3, 1.95], [3.303115, 2.331482], [3.321824, 2.555097], [3.370168, 2.662975], [3.462191, 2.697243], [3.55, 2.7], [3.698372, 2.683789], [3.772392, 2.601059], [3.797631, 2.400662], [3.8, 2.2], [3.8, 1.7], [4.3, 1.7], [4.596744, 1.691895], [4.744784, 1.65053], [4.795263, 1.550331], [4.8, 1.45], [4.841302, 1.259699], [5.003928, 1.201056], [5.05, 1.2], [5.198372, 1.183789], [5.272392, 1.101059], [5.297631, 0.900662], [5.3, 0.7], [5.3, 0.2], [5.8, 0.2], [6.096744, 0.208106], [6.244784, 0.249471], [6.295263, 0.34967], [6.3, 0.45], [6.258697, 0.640302], [6.096071, 0.698945], [6.05, 0.7], [5.901627, 0.716212], [5.827607, 0.798942], [5.802368, 0.999339], [5.8, 1.2], [5.791894, 1.496745], [5.750529, 1.644785], [5.65033, 1.695264], [5.55, 1.7], [5.359698, 1.741303], [5.301055, 1.903929], [5.3, 1.95], [5.341302, 2.140302], [5.503928, 2.198945], [5.55, 2.2], [5.740301, 2.158698], [5.798944, 1.996072], [5.8, 1.95], [5.841302, 1.759699], [6.003928, 1.701056], [6.05, 1.7], [6.198372, 1.683789], [6.272392, 1.601059], [6.297631, 1.400662], [6.3, 1.2], [6.308105, 0.903256], [6.34947, 0.755216], [6.449669, 0.704737], [6.55, 0.7], [6.740301, 0.658698], [6.798944, 0.496072], [6.8, 0.45], [6.758697, 0.259699], [6.596071, 0.201056], [6.55, 0.2], [6.422839, 0.190654], [6.348301, 0.134528], [6.312341, -0.010506], [6.300919, -0.286574], [6.3, -0.55], [6.303115, -0.931481], [6.321824, -1.155096], [6.370168, -1.262974], [6.462191, -1.297242], [6.55, -1.3], [6.740301, -1.341302], [6.798944, -1.503928], [6.8, -1.55], [6.758697, -1.740301], [6.596071, -1.798944], [6.55, -1.8], [6.359698, -1.758697], [6.301055, -1.596071], [6.3, -1.55], [6.258697, -1.359698], [6.096071, -1.301055], [6.05, -1.3], [5.859698, -1.341302], [5.801055, -1.503928], [5.8, -1.55], [5.790653, -1.67716], [5.734527, -1.751698], [5.589493, -1.787658], [5.313425, -1.79908], [5.05, -1.8], [4.668518, -1.803115], [4.444903, -1.821824], [4.337025, -1.870168], [4.302757, -1.962191], [4.3, -2.05], [4.341302, -2.240301], [4.503928, -2.298944], [4.55, -2.3], [4.740301, -2.341302], [4.798944, -2.503928], [4.8, -2.55], [4.783788, -2.698372], [4.701058, -2.772392], [4.500661, -2.797631], [4.3, -2.8], [4.003255, -2.791894], [3.855215, -2.750529], [3.804736, -2.65033], [3.8, -2.55], [3.758697, -2.359698], [3.596071, -2.301055], [3.55, -2.3], [3.359698, -2.341302], [3.301055, -2.503928], [3.3, -2.55], [3.258697, -2.740301], [3.096071, -2.798944], [3.05, -2.8], [2.901627, -2.816211], [2.827607, -2.898941], [2.802368, -3.099338], [2.8, -3.3], [2.8, -3.8], [2.3, -3.8], [2.003255, -3.808105], [1.855215, -3.84947], [1.804736, -3.949669], [1.8, -4.05], [1.758697, -4.240301], [1.596071, -4.298944], [1.55, -4.3], [1.359698, -4.258697], [1.301055, -4.096071], [1.3, -4.05], [1.341302, -3.859698], [1.503928, -3.801055], [1.55, -3.8], [1.67716, -3.790653], [1.751698, -3.734527], [1.787658, -3.589493], [1.79908, -3.313425], [1.8, -3.05], [1.796884, -2.668518], [1.778175, -2.444903], [1.729831, -2.337025], [1.637808, -2.302757], [1.55, -2.3], [1.359698, -2.258697], [1.301055, -2.096071], [1.3, -2.05], [1.341302, -1.859698], [1.503928, -1.801055], [1.55, -1.8], [1.740301, -1.841302], [1.798944, -2.003928], [1.8, -2.05], [1.841302, -2.240301], [2.003928, -2.298944], [2.05, -2.3], [2.198372, -2.283788], [2.272392, -2.201058], [2.297631, -2.000661], [2.3, -1.8], [2.291894, -1.503255], [2.250529, -1.355215], [2.15033, -1.304736], [2.05, -1.3], [1.859698, -1.258697], [1.801055, -1.096071], [1.8, -1.05], [2.3, -1.05], [2.341302, -1.240301], [2.503928, -1.298944], [2.55, -1.3], [2.698372, -1.316211], [2.772392, -1.398941], [2.797631, -1.599338], [2.8, -1.8], [2.808105, -2.096744], [2.84947, -2.244784], [2.949669, -2.295263], [3.05, -2.3], [3.3, -2.3], [3.3, -0.3], [3.05, -0.3], [2.859698, -0.341302], [2.801055, -0.503928], [2.8, -0.55], [2.758697, -0.740301], [2.596071, -0.798944], [2.55, -0.8], [2.359698, -0.841302], [2.301055, -1.003928], [2.3, -1.05], [1.8, -1.05], [1.841302, -0.859698], [2.003928, -0.801055], [2.05, -0.8], [2.17716, -0.790653], [2.251698, -0.734527], [2.287658, -0.589493], [2.29908, -0.313425], [2.3, -0.05], [2.296884, 0.331482], [2.278175, 0.555097], [2.229831, 0.662975], [2.137808, 0.697243], [2.05, 0.7], [1.901627, 0.716212], [1.827607, 0.798942], [1.802368, 0.999339], [1.8, 1.2], [1.808105, 1.496745], [1.84947, 1.644785], [1.949669, 1.695264], [2.05, 1.7], [2.198372, 1.716212], [2.272392, 1.798942], [2.297631, 1.999339], [2.3, 2.2], [2.291894, 2.496745], [2.250529, 2.644785], [2.15033, 2.695264], [2.05, 2.7], [1.859698, 2.741303], [1.801055, 2.903929], [1.8, 2.95], [1.841302, 3.140302], [2.003928, 3.198945], [2.05, 3.2]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[6.8, 4.2], [4.3, 4.2], [4.3, 4.7], [4.8, 4.7], [6.3, 4.7], [6.3, 6.2], [4.8, 6.2], [4.8, 4.7], [4.3, 4.7], [4.3, 6.7], [6.8, 6.7]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[4.8, -4.8], [3.3, -4.8], [3.3, -4.05], [3.8, -4.05], [3.841302, -4.240301], [4.003928, -4.298944], [4.05, -4.3], [4.240301, -4.258697], [4.298944, -4.096071], [4.3, -4.05], [4.258697, -3.859698], [4.096071, -3.801055], [4.05, -3.8], [3.859698, -3.841302], [3.801055, -4.003928], [3.8, -4.05], [3.3, -4.05], [3.3, -3.3], [4.8, -3.3]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[1.931481, 6.696885], [2.155096, 6.678176], [2.262974, 6.629832], [2.297242, 6.537809], [2.3, 6.45], [2.341302, 6.259699], [2.503928, 6.201056], [2.55, 6.2], [2.740301, 6.158698], [2.798944, 5.996072], [2.8, 5.95], [2.783788, 5.801628], [2.701058, 5.727608], [2.500661, 5.702369], [2.3, 5.7], [1.8, 5.7], [1.8, 5.2], [1.791894, 4.903256], [1.750529, 4.755216], [1.65033, 4.704737], [1.55, 4.7], [1.359698, 4.658698], [1.301055, 4.496072], [1.3, 4.45], [1.341302, 4.259699], [1.503928, 4.201056], [1.55, 4.2], [1.740301, 4.158698], [1.798944, 3.996072], [1.8, 3.95], [1.758697, 3.759699], [1.596071, 3.701056], [1.55, 3.7], [1.359698, 3.741303], [1.301055, 3.903929], [1.3, 3.95], [1.258697, 4.140302], [1.096071, 4.198945], [1.05, 4.2], [0.901627, 4.183789], [0.827607, 4.101059], [0.802368, 3.900662], [0.8, 3.7], [0.808105, 3.403256], [0.84947, 3.255216], [0.949669, 3.204737], [1.05, 3.2], [1.240301, 3.158698], [1.298944, 2.996072], [1.3, 2.95], [1.258697, 2.759699], [1.096071, 2.701056], [1.05, 2.7], [0.859698, 2.658698], [0.801055, 2.496072], [0.8, 2.45], [0.841302, 2.259699], [1.003928, 2.201056], [1.05, 2.2], [1.240301, 2.158698], [1.298944, 1.996072], [1.3, 1.95], [1.258697, 1.759699], [1.096071, 1.701056], [1.05, 1.7], [0.859698, 1.658698], [0.801055, 1.496072], [0.8, 1.45], [0.783788, 1.301628], [0.701058, 1.227608], [0.500661, 1.202369], [0.3, 1.2], [0.003255, 1.191895], [-0.144785, 1.15053], [-0.195264, 1.050331], [-0.2, 0.95], [-0.190654, 0.82284], [-0.134528, 0.748302], [0.010506, 0.712342], [0.286574, 0.70092], [0.55, 0.7], [0.931481, 0.696885], [1.155096, 0.678176], [1.262974, 0.629832], [1.297242, 0.537809], [1.3, 0.45], [1.258697, 0.259699], [1.096071, 0.201056], [1.05, 0.2], [0.859698, 0.158698], [0.801055, -0.003928], [0.8, -0.05], [0.758697, -0.240301], [0.596071, -0.298944], [0.55, -0.3], [0.359698, -0.341302], [0.301055, -0.503928], [0.3, -0.55], [0.316211, -0.698372], [0.398941, -0.772392], [0.599338, -0.797631], [0.8, -0.8], [1.096744, -0.808105], [1.244784, -0.84947], [1.295263, -0.949669], [1.3, -1.05], [1.258697, -1.240301], [1.096071, -1.298944], [1.05, -1.3], [0.901627, -1.316211], [0.827607, -1.398941], [0.802368, -1.599338], [0.8, -1.8], [0.791894, -2.096744], [0.750529, -2.244784], [0.65033, -2.295263], [0.55, -2.3], [0.359698, -2.258697], [0.301055, -2.096071], [0.3, -2.05], [0.258697, -1.859698], [0.096071, -1.801055], [0.05, -1.8], [-0.140302, -1.841302], [-0.198945, -2.003928], [-0.2, -2.05], [-0.241303, -2.240301], [-0.403929, -2.298944], [-0.45, -2.3], [-0.640302, -2.258697], [-0.698945, -2.096071], [-0.7, -2.05], [-0.658698, -1.859698], [-0.496072, -1.801055], [-0.45, -1.8], [-0.259699, -1.758697], [-0.201056, -1.596071], [-0.2, -1.55], [-0.241303, -1.359698], [-0.403929, -1.301055], [-0.45, -1.3], [-0.640302, -1.258697], [-0.698945, -1.096071], [-0.7, -1.05], [-0.741303, -0.859698], [-0.903929, -0.801055], [-0.95, -0.8], [-1.140302, -0.841302], [-1.198945, -1.003928], [-1.2, -1.05], [-1.241303, -1.240301], [-1.403929, -1.298944], [-1.45, -1.3], [-1.598373, -1.316211], [-1.672393, -1.398941], [-1.697632, -1.599338], [-1.7, -1.8], [-1.691895, -2.096744], [-1.65053, -2.244784], [-1.550331, -2.295263], [-1.45, -2.3], [-1.259699, -2.341302], [-1.201056, -2.503928], [-1.2, -2.55], [-1.183789, -2.698372], [-1.101059, -2.772392], [-0.900662, -2.797631], [-0.7, -2.8], [-0.2, -2.8], [-0.2, -3.3], [-0.191895, -3.596744], [-0.15053, -3.744784], [-0.050331, -3.795263], [0.05, -3.8], [0.240301, -3.758697], [0.298944, -3.596071], [0.3, -3.55], [0.341302, -3.359698], [0.503928, -3.301055], [0.55, -3.3], [0.67716, -3.309346], [0.751698, -3.365472], [0.787658, -3.510506], [0.79908, -3.786574], [0.8, -4.05], [0.796884, -4.431481], [0.778175, -4.655096], [0.729831, -4.762974], [0.637808, -4.797242], [0.55, -4.8], [0.359698, -4.841302], [0.301055, -5.003928], [0.3, -5.05], [0.316211, -5.198372], [0.398941, -5.272392], [0.599338, -5.297631], [0.8, -5.3], [1.3, -5.3], [1.3, -6.3], [0.8, -6.3], [0.503255, -6.291894], [0.355215, -6.250529], [0.304736, -6.15033], [0.3, -6.05], [0.258697, -5.859698], [0.096071, -5.801055], [0.05, -5.8], [-0.140302, -5.841302], [-0.198945, -6.003928], [-0.2, -6.05], [-0.241303, -6.240301], [-0.403929, -6.298944], [-0.45, -6.3], [-0.640302, -6.258697], [-0.698945, -6.096071], [-0.7, -6.05], [-0.658698, -5.859698], [-0.496072, -5.801055], [-0.45, -5.8], [-0.259699, -5.758697], [-0.201056, -5.596071], [-0.2, -5.55], [-0.241303, -5.359698], [-0.403929, -5.301055], [-0.45, -5.3], [-0.640302, -5.258697], [-0.698945, -5.096071], [-0.7, -5.05], [-0.741303, -4.859698], [-0.903929, -4.801055], [-0.95, -4.8], [-1.140302, -4.841302], [-1.198945, -5.003928], [-1.2, -5.05], [-1.241303, -5.240301], [-1.403929, -5.298944], [-1.45, -5.3], [-1.640302, -5.258697], [-1.698945, -5.096071], [-1.7, -5.05], [-1.741303, -4.859698], [-1.903929, -4.801055], [-1.95, -4.8], [-2.140302, -4.758697], [-2.198945, -4.596071], [-2.2, -4.55], [-1.7, -4.55], [-1.658698, -4.740301], [-1.496072, -4.798944], [-1.45, -4.8], [-1.259699, -4.758697], [-1.201056, -4.596071], [-1.2, -4.55], [-1.241303, -4.359698], [-1.403929, -4.301055], [-1.45, -4.3], [-1.640302, -4.341302], [-1.698945, -4.503928], [-1.7, -4.55], [-2.2, -4.55], [-2.158698, -4.359698], [-1.996072, -4.301055], [-1.95, -4.3], [-1.759699, -4.258697], [-1.701056, -4.096071], [-1.7, -4.05], [-0.7, -4.05], [-0.658698, -4.240301], [-0.496072, -4.298944], [-0.45, -4.3], [-0.259699, -4.258697], [-0.201056, -4.096071], [-0.2, -4.05], [-0.241303, -3.859698], [-0.403929, -3.801055], [-0.45, -3.8], [-0.640302, -3.841302], [-0.698945, -4.003928], [-0.7, -4.05], [-1.7, -4.05], [-1.658698, -3.859698], [-1.496072, -3.801055], [-1.45, -3.8], [-1.301628, -3.783788], [-1.227608, -3.701058], [-1.202369, -3.500661], [-1.2, -3.3], [-1.208106, -3.003255], [-1.249471, -2.855215], [-1.34967, -2.804736], [-1.45, -2.8], [-1.640302, -2.841302], [-1.698945, -3.003928], [-1.7, -3.05], [-1.741303, -3.240301], [-1.903929, -3.298944], [-1.95, -3.3], [-2.140302, -3.341302], [-2.198945, -3.503928], [-2.2, -3.55], [-2.241303, -3.740301], [-2.403929, -3.798944], [-2.45, -3.8], [-2.640302, -3.758697], [-2.698945, -3.596071], [-2.7, -3.55], [-2.658698, -3.359698], [-2.496072, -3.301055], [-2.45, -3.3], [-2.301628, -3.283788], [-2.227608, -3.201058], [-2.202369, -3.000661], [-2.2, -2.8], [-2.208106, -2.503255], [-2.249471, -2.355215], [-2.34967, -2.304736], [-2.45, -2.3], [-2.640302, -2.258697], [-2.698945, -2.096071], [-2.7, -2.05], [-2.709347, -1.922839], [-2.765473, -1.848301], [-2.910507, -1.812341], [-3.186575, -1.800919], [-3.45, -1.8], [-3.831482, -1.796884], [-4.055097, -1.778175], [-4.162975, -1.729831], [-4.197243, -1.637808], [-4.2, -1.55], [-4.158698, -1.359698], [-3.996072, -1.301055], [-3.95, -1.3], [-3.759699, -1.258697], [-3.701056, -1.096071], [-3.7, -1.05], [-3.716212, -0.901627], [-3.798942, -0.827607], [-3.999339, -0.802368], [-4.2, -0.8], [-4.496745, -0.791894], [-4.644785, -0.750529], [-4.695264, -0.65033], [-4.7, -0.55], [-4.741303, -0.359698], [-4.903929, -0.301055], [-4.95, -0.3], [-5.140302, -0.258697], [-5.198945, -0.096071], [-5.2, -0.05], [-4.2, -0.05], [-4.158698, -0.240301], [-3.996072, -0.298944], [-3.95, -0.3], [-3.759699, -0.258697], [-3.701056, -0.096071], [-3.7, -0.05], [-3.741303, 0.140302], [-3.903929, 0.198945], [-3.95, 0.2], [-4.140302, 0.158698], [-4.198945, -0.003928], [-4.2, -0.05], [-5.2, -0.05], [-5.158698, 0.140302], [-4.996072, 0.198945], [-4.95, 0.2], [-4.759699, 0.241303], [-4.701056, 0.403929], [-4.7, 0.45], [-4.683789, 0.598373], [-4.601059, 0.672393], [-4.400662, 0.697632], [-4.2, 0.7], [-3.903256, 0.708106], [-3.755216, 0.749471], [-3.704737, 0.84967], [-3.7, 0.95], [-3.741303, 1.140302], [-3.903929, 1.198945], [-3.95, 1.2], [-4.140302, 1.241303], [-4.198945, 1.403929], [-4.2, 1.45], [-3.7, 1.45], [-3.658698, 1.259699], [-3.496072, 1.201056], [-3.45, 1.2], [-3.259699, 1.241303], [-3.201056, 1.403929], [-3.2, 1.45], [-3.241303, 1.640302], [-3.403929, 1.698945], [-3.45, 1.7], [-3.640302, 1.658698], [-3.698945, 1.496072], [-3.7, 1.45], [-4.2, 1.45], [-4.158698, 1.640302], [-3.996072, 1.698945], [-3.95, 1.7], [-3.759699, 1.741303], [-3.701056, 1.903929], [-3.7, 1.95], [-3.716212, 2.098373], [-3.798942, 2.172393], [-3.999339, 2.197632], [-4.2, 2.2], [-4.7, 2.2], [-4.7, 1.7], [-4.708106, 1.403256], [-4.749471, 1.255216], [-4.84967, 1.204737], [-4.95, 1.2], [-5.140302, 1.158698], [-5.198945, 0.996072], [-5.2, 0.95], [-5.216212, 0.801628], [-5.298942, 0.727608], [-5.499339, 0.702369], [-5.7, 0.7], [-5.996745, 0.708106], [-6.144785, 0.749471], [-6.195264, 0.84967], [-6.2, 0.95], [-6.241303, 1.140302], [-6.403929, 1.198945], [-6.45, 1.2], [-6.640302, 1.241303], [-6.698945, 1.403929], [-6.7, 1.45], [-6.658698, 1.640302], [-6.496072, 1.698945], [-6.45, 1.7], [-6.259699, 1.658698], [-6.201056, 1.496072], [-6.2, 1.45], [-6.158698, 1.259699], [-5.996072, 1.201056], [-5.95, 1.2], [-5.759699, 1.241303], [-5.701056, 1.403929], [-5.7, 1.45], [-5.658698, 1.640302], [-5.496072, 1.698945], [-5.45, 1.7], [-5.301628, 1.716212], [-5.227608, 1.798942], [-5.202369, 1.999339], [-5.2, 2.2], [-5.2, 2.7], [-4.45, 2.7], [-4.068519, 2.696885], [-3.844904, 2.678176], [-3.737026, 2.629832], [-3.702758, 2.537809], [-3.7, 2.45], [-3.658698, 2.259699], [-3.496072, 2.201056], [-3.45, 2.2], [-3.259699, 2.241303], [-3.201056, 2.403929], [-3.2, 2.45], [-3.158698, 2.640302], [-2.996072, 2.698945], [-2.95, 2.7], [-2.759699, 2.658698], [-2.701056, 2.496072], [-2.7, 2.45], [-2.658698, 2.259699], [-2.496072, 2.201056], [-2.45, 2.2], [-2.259699, 2.158698], [-2.201056, 1.996072], [-2.2, 1.95], [-2.241303, 1.759699], [-2.403929, 1.701056], [-2.45, 1.7], [-2.640302, 1.658698], [-2.698945, 1.496072], [-2.7, 1.45], [-2.658698, 1.259699], [-2.496072, 1.201056], [-2.45, 1.2], [-2.259699, 1.158698], [-2.201056, 0.996072], [-2.2, 0.95], [-2.241303, 0.759699], [-2.403929, 0.701056], [-2.45, 0.7], [-2.640302, 0.741303], [-2.698945, 0.903929], [-2.7, 0.95], [-2.741303, 1.140302], [-2.903929, 1.198945], [-2.95, 1.2], [-3.098373, 1.183789], [-3.172393, 1.101059], [-3.197632, 0.900662], [-3.2, 0.7], [-3.191895, 0.403256], [-3.15053, 0.255216], [-3.050331, 0.204737], [-2.95, 0.2], [-2.759699, 0.158698], [-2.701056, -0.003928], [-2.7, -0.05], [-2.716212, -0.198372], [-2.798942, -0.272392], [-2.999339, -0.297631], [-3.2, -0.3], [-3.496745, -0.308105], [-3.644785, -0.34947], [-3.695264, -0.449669], [-3.7, -0.55], [-3.7, -0.8], [-1.2, -0.8], [-1.2, -0.55], [-1.216212, -0.401627], [-1.298942, -0.327607], [-1.499339, -0.302368], [-1.7, -0.3], [-1.996745, -0.291894], [-2.144785, -0.250529], [-2.195264, -0.15033], [-2.2, -0.05], [-0.7, -0.05], [-0.658698, -0.240301], [-0.496072, -0.298944], [-0.45, -0.3], [-0.259699, -0.258697], [-0.201056, -0.096071], [-0.2, -0.05], [-0.241303, 0.140302], [-0.403929, 0.198945], [-0.45, 0.2], [-0.640302, 0.158698], [-0.698945, -0.003928], [-0.7, -0.05], [-2.2, -0.05], [-2.183789, 0.098373], [-2.101059, 0.172393], [-1.900662, 0.197632], [-1.7, 0.2], [-1.2, 0.2], [-1.2, 0.7], [-1.208106, 0.996745], [-1.249471, 1.144785], [-1.34967, 1.195264], [-1.45, 1.2], [-1.640302, 1.241303], [-1.698945, 1.403929], [-1.7, 1.45], [-1.658698, 1.640302], [-1.496072, 1.698945], [-1.45, 1.7], [-1.259699, 1.658698], [-1.201056, 1.496072], [-1.2, 1.45], [-1.183789, 1.301628], [-1.101059, 1.227608], [-0.900662, 1.202369], [-0.7, 1.2], [-0.403256, 1.208106], [-0.255216, 1.249471], [-0.204737, 1.34967], [-0.2, 1.45], [-0.158698, 1.640302], [0.003928, 1.698945], [0.05, 1.7], [0.240301, 1.741303], [0.298944, 1.903929], [0.3, 1.95], [0.283788, 2.098373], [0.201058, 2.172393], [0.000661, 2.197632], [-0.2, 2.2], [-0.7, 2.2], [-0.7, 2.7], [-0.708106, 2.996745], [-0.749471, 3.144785], [-0.84967, 3.195264], [-0.95, 3.2], [-1.140302, 3.241303], [-1.198945, 3.403929], [-1.2, 3.45], [-0.7, 3.45], [-0.658698, 3.259699], [-0.496072, 3.201056], [-0.45, 3.2], [-0.259699, 3.158698], [-0.201056, 2.996072], [-0.2, 2.95], [-0.158698, 2.759699], [0.003928, 2.701056], [0.05, 2.7], [0.240301, 2.741303], [0.298944, 2.903929], [0.3, 2.95], [0.258697, 3.140302], [0.096071, 3.198945], [0.05, 3.2], [-0.140302, 3.241303], [-0.198945, 3.403929], [-0.2, 3.45], [-0.241303, 3.640302], [-0.403929, 3.698945], [-0.45, 3.7], [-0.640302, 3.658698], [-0.698945, 3.496072], [-0.7, 3.45], [-1.2, 3.45], [-1.241303, 3.640302], [-1.403929, 3.698945], [-1.45, 3.7], [-1.640302, 3.741303], [-1.698945, 3.903929], [-1.7, 3.95], [-1.658698, 4.140302], [-1.496072, 4.198945], [-1.45, 4.2], [-1.259699, 4.158698], [-1.201056, 3.996072], [-1.2, 3.95], [-1.158698, 3.759699], [-0.996072, 3.701056], [-0.95, 3.7], [-0.759699, 3.741303], [-0.701056, 3.903929], [-0.7, 3.95], [-0.658698, 4.140302], [-0.496072, 4.198945], [-0.45, 4.2], [-0.259699, 4.158698], [-0.201056, 3.996072], [-0.2, 3.95], [-0.158698, 3.759699], [0.003928, 3.701056], [0.05, 3.7], [0.240301, 3.741303], [0.298944, 3.903929], [0.3, 3.95], [0.341302, 4.140302], [0.503928, 4.198945], [0.55, 4.2], [0.740301, 4.241303], [0.798944, 4.403929], [0.8, 4.45], [0.841302, 4.640302], [1.003928, 4.698945], [1.05, 4.7], [1.198372, 4.716212], [1.272392, 4.798942], [1.297631, 4.999339], [1.3, 5.2], [1.3, 5.7], [0.8, 5.7], [0.503255, 5.708106], [0.355215, 5.749471], [0.304736, 5.84967], [0.3, 5.95], [0.341302, 6.140302], [0.503928, 6.198945], [0.55, 6.2], [0.740301, 6.241303], [0.798944, 6.403929], [0.8, 6.45], [0.809346, 6.577161], [0.865472, 6.651699], [1.010506, 6.687659], [1.286574, 6.699081], [1.55, 6.7]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[6.740301, -5.841302], [6.798944, -6.003928], [6.8, -6.05], [6.758697, -6.240301], [6.596071, -6.298944], [6.55, -6.3], [6.359698, -6.258697], [6.301055, -6.096071], [6.3, -6.05], [6.341302, -5.859698], [6.503928, -5.801055], [6.55, -5.8]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[2.740301, 4.158698], [2.798944, 3.996072], [2.8, 3.95], [2.758697, 3.759699], [2.596071, 3.701056], [2.55, 3.7], [2.359698, 3.741303], [2.301055, 3.903929], [2.3, 3.95], [2.341302, 4.140302], [2.503928, 4.198945], [2.55, 4.2]]]}, {"type": "polygon", "pos": [151.7625, 123.0375], "angle": 180.0, "polygons": [[[7.8, -7.8], [-7.7, -7.8], [-7.7, -7.3], [-7.2, -7.3], [-3.7, -7.3], [-3.7, -3.8], [-7.2, -3.8], [-7.2, -7.3], [-7.7, -7.3], [-7.7, -3.05], [-7.2, -3.05], [-7.158698, -3.240301], [-6.996072, -3.298944], [-6.95, -3.3], [-6.759699, -3.258697], [-6.701056, -3.096071], [-6.7, -3.05], [-6.658698, -2.859698], [-6.496072, -2.801055], [-6.45, -2.8], [-6.259699, -2.758697], [-6.201056, -2.596071], [-6.2, -2.55], [-6.241303, -2.359698], [-6.403929, -2.301055], [-6.45, -2.3], [-6.640302, -2.258697], [-6.698945, -2.096071], [-6.7, -2.05], [-6.741303, -1.859698], [-6.903929, -1.801055], [-6.95, -1.8], [-7.140302, -1.841302], [-7.198945, -2.003928], [-7.2, -2.05], [-7.158698, -2.240301], [-6.996072, -2.298944], [-6.95, -2.3], [-6.759699, -2.341302], [-6.701056, -2.503928], [-6.7, -2.55], [-6.741303, -2.740301], [-6.903929, -2.798944], [-6.95, -2.8], [-7.140302, -2.841302], [-7.198945, -3.003928], [-7.2, -3.05], [-7.7, -3.05], [-7.7, -1.05], [-7.2, -1.05], [-7.190654, -1.17716], [-7.134528, -1.251698], [-6.989494, -1.287658], [-6.713426, -1.29908], [-6.45, -1.3], [-6.068519, -1.296884], [-5.844904, -1.278175], [-5.737026, -1.229831], [-5.702758, -1.137808], [-5.7, -1.05], [-5.741303, -0.859698], [-5.903929, -0.801055], [-5.95, -0.8], [-6.098373, -0.783788], [-6.172393, -0.701058], [-6.197632, -0.500661], [-6.2, -0.3], [-6.191895, -0.003255], [-6.15053, 0.144785], [-6.050331, 0.195264], [-5.95, 0.2], [-5.759699, 0.158698], [-5.701056, -0.003928], [-5.7, -0.05], [-5.658698, -0.240301], [-5.496072, -0.298944], [-5.45, -0.3], [-5.32284, -0.309346], [-5.248302, -0.365472], [-5.212342, -0.510506], [-5.20092, -0.786574], [-5.2, -1.05], [-5.203116, -1.431481], [-5.221825, -1.655096], [-5.270169, -1.762974], [-5.362192, -1.797242], [-5.45, -1.8], [-5.598373, -1.816211], [-5.672393, -1.898941], [-5.697632, -2.099338], [-5.7, -2.3], [-5.691895, -2.596744], [-5.65053, -2.744784], [-5.550331, -2.795263], [-5.45, -2.8], [-5.301628, -2.783788], [-5.227608, -2.701058], [-5.202369, -2.500661], [-5.2, -2.3], [-5.2, -1.8], [-4.7, -1.8], [-4.403256, -1.808105], [-4.255216, -1.84947], [-4.204737, -1.949669], [-4.2, -2.05], [-4.241303, -2.240301], [-4.403929, -2.298944], [-4.45, -2.3], [-4.640302, -2.341302], [-4.698945, -2.503928], [-4.7, -2.55], [-4.658698, -2.740301], [-4.496072, -2.798944], [-4.45, -2.8], [-4.259699, -2.841302], [-4.201056, -3.003928], [-4.2, -3.05], [-4.158698, -3.240301], [-3.996072, -3.298944], [-3.95, -3.3], [-3.759699, -3.258697], [-3.701056, -3.096071], [-3.7, -3.05], [-3.741303, -2.859698], [-3.903929, -2.801055], [-3.95, -2.8], [-4.140302, -2.758697], [-4.198945, -2.596071], [-4.2, -2.55], [-4.183789, -2.401627], [-4.101059, -2.327607], [-3.900662, -2.302368], [-3.7, -2.3], [-3.403256, -2.308105], [-3.255216, -2.34947], [-3.204737, -2.449669], [-3.2, -2.55], [-3.158698, -2.740301], [-2.996072, -2.798944], [-2.95, -2.8], [-2.759699, -2.841302], [-2.701056, -3.003928], [-2.7, -3.05], [-2.741303, -3.240301], [-2.903929, -3.298944], [-2.95, -3.3], [-3.2, -3.3], [-3.2, -5.3], [-2.45, -5.3], [-2.068519, -5.303115], [-1.844904, -5.321824], [-1.737026, -5.370168], [-1.702758, -5.462191], [-1.7, -5.55], [-1.741303, -5.740301], [-1.903929, -5.798944], [-1.95, -5.8], [-2.140302, -5.841302], [-2.198945, -6.003928], [-2.2, -6.05], [-2.241303, -6.240301], [-2.403929, -6.298944], [-2.45, -6.3], [-2.640302, -6.258697], [-2.698945, -6.096071], [-2.7, -6.05], [-2.741303, -5.859698], [-2.903929, -5.801055], [-2.95, -5.8], [-3.077161, -5.809346], [-3.151699, -5.865472], [-3.187659, -6.010506], [-3.199081, -6.286574], [-3.2, -6.55], [-3.196885, -6.931481], [-3.178176, -7.155096], [-3.129832, -7.262974], [-3.037809, -7.297242], [-2.95, -7.3], [-2.759699, -7.258697], [-2.701056, -7.096071], [-2.7, -7.05], [-2.658698, -6.859698], [-2.496072, -6.801055], [-2.45, -6.8], [-2.259699, -6.841302], [-2.201056, -7.003928], [-2.2, -7.05], [-2.183789, -7.198372], [-2.101059, -7.272392], [-1.900662, -7.297631], [-1.7, -7.3], [-1.403256, -7.291894], [-1.255216, -7.250529], [-1.204737, -7.15033], [-1.2, -7.05], [-1.183789, -6.901627], [-1.101059, -6.827607], [-0.900662, -6.802368], [-0.7, -6.8], [-0.403256, -6.808105], [-0.255216, -6.84947], [-0.204737, -6.949669], [-0.2, -7.05], [-0.158698, -7.240301], [0.003928, -7.298944], [0.05, -7.3], [0.240301, -7.258697], [0.298944, -7.096071], [0.3, -7.05], [0.341302, -6.859698], [0.503928, -6.801055], [0.55, -6.8], [0.740301, -6.841302], [0.798944, -7.003928], [0.8, -7.05], [0.816211, -7.198372], [0.898941, -7.272392], [1.099338, -7.297631], [1.3, -7.3], [1.596744, -7.291894], [1.744784, -7.250529], [1.795263, -7.15033], [1.8, -7.05], [1.841302, -6.859698], [2.003928, -6.801055], [2.05, -6.8], [2.240301, -6.841302], [2.298944, -7.003928], [2.3, -7.05], [2.3, -7.3], [5.3, -7.3], [5.3, -7.05], [5.283788, -6.901627], [5.201058, -6.827607], [5.000661, -6.802368], [4.8, -6.8], [4.503255, -6.791894], [4.355215, -6.750529], [4.304736, -6.65033], [4.3, -6.55], [4.316211, -6.401627], [4.398941, -6.327607], [4.599338, -6.302368], [4.8, -6.3], [5.3, -6.3], [5.3, -5.8], [5.308105, -5.503255], [5.34947, -5.355215], [5.449669, -5.304736], [5.55, -5.3], [5.740301, -5.258697], [5.798944, -5.096071], [5.8, -5.05], [5.758697, -4.859698], [5.596071, -4.801055], [5.55, -4.8], [5.359698, -4.758697], [5.301055, -4.596071], [5.3, -4.55], [5.341302, -4.359698], [5.503928, -4.301055], [5.55, -4.3], [5.740301, -4.258697], [5.798944, -4.096071], [5.8, -4.05], [5.841302, -3.859698], [6.003928, -3.801055], [6.05, -3.8], [6.240301, -3.841302], [6.298944, -4.003928], [6.3, -4.05], [6.341302, -4.240301], [6.503928, -4.298944], [6.55, -4.3], [6.740301, -4.341302], [6.798944, -4.503928], [6.8, -4.55], [6.758697, -4.740301], [6.596071, -4.798944], [6.55, -4.8], [6.401627, -4.816211], [6.327607, -4.898941], [6.302368, -5.099338], [6.3, -5.3], [6.291894, -5.596744], [6.250529, -5.744784], [6.15033, -5.795263], [6.05, -5.8], [5.859698, -5.841302], [5.801055, -6.003928], [5.8, -6.05], [5.841302, -6.240301], [6.003928, -6.298944], [6.05, -6.3], [6.198372, -6.316211], [6.272392, -6.398941], [6.297631, -6.599338], [6.3, -6.8], [6.3, -7.3], [6.8, -7.3], [7.096744, -7.291894], [7.244784, -7.250529], [7.295263, -7.15033], [7.3, -7.05], [7.258697, -6.859698], [7.096071, -6.801055], [7.05, -6.8], [6.859698, -6.758697], [6.801055, -6.596071], [6.8, -6.55], [6.841302, -6.359698], [7.003928, -6.301055], [7.05, -6.3], [7.3, -6.3], [7.3, -3.3], [6.55, -3.3], [6.168518, -3.303115], [5.944903, -3.321824], [5.837025, -3.370168], [5.802757, -3.462191], [5.8, -3.55], [5.758697, -3.740301], [5.596071, -3.798944], [5.55, -3.8], [5.401627, -3.783788], [5.327607, -3.701058], [5.302368, -3.500661], [5.3, -3.3], [5.308105, -3.003255], [5.34947, -2.855215], [5.449669, -2.804736], [5.55, -2.8], [5.698372, -2.783788], [5.772392, -2.701058], [5.797631, -2.500661], [5.8, -2.3], [5.808105, -2.003255], [5.84947, -1.855215], [5.949669, -1.804736], [6.05, -1.8], [6.198372, -1.816211], [6.272392, -1.898941], [6.297631, -2.099338], [6.3, -2.3], [6.308105, -2.596744], [6.34947, -2.744784], [6.449669, -2.795263], [6.55, -2.8], [6.740301, -2.758697], [6.798944, -2.596071], [6.8, -2.55], [6.841302, -2.359698], [7.003928, -2.301055], [7.05, -2.3], [7.17716, -2.290653], [7.251698, -2.234527], [7.287658, -2.089493], [7.29908, -1.813425], [7.3, -1.55], [7.296884, -1.168518], [7.278175, -0.944903], [7.229831, -0.837025], [7.137808, -0.802757], [7.05, -0.8], [6.859698, -0.758697], [6.801055, -0.596071], [6.8, -0.55], [6.841302, -0.359698], [7.003928, -0.301055], [7.05, -0.3], [7.17716, -0.290653], [7.251698, -0.234527], [7.287658, -0.089493], [7.29908, 0.186575], [7.3, 0.45], [7.296884, 0.831482], [7.278175, 1.055097], [7.229831, 1.162975], [7.137808, 1.197243], [7.05, 1.2], [6.859698, 1.241303], [6.801055, 1.403929], [6.8, 1.45], [6.841302, 1.640302], [7.003928, 1.698945], [7.05, 1.7], [7.198372, 1.716212], [7.272392, 1.798942], [7.297631, 1.999339], [7.3, 2.2], [7.291894, 2.496745], [7.250529, 2.644785], [7.15033, 2.695264], [7.05, 2.7], [6.859698, 2.658698], [6.801055, 2.496072], [6.8, 2.45], [6.783788, 2.301628], [6.701058, 2.227608], [6.500661, 2.202369], [6.3, 2.2], [6.003255, 2.208106], [5.855215, 2.249471], [5.804736, 2.34967], [5.8, 2.45], [5.841302, 2.640302], [6.003928, 2.698945], [6.05, 2.7], [6.240301, 2.741303], [6.298944, 2.903929], [6.3, 2.95], [6.258697, 3.140302], [6.096071, 3.198945], [6.05, 3.2], [5.859698, 3.158698], [5.801055, 2.996072], [5.8, 2.95], [5.758697, 2.759699], [5.596071, 2.701056], [5.55, 2.7], [5.359698, 2.658698], [5.301055, 2.496072], [5.3, 2.45], [5.258697, 2.259699], [5.096071, 2.201056], [5.05, 2.2], [4.859698, 2.241303], [4.801055, 2.403929], [4.8, 2.45], [4.758697, 2.640302], [4.596071, 2.698945], [4.55, 2.7], [4.359698, 2.741303], [4.301055, 2.903929], [4.3, 2.95], [4.283788, 3.098373], [4.201058, 3.172393], [4.000661, 3.197632], [3.8, 3.2], [3.3, 3.2], [3.3, 3.7], [3.8, 3.7], [7.3, 3.7], [7.3, 7.2], [3.8, 7.2], [3.8, 3.7], [3.3, 3.7], [3.3, 3.95], [3.296884, 4.331482], [3.278175, 4.555097], [3.229831, 4.662975], [3.137808, 4.697243], [3.05, 4.7], [2.901627, 4.716212], [2.827607, 4.798942], [2.802368, 4.999339], [2.8, 5.2], [2.808105, 5.496745], [2.84947, 5.644785], [2.949669, 5.695264], [3.05, 5.7], [3.198372, 5.716212], [3.272392, 5.798942], [3.297631, 5.999339], [3.3, 6.2], [3.291894, 6.496745], [3.250529, 6.644785], [3.15033, 6.695264], [3.05, 6.7], [2.859698, 6.741303], [2.801055, 6.903929], [2.8, 6.95], [2.8, 7.2], [-0.7, 7.2], [-0.7, 6.95], [-0.658698, 6.759699], [-0.496072, 6.701056], [-0.45, 6.7], [-0.301628, 6.683789], [-0.227608, 6.601059], [-0.202369, 6.400662], [-0.2, 6.2], [-0.191895, 5.903256], [-0.15053, 5.755216], [-0.050331, 5.704737], [0.05, 5.7], [0.17716, 5.690654], [0.251698, 5.634528], [0.287658, 5.489494], [0.29908, 5.213426], [0.3, 4.95], [0.296884, 4.568519], [0.278175, 4.344904], [0.229831, 4.237026], [0.137808, 4.202758], [0.05, 4.2], [-0.140302, 4.241303], [-0.198945, 4.403929], [-0.2, 4.45], [-0.241303, 4.640302], [-0.403929, 4.698945], [-0.45, 4.7], [-0.598373, 4.716212], [-0.672393, 4.798942], [-0.697632, 4.999339], [-0.7, 5.2], [-0.708106, 5.496745], [-0.749471, 5.644785], [-0.84967, 5.695264], [-0.95, 5.7], [-1.140302, 5.741303], [-1.198945, 5.903929], [-1.2, 5.95], [-1.241303, 6.140302], [-1.403929, 6.198945], [-1.45, 6.2], [-1.640302, 6.158698], [-1.698945, 5.996072], [-1.7, 5.95], [-1.658698, 5.759699], [-1.496072, 5.701056], [-1.45, 5.7], [-1.301628, 5.683789], [-1.227608, 5.601059], [-1.202369, 5.400662], [-1.2, 5.2], [-1.2, 4.7], [-2.2, 4.7], [-2.2, 5.2], [-2.208106, 5.496745], [-2.249471, 5.644785], [-2.34967, 5.695264], [-2.45, 5.7], [-2.640302, 5.741303], [-2.698945, 5.903929], [-2.7, 5.95], [-2.658698, 6.140302], [-2.496072, 6.198945], [-2.45, 6.2], [-2.259699, 6.241303], [-2.201056, 6.403929], [-2.2, 6.45], [-2.158698, 6.640302], [-1.996072, 6.698945], [-1.95, 6.7], [-1.759699, 6.741303], [-1.701056, 6.903929], [-1.7, 6.95], [-1.741303, 7.140302], [-1.903929, 7.198945], [-1.95, 7.2], [-2.140302, 7.158698], [-2.198945, 6.996072], [-2.2, 6.95], [-2.241303, 6.759699], [-2.403929, 6.701056], [-2.45, 6.7], [-2.640302, 6.658698], [-2.698945, 6.496072], [-2.7, 6.45], [-2.741303, 6.259699], [-2.903929, 6.201056], [-2.95, 6.2], [-3.140302, 6.158698], [-3.198945, 5.996072], [-3.2, 5.95], [-3.158698, 5.759699], [-2.996072, 5.701056], [-2.95, 5.7], [-2.801628, 5.683789], [-2.727608, 5.601059], [-2.702369, 5.400662], [-2.7, 5.2], [-2.691895, 4.903256], [-2.65053, 4.755216], [-2.550331, 4.704737], [-2.45, 4.7], [-2.301628, 4.683789], [-2.227608, 4.601059], [-2.202369, 4.400662], [-2.2, 4.2], [-2.191895, 3.903256], [-2.15053, 3.755216], [-2.050331, 3.704737], [-1.95, 3.7], [-1.759699, 3.658698], [-1.701056, 3.496072], [-1.7, 3.45], [-1.658698, 3.259699], [-1.496072, 3.201056], [-1.45, 3.2], [-1.259699, 3.158698], [-1.201056, 2.996072], [-1.2, 2.95], [-1.241303, 2.759699], [-1.403929, 2.701056], [-1.45, 2.7], [-1.640302, 2.658698], [-1.698945, 2.496072], [-1.7, 2.45], [-1.741303, 2.259699], [-1.903929, 2.201056], [-1.95, 2.2], [-2.140302, 2.241303], [-2.198945, 2.403929], [-2.2, 2.45], [-2.241303, 2.640302], [-2.403929, 2.698945], [-2.45, 2.7], [-2.577161, 2.709347], [-2.651699, 2.765473], [-2.687659, 2.910507], [-2.699081, 3.186575], [-2.7, 3.45], [-2.703116, 3.831482], [-2.721825, 4.055097], [-2.770169, 4.162975], [-2.862192, 4.197243], [-2.95, 4.2], [-3.098373, 4.183789], [-3.172393, 4.101059], [-3.197632, 3.900662], [-3.2, 3.7], [-3.2, 3.2], [-5.2, 3.2], [-5.2, 2.95], [-5.241303, 2.759699], [-5.403929, 2.701056], [-5.45, 2.7], [-5.640302, 2.741303], [-5.698945, 2.903929], [-5.7, 2.95], [-5.709347, 3.077161], [-5.765473, 3.151699], [-5.910507, 3.187659], [-6.186575, 3.199081], [-6.45, 3.2], [-7.2, 3.2], [-7.2, 1.2], [-6.7, 1.2], [-6.7, -0.8], [-6.95, -0.8], [-7.140302, -0.841302], [-7.198945, -1.003928], [-7.2, -1.05], [-7.7, -1.05], [-7.7, 3.7], [-7.2, 3.7], [-3.7, 3.7], [-3.7, 7.2], [-7.2, 7.2], [-7.2, 3.7], [-7.7, 3.7], [-7.7, 7.7], [7.8, 7.7]]]}, {"type": "polygon", "pos": [161.7625, 82.0375], "angle": 180.0, "polygons": [[[-1.298575, 2.548467], [-2.356908, 2.548467], [-2.854089, 2.499499], [-3.332164, 2.354476], [-3.77276, 2.118973], [-4.158946, 1.802038], [-4.475881, 1.415852], [-4.711384, 0.975256], [-4.856407, 0.497181], [-4.905375, 0.0], [-4.856407, -0.497181], [-4.711384, -0.975256], [-4.475881, -1.415852], [-4.158946, -1.802038], [-3.77276, -2.118973], [-3.332164, -2.354476], [-2.854089, -2.499499], [-2.356908, -2.548467], [-1.298575, -2.548467], [0.053975, -2.548467], [0.053975, -2.0193], [-0.351367, -1.973792], [-0.686858, -1.837267], [-0.9525, -1.609725], [-1.144764, -1.285522], [-1.260122, -0.859014], [-1.298575, -0.3302], [-1.256506, 0.207962], [-1.1303, 0.67945], [-0.926306, 1.082675], [-0.650875, 1.41605], [-0.307975, 1.677988], [0.098425, 1.8669], [0.560388, 1.9812], [1.069975, 2.0193], [1.114425, 1.35255], [0.619125, 1.30175], [0.174625, 1.152525], [-0.1778, 0.88265], [-0.396875, 0.4699], [-0.161925, 0.549275], [0.041275, 0.57785], [0.357981, 0.55245], [0.6223, 0.47625], [1.012825, 0.2032], [1.2319, -0.19685], [1.298575, -0.67945], [1.22555, -1.143], [1.000125, -1.5748], [0.612775, -1.895475], [0.3556, -1.988344], [0.053975, -2.0193], [0.053975, -2.548467], [1.298575, -2.548467], [2.356908, -2.548467], [2.85409, -2.499499], [3.332164, -2.354476], [3.772761, -2.118973], [4.158946, -1.802038], [4.475881, -1.415852], [4.711384, -0.975256], [4.856407, -0.497181], [4.905375, 0.0], [4.856407, 0.497181], [4.711384, 0.975256], [4.475881, 1.415852], [4.158946, 1.802038], [3.772761, 2.118973], [3.332164, 2.354476], [2.85409, 2.499499], [2.356908, 2.548467], [1.298575, 2.548467], [-1.298575, 2.548467]]]}, {"type": "polygon", "pos": [161.7625, 82.0375], "angle": 180.0, "polygons": [[[-0.060325, -0.06985], [-0.307975, -0.09525], [-0.517525, -0.1651], [-0.52705, -0.2794], [-0.530225, -0.40005], [-0.504825, -0.752475], [-0.415925, -1.0541], [-0.2413, -1.266825], [0.034925, -1.3462], [0.263525, -1.2827], [0.4191, -1.12395], [0.508, -0.9144], [0.536575, -0.69215], [0.403225, -0.231775], [0.220663, -0.110331], [-0.060325, -0.06985]]]}, {"type": "polygon", "pos": [161.7625, 102.0375], "angle": 180.0, "polygons": [[[-1.349375, 2.583392], [-2.407708, 2.583392], [-2.911703, 2.533753], [-3.396329, 2.386743], [-3.842964, 2.148012], [-4.234442, 1.826734], [-4.55572, 1.435256], [-4.794451, 0.988621], [-4.941461, 0.503995], [-4.9911, 0.0], [-4.941461, -0.503995], [-4.794451, -0.988621], [-4.55572, -1.435256], [-4.234442, -1.826734], [-3.842964, -2.148012], [-3.396329, -2.386743], [-2.911703, -2.533753], [-2.407708, -2.583392], [-1.349375, -2.583392], [-0.022225, -2.583392], [-0.022225, -2.054225], [-0.307181, -2.035969], [-0.56515, -1.9812], [-0.98425, -1.77165], [-1.254125, -1.4351], [-1.349375, -0.987425], [-1.31445, -0.697706], [-1.209675, -0.42545], [-1.030287, -0.177006], [-0.771525, 0.041275], [-1.006475, 0.238125], [-1.152525, 0.447675], [-1.254125, 0.904875], [-1.18745, 1.30175], [-0.974725, 1.673225], [-0.587375, 1.946275], [-0.3175, 2.027237], [0.009525, 2.054225], [0.516731, 1.984375], [0.90805, 1.774825], [1.158081, 1.4478], [1.241425, 1.025525], [1.208088, 0.754856], [1.108075, 0.48895], [0.936625, 0.246856], [0.688975, 0.047625], [0.997744, -0.17145], [1.20015, -0.409575], [1.312069, -0.669925], [1.349375, -0.955675], [1.27635, -1.343025], [1.0414, -1.69545], [0.619125, -1.952625], [0.328613, -2.028825], [-0.022225, -2.054225], [-0.022225, -2.583392], [1.349375, -2.583392], [2.407708, -2.583392], [2.911703, -2.533753], [3.39633, -2.386743], [3.842964, -2.148012], [4.234442, -1.826734], [4.55572, -1.435255], [4.794451, -0.988621], [4.941461, -0.503995], [4.9911, 0.0], [4.941461, 0.503995], [4.794451, 0.988621], [4.55572, 1.435255], [4.234442, 1.826734], [3.842964, 2.148012], [3.39633, 2.386743], [2.911703, 2.533753], [2.407708, 2.583392], [1.349375, 2.583392], [-1.349375, 2.583392]]]}, {"type": "polygon", "pos": [161.7625, 102.0375], "angle": 180.0, "polygons": [[[-0.003175, 1.406525], [-0.36195, 1.292225], [-0.517525, 0.955675], [-0.371475, 0.593725], [-0.169862, 0.45085], [0.142875, 0.301625], [0.422275, 0.6223], [0.504825, 0.962025], [0.3556, 1.2954], [-0.003175, 1.406525]]]}, {"type": "polygon", "pos": [161.7625, 102.0375], "angle": 180.0, "polygons": [[[0.612775, -0.942975], [0.56515, -0.720725], [0.41275, -0.5461], [0.142875, -0.38735], [-0.250825, -0.219075], [-0.523875, -0.5461], [-0.619125, -0.892175], [-0.43815, -1.27635], [-0.009525, -1.406525], [0.4445, -1.27], [0.612775, -0.942975]]]}]}, "fabrication": {"F": [{"thickness": 0.15, "svgpath": "M152.943452,101.80988L152.372023,101.80988M152.657738,101.80988L152.657738,100.80988L152.5625,100.952738L152.467261,101.047976L152.372023,101.095595M153.5625,100.80988L153.657738,100.80988L153.752976,100.8575L153.800595,100.905119L153.848214,101.000357L153.895833,101.190833L153.895833,101.428928L153.848214,101.619404L153.800595,101.714642L153.752976,101.762261L153.657738,101.80988L153.5625,101.80988L153.467261,101.762261L153.419642,101.714642L153.372023,101.619404L153.324404,101.428928L153.324404,101.190833L153.372023,101.000357L153.419642,100.905119L153.467261,100.8575L153.5625,100.80988M154.51488,100.80988L154.610119,100.80988L154.705357,100.8575L154.752976,100.905119L154.800595,101.000357L154.848214,101.190833L154.848214,101.428928L154.800595,101.619404L154.752976,101.714642L154.705357,101.762261L154.610119,101.80988L154.51488,101.80988L154.419642,101.762261L154.372023,101.714642L154.324404,101.619404L154.276785,101.428928L154.276785,101.190833L154.324404,101.000357L154.372023,100.905119L154.419642,100.8575L154.51488,100.80988M155.276785,101.143214L155.276785,101.80988M155.276785,101.238452L155.324404,101.190833L155.419642,101.143214L155.5625,101.143214L155.657738,101.190833L155.705357,101.286071L155.705357,101.80988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.979166,103.216071L153.955357,103.23988L153.883928,103.26369L153.836309,103.26369L153.76488,103.23988L153.717261,103.192261L153.693452,103.144642L153.669642,103.049404L153.669642,102.977976L153.693452,102.882738L153.717261,102.835119L153.76488,102.7875L153.836309,102.76369L153.883928,102.76369L153.955357,102.7875L153.979166,102.811309M154.217261,103.26369L154.3125,103.26369L154.360119,103.23988L154.383928,103.216071L154.431547,103.144642L154.455357,103.049404L154.455357,102.858928L154.431547,102.811309L154.407738,102.7875L154.360119,102.76369L154.26488,102.76369L154.217261,102.7875L154.193452,102.811309L154.169642,102.858928L154.169642,102.977976L154.193452,103.025595L154.217261,103.049404L154.26488,103.073214L154.360119,103.073214L154.407738,103.049404L154.431547,103.025595L154.455357,102.977976"}, {"type": "segment", "start": [153.0625, 102.4125], "end": [155.0625, 102.4125], "width": 0.1}, {"type": "segment", "start": [155.0625, 103.6625], "end": [153.0625, 103.6625], "width": 0.1}, {"type": "segment", "start": [153.0625, 103.6625], "end": [153.0625, 102.4125], "width": 0.1}, {"type": "segment", "start": [155.0625, 102.4125], "end": [155.0625, 103.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M127.56488,114.323214L127.56488,113.704166L127.945833,114.0375L127.945833,113.894642L127.993452,113.799404L128.041071,113.751785L128.136309,113.704166L128.374404,113.704166L128.469642,113.751785L128.517261,113.799404L128.56488,113.894642L128.56488,114.180357L128.517261,114.275595L128.469642,114.323214M127.56488,113.370833L127.56488,112.751785L127.945833,113.085119L127.945833,112.942261L127.993452,112.847023L128.041071,112.799404L128.136309,112.751785L128.374404,112.751785L128.469642,112.799404L128.517261,112.847023L128.56488,112.942261L128.56488,113.227976L128.517261,113.323214L128.469642,113.370833M127.56488,112.132738L127.56488,112.0375L127.6125,111.942261L127.660119,111.894642L127.755357,111.847023L127.945833,111.799404L128.183928,111.799404L128.374404,111.847023L128.469642,111.894642L128.517261,111.942261L128.56488,112.0375L128.56488,112.132738L128.517261,112.227976L128.469642,112.275595L128.374404,112.323214L128.183928,112.370833L127.945833,112.370833L127.755357,112.323214L127.660119,112.275595L127.6125,112.227976L127.56488,112.132738", "val": 1}, {"thickness": 0.08, "svgpath": "M129.98869,113.358928L129.750595,113.525595M129.98869,113.644642L129.48869,113.644642L129.48869,113.454166L129.5125,113.406547L129.536309,113.382738L129.583928,113.358928L129.655357,113.358928L129.702976,113.382738L129.726785,113.406547L129.750595,113.454166L129.750595,113.644642M129.536309,113.168452L129.5125,113.144642L129.48869,113.097023L129.48869,112.977976L129.5125,112.930357L129.536309,112.906547L129.583928,112.882738L129.631547,112.882738L129.702976,112.906547L129.98869,113.192261L129.98869,112.882738M129.48869,112.573214L129.48869,112.525595L129.5125,112.477976L129.536309,112.454166L129.583928,112.430357L129.679166,112.406547L129.798214,112.406547L129.893452,112.430357L129.941071,112.454166L129.96488,112.477976L129.98869,112.525595L129.98869,112.573214L129.96488,112.620833L129.941071,112.644642L129.893452,112.668452L129.798214,112.692261L129.679166,112.692261L129.583928,112.668452L129.536309,112.644642L129.5125,112.620833L129.48869,112.573214"}, {"type": "segment", "start": [130.3875, 114.0375], "end": [129.1375, 114.0375], "width": 0.1}, {"type": "segment", "start": [129.1375, 114.0375], "end": [129.1375, 112.0375], "width": 0.1}, {"type": "segment", "start": [130.3875, 112.0375], "end": [130.3875, 114.0375], "width": 0.1}, {"type": "segment", "start": [129.1375, 112.0375], "end": [130.3875, 112.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M134.03488,126.880357L134.03488,127.451785M134.03488,127.166071L133.03488,127.166071L133.177738,127.261309L133.272976,127.356547L133.320595,127.451785M133.03488,126.261309L133.03488,126.166071L133.0825,126.070833L133.130119,126.023214L133.225357,125.975595L133.415833,125.927976L133.653928,125.927976L133.844404,125.975595L133.939642,126.023214L133.987261,126.070833L134.03488,126.166071L134.03488,126.261309L133.987261,126.356547L133.939642,126.404166L133.844404,126.451785L133.653928,126.499404L133.415833,126.499404L133.225357,126.451785L133.130119,126.404166L133.0825,126.356547L133.03488,126.261309M133.368214,125.070833L134.03488,125.070833M133.368214,125.499404L133.892023,125.499404L133.987261,125.451785L134.03488,125.356547L134.03488,125.21369L133.987261,125.118452L133.939642,125.070833", "val": 1}, {"thickness": 0.08, "svgpath": "M135.441071,126.558928L135.46488,126.582738L135.48869,126.654166L135.48869,126.701785L135.46488,126.773214L135.417261,126.820833L135.369642,126.844642L135.274404,126.868452L135.202976,126.868452L135.107738,126.844642L135.060119,126.820833L135.0125,126.773214L134.98869,126.701785L134.98869,126.654166L135.0125,126.582738L135.036309,126.558928M135.48869,126.082738L135.48869,126.368452M135.48869,126.225595L134.98869,126.225595L135.060119,126.273214L135.107738,126.320833L135.131547,126.368452M135.48869,125.606547L135.48869,125.892261M135.48869,125.749404L134.98869,125.749404L135.060119,125.797023L135.107738,125.844642L135.131547,125.892261"}, {"type": "segment", "start": [134.6375, 127.2375], "end": [134.6375, 125.2375], "width": 0.1}, {"type": "segment", "start": [135.8875, 127.2375], "end": [134.6375, 127.2375], "width": 0.1}, {"type": "segment", "start": [135.8875, 125.2375], "end": [135.8875, 127.2375], "width": 0.1}, {"type": "segment", "start": [134.6375, 125.2375], "end": [135.8875, 125.2375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M138.976785,94.13988L139.595833,94.13988L139.2625,94.520833L139.405357,94.520833L139.500595,94.568452L139.548214,94.616071L139.595833,94.711309L139.595833,94.949404L139.548214,95.044642L139.500595,95.092261L139.405357,95.13988L139.119642,95.13988L139.024404,95.092261L138.976785,95.044642M139.929166,94.13988L140.548214,94.13988L140.21488,94.520833L140.357738,94.520833L140.452976,94.568452L140.500595,94.616071L140.548214,94.711309L140.548214,94.949404L140.500595,95.044642L140.452976,95.092261L140.357738,95.13988L140.072023,95.13988L139.976785,95.092261L139.929166,95.044642M141.167261,94.13988L141.2625,94.13988L141.357738,94.1875L141.405357,94.235119L141.452976,94.330357L141.500595,94.520833L141.500595,94.758928L141.452976,94.949404L141.405357,95.044642L141.357738,95.092261L141.2625,95.13988L141.167261,95.13988L141.072023,95.092261L141.024404,95.044642L140.976785,94.949404L140.929166,94.758928L140.929166,94.520833L140.976785,94.330357L141.024404,94.235119L141.072023,94.1875L141.167261,94.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,93.26369L140.0125,93.025595M139.893452,93.26369L139.893452,92.76369L140.083928,92.76369L140.131547,92.7875L140.155357,92.811309L140.179166,92.858928L140.179166,92.930357L140.155357,92.977976L140.131547,93.001785L140.083928,93.025595L139.893452,93.025595M140.631547,92.76369L140.393452,92.76369L140.369642,93.001785L140.393452,92.977976L140.441071,92.954166L140.560119,92.954166L140.607738,92.977976L140.631547,93.001785L140.655357,93.049404L140.655357,93.168452L140.631547,93.216071L140.607738,93.23988L140.560119,93.26369L140.441071,93.26369L140.393452,93.23988L140.369642,93.216071"}, {"type": "segment", "start": [141.2625, 92.4125], "end": [141.2625, 93.6625], "width": 0.1}, {"type": "segment", "start": [141.2625, 93.6625], "end": [139.2625, 93.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 93.6625], "end": [139.2625, 92.4125], "width": 0.1}, {"type": "segment", "start": [139.2625, 92.4125], "end": [141.2625, 92.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M152.976785,98.83988L153.595833,98.83988L153.2625,99.220833L153.405357,99.220833L153.500595,99.268452L153.548214,99.316071L153.595833,99.411309L153.595833,99.649404L153.548214,99.744642L153.500595,99.792261L153.405357,99.83988L153.119642,99.83988L153.024404,99.792261L152.976785,99.744642M153.929166,98.83988L154.548214,98.83988L154.21488,99.220833L154.357738,99.220833L154.452976,99.268452L154.500595,99.316071L154.548214,99.411309L154.548214,99.649404L154.500595,99.744642L154.452976,99.792261L154.357738,99.83988L154.072023,99.83988L153.976785,99.792261L153.929166,99.744642M155.167261,98.83988L155.2625,98.83988L155.357738,98.8875L155.405357,98.935119L155.452976,99.030357L155.500595,99.220833L155.500595,99.458928L155.452976,99.649404L155.405357,99.744642L155.357738,99.792261L155.2625,99.83988L155.167261,99.83988L155.072023,99.792261L155.024404,99.744642L154.976785,99.649404L154.929166,99.458928L154.929166,99.220833L154.976785,99.030357L155.024404,98.935119L155.072023,98.8875L155.167261,98.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,101.26369L153.774404,101.025595M153.655357,101.26369L153.655357,100.76369L153.845833,100.76369L153.893452,100.7875L153.917261,100.811309L153.941071,100.858928L153.941071,100.930357L153.917261,100.977976L153.893452,101.001785L153.845833,101.025595L153.655357,101.025595M154.417261,101.26369L154.131547,101.26369M154.274404,101.26369L154.274404,100.76369L154.226785,100.835119L154.179166,100.882738L154.131547,100.906547M154.869642,100.76369L154.631547,100.76369L154.607738,101.001785L154.631547,100.977976L154.679166,100.954166L154.798214,100.954166L154.845833,100.977976L154.869642,101.001785L154.893452,101.049404L154.893452,101.168452L154.869642,101.216071L154.845833,101.23988L154.798214,101.26369L154.679166,101.26369L154.631547,101.23988L154.607738,101.216071"}, {"type": "segment", "start": [155.2625, 100.4125], "end": [155.2625, 101.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 101.6625], "end": [153.2625, 100.4125], "width": 0.1}, {"type": "segment", "start": [153.2625, 100.4125], "end": [155.2625, 100.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 101.6625], "end": [153.2625, 101.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M139.572023,96.473214L139.572023,97.13988M139.333928,96.092261L139.095833,96.806547L139.71488,96.806547M140.095833,97.13988L140.095833,96.13988M140.191071,96.758928L140.476785,97.13988M140.476785,96.473214L140.095833,96.854166M140.810119,96.13988L141.476785,96.13988L141.048214,97.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,95.26369L140.0125,95.025595M139.893452,95.26369L139.893452,94.76369L140.083928,94.76369L140.131547,94.7875L140.155357,94.811309L140.179166,94.858928L140.179166,94.930357L140.155357,94.977976L140.131547,95.001785L140.083928,95.025595L139.893452,95.025595M140.607738,94.76369L140.5125,94.76369L140.46488,94.7875L140.441071,94.811309L140.393452,94.882738L140.369642,94.977976L140.369642,95.168452L140.393452,95.216071L140.417261,95.23988L140.46488,95.26369L140.560119,95.26369L140.607738,95.23988L140.631547,95.216071L140.655357,95.168452L140.655357,95.049404L140.631547,95.001785L140.607738,94.977976L140.560119,94.954166L140.46488,94.954166L140.417261,94.977976L140.393452,95.001785L140.369642,95.049404"}, {"type": "segment", "start": [141.2625, 95.6625], "end": [139.2625, 95.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 95.6625], "end": [139.2625, 94.4125], "width": 0.1}, {"type": "segment", "start": [139.2625, 94.4125], "end": [141.2625, 94.4125], "width": 0.1}, {"type": "segment", "start": [141.2625, 94.4125], "end": [141.2625, 95.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M152.976785,68.83988L153.595833,68.83988L153.2625,69.220833L153.405357,69.220833L153.500595,69.268452L153.548214,69.316071L153.595833,69.411309L153.595833,69.649404L153.548214,69.744642L153.500595,69.792261L153.405357,69.83988L153.119642,69.83988L153.024404,69.792261L152.976785,69.744642M153.929166,68.83988L154.548214,68.83988L154.21488,69.220833L154.357738,69.220833L154.452976,69.268452L154.500595,69.316071L154.548214,69.411309L154.548214,69.649404L154.500595,69.744642L154.452976,69.792261L154.357738,69.83988L154.072023,69.83988L153.976785,69.792261L153.929166,69.744642M155.167261,68.83988L155.2625,68.83988L155.357738,68.8875L155.405357,68.935119L155.452976,69.030357L155.500595,69.220833L155.500595,69.458928L155.452976,69.649404L155.405357,69.744642L155.357738,69.792261L155.2625,69.83988L155.167261,69.83988L155.072023,69.792261L155.024404,69.744642L154.976785,69.649404L154.929166,69.458928L154.929166,69.220833L154.976785,69.030357L155.024404,68.935119L155.072023,68.8875L155.167261,68.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M154.179166,71.26369L154.0125,71.025595M153.893452,71.26369L153.893452,70.76369L154.083928,70.76369L154.131547,70.7875L154.155357,70.811309L154.179166,70.858928L154.179166,70.930357L154.155357,70.977976L154.131547,71.001785L154.083928,71.025595L153.893452,71.025595M154.417261,71.26369L154.5125,71.26369L154.560119,71.23988L154.583928,71.216071L154.631547,71.144642L154.655357,71.049404L154.655357,70.858928L154.631547,70.811309L154.607738,70.7875L154.560119,70.76369L154.46488,70.76369L154.417261,70.7875L154.393452,70.811309L154.369642,70.858928L154.369642,70.977976L154.393452,71.025595L154.417261,71.049404L154.46488,71.073214L154.560119,71.073214L154.607738,71.049404L154.631547,71.025595L154.655357,70.977976"}, {"type": "segment", "start": [153.2625, 71.6625], "end": [153.2625, 70.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 70.4125], "end": [155.2625, 71.6625], "width": 0.1}, {"type": "segment", "start": [155.2625, 71.6625], "end": [153.2625, 71.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 70.4125], "end": [155.2625, 70.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.63488,85.156547L153.63488,85.727976M153.63488,85.442261L152.63488,85.442261L152.777738,85.5375L152.872976,85.632738L152.920595,85.727976M152.63488,84.5375L152.63488,84.442261L152.6825,84.347023L152.730119,84.299404L152.825357,84.251785L153.015833,84.204166L153.253928,84.204166L153.444404,84.251785L153.539642,84.299404L153.587261,84.347023L153.63488,84.442261L153.63488,84.5375L153.587261,84.632738L153.539642,84.680357L153.444404,84.727976L153.253928,84.775595L153.015833,84.775595L152.825357,84.727976L152.730119,84.680357L152.6825,84.632738L152.63488,84.5375M152.63488,83.585119L152.63488,83.48988L152.6825,83.394642L152.730119,83.347023L152.825357,83.299404L153.015833,83.251785L153.253928,83.251785L153.444404,83.299404L153.539642,83.347023L153.587261,83.394642L153.63488,83.48988L153.63488,83.585119L153.587261,83.680357L153.539642,83.727976L153.444404,83.775595L153.253928,83.823214L153.015833,83.823214L152.825357,83.775595L152.730119,83.727976L152.6825,83.680357L152.63488,83.585119M152.968214,82.823214L153.63488,82.823214M153.063452,82.823214L153.015833,82.775595L152.968214,82.680357L152.968214,82.5375L153.015833,82.442261L153.111071,82.394642L153.63488,82.394642", "val": 1}, {"thickness": 0.08, "svgpath": "M155.041071,84.120833L155.06488,84.144642L155.08869,84.216071L155.08869,84.26369L155.06488,84.335119L155.017261,84.382738L154.969642,84.406547L154.874404,84.430357L154.802976,84.430357L154.707738,84.406547L154.660119,84.382738L154.6125,84.335119L154.58869,84.26369L154.58869,84.216071L154.6125,84.144642L154.636309,84.120833M154.58869,83.954166L154.58869,83.620833L155.08869,83.835119"}, {"type": "segment", "start": [154.2375, 83.0375], "end": [155.4875, 83.0375], "width": 0.1}, {"type": "segment", "start": [155.4875, 83.0375], "end": [155.4875, 85.0375], "width": 0.1}, {"type": "segment", "start": [155.4875, 85.0375], "end": [154.2375, 85.0375], "width": 0.1}, {"type": "segment", "start": [154.2375, 85.0375], "end": [154.2375, 83.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M139.572023,86.473214L139.572023,87.13988M139.333928,86.092261L139.095833,86.806547L139.71488,86.806547M140.095833,87.13988L140.095833,86.13988M140.191071,86.758928L140.476785,87.13988M140.476785,86.473214L140.095833,86.854166M140.810119,86.13988L141.476785,86.13988L141.048214,87.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,85.26369L140.0125,85.025595M139.893452,85.26369L139.893452,84.76369L140.083928,84.76369L140.131547,84.7875L140.155357,84.811309L140.179166,84.858928L140.179166,84.930357L140.155357,84.977976L140.131547,85.001785L140.083928,85.025595L139.893452,85.025595M140.607738,84.930357L140.607738,85.26369M140.48869,84.73988L140.369642,85.097023L140.679166,85.097023"}, {"type": "segment", "start": [141.2625, 85.6625], "end": [139.2625, 85.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 84.4125], "end": [141.2625, 84.4125], "width": 0.1}, {"type": "segment", "start": [139.2625, 85.6625], "end": [139.2625, 84.4125], "width": 0.1}, {"type": "segment", "start": [141.2625, 84.4125], "end": [141.2625, 85.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M155.932261,134.077738L156.0275,134.030119L156.217976,134.030119L156.313214,134.077738L156.360833,134.172976L156.360833,134.553928L156.313214,134.649166L156.217976,134.696785L156.0275,134.696785L155.932261,134.649166L155.884642,134.553928L155.884642,134.45869L156.360833,134.363452M155.50369,134.077738L155.408452,134.030119L155.217976,134.030119L155.122738,134.077738L155.075119,134.172976L155.075119,134.220595L155.122738,134.315833L155.217976,134.363452L155.360833,134.363452L155.456071,134.411071L155.50369,134.506309L155.50369,134.553928L155.456071,134.649166L155.360833,134.696785L155.217976,134.696785L155.122738,134.649166M154.646547,134.696785L154.646547,133.696785M154.646547,134.649166L154.551309,134.696785L154.360833,134.696785L154.265595,134.649166L154.217976,134.601547L154.170357,134.506309L154.170357,134.220595L154.217976,134.125357L154.265595,134.077738L154.360833,134.030119L154.551309,134.030119L154.646547,134.077738M153.837023,135.030119L153.217976,135.030119L153.551309,134.649166L153.408452,134.649166L153.313214,134.601547L153.265595,134.553928L153.217976,134.45869L153.217976,134.220595L153.265595,134.125357L153.313214,134.077738L153.408452,134.030119L153.694166,134.030119L153.789404,134.077738L153.837023,134.125357M152.837023,134.93488L152.789404,134.9825L152.694166,135.030119L152.456071,135.030119L152.360833,134.9825L152.313214,134.93488L152.265595,134.839642L152.265595,134.744404L152.313214,134.601547L152.884642,134.030119L152.265595,134.030119M151.837023,134.411071L151.075119,134.411071M150.170357,134.077738L150.265595,134.030119L150.456071,134.030119L150.551309,134.077738L150.598928,134.125357L150.646547,134.220595L150.646547,134.506309L150.598928,134.601547L150.551309,134.649166L150.456071,134.696785L150.265595,134.696785L150.170357,134.649166M149.837023,135.030119L149.217976,135.030119L149.551309,134.649166L149.408452,134.649166L149.313214,134.601547L149.265595,134.553928L149.217976,134.45869L149.217976,134.220595L149.265595,134.125357L149.313214,134.077738L149.408452,134.030119L149.694166,134.030119L149.789404,134.077738L149.837023,134.125357M148.789404,134.411071L148.0275,134.411071M147.598928,134.077738L147.50369,134.030119L147.313214,134.030119L147.217976,134.077738L147.170357,134.172976L147.170357,134.220595L147.217976,134.315833L147.313214,134.363452L147.456071,134.363452L147.551309,134.411071L147.598928,134.506309L147.598928,134.553928L147.551309,134.649166L147.456071,134.696785L147.313214,134.696785L147.217976,134.649166M146.313214,134.696785L146.313214,134.030119M146.741785,134.696785L146.741785,134.172976L146.694166,134.077738L146.598928,134.030119L146.456071,134.030119L146.360833,134.077738L146.313214,134.125357M145.837023,134.696785L145.837023,133.696785M145.837023,134.649166L145.741785,134.696785L145.551309,134.696785L145.456071,134.649166L145.408452,134.601547L145.360833,134.506309L145.360833,134.220595L145.408452,134.125357L145.456071,134.077738L145.551309,134.030119L145.741785,134.030119L145.837023,134.077738M144.551309,134.077738L144.646547,134.030119L144.837023,134.030119L144.932261,134.077738L144.97988,134.172976L144.97988,134.553928L144.932261,134.649166L144.837023,134.696785L144.646547,134.696785L144.551309,134.649166L144.50369,134.553928L144.50369,134.45869L144.97988,134.363452M144.075119,134.030119L144.075119,134.696785M144.075119,134.506309L144.0275,134.601547L143.97988,134.649166L143.884642,134.696785L143.789404,134.696785M143.456071,134.030119L143.456071,134.696785M143.456071,134.601547L143.408452,134.649166L143.313214,134.696785L143.170357,134.696785L143.075119,134.649166L143.0275,134.553928L143.0275,134.030119M143.0275,134.553928L142.97988,134.649166L142.884642,134.696785L142.741785,134.696785L142.646547,134.649166L142.598928,134.553928L142.598928,134.030119M142.122738,134.030119L142.122738,134.696785M142.122738,135.030119L142.170357,134.9825L142.122738,134.93488L142.075119,134.9825L142.122738,135.030119L142.122738,134.93488M141.646547,134.696785L141.646547,134.030119M141.646547,134.601547L141.598928,134.649166L141.50369,134.696785L141.360833,134.696785L141.265595,134.649166L141.217976,134.553928L141.217976,134.030119M140.741785,134.030119L140.741785,134.696785M140.741785,135.030119L140.789404,134.9825L140.741785,134.93488L140.694166,134.9825L140.741785,135.030119L140.741785,134.93488", "val": 1}, {"thickness": 0.15, "svgpath": "M148.654404,128.045119L148.654404,127.235595L148.606785,127.140357L148.559166,127.092738L148.463928,127.045119L148.273452,127.045119L148.178214,127.092738L148.130595,127.140357L148.082976,127.235595L148.082976,128.045119M147.082976,127.045119L147.654404,127.045119M147.36869,127.045119L147.36869,128.045119L147.463928,127.902261L147.559166,127.807023L147.654404,127.759404"}, {"thickness": 0.15, "svgpath": "M153.572023,87.173214L153.572023,87.83988M153.333928,86.792261L153.095833,87.506547L153.71488,87.506547M154.095833,87.83988L154.095833,86.83988M154.191071,87.458928L154.476785,87.83988M154.476785,87.173214L154.095833,87.554166M154.810119,86.83988L155.476785,86.83988L155.048214,87.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,89.26369L153.774404,89.025595M153.655357,89.26369L153.655357,88.76369L153.845833,88.76369L153.893452,88.7875L153.917261,88.811309L153.941071,88.858928L153.941071,88.930357L153.917261,88.977976L153.893452,89.001785L153.845833,89.025595L153.655357,89.025595M154.417261,89.26369L154.131547,89.26369M154.274404,89.26369L154.274404,88.76369L154.226785,88.835119L154.179166,88.882738L154.131547,88.906547M154.845833,88.930357L154.845833,89.26369M154.726785,88.73988L154.607738,89.097023L154.917261,89.097023"}, {"type": "segment", "start": [155.2625, 88.4125], "end": [155.2625, 89.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 88.4125], "end": [155.2625, 88.4125], "width": 0.1}, {"type": "segment", "start": [153.2625, 89.6625], "end": [153.2625, 88.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 89.6625], "end": [153.2625, 89.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M138.976785,102.13988L139.595833,102.13988L139.2625,102.520833L139.405357,102.520833L139.500595,102.568452L139.548214,102.616071L139.595833,102.711309L139.595833,102.949404L139.548214,103.044642L139.500595,103.092261L139.405357,103.13988L139.119642,103.13988L139.024404,103.092261L138.976785,103.044642M139.929166,102.13988L140.548214,102.13988L140.21488,102.520833L140.357738,102.520833L140.452976,102.568452L140.500595,102.616071L140.548214,102.711309L140.548214,102.949404L140.500595,103.044642L140.452976,103.092261L140.357738,103.13988L140.072023,103.13988L139.976785,103.092261L139.929166,103.044642M141.167261,102.13988L141.2625,102.13988L141.357738,102.1875L141.405357,102.235119L141.452976,102.330357L141.500595,102.520833L141.500595,102.758928L141.452976,102.949404L141.405357,103.044642L141.357738,103.092261L141.2625,103.13988L141.167261,103.13988L141.072023,103.092261L141.024404,103.044642L140.976785,102.949404L140.929166,102.758928L140.929166,102.520833L140.976785,102.330357L141.024404,102.235119L141.072023,102.1875L141.167261,102.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,101.26369L140.0125,101.025595M139.893452,101.26369L139.893452,100.76369L140.083928,100.76369L140.131547,100.7875L140.155357,100.811309L140.179166,100.858928L140.179166,100.930357L140.155357,100.977976L140.131547,101.001785L140.083928,101.025595L139.893452,101.025595M140.345833,100.76369L140.679166,100.76369L140.46488,101.26369"}, {"type": "segment", "start": [141.2625, 101.6625], "end": [139.2625, 101.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 100.4125], "end": [141.2625, 100.4125], "width": 0.1}, {"type": "segment", "start": [139.2625, 101.6625], "end": [139.2625, 100.4125], "width": 0.1}, {"type": "segment", "start": [141.2625, 100.4125], "end": [141.2625, 101.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M152.976785,78.83988L153.595833,78.83988L153.2625,79.220833L153.405357,79.220833L153.500595,79.268452L153.548214,79.316071L153.595833,79.411309L153.595833,79.649404L153.548214,79.744642L153.500595,79.792261L153.405357,79.83988L153.119642,79.83988L153.024404,79.792261L152.976785,79.744642M153.929166,78.83988L154.548214,78.83988L154.21488,79.220833L154.357738,79.220833L154.452976,79.268452L154.500595,79.316071L154.548214,79.411309L154.548214,79.649404L154.500595,79.744642L154.452976,79.792261L154.357738,79.83988L154.072023,79.83988L153.976785,79.792261L153.929166,79.744642M155.167261,78.83988L155.2625,78.83988L155.357738,78.8875L155.405357,78.935119L155.452976,79.030357L155.500595,79.220833L155.500595,79.458928L155.452976,79.649404L155.405357,79.744642L155.357738,79.792261L155.2625,79.83988L155.167261,79.83988L155.072023,79.792261L155.024404,79.744642L154.976785,79.649404L154.929166,79.458928L154.929166,79.220833L154.976785,79.030357L155.024404,78.935119L155.072023,78.8875L155.167261,78.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,81.26369L153.774404,81.025595M153.655357,81.26369L153.655357,80.76369L153.845833,80.76369L153.893452,80.7875L153.917261,80.811309L153.941071,80.858928L153.941071,80.930357L153.917261,80.977976L153.893452,81.001785L153.845833,81.025595L153.655357,81.025595M154.417261,81.26369L154.131547,81.26369M154.274404,81.26369L154.274404,80.76369L154.226785,80.835119L154.179166,80.882738L154.131547,80.906547M154.893452,81.26369L154.607738,81.26369M154.750595,81.26369L154.750595,80.76369L154.702976,80.835119L154.655357,80.882738L154.607738,80.906547"}, {"type": "segment", "start": [155.2625, 81.6625], "end": [153.2625, 81.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 81.6625], "end": [153.2625, 80.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 80.4125], "end": [155.2625, 81.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 80.4125], "end": [155.2625, 80.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M159.522023,90.98988L159.522023,89.98988L159.902976,89.98988L159.998214,90.0375L160.045833,90.085119L160.093452,90.180357L160.093452,90.323214L160.045833,90.418452L159.998214,90.466071L159.902976,90.51369L159.522023,90.51369M160.807738,89.98988L160.807738,90.704166L160.760119,90.847023L160.66488,90.942261L160.522023,90.98988L160.426785,90.98988M161.283928,90.608928L162.045833,90.608928M162.474404,90.085119L162.522023,90.0375L162.617261,89.98988L162.855357,89.98988L162.950595,90.0375L162.998214,90.085119L163.045833,90.180357L163.045833,90.275595L162.998214,90.418452L162.426785,90.98988L163.045833,90.98988M163.902976,90.323214L163.902976,90.98988M163.66488,89.942261L163.426785,90.656547L164.045833,90.656547M164.379166,90.085119L164.426785,90.0375L164.522023,89.98988L164.760119,89.98988L164.855357,90.0375L164.902976,90.085119L164.950595,90.180357L164.950595,90.275595L164.902976,90.418452L164.331547,90.98988L164.950595,90.98988", "val": 1}, {"thickness": 0.15, "svgpath": "M161.700595,92.48988L162.272023,92.48988M161.986309,93.48988L161.986309,92.48988M162.510119,92.48988L163.176785,92.48988L162.748214,93.48988"}, {"type": "segment", "start": [167.2125, 89.5375], "end": [156.7125, 89.5375], "width": 0.1}, {"type": "segment", "start": [168.7125, 90.0375], "end": [168.7125, 94.0375], "width": 0.1}, {"type": "segment", "start": [167.2125, 94.5375], "end": [167.2125, 89.5375], "width": 0.1}, {"type": "segment", "start": [156.7125, 89.5375], "end": [156.7125, 94.5375], "width": 0.1}, {"type": "segment", "start": [167.2125, 90.0375], "end": [168.7125, 90.0375], "width": 0.1}, {"type": "segment", "start": [168.7125, 94.0375], "end": [167.2125, 94.0375], "width": 0.1}, {"type": "segment", "start": [156.7125, 94.5375], "end": [167.2125, 94.5375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M135.002976,83.085119L135.002976,84.085119L134.622023,84.085119L134.526785,84.0375L134.479166,83.98988L134.431547,83.894642L134.431547,83.751785L134.479166,83.656547L134.526785,83.608928L134.622023,83.561309L135.002976,83.561309M133.717261,84.085119L133.717261,83.370833L133.76488,83.227976L133.860119,83.132738L134.002976,83.085119L134.098214,83.085119M133.241071,83.466071L132.479166,83.466071M132.050595,83.98988L132.002976,84.0375L131.907738,84.085119L131.669642,84.085119L131.574404,84.0375L131.526785,83.98988L131.479166,83.894642L131.479166,83.799404L131.526785,83.656547L132.098214,83.085119L131.479166,83.085119M130.622023,83.751785L130.622023,83.085119M130.860119,84.132738L131.098214,83.418452L130.479166,83.418452M130.145833,83.98988L130.098214,84.0375L130.002976,84.085119L129.76488,84.085119L129.669642,84.0375L129.622023,83.98988L129.574404,83.894642L129.574404,83.799404L129.622023,83.656547L130.193452,83.085119L129.574404,83.085119", "val": 1}, {"thickness": 0.15, "svgpath": "M132.824404,81.585119L132.252976,81.585119M132.53869,80.585119L132.53869,81.585119M131.967261,81.48988L131.919642,81.5375L131.824404,81.585119L131.586309,81.585119L131.491071,81.5375L131.443452,81.48988L131.395833,81.394642L131.395833,81.299404L131.443452,81.156547L132.01488,80.585119L131.395833,80.585119"}, {"type": "segment", "start": [137.8125, 79.5375], "end": [127.3125, 79.5375], "width": 0.1}, {"type": "segment", "start": [127.3125, 84.0375], "end": [125.8125, 84.0375], "width": 0.1}, {"type": "segment", "start": [127.3125, 79.5375], "end": [127.3125, 84.5375], "width": 0.1}, {"type": "segment", "start": [125.8125, 80.0375], "end": [127.3125, 80.0375], "width": 0.1}, {"type": "segment", "start": [125.8125, 84.0375], "end": [125.8125, 80.0375], "width": 0.1}, {"type": "segment", "start": [127.3125, 84.5375], "end": [137.8125, 84.5375], "width": 0.1}, {"type": "segment", "start": [137.8125, 84.5375], "end": [137.8125, 79.5375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M159.522023,70.98988L159.522023,69.98988L159.902976,69.98988L159.998214,70.0375L160.045833,70.085119L160.093452,70.180357L160.093452,70.323214L160.045833,70.418452L159.998214,70.466071L159.902976,70.51369L159.522023,70.51369M160.807738,69.98988L160.807738,70.704166L160.760119,70.847023L160.66488,70.942261L160.522023,70.98988L160.426785,70.98988M161.283928,70.608928L162.045833,70.608928M162.474404,70.085119L162.522023,70.0375L162.617261,69.98988L162.855357,69.98988L162.950595,70.0375L162.998214,70.085119L163.045833,70.180357L163.045833,70.275595L162.998214,70.418452L162.426785,70.98988L163.045833,70.98988M163.902976,70.323214L163.902976,70.98988M163.66488,69.942261L163.426785,70.656547L164.045833,70.656547M164.379166,70.085119L164.426785,70.0375L164.522023,69.98988L164.760119,69.98988L164.855357,70.0375L164.902976,70.085119L164.950595,70.180357L164.950595,70.275595L164.902976,70.418452L164.331547,70.98988L164.950595,70.98988", "val": 1}, {"thickness": 0.15, "svgpath": "M161.700595,72.48988L162.272023,72.48988M161.986309,73.48988L161.986309,72.48988M163.081547,72.48988L162.605357,72.48988L162.557738,72.966071L162.605357,72.918452L162.700595,72.870833L162.93869,72.870833L163.033928,72.918452L163.081547,72.966071L163.129166,73.061309L163.129166,73.299404L163.081547,73.394642L163.033928,73.442261L162.93869,73.48988L162.700595,73.48988L162.605357,73.442261L162.557738,73.394642"}, {"type": "segment", "start": [167.2125, 74.5375], "end": [167.2125, 69.5375], "width": 0.1}, {"type": "segment", "start": [156.7125, 69.5375], "end": [156.7125, 74.5375], "width": 0.1}, {"type": "segment", "start": [167.2125, 69.5375], "end": [156.7125, 69.5375], "width": 0.1}, {"type": "segment", "start": [168.7125, 70.0375], "end": [168.7125, 74.0375], "width": 0.1}, {"type": "segment", "start": [156.7125, 74.5375], "end": [167.2125, 74.5375], "width": 0.1}, {"type": "segment", "start": [168.7125, 74.0375], "end": [167.2125, 74.0375], "width": 0.1}, {"type": "segment", "start": [167.2125, 70.0375], "end": [168.7125, 70.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M162.176785,115.13988L162.795833,115.13988L162.4625,115.520833L162.605357,115.520833L162.700595,115.568452L162.748214,115.616071L162.795833,115.711309L162.795833,115.949404L162.748214,116.044642L162.700595,116.092261L162.605357,116.13988L162.319642,116.13988L162.224404,116.092261L162.176785,116.044642M163.129166,115.13988L163.748214,115.13988L163.41488,115.520833L163.557738,115.520833L163.652976,115.568452L163.700595,115.616071L163.748214,115.711309L163.748214,115.949404L163.700595,116.044642L163.652976,116.092261L163.557738,116.13988L163.272023,116.13988L163.176785,116.092261L163.129166,116.044642M164.367261,115.13988L164.4625,115.13988L164.557738,115.1875L164.605357,115.235119L164.652976,115.330357L164.700595,115.520833L164.700595,115.758928L164.652976,115.949404L164.605357,116.044642L164.557738,116.092261L164.4625,116.13988L164.367261,116.13988L164.272023,116.092261L164.224404,116.044642L164.176785,115.949404L164.129166,115.758928L164.129166,115.520833L164.176785,115.330357L164.224404,115.235119L164.272023,115.1875L164.367261,115.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M163.141071,114.26369L162.974404,114.025595M162.855357,114.26369L162.855357,113.76369L163.045833,113.76369L163.093452,113.7875L163.117261,113.811309L163.141071,113.858928L163.141071,113.930357L163.117261,113.977976L163.093452,114.001785L163.045833,114.025595L162.855357,114.025595M163.331547,113.811309L163.355357,113.7875L163.402976,113.76369L163.522023,113.76369L163.569642,113.7875L163.593452,113.811309L163.617261,113.858928L163.617261,113.906547L163.593452,113.977976L163.307738,114.26369L163.617261,114.26369M164.093452,114.26369L163.807738,114.26369M163.950595,114.26369L163.950595,113.76369L163.902976,113.835119L163.855357,113.882738L163.807738,113.906547"}, {"type": "segment", "start": [162.4625, 114.6625], "end": [162.4625, 113.4125], "width": 0.1}, {"type": "segment", "start": [162.4625, 113.4125], "end": [164.4625, 113.4125], "width": 0.1}, {"type": "segment", "start": [164.4625, 114.6625], "end": [162.4625, 114.6625], "width": 0.1}, {"type": "segment", "start": [164.4625, 113.4125], "end": [164.4625, 114.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.572023,77.173214L153.572023,77.83988M153.333928,76.792261L153.095833,77.506547L153.71488,77.506547M154.095833,77.83988L154.095833,76.83988M154.191071,77.458928L154.476785,77.83988M154.476785,77.173214L154.095833,77.554166M154.810119,76.83988L155.476785,76.83988L155.048214,77.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,79.26369L153.774404,79.025595M153.655357,79.26369L153.655357,78.76369L153.845833,78.76369L153.893452,78.7875L153.917261,78.811309L153.941071,78.858928L153.941071,78.930357L153.917261,78.977976L153.893452,79.001785L153.845833,79.025595L153.655357,79.025595M154.417261,79.26369L154.131547,79.26369M154.274404,79.26369L154.274404,78.76369L154.226785,78.835119L154.179166,78.882738L154.131547,78.906547M154.607738,78.811309L154.631547,78.7875L154.679166,78.76369L154.798214,78.76369L154.845833,78.7875L154.869642,78.811309L154.893452,78.858928L154.893452,78.906547L154.869642,78.977976L154.583928,79.26369L154.893452,79.26369"}, {"type": "segment", "start": [153.2625, 78.4125], "end": [155.2625, 78.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 79.6625], "end": [153.2625, 79.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 79.6625], "end": [153.2625, 78.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 78.4125], "end": [155.2625, 79.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M141.79488,91.156547L141.79488,91.727976M141.79488,91.442261L140.79488,91.442261L140.937738,91.5375L141.032976,91.632738L141.080595,91.727976M140.79488,90.5375L140.79488,90.442261L140.8425,90.347023L140.890119,90.299404L140.985357,90.251785L141.175833,90.204166L141.413928,90.204166L141.604404,90.251785L141.699642,90.299404L141.747261,90.347023L141.79488,90.442261L141.79488,90.5375L141.747261,90.632738L141.699642,90.680357L141.604404,90.727976L141.413928,90.775595L141.175833,90.775595L140.985357,90.727976L140.890119,90.680357L140.8425,90.632738L140.79488,90.5375M140.79488,89.585119L140.79488,89.48988L140.8425,89.394642L140.890119,89.347023L140.985357,89.299404L141.175833,89.251785L141.413928,89.251785L141.604404,89.299404L141.699642,89.347023L141.747261,89.394642L141.79488,89.48988L141.79488,89.585119L141.747261,89.680357L141.699642,89.727976L141.604404,89.775595L141.413928,89.823214L141.175833,89.823214L140.985357,89.775595L140.890119,89.727976L140.8425,89.680357L140.79488,89.585119M141.128214,88.823214L141.79488,88.823214M141.223452,88.823214L141.175833,88.775595L141.128214,88.680357L141.128214,88.5375L141.175833,88.442261L141.271071,88.394642L141.79488,88.394642", "val": 1}, {"thickness": 0.08, "svgpath": "M139.841071,90.120833L139.86488,90.144642L139.88869,90.216071L139.88869,90.26369L139.86488,90.335119L139.817261,90.382738L139.769642,90.406547L139.674404,90.430357L139.602976,90.430357L139.507738,90.406547L139.460119,90.382738L139.4125,90.335119L139.38869,90.26369L139.38869,90.216071L139.4125,90.144642L139.436309,90.120833M139.38869,89.954166L139.38869,89.644642L139.579166,89.811309L139.579166,89.73988L139.602976,89.692261L139.626785,89.668452L139.674404,89.644642L139.793452,89.644642L139.841071,89.668452L139.86488,89.692261L139.88869,89.73988L139.88869,89.882738L139.86488,89.930357L139.841071,89.954166"}, {"type": "segment", "start": [139.0375, 91.0375], "end": [139.0375, 89.0375], "width": 0.1}, {"type": "segment", "start": [140.2875, 91.0375], "end": [139.0375, 91.0375], "width": 0.1}, {"type": "segment", "start": [139.0375, 89.0375], "end": [140.2875, 89.0375], "width": 0.1}, {"type": "segment", "start": [140.2875, 89.0375], "end": [140.2875, 91.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M141.79488,81.156547L141.79488,81.727976M141.79488,81.442261L140.79488,81.442261L140.937738,81.5375L141.032976,81.632738L141.080595,81.727976M140.79488,80.5375L140.79488,80.442261L140.8425,80.347023L140.890119,80.299404L140.985357,80.251785L141.175833,80.204166L141.413928,80.204166L141.604404,80.251785L141.699642,80.299404L141.747261,80.347023L141.79488,80.442261L141.79488,80.5375L141.747261,80.632738L141.699642,80.680357L141.604404,80.727976L141.413928,80.775595L141.175833,80.775595L140.985357,80.727976L140.890119,80.680357L140.8425,80.632738L140.79488,80.5375M140.79488,79.585119L140.79488,79.48988L140.8425,79.394642L140.890119,79.347023L140.985357,79.299404L141.175833,79.251785L141.413928,79.251785L141.604404,79.299404L141.699642,79.347023L141.747261,79.394642L141.79488,79.48988L141.79488,79.585119L141.747261,79.680357L141.699642,79.727976L141.604404,79.775595L141.413928,79.823214L141.175833,79.823214L140.985357,79.775595L140.890119,79.727976L140.8425,79.680357L140.79488,79.585119M141.128214,78.823214L141.79488,78.823214M141.223452,78.823214L141.175833,78.775595L141.128214,78.680357L141.128214,78.5375L141.175833,78.442261L141.271071,78.394642L141.79488,78.394642", "val": 1}, {"thickness": 0.08, "svgpath": "M139.841071,80.120833L139.86488,80.144642L139.88869,80.216071L139.88869,80.26369L139.86488,80.335119L139.817261,80.382738L139.769642,80.406547L139.674404,80.430357L139.602976,80.430357L139.507738,80.406547L139.460119,80.382738L139.4125,80.335119L139.38869,80.26369L139.38869,80.216071L139.4125,80.144642L139.436309,80.120833M139.436309,79.930357L139.4125,79.906547L139.38869,79.858928L139.38869,79.73988L139.4125,79.692261L139.436309,79.668452L139.483928,79.644642L139.531547,79.644642L139.602976,79.668452L139.88869,79.954166L139.88869,79.644642"}, {"type": "segment", "start": [140.2875, 81.0375], "end": [139.0375, 81.0375], "width": 0.1}, {"type": "segment", "start": [140.2875, 79.0375], "end": [140.2875, 81.0375], "width": 0.1}, {"type": "segment", "start": [139.0375, 81.0375], "end": [139.0375, 79.0375], "width": 0.1}, {"type": "segment", "start": [139.0375, 79.0375], "end": [140.2875, 79.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M135.46488,123.085119L136.274404,123.085119L136.369642,123.0375L136.417261,122.98988L136.46488,122.894642L136.46488,122.704166L136.417261,122.608928L136.369642,122.561309L136.274404,122.51369L135.46488,122.51369M136.417261,122.085119L136.46488,121.942261L136.46488,121.704166L136.417261,121.608928L136.369642,121.561309L136.274404,121.51369L136.179166,121.51369L136.083928,121.561309L136.036309,121.608928L135.98869,121.704166L135.941071,121.894642L135.893452,121.98988L135.845833,122.0375L135.750595,122.085119L135.655357,122.085119L135.560119,122.0375L135.5125,121.98988L135.46488,121.894642L135.46488,121.656547L135.5125,121.51369M136.46488,120.51369L135.98869,120.847023M136.46488,121.085119L135.46488,121.085119L135.46488,120.704166L135.5125,120.608928L135.560119,120.561309L135.655357,120.51369L135.798214,120.51369L135.893452,120.561309L135.941071,120.608928L135.98869,120.704166L135.98869,121.085119M136.560119,120.323214L136.560119,119.561309M135.941071,118.98988L135.98869,118.847023L136.036309,118.799404L136.131547,118.751785L136.274404,118.751785L136.369642,118.799404L136.417261,118.847023L136.46488,118.942261L136.46488,119.323214L135.46488,119.323214L135.46488,118.98988L135.5125,118.894642L135.560119,118.847023L135.655357,118.799404L135.750595,118.799404L135.845833,118.847023L135.893452,118.894642L135.941071,118.98988L135.941071,119.323214M135.46488,118.466071L135.46488,117.894642M136.46488,118.180357L135.46488,118.180357M136.46488,117.561309L135.46488,117.561309L136.46488,116.98988L135.46488,116.98988", "val": 1}, {"thickness": 0.15, "svgpath": "M128.917261,121.370833L128.96488,121.227976L128.96488,120.98988L128.917261,120.894642L128.869642,120.847023L128.774404,120.799404L128.679166,120.799404L128.583928,120.847023L128.536309,120.894642L128.48869,120.98988L128.441071,121.180357L128.393452,121.275595L128.345833,121.323214L128.250595,121.370833L128.155357,121.370833L128.060119,121.323214L128.0125,121.275595L127.96488,121.180357L127.96488,120.942261L128.0125,120.799404M127.96488,120.466071L128.96488,120.227976L128.250595,120.0375L128.96488,119.847023L127.96488,119.608928M128.96488,118.704166L128.96488,119.275595M128.96488,118.98988L127.96488,118.98988L128.107738,119.085119L128.202976,119.180357L128.250595,119.275595"}, {"type": "segment", "start": [133.2625, 118.0375], "end": [134.2625, 119.0375], "width": 0.1}, {"type": "segment", "start": [130.2625, 121.0375], "end": [130.2625, 119.0375], "width": 0.1}, {"type": "segment", "start": [133.2625, 122.0375], "end": [131.2625, 122.0375], "width": 0.1}, {"type": "segment", "start": [129.6625, 118.8375], "end": [129.6625, 121.2375], "width": 0.1}, {"type": "segment", "start": [130.6625, 116.8375], "end": [130.6625, 117.8375], "width": 0.1}, {"type": "segment", "start": [133.8625, 116.8375], "end": [133.8625, 117.8375], "width": 0.1}, {"type": "segment", "start": [134.3625, 121.7375], "end": [134.3625, 123.2375], "width": 0.1}, {"type": "segment", "start": [133.4625, 117.4375], "end": [131.0625, 117.4375], "width": 0.1}, {"type": "segment", "start": [134.3625, 123.2375], "end": [133.8625, 123.2375], "width": 0.1}, {"type": "segment", "start": [129.6625, 121.2375], "end": [131.0625, 122.6375], "width": 0.1}, {"type": "segment", "start": [130.1625, 121.7375], "end": [130.1625, 123.2375], "width": 0.1}, {"type": "segment", "start": [133.8625, 123.2375], "end": [133.8625, 122.2375], "width": 0.1}, {"type": "segment", "start": [134.3625, 118.3375], "end": [134.3625, 116.8375], "width": 0.1}, {"type": "segment", "start": [130.1625, 118.3375], "end": [130.1625, 116.8375], "width": 0.1}, {"type": "segment", "start": [130.6625, 123.2375], "end": [130.6625, 122.2375], "width": 0.1}, {"type": "segment", "start": [134.3625, 122.7375], "end": [133.8625, 122.7375], "width": 0.1}, {"type": "segment", "start": [134.2625, 119.0375], "end": [134.2625, 121.0375], "width": 0.1}, {"type": "segment", "start": [131.2625, 118.0375], "end": [133.2625, 118.0375], "width": 0.1}, {"type": "segment", "start": [131.0625, 122.6375], "end": [133.4625, 122.6375], "width": 0.1}, {"type": "segment", "start": [134.2625, 121.0375], "end": [133.2625, 122.0375], "width": 0.1}, {"type": "segment", "start": [130.1625, 123.2375], "end": [130.6625, 123.2375], "width": 0.1}, {"type": "segment", "start": [131.0625, 117.4375], "end": [129.6625, 118.8375], "width": 0.1}, {"type": "segment", "start": [134.8625, 118.8375], "end": [133.4625, 117.4375], "width": 0.1}, {"type": "segment", "start": [133.4625, 122.6375], "end": [134.8625, 121.2375], "width": 0.1}, {"type": "segment", "start": [130.1625, 117.3375], "end": [130.6625, 117.3375], "width": 0.1}, {"type": "segment", "start": [134.8625, 121.2375], "end": [134.8625, 118.8375], "width": 0.1}, {"type": "segment", "start": [134.3625, 116.8375], "end": [133.8625, 116.8375], "width": 0.1}, {"type": "segment", "start": [130.1625, 116.8375], "end": [130.6625, 116.8375], "width": 0.1}, {"type": "segment", "start": [130.1625, 122.7375], "end": [130.6625, 122.7375], "width": 0.1}, {"type": "segment", "start": [134.3625, 117.3375], "end": [133.8625, 117.3375], "width": 0.1}, {"type": "segment", "start": [130.2625, 119.0375], "end": [131.2625, 118.0375], "width": 0.1}, {"type": "segment", "start": [131.2625, 122.0375], "end": [130.2625, 121.0375], "width": 0.1}, {"type": "circle", "start": [132.2625, 120.0375], "radius": 1.0, "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.63488,95.156547L153.63488,95.727976M153.63488,95.442261L152.63488,95.442261L152.777738,95.5375L152.872976,95.632738L152.920595,95.727976M152.63488,94.5375L152.63488,94.442261L152.6825,94.347023L152.730119,94.299404L152.825357,94.251785L153.015833,94.204166L153.253928,94.204166L153.444404,94.251785L153.539642,94.299404L153.587261,94.347023L153.63488,94.442261L153.63488,94.5375L153.587261,94.632738L153.539642,94.680357L153.444404,94.727976L153.253928,94.775595L153.015833,94.775595L152.825357,94.727976L152.730119,94.680357L152.6825,94.632738L152.63488,94.5375M152.63488,93.585119L152.63488,93.48988L152.6825,93.394642L152.730119,93.347023L152.825357,93.299404L153.015833,93.251785L153.253928,93.251785L153.444404,93.299404L153.539642,93.347023L153.587261,93.394642L153.63488,93.48988L153.63488,93.585119L153.587261,93.680357L153.539642,93.727976L153.444404,93.775595L153.253928,93.823214L153.015833,93.823214L152.825357,93.775595L152.730119,93.727976L152.6825,93.680357L152.63488,93.585119M152.968214,92.823214L153.63488,92.823214M153.063452,92.823214L153.015833,92.775595L152.968214,92.680357L152.968214,92.5375L153.015833,92.442261L153.111071,92.394642L153.63488,92.394642", "val": 1}, {"thickness": 0.08, "svgpath": "M155.041071,94.120833L155.06488,94.144642L155.08869,94.216071L155.08869,94.26369L155.06488,94.335119L155.017261,94.382738L154.969642,94.406547L154.874404,94.430357L154.802976,94.430357L154.707738,94.406547L154.660119,94.382738L154.6125,94.335119L154.58869,94.26369L154.58869,94.216071L154.6125,94.144642L154.636309,94.120833M154.802976,93.835119L154.779166,93.882738L154.755357,93.906547L154.707738,93.930357L154.683928,93.930357L154.636309,93.906547L154.6125,93.882738L154.58869,93.835119L154.58869,93.73988L154.6125,93.692261L154.636309,93.668452L154.683928,93.644642L154.707738,93.644642L154.755357,93.668452L154.779166,93.692261L154.802976,93.73988L154.802976,93.835119L154.826785,93.882738L154.850595,93.906547L154.898214,93.930357L154.993452,93.930357L155.041071,93.906547L155.06488,93.882738L155.08869,93.835119L155.08869,93.73988L155.06488,93.692261L155.041071,93.668452L154.993452,93.644642L154.898214,93.644642L154.850595,93.668452L154.826785,93.692261L154.802976,93.73988"}, {"type": "segment", "start": [155.4875, 93.0375], "end": [155.4875, 95.0375], "width": 0.1}, {"type": "segment", "start": [155.4875, 95.0375], "end": [154.2375, 95.0375], "width": 0.1}, {"type": "segment", "start": [154.2375, 95.0375], "end": [154.2375, 93.0375], "width": 0.1}, {"type": "segment", "start": [154.2375, 93.0375], "end": [155.4875, 93.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M157.96488,123.085119L158.774404,123.085119L158.869642,123.0375L158.917261,122.98988L158.96488,122.894642L158.96488,122.704166L158.917261,122.608928L158.869642,122.561309L158.774404,122.51369L157.96488,122.51369M158.917261,122.085119L158.96488,121.942261L158.96488,121.704166L158.917261,121.608928L158.869642,121.561309L158.774404,121.51369L158.679166,121.51369L158.583928,121.561309L158.536309,121.608928L158.48869,121.704166L158.441071,121.894642L158.393452,121.98988L158.345833,122.0375L158.250595,122.085119L158.155357,122.085119L158.060119,122.0375L158.0125,121.98988L157.96488,121.894642L157.96488,121.656547L158.0125,121.51369M158.96488,120.51369L158.48869,120.847023M158.96488,121.085119L157.96488,121.085119L157.96488,120.704166L158.0125,120.608928L158.060119,120.561309L158.155357,120.51369L158.298214,120.51369L158.393452,120.561309L158.441071,120.608928L158.48869,120.704166L158.48869,121.085119M159.060119,120.323214L159.060119,119.561309M158.441071,118.98988L158.48869,118.847023L158.536309,118.799404L158.631547,118.751785L158.774404,118.751785L158.869642,118.799404L158.917261,118.847023L158.96488,118.942261L158.96488,119.323214L157.96488,119.323214L157.96488,118.98988L158.0125,118.894642L158.060119,118.847023L158.155357,118.799404L158.250595,118.799404L158.345833,118.847023L158.393452,118.894642L158.441071,118.98988L158.441071,119.323214M157.96488,118.466071L157.96488,117.894642M158.96488,118.180357L157.96488,118.180357M158.96488,117.561309L157.96488,117.561309L158.96488,116.98988L157.96488,116.98988", "val": 1}, {"thickness": 0.15, "svgpath": "M166.417261,121.370833L166.46488,121.227976L166.46488,120.98988L166.417261,120.894642L166.369642,120.847023L166.274404,120.799404L166.179166,120.799404L166.083928,120.847023L166.036309,120.894642L165.98869,120.98988L165.941071,121.180357L165.893452,121.275595L165.845833,121.323214L165.750595,121.370833L165.655357,121.370833L165.560119,121.323214L165.5125,121.275595L165.46488,121.180357L165.46488,120.942261L165.5125,120.799404M165.46488,120.466071L166.46488,120.227976L165.750595,120.0375L166.46488,119.847023L165.46488,119.608928M165.560119,119.275595L165.5125,119.227976L165.46488,119.132738L165.46488,118.894642L165.5125,118.799404L165.560119,118.751785L165.655357,118.704166L165.750595,118.704166L165.893452,118.751785L166.46488,119.323214L166.46488,118.704166"}, {"type": "segment", "start": [160.2625, 121.0375], "end": [160.2625, 119.0375], "width": 0.1}, {"type": "segment", "start": [163.2625, 118.0375], "end": [164.2625, 119.0375], "width": 0.1}, {"type": "segment", "start": [164.3625, 118.3375], "end": [164.3625, 116.8375], "width": 0.1}, {"type": "segment", "start": [160.1625, 123.2375], "end": [160.6625, 123.2375], "width": 0.1}, {"type": "segment", "start": [164.3625, 123.2375], "end": [163.8625, 123.2375], "width": 0.1}, {"type": "segment", "start": [160.2625, 119.0375], "end": [161.2625, 118.0375], "width": 0.1}, {"type": "segment", "start": [164.3625, 122.7375], "end": [163.8625, 122.7375], "width": 0.1}, {"type": "segment", "start": [160.1625, 117.3375], "end": [160.6625, 117.3375], "width": 0.1}, {"type": "segment", "start": [164.3625, 117.3375], "end": [163.8625, 117.3375], "width": 0.1}, {"type": "segment", "start": [164.8625, 118.8375], "end": [163.4625, 117.4375], "width": 0.1}, {"type": "segment", "start": [164.3625, 116.8375], "end": [163.8625, 116.8375], "width": 0.1}, {"type": "segment", "start": [160.1625, 116.8375], "end": [160.6625, 116.8375], "width": 0.1}, {"type": "segment", "start": [161.2625, 122.0375], "end": [160.2625, 121.0375], "width": 0.1}, {"type": "segment", "start": [163.4625, 122.6375], "end": [164.8625, 121.2375], "width": 0.1}, {"type": "segment", "start": [163.8625, 123.2375], "end": [163.8625, 122.2375], "width": 0.1}, {"type": "segment", "start": [159.6625, 118.8375], "end": [159.6625, 121.2375], "width": 0.1}, {"type": "segment", "start": [161.2625, 118.0375], "end": [163.2625, 118.0375], "width": 0.1}, {"type": "segment", "start": [161.0625, 122.6375], "end": [163.4625, 122.6375], "width": 0.1}, {"type": "segment", "start": [159.6625, 121.2375], "end": [161.0625, 122.6375], "width": 0.1}, {"type": "segment", "start": [160.6625, 123.2375], "end": [160.6625, 122.2375], "width": 0.1}, {"type": "segment", "start": [164.2625, 119.0375], "end": [164.2625, 121.0375], "width": 0.1}, {"type": "segment", "start": [160.6625, 116.8375], "end": [160.6625, 117.8375], "width": 0.1}, {"type": "segment", "start": [160.1625, 118.3375], "end": [160.1625, 116.8375], "width": 0.1}, {"type": "segment", "start": [163.2625, 122.0375], "end": [161.2625, 122.0375], "width": 0.1}, {"type": "segment", "start": [160.1625, 121.7375], "end": [160.1625, 123.2375], "width": 0.1}, {"type": "segment", "start": [164.2625, 121.0375], "end": [163.2625, 122.0375], "width": 0.1}, {"type": "segment", "start": [161.0625, 117.4375], "end": [159.6625, 118.8375], "width": 0.1}, {"type": "segment", "start": [163.8625, 116.8375], "end": [163.8625, 117.8375], "width": 0.1}, {"type": "segment", "start": [164.3625, 121.7375], "end": [164.3625, 123.2375], "width": 0.1}, {"type": "segment", "start": [163.4625, 117.4375], "end": [161.0625, 117.4375], "width": 0.1}, {"type": "segment", "start": [164.8625, 121.2375], "end": [164.8625, 118.8375], "width": 0.1}, {"type": "segment", "start": [160.1625, 122.7375], "end": [160.6625, 122.7375], "width": 0.1}, {"type": "circle", "start": [162.2625, 120.0375], "radius": 1.0, "width": 0.1}, {"thickness": 0.15, "svgpath": "M141.79488,71.956547L141.79488,72.527976M141.79488,72.242261L140.79488,72.242261L140.937738,72.3375L141.032976,72.432738L141.080595,72.527976M140.79488,71.3375L140.79488,71.242261L140.8425,71.147023L140.890119,71.099404L140.985357,71.051785L141.175833,71.004166L141.413928,71.004166L141.604404,71.051785L141.699642,71.099404L141.747261,71.147023L141.79488,71.242261L141.79488,71.3375L141.747261,71.432738L141.699642,71.480357L141.604404,71.527976L141.413928,71.575595L141.175833,71.575595L140.985357,71.527976L140.890119,71.480357L140.8425,71.432738L140.79488,71.3375M140.79488,70.385119L140.79488,70.28988L140.8425,70.194642L140.890119,70.147023L140.985357,70.099404L141.175833,70.051785L141.413928,70.051785L141.604404,70.099404L141.699642,70.147023L141.747261,70.194642L141.79488,70.28988L141.79488,70.385119L141.747261,70.480357L141.699642,70.527976L141.604404,70.575595L141.413928,70.623214L141.175833,70.623214L140.985357,70.575595L140.890119,70.527976L140.8425,70.480357L140.79488,70.385119M141.128214,69.623214L141.79488,69.623214M141.223452,69.623214L141.175833,69.575595L141.128214,69.480357L141.128214,69.3375L141.175833,69.242261L141.271071,69.194642L141.79488,69.194642", "val": 1}, {"thickness": 0.08, "svgpath": "M139.841071,70.920833L139.86488,70.944642L139.88869,71.016071L139.88869,71.06369L139.86488,71.135119L139.817261,71.182738L139.769642,71.206547L139.674404,71.230357L139.602976,71.230357L139.507738,71.206547L139.460119,71.182738L139.4125,71.135119L139.38869,71.06369L139.38869,71.016071L139.4125,70.944642L139.436309,70.920833M139.88869,70.444642L139.88869,70.730357M139.88869,70.5875L139.38869,70.5875L139.460119,70.635119L139.507738,70.682738L139.531547,70.730357"}, {"type": "segment", "start": [139.0375, 69.8375], "end": [140.2875, 69.8375], "width": 0.1}, {"type": "segment", "start": [139.0375, 71.8375], "end": [139.0375, 69.8375], "width": 0.1}, {"type": "segment", "start": [140.2875, 69.8375], "end": [140.2875, 71.8375], "width": 0.1}, {"type": "segment", "start": [140.2875, 71.8375], "end": [139.0375, 71.8375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M159.522023,100.98988L159.522023,99.98988L159.902976,99.98988L159.998214,100.0375L160.045833,100.085119L160.093452,100.180357L160.093452,100.323214L160.045833,100.418452L159.998214,100.466071L159.902976,100.51369L159.522023,100.51369M160.807738,99.98988L160.807738,100.704166L160.760119,100.847023L160.66488,100.942261L160.522023,100.98988L160.426785,100.98988M161.283928,100.608928L162.045833,100.608928M162.474404,100.085119L162.522023,100.0375L162.617261,99.98988L162.855357,99.98988L162.950595,100.0375L162.998214,100.085119L163.045833,100.180357L163.045833,100.275595L162.998214,100.418452L162.426785,100.98988L163.045833,100.98988M163.902976,100.323214L163.902976,100.98988M163.66488,99.942261L163.426785,100.656547L164.045833,100.656547M164.379166,100.085119L164.426785,100.0375L164.522023,99.98988L164.760119,99.98988L164.855357,100.0375L164.902976,100.085119L164.950595,100.180357L164.950595,100.275595L164.902976,100.418452L164.331547,100.98988L164.950595,100.98988", "val": 1}, {"thickness": 0.15, "svgpath": "M161.700595,102.48988L162.272023,102.48988M161.986309,103.48988L161.986309,102.48988M162.748214,102.918452L162.652976,102.870833L162.605357,102.823214L162.557738,102.727976L162.557738,102.680357L162.605357,102.585119L162.652976,102.5375L162.748214,102.48988L162.93869,102.48988L163.033928,102.5375L163.081547,102.585119L163.129166,102.680357L163.129166,102.727976L163.081547,102.823214L163.033928,102.870833L162.93869,102.918452L162.748214,102.918452L162.652976,102.966071L162.605357,103.01369L162.557738,103.108928L162.557738,103.299404L162.605357,103.394642L162.652976,103.442261L162.748214,103.48988L162.93869,103.48988L163.033928,103.442261L163.081547,103.394642L163.129166,103.299404L163.129166,103.108928L163.081547,103.01369L163.033928,102.966071L162.93869,102.918452"}, {"type": "segment", "start": [167.2125, 100.0375], "end": [168.7125, 100.0375], "width": 0.1}, {"type": "segment", "start": [168.7125, 104.0375], "end": [167.2125, 104.0375], "width": 0.1}, {"type": "segment", "start": [167.2125, 99.5375], "end": [156.7125, 99.5375], "width": 0.1}, {"type": "segment", "start": [167.2125, 104.5375], "end": [167.2125, 99.5375], "width": 0.1}, {"type": "segment", "start": [156.7125, 99.5375], "end": [156.7125, 104.5375], "width": 0.1}, {"type": "segment", "start": [156.7125, 104.5375], "end": [167.2125, 104.5375], "width": 0.1}, {"type": "segment", "start": [168.7125, 100.0375], "end": [168.7125, 104.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M149.344959,79.173214L149.344959,79.83988M149.106864,78.792261L148.868769,79.506547L149.487816,79.506547M149.868769,79.83988L149.868769,78.83988M149.964007,79.458928L150.249721,79.83988M150.249721,79.173214L149.868769,79.554166M150.583055,78.83988L151.249721,78.83988L150.82115,79.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M149.714007,81.26369L149.54734,81.025595M149.428293,81.26369L149.428293,80.76369L149.618769,80.76369L149.666388,80.7875L149.690197,80.811309L149.714007,80.858928L149.714007,80.930357L149.690197,80.977976L149.666388,81.001785L149.618769,81.025595L149.428293,81.025595M150.190197,81.26369L149.904483,81.26369M150.04734,81.26369L150.04734,80.76369L149.999721,80.835119L149.952102,80.882738L149.904483,80.906547M150.475912,80.977976L150.428293,80.954166L150.404483,80.930357L150.380674,80.882738L150.380674,80.858928L150.404483,80.811309L150.428293,80.7875L150.475912,80.76369L150.57115,80.76369L150.618769,80.7875L150.642578,80.811309L150.666388,80.858928L150.666388,80.882738L150.642578,80.930357L150.618769,80.954166L150.57115,80.977976L150.475912,80.977976L150.428293,81.001785L150.404483,81.025595L150.380674,81.073214L150.380674,81.168452L150.404483,81.216071L150.428293,81.23988L150.475912,81.26369L150.57115,81.26369L150.618769,81.23988L150.642578,81.216071L150.666388,81.168452L150.666388,81.073214L150.642578,81.025595L150.618769,81.001785L150.57115,80.977976"}, {"type": "segment", "start": [151.035436, 81.6625], "end": [149.035436, 81.6625], "width": 0.1}, {"type": "segment", "start": [149.035436, 81.6625], "end": [149.035436, 80.4125], "width": 0.1}, {"type": "segment", "start": [151.035436, 80.4125], "end": [151.035436, 81.6625], "width": 0.1}, {"type": "segment", "start": [149.035436, 80.4125], "end": [151.035436, 80.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.572023,97.173214L153.572023,97.83988M153.333928,96.792261L153.095833,97.506547L153.71488,97.506547M154.095833,97.83988L154.095833,96.83988M154.191071,97.458928L154.476785,97.83988M154.476785,97.173214L154.095833,97.554166M154.810119,96.83988L155.476785,96.83988L155.048214,97.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,99.26369L153.774404,99.025595M153.655357,99.26369L153.655357,98.76369L153.845833,98.76369L153.893452,98.7875L153.917261,98.811309L153.941071,98.858928L153.941071,98.930357L153.917261,98.977976L153.893452,99.001785L153.845833,99.025595L153.655357,99.025595M154.417261,99.26369L154.131547,99.26369M154.274404,99.26369L154.274404,98.76369L154.226785,98.835119L154.179166,98.882738L154.131547,98.906547M154.845833,98.76369L154.750595,98.76369L154.702976,98.7875L154.679166,98.811309L154.631547,98.882738L154.607738,98.977976L154.607738,99.168452L154.631547,99.216071L154.655357,99.23988L154.702976,99.26369L154.798214,99.26369L154.845833,99.23988L154.869642,99.216071L154.893452,99.168452L154.893452,99.049404L154.869642,99.001785L154.845833,98.977976L154.798214,98.954166L154.702976,98.954166L154.655357,98.977976L154.631547,99.001785L154.607738,99.049404"}, {"type": "segment", "start": [155.2625, 98.4125], "end": [155.2625, 99.6625], "width": 0.1}, {"type": "segment", "start": [155.2625, 99.6625], "end": [153.2625, 99.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 98.4125], "end": [155.2625, 98.4125], "width": 0.1}, {"type": "segment", "start": [153.2625, 99.6625], "end": [153.2625, 98.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M135.002976,103.085119L135.002976,104.085119L134.622023,104.085119L134.526785,104.0375L134.479166,103.98988L134.431547,103.894642L134.431547,103.751785L134.479166,103.656547L134.526785,103.608928L134.622023,103.561309L135.002976,103.561309M133.717261,104.085119L133.717261,103.370833L133.76488,103.227976L133.860119,103.132738L134.002976,103.085119L134.098214,103.085119M133.241071,103.466071L132.479166,103.466071M132.050595,103.98988L132.002976,104.0375L131.907738,104.085119L131.669642,104.085119L131.574404,104.0375L131.526785,103.98988L131.479166,103.894642L131.479166,103.799404L131.526785,103.656547L132.098214,103.085119L131.479166,103.085119M130.622023,103.751785L130.622023,103.085119M130.860119,104.132738L131.098214,103.418452L130.479166,103.418452M130.145833,103.98988L130.098214,104.0375L130.002976,104.085119L129.76488,104.085119L129.669642,104.0375L129.622023,103.98988L129.574404,103.894642L129.574404,103.799404L129.622023,103.656547L130.193452,103.085119L129.574404,103.085119", "val": 1}, {"thickness": 0.15, "svgpath": "M132.824404,101.585119L132.252976,101.585119M132.53869,100.585119L132.53869,101.585119M131.491071,101.251785L131.491071,100.585119M131.729166,101.632738L131.967261,100.918452L131.348214,100.918452"}, {"type": "segment", "start": [125.8125, 104.0375], "end": [125.8125, 100.0375], "width": 0.1}, {"type": "segment", "start": [137.8125, 99.5375], "end": [127.3125, 99.5375], "width": 0.1}, {"type": "segment", "start": [137.8125, 104.5375], "end": [137.8125, 99.5375], "width": 0.1}, {"type": "segment", "start": [127.3125, 99.5375], "end": [127.3125, 104.5375], "width": 0.1}, {"type": "segment", "start": [127.3125, 104.0375], "end": [125.8125, 104.0375], "width": 0.1}, {"type": "segment", "start": [127.3125, 104.5375], "end": [137.8125, 104.5375], "width": 0.1}, {"type": "segment", "start": [125.8125, 100.0375], "end": [127.3125, 100.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M159.522023,80.98988L159.522023,79.98988L159.902976,79.98988L159.998214,80.0375L160.045833,80.085119L160.093452,80.180357L160.093452,80.323214L160.045833,80.418452L159.998214,80.466071L159.902976,80.51369L159.522023,80.51369M160.807738,79.98988L160.807738,80.704166L160.760119,80.847023L160.66488,80.942261L160.522023,80.98988L160.426785,80.98988M161.283928,80.608928L162.045833,80.608928M162.474404,80.085119L162.522023,80.0375L162.617261,79.98988L162.855357,79.98988L162.950595,80.0375L162.998214,80.085119L163.045833,80.180357L163.045833,80.275595L162.998214,80.418452L162.426785,80.98988L163.045833,80.98988M163.902976,80.323214L163.902976,80.98988M163.66488,79.942261L163.426785,80.656547L164.045833,80.656547M164.379166,80.085119L164.426785,80.0375L164.522023,79.98988L164.760119,79.98988L164.855357,80.0375L164.902976,80.085119L164.950595,80.180357L164.950595,80.275595L164.902976,80.418452L164.331547,80.98988L164.950595,80.98988", "val": 1}, {"thickness": 0.15, "svgpath": "M161.700595,82.48988L162.272023,82.48988M161.986309,83.48988L161.986309,82.48988M163.033928,82.48988L162.843452,82.48988L162.748214,82.5375L162.700595,82.585119L162.605357,82.727976L162.557738,82.918452L162.557738,83.299404L162.605357,83.394642L162.652976,83.442261L162.748214,83.48988L162.93869,83.48988L163.033928,83.442261L163.081547,83.394642L163.129166,83.299404L163.129166,83.061309L163.081547,82.966071L163.033928,82.918452L162.93869,82.870833L162.748214,82.870833L162.652976,82.918452L162.605357,82.966071L162.557738,83.061309"}, {"type": "segment", "start": [156.7125, 84.5375], "end": [167.2125, 84.5375], "width": 0.1}, {"type": "segment", "start": [168.7125, 80.0375], "end": [168.7125, 84.0375], "width": 0.1}, {"type": "segment", "start": [168.7125, 84.0375], "end": [167.2125, 84.0375], "width": 0.1}, {"type": "segment", "start": [156.7125, 79.5375], "end": [156.7125, 84.5375], "width": 0.1}, {"type": "segment", "start": [167.2125, 80.0375], "end": [168.7125, 80.0375], "width": 0.1}, {"type": "segment", "start": [167.2125, 79.5375], "end": [156.7125, 79.5375], "width": 0.1}, {"type": "segment", "start": [167.2125, 84.5375], "end": [167.2125, 79.5375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M152.976785,88.83988L153.595833,88.83988L153.2625,89.220833L153.405357,89.220833L153.500595,89.268452L153.548214,89.316071L153.595833,89.411309L153.595833,89.649404L153.548214,89.744642L153.500595,89.792261L153.405357,89.83988L153.119642,89.83988L153.024404,89.792261L152.976785,89.744642M153.929166,88.83988L154.548214,88.83988L154.21488,89.220833L154.357738,89.220833L154.452976,89.268452L154.500595,89.316071L154.548214,89.411309L154.548214,89.649404L154.500595,89.744642L154.452976,89.792261L154.357738,89.83988L154.072023,89.83988L153.976785,89.792261L153.929166,89.744642M155.167261,88.83988L155.2625,88.83988L155.357738,88.8875L155.405357,88.935119L155.452976,89.030357L155.500595,89.220833L155.500595,89.458928L155.452976,89.649404L155.405357,89.744642L155.357738,89.792261L155.2625,89.83988L155.167261,89.83988L155.072023,89.792261L155.024404,89.744642L154.976785,89.649404L154.929166,89.458928L154.929166,89.220833L154.976785,89.030357L155.024404,88.935119L155.072023,88.8875L155.167261,88.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,91.26369L153.774404,91.025595M153.655357,91.26369L153.655357,90.76369L153.845833,90.76369L153.893452,90.7875L153.917261,90.811309L153.941071,90.858928L153.941071,90.930357L153.917261,90.977976L153.893452,91.001785L153.845833,91.025595L153.655357,91.025595M154.417261,91.26369L154.131547,91.26369M154.274404,91.26369L154.274404,90.76369L154.226785,90.835119L154.179166,90.882738L154.131547,90.906547M154.583928,90.76369L154.893452,90.76369L154.726785,90.954166L154.798214,90.954166L154.845833,90.977976L154.869642,91.001785L154.893452,91.049404L154.893452,91.168452L154.869642,91.216071L154.845833,91.23988L154.798214,91.26369L154.655357,91.26369L154.607738,91.23988L154.583928,91.216071"}, {"type": "segment", "start": [155.2625, 90.4125], "end": [155.2625, 91.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 91.6625], "end": [153.2625, 90.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 91.6625], "end": [153.2625, 91.6625], "width": 0.1}, {"type": "segment", "start": [153.2625, 90.4125], "end": [155.2625, 90.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M139.572023,77.273214L139.572023,77.93988M139.333928,76.892261L139.095833,77.606547L139.71488,77.606547M140.095833,77.93988L140.095833,76.93988M140.191071,77.558928L140.476785,77.93988M140.476785,77.273214L140.095833,77.654166M140.810119,76.93988L141.476785,76.93988L141.048214,77.93988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,76.06369L140.0125,75.825595M139.893452,76.06369L139.893452,75.56369L140.083928,75.56369L140.131547,75.5875L140.155357,75.611309L140.179166,75.658928L140.179166,75.730357L140.155357,75.777976L140.131547,75.801785L140.083928,75.825595L139.893452,75.825595M140.369642,75.611309L140.393452,75.5875L140.441071,75.56369L140.560119,75.56369L140.607738,75.5875L140.631547,75.611309L140.655357,75.658928L140.655357,75.706547L140.631547,75.777976L140.345833,76.06369L140.655357,76.06369"}, {"type": "segment", "start": [139.2625, 75.2125], "end": [141.2625, 75.2125], "width": 0.1}, {"type": "segment", "start": [139.2625, 76.4625], "end": [139.2625, 75.2125], "width": 0.1}, {"type": "segment", "start": [141.2625, 75.2125], "end": [141.2625, 76.4625], "width": 0.1}, {"type": "segment", "start": [141.2625, 76.4625], "end": [139.2625, 76.4625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M146.500595,103.48988L146.500595,102.48988M146.500595,102.966071L147.072023,102.966071M147.072023,103.48988L147.072023,102.48988M147.500595,102.585119L147.548214,102.5375L147.643452,102.48988L147.881547,102.48988L147.976785,102.5375L148.024404,102.585119L148.072023,102.680357L148.072023,102.775595L148.024404,102.918452L147.452976,103.48988L148.072023,103.48988"}, {"thickness": 0.15, "svgpath": "M135.002976,93.085119L135.002976,94.085119L134.622023,94.085119L134.526785,94.0375L134.479166,93.98988L134.431547,93.894642L134.431547,93.751785L134.479166,93.656547L134.526785,93.608928L134.622023,93.561309L135.002976,93.561309M133.717261,94.085119L133.717261,93.370833L133.76488,93.227976L133.860119,93.132738L134.002976,93.085119L134.098214,93.085119M133.241071,93.466071L132.479166,93.466071M132.050595,93.98988L132.002976,94.0375L131.907738,94.085119L131.669642,94.085119L131.574404,94.0375L131.526785,93.98988L131.479166,93.894642L131.479166,93.799404L131.526785,93.656547L132.098214,93.085119L131.479166,93.085119M130.622023,93.751785L130.622023,93.085119M130.860119,94.132738L131.098214,93.418452L130.479166,93.418452M130.145833,93.98988L130.098214,94.0375L130.002976,94.085119L129.76488,94.085119L129.669642,94.0375L129.622023,93.98988L129.574404,93.894642L129.574404,93.799404L129.622023,93.656547L130.193452,93.085119L129.574404,93.085119", "val": 1}, {"thickness": 0.15, "svgpath": "M132.824404,91.585119L132.252976,91.585119M132.53869,90.585119L132.53869,91.585119M132.01488,91.585119L131.395833,91.585119L131.729166,91.204166L131.586309,91.204166L131.491071,91.156547L131.443452,91.108928L131.395833,91.01369L131.395833,90.775595L131.443452,90.680357L131.491071,90.632738L131.586309,90.585119L131.872023,90.585119L131.967261,90.632738L132.01488,90.680357"}, {"type": "segment", "start": [125.8125, 90.0375], "end": [127.3125, 90.0375], "width": 0.1}, {"type": "segment", "start": [137.8125, 89.5375], "end": [127.3125, 89.5375], "width": 0.1}, {"type": "segment", "start": [127.3125, 94.0375], "end": [125.8125, 94.0375], "width": 0.1}, {"type": "segment", "start": [137.8125, 94.5375], "end": [137.8125, 89.5375], "width": 0.1}, {"type": "segment", "start": [125.8125, 94.0375], "end": [125.8125, 90.0375], "width": 0.1}, {"type": "segment", "start": [127.3125, 89.5375], "end": [127.3125, 94.5375], "width": 0.1}, {"type": "segment", "start": [127.3125, 94.5375], "end": [137.8125, 94.5375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.63488,75.156547L153.63488,75.727976M153.63488,75.442261L152.63488,75.442261L152.777738,75.5375L152.872976,75.632738L152.920595,75.727976M152.63488,74.5375L152.63488,74.442261L152.6825,74.347023L152.730119,74.299404L152.825357,74.251785L153.015833,74.204166L153.253928,74.204166L153.444404,74.251785L153.539642,74.299404L153.587261,74.347023L153.63488,74.442261L153.63488,74.5375L153.587261,74.632738L153.539642,74.680357L153.444404,74.727976L153.253928,74.775595L153.015833,74.775595L152.825357,74.727976L152.730119,74.680357L152.6825,74.632738L152.63488,74.5375M152.63488,73.585119L152.63488,73.48988L152.6825,73.394642L152.730119,73.347023L152.825357,73.299404L153.015833,73.251785L153.253928,73.251785L153.444404,73.299404L153.539642,73.347023L153.587261,73.394642L153.63488,73.48988L153.63488,73.585119L153.587261,73.680357L153.539642,73.727976L153.444404,73.775595L153.253928,73.823214L153.015833,73.823214L152.825357,73.775595L152.730119,73.727976L152.6825,73.680357L152.63488,73.585119M152.968214,72.823214L153.63488,72.823214M153.063452,72.823214L153.015833,72.775595L152.968214,72.680357L152.968214,72.5375L153.015833,72.442261L153.111071,72.394642L153.63488,72.394642", "val": 1}, {"thickness": 0.08, "svgpath": "M155.041071,74.120833L155.06488,74.144642L155.08869,74.216071L155.08869,74.26369L155.06488,74.335119L155.017261,74.382738L154.969642,74.406547L154.874404,74.430357L154.802976,74.430357L154.707738,74.406547L154.660119,74.382738L154.6125,74.335119L154.58869,74.26369L154.58869,74.216071L154.6125,74.144642L154.636309,74.120833M154.58869,73.692261L154.58869,73.7875L154.6125,73.835119L154.636309,73.858928L154.707738,73.906547L154.802976,73.930357L154.993452,73.930357L155.041071,73.906547L155.06488,73.882738L155.08869,73.835119L155.08869,73.73988L155.06488,73.692261L155.041071,73.668452L154.993452,73.644642L154.874404,73.644642L154.826785,73.668452L154.802976,73.692261L154.779166,73.73988L154.779166,73.835119L154.802976,73.882738L154.826785,73.906547L154.874404,73.930357"}, {"type": "segment", "start": [155.4875, 75.0375], "end": [154.2375, 75.0375], "width": 0.1}, {"type": "segment", "start": [154.2375, 75.0375], "end": [154.2375, 73.0375], "width": 0.1}, {"type": "segment", "start": [155.4875, 73.0375], "end": [155.4875, 75.0375], "width": 0.1}, {"type": "segment", "start": [154.2375, 73.0375], "end": [155.4875, 73.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M141.56488,98.704166L141.56488,99.275595M141.56488,98.98988L140.56488,98.98988L140.707738,99.085119L140.802976,99.180357L140.850595,99.275595M140.56488,98.085119L140.56488,97.98988L140.6125,97.894642L140.660119,97.847023L140.755357,97.799404L140.945833,97.751785L141.183928,97.751785L141.374404,97.799404L141.469642,97.847023L141.517261,97.894642L141.56488,97.98988L141.56488,98.085119L141.517261,98.180357L141.469642,98.227976L141.374404,98.275595L141.183928,98.323214L140.945833,98.323214L140.755357,98.275595L140.660119,98.227976L140.6125,98.180357L140.56488,98.085119M140.56488,97.132738L140.56488,97.0375L140.6125,96.942261L140.660119,96.894642L140.755357,96.847023L140.945833,96.799404L141.183928,96.799404L141.374404,96.847023L141.469642,96.894642L141.517261,96.942261L141.56488,97.0375L141.56488,97.132738L141.517261,97.227976L141.469642,97.275595L141.374404,97.323214L141.183928,97.370833L140.945833,97.370833L140.755357,97.323214L140.660119,97.275595L140.6125,97.227976L140.56488,97.132738", "val": 1}, {"thickness": 0.08, "svgpath": "M142.98869,98.358928L142.750595,98.525595M142.98869,98.644642L142.48869,98.644642L142.48869,98.454166L142.5125,98.406547L142.536309,98.382738L142.583928,98.358928L142.655357,98.358928L142.702976,98.382738L142.726785,98.406547L142.750595,98.454166L142.750595,98.644642M142.98869,97.882738L142.98869,98.168452M142.98869,98.025595L142.48869,98.025595L142.560119,98.073214L142.607738,98.120833L142.631547,98.168452M142.48869,97.716071L142.48869,97.382738L142.98869,97.597023"}, {"type": "segment", "start": [143.3875, 97.0375], "end": [143.3875, 99.0375], "width": 0.1}, {"type": "segment", "start": [143.3875, 99.0375], "end": [142.1375, 99.0375], "width": 0.1}, {"type": "segment", "start": [142.1375, 99.0375], "end": [142.1375, 97.0375], "width": 0.1}, {"type": "segment", "start": [142.1375, 97.0375], "end": [143.3875, 97.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M135.002976,73.085119L135.002976,74.085119L134.622023,74.085119L134.526785,74.0375L134.479166,73.98988L134.431547,73.894642L134.431547,73.751785L134.479166,73.656547L134.526785,73.608928L134.622023,73.561309L135.002976,73.561309M133.717261,74.085119L133.717261,73.370833L133.76488,73.227976L133.860119,73.132738L134.002976,73.085119L134.098214,73.085119M133.241071,73.466071L132.479166,73.466071M132.050595,73.98988L132.002976,74.0375L131.907738,74.085119L131.669642,74.085119L131.574404,74.0375L131.526785,73.98988L131.479166,73.894642L131.479166,73.799404L131.526785,73.656547L132.098214,73.085119L131.479166,73.085119M130.622023,73.751785L130.622023,73.085119M130.860119,74.132738L131.098214,73.418452L130.479166,73.418452M130.145833,73.98988L130.098214,74.0375L130.002976,74.085119L129.76488,74.085119L129.669642,74.0375L129.622023,73.98988L129.574404,73.894642L129.574404,73.799404L129.622023,73.656547L130.193452,73.085119L129.574404,73.085119", "val": 1}, {"thickness": 0.15, "svgpath": "M132.824404,71.585119L132.252976,71.585119M132.53869,70.585119L132.53869,71.585119M131.395833,70.585119L131.967261,70.585119M131.681547,70.585119L131.681547,71.585119L131.776785,71.442261L131.872023,71.347023L131.967261,71.299404"}, {"type": "segment", "start": [125.8125, 74.0375], "end": [125.8125, 70.0375], "width": 0.1}, {"type": "segment", "start": [137.8125, 74.5375], "end": [137.8125, 69.5375], "width": 0.1}, {"type": "segment", "start": [127.3125, 74.0375], "end": [125.8125, 74.0375], "width": 0.1}, {"type": "segment", "start": [127.3125, 69.5375], "end": [127.3125, 74.5375], "width": 0.1}, {"type": "segment", "start": [125.8125, 70.0375], "end": [127.3125, 70.0375], "width": 0.1}, {"type": "segment", "start": [127.3125, 74.5375], "end": [137.8125, 74.5375], "width": 0.1}, {"type": "segment", "start": [137.8125, 69.5375], "end": [127.3125, 69.5375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M149.299087,82.673214L149.299087,83.33988M149.060992,82.292261L148.822897,83.006547L149.441944,83.006547M149.822897,83.33988L149.822897,82.33988M149.918135,82.958928L150.203849,83.33988M150.203849,82.673214L149.822897,83.054166M150.537183,82.33988L151.203849,82.33988L150.775278,83.33988", "val": 1}, {"thickness": 0.08, "svgpath": "M149.668135,84.76369L149.501468,84.525595M149.382421,84.76369L149.382421,84.26369L149.572897,84.26369L149.620516,84.2875L149.644325,84.311309L149.668135,84.358928L149.668135,84.430357L149.644325,84.477976L149.620516,84.501785L149.572897,84.525595L149.382421,84.525595M150.144325,84.76369L149.858611,84.76369M150.001468,84.76369L150.001468,84.26369L149.953849,84.335119L149.90623,84.382738L149.858611,84.406547M150.382421,84.76369L150.477659,84.76369L150.525278,84.73988L150.549087,84.716071L150.596706,84.644642L150.620516,84.549404L150.620516,84.358928L150.596706,84.311309L150.572897,84.2875L150.525278,84.26369L150.43004,84.26369L150.382421,84.2875L150.358611,84.311309L150.334802,84.358928L150.334802,84.477976L150.358611,84.525595L150.382421,84.549404L150.43004,84.573214L150.525278,84.573214L150.572897,84.549404L150.596706,84.525595L150.620516,84.477976"}, {"type": "segment", "start": [148.989564, 85.1625], "end": [148.989564, 83.9125], "width": 0.1}, {"type": "segment", "start": [150.989564, 85.1625], "end": [148.989564, 85.1625], "width": 0.1}, {"type": "segment", "start": [148.989564, 83.9125], "end": [150.989564, 83.9125], "width": 0.1}, {"type": "segment", "start": [150.989564, 83.9125], "end": [150.989564, 85.1625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M134.467261,91.98988L134.51488,91.894642L134.51488,91.704166L134.467261,91.608928L134.372023,91.561309L134.324404,91.561309L134.229166,91.608928L134.181547,91.704166L134.181547,91.847023L134.133928,91.942261L134.03869,91.98988L133.991071,91.98988L133.895833,91.942261L133.848214,91.847023L133.848214,91.704166L133.895833,91.608928M134.467261,91.180357L134.51488,91.085119L134.51488,90.894642L134.467261,90.799404L134.372023,90.751785L134.324404,90.751785L134.229166,90.799404L134.181547,90.894642L134.181547,91.0375L134.133928,91.132738L134.03869,91.180357L133.991071,91.180357L133.895833,91.132738L133.848214,91.0375L133.848214,90.894642L133.895833,90.799404M134.51488,89.894642L133.51488,89.894642M134.467261,89.894642L134.51488,89.98988L134.51488,90.180357L134.467261,90.275595L134.419642,90.323214L134.324404,90.370833L134.03869,90.370833L133.943452,90.323214L133.895833,90.275595L133.848214,90.180357L133.848214,89.98988L133.895833,89.894642M134.51488,88.894642L134.51488,89.466071M134.51488,89.180357L133.51488,89.180357L133.657738,89.275595L133.752976,89.370833L133.800595,89.466071M133.51488,88.561309L133.51488,87.942261L133.895833,88.275595L133.895833,88.132738L133.943452,88.0375L133.991071,87.98988L134.086309,87.942261L134.324404,87.942261L134.419642,87.98988L134.467261,88.0375L134.51488,88.132738L134.51488,88.418452L134.467261,88.51369L134.419642,88.561309M133.51488,87.323214L133.51488,87.227976L133.5625,87.132738L133.610119,87.085119L133.705357,87.0375L133.895833,86.98988L134.133928,86.98988L134.324404,87.0375L134.419642,87.085119L134.467261,87.132738L134.51488,87.227976L134.51488,87.323214L134.467261,87.418452L134.419642,87.466071L134.324404,87.51369L134.133928,87.561309L133.895833,87.561309L133.705357,87.51369L133.610119,87.466071L133.5625,87.418452L133.51488,87.323214M133.51488,86.132738L133.51488,86.323214L133.5625,86.418452L133.610119,86.466071L133.752976,86.561309L133.943452,86.608928L134.324404,86.608928L134.419642,86.561309L134.467261,86.51369L134.51488,86.418452L134.51488,86.227976L134.467261,86.132738L134.419642,86.085119L134.324404,86.0375L134.086309,86.0375L133.991071,86.085119L133.943452,86.132738L133.895833,86.227976L133.895833,86.418452L133.943452,86.51369L133.991071,86.561309L134.086309,86.608928M134.51488,84.704166L134.467261,84.799404L134.419642,84.847023L134.324404,84.894642L134.03869,84.894642L133.943452,84.847023L133.895833,84.799404L133.848214,84.704166L133.848214,84.561309L133.895833,84.466071L133.943452,84.418452L134.03869,84.370833L134.324404,84.370833L134.419642,84.418452L134.467261,84.466071L134.51488,84.561309L134.51488,84.704166M134.51488,83.799404L134.467261,83.894642L134.372023,83.942261L133.51488,83.942261M134.467261,83.0375L134.51488,83.132738L134.51488,83.323214L134.467261,83.418452L134.372023,83.466071L133.991071,83.466071L133.895833,83.418452L133.848214,83.323214L133.848214,83.132738L133.895833,83.0375L133.991071,82.98988L134.086309,82.98988L134.181547,83.466071M134.51488,82.132738L133.51488,82.132738M134.467261,82.132738L134.51488,82.227976L134.51488,82.418452L134.467261,82.51369L134.419642,82.561309L134.324404,82.608928L134.03869,82.608928L133.943452,82.561309L133.895833,82.51369L133.848214,82.418452L133.848214,82.227976L133.895833,82.132738", "val": 1}, {"thickness": 0.15, "svgpath": "M135.51488,95.370833L136.229166,95.370833L136.372023,95.418452L136.467261,95.51369L136.51488,95.656547L136.51488,95.751785M136.51488,94.370833L136.51488,94.942261M136.51488,94.656547L135.51488,94.656547L135.657738,94.751785L135.752976,94.847023L135.800595,94.942261"}, {"type": "polygon", "pos": [0, 0], "angle": 0, "polygons": [[[141.7925, 72.4375], [152.3525, 72.4375], [152.3525, 69.657032], [141.7925, 69.657032]]], "width": 0.1, "filled": 0}, {"type": "polygon", "pos": [0, 0], "angle": 0, "polygons": [[[129.0625, 70.0375], [165.0625, 70.0375], [165.0625, 103.0375], [129.0625, 103.0375]]], "width": 0.12, "filled": 0}, {"thickness": 0.15, "svgpath": "M144.119642,83.16988L143.548214,83.16988M143.833928,83.16988L143.833928,82.16988L143.73869,82.312738L143.643452,82.407976L143.548214,82.455595M144.73869,82.16988L144.833928,82.16988L144.929166,82.2175L144.976785,82.265119L145.024404,82.360357L145.072023,82.550833L145.072023,82.788928L145.024404,82.979404L144.976785,83.074642L144.929166,83.122261L144.833928,83.16988L144.73869,83.16988L144.643452,83.122261L144.595833,83.074642L144.548214,82.979404L144.500595,82.788928L144.500595,82.550833L144.548214,82.360357L144.595833,82.265119L144.643452,82.2175L144.73869,82.16988M145.929166,82.503214L145.929166,83.16988M145.500595,82.503214L145.500595,83.027023L145.548214,83.122261L145.643452,83.16988L145.786309,83.16988L145.881547,83.122261L145.929166,83.074642", "val": 1}, {"thickness": 0.08, "svgpath": "M144.441071,81.216071L144.417261,81.23988L144.345833,81.26369L144.298214,81.26369L144.226785,81.23988L144.179166,81.192261L144.155357,81.144642L144.131547,81.049404L144.131547,80.977976L144.155357,80.882738L144.179166,80.835119L144.226785,80.7875L144.298214,80.76369L144.345833,80.76369L144.417261,80.7875L144.441071,80.811309M144.917261,81.26369L144.631547,81.26369M144.774404,81.26369L144.774404,80.76369L144.726785,80.835119L144.679166,80.882738L144.631547,80.906547M145.226785,80.76369L145.274404,80.76369L145.322023,80.7875L145.345833,80.811309L145.369642,80.858928L145.393452,80.954166L145.393452,81.073214L145.369642,81.168452L145.345833,81.216071L145.322023,81.23988L145.274404,81.26369L145.226785,81.26369L145.179166,81.23988L145.155357,81.216071L145.131547,81.168452L145.107738,81.073214L145.107738,80.954166L145.131547,80.858928L145.155357,80.811309L145.179166,80.7875L145.226785,80.76369"}, {"type": "segment", "start": [145.7625, 80.4125], "end": [145.7625, 81.6625], "width": 0.1}, {"type": "segment", "start": [145.7625, 81.6625], "end": [143.7625, 81.6625], "width": 0.1}, {"type": "segment", "start": [143.7625, 80.4125], "end": [145.7625, 80.4125], "width": 0.1}, {"type": "segment", "start": [143.7625, 81.6625], "end": [143.7625, 80.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M141.79488,99.156547L141.79488,99.727976M141.79488,99.442261L140.79488,99.442261L140.937738,99.5375L141.032976,99.632738L141.080595,99.727976M140.79488,98.5375L140.79488,98.442261L140.8425,98.347023L140.890119,98.299404L140.985357,98.251785L141.175833,98.204166L141.413928,98.204166L141.604404,98.251785L141.699642,98.299404L141.747261,98.347023L141.79488,98.442261L141.79488,98.5375L141.747261,98.632738L141.699642,98.680357L141.604404,98.727976L141.413928,98.775595L141.175833,98.775595L140.985357,98.727976L140.890119,98.680357L140.8425,98.632738L140.79488,98.5375M140.79488,97.585119L140.79488,97.48988L140.8425,97.394642L140.890119,97.347023L140.985357,97.299404L141.175833,97.251785L141.413928,97.251785L141.604404,97.299404L141.699642,97.347023L141.747261,97.394642L141.79488,97.48988L141.79488,97.585119L141.747261,97.680357L141.699642,97.727976L141.604404,97.775595L141.413928,97.823214L141.175833,97.823214L140.985357,97.775595L140.890119,97.727976L140.8425,97.680357L140.79488,97.585119M141.128214,96.823214L141.79488,96.823214M141.223452,96.823214L141.175833,96.775595L141.128214,96.680357L141.128214,96.5375L141.175833,96.442261L141.271071,96.394642L141.79488,96.394642", "val": 1}, {"thickness": 0.08, "svgpath": "M139.841071,98.120833L139.86488,98.144642L139.88869,98.216071L139.88869,98.26369L139.86488,98.335119L139.817261,98.382738L139.769642,98.406547L139.674404,98.430357L139.602976,98.430357L139.507738,98.406547L139.460119,98.382738L139.4125,98.335119L139.38869,98.26369L139.38869,98.216071L139.4125,98.144642L139.436309,98.120833M139.555357,97.692261L139.88869,97.692261M139.36488,97.811309L139.722023,97.930357L139.722023,97.620833"}, {"type": "segment", "start": [139.0375, 99.0375], "end": [139.0375, 97.0375], "width": 0.1}, {"type": "segment", "start": [140.2875, 99.0375], "end": [139.0375, 99.0375], "width": 0.1}, {"type": "segment", "start": [139.0375, 97.0375], "end": [140.2875, 97.0375], "width": 0.1}, {"type": "segment", "start": [140.2875, 97.0375], "end": [140.2875, 99.0375], "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.619642,99.16988L153.048214,99.16988M153.333928,99.16988L153.333928,98.16988L153.23869,98.312738L153.143452,98.407976L153.048214,98.455595M154.23869,98.16988L154.333928,98.16988L154.429166,98.2175L154.476785,98.265119L154.524404,98.360357L154.572023,98.550833L154.572023,98.788928L154.524404,98.979404L154.476785,99.074642L154.429166,99.122261L154.333928,99.16988L154.23869,99.16988L154.143452,99.122261L154.095833,99.074642L154.048214,98.979404L154.000595,98.788928L154.000595,98.550833L154.048214,98.360357L154.095833,98.265119L154.143452,98.2175L154.23869,98.16988M155.429166,98.503214L155.429166,99.16988M155.000595,98.503214L155.000595,99.027023L155.048214,99.122261L155.143452,99.16988L155.286309,99.16988L155.381547,99.122261L155.429166,99.074642", "val": 1}, {"thickness": 0.08, "svgpath": "M154.179166,97.216071L154.155357,97.23988L154.083928,97.26369L154.036309,97.26369L153.96488,97.23988L153.917261,97.192261L153.893452,97.144642L153.869642,97.049404L153.869642,96.977976L153.893452,96.882738L153.917261,96.835119L153.96488,96.7875L154.036309,96.76369L154.083928,96.76369L154.155357,96.7875L154.179166,96.811309M154.631547,96.76369L154.393452,96.76369L154.369642,97.001785L154.393452,96.977976L154.441071,96.954166L154.560119,96.954166L154.607738,96.977976L154.631547,97.001785L154.655357,97.049404L154.655357,97.168452L154.631547,97.216071L154.607738,97.23988L154.560119,97.26369L154.441071,97.26369L154.393452,97.23988L154.369642,97.216071"}, {"type": "segment", "start": [153.2625, 97.6625], "end": [153.2625, 96.4125], "width": 0.1}, {"type": "segment", "start": [153.2625, 96.4125], "end": [155.2625, 96.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 96.4125], "end": [155.2625, 97.6625], "width": 0.1}, {"type": "segment", "start": [155.2625, 97.6625], "end": [153.2625, 97.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M138.976785,84.13988L139.595833,84.13988L139.2625,84.520833L139.405357,84.520833L139.500595,84.568452L139.548214,84.616071L139.595833,84.711309L139.595833,84.949404L139.548214,85.044642L139.500595,85.092261L139.405357,85.13988L139.119642,85.13988L139.024404,85.092261L138.976785,85.044642M139.929166,84.13988L140.548214,84.13988L140.21488,84.520833L140.357738,84.520833L140.452976,84.568452L140.500595,84.616071L140.548214,84.711309L140.548214,84.949404L140.500595,85.044642L140.452976,85.092261L140.357738,85.13988L140.072023,85.13988L139.976785,85.092261L139.929166,85.044642M141.167261,84.13988L141.2625,84.13988L141.357738,84.1875L141.405357,84.235119L141.452976,84.330357L141.500595,84.520833L141.500595,84.758928L141.452976,84.949404L141.405357,85.044642L141.357738,85.092261L141.2625,85.13988L141.167261,85.13988L141.072023,85.092261L141.024404,85.044642L140.976785,84.949404L140.929166,84.758928L140.929166,84.520833L140.976785,84.330357L141.024404,84.235119L141.072023,84.1875L141.167261,84.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,83.26369L140.0125,83.025595M139.893452,83.26369L139.893452,82.76369L140.083928,82.76369L140.131547,82.7875L140.155357,82.811309L140.179166,82.858928L140.179166,82.930357L140.155357,82.977976L140.131547,83.001785L140.083928,83.025595L139.893452,83.025595M140.345833,82.76369L140.655357,82.76369L140.48869,82.954166L140.560119,82.954166L140.607738,82.977976L140.631547,83.001785L140.655357,83.049404L140.655357,83.168452L140.631547,83.216071L140.607738,83.23988L140.560119,83.26369L140.417261,83.26369L140.369642,83.23988L140.345833,83.216071"}, {"type": "segment", "start": [141.2625, 83.6625], "end": [139.2625, 83.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 82.4125], "end": [141.2625, 82.4125], "width": 0.1}, {"type": "segment", "start": [141.2625, 82.4125], "end": [141.2625, 83.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 83.6625], "end": [139.2625, 82.4125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M153.572023,67.173214L153.572023,67.83988M153.333928,66.792261L153.095833,67.506547L153.71488,67.506547M154.095833,67.83988L154.095833,66.83988M154.191071,67.458928L154.476785,67.83988M154.476785,67.173214L154.095833,67.554166M154.810119,66.83988L155.476785,66.83988L155.048214,67.83988", "val": 1}, {"thickness": 0.08, "svgpath": "M153.941071,69.26369L153.774404,69.025595M153.655357,69.26369L153.655357,68.76369L153.845833,68.76369L153.893452,68.7875L153.917261,68.811309L153.941071,68.858928L153.941071,68.930357L153.917261,68.977976L153.893452,69.001785L153.845833,69.025595L153.655357,69.025595M154.417261,69.26369L154.131547,69.26369M154.274404,69.26369L154.274404,68.76369L154.226785,68.835119L154.179166,68.882738L154.131547,68.906547M154.726785,68.76369L154.774404,68.76369L154.822023,68.7875L154.845833,68.811309L154.869642,68.858928L154.893452,68.954166L154.893452,69.073214L154.869642,69.168452L154.845833,69.216071L154.822023,69.23988L154.774404,69.26369L154.726785,69.26369L154.679166,69.23988L154.655357,69.216071L154.631547,69.168452L154.607738,69.073214L154.607738,68.954166L154.631547,68.858928L154.655357,68.811309L154.679166,68.7875L154.726785,68.76369"}, {"type": "segment", "start": [153.2625, 68.4125], "end": [155.2625, 68.4125], "width": 0.1}, {"type": "segment", "start": [153.2625, 69.6625], "end": [153.2625, 68.4125], "width": 0.1}, {"type": "segment", "start": [155.2625, 69.6625], "end": [153.2625, 69.6625], "width": 0.1}, {"type": "segment", "start": [155.2625, 68.4125], "end": [155.2625, 69.6625], "width": 0.1}, {"thickness": 0.15, "svgpath": "M138.976785,74.93988L139.595833,74.93988L139.2625,75.320833L139.405357,75.320833L139.500595,75.368452L139.548214,75.416071L139.595833,75.511309L139.595833,75.749404L139.548214,75.844642L139.500595,75.892261L139.405357,75.93988L139.119642,75.93988L139.024404,75.892261L138.976785,75.844642M139.929166,74.93988L140.548214,74.93988L140.21488,75.320833L140.357738,75.320833L140.452976,75.368452L140.500595,75.416071L140.548214,75.511309L140.548214,75.749404L140.500595,75.844642L140.452976,75.892261L140.357738,75.93988L140.072023,75.93988L139.976785,75.892261L139.929166,75.844642M141.167261,74.93988L141.2625,74.93988L141.357738,74.9875L141.405357,75.035119L141.452976,75.130357L141.500595,75.320833L141.500595,75.558928L141.452976,75.749404L141.405357,75.844642L141.357738,75.892261L141.2625,75.93988L141.167261,75.93988L141.072023,75.892261L141.024404,75.844642L140.976785,75.749404L140.929166,75.558928L140.929166,75.320833L140.976785,75.130357L141.024404,75.035119L141.072023,74.9875L141.167261,74.93988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,74.06369L140.0125,73.825595M139.893452,74.06369L139.893452,73.56369L140.083928,73.56369L140.131547,73.5875L140.155357,73.611309L140.179166,73.658928L140.179166,73.730357L140.155357,73.777976L140.131547,73.801785L140.083928,73.825595L139.893452,73.825595M140.655357,74.06369L140.369642,74.06369M140.5125,74.06369L140.5125,73.56369L140.46488,73.635119L140.417261,73.682738L140.369642,73.706547"}, {"type": "segment", "start": [139.2625, 73.2125], "end": [141.2625, 73.2125], "width": 0.1}, {"type": "segment", "start": [141.2625, 74.4625], "end": [139.2625, 74.4625], "width": 0.1}, {"type": "segment", "start": [141.2625, 73.2125], "end": [141.2625, 74.4625], "width": 0.1}, {"type": "segment", "start": [139.2625, 74.4625], "end": [139.2625, 73.2125], "width": 0.1}, {"thickness": 0.15, "svgpath": "M139.572023,104.473214L139.572023,105.13988M139.333928,104.092261L139.095833,104.806547L139.71488,104.806547M140.095833,105.13988L140.095833,104.13988M140.191071,104.758928L140.476785,105.13988M140.476785,104.473214L140.095833,104.854166M140.810119,104.13988L141.476785,104.13988L141.048214,105.13988", "val": 1}, {"thickness": 0.08, "svgpath": "M140.179166,103.26369L140.0125,103.025595M139.893452,103.26369L139.893452,102.76369L140.083928,102.76369L140.131547,102.7875L140.155357,102.811309L140.179166,102.858928L140.179166,102.930357L140.155357,102.977976L140.131547,103.001785L140.083928,103.025595L139.893452,103.025595M140.46488,102.977976L140.417261,102.954166L140.393452,102.930357L140.369642,102.882738L140.369642,102.858928L140.393452,102.811309L140.417261,102.7875L140.46488,102.76369L140.560119,102.76369L140.607738,102.7875L140.631547,102.811309L140.655357,102.858928L140.655357,102.882738L140.631547,102.930357L140.607738,102.954166L140.560119,102.977976L140.46488,102.977976L140.417261,103.001785L140.393452,103.025595L140.369642,103.073214L140.369642,103.168452L140.393452,103.216071L140.417261,103.23988L140.46488,103.26369L140.560119,103.26369L140.607738,103.23988L140.631547,103.216071L140.655357,103.168452L140.655357,103.073214L140.631547,103.025595L140.607738,103.001785L140.560119,102.977976"}, {"type": "segment", "start": [141.2625, 103.6625], "end": [139.2625, 103.6625], "width": 0.1}, {"type": "segment", "start": [139.2625, 103.6625], "end": [139.2625, 102.4125], "width": 0.1}, {"type": "segment", "start": [139.2625, 102.4125], "end": [141.2625, 102.4125], "width": 0.1}, {"type": "segment", "start": [141.2625, 102.4125], "end": [141.2625, 103.6625], "width": 0.1}], "B": []}}, "footprints": [{"ref": "C9", "bbox": {"pos": [154.0625, 103.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.1, 103.0375], "size": [1.175, 1.45], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.025, 103.0375], "size": [1.175, 1.45], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R20", "bbox": {"pos": [129.7625, 113.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [129.7625, 112.125], "size": [1.025, 1.4], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [129.7625, 113.95], "size": [1.025, 1.4], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "REF**", "bbox": {"pos": [134.2625, 77.0375], "relpos": [-0.576, -0.576], "size": [1.152, 1.152], "angle": 0.0}, "pads": [{"layers": ["F", "B"], "pos": [134.2625, 77.0375], "size": [1.152, 1.152], "angle": 0.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.152, 1.152], "offset": [0.0, 0.0], "pin1": 1}], "drawings": [], "layer": "F"}, {"ref": "C11", "bbox": {"pos": [135.2625, 126.2375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [135.2625, 125.2], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [135.2625, 127.275], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R5", "bbox": {"pos": [140.2625, 93.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 93.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 93.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R15", "bbox": {"pos": [154.2625, 101.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 101.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 101.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "G1", "bbox": {"pos": [162.2625, 110.0375], "relpos": [-3.307036, -2.980693], "size": [6.632574, 5.933576], "angle": 0.0}, "pads": [], "drawings": [], "layer": "F"}, {"ref": "R6", "bbox": {"pos": [140.2625, 95.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 95.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 95.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "G2", "bbox": {"pos": [132.7625, 110.5375], "relpos": [-2.545257, -3.455115], "size": [5.931924, 6.982429], "angle": 0.0}, "pads": [], "drawings": [], "layer": "F"}, {"ref": "R9", "bbox": {"pos": [154.2625, 71.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 71.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 71.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C7", "bbox": {"pos": [154.8625, 84.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [154.8625, 83.0], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [154.8625, 85.075], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "H3", "bbox": {"pos": [163.7625, 128.5375], "relpos": [-3.075, -3.075], "size": [6.15, 6.15], "angle": 0.0}, "pads": [{"layers": ["F", "B"], "pos": [163.7625, 128.5375], "size": [5.6, 5.6], "angle": 0.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [3.2, 3.2], "offset": [0.0, 0.0], "pin1": 1}], "drawings": [], "layer": "F"}, {"ref": "R4", "bbox": {"pos": [140.2625, 85.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 85.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 85.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "U1", "bbox": {"pos": [155.5125, 130.0375], "relpos": [-2.565, -3.835], "size": [21.64, 26.085], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.5125, 130.0375], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [139.0025, 114.7975], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 117.3375], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 119.8775], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 122.4175], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 124.9575], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 127.4975], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 130.0375], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 127.4975], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 124.9575], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 122.4175], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 119.8775], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 117.3375], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 114.7975], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [155.5125, 112.2575], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [139.0025, 112.2575], "size": [3.5, 2.0], "angle": 180.0, "shape": "roundrect", "radius": 0.5, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R14", "bbox": {"pos": [154.2625, 89.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 89.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 89.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R7", "bbox": {"pos": [140.2625, 101.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 101.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 101.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R11", "bbox": {"pos": [154.2625, 81.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 81.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 81.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "kibuzzard-66DA8205", "bbox": {"pos": [147.2625, 123.0375], "relpos": [-6.536134, -1.935163], "size": [13.072268, 3.870326], "angle": 90.0}, "pads": [], "drawings": [], "layer": "F"}, {"ref": "T7", "bbox": {"pos": [167.2625, 92.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": -90.0}, "pads": [{"layers": ["F", "B"], "pos": [164.4625, 92.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [159.4625, 92.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [161.8625, 94.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 94.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 89.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 94.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [161.8625, 89.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 89.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T2", "bbox": {"pos": [127.2625, 82.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": 90.0}, "pads": [{"layers": ["F", "B"], "pos": [135.0625, 82.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [130.0625, 82.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [132.6625, 79.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 79.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 84.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 79.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [132.6625, 84.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 84.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T5", "bbox": {"pos": [167.2625, 72.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": -90.0}, "pads": [{"layers": ["F", "B"], "pos": [164.4625, 72.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [159.4625, 72.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [161.8625, 74.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 74.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 69.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 74.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [161.8625, 69.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 69.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "H1", "bbox": {"pos": [130.7625, 128.5375], "relpos": [-3.075, -3.075], "size": [6.15, 6.15], "angle": 0.0}, "pads": [{"layers": ["F", "B"], "pos": [130.7625, 128.5375], "size": [5.6, 5.6], "angle": 0.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [3.2, 3.2], "offset": [0.0, 0.0], "pin1": 1}], "drawings": [], "layer": "F"}, {"ref": "R21", "bbox": {"pos": [163.4625, 114.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [162.55, 114.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [164.375, 114.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R12", "bbox": {"pos": [154.2625, 79.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 79.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 79.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C3", "bbox": {"pos": [139.6625, 90.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 90.0}, "pads": [{"layers": ["F"], "pos": [139.6625, 91.075], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [139.6625, 89.0], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C2", "bbox": {"pos": [139.6625, 80.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 90.0}, "pads": [{"layers": ["F"], "pos": [139.6625, 81.075], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [139.6625, 79.0], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "SW1", "bbox": {"pos": [132.2625, 120.0375], "relpos": [-4.275, -3.025], "size": [8.55, 6.05], "angle": 90.0}, "pads": [{"layers": ["F"], "pos": [130.3625, 116.8875], "size": [1.7, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [130.3625, 123.1875], "size": [1.7, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [134.1625, 116.8875], "size": [1.7, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [134.1625, 123.1875], "size": [1.7, 1.0], "angle": 90.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "REF**", "bbox": {"pos": [142.2625, 130.0375], "relpos": [-0.576, -0.576], "size": [1.152, 1.152], "angle": 0.0}, "pads": [{"layers": ["F", "B"], "pos": [142.2625, 130.0375], "size": [1.152, 1.152], "angle": 0.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.152, 1.152], "offset": [0.0, 0.0], "pin1": 1}], "drawings": [], "layer": "F"}, {"ref": "C8", "bbox": {"pos": [154.8625, 94.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [154.8625, 93.0], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [154.8625, 95.075], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "SW2", "bbox": {"pos": [162.2625, 120.0375], "relpos": [-4.275, -3.025], "size": [8.55, 6.05], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [164.1625, 123.1875], "size": [1.7, 1.0], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [164.1625, 116.8875], "size": [1.7, 1.0], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [160.3625, 123.1875], "size": [1.7, 1.0], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [160.3625, 116.8875], "size": [1.7, 1.0], "angle": 270.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C1", "bbox": {"pos": [139.6625, 70.8375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 90.0}, "pads": [{"layers": ["F"], "pos": [139.6625, 71.875], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [139.6625, 69.8], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T8", "bbox": {"pos": [167.2625, 102.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": -90.0}, "pads": [{"layers": ["F", "B"], "pos": [159.4625, 102.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [164.4625, 102.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [161.8625, 104.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 104.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 99.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 104.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [161.8625, 99.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 99.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R18", "bbox": {"pos": [150.035436, 81.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [150.947936, 81.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [149.122936, 81.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R16", "bbox": {"pos": [154.2625, 99.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 99.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 99.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T4", "bbox": {"pos": [127.2625, 102.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": 90.0}, "pads": [{"layers": ["F", "B"], "pos": [130.0625, 102.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [135.0625, 102.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [132.6625, 99.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 99.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 104.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 99.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [132.6625, 104.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 104.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T6", "bbox": {"pos": [167.2625, 82.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": -90.0}, "pads": [{"layers": ["F", "B"], "pos": [164.4625, 82.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [159.4625, 82.0375], "size": [1.7, 1.7], "angle": 270.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [161.8625, 84.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 84.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 79.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [165.5625, 84.9375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [161.8625, 79.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [158.1625, 79.1375], "size": [2.0, 1.5], "angle": 270.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R13", "bbox": {"pos": [154.2625, 91.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 91.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 91.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R2", "bbox": {"pos": [140.2625, 75.8375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 75.8375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 75.8375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "H2", "bbox": {"pos": [147.2625, 103.0375], "relpos": [-3.075, -3.075], "size": [6.15, 6.15], "angle": 180.0}, "pads": [{"layers": ["F", "B"], "pos": [147.2625, 103.0375], "size": [5.6, 5.6], "angle": 180.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [3.2, 3.2], "offset": [0.0, 0.0], "pin1": 1}], "drawings": [], "layer": "F"}, {"ref": "JP1", "bbox": {"pos": [149.2625, 76.0375], "relpos": [-2.325, -1.275], "size": [4.65, 2.835], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [150.5625, 76.0375], "size": [1.0, 0.5], "angle": 180.0, "shape": "custom", "polygons": [[[0.55, 0.75], [0.0, 0.75], [0.0, 0.745033], [-0.079941, 0.743568], [-0.215256, 0.701293], [-0.333266, 0.622738], [-0.424486, 0.514219], [-0.481581, 0.38446], [-0.499164, 0.25], [-0.5, 0.25], [-0.5, -0.25], [-0.499164, -0.25], [-0.499963, -0.256109], [-0.478152, -0.396186], [-0.417904, -0.524511], [-0.32406, -0.630769], [-0.204165, -0.706417], [-0.067858, -0.745374], [0.0, -0.744959], [0.0, -0.75], [0.55, -0.75]]], "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [149.2625, 76.0375], "size": [1.0, 1.5], "angle": 180.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [147.9625, 76.0375], "size": [1.0, 0.5], "angle": 180.0, "shape": "custom", "polygons": [[[0.0, -0.744959], [0.073905, -0.744508], [0.209726, -0.703889], [0.328688, -0.626782], [0.421226, -0.519385], [0.479903, -0.390333], [0.5, -0.25], [0.5, 0.25], [0.499851, 0.262216], [0.476331, 0.402017], [0.414519, 0.529596], [0.319384, 0.6347], [0.198574, 0.708877], [0.061801, 0.746166], [0.0, 0.745033], [0.0, 0.75], [-0.55, 0.75], [-0.55, -0.75], [0.0, -0.75]]], "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T3", "bbox": {"pos": [127.2625, 92.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": 90.0}, "pads": [{"layers": ["F", "B"], "pos": [135.0625, 92.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [130.0625, 92.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [132.6625, 89.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 89.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 94.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 89.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [132.6625, 94.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 94.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C6", "bbox": {"pos": [154.8625, 74.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [154.8625, 73.0], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [154.8625, 75.075], "size": [1.175, 1.45], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R17", "bbox": {"pos": [142.7625, 98.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": -90.0}, "pads": [{"layers": ["F"], "pos": [142.7625, 97.125], "size": [1.025, 1.4], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [142.7625, 98.95], "size": [1.025, 1.4], "angle": 270.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "T1", "bbox": {"pos": [127.2625, 72.0375], "relpos": [-4.025, -1.5], "size": [8.05, 12.525], "angle": 90.0}, "pads": [{"layers": ["F", "B"], "pos": [130.0625, 72.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [135.0625, 72.0375], "size": [1.7, 1.7], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.3, 1.3], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [132.6625, 69.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 69.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 74.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [128.9625, 69.1375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [132.6625, 74.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [136.3625, 74.9375], "size": [2.0, 1.5], "angle": 90.0, "shape": "roundrect", "radius": 0.15, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R19", "bbox": {"pos": [149.989564, 84.5375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [150.902064, 84.5375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [149.077064, 84.5375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "J1", "bbox": {"pos": [147.0625, 71.0375], "relpos": [-32.06, -18.06], "size": [33.685, 36.12], "angle": 90.0}, "pads": [{"layers": ["F", "B"], "pos": [143.2625, 71.0055], "size": [2.2, 2.2], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.0, 1.0], "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F", "B"], "pos": [145.8025, 71.0055], "size": [2.2, 2.2], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.0, 1.0], "offset": [0.0, 0.0]}, {"layers": ["F", "B"], "pos": [148.3425, 71.0055], "size": [2.2, 2.2], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.0, 1.0], "offset": [0.0, 0.0]}, {"layers": ["F", "B"], "pos": [150.8825, 71.0055], "size": [2.2, 2.2], "angle": 90.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.0, 1.0], "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C10", "bbox": {"pos": [144.7625, 81.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [143.725, 81.0375], "size": [1.175, 1.45], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [145.8, 81.0375], "size": [1.175, 1.45], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C4", "bbox": {"pos": [139.6625, 98.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 90.0}, "pads": [{"layers": ["F"], "pos": [139.6625, 99.075], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [139.6625, 97.0], "size": [1.175, 1.45], "angle": 90.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "C5", "bbox": {"pos": [154.2625, 97.0375], "relpos": [-1.905, -1.005], "size": [3.81, 2.01], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [153.225, 97.0375], "size": [1.175, 1.45], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [155.3, 97.0375], "size": [1.175, 1.45], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "REF**", "bbox": {"pos": [159.7625, 97.0375], "relpos": [-0.576, -0.576], "size": [1.152, 1.152], "angle": 0.0}, "pads": [{"layers": ["F", "B"], "pos": [159.7625, 97.0375], "size": [1.152, 1.152], "angle": 0.0, "shape": "circle", "type": "th", "drillshape": "circle", "drillsize": [1.152, 1.152], "offset": [0.0, 0.0], "pin1": 1}], "drawings": [], "layer": "F"}, {"ref": "R3", "bbox": {"pos": [140.2625, 83.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 83.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 83.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "JP2", "bbox": {"pos": [144.2625, 76.0375], "relpos": [-2.325, -1.275], "size": [4.65, 2.835], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [145.5625, 76.0375], "size": [1.0, 0.5], "angle": 180.0, "shape": "custom", "polygons": [[[0.55, 0.75], [0.0, 0.75], [0.0, 0.745033], [-0.079941, 0.743568], [-0.215256, 0.701293], [-0.333266, 0.622738], [-0.424486, 0.514219], [-0.481581, 0.38446], [-0.499164, 0.25], [-0.5, 0.25], [-0.5, -0.25], [-0.499164, -0.25], [-0.499963, -0.256109], [-0.478152, -0.396186], [-0.417904, -0.524511], [-0.32406, -0.630769], [-0.204165, -0.706417], [-0.067858, -0.745374], [0.0, -0.744959], [0.0, -0.75], [0.55, -0.75]]], "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [144.2625, 76.0375], "size": [1.0, 1.5], "angle": 180.0, "shape": "rect", "type": "smd", "offset": [0.0, 0.0]}, {"layers": ["F"], "pos": [142.9625, 76.0375], "size": [1.0, 0.5], "angle": 180.0, "shape": "custom", "polygons": [[[0.0, -0.744959], [0.073905, -0.744508], [0.209726, -0.703889], [0.328688, -0.626782], [0.421226, -0.519385], [0.479903, -0.390333], [0.5, -0.25], [0.5, 0.25], [0.499851, 0.262216], [0.476331, 0.402017], [0.414519, 0.529596], [0.319384, 0.6347], [0.198574, 0.708877], [0.061801, 0.746166], [0.0, 0.745033], [0.0, 0.75], [-0.55, 0.75], [-0.55, -0.75], [0.0, -0.75]]], "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R10", "bbox": {"pos": [154.2625, 69.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 180.0}, "pads": [{"layers": ["F"], "pos": [155.175, 69.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [153.35, 69.0375], "size": [1.025, 1.4], "angle": 180.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R1", "bbox": {"pos": [140.2625, 73.8375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 73.8375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 73.8375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "R8", "bbox": {"pos": [140.2625, 103.0375], "relpos": [-1.705, -0.975], "size": [3.41, 1.95], "angle": 0.0}, "pads": [{"layers": ["F"], "pos": [139.35, 103.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0], "pin1": 1}, {"layers": ["F"], "pos": [141.175, 103.0375], "size": [1.025, 1.4], "angle": 0.0, "shape": "roundrect", "radius": 0.25, "type": "smd", "offset": [0.0, 0.0]}], "drawings": [], "layer": "F"}, {"ref": "kibuzzard-6769B10C", "bbox": {"pos": [132.7625, 102.0375], "relpos": [-4.975225, -2.494492], "size": [9.95045, 4.988984], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769ACE8", "bbox": {"pos": [132.7625, 72.0375], "relpos": [-4.85775, -2.494492], "size": [9.7155, 4.988984], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769AD2C", "bbox": {"pos": [132.7625, 92.0375], "relpos": [-4.9403, -2.580217], "size": [9.8806, 5.160434], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6771C807", "bbox": {"pos": [164.4625, 114.0375], "relpos": [-6.583759, -1.935163], "size": [13.167518, 3.870326], "angle": 90.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769AD0A", "bbox": {"pos": [161.7625, 92.0375], "relpos": [-4.835525, -2.494492], "size": [9.67105, 4.988984], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769AD24", "bbox": {"pos": [132.7625, 82.0375], "relpos": [-4.9276, -2.538942], "size": [9.8552, 5.077884], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-669677F3", "bbox": {"pos": [140.7625, 89.0375], "relpos": [-16.101616, -1.937544], "size": [32.203232, 3.875088], "angle": 90.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769ACFC", "bbox": {"pos": [161.7625, 72.0375], "relpos": [-4.9022, -2.535767], "size": [9.8044, 5.071534], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "G***", "bbox": {"pos": [151.7625, 123.0375], "relpos": [-7.7, -7.8], "size": [15.5, 15.5], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769AD03", "bbox": {"pos": [161.7625, 82.0375], "relpos": [-4.905375, -2.548467], "size": [9.81075, 5.096934], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}, {"ref": "kibuzzard-6769AD10", "bbox": {"pos": [161.7625, 102.0375], "relpos": [-4.9911, -2.583392], "size": [9.9822, 5.166784], "angle": 180.0}, "pads": [], "drawings": [], "layer": "B"}], "metadata": {"title": "project", "revision": "", "company": "", "date": "2024-12-29 22:10:30"}, "bom": {"both": [[["C1", 30], ["C2", 25], ["C3", 24], ["C4", 47], ["C6", 41], ["C7", 10], ["C8", 28], ["C9", 0]], [["C5", 48], ["C10", 46], ["C11", 3]], [["R1", 53], ["R3", 50], ["R5", 4], ["R7", 15], ["R9", 9], ["R11", 16], ["R13", 36], ["R15", 5], ["R20", 1], ["R21", 22]], [["R2", 37], ["R4", 12], ["R6", 7], ["R8", 54], ["R10", 52], ["R12", 23], ["R14", 14], ["R16", 33], ["R18", 32], ["R19", 44]], [["R17", 42]], [["U1", 13]], [["SW1", 26], ["SW2", 29]], [["T1", 43], ["T2", 19], ["T3", 40], ["T4", 34], ["T5", 20], ["T6", 35], ["T7", 18], ["T8", 31]], [["J1", 45]]], "skipped": [2, 6, 8, 11, 17, 21, 27, 38, 39, 49, 51, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65], "fields": {"0": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "1": ["330", "R_0805_2012Metric"], "3": ["10u", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "4": ["330", "R_0805_2012Metric"], "5": ["330", "R_0805_2012Metric"], "7": ["4k7", "R_0805_2012Metric"], "9": ["330", "R_0805_2012Metric"], "10": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "12": ["4k7", "R_0805_2012Metric"], "13": ["esp32-c3-supermini", "esp32-c3-supermini"], "14": ["4k7", "R_0805_2012Metric"], "15": ["330", "R_0805_2012Metric"], "16": ["330", "R_0805_2012Metric"], "18": ["PJ-242", "PJ-242"], "19": ["PJ-242", "PJ-242"], "20": ["PJ-242", "PJ-242"], "22": ["330", "R_0805_2012Metric"], "23": ["4k7", "R_0805_2012Metric"], "24": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "25": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "26": ["USR_BTN", "SW_SPST_TL3342"], "28": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "29": ["USR_BTN", "SW_SPST_TL3342"], "30": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "31": ["PJ-242", "PJ-242"], "32": ["4k7", "R_0805_2012Metric"], "33": ["4k7", "R_0805_2012Metric"], "34": ["PJ-242", "PJ-242"], "35": ["PJ-242", "PJ-242"], "36": ["330", "R_0805_2012Metric"], "37": ["4k7", "R_0805_2012Metric"], "40": ["PJ-242", "PJ-242"], "41": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "42": ["100", "R_0805_2012Metric"], "43": ["PJ-242", "PJ-242"], "44": ["4k7", "R_0805_2012Metric"], "45": ["ssd1306 oled", "oled_i2c_1.3_128x64_ssd1306"], "46": ["10u", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "47": ["100n", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "48": ["10u", "C_0805_2012Metric_Pad1.18x1.45mm_HandSolder"], "50": ["330", "R_0805_2012Metric"], "52": ["4k7", "R_0805_2012Metric"], "53": ["330", "R_0805_2012Metric"], "54": ["4k7", "R_0805_2012Metric"]}, "F": [[["C1", 30], ["C2", 25], ["C3", 24], ["C4", 47], ["C6", 41], ["C7", 10], ["C8", 28], ["C9", 0]], [["C5", 48], ["C10", 46], ["C11", 3]], [["R1", 53], ["R3", 50], ["R5", 4], ["R7", 15], ["R9", 9], ["R11", 16], ["R13", 36], ["R15", 5], ["R20", 1], ["R21", 22]], [["R2", 37], ["R4", 12], ["R6", 7], ["R8", 54], ["R10", 52], ["R12", 23], ["R14", 14], ["R16", 33], ["R18", 32], ["R19", 44]], [["R17", 42]], [["U1", 13]], [["SW1", 26], ["SW2", 29]], [["T1", 43], ["T2", 19], ["T3", 40], ["T4", 34], ["T5", 20], ["T6", 35], ["T7", 18], ["T8", 31]], [["J1", 45]]], "B": []}, "font_data": {}, "ibom_version": "v2.5.0-2"}
///////////////////////////////////////////////
///////////////////////////////////////////////
/* Utility functions */
var storagePrefix = 'KiCad_HTML_BOM__' + pcbdata.metadata.title + '__' +
pcbdata.metadata.revision + '__#';
var storage;
function initStorage(key) {
try {
window.localStorage.getItem("blank");
storage = window.localStorage;
} catch (e) {
// localStorage not available
}
if (!storage) {
try {
window.sessionStorage.getItem("blank");
storage = window.sessionStorage;
} catch (e) {
// sessionStorage also not available
}
}
}
function readStorage(key) {
if (storage) {
return storage.getItem(storagePrefix + key);
} else {
return null;
}
}
function writeStorage(key, value) {
if (storage) {
storage.setItem(storagePrefix + key, value);
}
}
function fancyDblClickHandler(el, onsingle, ondouble) {
return function() {
if (el.getAttribute("data-dblclick") == null) {
el.setAttribute("data-dblclick", 1);
setTimeout(function() {
if (el.getAttribute("data-dblclick") == 1) {
onsingle();
}
el.removeAttribute("data-dblclick");
}, 200);
} else {
el.removeAttribute("data-dblclick");
ondouble();
}
}
}
function smoothScrollToRow(rowid) {
document.getElementById(rowid).scrollIntoView({
behavior: "smooth",
block: "center",
inline: "nearest"
});
}
function focusInputField(input) {
input.scrollIntoView(false);
input.focus();
input.select();
}
function saveBomTable(output) {
var text = '';
for (var node of bomhead.childNodes[0].childNodes) {
if (node.firstChild) {
text += (output == 'csv' ? `"${node.firstChild.nodeValue}"` : node.firstChild.nodeValue);
}
if (node != bomhead.childNodes[0].lastChild) {
text += (output == 'csv' ? ',' : '\t');
}
}
text += '\n';
for (var row of bombody.childNodes) {
for (var cell of row.childNodes) {
let val = '';
for (var node of cell.childNodes) {
if (node.nodeName == "INPUT") {
if (node.checked) {
val += '✓';
}
} else if (node.nodeName == "MARK") {
val += node.firstChild.nodeValue;
} else {
val += node.nodeValue;
}
}
if (output == 'csv') {
val = val.replace(/\"/g, '\"\"'); // pair of double-quote characters
if (isNumeric(val)) {
val = +val; // use number
} else {
val = `"${val}"`; // enclosed within double-quote
}
}
text += val;
if (cell != row.lastChild) {
text += (output == 'csv' ? ',' : '\t');
}
}
text += '\n';
}
if (output != 'clipboard') {
// To file: csv or txt
var blob = new Blob([text], {
type: `text/${output}`