-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy patharduino-ads129x-drl.ps
3525 lines (3525 loc) · 60 KB
/
arduino-ads129x-drl.ps
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
%!PS-Adobe-3.0
%%Creator: PCBNEW
%%CreationDate: Sat Dec 21 15:24:07 2013
%%Title: /home/eric/src/OpenHardwareExG/kicad-files/rev1/ancillary-files/arduino-ads129x-drl.ps
%%Pages: 1
%%PageOrder: Ascend
%%BoundingBox: 0 0 596 843
%%DocumentMedia: A4 595 842 0 () ()
%%Orientation: Landscape
%%EndComments
%%Page: 1 1
/line {
newpath
moveto
lineto
stroke
} bind def
/cir0 { newpath 0 360 arc stroke } bind def
/cir1 { newpath 0 360 arc gsave fill grestore stroke } bind def
/cir2 { newpath 0 360 arc gsave fill grestore stroke } bind def
/arc0 { newpath arc stroke } bind def
/arc1 { newpath 4 index 4 index moveto arc closepath gsave fill grestore stroke } bind def
/arc2 { newpath 4 index 4 index moveto arc closepath gsave fill grestore stroke } bind def
/poly0 { stroke } bind def
/poly1 { closepath gsave fill grestore stroke } bind def
/poly2 { closepath gsave fill grestore stroke } bind def
/rect0 { rectstroke } bind def
/rect1 { rectfill } bind def
/rect2 { rectfill } bind def
/linemode0 { 0 setlinecap 0 setlinejoin 0 setlinewidth } bind def
/linemode1 { 1 setlinecap 1 setlinejoin } bind def
/dashedline { [50 50] 0 setdash } bind def
/solidline { [] 0 setdash } bind def
gsave
0.0072 0.0072 scale
linemode1
82670 0 translate 90 rotate
11.6272 setlinewidth
174.408 setlinewidth
newpath
102207 69425 moveto
12028 69425 lineto
stroke
newpath
102207 36924 moveto
102207 69425 lineto
stroke
newpath
12028 36924 moveto
102207 36924 lineto
stroke
newpath
12028 69425 moveto
12028 36924 lineto
stroke
11.6272 setlinewidth
newpath
20069 40436 moveto
20302 40204 lineto
20302 40436 moveto
20069 40204 lineto
stroke
newpath
20069 40024 moveto
20302 39792 lineto
20302 40024 moveto
20069 39792 lineto
stroke
newpath
20344 40230 moveto
20576 39998 lineto
20576 40230 moveto
20344 39998 lineto
stroke
newpath
20618 40436 moveto
20851 40204 lineto
20851 40436 moveto
20618 40204 lineto
stroke
newpath
20618 40024 moveto
20851 39792 lineto
20851 40024 moveto
20618 39792 lineto
stroke
newpath
26216 40436 moveto
26449 40204 lineto
26449 40436 moveto
26216 40204 lineto
stroke
newpath
26216 40024 moveto
26449 39792 lineto
26449 40024 moveto
26216 39792 lineto
stroke
newpath
26491 40230 moveto
26723 39998 lineto
26723 40230 moveto
26491 39998 lineto
stroke
newpath
26765 40436 moveto
26998 40204 lineto
26998 40436 moveto
26765 40204 lineto
stroke
newpath
26765 40024 moveto
26998 39792 lineto
26998 40024 moveto
26765 39792 lineto
stroke
21666 63950 145.34 cir0
21666 62787 145.34 cir0
21666 61624 145.34 cir0
21666 60462 145.34 cir0
21666 59299 145.34 cir0
21666 58136 145.34 cir0
21666 56973 145.34 cir0
21666 55811 145.34 cir0
21666 54648 145.34 cir0
21666 53485 145.34 cir0
21666 52323 145.34 cir0
21666 51160 145.34 cir0
21666 49997 145.34 cir0
21666 48834 145.34 cir0
21666 47672 145.34 cir0
21666 46509 145.34 cir0
21666 45346 145.34 cir0
22247 43311 145.34 cir0
22712 43951 145.34 cir0
23235 43311 145.34 cir0
24165 67438 145.34 cir0
24165 66275 145.34 cir0
27189 67438 145.34 cir0
27770 63950 145.34 cir0
27770 62787 145.34 cir0
27770 61624 145.34 cir0
27770 60462 145.34 cir0
27770 59299 145.34 cir0
27770 58136 145.34 cir0
27770 56973 145.34 cir0
27770 55811 145.34 cir0
27770 54648 145.34 cir0
27770 53485 145.34 cir0
27770 52323 145.34 cir0
27770 51160 145.34 cir0
27770 49997 145.34 cir0
27770 48834 145.34 cir0
27770 47672 145.34 cir0
27770 46509 145.34 cir0
27828 45346 145.34 cir0
28351 43311 145.34 cir0
28933 43951 145.34 cir0
29514 43311 145.34 cir0
31898 40405 145.34 cir0
34630 64473 145.34 cir0
34938 46696 145.34 cir0
35328 67438 145.34 cir0
35328 66275 145.34 cir0
37072 49067 145.34 cir0
37130 57904 145.34 cir0
37159 48276 145.34 cir0
37188 52323 145.34 cir0
37617 60795 145.34 cir0
37653 59880 145.34 cir0
37769 52264 145.34 cir0
38120 47726 145.34 cir0
38234 67438 145.34 cir0
38234 61275 145.34 cir0
38234 49125 145.34 cir0
38292 46654 145.34 cir0
39397 61275 145.34 cir0
39397 49125 145.34 cir0
39630 64124 145.34 cir0
39728 59619 145.34 cir0
40037 46654 145.34 cir0
40271 51228 145.34 cir0
40560 49125 145.34 cir0
41722 46654 145.34 cir0
41782 64481 145.34 cir0
41897 52032 145.34 cir0
43118 61275 145.34 cir0
43176 64473 145.34 cir0
43234 59183 145.34 cir0
43641 53020 145.34 cir0
43990 61334 145.34 cir0
44222 59648 145.34 cir0
44222 58659 145.34 cir0
44246 60473 145.34 cir0
44397 53718 145.34 cir0
45153 53660 145.34 cir0
45501 54474 145.34 cir0
46490 55578 145.34 cir0
46722 58020 145.34 cir0
46722 56857 145.34 cir0
47536 47497 145.34 cir0
47652 57439 145.34 cir0
47827 55927 145.34 cir0
48815 60810 145.34 cir0
48931 62787 145.34 cir0
49571 47497 145.34 cir0
50443 61624 145.34 cir0
51315 65112 145.34 cir0
51315 62206 145.34 cir0
51896 59299 145.34 cir0
51954 49125 145.34 cir0
51954 47962 145.34 cir0
52478 53485 145.34 cir0
52768 59590 145.34 cir0
54222 63950 145.34 cir0
54222 62206 145.34 cir0
54222 57555 145.34 cir0
54222 53195 145.34 cir0
54396 47672 145.34 cir0
54512 65694 145.34 cir0
54512 58717 145.34 cir0
54571 49939 145.34 cir0
55094 50869 145.34 cir0
55094 45928 145.34 cir0
55384 58136 145.34 cir0
60675 57555 145.34 cir0
60791 61624 145.34 cir0
60791 53020 145.34 cir0
60849 65112 145.34 cir0
60907 50578 145.34 cir0
60907 47090 145.34 cir0
61024 55229 145.34 cir0
61372 56857 145.34 cir0
61721 57787 145.34 cir0
62361 37498 145.34 cir0
63233 47672 145.34 cir0
63291 50811 145.34 cir0
63349 55811 145.34 cir0
63698 58369 145.34 cir0
63814 49706 145.34 cir0
64105 60171 145.34 cir0
64396 52555 145.34 cir0
65558 64822 145.34 cir0
66081 53660 145.34 cir0
66721 46218 145.34 cir0
66721 37498 145.34 cir0
67012 52904 145.34 cir0
67302 49997 145.34 cir0
67593 64531 145.34 cir0
67593 61624 145.34 cir0
68000 52148 145.34 cir0
68116 54648 145.34 cir0
68262 51480 145.34 cir0
68814 61101 145.34 cir0
68872 59299 145.34 cir0
68930 58485 145.34 cir0
69046 51741 145.34 cir0
69105 57032 145.34 cir0
69163 55811 145.34 cir0
69511 60752 145.34 cir0
70500 54357 145.34 cir0
70849 49125 145.34 cir0
71139 53660 145.34 cir0
71372 62787 145.34 cir0
71372 50346 145.34 cir0
71721 45637 145.34 cir0
71953 63368 145.34 cir0
71953 54067 145.34 cir0
71953 52381 145.34 cir0
72011 53311 145.34 cir0
72186 50462 145.34 cir0
72244 49299 145.34 cir0
72360 60171 145.34 cir0
72360 58892 145.34 cir0
72360 56799 145.34 cir0
72535 63950 145.34 cir0
73116 62206 145.34 cir0
73639 61043 145.34 cir0
74279 57729 145.34 cir0
74453 61624 145.34 cir0
74511 62496 145.34 cir0
74569 59415 145.34 cir0
74627 50869 145.34 cir0
74744 49823 145.34 cir0
74802 48602 145.34 cir0
74976 46044 145.34 cir0
75302 65112 145.34 cir0
75732 62496 145.34 cir0
75790 44358 145.34 cir0
75906 47497 145.34 cir0
76372 44765 145.34 cir0
76488 50811 145.34 cir0
76604 61799 145.34 cir0
76837 60113 145.34 cir0
76895 64647 145.34 cir0
77389 62002 145.34 cir0
77650 62903 145.34 cir0
77680 63921 145.34 cir0
77709 47614 145.34 cir0
77767 59764 145.34 cir0
77999 51857 145.34 cir0
78057 64705 145.34 cir0
78116 50578 145.34 cir0
78377 62002 145.34 cir0
78406 62729 145.34 cir0
78581 59357 145.34 cir0
78755 57671 145.34 cir0
78755 51451 145.34 cir0
78929 64473 145.34 cir0
79307 61857 145.34 cir0
79336 45637 145.34 cir0
79511 65252 145.34 cir0
79511 62671 145.34 cir0
79511 57787 145.34 cir0
79511 54590 145.34 cir0
79511 51102 145.34 cir0
79598 47614 145.34 cir0
79685 59531 145.34 cir0
79918 53660 145.34 cir0
80092 64473 145.34 cir0
80267 50811 145.34 cir0
80674 57032 145.34 cir0
80674 54067 145.34 cir0
80732 46044 145.34 cir0
80906 62729 145.34 cir0
80964 64531 145.34 cir0
80964 61857 145.34 cir0
81022 49358 145.34 cir0
81081 50520 145.34 cir0
81371 57845 145.34 cir0
81371 53253 145.34 cir0
81429 63892 145.34 cir0
81546 49765 145.34 cir0
81778 56973 145.34 cir0
82069 45637 145.34 cir0
82301 57729 145.34 cir0
82360 60520 145.34 cir0
82360 46858 145.34 cir0
82592 56857 145.34 cir0
82708 64473 145.34 cir0
82766 62148 145.34 cir0
82766 41916 145.34 cir0
82941 59938 145.34 cir0
83173 57555 145.34 cir0
83406 56857 145.34 cir0
83580 62613 145.34 cir0
83638 46683 145.34 cir0
83900 53224 145.34 cir0
83976 57578 145.34 cir0
84045 63892 145.34 cir0
84045 42370 145.34 cir0
84173 56846 145.34 cir0
84394 60869 145.34 cir0
84569 42695 145.34 cir0
84627 61799 145.34 cir0
84685 64589 145.34 cir0
84743 57555 145.34 cir0
84976 56857 145.34 cir0
85092 39126 145.34 cir0
85615 62845 145.34 cir0
85615 61392 145.34 cir0
86138 64764 145.34 cir0
86429 54474 145.34 cir0
86487 51160 145.34 cir0
86632 49881 145.34 cir0
86662 55287 145.34 cir0
86917 63775 145.34 cir0
86952 64705 145.34 cir0
87010 61828 145.34 cir0
87010 48689 145.34 cir0
87243 54008 145.34 cir0
87243 51218 145.34 cir0
87359 57032 145.34 cir0
88034 64682 145.34 cir0
88173 54822 145.34 cir0
88464 63252 145.34 cir0
88638 38370 145.34 cir0
88754 64066 145.34 cir0
88813 62322 145.34 cir0
88929 57090 145.34 cir0
88929 52032 145.34 cir0
88929 51160 145.34 cir0
88929 49183 145.34 cir0
89045 53311 145.34 cir0
89161 58252 145.34 cir0
89161 54299 145.34 cir0
89220 49881 145.34 cir0
89394 64764 145.34 cir0
89394 56160 145.34 cir0
89685 52439 145.34 cir0
89743 57148 145.34 cir0
90092 51625 145.34 cir0
90150 64624 145.34 cir0
90150 60810 145.34 cir0
90150 56160 145.34 cir0
90440 52555 145.34 cir0
90557 50172 145.34 cir0
91196 60287 145.34 cir0
91400 64676 145.34 cir0
91429 55520 145.34 cir0
91429 54357 145.34 cir0
91429 53776 145.34 cir0
91429 53136 145.34 cir0
91778 60810 145.34 cir0
92301 59764 145.34 cir0
92359 52497 145.34 cir0
92533 60578 145.34 cir0
92591 38661 145.34 cir0
93173 52904 145.34 cir0
93522 50113 145.34 cir0
93929 53253 145.34 cir0
94394 51509 145.34 cir0
94742 64473 145.34 cir0
96080 42439 145.34 cir0
97068 45695 145.34 cir0
97171 48367 145.34 cir0
98696 49997 145.34 cir0
98696 45637 145.34 cir0
newpath
13236 65298 moveto
13236 64926 lineto
13422 65112 moveto
13050 65112 lineto
stroke
newpath
98289 60648 moveto
98289 60276 lineto
98475 60462 moveto
98103 60462 lineto
stroke
newpath
98289 59485 moveto
98289 59113 lineto
98475 59299 moveto
98103 59299 lineto
stroke
newpath
99204 60648 moveto
99204 60276 lineto
99390 60462 moveto
99018 60462 lineto
stroke
newpath
99204 59485 moveto
99204 59113 lineto
99390 59299 moveto
99018 59299 lineto
stroke
50734 38951 229.056 cir0
newpath
50505 39180 moveto
50963 38722 lineto
50963 39180 moveto
50505 38722 lineto
stroke
51896 38951 229.056 cir0
newpath
51667 39180 moveto
52125 38722 lineto
52125 39180 moveto
51667 38722 lineto
stroke
53059 38951 229.056 cir0
newpath
52830 39180 moveto
53288 38722 lineto
53288 39180 moveto
52830 38722 lineto
stroke
56547 38951 229.056 cir0
newpath
56318 39180 moveto
56776 38722 lineto
56776 39180 moveto
56318 38722 lineto
stroke
57710 38951 229.056 cir0
newpath
57481 39180 moveto
57939 38722 lineto
57939 39180 moveto
57481 38722 lineto
stroke
71662 38951 229.056 cir0
newpath
71433 39180 moveto
71892 38722 lineto
71892 39180 moveto
71433 38722 lineto
stroke
72825 38951 229.056 cir0
newpath
72596 39180 moveto
73054 38722 lineto
73054 39180 moveto
72596 38722 lineto
stroke
73697 66275 229.056 cir0
newpath
73468 66504 moveto
73926 66046 lineto
73926 66504 moveto
73468 66046 lineto
stroke
73988 38951 229.056 cir0
newpath
73759 39180 moveto
74217 38722 lineto
74217 39180 moveto
73759 38722 lineto
stroke
74860 66275 229.056 cir0
newpath
74631 66504 moveto
75089 66046 lineto
75089 66504 moveto
74631 66046 lineto
stroke
76023 66275 229.056 cir0
newpath
75794 66504 moveto
76252 66046 lineto
76252 66504 moveto
75794 66046 lineto
stroke
77185 66275 229.056 cir0
newpath
76956 66504 moveto
77414 66046 lineto
77414 66504 moveto
76956 66046 lineto
stroke
77476 38951 229.056 cir0
newpath
77247 39180 moveto
77705 38722 lineto
77705 39180 moveto
77247 38722 lineto
stroke
77755 44091 229.056 cir0
newpath
77526 44320 moveto
77984 43861 lineto
77984 44320 moveto
77526 43861 lineto
stroke
78348 66275 229.056 cir0
newpath
78119 66504 moveto
78577 66046 lineto
78577 66504 moveto
78119 66046 lineto
stroke
78639 38951 229.056 cir0
newpath
78410 39180 moveto
78868 38722 lineto
78868 39180 moveto
78410 38722 lineto
stroke
78918 44091 229.056 cir0
newpath
78689 44320 moveto
79147 43861 lineto
79147 44320 moveto
78689 43861 lineto
stroke
79511 66275 229.056 cir0
newpath
79282 66504 moveto
79740 66046 lineto
79740 66504 moveto
79282 66046 lineto
stroke
80081 44091 229.056 cir0
newpath
79852 44320 moveto
80310 43861 lineto
80310 44320 moveto
79852 43861 lineto
stroke
80674 66275 229.056 cir0
newpath
80445 66504 moveto
80903 66046 lineto
80903 66504 moveto
80445 66046 lineto
stroke
81243 44091 229.056 cir0
newpath
81014 44320 moveto
81472 43861 lineto
81472 44320 moveto
81014 43861 lineto
stroke
81836 66275 229.056 cir0
newpath
81607 66504 moveto
82065 66046 lineto
82065 66504 moveto
81607 66046 lineto
stroke
82406 44091 229.056 cir0
newpath
82177 44320 moveto
82635 43861 lineto
82635 44320 moveto
82177 43861 lineto
stroke
82999 66275 229.056 cir0
newpath
82770 66504 moveto
83228 66046 lineto
83228 66504 moveto
82770 66046 lineto
stroke
83569 44091 229.056 cir0
newpath
83340 44320 moveto
83798 43861 lineto
83798 44320 moveto
83340 43861 lineto
stroke
84162 66275 229.056 cir0
newpath
83933 66504 moveto
84391 66046 lineto
84391 66504 moveto
83933 66046 lineto
stroke
84731 44091 229.056 cir0
newpath
84502 44320 moveto
84961 43861 lineto
84961 44320 moveto
84502 43861 lineto
stroke
85894 44091 229.056 cir0
newpath
85665 44320 moveto
86123 43861 lineto
86123 44320 moveto
85665 43861 lineto
stroke
85917 66275 229.056 cir0
newpath
85688 66504 moveto
86146 66046 lineto
86146 66504 moveto
85688 66046 lineto
stroke
87080 66275 229.056 cir0
newpath
86851 66504 moveto
87309 66046 lineto
87309 66504 moveto
86851 66046 lineto
stroke
88208 44091 229.056 cir0
newpath
87979 44320 moveto
88437 43861 lineto
88437 44320 moveto
87979 43861 lineto
stroke
88243 66275 229.056 cir0
newpath
88014 66504 moveto
88472 66046 lineto
88472 66504 moveto
88014 66046 lineto
stroke
89371 44091 229.056 cir0
newpath
89142 44320 moveto
89600 43861 lineto
89600 44320 moveto
89142 43861 lineto
stroke
89406 66275 229.056 cir0
newpath
89177 66504 moveto
89635 66046 lineto
89635 66504 moveto
89177 66046 lineto
stroke
90533 44091 229.056 cir0
newpath
90304 44320 moveto
90762 43861 lineto
90762 44320 moveto
90304 43861 lineto
stroke
90568 66275 229.056 cir0
newpath
90339 66504 moveto
90797 66046 lineto
90797 66504 moveto
90339 66046 lineto
stroke
91696 44091 229.056 cir0
newpath
91467 44320 moveto
91925 43861 lineto
91925 44320 moveto
91467 43861 lineto
stroke
91731 66275 229.056 cir0
newpath
91502 66504 moveto
91960 66046 lineto
91960 66504 moveto
91502 66046 lineto
stroke
92859 44091 229.056 cir0
newpath
92630 44320 moveto
93088 43861 lineto
93088 44320 moveto
92630 43861 lineto
stroke
92894 66275 229.056 cir0
newpath
92665 66504 moveto
93123 66046 lineto
93123 66504 moveto
92665 66046 lineto
stroke
94022 44091 229.056 cir0
newpath
93793 44320 moveto
94251 43861 lineto
94251 44320 moveto
93793 43861 lineto
stroke
94056 66275 229.056 cir0
newpath
93827 66504 moveto
94286 66046 lineto
94286 66504 moveto
93827 66046 lineto
stroke
94056 56508 229.056 cir0
newpath
93827 56737 moveto
94286 56279 lineto
94286 56737 moveto
93827 56279 lineto
stroke
94056 55346 229.056 cir0
newpath
93827 55575 moveto
94286 55117 lineto
94286 55575 moveto
93827 55117 lineto
stroke
94056 54183 229.056 cir0
newpath
93827 54412 moveto
94286 53954 lineto
94286 54412 moveto
93827 53954 lineto
stroke
95219 56508 229.056 cir0
newpath
94990 56737 moveto
95448 56279 lineto
95448 56737 moveto
94990 56279 lineto
stroke
95219 55346 229.056 cir0
newpath
94990 55575 moveto
95448 55117 lineto
95448 55575 moveto
94990 55117 lineto
stroke
95219 54183 229.056 cir0
newpath
94990 54412 moveto
95448 53954 lineto
95448 54412 moveto
94990 53954 lineto
stroke
13236 63950 232.544 cir0
newpath
13003 63950 moveto
13468 63950 lineto
stroke
13236 62787 232.544 cir0
newpath
13003 62787 moveto
13468 62787 lineto
stroke
13236 61624 232.544 cir0
newpath
13003 61624 moveto
13468 61624 lineto
stroke
13236 60462 232.544 cir0
newpath
13003 60462 moveto
13468 60462 lineto
stroke
13236 59299 232.544 cir0
newpath
13003 59299 moveto
13468 59299 lineto
stroke
13236 58136 232.544 cir0
newpath
13003 58136 moveto
13468 58136 lineto
stroke
13236 56973 232.544 cir0
newpath
13003 56973 moveto
13468 56973 lineto
stroke
13236 55811 232.544 cir0
newpath
13003 55811 moveto
13468 55811 lineto
stroke
13236 54648 232.544 cir0
newpath
13003 54648 moveto
13468 54648 lineto
stroke
13236 53485 232.544 cir0
newpath
13003 53485 moveto
13468 53485 lineto
stroke
13236 52323 232.544 cir0
newpath
13003 52323 moveto
13468 52323 lineto
stroke
13236 51160 232.544 cir0
newpath
13003 51160 moveto
13468 51160 lineto
stroke
13236 49997 232.544 cir0
newpath
13003 49997 moveto
13468 49997 lineto
stroke
13236 48834 232.544 cir0
newpath
13003 48834 moveto
13468 48834 lineto
stroke
13236 47672 232.544 cir0
newpath
13003 47672 moveto
13468 47672 lineto
stroke
13236 46509 232.544 cir0
newpath
13003 46509 moveto
13468 46509 lineto
stroke
13236 45346 232.544 cir0
newpath
13003 45346 moveto
13468 45346 lineto
stroke
13236 44184 232.544 cir0
newpath
13003 44184 moveto
13468 44184 lineto
stroke
13236 43021 232.544 cir0
newpath
13003 43021 moveto
13468 43021 lineto
stroke
14399 65112 232.544 cir0
newpath
14166 65112 moveto
14631 65112 lineto
stroke
14399 63950 232.544 cir0
newpath
14166 63950 moveto
14631 63950 lineto
stroke
14399 62787 232.544 cir0
newpath
14166 62787 moveto
14631 62787 lineto
stroke
14399 61624 232.544 cir0
newpath
14166 61624 moveto
14631 61624 lineto
stroke
14399 60462 232.544 cir0
newpath
14166 60462 moveto
14631 60462 lineto
stroke
14399 59299 232.544 cir0
newpath
14166 59299 moveto
14631 59299 lineto
stroke
14399 58136 232.544 cir0
newpath
14166 58136 moveto
14631 58136 lineto
stroke
14399 56973 232.544 cir0
newpath
14166 56973 moveto
14631 56973 lineto
stroke
14399 55811 232.544 cir0
newpath
14166 55811 moveto
14631 55811 lineto
stroke
14399 54648 232.544 cir0
newpath
14166 54648 moveto
14631 54648 lineto
stroke
14399 53485 232.544 cir0
newpath
14166 53485 moveto
14631 53485 lineto
stroke
14399 52323 232.544 cir0
newpath
14166 52323 moveto
14631 52323 lineto
stroke
14399 51160 232.544 cir0
newpath
14166 51160 moveto
14631 51160 lineto
stroke
14399 49997 232.544 cir0
newpath
14166 49997 moveto
14631 49997 lineto
stroke
14399 48834 232.544 cir0
newpath
14166 48834 moveto
14631 48834 lineto
stroke
14399 47672 232.544 cir0
newpath
14166 47672 moveto
14631 47672 lineto
stroke
14399 46509 232.544 cir0
newpath
14166 46509 moveto
14631 46509 lineto
stroke
14399 45346 232.544 cir0
newpath
14166 45346 moveto
14631 45346 lineto
stroke
14399 44184 232.544 cir0
newpath
14166 44184 moveto
14631 44184 lineto
stroke
14399 43021 232.544 cir0
newpath
14166 43021 moveto
14631 43021 lineto
stroke
29514 63950 232.544 cir0
newpath
29281 63950 moveto
29746 63950 lineto
stroke
29514 62787 232.544 cir0
newpath
29281 62787 moveto
29746 62787 lineto
stroke
29514 61624 232.544 cir0
newpath
29281 61624 moveto
29746 61624 lineto
stroke
29514 60462 232.544 cir0
newpath
29281 60462 moveto
29746 60462 lineto
stroke
29514 59299 232.544 cir0