-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboard.json
8172 lines (8171 loc) · 539 KB
/
board.json
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
{
"spec_version": 1,
"pcbdata": {
"edges_bbox": {"minx": -0.145429, "miny": 0.341551, "maxx": 2.475409, "maxy": -2.304150},
"edges": [
{"type": "segment", "start": [0.137053,-1.289108], "end": [0.137053, -1.308793], "width": 0.000000}
,{"type": "segment", "start": [0.137053,-1.308793], "end": [0.137098, -1.309822], "width": 0.000000}
,{"type": "segment", "start": [0.137098,-1.309822], "end": [0.137232, -1.310844], "width": 0.000000}
,{"type": "segment", "start": [0.137232,-1.310844], "end": [0.137455, -1.311850], "width": 0.000000}
,{"type": "segment", "start": [0.137455,-1.311850], "end": [0.137765, -1.312832], "width": 0.000000}
,{"type": "segment", "start": [0.137765,-1.312832], "end": [0.138159, -1.313784], "width": 0.000000}
,{"type": "segment", "start": [0.138159,-1.313784], "end": [0.138635, -1.314698], "width": 0.000000}
,{"type": "segment", "start": [0.138635,-1.314698], "end": [0.139189, -1.315567], "width": 0.000000}
,{"type": "segment", "start": [0.139189,-1.315567], "end": [0.139816, -1.316385], "width": 0.000000}
,{"type": "segment", "start": [0.139816,-1.316385], "end": [0.140512, -1.317144], "width": 0.000000}
,{"type": "segment", "start": [0.140512,-1.317144], "end": [0.141272, -1.317841], "width": 0.000000}
,{"type": "segment", "start": [0.141272,-1.317841], "end": [0.142089, -1.318468], "width": 0.000000}
,{"type": "segment", "start": [0.142089,-1.318468], "end": [0.142958, -1.319021], "width": 0.000000}
,{"type": "segment", "start": [0.142958,-1.319021], "end": [0.143872, -1.319497], "width": 0.000000}
,{"type": "segment", "start": [0.143872,-1.319497], "end": [0.144824, -1.319891], "width": 0.000000}
,{"type": "segment", "start": [0.144824,-1.319891], "end": [0.145807, -1.320202], "width": 0.000000}
,{"type": "segment", "start": [0.145807,-1.320202], "end": [0.146813, -1.320424], "width": 0.000000}
,{"type": "segment", "start": [0.146813,-1.320424], "end": [0.147835, -1.320559], "width": 0.000000}
,{"type": "segment", "start": [0.147835,-1.320559], "end": [0.148864, -1.320604], "width": 0.000000}
,{"type": "segment", "start": [0.148864,-1.320604], "end": [0.149893, -1.320559], "width": 0.000000}
,{"type": "segment", "start": [0.149893,-1.320559], "end": [0.150915, -1.320424], "width": 0.000000}
,{"type": "segment", "start": [0.150915,-1.320424], "end": [0.151921, -1.320202], "width": 0.000000}
,{"type": "segment", "start": [0.151921,-1.320202], "end": [0.152904, -1.319891], "width": 0.000000}
,{"type": "segment", "start": [0.152904,-1.319891], "end": [0.153856, -1.319497], "width": 0.000000}
,{"type": "segment", "start": [0.153856,-1.319497], "end": [0.154769, -1.319021], "width": 0.000000}
,{"type": "segment", "start": [0.154769,-1.319021], "end": [0.155639, -1.318468], "width": 0.000000}
,{"type": "segment", "start": [0.155639,-1.318468], "end": [0.156456, -1.317841], "width": 0.000000}
,{"type": "segment", "start": [0.156456,-1.317841], "end": [0.157216, -1.317144], "width": 0.000000}
,{"type": "segment", "start": [0.157216,-1.317144], "end": [0.157912, -1.316385], "width": 0.000000}
,{"type": "segment", "start": [0.157912,-1.316385], "end": [0.158539, -1.315567], "width": 0.000000}
,{"type": "segment", "start": [0.158539,-1.315567], "end": [0.159093, -1.314698], "width": 0.000000}
,{"type": "segment", "start": [0.159093,-1.314698], "end": [0.159569, -1.313784], "width": 0.000000}
,{"type": "segment", "start": [0.159569,-1.313784], "end": [0.159963, -1.312832], "width": 0.000000}
,{"type": "segment", "start": [0.159963,-1.312832], "end": [0.160272, -1.311850], "width": 0.000000}
,{"type": "segment", "start": [0.160272,-1.311850], "end": [0.160496, -1.310844], "width": 0.000000}
,{"type": "segment", "start": [0.160496,-1.310844], "end": [0.160630, -1.309822], "width": 0.000000}
,{"type": "segment", "start": [0.160630,-1.309822], "end": [0.160675, -1.308793], "width": 0.000000}
,{"type": "segment", "start": [0.160675,-1.308793], "end": [0.160675, -1.289108], "width": 0.000000}
,{"type": "segment", "start": [0.160675,-1.289108], "end": [0.160630, -1.288078], "width": 0.000000}
,{"type": "segment", "start": [0.160630,-1.288078], "end": [0.160496, -1.287057], "width": 0.000000}
,{"type": "segment", "start": [0.160496,-1.287057], "end": [0.160272, -1.286051], "width": 0.000000}
,{"type": "segment", "start": [0.160272,-1.286051], "end": [0.159963, -1.285068], "width": 0.000000}
,{"type": "segment", "start": [0.159963,-1.285068], "end": [0.159569, -1.284116], "width": 0.000000}
,{"type": "segment", "start": [0.159569,-1.284116], "end": [0.159093, -1.283202], "width": 0.000000}
,{"type": "segment", "start": [0.159093,-1.283202], "end": [0.158539, -1.282333], "width": 0.000000}
,{"type": "segment", "start": [0.158539,-1.282333], "end": [0.157912, -1.281516], "width": 0.000000}
,{"type": "segment", "start": [0.157912,-1.281516], "end": [0.157216, -1.280756], "width": 0.000000}
,{"type": "segment", "start": [0.157216,-1.280756], "end": [0.156456, -1.280060], "width": 0.000000}
,{"type": "segment", "start": [0.156456,-1.280060], "end": [0.155639, -1.279433], "width": 0.000000}
,{"type": "segment", "start": [0.155639,-1.279433], "end": [0.154769, -1.278879], "width": 0.000000}
,{"type": "segment", "start": [0.154769,-1.278879], "end": [0.153856, -1.278403], "width": 0.000000}
,{"type": "segment", "start": [0.153856,-1.278403], "end": [0.152904, -1.278009], "width": 0.000000}
,{"type": "segment", "start": [0.152904,-1.278009], "end": [0.151921, -1.277699], "width": 0.000000}
,{"type": "segment", "start": [0.151921,-1.277699], "end": [0.150915, -1.277476], "width": 0.000000}
,{"type": "segment", "start": [0.150915,-1.277476], "end": [0.149893, -1.277342], "width": 0.000000}
,{"type": "segment", "start": [0.149893,-1.277342], "end": [0.148864, -1.277297], "width": 0.000000}
,{"type": "segment", "start": [0.148864,-1.277297], "end": [0.147835, -1.277342], "width": 0.000000}
,{"type": "segment", "start": [0.147835,-1.277342], "end": [0.146813, -1.277476], "width": 0.000000}
,{"type": "segment", "start": [0.146813,-1.277476], "end": [0.145807, -1.277699], "width": 0.000000}
,{"type": "segment", "start": [0.145807,-1.277699], "end": [0.144824, -1.278009], "width": 0.000000}
,{"type": "segment", "start": [0.144824,-1.278009], "end": [0.143872, -1.278403], "width": 0.000000}
,{"type": "segment", "start": [0.143872,-1.278403], "end": [0.142958, -1.278879], "width": 0.000000}
,{"type": "segment", "start": [0.142958,-1.278879], "end": [0.142089, -1.279433], "width": 0.000000}
,{"type": "segment", "start": [0.142089,-1.279433], "end": [0.141272, -1.280060], "width": 0.000000}
,{"type": "segment", "start": [0.141272,-1.280060], "end": [0.140512, -1.280756], "width": 0.000000}
,{"type": "segment", "start": [0.140512,-1.280756], "end": [0.139816, -1.281516], "width": 0.000000}
,{"type": "segment", "start": [0.139816,-1.281516], "end": [0.139189, -1.282333], "width": 0.000000}
,{"type": "segment", "start": [0.139189,-1.282333], "end": [0.138635, -1.283202], "width": 0.000000}
,{"type": "segment", "start": [0.138635,-1.283202], "end": [0.138159, -1.284116], "width": 0.000000}
,{"type": "segment", "start": [0.138159,-1.284116], "end": [0.137765, -1.285068], "width": 0.000000}
,{"type": "segment", "start": [0.137765,-1.285068], "end": [0.137455, -1.286051], "width": 0.000000}
,{"type": "segment", "start": [0.137455,-1.286051], "end": [0.137232, -1.287057], "width": 0.000000}
,{"type": "segment", "start": [0.137232,-1.287057], "end": [0.137098, -1.288078], "width": 0.000000}
,{"type": "segment", "start": [0.137098,-1.288078], "end": [0.137053, -1.289108], "width": 0.000000}
,{"type": "segment", "start": [0.137053,-1.489895], "end": [0.137053, -1.509580], "width": 0.000000}
,{"type": "segment", "start": [0.137053,-1.509580], "end": [0.137098, -1.510609], "width": 0.000000}
,{"type": "segment", "start": [0.137098,-1.510609], "end": [0.137232, -1.511631], "width": 0.000000}
,{"type": "segment", "start": [0.137232,-1.511631], "end": [0.137455, -1.512637], "width": 0.000000}
,{"type": "segment", "start": [0.137455,-1.512637], "end": [0.137765, -1.513620], "width": 0.000000}
,{"type": "segment", "start": [0.137765,-1.513620], "end": [0.138159, -1.514572], "width": 0.000000}
,{"type": "segment", "start": [0.138159,-1.514572], "end": [0.138635, -1.515486], "width": 0.000000}
,{"type": "segment", "start": [0.138635,-1.515486], "end": [0.139189, -1.516355], "width": 0.000000}
,{"type": "segment", "start": [0.139189,-1.516355], "end": [0.139816, -1.517172], "width": 0.000000}
,{"type": "segment", "start": [0.139816,-1.517172], "end": [0.140512, -1.517932], "width": 0.000000}
,{"type": "segment", "start": [0.140512,-1.517932], "end": [0.141272, -1.518628], "width": 0.000000}
,{"type": "segment", "start": [0.141272,-1.518628], "end": [0.142089, -1.519255], "width": 0.000000}
,{"type": "segment", "start": [0.142089,-1.519255], "end": [0.142958, -1.519809], "width": 0.000000}
,{"type": "segment", "start": [0.142958,-1.519809], "end": [0.143872, -1.520285], "width": 0.000000}
,{"type": "segment", "start": [0.143872,-1.520285], "end": [0.144824, -1.520679], "width": 0.000000}
,{"type": "segment", "start": [0.144824,-1.520679], "end": [0.145807, -1.520989], "width": 0.000000}
,{"type": "segment", "start": [0.145807,-1.520989], "end": [0.146813, -1.521212], "width": 0.000000}
,{"type": "segment", "start": [0.146813,-1.521212], "end": [0.147835, -1.521346], "width": 0.000000}
,{"type": "segment", "start": [0.147835,-1.521346], "end": [0.148864, -1.521391], "width": 0.000000}
,{"type": "segment", "start": [0.148864,-1.521391], "end": [0.149893, -1.521346], "width": 0.000000}
,{"type": "segment", "start": [0.149893,-1.521346], "end": [0.150915, -1.521212], "width": 0.000000}
,{"type": "segment", "start": [0.150915,-1.521212], "end": [0.151921, -1.520989], "width": 0.000000}
,{"type": "segment", "start": [0.151921,-1.520989], "end": [0.152904, -1.520679], "width": 0.000000}
,{"type": "segment", "start": [0.152904,-1.520679], "end": [0.153856, -1.520285], "width": 0.000000}
,{"type": "segment", "start": [0.153856,-1.520285], "end": [0.154769, -1.519809], "width": 0.000000}
,{"type": "segment", "start": [0.154769,-1.519809], "end": [0.155639, -1.519255], "width": 0.000000}
,{"type": "segment", "start": [0.155639,-1.519255], "end": [0.156456, -1.518628], "width": 0.000000}
,{"type": "segment", "start": [0.156456,-1.518628], "end": [0.157216, -1.517932], "width": 0.000000}
,{"type": "segment", "start": [0.157216,-1.517932], "end": [0.157912, -1.517172], "width": 0.000000}
,{"type": "segment", "start": [0.157912,-1.517172], "end": [0.158539, -1.516355], "width": 0.000000}
,{"type": "segment", "start": [0.158539,-1.516355], "end": [0.159093, -1.515486], "width": 0.000000}
,{"type": "segment", "start": [0.159093,-1.515486], "end": [0.159569, -1.514572], "width": 0.000000}
,{"type": "segment", "start": [0.159569,-1.514572], "end": [0.159963, -1.513620], "width": 0.000000}
,{"type": "segment", "start": [0.159963,-1.513620], "end": [0.160272, -1.512637], "width": 0.000000}
,{"type": "segment", "start": [0.160272,-1.512637], "end": [0.160496, -1.511631], "width": 0.000000}
,{"type": "segment", "start": [0.160496,-1.511631], "end": [0.160630, -1.510609], "width": 0.000000}
,{"type": "segment", "start": [0.160630,-1.510609], "end": [0.160675, -1.509580], "width": 0.000000}
,{"type": "segment", "start": [0.160675,-1.509580], "end": [0.160675, -1.489895], "width": 0.000000}
,{"type": "segment", "start": [0.160675,-1.489895], "end": [0.160630, -1.488866], "width": 0.000000}
,{"type": "segment", "start": [0.160630,-1.488866], "end": [0.160496, -1.487844], "width": 0.000000}
,{"type": "segment", "start": [0.160496,-1.487844], "end": [0.160272, -1.486838], "width": 0.000000}
,{"type": "segment", "start": [0.160272,-1.486838], "end": [0.159963, -1.485856], "width": 0.000000}
,{"type": "segment", "start": [0.159963,-1.485856], "end": [0.159569, -1.484904], "width": 0.000000}
,{"type": "segment", "start": [0.159569,-1.484904], "end": [0.159093, -1.483990], "width": 0.000000}
,{"type": "segment", "start": [0.159093,-1.483990], "end": [0.158539, -1.483121], "width": 0.000000}
,{"type": "segment", "start": [0.158539,-1.483121], "end": [0.157912, -1.482303], "width": 0.000000}
,{"type": "segment", "start": [0.157912,-1.482303], "end": [0.157216, -1.481544], "width": 0.000000}
,{"type": "segment", "start": [0.157216,-1.481544], "end": [0.156456, -1.480848], "width": 0.000000}
,{"type": "segment", "start": [0.156456,-1.480848], "end": [0.155639, -1.480220], "width": 0.000000}
,{"type": "segment", "start": [0.155639,-1.480220], "end": [0.154769, -1.479667], "width": 0.000000}
,{"type": "segment", "start": [0.154769,-1.479667], "end": [0.153856, -1.479191], "width": 0.000000}
,{"type": "segment", "start": [0.153856,-1.479191], "end": [0.152904, -1.478797], "width": 0.000000}
,{"type": "segment", "start": [0.152904,-1.478797], "end": [0.151921, -1.478487], "width": 0.000000}
,{"type": "segment", "start": [0.151921,-1.478487], "end": [0.150915, -1.478263], "width": 0.000000}
,{"type": "segment", "start": [0.150915,-1.478263], "end": [0.149893, -1.478129], "width": 0.000000}
,{"type": "segment", "start": [0.149893,-1.478129], "end": [0.148864, -1.478084], "width": 0.000000}
,{"type": "segment", "start": [0.148864,-1.478084], "end": [0.147835, -1.478129], "width": 0.000000}
,{"type": "segment", "start": [0.147835,-1.478129], "end": [0.146813, -1.478263], "width": 0.000000}
,{"type": "segment", "start": [0.146813,-1.478263], "end": [0.145807, -1.478487], "width": 0.000000}
,{"type": "segment", "start": [0.145807,-1.478487], "end": [0.144824, -1.478797], "width": 0.000000}
,{"type": "segment", "start": [0.144824,-1.478797], "end": [0.143872, -1.479191], "width": 0.000000}
,{"type": "segment", "start": [0.143872,-1.479191], "end": [0.142958, -1.479667], "width": 0.000000}
,{"type": "segment", "start": [0.142958,-1.479667], "end": [0.142089, -1.480220], "width": 0.000000}
,{"type": "segment", "start": [0.142089,-1.480220], "end": [0.141272, -1.480848], "width": 0.000000}
,{"type": "segment", "start": [0.141272,-1.480848], "end": [0.140512, -1.481544], "width": 0.000000}
,{"type": "segment", "start": [0.140512,-1.481544], "end": [0.139816, -1.482303], "width": 0.000000}
,{"type": "segment", "start": [0.139816,-1.482303], "end": [0.139189, -1.483121], "width": 0.000000}
,{"type": "segment", "start": [0.139189,-1.483121], "end": [0.138635, -1.483990], "width": 0.000000}
,{"type": "segment", "start": [0.138635,-1.483990], "end": [0.138159, -1.484904], "width": 0.000000}
,{"type": "segment", "start": [0.138159,-1.484904], "end": [0.137765, -1.485856], "width": 0.000000}
,{"type": "segment", "start": [0.137765,-1.485856], "end": [0.137455, -1.486838], "width": 0.000000}
,{"type": "segment", "start": [0.137455,-1.486838], "end": [0.137232, -1.487844], "width": 0.000000}
,{"type": "segment", "start": [0.137232,-1.487844], "end": [0.137098, -1.488866], "width": 0.000000}
,{"type": "segment", "start": [0.137098,-1.488866], "end": [0.137053, -1.489895], "width": 0.000000}
,{"type": "segment", "start": [-0.012992,-2.088583], "end": [-0.012992, 0.076772], "width": 0.000000}
,{"type": "arc", "svgpath": "M -0.012992 0.076772 A 0.098425 0.098425 0 0 0 0.085433 0.175197", "width": 0.000000}
,{"type": "segment", "start": [0.085433,0.175197], "end": [2.250787, 0.175197], "width": 0.000000}
,{"type": "arc", "svgpath": "M 2.250787 0.175197 A 0.098425 0.098425 0 0 0 2.349213 0.076772", "width": 0.000000}
,{"type": "segment", "start": [2.349213,0.076772], "end": [2.349213, -2.088583], "width": 0.000000}
,{"type": "arc", "svgpath": "M 2.349213 -2.088583 A 0.098425 0.098425 0 0 0 2.250787 -2.187008", "width": 0.000000}
,{"type": "segment", "start": [2.250787,-2.187008], "end": [0.085433, -2.187008], "width": 0.000000}
,{"type": "arc", "svgpath": "M 0.085433 -2.187008 A 0.098425 0.098425 0 0 0 -0.012992 -2.088583", "width": 0.000000}
,{"type": "circle", "start": [2.231102,-2.068898], "radius": 0.051181, "width": 0.006000}
,{"type": "circle", "start": [0.105118,0.057087], "radius": 0.051181, "width": 0.006000}
,{"type": "circle", "start": [2.231102,0.057087], "radius": 0.051181, "width": 0.006000}
,{"type": "circle", "start": [0.105118,-2.068898], "radius": 0.051181, "width": 0.006000}
,{"type": "circle", "start": [0.011724,-0.864173], "radius": 0.013780, "width": 0.005000}
,{"type": "circle", "start": [0.011724,-0.706693], "radius": 0.013780, "width": 0.005000}
,{"type": "circle", "start": [0.062248,-1.497768], "radius": 0.021654, "width": 0.005000}
,{"type": "circle", "start": [0.062248,-1.300917], "radius": 0.021654, "width": 0.005000}
],
"drawings": {
"silkscreen": {
"F": [
{"type": "segment", "start": [0.561024,-1.515748], "end": [0.561516, -1.297244], "width": 0.004921}
,{"type": "segment", "start": [0.561516,-1.297244], "end": [0.718996, -1.297244], "width": 0.004921}
,{"type": "segment", "start": [0.718996,-1.297244], "end": [0.718504, -1.515748], "width": 0.004921}
,{"type": "segment", "start": [0.718504,-1.515748], "end": [0.561024, -1.515748], "width": 0.004921}
,{"type": "segment", "start": [0.383858,-1.663386], "end": [0.472441, -1.663386], "width": 0.004921}
,{"type": "segment", "start": [0.472441,-1.663386], "end": [0.472441, -1.545276], "width": 0.004921}
,{"type": "segment", "start": [0.472441,-1.545276], "end": [0.383858, -1.545276], "width": 0.004921}
,{"type": "segment", "start": [0.383858,-1.545276], "end": [0.383858, -1.663386], "width": 0.004921}
,{"type": "segment", "start": [0.246063,-1.574803], "end": [0.246063, -1.417323], "width": 0.004921}
,{"type": "segment", "start": [0.246063,-1.417323], "end": [0.314961, -1.417323], "width": 0.004921}
,{"type": "segment", "start": [0.314961,-1.417323], "end": [0.314961, -1.574803], "width": 0.004921}
,{"type": "segment", "start": [0.314961,-1.574803], "end": [0.246063, -1.574803], "width": 0.004921}
,{"type": "segment", "start": [1.043307,-0.600394], "end": [1.131890, -0.600394], "width": 0.004921}
,{"type": "segment", "start": [1.131890,-0.600394], "end": [1.131890, -0.501969], "width": 0.004921}
,{"type": "segment", "start": [1.131890,-0.501969], "end": [1.043307, -0.501969], "width": 0.004921}
,{"type": "segment", "start": [1.043307,-0.501969], "end": [1.043307, -0.600394], "width": 0.004921}
,{"type": "segment", "start": [0.698819,-0.295276], "end": [0.698819, -0.147638], "width": 0.004921}
,{"type": "segment", "start": [0.698819,-0.147638], "end": [0.767717, -0.147638], "width": 0.004921}
,{"type": "segment", "start": [0.767717,-0.147638], "end": [0.767717, -0.295276], "width": 0.004921}
,{"type": "segment", "start": [0.767717,-0.295276], "end": [0.698819, -0.295276], "width": 0.004921}
,{"type": "segment", "start": [0.305118,-0.039370], "end": [0.413386, -0.039370], "width": 0.004921}
,{"type": "segment", "start": [0.413386,-0.039370], "end": [0.413386, 0.068898], "width": 0.004921}
,{"type": "segment", "start": [0.413386,0.068898], "end": [0.305118, 0.068898], "width": 0.004921}
,{"type": "segment", "start": [0.305118,0.068898], "end": [0.305118, -0.039370], "width": 0.004921}
,{"type": "segment", "start": [-0.009843,-1.953740], "end": [0.344488, -1.953740], "width": 0.003150}
,{"type": "segment", "start": [0.344488,-1.953740], "end": [0.831693, -1.953740], "width": 0.003150}
,{"type": "segment", "start": [0.831693,-1.953740], "end": [0.831693, -1.707677], "width": 0.003150}
,{"type": "segment", "start": [0.831693,-1.707677], "end": [0.344488, -1.707677], "width": 0.003150}
,{"type": "segment", "start": [0.344488,-1.707677], "end": [-0.009843, -1.707677], "width": 0.003150}
,{"type": "segment", "start": [0.344488,-1.953740], "end": [0.344488, -1.707677], "width": 0.003150}
,{"type": "segment", "start": [-0.009843,-1.953740], "end": [-0.009843, -1.707677], "width": 0.003150}
,{"type": "segment", "start": [0.759843,-1.619094], "end": [0.759843, -1.687992], "width": 0.003150}
,{"type": "segment", "start": [0.759843,-1.687992], "end": [1.053150, -1.687992], "width": 0.003150}
,{"type": "segment", "start": [1.053150,-1.687992], "end": [1.053150, -1.620571], "width": 0.003150}
,{"type": "segment", "start": [0.759843,-0.801181], "end": [0.759843, -0.738189], "width": 0.003150}
,{"type": "segment", "start": [0.759843,-0.738189], "end": [1.090059, -0.738189], "width": 0.003150}
,{"type": "segment", "start": [1.090059,-0.738189], "end": [1.090059, -0.805610], "width": 0.003150}
,{"type": "segment", "start": [0.760335,-0.799213], "end": [0.759843, -0.799213], "width": 0.003150}
,{"type": "segment", "start": [0.759843,-0.799213], "end": [0.759843, -0.809055], "width": 0.003150}
,{"type": "segment", "start": [1.920768,-1.824803], "end": [1.920768, -1.793799], "width": 0.003150}
,{"type": "segment", "start": [1.921752,-1.809547], "end": [1.936516, -1.824311], "width": 0.003150}
,{"type": "segment", "start": [1.936516,-1.824311], "end": [1.937008, -1.824311], "width": 0.003150}
,{"type": "segment", "start": [1.937008,-1.824311], "end": [1.937008, -1.796260], "width": 0.003150}
,{"type": "segment", "start": [1.937008,-1.796260], "end": [1.924213, -1.809055], "width": 0.003150}
,{"type": "segment", "start": [1.924213,-1.809055], "end": [1.923720, -1.809055], "width": 0.003150}
,{"type": "segment", "start": [0.864554,-2.046002], "end": [0.842870, -2.002633], "width": 0.004000}
,{"type": "segment", "start": [0.842870,-2.002633], "end": [0.886239, -2.024318], "width": 0.004000}
,{"type": "segment", "start": [0.899242,-2.011315], "end": [0.875750, -1.987823], "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.875750 -1.987823 A 0.012778 0.012778 0 1 0 0.893820 -1.969753", "width": 0.004000}
,{"type": "segment", "start": [0.893820,-1.969753], "end": [0.917312, -1.993244], "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.909377 -1.936126 A 0.010222 0.010222 0 0 0 0.923833 -1.936126", "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.903052 -1.951486 A 0.021596 0.021596 0 0 0 0.909377 -1.936126", "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.939193 -1.971363 A 0.010222 0.010222 0 0 0 0.924736 -1.971363", "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.944614 -1.960521 A 0.019169 0.019169 0 0 0 0.939193 -1.971363", "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.924736 -1.971363 A 0.010382 0.010382 0 0 0 0.922026 -1.961425", "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.923833 -1.936126 A 0.010382 0.010382 0 0 0 0.926544 -1.946064", "width": 0.004000}
,{"type": "segment", "start": [0.926544,-1.946064], "end": [0.922026, -1.961425], "width": 0.004000}
,{"type": "segment", "start": [0.948896,-1.932747], "end": [0.957931, -1.923712], "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.939860 -1.905642 A 0.012778 0.012778 0 1 0 0.957931 -1.923712", "width": 0.004000}
,{"type": "segment", "start": [0.939860,-1.905642], "end": [0.930825, -1.914677], "width": 0.004000}
,{"type": "segment", "start": [0.930825,-1.914677], "end": [0.963352, -1.947204], "width": 0.004000}
,{"type": "segment", "start": [0.963352,-1.947204], "end": [0.972387, -1.938169], "width": 0.004000}
,{"type": "arc", "svgpath": "M 0.957931 -1.923712 A 0.010222 0.010222 0 0 0 0.972387 -1.938169", "width": 0.004000}
,{"type": "segment", "start": [1.034677,-1.901606], "end": [1.080677, -1.916940], "width": 0.004000}
,{"type": "segment", "start": [1.080677,-1.916940], "end": [1.034677, -1.932273], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.080677 -1.962995 A 0.010222 0.010222 0 0 0 1.070455 -1.973217", "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.074288 -1.947662 A 0.021595 0.021595 0 0 0 1.080677 -1.962995", "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.034677 -1.959162 A 0.010222 0.010222 0 0 0 1.044899 -1.948939", "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.038511 -1.970662 A 0.019166 0.019166 0 0 0 1.034677 -1.959162", "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.044899 -1.948939 A 0.010382 0.010382 0 0 0 1.053844 -1.954051", "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.070455 -1.973217 A 0.010382 0.010382 0 0 0 1.061511 -1.968106", "width": 0.004000}
,{"type": "segment", "start": [1.061511,-1.968106], "end": [1.053844, -1.954051], "width": 0.004000}
,{"type": "segment", "start": [1.080677,-1.992952], "end": [1.034677, -1.992952], "width": 0.004000}
,{"type": "segment", "start": [1.034677,-1.992952], "end": [1.034677, -2.005729], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.060233 -2.005729 A 0.012778 0.012778 0 0 0 1.034677 -2.005729", "width": 0.004000}
,{"type": "segment", "start": [1.060233,-2.005729], "end": [1.060233, -1.992952], "width": 0.004000}
,{"type": "segment", "start": [1.080677,-2.018507], "end": [1.060233, -2.008285], "width": 0.004000}
,{"type": "segment", "start": [1.080677,-2.057975], "end": [1.080677, -2.047753], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.070455 -2.037531 A 0.010222 0.010222 0 0 0 1.080677 -2.047753", "width": 0.004000}
,{"type": "segment", "start": [1.070455,-2.037531], "end": [1.044899, -2.037531], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.034677 -2.047753 A 0.010222 0.010222 0 0 0 1.044899 -2.037531", "width": 0.004000}
,{"type": "segment", "start": [1.034677,-2.047753], "end": [1.034677, -2.057975], "width": 0.004000}
,{"type": "segment", "start": [1.138733,-1.934961], "end": [1.182102, -1.913277], "width": 0.004000}
,{"type": "segment", "start": [1.182102,-1.913277], "end": [1.160417, -1.956646], "width": 0.004000}
,{"type": "segment", "start": [1.206152,-1.937327], "end": [1.173625, -1.969854], "width": 0.004000}
,{"type": "segment", "start": [1.173625,-1.969854], "end": [1.182660, -1.978889], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.200731 -1.960818 A 0.012778 0.012778 0 0 0 1.182660 -1.978889", "width": 0.004000}
,{"type": "segment", "start": [1.200731,-1.960818], "end": [1.191695, -1.951783], "width": 0.004000}
,{"type": "segment", "start": [1.224222,-1.955397], "end": [1.202538, -1.962625], "width": 0.004000}
,{"type": "segment", "start": [1.253346,-1.984521], "end": [1.238890, -1.970065], "width": 0.004000}
,{"type": "segment", "start": [1.238890,-1.970065], "end": [1.206363, -2.002592], "width": 0.004000}
,{"type": "segment", "start": [1.206363,-2.002592], "end": [1.220820, -2.017048], "width": 0.004000}
,{"type": "segment", "start": [1.220820,-1.988135], "end": [1.231662, -1.998978], "width": 0.004000}
,{"type": "segment", "start": [1.260983,-2.028299], "end": [1.266404, -2.033720], "width": 0.004000}
,{"type": "segment", "start": [1.266404,-2.033720], "end": [1.284475, -2.015649], "width": 0.004000}
,{"type": "segment", "start": [1.284475,-2.015649], "end": [1.273632, -2.004807], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.259176 -2.004807 A 0.010222 0.010222 0 0 0 1.273632 -2.004807", "width": 0.004000}
,{"type": "segment", "start": [1.259176,-2.004807], "end": [1.241106, -2.022878], "width": 0.004000}
,{"type": "arc", "svgpath": "M 1.241105 -2.037334 A 0.010222 0.010222 0 0 0 1.241106 -2.022878", "width": 0.004000}
,{"type": "segment", "start": [1.241105,-2.037334], "end": [1.251948, -2.048176], "width": 0.004000}
,{"type": "segment", "start": [2.157512,-1.662173], "end": [2.157512, -1.616173], "width": 0.004000}
,{"type": "segment", "start": [2.157512,-1.616173], "end": [2.177956, -1.616173], "width": 0.004000}
,{"type": "segment", "start": [2.198701,-1.662173], "end": [2.198701, -1.616173], "width": 0.004000}
,{"type": "segment", "start": [2.193590,-1.616173], "end": [2.203812, -1.616173], "width": 0.004000}
,{"type": "segment", "start": [2.193590,-1.662173], "end": [2.203812, -1.662173], "width": 0.004000}
,{"type": "segment", "start": [2.224090,-1.616173], "end": [2.224090, -1.662173], "width": 0.004000}
,{"type": "segment", "start": [2.224090,-1.662173], "end": [2.236867, -1.662173], "width": 0.004000}
,{"type": "arc", "svgpath": "M 2.236867 -1.636618 A 0.012778 0.012778 0 0 0 2.236867 -1.662173", "width": 0.004000}
,{"type": "segment", "start": [2.236867,-1.636618], "end": [2.224090, -1.636618], "width": 0.004000}
,{"type": "segment", "start": [2.266923,-1.628951], "end": [2.266923, -1.649395], "width": 0.004000}
,{"type": "arc", "svgpath": "M 2.292478 -1.649395 A 0.012778 0.012778 0 0 0 2.266923 -1.649395", "width": 0.004000}
,{"type": "segment", "start": [2.292478,-1.649395], "end": [2.292478, -1.628951], "width": 0.004000}
,{"type": "arc", "svgpath": "M 2.266923 -1.628951 A 0.012778 0.012778 0 0 0 2.292478 -1.628951", "width": 0.004000}
,{"type": "segment", "start": [1.534612,-1.449793], "end": [1.549422, -1.434983], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.549422 -1.434983 A 0.008055 0.008055 0 1 0 1.560814 -1.446375", "width": 0.003000}
,{"type": "segment", "start": [1.560814,-1.446375], "end": [1.546004, -1.461185], "width": 0.003000}
,{"type": "segment", "start": [1.577168,-1.451336], "end": [1.556662, -1.471842], "width": 0.003000}
,{"type": "segment", "start": [1.556662,-1.471842], "end": [1.562358, -1.477539], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.573750 -1.466146 A 0.008056 0.008056 0 0 0 1.562358 -1.477539", "width": 0.003000}
,{"type": "segment", "start": [1.573750,-1.466146], "end": [1.568054, -1.460450], "width": 0.003000}
,{"type": "segment", "start": [1.597204,-1.471373], "end": [1.576698, -1.491879], "width": 0.003000}
,{"type": "segment", "start": [1.576698,-1.491879], "end": [1.582394, -1.497575], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.593787 -1.497575 A 0.008055 0.008055 0 0 0 1.582394 -1.497575", "width": 0.003000}
,{"type": "segment", "start": [1.593787,-1.497575], "end": [1.602901, -1.488461], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.602901 -1.477069 A 0.008056 0.008056 0 0 0 1.602901 -1.488461", "width": 0.003000}
,{"type": "segment", "start": [1.602900,-1.477069], "end": [1.597204, -1.471373], "width": 0.003000}
,{"type": "segment", "start": [1.599365,-1.514546], "end": [1.619871, -1.494040], "width": 0.003000}
,{"type": "segment", "start": [1.617593,-1.491761], "end": [1.622149, -1.496318], "width": 0.003000}
,{"type": "segment", "start": [1.597086,-1.512267], "end": [1.601643, -1.516824], "width": 0.003000}
,{"type": "segment", "start": [1.662657,-1.438400], "end": [1.653543, -1.429287], "width": 0.003000}
,{"type": "segment", "start": [1.653543,-1.429287], "end": [1.633037, -1.449793], "width": 0.003000}
,{"type": "segment", "start": [1.633037,-1.449793], "end": [1.642151, -1.458906], "width": 0.003000}
,{"type": "segment", "start": [1.642151,-1.440679], "end": [1.648986, -1.447514], "width": 0.003000}
,{"type": "segment", "start": [1.669487,-1.445230], "end": [1.668348, -1.446369], "width": 0.003000}
,{"type": "segment", "start": [1.668348,-1.446369], "end": [1.669487, -1.447509], "width": 0.003000}
,{"type": "segment", "start": [1.669487,-1.447509], "end": [1.670626, -1.446369], "width": 0.003000}
,{"type": "segment", "start": [1.670626,-1.446369], "end": [1.669487, -1.445230], "width": 0.003000}
,{"type": "segment", "start": [1.658788,-1.475544], "end": [1.673598, -1.460734], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.673598 -1.460734 A 0.008055 0.008055 0 1 0 1.684990 -1.472126", "width": 0.003000}
,{"type": "segment", "start": [1.684990,-1.472126], "end": [1.670180, -1.486936], "width": 0.003000}
,{"type": "segment", "start": [1.701344,-1.477087], "end": [1.680838, -1.497593], "width": 0.003000}
,{"type": "segment", "start": [1.680838,-1.497593], "end": [1.686534, -1.503289], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.697926 -1.491897 A 0.008056 0.008056 0 0 0 1.686534 -1.503289", "width": 0.003000}
,{"type": "segment", "start": [1.697926,-1.491897], "end": [1.692230, -1.486201], "width": 0.003000}
,{"type": "segment", "start": [1.721381,-1.497124], "end": [1.700875, -1.517630], "width": 0.003000}
,{"type": "segment", "start": [1.700875,-1.517630], "end": [1.706571, -1.523326], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.717963 -1.523326 A 0.008055 0.008055 0 0 0 1.706571 -1.523326", "width": 0.003000}
,{"type": "segment", "start": [1.717963,-1.523326], "end": [1.727077, -1.514212], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.727077 -1.502820 A 0.008056 0.008056 0 0 0 1.727077 -1.514212", "width": 0.003000}
,{"type": "segment", "start": [1.727077,-1.502820], "end": [1.721381, -1.497124], "width": 0.003000}
,{"type": "segment", "start": [1.723541,-1.540297], "end": [1.744047, -1.519791], "width": 0.003000}
,{"type": "segment", "start": [1.741769,-1.517512], "end": [1.746326, -1.522069], "width": 0.003000}
,{"type": "segment", "start": [1.721263,-1.538018], "end": [1.725820, -1.542575], "width": 0.003000}
,{"type": "segment", "start": [1.438465,-1.452071], "end": [1.458971, -1.431565], "width": 0.003000}
,{"type": "segment", "start": [1.456693,-1.429287], "end": [1.461250, -1.433844], "width": 0.003000}
,{"type": "segment", "start": [1.436187,-1.449793], "end": [1.440743, -1.454350], "width": 0.003000}
,{"type": "segment", "start": [1.468584,-1.441178], "end": [1.467445, -1.442317], "width": 0.003000}
,{"type": "segment", "start": [1.467445,-1.442317], "end": [1.468584, -1.443456], "width": 0.003000}
,{"type": "segment", "start": [1.468584,-1.443456], "end": [1.469723, -1.442317], "width": 0.003000}
,{"type": "segment", "start": [1.469723,-1.442317], "end": [1.468584, -1.441178], "width": 0.003000}
,{"type": "segment", "start": [1.457885,-1.471491], "end": [1.472695, -1.456681], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.472695 -1.456681 A 0.008055 0.008055 0 1 0 1.484087 -1.468073", "width": 0.003000}
,{"type": "segment", "start": [1.484087,-1.468073], "end": [1.469277, -1.482883], "width": 0.003000}
,{"type": "segment", "start": [1.500441,-1.473035], "end": [1.479935, -1.493541], "width": 0.003000}
,{"type": "segment", "start": [1.479935,-1.493541], "end": [1.485631, -1.499237], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.497023 -1.487844 A 0.008056 0.008056 0 0 0 1.485631 -1.499237", "width": 0.003000}
,{"type": "segment", "start": [1.497023,-1.487844], "end": [1.491327, -1.482148], "width": 0.003000}
,{"type": "segment", "start": [1.520478,-1.493071], "end": [1.499971, -1.513578], "width": 0.003000}
,{"type": "segment", "start": [1.499971,-1.513578], "end": [1.505668, -1.519274], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.517060 -1.519274 A 0.008055 0.008055 0 0 0 1.505668 -1.519274", "width": 0.003000}
,{"type": "segment", "start": [1.517060,-1.519274], "end": [1.526174, -1.510160], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.526174 -1.498767 A 0.008056 0.008056 0 0 0 1.526174 -1.510160", "width": 0.003000}
,{"type": "segment", "start": [1.526174,-1.498767], "end": [1.520478, -1.493071], "width": 0.003000}
,{"type": "segment", "start": [1.522638,-1.536244], "end": [1.543144, -1.515738], "width": 0.003000}
,{"type": "segment", "start": [1.540866,-1.513460], "end": [1.545423, -1.518016], "width": 0.003000}
,{"type": "segment", "start": [1.520360,-1.533966], "end": [1.524916, -1.538523], "width": 0.003000}
,{"type": "segment", "start": [1.697460,-1.615673], "end": [1.691015, -1.615673], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.684571 -1.622118 A 0.006444 0.006444 0 0 0 1.691015 -1.615673", "width": 0.003000}
,{"type": "segment", "start": [1.684571,-1.622118], "end": [1.684571, -1.638229], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.691015 -1.644673 A 0.006445 0.006445 0 0 0 1.684571 -1.638229", "width": 0.003000}
,{"type": "segment", "start": [1.691015,-1.644673], "end": [1.697460, -1.644673], "width": 0.003000}
,{"type": "segment", "start": [1.709823,-1.615673], "end": [1.709823, -1.644673], "width": 0.003000}
,{"type": "segment", "start": [1.709823,-1.644673], "end": [1.717879, -1.644673], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.717879 -1.628562 A 0.008056 0.008056 0 0 0 1.717879 -1.644673", "width": 0.003000}
,{"type": "segment", "start": [1.717879,-1.628562], "end": [1.709823, -1.628562], "width": 0.003000}
,{"type": "segment", "start": [1.725934,-1.615673], "end": [1.719490, -1.628562], "width": 0.003000}
,{"type": "segment", "start": [1.750659,-1.631784], "end": [1.755493, -1.631784], "width": 0.003000}
,{"type": "segment", "start": [1.755493,-1.631784], "end": [1.755493, -1.615673], "width": 0.003000}
,{"type": "segment", "start": [1.755493,-1.615673], "end": [1.745826, -1.615673], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.739382 -1.622118 A 0.006444 0.006444 0 0 0 1.745826 -1.615673", "width": 0.003000}
,{"type": "segment", "start": [1.739382,-1.622118], "end": [1.739382, -1.638229], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.745826 -1.644673 A 0.006445 0.006445 0 0 0 1.739382 -1.638229", "width": 0.003000}
,{"type": "segment", "start": [1.745826,-1.644673], "end": [1.755493, -1.644673], "width": 0.003000}
,{"type": "segment", "start": [2.088114,-1.813959], "end": [2.107447, -1.813959], "width": 0.003000}
,{"type": "segment", "start": [2.097781,-1.804292], "end": [2.097781, -1.823625], "width": 0.003000}
,{"type": "segment", "start": [2.088114,-1.774589], "end": [2.107447, -1.774589], "width": 0.003000}
,{"type": "segment", "start": [1.724958,-1.339583], "end": [1.713598, -1.339583], "width": 0.002000}
,{"type": "segment", "start": [1.713598,-1.339583], "end": [1.713598, -1.365142], "width": 0.002000}
,{"type": "segment", "start": [1.713598,-1.365142], "end": [1.724958, -1.365142], "width": 0.002000}
,{"type": "segment", "start": [1.713598,-1.353782], "end": [1.722118, -1.353782], "width": 0.002000}
,{"type": "segment", "start": [1.733170,-1.339583], "end": [1.733170, -1.341003], "width": 0.002000}
,{"type": "segment", "start": [1.733170,-1.341003], "end": [1.734590, -1.341003], "width": 0.002000}
,{"type": "segment", "start": [1.734590,-1.341003], "end": [1.734590, -1.339583], "width": 0.002000}
,{"type": "segment", "start": [1.734590,-1.339583], "end": [1.733170, -1.339583], "width": 0.002000}
,{"type": "segment", "start": [1.744969,-1.365142], "end": [1.744969, -1.346682], "width": 0.002000}
,{"type": "arc", "svgpath": "M 1.744969 -1.346682 A 0.007100 0.007100 0 0 0 1.759168 -1.346682", "width": 0.002000}
,{"type": "segment", "start": [1.759168,-1.346682], "end": [1.759168, -1.365142], "width": 0.002000}
,{"type": "segment", "start": [1.771776,-1.339583], "end": [1.771776, -1.365142], "width": 0.002000}
,{"type": "segment", "start": [1.771776,-1.365142], "end": [1.778875, -1.365142], "width": 0.002000}
,{"type": "arc", "svgpath": "M 1.778875 -1.350942 A 0.007100 0.007100 0 0 0 1.778875 -1.365142", "width": 0.002000}
,{"type": "segment", "start": [1.778875,-1.350942], "end": [1.771776, -1.350942], "width": 0.002000}
,{"type": "segment", "start": [1.796228,-1.339583], "end": [1.796228, -1.365142], "width": 0.002000}
,{"type": "segment", "start": [1.796228,-1.365142], "end": [1.803328, -1.365142], "width": 0.002000}
,{"type": "arc", "svgpath": "M 1.810428 -1.358042 A 0.007100 0.007100 0 0 0 1.803328 -1.365142", "width": 0.002000}
,{"type": "segment", "start": [1.810428,-1.358042], "end": [1.810428, -1.346682], "width": 0.002000}
,{"type": "arc", "svgpath": "M 1.803328 -1.339583 A 0.007100 0.007100 0 0 0 1.810428 -1.346682", "width": 0.002000}
,{"type": "segment", "start": [1.803328,-1.339583], "end": [1.796228, -1.339583], "width": 0.002000}
,{"type": "segment", "start": [1.823997,-1.365142], "end": [1.823997, -1.339583], "width": 0.002000}
,{"type": "segment", "start": [1.821157,-1.339583], "end": [1.826837, -1.339583], "width": 0.002000}
,{"type": "segment", "start": [1.821157,-1.365142], "end": [1.826837, -1.365142], "width": 0.002000}
,{"type": "segment", "start": [1.763311,-1.270657], "end": [1.772978, -1.241657], "width": 0.003000}
,{"type": "segment", "start": [1.772978,-1.241657], "end": [1.782644, -1.270657], "width": 0.003000}
,{"type": "segment", "start": [1.806520,-1.241657], "end": [1.800076, -1.241657], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.793631 -1.248102 A 0.006444 0.006444 0 0 0 1.800076 -1.241657", "width": 0.003000}
,{"type": "segment", "start": [1.793631,-1.248102], "end": [1.793631, -1.264213], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.800076 -1.270657 A 0.006445 0.006445 0 0 0 1.793631 -1.264213", "width": 0.003000}
,{"type": "segment", "start": [1.800076,-1.270657], "end": [1.806520, -1.270657], "width": 0.003000}
,{"type": "segment", "start": [1.830520,-1.241657], "end": [1.824075, -1.241657], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.817631 -1.248102 A 0.006444 0.006444 0 0 0 1.824075 -1.241657", "width": 0.003000}
,{"type": "segment", "start": [1.817631,-1.248102], "end": [1.817631, -1.264213], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.824075 -1.270657 A 0.006445 0.006445 0 0 0 1.817631 -1.264213", "width": 0.003000}
,{"type": "segment", "start": [1.824075,-1.270657], "end": [1.830520, -1.270657], "width": 0.003000}
,{"type": "segment", "start": [1.428623,-1.097740], "end": [1.449129, -1.077234], "width": 0.003000}
,{"type": "segment", "start": [1.446850,-1.074956], "end": [1.451407, -1.079513], "width": 0.003000}
,{"type": "segment", "start": [1.426344,-1.095462], "end": [1.430901, -1.100019], "width": 0.003000}
,{"type": "segment", "start": [1.458741,-1.086847], "end": [1.457602, -1.087986], "width": 0.003000}
,{"type": "segment", "start": [1.457602,-1.087986], "end": [1.458741, -1.089125], "width": 0.003000}
,{"type": "segment", "start": [1.458741,-1.089125], "end": [1.459880, -1.087986], "width": 0.003000}
,{"type": "segment", "start": [1.459880,-1.087986], "end": [1.458741, -1.086847], "width": 0.003000}
,{"type": "segment", "start": [1.468691,-1.096797], "end": [1.448185, -1.117303], "width": 0.003000}
,{"type": "segment", "start": [1.448185,-1.117303], "end": [1.453881, -1.122999], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.465274 -1.111607 A 0.008056 0.008056 0 0 0 1.453881 -1.122999", "width": 0.003000}
,{"type": "segment", "start": [1.465273,-1.111607], "end": [1.459577, -1.105911], "width": 0.003000}
,{"type": "segment", "start": [1.480083,-1.108189], "end": [1.466413, -1.112746], "width": 0.003000}
,{"type": "segment", "start": [1.487774,-1.115880], "end": [1.480938, -1.150056], "width": 0.003000}
,{"type": "segment", "start": [1.467268,-1.136386], "end": [1.501445, -1.129550], "width": 0.003000}
,{"type": "segment", "start": [1.545275,-1.074956], "end": [1.524769, -1.095462], "width": 0.003000}
,{"type": "segment", "start": [1.524769,-1.095462], "end": [1.530465, -1.101158], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.541858 -1.089766 A 0.008056 0.008056 0 0 0 1.530465 -1.101158", "width": 0.003000}
,{"type": "segment", "start": [1.541858,-1.089766], "end": [1.536162, -1.084070], "width": 0.003000}
,{"type": "segment", "start": [1.556668,-1.086348], "end": [1.542997, -1.090905], "width": 0.003000}
,{"type": "segment", "start": [1.564358,-1.094039], "end": [1.557523, -1.128216], "width": 0.003000}
,{"type": "segment", "start": [1.543852,-1.114545], "end": [1.578029, -1.107709], "width": 0.003000}
,{"type": "segment", "start": [1.584879,-1.114560], "end": [1.583740, -1.115699], "width": 0.003000}
,{"type": "segment", "start": [1.583740,-1.115699], "end": [1.584879, -1.116838], "width": 0.003000}
,{"type": "segment", "start": [1.584879,-1.116838], "end": [1.586018, -1.115699], "width": 0.003000}
,{"type": "segment", "start": [1.586018,-1.115699], "end": [1.584879, -1.114560], "width": 0.003000}
,{"type": "segment", "start": [1.594686,-1.124367], "end": [1.574180, -1.144873], "width": 0.003000}
,{"type": "segment", "start": [1.574180,-1.144873], "end": [1.579876, -1.150569], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.591269 -1.150569 A 0.008055 0.008055 0 0 0 1.579876 -1.150569", "width": 0.003000}
,{"type": "segment", "start": [1.591269,-1.150569], "end": [1.600383, -1.141455], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.600383 -1.130063 A 0.008056 0.008056 0 0 0 1.600383 -1.141455", "width": 0.003000}
,{"type": "segment", "start": [1.600382,-1.130063], "end": [1.594686, -1.124367], "width": 0.003000}
,{"type": "segment", "start": [1.652814,-1.084070], "end": [1.643701, -1.074956], "width": 0.003000}
,{"type": "segment", "start": [1.643701,-1.074956], "end": [1.623195, -1.095462], "width": 0.003000}
,{"type": "segment", "start": [1.623195,-1.095462], "end": [1.632308, -1.104576], "width": 0.003000}
,{"type": "segment", "start": [1.632308,-1.086348], "end": [1.639144, -1.093183], "width": 0.003000}
,{"type": "segment", "start": [1.659644,-1.090900], "end": [1.658505, -1.092039], "width": 0.003000}
,{"type": "segment", "start": [1.658505,-1.092039], "end": [1.659644, -1.093178], "width": 0.003000}
,{"type": "segment", "start": [1.659644,-1.093178], "end": [1.660783, -1.092039], "width": 0.003000}
,{"type": "segment", "start": [1.660783,-1.092039], "end": [1.659644, -1.090900], "width": 0.003000}
,{"type": "segment", "start": [1.669594,-1.100850], "end": [1.649088, -1.121356], "width": 0.003000}
,{"type": "segment", "start": [1.649088,-1.121356], "end": [1.654784, -1.127052], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.666177 -1.115659 A 0.008056 0.008056 0 0 0 1.654784 -1.127052", "width": 0.003000}
,{"type": "segment", "start": [1.666177,-1.115659], "end": [1.660480, -1.109963], "width": 0.003000}
,{"type": "segment", "start": [1.680986,-1.112242], "end": [1.667316, -1.116798], "width": 0.003000}
,{"type": "segment", "start": [1.688677,-1.119932], "end": [1.681842, -1.154109], "width": 0.003000}
,{"type": "segment", "start": [1.668171,-1.140438], "end": [1.702348, -1.133603], "width": 0.003000}
,{"type": "segment", "start": [1.397928,-0.746200], "end": [1.418434, -0.725694], "width": 0.003000}
,{"type": "segment", "start": [1.416156,-0.723416], "end": [1.420713, -0.727973], "width": 0.003000}
,{"type": "segment", "start": [1.395650,-0.743922], "end": [1.400206, -0.748479], "width": 0.003000}
,{"type": "segment", "start": [1.428047,-0.735307], "end": [1.426907, -0.736446], "width": 0.003000}
,{"type": "segment", "start": [1.426907,-0.736446], "end": [1.428047, -0.737585], "width": 0.003000}
,{"type": "segment", "start": [1.428047,-0.737585], "end": [1.429186, -0.736446], "width": 0.003000}
,{"type": "segment", "start": [1.429186,-0.736446], "end": [1.428047, -0.735307], "width": 0.003000}
,{"type": "segment", "start": [1.441514,-0.748774], "end": [1.421008, -0.769280], "width": 0.003000}
,{"type": "segment", "start": [1.415312,-0.763584], "end": [1.426704, -0.774976], "width": 0.003000}
,{"type": "segment", "start": [1.453685,-0.760945], "end": [1.446850, -0.795122], "width": 0.003000}
,{"type": "segment", "start": [1.433179,-0.781452], "end": [1.467356, -0.774616], "width": 0.003000}
,{"type": "segment", "start": [1.521732,-0.720724], "end": [1.501226, -0.741230], "width": 0.003000}
,{"type": "segment", "start": [1.495530,-0.735534], "end": [1.506922, -0.746927], "width": 0.003000}
,{"type": "segment", "start": [1.533903,-0.732896], "end": [1.527068, -0.767073], "width": 0.003000}
,{"type": "segment", "start": [1.513397,-0.753402], "end": [1.547574, -0.746567], "width": 0.003000}
,{"type": "segment", "start": [1.554424,-0.753417], "end": [1.553285, -0.754556], "width": 0.003000}
,{"type": "segment", "start": [1.553285,-0.754556], "end": [1.554424, -0.755695], "width": 0.003000}
,{"type": "segment", "start": [1.554424,-0.755695], "end": [1.555563, -0.754556], "width": 0.003000}
,{"type": "segment", "start": [1.555563,-0.754556], "end": [1.554424, -0.753417], "width": 0.003000}
,{"type": "segment", "start": [1.564231,-0.763224], "end": [1.543725, -0.783730], "width": 0.003000}
,{"type": "segment", "start": [1.543725,-0.783730], "end": [1.549421, -0.789426], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.560814 -0.789426 A 0.008055 0.008055 0 0 0 1.549421 -0.789426", "width": 0.003000}
,{"type": "segment", "start": [1.560814,-0.789426], "end": [1.569928, -0.780312], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.569928 -0.768920 A 0.008056 0.008056 0 0 0 1.569928 -0.780312", "width": 0.003000}
,{"type": "segment", "start": [1.569927,-0.768920], "end": [1.564231, -0.763224], "width": 0.003000}
,{"type": "segment", "start": [1.627910,-0.728477], "end": [1.618796, -0.719363], "width": 0.003000}
,{"type": "segment", "start": [1.618796,-0.719363], "end": [1.598290, -0.739869], "width": 0.003000}
,{"type": "segment", "start": [1.598290,-0.739869], "end": [1.607403, -0.748983], "width": 0.003000}
,{"type": "segment", "start": [1.607404,-0.730756], "end": [1.614239, -0.737591], "width": 0.003000}
,{"type": "segment", "start": [1.634740,-0.735307], "end": [1.633600, -0.736446], "width": 0.003000}
,{"type": "segment", "start": [1.633600,-0.736446], "end": [1.634740, -0.737585], "width": 0.003000}
,{"type": "segment", "start": [1.634740,-0.737585], "end": [1.635879, -0.736446], "width": 0.003000}
,{"type": "segment", "start": [1.635879,-0.736446], "end": [1.634740, -0.735307], "width": 0.003000}
,{"type": "segment", "start": [1.648206,-0.748774], "end": [1.627700, -0.769280], "width": 0.003000}
,{"type": "segment", "start": [1.622004,-0.763584], "end": [1.633397, -0.774976], "width": 0.003000}
,{"type": "segment", "start": [1.660378,-0.760945], "end": [1.653543, -0.795122], "width": 0.003000}
,{"type": "segment", "start": [1.639872,-0.781452], "end": [1.674049, -0.774616], "width": 0.003000}
,{"type": "segment", "start": [1.746672,-0.995594], "end": [1.733783, -0.995594], "width": 0.003000}
,{"type": "segment", "start": [1.733783,-0.995594], "end": [1.733783, -1.024594], "width": 0.003000}
,{"type": "segment", "start": [1.733783,-1.024594], "end": [1.746672, -1.024594], "width": 0.003000}
,{"type": "segment", "start": [1.733783,-1.011706], "end": [1.743450, -1.011706], "width": 0.003000}
,{"type": "segment", "start": [1.756331,-0.995594], "end": [1.756331, -0.997206], "width": 0.003000}
,{"type": "segment", "start": [1.756331,-0.997206], "end": [1.757943, -0.997206], "width": 0.003000}
,{"type": "segment", "start": [1.757943,-0.997206], "end": [1.757943, -0.995594], "width": 0.003000}
,{"type": "segment", "start": [1.757943,-0.995594], "end": [1.756331, -0.995594], "width": 0.003000}
,{"type": "segment", "start": [1.770403,-0.995594], "end": [1.770403, -1.024594], "width": 0.003000}
,{"type": "segment", "start": [1.770403,-1.024594], "end": [1.778458, -1.024594], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.778458 -1.008483 A 0.008056 0.008056 0 0 0 1.778458 -1.024594", "width": 0.003000}
,{"type": "segment", "start": [1.778458,-1.008483], "end": [1.770403, -1.008483], "width": 0.003000}
,{"type": "segment", "start": [1.786514,-0.995594], "end": [1.780069, -1.008483], "width": 0.003000}
,{"type": "segment", "start": [1.797390,-0.995594], "end": [1.816723, -1.024594], "width": 0.003000}
,{"type": "segment", "start": [1.797390,-1.024594], "end": [1.816723, -0.995594], "width": 0.003000}
,{"type": "segment", "start": [1.746672,-0.887327], "end": [1.733783, -0.887327], "width": 0.003000}
,{"type": "segment", "start": [1.733783,-0.887327], "end": [1.733783, -0.916327], "width": 0.003000}
,{"type": "segment", "start": [1.733783,-0.916327], "end": [1.746672, -0.916327], "width": 0.003000}
,{"type": "segment", "start": [1.733783,-0.903438], "end": [1.743450, -0.903438], "width": 0.003000}
,{"type": "segment", "start": [1.756331,-0.887327], "end": [1.756331, -0.888938], "width": 0.003000}
,{"type": "segment", "start": [1.756331,-0.888938], "end": [1.757943, -0.888938], "width": 0.003000}
,{"type": "segment", "start": [1.757943,-0.888938], "end": [1.757943, -0.887327], "width": 0.003000}
,{"type": "segment", "start": [1.757943,-0.887327], "end": [1.756331, -0.887327], "width": 0.003000}
,{"type": "segment", "start": [1.775377,-0.887327], "end": [1.775377, -0.916327], "width": 0.003000}
,{"type": "segment", "start": [1.767321,-0.916327], "end": [1.783432, -0.916327], "width": 0.003000}
,{"type": "segment", "start": [1.792590,-0.887327], "end": [1.811923, -0.916327], "width": 0.003000}
,{"type": "segment", "start": [1.792590,-0.916327], "end": [1.811923, -0.887327], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.817902], "end": [1.763135, -0.788902], "width": 0.003000}
,{"type": "segment", "start": [1.763135,-0.788902], "end": [1.772802, -0.817902], "width": 0.003000}
,{"type": "segment", "start": [1.796677,-0.788902], "end": [1.790233, -0.788902], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.783789 -0.795346 A 0.006444 0.006444 0 0 0 1.790233 -0.788902", "width": 0.003000}
,{"type": "segment", "start": [1.783789,-0.795346], "end": [1.783789, -0.811457], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.790233 -0.817902 A 0.006445 0.006445 0 0 0 1.783789 -0.811457", "width": 0.003000}
,{"type": "segment", "start": [1.790233,-0.817902], "end": [1.796677, -0.817902], "width": 0.003000}
,{"type": "segment", "start": [1.820677,-0.788902], "end": [1.814233, -0.788902], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.807789 -0.795346 A 0.006444 0.006444 0 0 0 1.814233 -0.788902", "width": 0.003000}
,{"type": "segment", "start": [1.807789,-0.795346], "end": [1.807789, -0.811457], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.814233 -0.817902 A 0.006445 0.006445 0 0 0 1.807789 -0.811457", "width": 0.003000}
,{"type": "segment", "start": [1.814233,-0.817902], "end": [1.820677, -0.817902], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.670264], "end": [1.763135, -0.641264], "width": 0.003000}
,{"type": "segment", "start": [1.763135,-0.641264], "end": [1.772802, -0.670264], "width": 0.003000}
,{"type": "segment", "start": [1.796677,-0.641264], "end": [1.790233, -0.641264], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.783789 -0.647708 A 0.006444 0.006444 0 0 0 1.790233 -0.641264", "width": 0.003000}
,{"type": "segment", "start": [1.783789,-0.647708], "end": [1.783789, -0.663819], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.790233 -0.670264 A 0.006445 0.006445 0 0 0 1.783789 -0.663819", "width": 0.003000}
,{"type": "segment", "start": [1.790233,-0.670264], "end": [1.796677, -0.670264], "width": 0.003000}
,{"type": "segment", "start": [1.820677,-0.641264], "end": [1.814233, -0.641264], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.807789 -0.647708 A 0.006444 0.006444 0 0 0 1.814233 -0.641264", "width": 0.003000}
,{"type": "segment", "start": [1.807789,-0.647708], "end": [1.807789, -0.663819], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.814233 -0.670264 A 0.006445 0.006445 0 0 0 1.807789 -0.663819", "width": 0.003000}
,{"type": "segment", "start": [1.814233,-0.670264], "end": [1.820677, -0.670264], "width": 0.003000}
,{"type": "segment", "start": [1.764746,-0.106194], "end": [1.769580, -0.106194], "width": 0.003000}
,{"type": "segment", "start": [1.769580,-0.106194], "end": [1.769580, -0.090083], "width": 0.003000}
,{"type": "segment", "start": [1.769580,-0.090083], "end": [1.759913, -0.090083], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.753469 -0.096527 A 0.006444 0.006444 0 0 0 1.759913 -0.090083", "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.096527], "end": [1.753469, -0.112638], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.759913 -0.119083 A 0.006445 0.006445 0 0 0 1.753469 -0.112638", "width": 0.003000}
,{"type": "segment", "start": [1.759913,-0.119083], "end": [1.769580, -0.119083], "width": 0.003000}
,{"type": "segment", "start": [1.784188,-0.090083], "end": [1.784188, -0.119083], "width": 0.003000}
,{"type": "segment", "start": [1.784188,-0.119083], "end": [1.800299, -0.090083], "width": 0.003000}
,{"type": "segment", "start": [1.800299,-0.090083], "end": [1.800299, -0.119083], "width": 0.003000}
,{"type": "segment", "start": [1.814908,-0.090083], "end": [1.814908, -0.119083], "width": 0.003000}
,{"type": "segment", "start": [1.814908,-0.119083], "end": [1.822964, -0.119083], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.831019 -0.111027 A 0.008056 0.008056 0 0 0 1.822964 -0.119083", "width": 0.003000}
,{"type": "segment", "start": [1.831019,-0.111027], "end": [1.831019, -0.098138], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.822964 -0.090083 A 0.008055 0.008055 0 0 0 1.831019 -0.098138", "width": 0.003000}
,{"type": "segment", "start": [1.822964,-0.090083], "end": [1.814908, -0.090083], "width": 0.003000}
,{"type": "segment", "start": [1.774589,-1.149501], "end": [1.779422, -1.149501], "width": 0.003000}
,{"type": "segment", "start": [1.779422,-1.149501], "end": [1.779422, -1.133390], "width": 0.003000}
,{"type": "segment", "start": [1.779422,-1.133390], "end": [1.769755, -1.133390], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.763311 -1.139834 A 0.006444 0.006444 0 0 0 1.769755 -1.133390", "width": 0.003000}
,{"type": "segment", "start": [1.763311,-1.139834], "end": [1.763311, -1.155945], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.769755 -1.162390 A 0.006445 0.006445 0 0 0 1.763311 -1.155945", "width": 0.003000}
,{"type": "segment", "start": [1.769755,-1.162390], "end": [1.779422, -1.162390], "width": 0.003000}
,{"type": "segment", "start": [1.794031,-1.133390], "end": [1.794031, -1.162390], "width": 0.003000}
,{"type": "segment", "start": [1.794031,-1.162390], "end": [1.810142, -1.133390], "width": 0.003000}
,{"type": "segment", "start": [1.810142,-1.133390], "end": [1.810142, -1.162390], "width": 0.003000}
,{"type": "segment", "start": [1.824751,-1.133390], "end": [1.824751, -1.162390], "width": 0.003000}
,{"type": "segment", "start": [1.824751,-1.162390], "end": [1.832806, -1.162390], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.840862 -1.154334 A 0.008056 0.008056 0 0 0 1.832806 -1.162390", "width": 0.003000}
,{"type": "segment", "start": [1.840862,-1.154334], "end": [1.840862, -1.141445], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.832806 -1.133390 A 0.008055 0.008055 0 0 0 1.840862 -1.141445", "width": 0.003000}
,{"type": "segment", "start": [1.832806,-1.133390], "end": [1.824751, -1.133390], "width": 0.003000}
,{"type": "segment", "start": [1.774589,-1.493989], "end": [1.779422, -1.493989], "width": 0.003000}
,{"type": "segment", "start": [1.779422,-1.493989], "end": [1.779422, -1.477878], "width": 0.003000}
,{"type": "segment", "start": [1.779422,-1.477878], "end": [1.769755, -1.477878], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.763311 -1.484322 A 0.006444 0.006444 0 0 0 1.769755 -1.477878", "width": 0.003000}
,{"type": "segment", "start": [1.763311,-1.484322], "end": [1.763311, -1.500433], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.769755 -1.506878 A 0.006445 0.006445 0 0 0 1.763311 -1.500433", "width": 0.003000}
,{"type": "segment", "start": [1.769755,-1.506878], "end": [1.779422, -1.506878], "width": 0.003000}
,{"type": "segment", "start": [1.794031,-1.477878], "end": [1.794031, -1.506878], "width": 0.003000}
,{"type": "segment", "start": [1.794031,-1.506878], "end": [1.810142, -1.477878], "width": 0.003000}
,{"type": "segment", "start": [1.810142,-1.477878], "end": [1.810142, -1.506878], "width": 0.003000}
,{"type": "segment", "start": [1.824751,-1.477878], "end": [1.824751, -1.506878], "width": 0.003000}
,{"type": "segment", "start": [1.824751,-1.506878], "end": [1.832806, -1.506878], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.840862 -1.498822 A 0.008056 0.008056 0 0 0 1.832806 -1.506878", "width": 0.003000}
,{"type": "segment", "start": [1.840862,-1.498822], "end": [1.840862, -1.485933], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.832806 -1.477878 A 0.008055 0.008055 0 0 0 1.840862 -1.485933", "width": 0.003000}
,{"type": "segment", "start": [1.832806,-1.477878], "end": [1.824751, -1.477878], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.552681], "end": [1.753469, -0.581681], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.581681], "end": [1.761524, -0.581681], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.761524 -0.565570 A 0.008056 0.008056 0 0 0 1.761524 -0.581681", "width": 0.003000}
,{"type": "segment", "start": [1.761524,-0.565570], "end": [1.753469, -0.565570], "width": 0.003000}
,{"type": "segment", "start": [1.793643,-0.552681], "end": [1.787199, -0.552681], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.780754 -0.559125 A 0.006444 0.006444 0 0 0 1.787199 -0.552681", "width": 0.003000}
,{"type": "segment", "start": [1.780754,-0.559125], "end": [1.780754, -0.575237], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.787199 -0.581681 A 0.006445 0.006445 0 0 0 1.780754 -0.575237", "width": 0.003000}
,{"type": "segment", "start": [1.787199,-0.581681], "end": [1.793643, -0.581681], "width": 0.003000}
,{"type": "segment", "start": [1.811289,-0.581681], "end": [1.804845, -0.559125], "width": 0.003000}
,{"type": "segment", "start": [1.804845,-0.559125], "end": [1.820956, -0.559125], "width": 0.003000}
,{"type": "segment", "start": [1.816123,-0.565570], "end": [1.816123, -0.552681], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.444413], "end": [1.753469, -0.473413], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.473413], "end": [1.761524, -0.473413], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.761524 -0.457302 A 0.008056 0.008056 0 0 0 1.761524 -0.473413", "width": 0.003000}
,{"type": "segment", "start": [1.761524,-0.457302], "end": [1.753469, -0.457302], "width": 0.003000}
,{"type": "segment", "start": [1.793643,-0.444413], "end": [1.787199, -0.444413], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.780754 -0.450858 A 0.006444 0.006444 0 0 0 1.787199 -0.444413", "width": 0.003000}
,{"type": "segment", "start": [1.780754,-0.450858], "end": [1.780754, -0.466969], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.787199 -0.473413 A 0.006445 0.006445 0 0 0 1.780754 -0.466969", "width": 0.003000}
,{"type": "segment", "start": [1.787199,-0.473413], "end": [1.793643, -0.473413], "width": 0.003000}
,{"type": "segment", "start": [1.804845,-0.444413], "end": [1.812901, -0.444413], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.812901 -0.444413 A 0.008055 0.008055 0 0 0 1.812901 -0.460524", "width": 0.003000}
,{"type": "segment", "start": [1.804845,-0.473413], "end": [1.814512, -0.473413], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.814512 -0.460524 A 0.006445 0.006445 0 0 0 1.814512 -0.473413", "width": 0.003000}
,{"type": "segment", "start": [1.814512,-0.460524], "end": [1.808067, -0.460524], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.345988], "end": [1.753469, -0.374988], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.374988], "end": [1.761524, -0.374988], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.761524 -0.358877 A 0.008056 0.008056 0 0 0 1.761524 -0.374988", "width": 0.003000}
,{"type": "segment", "start": [1.761524,-0.358877], "end": [1.753469, -0.358877], "width": 0.003000}
,{"type": "segment", "start": [1.793643,-0.345988], "end": [1.787199, -0.345988], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.780754 -0.352433 A 0.006444 0.006444 0 0 0 1.787199 -0.345988", "width": 0.003000}
,{"type": "segment", "start": [1.780754,-0.352433], "end": [1.780754, -0.368544], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.787199 -0.374988 A 0.006445 0.006445 0 0 0 1.780754 -0.368544", "width": 0.003000}
,{"type": "segment", "start": [1.787199,-0.374988], "end": [1.793643, -0.374988], "width": 0.003000}
,{"type": "segment", "start": [1.804845,-0.368544], "end": [1.812901, -0.374988], "width": 0.003000}
,{"type": "segment", "start": [1.812901,-0.374988], "end": [1.812901, -0.345988], "width": 0.003000}
,{"type": "segment", "start": [1.804845,-0.345988], "end": [1.820956, -0.345988], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.247563], "end": [1.753469, -0.276563], "width": 0.003000}
,{"type": "segment", "start": [1.753469,-0.276563], "end": [1.761524, -0.276563], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.761524 -0.260452 A 0.008056 0.008056 0 0 0 1.761524 -0.276563", "width": 0.003000}
,{"type": "segment", "start": [1.761524,-0.260452], "end": [1.753469, -0.260452], "width": 0.003000}
,{"type": "segment", "start": [1.793643,-0.247563], "end": [1.787199, -0.247563], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.780754 -0.254007 A 0.006444 0.006444 0 0 0 1.787199 -0.247563", "width": 0.003000}
,{"type": "segment", "start": [1.780754,-0.254007], "end": [1.780754, -0.270118], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.787199 -0.276563 A 0.006445 0.006445 0 0 0 1.780754 -0.270118", "width": 0.003000}
,{"type": "segment", "start": [1.787199,-0.276563], "end": [1.793643, -0.276563], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.807262 -0.272535 A 0.023899 0.023899 0 0 0 1.804845 -0.262063", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.812901 -0.276563 A 0.005961 0.005961 0 0 0 1.807262 -0.272535", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.818539 -0.272535 A 0.005961 0.005961 0 0 0 1.812901 -0.276563", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.820956 -0.262063 A 0.023898 0.023898 0 0 0 1.818539 -0.272535", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.804845 -0.262063 A 0.023900 0.023900 0 0 0 1.807262 -0.251591", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.807262 -0.251591 A 0.005961 0.005961 0 0 0 1.812901 -0.247563", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.818539 -0.251591 A 0.023898 0.023898 0 0 0 1.820956 -0.262063", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.812901 -0.247563 A 0.005961 0.005961 0 0 0 1.818539 -0.251591", "width": 0.003000}
,{"type": "segment", "start": [1.806456,-0.254007], "end": [1.819345, -0.270118], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.631413 -0.259896 A 0.008222 0.008222 0 0 0 1.623191 -0.268118", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.626275 -0.247563 A 0.017370 0.017370 0 0 0 1.631413 -0.259896", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.594413 -0.256813 A 0.008222 0.008222 0 0 0 1.602636 -0.248591", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.597497 -0.266063 A 0.015416 0.015416 0 0 0 1.594413 -0.256813", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.602636 -0.248591 A 0.008351 0.008351 0 0 0 1.609830 -0.252702", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.623191 -0.268118 A 0.008351 0.008351 0 0 0 1.615997 -0.264007", "width": 0.003000}
,{"type": "segment", "start": [1.615997,-0.264007], "end": [1.609830, -0.252702], "width": 0.003000}
,{"type": "segment", "start": [1.621136,-0.282363], "end": [1.604691, -0.282363], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.604691 -0.302918 A 0.010278 0.010278 0 0 0 1.604691 -0.282363", "width": 0.003000}
,{"type": "segment", "start": [1.604691,-0.302918], "end": [1.621136, -0.302918], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.621136 -0.282363 A 0.010278 0.010278 0 0 0 1.621136 -0.302918", "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.319907], "end": [1.594413, -0.319907], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.319907], "end": [1.614969, -0.332240], "width": 0.003000}
,{"type": "segment", "start": [1.614969,-0.332240], "end": [1.594413, -0.344574], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.344574], "end": [1.631413, -0.344574], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.379276], "end": [1.631413, -0.362831], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.362831], "end": [1.594413, -0.362831], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.362831], "end": [1.594413, -0.379276], "width": 0.003000}
,{"type": "segment", "start": [1.610858,-0.362831], "end": [1.610858, -0.375165], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.429675], "end": [1.631413, -0.413231], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.413231], "end": [1.594413, -0.413231], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.413231], "end": [1.594413, -0.429675], "width": 0.003000}
,{"type": "segment", "start": [1.610858,-0.413231], "end": [1.610858, -0.425564], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.441106], "end": [1.594413, -0.465773], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.441106], "end": [1.631413, -0.465773], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.487039], "end": [1.594413, -0.487039], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.476762], "end": [1.594413, -0.497317], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.511786], "end": [1.594413, -0.511786], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.511786], "end": [1.594413, -0.522064], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.614969 -0.522064 A 0.010278 0.010278 0 0 0 1.594413 -0.522064", "width": 0.003000}
,{"type": "segment", "start": [1.614969,-0.522064], "end": [1.614969, -0.511786], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.532342], "end": [1.614969, -0.524119], "width": 0.003000}
,{"type": "segment", "start": [1.631413,-0.545506], "end": [1.594413, -0.557839], "width": 0.003000}
,{"type": "segment", "start": [1.594413,-0.557839], "end": [1.631413, -0.570172], "width": 0.003000}
,{"type": "segment", "start": [1.622163,-0.567089], "end": [1.622163, -0.548589], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.247563], "end": [1.654413, -0.247563], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.247563], "end": [1.654413, -0.257841], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.664691 -0.268118 A 0.010278 0.010278 0 0 0 1.654413 -0.257841", "width": 0.003000}
,{"type": "segment", "start": [1.664691,-0.268118], "end": [1.681136, -0.268118], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.691413 -0.257841 A 0.010278 0.010278 0 0 0 1.681136 -0.268118", "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.257841], "end": [1.691413, -0.247563], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.287841], "end": [1.691413, -0.287841], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.283730], "end": [1.691413, -0.291952], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.283730], "end": [1.654413, -0.291952], "width": 0.003000}
,{"type": "segment", "start": [1.670858,-0.321952], "end": [1.670858, -0.328118], "width": 0.003000}
,{"type": "segment", "start": [1.670858,-0.328118], "end": [1.691413, -0.328118], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.328118], "end": [1.691413, -0.315785], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.683191 -0.307563 A 0.008222 0.008222 0 0 0 1.691413 -0.315785", "width": 0.003000}
,{"type": "segment", "start": [1.683191,-0.307563], "end": [1.662636, -0.307563], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.654413 -0.315785 A 0.008222 0.008222 0 0 0 1.662636 -0.307563", "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.315785], "end": [1.654413, -0.328118], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.347841], "end": [1.691413, -0.347841], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.343729], "end": [1.691413, -0.351952], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.343729], "end": [1.654413, -0.351952], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.374240], "end": [1.654413, -0.374240], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.363963], "end": [1.654413, -0.384518], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.395507], "end": [1.654413, -0.407840], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.407840], "end": [1.691413, -0.420174], "width": 0.003000}
,{"type": "segment", "start": [1.682163,-0.417090], "end": [1.682163, -0.398590], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.434831], "end": [1.691413, -0.434831], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.434831], "end": [1.691413, -0.451276], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.487040], "end": [1.691413, -0.487040], "width": 0.003000}
,{"type": "segment", "start": [1.691413,-0.482929], "end": [1.691413, -0.491151], "width": 0.003000}
,{"type": "segment", "start": [1.654413,-0.482929], "end": [1.654413, -0.491151], "width": 0.003000}
,{"type": "segment", "start": [1.681136,-0.505562], "end": [1.664691, -0.505562], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.664691 -0.526117 A 0.010278 0.010278 0 0 0 1.664691 -0.505562", "width": 0.003000}
,{"type": "segment", "start": [1.664691,-0.526117], "end": [1.681136, -0.526117], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.681136 -0.505562 A 0.010278 0.010278 0 0 0 1.681136 -0.526117", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.691413 -0.552695 A 0.008222 0.008222 0 0 0 1.683191 -0.560917", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.686275 -0.540362 A 0.017370 0.017370 0 0 0 1.691413 -0.552695", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.654413 -0.549612 A 0.008222 0.008222 0 0 0 1.662636 -0.541389", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.657497 -0.558862 A 0.015416 0.015416 0 0 0 1.654413 -0.549612", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.662636 -0.541389 A 0.008351 0.008351 0 0 0 1.669830 -0.545500", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.683191 -0.560917 A 0.008351 0.008351 0 0 0 1.675997 -0.556806", "width": 0.003000}
,{"type": "segment", "start": [1.675997,-0.556806], "end": [1.669830, -0.545500], "width": 0.003000}
,{"type": "segment", "start": [0.237720,-1.153075], "end": [0.237720, -1.190075], "width": 0.003000}
,{"type": "segment", "start": [0.237720,-1.190075], "end": [0.247998, -1.190075], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.258276 -1.179797 A 0.010278 0.010278 0 0 0 0.247998 -1.190075", "width": 0.003000}
,{"type": "segment", "start": [0.258276,-1.179797], "end": [0.258276, -1.163352], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.247998 -1.153075 A 0.010278 0.010278 0 0 0 0.258276 -1.163352", "width": 0.003000}
,{"type": "segment", "start": [0.247998,-1.153075], "end": [0.237720, -1.153075], "width": 0.003000}
,{"type": "segment", "start": [0.282798,-1.153075], "end": [0.282798, -1.190075], "width": 0.003000}
,{"type": "segment", "start": [0.272520,-1.190075], "end": [0.293076, -1.190075], "width": 0.003000}
,{"type": "segment", "start": [0.307545,-1.153075], "end": [0.307545, -1.190075], "width": 0.003000}
,{"type": "segment", "start": [0.307545,-1.190075], "end": [0.317823, -1.190075], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.317823 -1.169519 A 0.010278 0.010278 0 0 0 0.317823 -1.190075", "width": 0.003000}
,{"type": "segment", "start": [0.317823,-1.169519], "end": [0.307545, -1.169519], "width": 0.003000}
,{"type": "segment", "start": [0.328100,-1.153075], "end": [0.319878, -1.169519], "width": 0.003000}
,{"type": "segment", "start": [0.588811,-1.015280], "end": [0.572366, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.572366,-1.015280], "end": [0.572366, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.572366,-1.052280], "end": [0.588811, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.572366,-1.035835], "end": [0.584699, -1.035835], "width": 0.003000}
,{"type": "segment", "start": [0.603497,-1.015280], "end": [0.603497, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.603497,-1.052280], "end": [0.624053, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.624053,-1.015280], "end": [0.624053, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.640697,-1.044057], "end": [0.650975, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.650975,-1.052280], "end": [0.650975, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.640697,-1.015280], "end": [0.661253, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.254165,-1.015280], "end": [0.237720, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.237720,-1.015280], "end": [0.237720, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.237720,-1.052280], "end": [0.254165, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.237720,-1.035835], "end": [0.250054, -1.035835], "width": 0.003000}
,{"type": "segment", "start": [0.268852,-1.015280], "end": [0.268852, -1.052280], "width": 0.003000}
,{"type": "segment", "start": [0.268852,-1.052280], "end": [0.289407, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.289407,-1.015280], "end": [0.289407, -1.052280], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.326607 -1.043030 A 0.009250 0.009250 0 0 0 0.317357 -1.052280", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.317357 -1.052280 A 0.011884 0.011884 0 0 0 0.306051 -1.044057", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.323524 -1.035835 A 0.009936 0.009936 0 0 0 0.326607 -1.043030", "width": 0.003000}
,{"type": "segment", "start": [0.323524,-1.035835], "end": [0.306051, -1.015280], "width": 0.003000}
,{"type": "segment", "start": [0.306051,-1.015280], "end": [0.326607, -1.015280], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.562348 -0.934114 A 0.006445 0.006445 0 0 0 0.568792 -0.940559", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.552681 -0.938142 A 0.013614 0.013614 0 0 0 0.562348 -0.934114", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.559931 -0.963114 A 0.006444 0.006444 0 0 0 0.553487 -0.956670", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.567181 -0.960697 A 0.012084 0.012084 0 0 0 0.559931 -0.963114", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.553487 -0.956670 A 0.006545 0.006545 0 0 0 0.556709 -0.951031", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.568792 -0.940559 A 0.006545 0.006545 0 0 0 0.565570 -0.946197", "width": 0.003000}
,{"type": "segment", "start": [0.565570,-0.946197], "end": [0.556709, -0.951031], "width": 0.003000}
,{"type": "segment", "start": [0.581944,-0.934114], "end": [0.581944, -0.963114], "width": 0.003000}
,{"type": "segment", "start": [0.581944,-0.963114], "end": [0.590000, -0.963114], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.590000 -0.947003 A 0.008056 0.008056 0 0 0 0.590000 -0.963114", "width": 0.003000}
,{"type": "segment", "start": [0.590000,-0.947003], "end": [0.581944, -0.947003], "width": 0.003000}
,{"type": "segment", "start": [0.610281,-0.934114], "end": [0.610281, -0.963114], "width": 0.003000}
,{"type": "segment", "start": [0.610281,-0.963114], "end": [0.618336, -0.963114], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.626392 -0.955059 A 0.008056 0.008056 0 0 0 0.618336 -0.963114", "width": 0.003000}
,{"type": "segment", "start": [0.626392,-0.955059], "end": [0.626392, -0.942170], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.618336 -0.934114 A 0.008056 0.008056 0 0 0 0.626392 -0.942170", "width": 0.003000}
,{"type": "segment", "start": [0.618336,-0.934114], "end": [0.610281, -0.934114], "width": 0.003000}
,{"type": "segment", "start": [0.646176,-0.934114], "end": [0.646176, -0.963114], "width": 0.003000}
,{"type": "segment", "start": [0.638121,-0.963114], "end": [0.654232, -0.963114], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.562348 -0.886114 A 0.006445 0.006445 0 0 0 0.568792 -0.892559", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.552681 -0.890142 A 0.013614 0.013614 0 0 0 0.562348 -0.886114", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.559931 -0.915114 A 0.006444 0.006444 0 0 0 0.553487 -0.908670", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.567181 -0.912697 A 0.012084 0.012084 0 0 0 0.559931 -0.915114", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.553487 -0.908670 A 0.006545 0.006545 0 0 0 0.556709 -0.903031", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.568792 -0.892559 A 0.006545 0.006545 0 0 0 0.565570 -0.898197", "width": 0.003000}
,{"type": "segment", "start": [0.565570,-0.898197], "end": [0.556709, -0.903031], "width": 0.003000}
,{"type": "segment", "start": [0.579528,-0.915114], "end": [0.585972, -0.886114], "width": 0.003000}
,{"type": "segment", "start": [0.585972,-0.886114], "end": [0.592417, -0.905447], "width": 0.003000}
,{"type": "segment", "start": [0.592417,-0.905447], "end": [0.598861, -0.886114], "width": 0.003000}
,{"type": "segment", "start": [0.598861,-0.886114], "end": [0.605305, -0.915114], "width": 0.003000}
,{"type": "segment", "start": [0.619297,-0.915114], "end": [0.619297, -0.886114], "width": 0.003000}
,{"type": "segment", "start": [0.616074,-0.886114], "end": [0.622519, -0.886114], "width": 0.003000}
,{"type": "segment", "start": [0.616074,-0.915114], "end": [0.622519, -0.915114], "width": 0.003000}
,{"type": "segment", "start": [0.640417,-0.886114], "end": [0.640417, -0.915114], "width": 0.003000}
,{"type": "segment", "start": [0.632361,-0.915114], "end": [0.648472, -0.915114], "width": 0.003000}
,{"type": "segment", "start": [0.672039,-0.886114], "end": [0.665595, -0.886114], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.659150 -0.892559 A 0.006444 0.006444 0 0 0 0.665595 -0.886114", "width": 0.003000}
,{"type": "segment", "start": [0.659150,-0.892559], "end": [0.659150, -0.908670], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.665595 -0.915114 A 0.006445 0.006445 0 0 0 0.659150 -0.908670", "width": 0.003000}
,{"type": "segment", "start": [0.665595,-0.915114], "end": [0.672039, -0.915114], "width": 0.003000}
,{"type": "segment", "start": [0.684201,-0.886114], "end": [0.684201, -0.915114], "width": 0.003000}
,{"type": "segment", "start": [0.684201,-0.902225], "end": [0.700312, -0.902225], "width": 0.003000}
,{"type": "segment", "start": [0.700312,-0.915114], "end": [0.700312, -0.886114], "width": 0.003000}
,{"type": "segment", "start": [0.555903,-0.867114], "end": [0.555903, -0.838114], "width": 0.003000}
,{"type": "segment", "start": [0.552681,-0.838114], "end": [0.559125, -0.838114], "width": 0.003000}
,{"type": "segment", "start": [0.552681,-0.867114], "end": [0.559125, -0.867114], "width": 0.003000}
,{"type": "segment", "start": [0.583686,-0.838114], "end": [0.577241, -0.838114], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.570797 -0.844559 A 0.006444 0.006444 0 0 0 0.577241 -0.838114", "width": 0.003000}
,{"type": "segment", "start": [0.570797,-0.844559], "end": [0.570797, -0.860670], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.577241 -0.867114 A 0.006445 0.006445 0 0 0 0.570797 -0.860670", "width": 0.003000}
,{"type": "segment", "start": [0.577241,-0.867114], "end": [0.583686, -0.867114], "width": 0.003000}
,{"type": "segment", "start": [0.405043,-0.776634], "end": [0.405043, -0.805634], "width": 0.003000}
,{"type": "segment", "start": [0.405043,-0.805634], "end": [0.413099, -0.805634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.413099 -0.789523 A 0.008056 0.008056 0 0 0 0.413099 -0.805634", "width": 0.003000}
,{"type": "segment", "start": [0.413099,-0.789523], "end": [0.405043, -0.789523], "width": 0.003000}
,{"type": "segment", "start": [0.434716,-0.805634], "end": [0.434716, -0.776634], "width": 0.003000}
,{"type": "segment", "start": [0.431493,-0.776634], "end": [0.437938, -0.776634], "width": 0.003000}
,{"type": "segment", "start": [0.431493,-0.805634], "end": [0.437938, -0.805634], "width": 0.003000}
,{"type": "segment", "start": [0.449700,-0.776634], "end": [0.457756, -0.776634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.457756 -0.776634 A 0.008055 0.008055 0 0 0 0.457756 -0.792745", "width": 0.003000}
,{"type": "segment", "start": [0.449700,-0.805634], "end": [0.459367, -0.805634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.459367 -0.792745 A 0.006445 0.006445 0 0 0 0.459367 -0.805634", "width": 0.003000}
,{"type": "segment", "start": [0.459367,-0.792745], "end": [0.452922, -0.792745], "width": 0.003000}
,{"type": "segment", "start": [0.476889,-0.776634], "end": [0.486555, -0.805634], "width": 0.003000}
,{"type": "segment", "start": [0.486555,-0.805634], "end": [0.496222, -0.776634], "width": 0.003000}
,{"type": "segment", "start": [0.493805,-0.783884], "end": [0.479305, -0.783884], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.523411 -0.798384 A 0.007250 0.007250 0 0 0 0.516161 -0.805634", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.516161 -0.805634 A 0.009314 0.009314 0 0 0 0.507300 -0.799189", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.520994 -0.792745 A 0.007787 0.007787 0 0 0 0.523411 -0.798384", "width": 0.003000}
,{"type": "segment", "start": [0.520994,-0.792745], "end": [0.507300, -0.776634], "width": 0.003000}
,{"type": "segment", "start": [0.507300,-0.776634], "end": [0.523411, -0.776634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.552211 -0.798384 A 0.007250 0.007250 0 0 0 0.544961 -0.805634", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.544961 -0.805634 A 0.009314 0.009314 0 0 0 0.536100 -0.799189", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.549794 -0.792745 A 0.007787 0.007787 0 0 0 0.552211 -0.798384", "width": 0.003000}
,{"type": "segment", "start": [0.549794,-0.792745], "end": [0.536100, -0.776634], "width": 0.003000}
,{"type": "segment", "start": [0.536100,-0.776634], "end": [0.552211, -0.776634], "width": 0.003000}
,{"type": "segment", "start": [0.564900,-0.776634], "end": [0.572956, -0.776634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.572956 -0.776634 A 0.008055 0.008055 0 0 0 0.572956 -0.792745", "width": 0.003000}
,{"type": "segment", "start": [0.564900,-0.805634], "end": [0.574567, -0.805634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.574567 -0.792745 A 0.006445 0.006445 0 0 0 0.574567 -0.805634", "width": 0.003000}
,{"type": "segment", "start": [0.574567,-0.792745], "end": [0.568122, -0.792745], "width": 0.003000}
,{"type": "segment", "start": [0.405043,-0.736689], "end": [0.405043, -0.749578], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.421154 -0.749578 A 0.008055 0.008055 0 0 0 0.405043 -0.749578", "width": 0.003000}
,{"type": "segment", "start": [0.421154,-0.749578], "end": [0.421154, -0.736689], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.405043 -0.736689 A 0.008056 0.008056 0 0 0 0.421154 -0.736689", "width": 0.003000}
,{"type": "segment", "start": [0.435005,-0.728634], "end": [0.435005, -0.757634], "width": 0.003000}
,{"type": "segment", "start": [0.435005,-0.757634], "end": [0.443060, -0.757634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.443060 -0.741523 A 0.008056 0.008056 0 0 0 0.443060 -0.757634", "width": 0.003000}
,{"type": "segment", "start": [0.443060,-0.741523], "end": [0.435005, -0.741523], "width": 0.003000}
,{"type": "segment", "start": [0.451116,-0.728634], "end": [0.444671, -0.741523], "width": 0.003000}
,{"type": "segment", "start": [0.405043,-0.680634], "end": [0.405043, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.405043,-0.709634], "end": [0.413099, -0.709634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.421154 -0.701578 A 0.008056 0.008056 0 0 0 0.413099 -0.709634", "width": 0.003000}
,{"type": "segment", "start": [0.421154,-0.701578], "end": [0.421154, -0.688689], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.413099 -0.680634 A 0.008055 0.008055 0 0 0 0.421154 -0.688689", "width": 0.003000}
,{"type": "segment", "start": [0.413099,-0.680634], "end": [0.405043, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.447041,-0.696745], "end": [0.451874, -0.696745], "width": 0.003000}
,{"type": "segment", "start": [0.451874,-0.696745], "end": [0.451874, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.451874,-0.680634], "end": [0.442208, -0.680634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.435763 -0.687078 A 0.006444 0.006444 0 0 0 0.442208 -0.680634", "width": 0.003000}
,{"type": "segment", "start": [0.435763,-0.687078], "end": [0.435763, -0.703189], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.442208 -0.709634 A 0.006445 0.006445 0 0 0 0.435763 -0.703189", "width": 0.003000}
,{"type": "segment", "start": [0.442208,-0.709634], "end": [0.451874, -0.709634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.481634 -0.702384 A 0.007250 0.007250 0 0 0 0.474384 -0.709634", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.474384 -0.709634 A 0.009314 0.009314 0 0 0 0.465523 -0.703189", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.479218 -0.696745 A 0.007787 0.007787 0 0 0 0.481634 -0.702384", "width": 0.003000}
,{"type": "segment", "start": [0.479218,-0.696745], "end": [0.465523, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.465523,-0.680634], "end": [0.481634, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.494323,-0.706412], "end": [0.494323, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.494323,-0.709634], "end": [0.510434, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.510434,-0.709634], "end": [0.502379, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.523123,-0.680634], "end": [0.531179, -0.680634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.531179 -0.680634 A 0.008055 0.008055 0 0 0 0.531179 -0.696745", "width": 0.003000}
,{"type": "segment", "start": [0.523123,-0.709634], "end": [0.532790, -0.709634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.532790 -0.696745 A 0.006445 0.006445 0 0 0 0.532790 -0.709634", "width": 0.003000}
,{"type": "segment", "start": [0.532790,-0.696745], "end": [0.526345, -0.696745], "width": 0.003000}
,{"type": "segment", "start": [0.551923,-0.680634], "end": [0.561590, -0.680634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.561590 -0.680634 A 0.006444 0.006444 0 0 0 0.568034 -0.687078", "width": 0.003000}
,{"type": "segment", "start": [0.568034,-0.687078], "end": [0.568034, -0.690300], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.568034 -0.690300 A 0.006445 0.006445 0 0 0 0.561590 -0.696745", "width": 0.003000}
,{"type": "segment", "start": [0.561590,-0.696745], "end": [0.551923, -0.696745], "width": 0.003000}
,{"type": "segment", "start": [0.551923,-0.696745], "end": [0.551923, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.551923,-0.709634], "end": [0.568034, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.579112,-0.680634], "end": [0.588779, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.588779,-0.709634], "end": [0.598445, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.596029,-0.687884], "end": [0.581529, -0.687884], "width": 0.003000}
,{"type": "segment", "start": [0.610483,-0.680634], "end": [0.610483, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.610483,-0.709634], "end": [0.618539, -0.709634], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.626594 -0.701578 A 0.008056 0.008056 0 0 0 0.618539 -0.709634", "width": 0.003000}
,{"type": "segment", "start": [0.626594,-0.701578], "end": [0.626594, -0.688689], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.618539 -0.680634 A 0.008055 0.008055 0 0 0 0.626594 -0.688689", "width": 0.003000}
,{"type": "segment", "start": [0.618539,-0.680634], "end": [0.610483, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.641203,-0.680634], "end": [0.641203, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.641203,-0.709634], "end": [0.657314, -0.680634], "width": 0.003000}
,{"type": "segment", "start": [0.657314,-0.680634], "end": [0.657314, -0.709634], "width": 0.003000}
,{"type": "segment", "start": [0.784415,-1.635358], "end": [0.784415, -1.672358], "width": 0.003000}
,{"type": "segment", "start": [0.774138,-1.672358], "end": [0.794693, -1.672358], "width": 0.003000}
,{"type": "segment", "start": [0.807738,-1.645636], "end": [0.807738, -1.662080], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.828293 -1.662080 A 0.010278 0.010278 0 0 0 0.807738 -1.662080", "width": 0.003000}
,{"type": "segment", "start": [0.828293,-1.662080], "end": [0.828293, -1.645636], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.807738 -1.645636 A 0.010278 0.010278 0 0 0 0.828293 -1.645636", "width": 0.003000}
,{"type": "segment", "start": [0.845454,-1.635358], "end": [0.845454, -1.672358], "width": 0.003000}
,{"type": "segment", "start": [0.845454,-1.672358], "end": [0.855732, -1.672358], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.855732 -1.651803 A 0.010278 0.010278 0 0 0 0.855732 -1.672358", "width": 0.003000}
,{"type": "segment", "start": [0.855732,-1.651803], "end": [0.845454, -1.651803], "width": 0.003000}
,{"type": "segment", "start": [0.900137,-1.635358], "end": [0.900137, -1.672358], "width": 0.003000}
,{"type": "segment", "start": [0.900137,-1.672358], "end": [0.910415, -1.672358], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.920693 -1.662080 A 0.010278 0.010278 0 0 0 0.910415 -1.672358", "width": 0.003000}
,{"type": "segment", "start": [0.920693,-1.662080], "end": [0.920693, -1.645636], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.910415 -1.635358 A 0.010278 0.010278 0 0 0 0.920693 -1.645636", "width": 0.003000}
,{"type": "segment", "start": [0.910415,-1.635358], "end": [0.900137, -1.635358], "width": 0.003000}
,{"type": "segment", "start": [0.940415,-1.672358], "end": [0.940415, -1.635358], "width": 0.003000}
,{"type": "segment", "start": [0.936304,-1.635358], "end": [0.944526, -1.635358], "width": 0.003000}
,{"type": "segment", "start": [0.936304,-1.672358], "end": [0.944526, -1.672358], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.970070 -1.635358 A 0.008222 0.008222 0 0 0 0.978293 -1.643580", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.957737 -1.640497 A 0.017370 0.017370 0 0 0 0.970070 -1.635358", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.966987 -1.672358 A 0.008222 0.008222 0 0 0 0.958765 -1.664136", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.976237 -1.669275 A 0.015417 0.015417 0 0 0 0.966987 -1.672358", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.958765 -1.664136 A 0.008351 0.008351 0 0 0 0.962876 -1.656942", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.978293 -1.643580 A 0.008351 0.008351 0 0 0 0.974181 -1.650775", "width": 0.003000}
,{"type": "segment", "start": [0.974181,-1.650775], "end": [0.962876, -1.656942], "width": 0.003000}
,{"type": "segment", "start": [0.994254,-1.635358], "end": [0.994254, -1.672358], "width": 0.003000}
,{"type": "segment", "start": [0.994254,-1.672358], "end": [1.004531, -1.672358], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.004531 -1.651803 A 0.010278 0.010278 0 0 0 1.004531 -1.672358", "width": 0.003000}
,{"type": "segment", "start": [1.004531,-1.651803], "end": [0.994254, -1.651803], "width": 0.003000}
,{"type": "segment", "start": [0.773154,-0.774024], "end": [0.783431, -0.774024], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.783431 -0.753468 A 0.010278 0.010278 0 0 0 0.783431 -0.774024", "width": 0.003000}
,{"type": "segment", "start": [0.783431,-0.753469], "end": [0.773154, -0.753469], "width": 0.003000}
,{"type": "segment", "start": [0.773154,-0.753469], "end": [0.773154, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [0.773154,-0.790469], "end": [0.783431, -0.790469], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.783431 -0.774024 A 0.008222 0.008222 0 0 0 0.783431 -0.790469", "width": 0.003000}
,{"type": "segment", "start": [0.807437,-0.763746], "end": [0.807437, -0.780191], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.827992 -0.780191 A 0.010278 0.010278 0 0 0 0.807437 -0.780191", "width": 0.003000}
,{"type": "segment", "start": [0.827992,-0.780191], "end": [0.827992, -0.763746], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.807437 -0.763746 A 0.010278 0.010278 0 0 0 0.827992 -0.763746", "width": 0.003000}
,{"type": "segment", "start": [0.851314,-0.753469], "end": [0.851314, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [0.841037,-0.790469], "end": [0.861592, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [0.882514,-0.753469], "end": [0.882514, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [0.872237,-0.790469], "end": [0.892792, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [0.926236,-0.753469], "end": [0.926236, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [0.926236,-0.790469], "end": [0.936514, -0.790469], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.946792 -0.780191 A 0.010278 0.010278 0 0 0 0.936514 -0.790469", "width": 0.003000}
,{"type": "segment", "start": [0.946792,-0.780191], "end": [0.946792, -0.763746], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.936514 -0.753469 A 0.010278 0.010278 0 0 0 0.946792 -0.763746", "width": 0.003000}
,{"type": "segment", "start": [0.936514,-0.753469], "end": [0.926236, -0.753469], "width": 0.003000}
,{"type": "segment", "start": [0.966514,-0.790469], "end": [0.966514, -0.753469], "width": 0.003000}
,{"type": "segment", "start": [0.962403,-0.753469], "end": [0.970625, -0.753469], "width": 0.003000}
,{"type": "segment", "start": [0.962403,-0.790469], "end": [0.970625, -0.790469], "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.996169 -0.753469 A 0.008222 0.008222 0 0 0 1.004392 -0.761691", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.983836 -0.758607 A 0.017370 0.017370 0 0 0 0.996169 -0.753469", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.993086 -0.790468 A 0.008222 0.008222 0 0 0 0.984864 -0.782246", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.002336 -0.787385 A 0.015417 0.015417 0 0 0 0.993086 -0.790469", "width": 0.003000}
,{"type": "arc", "svgpath": "M 0.984864 -0.782246 A 0.008351 0.008351 0 0 0 0.988975 -0.775052", "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.004392 -0.761691 A 0.008351 0.008351 0 0 0 1.000281 -0.768885", "width": 0.003000}
,{"type": "segment", "start": [1.000281,-0.768885], "end": [0.988975, -0.775052], "width": 0.003000}
,{"type": "segment", "start": [1.020353,-0.753469], "end": [1.020353, -0.790469], "width": 0.003000}
,{"type": "segment", "start": [1.020353,-0.790469], "end": [1.030630, -0.790469], "width": 0.003000}
,{"type": "arc", "svgpath": "M 1.030630 -0.769913 A 0.010278 0.010278 0 0 0 1.030630 -0.790469", "width": 0.003000}
,{"type": "segment", "start": [1.030630,-0.769913], "end": [1.020353, -0.769913], "width": 0.003000}
,{"type": "segment", "start": [0.710597,-0.326303], "end": [0.710597, -0.363303], "width": 0.003000}
,{"type": "segment", "start": [0.700319,-0.363303], "end": [0.720874, -0.363303], "width": 0.003000}
,{"type": "segment", "start": [0.732552,-0.363303], "end": [0.740774, -0.326303], "width": 0.003000}
,{"type": "segment", "start": [0.740774,-0.326303], "end": [0.748997, -0.350970], "width": 0.003000}
,{"type": "segment", "start": [0.748997,-0.350970], "end": [0.757219, -0.326303], "width": 0.003000}
,{"type": "segment", "start": [0.757219,-0.326303], "end": [0.765441, -0.363303], "width": 0.003000}
,{"type": "segment", "start": [1.045242,-0.621579], "end": [1.045242, -0.658579], "width": 0.003000}
,{"type": "segment", "start": [1.034965,-0.658579], "end": [1.055520, -0.658579], "width": 0.003000}
,{"type": "segment", "start": [1.067198,-0.658579], "end": [1.075420, -0.621579], "width": 0.003000}
,{"type": "segment", "start": [1.075420,-0.621579], "end": [1.083642, -0.646245], "width": 0.003000}
,{"type": "segment", "start": [1.083642,-0.646245], "end": [1.091864, -0.621579], "width": 0.003000}
,{"type": "segment", "start": [1.091864,-0.621579], "end": [1.100087, -0.658579], "width": 0.003000}
,{"type": "segment", "start": [0.562959,-1.536933], "end": [0.562959, -1.573933], "width": 0.003000}
,{"type": "segment", "start": [0.552681,-1.573933], "end": [0.573237, -1.573933], "width": 0.003000}
,{"type": "segment", "start": [0.584914,-1.573933], "end": [0.593137, -1.536933], "width": 0.003000}
,{"type": "segment", "start": [0.593137,-1.536933], "end": [0.601359, -1.561600], "width": 0.003000}
,{"type": "segment", "start": [0.601359,-1.561600], "end": [0.609581, -1.536933], "width": 0.003000}
,{"type": "segment", "start": [0.609581,-1.536933], "end": [0.617803, -1.573933], "width": 0.003000}
,{"type": "segment", "start": [0.503904,-1.625516], "end": [0.503904, -1.662516], "width": 0.003000}
,{"type": "segment", "start": [0.493626,-1.662516], "end": [0.514181, -1.662516], "width": 0.003000}
,{"type": "segment", "start": [0.525859,-1.662516], "end": [0.534081, -1.625516], "width": 0.003000}
,{"type": "segment", "start": [0.534081,-1.625516], "end": [0.542304, -1.650182], "width": 0.003000}
,{"type": "segment", "start": [0.542304,-1.650182], "end": [0.550526, -1.625516], "width": 0.003000}
,{"type": "segment", "start": [0.550526,-1.625516], "end": [0.558748, -1.662516], "width": 0.003000}
,{"type": "segment", "start": [0.247998,-1.595988], "end": [0.247998, -1.632988], "width": 0.003000}
,{"type": "segment", "start": [0.237720,-1.632988], "end": [0.258276, -1.632988], "width": 0.003000}
,{"type": "segment", "start": [0.269954,-1.632988], "end": [0.278176, -1.595988], "width": 0.003000}
,{"type": "segment", "start": [0.278176,-1.595988], "end": [0.286398, -1.620655], "width": 0.003000}
,{"type": "segment", "start": [0.286398,-1.620655], "end": [0.294620, -1.595988], "width": 0.003000}
,{"type": "segment", "start": [0.294620,-1.595988], "end": [0.302843, -1.632988], "width": 0.003000}
,{"type": "segment", "start": [0.444849,-0.001500], "end": [0.444849, -0.038500], "width": 0.003000}
,{"type": "segment", "start": [0.434571,-0.038500], "end": [0.455126, -0.038500], "width": 0.003000}
,{"type": "segment", "start": [0.466804,-0.038500], "end": [0.475026, -0.001500], "width": 0.003000}
,{"type": "segment", "start": [0.475026,-0.001500], "end": [0.483249, -0.026167], "width": 0.003000}
,{"type": "segment", "start": [0.483249,-0.026167], "end": [0.491471, -0.001500], "width": 0.003000}
,{"type": "segment", "start": [0.491471,-0.001500], "end": [0.499693, -0.038500], "width": 0.003000}
,{"type": "segment", "start": [0.513421,-0.004583], "end": [0.513421, -0.006639], "width": 0.003000}
,{"type": "segment", "start": [0.513421,-0.006639], "end": [0.515476, -0.006639], "width": 0.003000}
,{"type": "segment", "start": [0.515476,-0.006639], "end": [0.515476, -0.004583], "width": 0.003000}
,{"type": "segment", "start": [0.515476,-0.004583], "end": [0.513421, -0.004583], "width": 0.003000}
,{"type": "segment", "start": [0.513421,-0.021028], "end": [0.513421, -0.023083], "width": 0.003000}
,{"type": "segment", "start": [0.513421,-0.023083], "end": [0.515476, -0.023083], "width": 0.003000}
,{"type": "segment", "start": [0.515476,-0.023083], "end": [0.515476, -0.021028], "width": 0.003000}
,{"type": "segment", "start": [0.515476,-0.021028], "end": [0.513421, -0.021028], "width": 0.003000}
,{"type": "segment", "start": [0.442626,0.067398], "end": [0.442626, 0.038398], "width": 0.003000}
,{"type": "segment", "start": [0.434571,0.038398], "end": [0.450682, 0.038398], "width": 0.003000}
,{"type": "segment", "start": [0.462612,0.067398], "end": [0.462612, 0.038398], "width": 0.003000}
,{"type": "segment", "start": [0.462612,0.038398], "end": [0.470668, 0.038398], "width": 0.003000}