-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathspiral.txt
999 lines (999 loc) · 123 KB
/
spiral.txt
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
(segment (start 100.3 100.0) (end 100.30110466396978 100.01897529526437) (width 0.2032) (layer B.Cu))
(segment (start 100.30110466396978 100.01897529526437) (end 100.30100760047414 100.03815143946626) (width 0.2032) (layer B.Cu))
(segment (start 100.30100760047414 100.03815143946626) (end 100.29969584092038 100.05745112404009) (width 0.2032) (layer B.Cu))
(segment (start 100.29969584092038 100.05745112404009) (end 100.29716131686968 100.07679547135317) (width 0.2032) (layer B.Cu))
(segment (start 100.29716131686968 100.07679547135317) (end 100.29340094447916 100.09610435578867) (width 0.2032) (layer B.Cu))
(segment (start 100.29340094447916 100.09610435578867) (end 100.28841668860242 100.11529673433817) (width 0.2032) (layer B.Cu))
(segment (start 100.28841668860242 100.11529673433817) (end 100.28221560606958 100.13429098520487) (width 0.2032) (layer B.Cu))
(segment (start 100.28221560606958 100.13429098520487) (end 100.27480986775281 100.15300525295618) (width 0.2032) (layer B.Cu))
(segment (start 100.27480986775281 100.15300525295618) (end 100.26621675910896 100.17135779874752) (width 0.2032) (layer B.Cu))
(segment (start 100.26621675910896 100.17135779874752) (end 100.25645865897864 100.18926735411232) (width 0.2032) (layer B.Cu))
(segment (start 100.25645865897864 100.18926735411232) (end 100.2455629965085 100.2066534767874) (width 0.2032) (layer B.Cu))
(segment (start 100.2455629965085 100.2066534767874) (end 100.23356218615167 100.22343690702095) (width 0.2032) (layer B.Cu))
(segment (start 100.23356218615167 100.22343690702095) (end 100.22049354078642 100.23953992279327) (width 0.2032) (layer B.Cu))
(segment (start 100.22049354078642 100.23953992279327) (end 100.20639916307448 100.25488669237036) (width 0.2032) (layer B.Cu))
(segment (start 100.20639916307448 100.25488669237036) (end 100.19132581525427 100.26940362260645) (width 0.2032) (layer B.Cu))
(segment (start 100.19132581525427 100.26940362260645) (end 100.17532476762335 100.2830197014139) (width 0.2032) (layer B.Cu))
(segment (start 100.17532476762335 100.2830197014139) (end 100.15845162599727 100.29566683282945) (width 0.2032) (layer B.Cu))
(segment (start 100.15845162599727 100.29566683282945) (end 100.14076613841334 100.30728016312163) (width 0.2032) (layer B.Cu))
(segment (start 100.14076613841334 100.30728016312163) (end 100.12233198122243 100.31779839640856) (width 0.2032) (layer B.Cu))
(segment (start 100.12233198122243 100.31779839640856) (end 100.10321652434362 100.3271640982858) (width 0.2032) (layer B.Cu))
(segment (start 100.10321652434362 100.3271640982858) (end 100.0834905744689 100.33532398600141) (width 0.2032) (layer B.Cu))
(segment (start 100.0834905744689 100.33532398600141) (end 100.06322809216732 100.34222920376013) (width 0.2032) (layer B.Cu))
(segment (start 100.06322809216732 100.34222920376013) (end 100.04250586906402 100.34783558178944) (width 0.2032) (layer B.Cu))
(segment (start 100.04250586906402 100.34783558178944) (end 100.02140310323946 100.35210387785796) (width 0.2032) (layer B.Cu))
(segment (start 100.02140310323946 100.35210387785796) (end 100.0 100.355) (width 0.2032) (layer B.Cu))
(segment (start 100.0 100.355) (end 99.97838224581373 100.35649520927043) (width 0.2032) (layer B.Cu))
(segment (start 99.97838224581373 100.35649520927043) (end 99.9566383737685 100.35656630142844) (width 0.2032) (layer B.Cu))
(segment (start 99.9566383737685 100.35656630142844) (end 99.93485428334591 100.35519576652968) (width 0.2032) (layer B.Cu))
(segment (start 99.93485428334591 100.35519576652968) (end 99.91311788222701 100.35237192549104) (width 0.2032) (layer B.Cu))
(segment (start 99.91311788222701 100.35237192549104) (end 99.89151784006357 100.34808904278145) (width 0.2032) (layer B.Cu))
(segment (start 99.89151784006357 100.34808904278145) (end 99.87014314464076 100.34234741448427) (width 0.2032) (layer B.Cu))
(segment (start 99.87014314464076 100.34234741448427) (end 99.84908271185414 100.33515343107167) (width 0.2032) (layer B.Cu))
(segment (start 99.84908271185414 100.33515343107167) (end 99.8284250067359 100.32651961432751) (width 0.2032) (layer B.Cu))
(segment (start 99.8284250067359 100.32651961432751) (end 99.80825766784436 100.31646462794986) (width 0.2032) (layer B.Cu))
(segment (start 99.80825766784436 100.31646462794986) (end 99.78866713381824 100.30501326145782) (width 0.2032) (layer B.Cu))
(segment (start 99.78866713381824 100.30501326145782) (end 99.76973827265724 100.29219638711304) (width 0.2032) (layer B.Cu))
(segment (start 99.76973827265724 100.29219638711304) (end 99.75155401488502 100.27805088964087) (width 0.2032) (layer B.Cu))
(segment (start 99.75155401488502 100.27805088964087) (end 99.73419499198046 100.2626195685916) (width 0.2032) (layer B.Cu))
(segment (start 99.73419499198046 100.2626195685916) (end 99.71773918155623 100.24595101320168) (width 0.2032) (layer B.Cu))
(segment (start 99.71773918155623 100.24595101320168) (end 99.70226156079717 100.22809944957511) (width 0.2032) (layer B.Cu))
(segment (start 99.70226156079717 100.22809944957511) (end 99.68783376967403 100.20912455985787) (width 0.2032) (layer B.Cu))
(segment (start 99.68783376967403 100.20912455985787) (end 99.67452378543271 100.18909127272791) (width 0.2032) (layer B.Cu))
(segment (start 99.67452378543271 100.18909127272791) (end 99.66239560983173 100.16806952377338) (width 0.2032) (layer B.Cu))
(segment (start 99.66239560983173 100.16806952377338) (end 99.65150897056306 100.14613398272964) (width 0.2032) (layer B.Cu))
(segment (start 99.65150897056306 100.14613398272964) (end 99.64191903824593 100.12336374096084) (width 0.2032) (layer B.Cu))
(segment (start 99.64191903824593 100.12336374096084) (end 99.63367616033017 100.09984194381491) (width 0.2032) (layer B.Cu))
(segment (start 99.63367616033017 100.09984194381491) (end 99.62682561318648 100.07565532794099) (width 0.2032) (layer B.Cu))
(segment (start 99.62682561318648 100.07565532794099) (end 99.62140737359485 100.05089353863545) (width 0.2032) (layer B.Cu))
(segment (start 99.62140737359485 100.05089353863545) (end 99.61745591077172 100.02564767577708) (width 0.2032) (layer B.Cu))
(segment (start 99.61745591077172 100.02564767577708) (end 99.615 100.0) (width 0.2032) (layer B.Cu))
(segment (start 99.615 100.0) (end 99.61406255884516 99.97407021963349) (width 0.2032) (layer B.Cu))
(segment (start 99.61406255884516 99.97407021963349) (end 99.61466050685632 99.94798607330614) (width 0.2032) (layer B.Cu))
(segment (start 99.61466050685632 99.94798607330614) (end 99.6168046495635 99.92183964630327) (width 0.2032) (layer B.Cu))
(segment (start 99.6168046495635 99.92183964630327) (end 99.62049958749225 99.89573459502124) (width 0.2032) (layer B.Cu))
(segment (start 99.62049958749225 99.89573459502124) (end 99.62574365082676 99.869776795487) (width 0.2032) (layer B.Cu))
(segment (start 99.62574365082676 99.869776795487) (end 99.63252886026206 99.84407304410388) (width 0.2032) (layer B.Cu))
(segment (start 99.63252886026206 99.84407304410388) (end 99.64084091449907 99.81873036298495) (width 0.2032) (layer B.Cu))
(segment (start 99.64084091449907 99.81873036298495) (end 99.65065920475497 99.7938554518247) (width 0.2032) (layer B.Cu))
(segment (start 99.65065920475497 99.7938554518247) (end 99.66195685659008 99.76955418972129) (width 0.2032) (layer B.Cu))
(segment (start 99.66195685659008 99.76955418972129) (end 99.67470079929736 99.74593115865396) (width 0.2032) (layer B.Cu))
(segment (start 99.67470079929736 99.74593115865396) (end 99.68885186307288 99.7230891791524) (width 0.2032) (layer B.Cu))
(segment (start 99.68885186307288 99.7230891791524) (end 99.70436490419881 99.7011288551661) (width 0.2032) (layer B.Cu))
(segment (start 99.70436490419881 99.7011288551661) (end 99.72118895855334 99.6801481277188) (width 0.2032) (layer B.Cu))
(segment (start 99.72118895855334 99.6801481277188) (end 99.73926742395884 99.66024183806984) (width 0.2032) (layer B.Cu))
(segment (start 99.73926742395884 99.66024183806984) (end 99.75853827227253 99.64150130164307) (width 0.2032) (layer B.Cu))
(segment (start 99.75853827227253 99.64150130164307) (end 99.77893429286884 99.62401389424448) (width 0.2032) (layer B.Cu))
(segment (start 99.77893429286884 99.62401389424448) (end 99.80038337056806 99.60786265221304) (width 0.2032) (layer B.Cu))
(segment (start 99.80038337056806 99.60786265221304) (end 99.82280880378894 99.59312588819661) (width 0.2032) (layer B.Cu))
(segment (start 99.82280880378894 99.59312588819661) (end 99.84612967424711 99.57987682424752) (width 0.2032) (layer B.Cu))
(segment (start 99.84612967424711 99.57987682424752) (end 99.87026129167569 99.56818324390669) (width 0.2032) (layer B.Cu))
(segment (start 99.87026129167569 99.56818324390669) (end 99.89511576657902 99.55810716489997) (width 0.2032) (layer B.Cu))
(segment (start 99.89511576657902 99.55810716489997) (end 99.92060284698054 99.54970453401036) (width 0.2032) (layer B.Cu))
(segment (start 99.92060284698054 99.54970453401036) (end 99.94663144438543 99.54302494561942) (width 0.2032) (layer B.Cu))
(segment (start 99.94663144438543 99.54302494561942) (end 99.97311373842628 99.53811138533045) (width 0.2032) (layer B.Cu))
(segment (start 99.97311373842628 99.53811138533045) (end 100.0 99.535) (width 0.2032) (layer B.Cu))
(segment (start 100.0 99.535) (end 100.02711355659687 99.53371989541166) (width 0.2032) (layer B.Cu))
(segment (start 100.02711355659687 99.53371989541166) (end 100.05426213310035 99.53429296272955) (width 0.2032) (layer B.Cu))
(segment (start 100.05426213310035 99.53429296272955) (end 100.08138312416382 99.53673373477137) (width 0.2032) (layer B.Cu))
(segment (start 100.08138312416382 99.53673373477137) (end 100.10837624798651 99.5410492730423) (width 0.2032) (layer B.Cu))
(segment (start 100.10837624798651 99.5410492730423) (end 100.13513603262255 99.54723908637641) (width 0.2032) (layer B.Cu))
(segment (start 100.13513603262255 99.54723908637641) (end 100.16155541363712 99.55529508194375) (width 0.2032) (layer B.Cu))
(segment (start 100.16155541363712 99.55529508194375) (end 100.18752710796844 99.56520154930509) (width 0.2032) (layer B.Cu))
(segment (start 100.18752710796844 99.56520154930509) (end 100.21294443301308 99.57693517813935) (width 0.2032) (layer B.Cu))
(segment (start 100.21294443301308 99.57693517813935) (end 100.23770193025615 99.5904651102427) (width 0.2032) (layer B.Cu))
(segment (start 100.23770193025615 99.5904651102427) (end 100.26169590335995 99.6057530264192) (width 0.2032) (layer B.Cu))
(segment (start 100.26169590335995 99.6057530264192) (end 100.28482491138054 99.6227532689784) (width 0.2032) (layer B.Cu))
(segment (start 100.28482491138054 99.6227532689784) (end 100.3069902338459 99.64141300076805) (width 0.2032) (layer B.Cu))
(segment (start 100.3069902338459 99.64141300076805) (end 100.3280963148374 99.66167240207209) (width 0.2032) (layer B.Cu))
(segment (start 100.3280963148374 99.66167240207209) (end 100.34805118894143 99.6834649074227) (width 0.2032) (layer B.Cu))
(segment (start 100.34805118894143 99.6834649074227) (end 100.36676688987856 99.70671748563807) (width 0.2032) (layer B.Cu))
(segment (start 100.36676688987856 99.70671748563807) (end 100.38415984157008 99.73135096863669) (width 0.2032) (layer B.Cu))
(segment (start 100.38415984157008 99.73135096863669) (end 100.40015123085227 99.75728043866424) (width 0.2032) (layer B.Cu))
(segment (start 100.40015123085227 99.75728043866424) (end 100.41466736076178 99.78441569134212) (width 0.2032) (layer B.Cu))
(segment (start 100.41466736076178 99.78441569134212) (end 100.42763998317386 99.81266180765381) (width 0.2032) (layer B.Cu))
(segment (start 100.42763998317386 99.81266180765381) (end 100.43900660951857 99.84191990234264) (width 0.2032) (layer B.Cu))
(segment (start 100.43900660951857 99.84191990234264) (end 100.44871079829699 99.87208819976489) (width 0.2032) (layer B.Cu))
(segment (start 100.44871079829699 99.87208819976489) (end 100.45670241814854 99.90306382363258) (width 0.2032) (layer B.Cu))
(segment (start 100.45670241814854 99.90306382363258) (end 100.46293788527318 99.93474651115494) (width 0.2032) (layer B.Cu))
(segment (start 100.46293788527318 99.93474651115494) (end 100.46738037407869 99.96704965424945) (width 0.2032) (layer B.Cu))
(segment (start 100.46738037407869 99.96704965424945) (end 100.47 100.0) (width 0.2032) (layer B.Cu))
(segment (start 100.47 100.0) (end 100.4707739735199 100.03325767313197) (width 0.2032) (layer B.Cu))
(segment (start 100.4707739735199 100.03325767313197) (end 100.46968672450495 100.06644914006893) (width 0.2032) (layer B.Cu))
(segment (start 100.46968672450495 100.06644914006893) (end 100.46672999605386 100.09957701474366) (width 0.2032) (layer B.Cu))
(segment (start 100.46672999605386 100.09957701474366) (end 100.46190290713301 100.13253469214905) (width 0.2032) (layer B.Cu))
(segment (start 100.46190290713301 100.13253469214905) (end 100.45521198334195 100.16520072255942) (width 0.2032) (layer B.Cu))
(segment (start 100.45521198334195 100.16520072255942) (end 100.44667115520137 100.19744864645962) (width 0.2032) (layer B.Cu))
(segment (start 100.44667115520137 100.19744864645962) (end 100.43630172338038 100.22915028339247) (width 0.2032) (layer B.Cu))
(segment (start 100.43630172338038 100.22915028339247) (end 100.42413229026408 100.26017738054838) (width 0.2032) (layer B.Cu))
(segment (start 100.42413229026408 100.26017738054838) (end 100.41019865718567 100.29040268376829) (width 0.2032) (layer B.Cu))
(segment (start 100.41019865718567 100.29040268376829) (end 100.3945436864809 100.3197007594753) (width 0.2032) (layer B.Cu))
(segment (start 100.3945436864809 100.3197007594753) (end 100.37721712721428 100.34794869161145) (width 0.2032) (layer B.Cu))
(segment (start 100.37721712721428 100.34794869161145) (end 100.3582754028985 100.37502670676629) (width 0.2032) (layer B.Cu))
(segment (start 100.3582754028985 100.37502670676629) (end 100.33778135864384 100.40081875217172) (width 0.2032) (layer B.Cu))
(segment (start 100.33778135864384 100.40081875217172) (end 100.31580396369704 100.42521303846378) (width 0.2032) (layer B.Cu))
(segment (start 100.31580396369704 100.42521303846378) (end 100.29241796282983 100.4481025529033) (width 0.2032) (layer B.Cu))
(segment (start 100.29241796282983 100.4481025529033) (end 100.26770346569769 100.46938554553614) (width 0.2032) (layer B.Cu))
(segment (start 100.26770346569769 100.46938554553614) (end 100.24174545547153 100.48896598903727) (width 0.2032) (layer B.Cu))
(segment (start 100.24174545547153 100.48896598903727) (end 100.2146331832475 100.50675401201518) (width 0.2032) (layer B.Cu))
(segment (start 100.2146331832475 100.50675401201518) (end 100.18645938489887 100.52266630500968) (width 0.2032) (layer B.Cu))
(segment (start 100.18645938489887 100.52266630500968) (end 100.15731919172462 100.53662649811673) (width 0.2032) (layer B.Cu))
(segment (start 100.15731919172462 100.53662649811673) (end 100.12730844708601 100.54856550902036) (width 0.2032) (layer B.Cu))
(segment (start 100.12730844708601 100.54856550902036) (end 100.09652069164846 100.55842186014881) (width 0.2032) (layer B.Cu))
(segment (start 100.09652069164846 100.55842186014881) (end 100.06504050043443 100.56614196366657) (width 0.2032) (layer B.Cu))
(segment (start 100.06504050043443 100.56614196366657) (end 100.03292278522473 100.57168037304405) (width 0.2032) (layer B.Cu))
(segment (start 100.03292278522473 100.57168037304405) (end 100.0 100.575) (width 0.2032) (layer B.Cu))
(segment (start 100.0 100.575) (end 99.96681587252668 100.5760722956764) (width 0.2032) (layer B.Cu))
(segment (start 99.96681587252668 100.5760722956764) (end 99.93396477675333 100.57487739497434) (width 0.2032) (layer B.Cu))
(segment (start 99.93396477675333 100.57487739497434) (end 99.9013112991352 100.57140422304366) (width 0.2032) (layer B.Cu))
(segment (start 99.9013112991352 100.57140422304366) (end 99.868932736155 100.56565056297055) (width 0.2032) (layer B.Cu))
(segment (start 99.868932736155 100.56565056297055) (end 99.8369346241196 100.55762308373485) (width 0.2032) (layer B.Cu))
(segment (start 99.8369346241196 100.55762308373485) (end 99.80543197321549 100.54733732749983) (width 0.2032) (layer B.Cu))
(segment (start 99.80543197321549 100.54733732749983) (end 99.77454334716211 100.53481765523125) (width 0.2032) (layer B.Cu))
(segment (start 99.77454334716211 100.53481765523125) (end 99.74438817149708 100.52009714949249) (width 0.2032) (layer B.Cu))
(segment (start 99.74438817149708 100.52009714949249) (end 99.71508518162331 100.50321747298686) (width 0.2032) (layer B.Cu))
(segment (start 99.71508518162331 100.50321747298686) (end 99.68675136190102 100.48422868095115) (width 0.2032) (layer B.Cu))
(segment (start 99.68675136190102 100.48422868095115) (end 99.65950112872925 100.4631889847452) (width 0.2032) (layer B.Cu))
(segment (start 99.65950112872925 100.4631889847452) (end 99.63344565007093 100.44016446276129) (width 0.2032) (layer B.Cu))
(segment (start 99.63344565007093 100.44016446276129) (end 99.60869225008787 100.41522871281093) (width 0.2032) (layer B.Cu))
(segment (start 99.60869225008787 100.41522871281093) (end 99.58534387279605 100.38846243693891) (width 0.2032) (layer B.Cu))
(segment (start 99.58534387279605 100.38846243693891) (end 99.56349859096272 100.35995294425994) (width 0.2032) (layer B.Cu))
(segment (start 99.56349859096272 100.35995294425994) (end 99.54324915287076 100.32979354818806) (width 0.2032) (layer B.Cu))
(segment (start 99.54324915287076 100.32979354818806) (end 99.52468256307527 100.29808281787177) (width 0.2032) (layer B.Cu))
(segment (start 99.52468256307527 100.29808281787177) (end 99.50787969526505 100.26492361235125) (width 0.2032) (layer B.Cu))
(segment (start 99.50787969526505 100.26492361235125) (end 99.49291493649726 100.23042176282354) (width 0.2032) (layer B.Cu))
(segment (start 99.49291493649726 100.23042176282354) (end 99.47985586275618 100.19468413006716) (width 0.2032) (layer B.Cu))
(segment (start 99.47985586275618 100.19468413006716) (end 99.46876294618596 100.15781542631088) (width 0.2032) (layer B.Cu))
(segment (start 99.46876294618596 100.15781542631088) (end 99.45968929457595 100.11991223450289) (width 0.2032) (layer B.Cu))
(segment (start 99.45968929457595 100.11991223450289) (end 99.4526804237987 100.08104928855781) (width 0.2032) (layer B.Cu))
(segment (start 99.4526804237987 100.08104928855781) (end 99.44777406395548 100.04123579880347) (width 0.2032) (layer B.Cu))
(segment (start 99.44777406395548 100.04123579880347) (end 99.445 100.0) (width 0.2032) (layer B.Cu))
(segment (start 99.445 100.0) (end 99.4443799476051 99.95840009735302) (width 0.2032) (layer B.Cu))
(segment (start 99.4443799476051 99.95840009735302) (end 99.44592746502494 99.91758747429431) (width 0.2032) (layer B.Cu))
(segment (start 99.44592746502494 99.91758747429431) (end 99.4496479016998 99.87714644675452) (width 0.2032) (layer B.Cu))
(segment (start 99.4496479016998 99.87714644675452) (end 99.45553838436523 99.83712246277865) (width 0.2032) (layer B.Cu))
(segment (start 99.45553838436523 99.83712246277865) (end 99.4635878414777 99.79762212952926) (width 0.2032) (layer B.Cu))
(segment (start 99.4635878414777 99.79762212952926) (end 99.47377706687666 99.75877313401723) (width 0.2032) (layer B.Cu))
(segment (start 99.47377706687666 99.75877313401723) (end 99.4860788237941 99.72071193419757) (width 0.2032) (layer B.Cu))
(segment (start 99.4860788237941 99.72071193419757) (end 99.50045799064173 99.68357842749496) (width 0.2032) (layer B.Cu))
(segment (start 99.50045799064173 99.68357842749496) (end 99.51687175051121 99.6475130800703) (width 0.2032) (layer B.Cu))
(segment (start 99.51687175051121 99.6475130800703) (end 99.53526982711213 99.61265511240732) (width 0.2032) (layer B.Cu))
(segment (start 99.53526982711213 99.61265511240732) (end 99.55559477109783 99.57914120484686) (width 0.2032) (layer B.Cu))
(segment (start 99.55559477109783 99.57914120484686) (end 99.57778230264041 99.54710448828902) (width 0.2032) (layer B.Cu))
(segment (start 99.57778230264041 99.54710448828902) (end 99.60176171913604 99.51667370687939) (width 0.2032) (layer B.Cu))
(segment (start 99.60176171913604 99.51667370687939) (end 99.6274563817953 99.48797249415396) (width 0.2032) (layer B.Cu))
(segment (start 99.6274563817953 99.48797249415396) (end 99.65478430295137 99.46111873082391) (width 0.2032) (layer B.Cu))
(segment (start 99.65478430295137 99.46111873082391) (end 99.68365886978954 99.4362239663122) (width 0.2032) (layer B.Cu))
(segment (start 99.68365886978954 99.4362239663122) (end 99.71398976506532 99.41339289381219) (width 0.2032) (layer B.Cu))
(segment (start 99.71398976506532 99.41339289381219) (end 99.7456841923827 99.39272287302585) (width 0.2032) (layer B.Cu))
(segment (start 99.7456841923827 99.39272287302585) (end 99.7786486085289 99.37430349733498) (width 0.2032) (layer B.Cu))
(segment (start 99.7786486085289 99.37430349733498) (end 99.81279137373963 99.35821620373214) (width 0.2032) (layer B.Cu))
(segment (start 99.81279137373963 99.35821620373214) (end 99.8480272407349 99.34453392480583) (width 0.2032) (layer B.Cu))
(segment (start 99.8480272407349 99.34453392480583) (end 99.88428605122742 99.33332078267456) (width 0.2032) (layer B.Cu))
(segment (start 99.88428605122742 99.33332078267456) (end 99.92153312675887 99.32463182513735) (width 0.2032) (layer B.Cu))
(segment (start 99.92153312675887 99.32463182513735) (end 99.95983520352118 99.31851280453955) (width 0.2032) (layer B.Cu))
(segment (start 99.95983520352118 99.31851280453955) (end 100.0 99.315) (width 0.2032) (layer B.Cu))
(segment (start 100.0 99.315) (end 100.0404915520505 99.31412008374585) (width 0.2032) (layer B.Cu))
(segment (start 100.0404915520505 99.31412008374585) (end 100.07965278501388 99.31589003238591) (width 0.2032) (layer B.Cu))
(segment (start 100.07965278501388 99.31589003238591) (end 100.11822278334297 99.32031708404732) (width 0.2032) (layer B.Cu))
(segment (start 100.11822278334297 99.32031708404732) (end 100.15622772889347 99.32739874242914) (width 0.2032) (layer B.Cu))
(segment (start 100.15622772889347 99.32739874242914) (end 100.19360016325768 99.33712282902033) (width 0.2032) (layer B.Cu))
(segment (start 100.19360016325768 99.33712282902033) (end 100.2302402183845 99.34946758502619) (width 0.2032) (layer B.Cu))
(segment (start 100.2302402183845 99.34946758502619) (end 100.26603412910768 99.3644018249986) (width 0.2032) (layer B.Cu))
(segment (start 100.26603412910768 99.3644018249986) (end 100.30086202387739 99.38188514484625) (width 0.2032) (layer B.Cu))
(segment (start 100.30086202387739 99.38188514484625) (end 100.33460193675411 99.40186818792645) (width 0.2032) (layer B.Cu))
(segment (start 100.33460193675411 99.40186818792645) (end 100.36713219971413 99.42429297446316) (width 0.2032) (layer B.Cu))
(segment (start 100.36713219971413 99.42429297446316) (end 100.3983330408369 99.44909330188011) (width 0.2032) (layer B.Cu))
(segment (start 100.3983330408369 99.44909330188011) (end 100.42808775075954 99.47619522724078) (width 0.2032) (layer B.Cu))
(segment (start 100.42808775075954 99.47619522724078) (end 100.45628359303417 99.50551764863353) (width 0.2032) (layer B.Cu))
(segment (start 100.45628359303417 99.50551764863353) (end 100.48281255004807 99.53697301139958) (width 0.2032) (layer B.Cu))
(segment (start 100.48281255004807 99.53697301139958) (end 100.5075719551076 99.57046818008375) (width 0.2032) (layer B.Cu))
(segment (start 100.5075719551076 99.57046818008375) (end 100.53046503983502 99.6059055426818) (width 0.2032) (layer B.Cu))
(segment (start 100.53046503983502 99.6059055426818) (end 100.55140141420584 99.64318445982552) (width 0.2032) (layer B.Cu))
(segment (start 100.55140141420584 99.64318445982552) (end 100.57029748974851 99.68220325871594) (width 0.2032) (layer B.Cu))
(segment (start 100.57029748974851 99.68220325871594) (end 100.58707685237054 99.72286214791528) (width 0.2032) (layer B.Cu))
(segment (start 100.58707685237054 99.72286214791528) (end 100.60167058878275 99.76506781687051) (width 0.2032) (layer B.Cu))
(segment (start 100.60167058878275 99.76506781687051) (end 100.61401756892838 99.80874143521308) (width 0.2032) (layer B.Cu))
(segment (start 100.61401756892838 99.80874143521308) (end 100.62406468581868 99.85383447482161) (width 0.2032) (layer B.Cu))
(segment (start 100.62406468581868 99.85383447482161) (end 100.63176705352026 99.90036638248655) (width 0.2032) (layer B.Cu))
(segment (start 100.63176705352026 99.90036638248655) (end 100.63708816359721 99.94854783313734) (width 0.2032) (layer B.Cu))
(segment (start 100.63708816359721 99.94854783313734) (end 100.64 100.0) (width 0.2032) (layer B.Cu))
(segment (start 100.64 100.0) (end 100.64048311215521 100.05191820510484) (width 0.2032) (layer B.Cu))
(segment (start 100.64048311215521 100.05191820510484) (end 100.63852664580061 100.10129124248435) (width 0.2032) (layer B.Cu))
(segment (start 100.63852664580061 100.10129124248435) (end 100.63412833089467 100.14962795969063) (width 0.2032) (layer B.Cu))
(segment (start 100.63412833089467 100.14962795969063) (end 100.62729442567127 100.19707551056194) (width 0.2032) (layer B.Cu))
(segment (start 100.62729442567127 100.19707551056194) (end 100.61803961557028 100.24360397344333) (width 0.2032) (layer B.Cu))
(segment (start 100.61803961557028 100.24360397344333) (end 100.60638686530311 100.28912165992479) (width 0.2032) (layer B.Cu))
(segment (start 100.60638686530311 100.28912165992479) (end 100.59236722164017 100.33350961028327) (width 0.2032) (layer B.Cu))
(segment (start 100.59236722164017 100.33350961028327) (end 100.57601956353761 100.37663586529702) (width 0.2032) (layer B.Cu))
(segment (start 100.57601956353761 100.37663586529702) (end 100.55739029480455 100.4183626264616) (width 0.2032) (layer B.Cu))
(segment (start 100.55739029480455 100.4183626264616) (end 100.53653297242005 100.45855037616079) (width 0.2032) (layer B.Cu))
(segment (start 100.53653297242005 100.45855037616079) (end 100.51350786047551 100.49706051383099) (width 0.2032) (layer B.Cu))
(segment (start 100.51350786047551 100.49706051383099) (end 100.488381394938 100.53375719144631) (width 0.2032) (layer B.Cu))
(segment (start 100.488381394938 100.53375719144631) (end 100.46122553697943 100.56850868007939) (width 0.2032) (layer B.Cu))
(segment (start 100.46122553697943 100.56850868007939) (end 100.43211698069112 100.60118844128229) (width 0.2032) (layer B.Cu))
(segment (start 100.43211698069112 100.60118844128229) (end 100.40113616130506 100.63167599978202) (width 0.2032) (layer B.Cu))
(segment (start 100.40113616130506 100.63167599978202) (end 100.36836597625285 100.65985767360901) (width 0.2032) (layer B.Cu))
(segment (start 100.36836597625285 100.65985767360901) (end 100.33389007075638 100.68562719549858) (width 0.2032) (layer B.Cu))
(segment (start 100.33389007075638 100.68562719549858) (end 100.29779042472487 100.70888624654953) (width 0.2032) (layer B.Cu))
(segment (start 100.29779042472487 100.70888624654953) (end 100.26014374483933 100.7295449154244) (width 0.2032) (layer B.Cu))
(segment (start 100.26014374483933 100.7295449154244) (end 100.2210156522347 100.74752209161507) (width 0.2032) (layer B.Cu))
(segment (start 100.2210156522347 100.74752209161507) (end 100.18045039310267 100.76274579827249) (width 0.2032) (layer B.Cu))
(segment (start 100.18045039310267 100.76274579827249) (end 100.13845019164037 100.77515346812618) (width 0.2032) (layer B.Cu))
(segment (start 100.13845019164037 100.77515346812618) (end 100.09492551561583 100.7846921646977) (width 0.2032) (layer B.Cu))
(segment (start 100.09492551561583 100.7846921646977) (end 100.04953066042098 100.79131875009448) (width 0.2032) (layer B.Cu))
(segment (start 100.04953066042098 100.79131875009448) (end 100.0 100.795) (width 0.2032) (layer B.Cu))
(segment (start 100.0 100.795) (end 99.9500343099963 100.79571266594694) (width 0.2032) (layer B.Cu))
(segment (start 99.9500343099963 100.79571266594694) (end 99.90358105451284 100.79344348449011) (width 0.2032) (layer B.Cu))
(segment (start 99.90358105451284 100.79344348449011) (end 99.85850196396632 100.78818913242482) (width 0.2032) (layer B.Cu))
(segment (start 99.85850196396632 100.78818913242482) (end 99.81451935066572 100.77995612665701) (width 0.2032) (layer B.Cu))
(segment (start 99.81451935066572 100.77995612665701) (end 99.77159371295244 100.76876066665984) (width 0.2032) (layer B.Cu))
(segment (start 99.77159371295244 100.76876066665984) (end 99.72976866920082 100.75462841655798) (width 0.2032) (layer B.Cu))
(segment (start 99.72976866920082 100.75462841655798) (end 99.68912496620077 100.73759422265249) (width 0.2032) (layer B.Cu))
(segment (start 99.68912496620077 100.73759422265249) (end 99.64976168105838 100.71770176046627) (width 0.2032) (layer B.Cu))
(segment (start 99.64976168105838 100.71770176046627) (end 99.61178696143185 100.69500310290063) (width 0.2032) (layer B.Cu))
(segment (start 99.61178696143185 100.69500310290063) (end 99.57531283344818 100.66955819745702) (width 0.2032) (layer B.Cu))
(segment (start 99.57531283344818 100.66955819745702) (end 99.54045198909242 100.64143423506668) (width 0.2032) (layer B.Cu))
(segment (start 99.54045198909242 100.64143423506668) (end 99.50731563638655 100.6107048848519) (width 0.2032) (layer B.Cu))
(segment (start 99.50731563638655 100.6107048848519) (end 99.47601196704109 100.57744935636008) (width 0.2032) (layer B.Cu))
(segment (start 99.47601196704109 100.57744935636008) (end 99.44664500792709 100.54175123036913) (width 0.2032) (layer B.Cu))
(segment (start 99.44664500792709 100.54175123036913) (end 99.41931372614015 100.50369696558853) (width 0.2032) (layer B.Cu))
(segment (start 99.41931372614015 100.50369696558853) (end 99.39411131147685 100.46337393059424) (width 0.2032) (layer B.Cu))
(segment (start 99.39411131147685 100.46337393059424) (end 99.37112458997927 100.42086770612836) (width 0.2032) (layer B.Cu))
(segment (start 99.37112458997927 100.42086770612836) (end 99.35043353943958 100.3762582050355) (width 0.2032) (layer B.Cu))
(segment (start 99.35043353943958 100.3762582050355) (end 99.33211088810467 100.32961375524707) (width 0.2032) (layer B.Cu))
(segment (start 99.33211088810467 100.32961375524707) (end 99.31622178424367 100.28098140294682) (width 0.2032) (layer B.Cu))
(segment (start 99.31622178424367 100.28098140294682) (end 99.30282352834736 100.23036950145953) (width 0.2032) (layer B.Cu))
(segment (start 99.30282352834736 100.23036950145953) (end 99.29196536243056 100.17771236917376) (width 0.2032) (layer B.Cu))
(segment (start 99.29196536243056 100.17771236917376) (end 99.28368831274082 100.12278432753395) (width 0.2032) (layer B.Cu))
(segment (start 99.28368831274082 100.12278432753395) (end 99.27802508346721 100.06491276179116) (width 0.2032) (layer B.Cu))
(segment (start 99.27802508346721 100.06491276179116) (end 99.275 100.0) (width 0.2032) (layer B.Cu))
(segment (start 99.275 100.0) (end 99.27462900105543 99.93445835642196) (width 0.2032) (layer B.Cu))
(segment (start 99.27462900105543 99.93445835642196) (end 99.27691967965278 99.8751038584783) (width 0.2032) (layer B.Cu))
(segment (start 99.27691967965278 99.8751038584783) (end 99.2818713735947 99.81803761836879) (width 0.2032) (layer B.Cu))
(segment (start 99.2818713735947 99.81803761836879) (end 99.28947530683587 99.76268938145165) (width 0.2032) (layer B.Cu))
(segment (start 99.28947530683587 99.76268938145165) (end 99.29971478401123 99.70890667832991) (width 0.2032) (layer B.Cu))
(segment (start 99.29971478401123 99.70890667832991) (end 99.31256544153912 99.65668282050049) (width 0.2032) (layer B.Cu))
(segment (start 99.31256544153912 99.65668282050049) (end 99.32799556025375 99.60607688475713) (width 0.2032) (layer B.Cu))
(segment (start 99.32799556025375 99.60607688475713) (end 99.34596644665943 99.55718130925672) (width 0.2032) (layer B.Cu))
(segment (start 99.34596644665943 99.55718130925672) (end 99.36643289293526 99.5101061281166) (width 0.2032) (layer B.Cu))
(segment (start 99.36643289293526 99.5101061281166) (end 99.3893437302262 99.46497027837354) (width 0.2032) (layer B.Cu))
(segment (start 99.3893437302262 99.46497027837354) (end 99.41464249628311 99.42189633611359) (width 0.2032) (layer B.Cu))
(segment (start 99.41464249628311 99.42189633611359) (end 99.4422682484075 99.38100708494824) (width 0.2032) (layer B.Cu))
(segment (start 99.4422682484075 99.38100708494824) (end 99.47215656802673 99.34242314176592) (width 0.2032) (layer B.Cu))
(segment (start 99.47215656802673 99.34242314176592) (end 99.50424082781187 99.30626123312) (width 0.2032) (layer B.Cu))
(segment (start 99.50424082781187 99.30626123312) (end 99.53845383290633 99.27263289542333) (width 0.2032) (layer B.Cu))
(segment (start 99.53845383290633 99.27263289542333) (end 99.57473001773873 99.24164346600844) (width 0.2032) (layer B.Cu))
(segment (start 99.57473001773873 99.24164346600844) (end 99.61300850576218 99.21339128392013) (width 0.2032) (layer B.Cu))
(segment (start 99.61300850576218 99.21339128392013) (end 99.65323757899894 99.18796704924218) (width 0.2032) (layer B.Cu))
(segment (start 99.65323757899894 99.18796704924218) (end 99.69538159207282 99.16545330774925) (width 0.2032) (layer B.Cu))
(segment (start 99.69538159207282 99.16545330774925) (end 99.73943244693386 99.14592403886066) (width 0.2032) (layer B.Cu))
(segment (start 99.73943244693386 99.14592403886066) (end 99.78543042219863 99.12944433204876) (width 0.2032) (layer B.Cu))
(segment (start 99.78543042219863 99.12944433204876) (end 99.8335068585753 99.11607014159705) (width 0.2032) (layer B.Cu))
(segment (start 99.8335068585753 99.11607014159705) (end 99.88398891516168 99.10584811284124) (width 0.2032) (layer B.Cu))
(segment (start 99.88398891516168 99.10584811284124) (end 99.93775278052654 99.09881547532287) (width 0.2032) (layer B.Cu))
(segment (start 99.93775278052654 99.09881547532287) (end 100.00000000000003 99.095) (width 0.2032) (layer B.Cu))
(segment (start 100.00000000000003 99.095) (end 100.06284656917141 99.09442001903388) (width 0.2032) (layer B.Cu))
(segment (start 100.06284656917141 99.09442001903388) (end 100.11795196733466 99.09708450787535) (width 0.2032) (layer B.Cu))
(segment (start 100.11795196733466 99.09708450787535) (end 100.17030583559745 99.1029932305532) (width 0.2032) (layer B.Cu))
(segment (start 100.17030583559745 99.1029932305532) (end 100.22068039430737 99.11213695034274) (width 0.2032) (layer B.Cu))
(segment (start 100.22068039430737 99.11213695034274) (end 100.26933141085192 99.12449770950941) (width 0.2032) (layer B.Cu))
(segment (start 100.26933141085192 99.12449770950941) (end 100.31633505008105 99.14004918374214) (width 0.2032) (layer B.Cu))
(segment (start 100.31633505008105 99.14004918374214) (end 100.36168615843891 99.15875711944693) (width 0.2032) (layer B.Cu))
(segment (start 100.36168615843891 99.15875711944693) (end 100.40533774958426 99.1805798655839) (width 0.2032) (layer B.Cu))
(segment (start 100.40533774958426 99.1805798655839) (end 100.44722002754521 99.20546901669302) (width 0.2032) (layer B.Cu))
(segment (start 100.44722002754521 99.20546901669302) (end 100.48725074193224 99.23337019092712) (width 0.2032) (layer B.Cu))
(segment (start 100.48725074193224 99.23337019092712) (end 100.52534135455203 99.26422397751618) (width 0.2032) (layer B.Cu))
(segment (start 100.52534135455203 99.26422397751618) (end 100.56140097676396 99.29796710414647) (width 0.2032) (layer B.Cu))
(segment (start 100.56140097676396 99.29796710414647) (end 100.59533902730962 99.3345338997005) (width 0.2032) (layer B.Cu))
(segment (start 100.59533902730962 99.3345338997005) (end 100.62706710853355 99.37385816776529) (width 0.2032) (layer B.Cu))
(segment (start 100.62706710853355 99.37385816776529) (end 100.65650037874396 99.41587565249377) (width 0.2032) (layer B.Cu))
(segment (start 100.65650037874396 99.41587565249377) (end 100.68355858363083 99.46052739239929) (width 0.2032) (layer B.Cu))
(segment (start 100.68355858363083 99.46052739239929) (end 100.7081668463466 99.507764463362) (width 0.2032) (layer B.Cu))
(segment (start 100.7081668463466 99.507764463362) (end 100.7302562792842 99.55755500456108) (width 0.2032) (layer B.Cu))
(segment (start 100.7302562792842 99.55755500456108) (end 100.74976445860848 99.60989522247976) (width 0.2032) (layer B.Cu))
(segment (start 100.74976445860848 99.60989522247976) (end 100.7666357889192 99.66482785072874) (width 0.2032) (layer B.Cu))
(segment (start 100.7666357889192 99.66482785072874) (end 100.78082177663629 99.72247597338186) (width 0.2032) (layer B.Cu))
(segment (start 100.78082177663629 99.72247597338186) (end 100.79228122487669 99.78311292725792) (width 0.2032) (layer B.Cu))
(segment (start 100.79228122487669 99.78311292725792) (end 100.80098035860782 99.84733530755601) (width 0.2032) (layer B.Cu))
(segment (start 100.80098035860782 99.84733530755601) (end 100.8068928860273 99.91665229919117) (width 0.2032) (layer B.Cu))
(segment (start 100.8068928860273 99.91665229919117) (end 100.81 99.99999999999996) (width 0.2032) (layer B.Cu))
(segment (start 100.81 99.99999999999996) (end 100.810290321689 100.08421775093898) (width 0.2032) (layer B.Cu))
(segment (start 100.810290321689 100.08421775093898) (end 100.80775978704199 100.15541765936652) (width 0.2032) (layer B.Cu))
(segment (start 100.80775978704199 100.15541765936652) (end 100.80241147537367 100.222217414034) (width 0.2032) (layer B.Cu))
(segment (start 100.80241147537367 100.222217414034) (end 100.79425537776788 100.2859757624803) (width 0.2032) (layer B.Cu))
(segment (start 100.79425537776788 100.2859757624803) (end 100.7833081012551 100.34718848620888) (width 0.2032) (layer B.Cu))
(segment (start 100.7833081012551 100.34718848620888) (end 100.76959250250825 100.4060526747754) (width 0.2032) (layer B.Cu))
(segment (start 100.76959250250825 100.4060526747754) (end 100.7531372418887 100.46262991429215) (width 0.2032) (layer B.Cu))
(segment (start 100.7531372418887 100.46262991429215) (end 100.73397624469817 100.51691136080821) (width 0.2032) (layer B.Cu))
(segment (start 100.73397624469817 100.51691136080821) (end 100.71214805090075 100.56884884333704) (width 0.2032) (layer B.Cu))
(segment (start 100.71214805090075 100.56884884333704) (end 100.68769502651541 100.61837163679833) (width 0.2032) (layer B.Cu))
(segment (start 100.68769502651541 100.61837163679833) (end 100.66066239796709 100.66539633705713) (width 0.2032) (layer B.Cu))
(segment (start 100.66066239796709 100.66539633705713) (end 100.63109705264453 100.70983307988668) (width 0.2032) (layer B.Cu))
(segment (start 100.63109705264453 100.70983307988668) (end 100.59904602084892 100.75158967176517) (width 0.2032) (layer B.Cu))
(segment (start 100.59904602084892 100.75158967176517) (end 100.56455450932475 100.79057445313879) (width 0.2032) (layer B.Cu))
(segment (start 100.56455450932475 100.79057445313879) (end 100.52766328191986 100.82669835137037) (width 0.2032) (layer B.Cu))
(segment (start 100.52766328191986 100.82669835137037) (end 100.48840505405607 100.85987639137363) (width 0.2032) (layer B.Cu))
(segment (start 100.48840505405607 100.85987639137363) (end 100.44679933457166 100.89002882774537) (width 0.2032) (layer B.Cu))
(segment (start 100.44679933457166 100.89002882774537) (end 100.402844702479 100.91708200208882) (width 0.2032) (layer B.Cu))
(segment (start 100.402844702479 100.91708200208882) (end 100.35650659239872 100.9409689931121) (width 0.2032) (layer B.Cu))
(segment (start 100.35650659239872 100.9409689931121) (end 100.30769662254848 100.96163010461615) (width 0.2032) (layer B.Cu))
(segment (start 100.30769662254848 100.96163010461615) (end 100.256234408582 100.97901322204969) (width 0.2032) (layer B.Cu))
(segment (start 100.256234408582 100.97901322204969) (end 100.20176801542436 100.99307405873522) (width 0.2032) (layer B.Cu))
(segment (start 100.20176801542436 100.99307405873522) (end 100.14357538329614 101.00377630631286) (width 0.2032) (layer B.Cu))
(segment (start 100.14357538329614 101.00377630631286) (end 100.079880392642 101.01109169927817) (width 0.2032) (layer B.Cu))
(segment (start 100.079880392642 101.01109169927817) (end 99.99999999999987 101.015) (width 0.2032) (layer B.Cu))
(segment (start 99.99999999999987 101.015) (end 99.91928632298624 101.0154889078208) (width 0.2032) (layer B.Cu))
(segment (start 99.91928632298624 101.0154889078208) (end 99.85388054367591 101.01255389343075) (width 0.2032) (layer B.Cu))
(segment (start 99.85388054367591 101.01255389343075) (end 99.79342162285937 101.0061979574046) (width 0.2032) (layer B.Cu))
(segment (start 99.79342162285937 101.0061979574046) (end 99.73627838303067 100.99643130935978) (width 0.2032) (layer B.Cu))
(segment (start 99.73627838303067 100.99643130935978) (end 99.68182254421386 100.98327096138796) (width 0.2032) (layer B.Cu))
(segment (start 99.68182254421386 100.98327096138796) (end 99.62977067001316 100.9667402259307) (width 0.2032) (layer B.Cu))
(segment (start 99.62977067001316 100.9667402259307) (end 99.57999562120045 100.94686810371715) (width 0.2032) (layer B.Cu))
(segment (start 99.57999562120045 100.94686810371715) (end 99.53245191362716 100.92368854118516) (width 0.2032) (layer B.Cu))
(segment (start 99.53245191362716 100.92368854118516) (end 99.48714029311652 100.89723952811245) (width 0.2032) (layer B.Cu))
(segment (start 99.48714029311652 100.89723952811245) (end 99.44408878070122 100.86756199365365) (width 0.2032) (layer B.Cu))
(segment (start 99.44408878070122 100.86756199365365) (end 99.4033416150099 100.83469844046462) (width 0.2032) (layer B.Cu))
(segment (start 99.4033416150099 100.83469844046462) (end 99.3649523641155 100.7986912285326) (width 0.2032) (layer B.Cu))
(segment (start 99.3649523641155 100.7986912285326) (end 99.3289794085296 100.75958037661321) (width 0.2032) (layer B.Cu))
(segment (start 99.3289794085296 100.75958037661321) (end 99.2954828560264 100.71740067896467) (width 0.2032) (layer B.Cu))
(segment (start 99.2954828560264 100.71740067896467) (end 99.26452236577315 100.67217781834024) (width 0.2032) (layer B.Cu))
(segment (start 99.26452236577315 100.67217781834024) (end 99.2361555758404 100.62392295420278) (width 0.2032) (layer B.Cu))
(segment (start 99.2361555758404 100.62392295420278) (end 99.2104369472331 100.57262489872748) (width 0.2032) (layer B.Cu))
(segment (start 99.2104369472331 100.57262489872748) (end 99.18741690619963 100.51823829006197) (width 0.2032) (layer B.Cu))
(segment (start 99.18741690619963 100.51823829006197) (end 99.167141207747 100.46066472701632) (width 0.2032) (layer B.Cu))
(segment (start 99.167141207747 100.46066472701632) (end 99.1496504688893 100.39972059070669) (width 0.2032) (layer B.Cu))
(segment (start 99.1496504688893 100.39972059070669) (end 99.134979836598 100.33507716105301) (width 0.2032) (layer B.Cu))
(segment (start 99.134979836598 100.33507716105301) (end 99.12315876631867 100.26613492571462) (width 0.2032) (layer B.Cu))
(segment (start 99.12315876631867 100.26613492571462) (end 99.11421089438089 100.19170713837195) (width 0.2032) (layer B.Cu))
(segment (start 99.11421089438089 100.19170713837195) (end 99.10815399293433 100.1089174088379) (width 0.2032) (layer B.Cu))
(segment (start 99.10815399293433 100.1089174088379) (end 99.105 100.00000000000041) (width 0.2032) (layer B.Cu))
(segment (start 99.105 100.00000000000041) (end 99.10475512036433 99.88987679320061) (width 0.2032) (layer B.Cu))
(segment (start 99.10475512036433 99.88987679320061) (end 99.10741999574 99.80469863315614) (width 0.2032) (layer B.Cu))
(segment (start 99.10741999574 99.80469863315614) (end 99.11298994516358 99.72716721388869) (width 0.2032) (layer B.Cu))
(segment (start 99.11298994516358 99.72716721388869) (end 99.12145527925628 99.65460797629852) (width 0.2032) (layer B.Cu))
(segment (start 99.12145527925628 99.65460797629852) (end 99.1328016950085 99.58596166804479) (width 0.2032) (layer B.Cu))
(segment (start 99.1328016950085 99.58596166804479) (end 99.147010761481 99.52072005359098) (width 0.2032) (layer B.Cu))
(segment (start 99.147010761481 99.52072005359098) (end 99.16406051167117 99.4586240542258) (width 0.2032) (layer B.Cu))
(segment (start 99.16406051167117 99.4586240542258) (end 99.18392616237789 99.39954513201089) (width 0.2032) (layer B.Cu))
(segment (start 99.18392616237789 99.39954513201089) (end 99.20658099312756 99.34342936416719) (width 0.2032) (layer B.Cu))
(segment (start 99.20658099312756 99.34342936416719) (end 99.23199742851952 99.29026771474634) (width 0.2032) (layer B.Cu))
(segment (start 99.23199742851952 99.29026771474634) (end 99.26014838800775 99.24007881301874) (width 0.2032) (layer B.Cu))
(segment (start 99.26014838800775 99.24007881301874) (end 99.29100899696986 99.19289830805876) (width 0.2032) (layer B.Cu))
(segment (start 99.29100899696986 99.19289830805876) (end 99.32455879947074 99.14877194738521) (width 0.2032) (layer B.Cu))
(segment (start 99.32455879947074 99.14877194738521) (end 99.36078468805196 99.10775089378049) (width 0.2032) (layer B.Cu))
(segment (start 99.36078468805196 99.10775089378049) (end 99.39968489073715 99.06988845555239) (width 0.2032) (layer B.Cu))
(segment (start 99.39968489073715 99.06988845555239) (end 99.44127457207895 99.03523774827852) (width 0.2032) (layer B.Cu))
(segment (start 99.44127457207895 99.03523774827852) (end 99.48559399917323 99.00384999412627) (width 0.2032) (layer B.Cu))
(segment (start 99.48559399917323 99.00384999412627) (end 99.53272098228 98.97577327302147) (width 0.2032) (layer B.Cu))
(segment (start 99.53272098228 98.97577327302147) (end 99.58279086497559 98.95105160475387) (width 0.2032) (layer B.Cu))
(segment (start 99.58279086497559 98.95105160475387) (end 99.63603086069914 98.92972428135587) (width 0.2032) (layer B.Cu))
(segment (start 99.63603086069914 98.92972428135587) (end 99.69282440217249 98.91182539491311) (width 0.2032) (layer B.Cu))
(segment (start 99.69282440217249 98.91182539491311) (end 99.75384722389018 98.89738352306091) (width 0.2032) (layer B.Cu))
(segment (start 99.75384722389018 98.89738352306091) (end 99.82041300605437 98.88642154611485) (width 0.2032) (layer B.Cu))
(segment (start 99.82041300605437 98.88642154611485) (end 99.89569224442117 98.87895657808531) (width 0.2032) (layer B.Cu))
(segment (start 99.89569224442117 98.87895657808531) (end 99.99999999999723 98.875) (width 0.2032) (layer B.Cu))
(segment (start 99.99999999999723 98.875) (end 100.10545507053287 98.8745575888354) (width 0.2032) (layer B.Cu))
(segment (start 100.10545507053287 98.8745575888354) (end 100.18289024014928 98.87762973952238) (width 0.2032) (layer B.Cu))
(segment (start 100.18289024014928 98.87762973952238) (end 100.25217025141141 98.88421178139446) (width 0.2032) (layer B.Cu))
(segment (start 100.25217025141141 98.88421178139446) (end 100.31628094694398 98.89429439448644) (width 0.2032) (layer B.Cu))
(segment (start 100.31628094694398 98.89429439448644) (end 100.37642322588863 98.90786413567278) (width 0.2032) (layer B.Cu))
(segment (start 100.37642322588863 98.90786413567278) (end 100.43319463874923 98.92490409024452) (width 0.2032) (layer B.Cu))
(segment (start 100.43319463874923 98.92490409024452) (end 100.48692097796119 98.94539467179622) (width 0.2032) (layer B.Cu))
(segment (start 100.48692097796119 98.94539467179622) (end 100.53778560297503 98.9693146031464) (width 0.2032) (layer B.Cu))
(segment (start 100.53778560297503 98.9693146031464) (end 100.58589003074238 98.99664212481674) (width 0.2032) (layer B.Cu))
(segment (start 100.58589003074238 98.99664212481674) (end 100.63128595273427 99.02735649749346) (width 0.2032) (layer B.Cu))
(segment (start 100.63128595273427 99.02735649749346) (end 100.67399367093513 99.06143989434786) (width 0.2032) (layer B.Cu))
(segment (start 100.67399367093513 99.06143989434786) (end 100.71401342144432 99.09887982386725) (width 0.2032) (layer B.Cu))
(segment (start 100.71401342144432 99.09887982386725) (end 100.7513326863128 99.13967229385052) (width 0.2032) (layer B.Cu))
(segment (start 100.7513326863128 99.13967229385052) (end 100.78593110440927 99.18382604013088) (width 0.2032) (layer B.Cu))
(segment (start 100.78593110440927 99.18382604013088) (end 100.81778387323746 99.23136833220916) (width 0.2032) (layer B.Cu))
(segment (start 100.81778387323746 99.23136833220916) (end 100.84686416184809 99.28235319613471) (width 0.2032) (layer B.Cu))
(segment (start 100.84686416184809 99.28235319613471) (end 100.87314485147026 99.33687349372526) (width 0.2032) (layer B.Cu))
(segment (start 100.87314485147026 99.33687349372526) (end 100.89659980363581 99.3950794537468) (width 0.2032) (layer B.Cu))
(segment (start 100.89659980363581 99.3950794537468) (end 100.91720478568064 99.45720864551105) (width 0.2032) (layer B.Cu))
(segment (start 100.91720478568064 99.45720864551105) (end 100.93493814017454 99.52363779643284) (width 0.2032) (layer B.Cu))
(segment (start 100.93493814017454 99.52363779643284) (end 100.94978125707243 99.59498054863755) (width 0.2032) (layer B.Cu))
(segment (start 100.94978125707243 99.59498054863755) (end 100.96171888902998 99.67229570794812) (width 0.2032) (layer B.Cu))
(segment (start 100.96171888902998 99.67229570794812) (end 100.97073933779964 99.75762088898057) (width 0.2032) (layer B.Cu))
(segment (start 100.97073933779964 99.75762088898057) (end 100.97683453075243 99.8558778985225) (width 0.2032) (layer B.Cu))
(segment (start 100.97683453075243 99.8558778985225) (end 100.98 99.99999999999497) (width 0.2032) (layer B.Cu))
(segment (start 100.98 99.99999999999497) (end 100.98023477143225 100.14576778863413) (width 0.2032) (layer B.Cu))
(segment (start 100.98023477143225 100.14576778863413) (end 100.97754116661399 100.24700359145608) (width 0.2032) (layer B.Cu))
(segment (start 100.97754116661399 100.24700359145608) (end 100.97192451642734 100.33600884980919) (width 0.2032) (layer B.Cu))
(segment (start 100.97192451642734 100.33600884980919) (end 100.96339278118829 100.41745785178978) (width 0.2032) (layer B.Cu))
(segment (start 100.96339278118829 100.41745785178978) (end 100.95195606728637 100.49324073032115) (width 0.2032) (layer B.Cu))
(segment (start 100.95195606728637 100.49324073032115) (end 100.93762602470272 100.56431608577351) (width 0.2032) (layer B.Cu))
(segment (start 100.93762602470272 100.56431608577351) (end 100.9204151024025 100.63122503637356) (width 0.2032) (layer B.Cu))
(segment (start 100.9204151024025 100.63122503637356) (end 100.90033562864453 100.69429014377758) (width 0.2032) (layer B.Cu))
(segment (start 100.90033562864453 100.69429014377758) (end 100.87739866930896 100.75370802651629) (width 0.2032) (layer B.Cu))
(segment (start 100.87739866930896 100.75370802651629) (end 100.85161259722928 100.80959802723567) (width 0.2032) (layer B.Cu))
(segment (start 100.85161259722928 100.80959802723567) (end 100.8229812756986 100.86203009065603) (width 0.2032) (layer B.Cu))
(segment (start 100.8229812756986 100.86203009065603) (end 100.79150171391754 100.91104179988645) (width 0.2032) (layer B.Cu))
(segment (start 100.79150171391754 100.91104179988645) (end 100.75716098101252 100.95664932177658) (width 0.2032) (layer B.Cu))
(segment (start 100.75716098101252 100.95664932177658) (end 100.71993205024671 100.99885472149532) (width 0.2032) (layer B.Cu))
(segment (start 100.71993205024671 100.99885472149532) (end 100.6797680524173 101.03765100480564) (width 0.2032) (layer B.Cu))
(segment (start 100.6797680524173 101.03765100480564) (end 100.63659408134824 101.07302567831047) (width 0.2032) (layer B.Cu))
(segment (start 100.63659408134824 101.07302567831047) (end 100.59029507923586 101.10496330766887) (width 0.2032) (layer B.Cu))
(segment (start 100.59029507923586 101.10496330766887) (end 100.54069713727513 101.13344737602903) (width 0.2032) (layer B.Cu))
(segment (start 100.54069713727513 101.13344737602903) (end 100.48753706845163 101.1584616388215) (width 0.2032) (layer B.Cu))
(segment (start 100.48753706845163 101.1584616388215) (end 100.4304094845646 101.17999110539361) (width 0.2032) (layer B.Cu))
(segment (start 100.4304094845646 101.17999110539361) (end 100.36866630268479 101.19802273597546) (width 0.2032) (layer B.Cu))
(segment (start 100.36866630268479 101.19802273597546) (end 100.30120107844276 101.21254591476269) (width 0.2032) (layer B.Cu))
(segment (start 100.30120107844276 101.21254591476269) (end 100.22589129983398 101.2235527410242) (width 0.2032) (layer B.Cu))
(segment (start 100.22589129983398 101.2235527410242) (end 100.13758118265088 101.23103816681089) (width 0.2032) (layer B.Cu))
(segment (start 100.13758118265088 101.23103816681089) (end 100.00000000003128 101.235) (width 0.2032) (layer B.Cu))
(segment (start 100.00000000003128 101.235) (end 99.86087515553817 101.23543878371716) (width 0.2032) (layer B.Cu))
(segment (start 99.86087515553817 101.23543878371716) (end 99.7699130438687 101.2323575567008) (width 0.2032) (layer B.Cu))
(segment (start 99.7699130438687 101.2323575567008) (end 99.69142374190922 101.2257614932031) (width 0.2032) (layer B.Cu))
(segment (start 99.69142374190922 101.2257614932031) (end 99.62046667626026 101.21565741494268) (width 0.2032) (layer B.Cu))
(segment (start 99.62046667626026 101.21565741494268) (end 99.55504325214439 101.20205316082189) (width 0.2032) (layer B.Cu))
(segment (start 99.55504325214439 101.20205316082189) (end 99.49412854175277 101.1849567918718) (width 0.2032) (layer B.Cu))
(segment (start 99.49412854175277 101.1849567918718) (end 99.43713143183243 101.1643755982459) (width 0.2032) (layer B.Cu))
(segment (start 99.43713143183243 101.1643755982459) (end 99.38368735511717 101.14031486069491) (width 0.2032) (layer B.Cu))
(segment (start 99.38368735511717 101.14031486069491) (end 99.33356239056278 101.11277629878943) (width 0.2032) (layer B.Cu))
(segment (start 99.33356239056278 101.11277629878943) (end 99.2866031360364 101.08175610902781) (width 0.2032) (layer B.Cu))
(segment (start 99.2866031360364 101.08175610902781) (end 99.24270813130279 101.04724245271973) (width 0.2032) (layer B.Cu))
(segment (start 99.24270813130279 101.04724245271973) (end 99.20181047279262 101.00921218755194) (width 0.2032) (layer B.Cu))
(segment (start 99.20181047279262 101.00921218755194) (end 99.16386669195963 100.96762653313529) (width 0.2032) (layer B.Cu))
(segment (start 99.16386669195963 100.96762653313529) (end 99.12884935342144 100.92242519293336) (width 0.2032) (layer B.Cu))
(segment (start 99.12884935342144 100.92242519293336) (end 99.09674197224331 100.87351817301719) (width 0.2032) (layer B.Cu))
(segment (start 99.09674197224331 100.87351817301719) (end 99.0675354376107 100.82077404475389) (width 0.2032) (layer B.Cu))
(segment (start 99.0675354376107 100.82077404475389) (end 99.04122545034855 100.76400249273001) (width 0.2032) (layer B.Cu))
(segment (start 99.04122545034855 100.76400249273001) (end 99.01781066476848 100.7029272274387) (width 0.2032) (layer B.Cu))
(segment (start 99.01781066476848 100.7029272274387) (end 98.99729133434555 100.63714166582994) (width 0.2032) (layer B.Cu))
(segment (start 98.99729133434555 100.63714166582994) (end 98.97966832805912 100.56603140286495) (width 0.2032) (layer B.Cu))
(segment (start 98.97966832805912 100.56603140286495) (end 98.96494242720703 100.48862607394287) (width 0.2032) (layer B.Cu))
(segment (start 98.96494242720703 100.48862607394287) (end 98.95311384079936 100.40327913657627) (width 0.2032) (layer B.Cu))
(segment (start 98.95311384079936 100.40327913657627) (end 98.94418189686999 100.30683228533489) (width 0.2032) (layer B.Cu))
(segment (start 98.94418189686999 100.30683228533489) (end 98.93814488058744 100.1915536647741) (width 0.2032) (layer B.Cu))
(segment (start 98.93814488058744 100.1915536647741) (end 98.935 100.00000000006835) (width 0.2032) (layer B.Cu))
(segment (start 98.935 100.00000000006835) (end 98.93474346798776 99.80626041596221) (width 0.2032) (layer B.Cu))
(segment (start 98.93474346798776 99.80626041596221) (end 98.93737069545985 99.68736647395022) (width 0.2032) (layer B.Cu))
(segment (start 98.93737069545985 99.68736647395022) (end 98.94287659674576 99.58666220738074) (width 0.2032) (layer B.Cu))
(segment (start 98.94287659674576 99.58666220738074) (end 98.95125601409623 99.49669351068708) (width 0.2032) (layer B.Cu))
(segment (start 98.95125601409623 99.49669351068708) (end 98.96250427484166 99.41445791854218) (width 0.2032) (layer B.Cu))
(segment (start 98.96250427484166 99.41445791854218) (end 98.97661790276217 99.33840925934616) (width 0.2032) (layer B.Cu))
(segment (start 98.97661790276217 99.33840925934616) (end 98.99359551552742 99.267645933603) (width 0.2032) (layer B.Cu))
(segment (start 98.99359551552742 99.267645933603) (end 99.0134389539849 99.2016017875527) (width 0.2032) (layer B.Cu))
(segment (start 99.0134389539849 99.2016017875527) (end 99.03615470859405 99.1399039837654) (width 0.2032) (layer B.Cu))
(segment (start 99.03615470859405 99.1399039837654) (end 99.0617557365293 99.0822990969328) (width 0.2032) (layer B.Cu))
(segment (start 99.0617557365293 99.0822990969328) (end 99.09026380495038 99.02861117235227) (width 0.2032) (layer B.Cu))
(segment (start 99.09026380495038 99.02861117235227) (end 99.12171256010517 98.9787163126855) (width 0.2032) (layer B.Cu))
(segment (start 99.12171256010517 98.9787163126855) (end 99.1561516229091 98.93252647919404) (width 0.2032) (layer B.Cu))
(segment (start 99.1561516229091 98.93252647919404) (end 99.19365217568411 98.8899787453212) (width 0.2032) (layer B.Cu))
(segment (start 99.19365217568411 98.8899787453212) (end 99.23431478094669 98.85102793747433) (width 0.2032) (layer B.Cu))
(segment (start 99.23431478094669 98.85102793747433) (end 99.278280657822 98.81564146791979) (width 0.2032) (layer B.Cu))
(segment (start 99.278280657822 98.81564146791979) (end 99.32574853442408 98.7837956373267) (width 0.2032) (layer B.Cu))
(segment (start 99.32574853442408 98.7837956373267) (end 99.37700093706647 98.75547295397075) (width 0.2032) (layer B.Cu))
(segment (start 99.37700093706647 98.75547295397075) (end 99.43244742774489 98.73066017676102) (width 0.2032) (layer B.Cu))
(segment (start 99.43244742774489 98.73066017676102) (end 99.49270065952118 98.70934688795751) (width 0.2032) (layer B.Cu))
(segment (start 99.49270065952118 98.70934688795751) (end 99.55872259770605 98.69152446431255) (width 0.2032) (layer B.Cu))
(segment (start 99.55872259770605 98.69152446431255) (end 99.63214288982226 98.67718535667599) (width 0.2032) (layer B.Cu))
(segment (start 99.63214288982226 98.67718535667599) (end 99.71609723853274 98.66632261611362) (width 0.2032) (layer B.Cu))
(segment (start 99.71609723853274 98.66632261611362) (end 99.81834012934004 98.6589296242559) (width 0.2032) (layer B.Cu))
(segment (start 99.81834012934004 98.6589296242559) (end 99.9999999996174 98.655) (width 0.2032) (layer B.Cu))
(segment (start 99.9999999996174 98.655) (end 100.18367147068984 98.65452766583394) (width 0.2032) (layer B.Cu))
(segment (start 100.18367147068984 98.65452766583394) (end 100.28907617707422 98.65750706631478) (width 0.2032) (layer B.Cu))
(segment (start 100.28907617707422 98.65750706631478) (end 100.37665138276377 98.6639335396467) (width 0.2032) (layer B.Cu))
(segment (start 100.37665138276377 98.6639335396467) (end 100.45392191491592 98.67380385174947) (width 0.2032) (layer B.Cu))
(segment (start 100.45392191491592 98.67380385174947) (end 100.52389919126925 98.6871169115505) (width 0.2032) (layer B.Cu))
(segment (start 100.52389919126925 98.6871169115505) (end 100.58813555143796 98.70387469748003) (width 0.2032) (layer B.Cu))
(segment (start 100.58813555143796 98.70387469748003) (end 100.64754204302443 98.72408343960552) (width 0.2032) (layer B.Cu))
(segment (start 100.64754204302443 98.72408343960552) (end 100.7026973480944 98.74775512137228) (width 0.2032) (layer B.Cu))
(segment (start 100.7026973480944 98.74775512137228) (end 100.75398894142849 98.77490939232578) (width 0.2032) (layer B.Cu))
(segment (start 100.75398894142849 98.77490939232578) (end 100.80168611748094 98.80557602288201) (width 0.2032) (layer B.Cu))
(segment (start 100.80168611748094 98.80557602288201) (end 100.8459812550874 98.83979809133834) (width 0.2032) (layer B.Cu))
(segment (start 100.8459812550874 98.83979809133834) (end 100.88701472663563 98.87763618388499) (width 0.2032) (layer B.Cu))
(segment (start 100.88701472663563 98.87763618388499) (end 100.92489072321813 98.91917403121332) (width 0.2032) (layer B.Cu))
(segment (start 100.92489072321813 98.91917403121332) (end 100.95968772322495 98.96452623791184) (width 0.2032) (layer B.Cu))
(segment (start 100.95968772322495 98.96452623791184) (end 100.99146564427299 99.01384915350219) (width 0.2032) (layer B.Cu))
(segment (start 100.99146564427299 99.01384915350219) (end 101.02027085575723 99.06735662496489) (width 0.2032) (layer B.Cu))
(segment (start 101.02027085575723 99.06735662496489) (end 101.04613976200073 99.1253436473477) (width 0.2032) (layer B.Cu))
(segment (start 101.04613976200073 99.1253436473477) (end 101.06910140019326 99.18822342961175) (width 0.2032) (layer B.Cu))
(segment (start 101.06910140019326 99.18822342961175) (end 101.08917933970696 99.25658865171286) (width 0.2032) (layer B.Cu))
(segment (start 101.08917933970696 99.25658865171286) (end 101.10639307245658 99.33131978198983) (width 0.2032) (layer B.Cu))
(segment (start 101.10639307245658 99.33131978198983) (end 101.12075902237063 99.41379455784691) (width 0.2032) (layer B.Cu))
(segment (start 101.12075902237063 99.41379455784691) (end 101.13229126165618 99.50634730038827) (width 0.2032) (layer B.Cu))
(segment (start 101.13229126165618 99.50634730038827) (end 101.14100199422269 99.61348927600321) (width 0.2032) (layer B.Cu))
(segment (start 101.14100199422269 99.61348927600321) (end 101.14690184750827 99.74649887490875) (width 0.2032) (layer B.Cu))
(segment (start 101.14690184750827 99.74649887490875) (end 101.15 99.99999999906778) (width 0.2032) (layer B.Cu))
(segment (start 101.15 99.99999999906778) (end 101.15030416100157 100.25630617789838) (width 0.2032) (layer B.Cu))
(segment (start 101.15030416100157 100.25630617789838) (end 101.14782041033676 100.39356345655634) (width 0.2032) (layer B.Cu))
(segment (start 101.14782041033676 100.39356345655634) (end 101.14255289768307 100.50549058176493) (width 0.2032) (layer B.Cu))
(segment (start 101.14255289768307 100.50549058176493) (end 101.13450339326745 100.60308042645093) (width 0.2032) (layer B.Cu))
(segment (start 101.13450339326745 100.60308042645093) (end 101.12367067289685 100.69069391786535) (width 0.2032) (layer B.Cu))
(segment (start 101.12367067289685 100.69069391786535) (end 101.11004970979435 100.77057401992103) (width 0.2032) (layer B.Cu))
(segment (start 101.11004970979435 100.77057401992103) (end 101.09363063223658 100.84403969760885) (width 0.2032) (layer B.Cu))
(segment (start 101.09363063223658 100.84403969760885) (end 101.07439738779085 100.911933277155) (width 0.2032) (layer B.Cu))
(segment (start 101.07439738779085 100.911933277155) (end 101.0523260293981 100.97482358565773) (width 0.2032) (layer B.Cu))
(segment (start 101.0523260293981 100.97482358565773) (end 101.02738250149744 101.03311051200153) (width 0.2032) (layer B.Cu))
(segment (start 101.02738250149744 101.03311051200153) (end 100.99951974910499 101.0870838395529) (width 0.2032) (layer B.Cu))
(segment (start 100.99951974910499 101.0870838395529) (end 100.96867388791236 101.13695863179221) (width 0.2032) (layer B.Cu))
(segment (start 100.96867388791236 101.13695863179221) (end 100.93475903936427 101.18289764407898) (width 0.2032) (layer B.Cu))
(segment (start 100.93475903936427 101.18289764407898) (end 100.8976602157758 101.22502611122003) (width 0.2032) (layer B.Cu))
(segment (start 100.8976602157758 101.22502611122003) (end 100.85722327004981 101.26344182936487) (width 0.2032) (layer B.Cu))
(segment (start 100.85722327004981 101.26344182936487) (end 100.81324027070974 101.29822221189511) (width 0.2032) (layer B.Cu))
(segment (start 100.81324027070974 101.29822221189511) (end 100.76542745112253 101.32942932970552) (width 0.2032) (layer B.Cu))
(segment (start 100.76542745112253 101.32942932970552) (end 100.71339050020501 101.35711356658304) (width 0.2032) (layer B.Cu))
(segment (start 100.71339050020501 101.35711356658304) (end 100.65656693411721 101.38131629577545) (width 0.2032) (layer B.Cu))
(segment (start 100.65656693411721 101.38131629577545) (end 100.59412367643922 101.40207184601219) (width 0.2032) (layer B.Cu))
(segment (start 100.59412367643922 101.40207184601219) (end 100.52475783155991 101.41940893782721) (width 0.2032) (layer B.Cu))
(segment (start 100.52475783155991 101.41940893782721) (end 100.44625681858182 101.43335171385172) (width 0.2032) (layer B.Cu))
(segment (start 100.44625681858182 101.43335171385172) (end 100.35431931040033 101.44392044815613) (width 0.2032) (layer B.Cu))
(segment (start 100.35431931040033 101.44392044815613) (end 100.23806290134038 101.45113199278023) (width 0.2032) (layer B.Cu))
(segment (start 100.23806290134038 101.45113199278023) (end 99.99999999843753 101.455) (width 0.2032) (layer B.Cu))
(segment (start 99.99999999843753 101.455) (end 99.75941078356658 101.45553494386348) (width 0.2032) (layer B.Cu))
(segment (start 99.75941078356658 101.45553494386348) (end 99.63951056550744 101.45274395219255) (width 0.2032) (layer B.Cu))
(segment (start 99.63951056550744 101.45274395219255) (end 99.54357140768606 101.44663044918647) (width 0.2032) (layer B.Cu))
(segment (start 99.54357140768606 101.44663044918647) (end 99.4609354996571 101.43719359780204) (width 0.2032) (layer B.Cu))
(segment (start 99.4609354996571 101.43719359780204) (end 99.38741515756344 101.42442751907576) (width 0.2032) (layer B.Cu))
(segment (start 99.38741515756344 101.42442751907576) (end 99.32086410437967 101.40832025119066) (width 0.2032) (layer B.Cu))
(segment (start 99.32086410437967 101.40832025119066) (end 99.26002000949327 101.38885239267695) (width 0.2032) (layer B.Cu))
(segment (start 99.26002000949327 101.38885239267695) (end 99.20407426305592 101.3659953492667) (width 0.2032) (layer B.Cu))
(segment (start 99.20407426305592 101.3659953492667) (end 99.15247780351693 101.33970906896695) (width 0.2032) (layer B.Cu))
(segment (start 99.15247780351693 101.33970906896695) (end 99.10484166266623 101.30993909916347) (width 0.2032) (layer B.Cu))
(segment (start 99.10484166266623 101.30993909916347) (end 99.06088123467028 101.27661272370626) (width 0.2032) (layer B.Cu))
(segment (start 99.06088123467028 101.27661272370626) (end 99.02038287195468 101.23963382127832) (width 0.2032) (layer B.Cu))
(segment (start 99.02038287195468 101.23963382127832) (end 98.98318279038773 101.19887590158343) (width 0.2032) (layer B.Cu))
(segment (start 98.98318279038773 101.19887590158343) (end 98.94915318454774 101.15417247360944) (width 0.2032) (layer B.Cu))
(segment (start 98.94915318454774 101.15417247360944) (end 98.91819277966665 101.10530338731708) (width 0.2032) (layer B.Cu))
(segment (start 98.91819277966665 101.10530338731708) (end 98.89022022843523 101.05197488249) (width 0.2032) (layer B.Cu))
(segment (start 98.89022022843523 101.05197488249) (end 98.86516939745054 100.99378939129379) (width 0.2032) (layer B.Cu))
(segment (start 98.86516939745054 100.99378939129379) (end 98.8429859483457 100.93019781441615) (width 0.2032) (layer B.Cu))
(segment (start 98.8429859483457 100.93019781441615) (end 98.82362483127108 100.86041994180158) (width 0.2032) (layer B.Cu))
(segment (start 98.82362483127108 100.86041994180158) (end 98.80704843858867 100.78330234101878) (width 0.2032) (layer B.Cu))
(segment (start 98.80704843858867 100.78330234101878) (end 98.79322524903407 100.69704039310407) (width 0.2032) (layer B.Cu))
(segment (start 98.79322524903407 100.69704039310407) (end 98.78212884638273 100.59856049933245) (width 0.2032) (layer B.Cu))
(segment (start 98.78212884638273 100.59856049933245) (end 98.77373723286411 100.48184992607062) (width 0.2032) (layer B.Cu))
(segment (start 98.77373723286411 100.48184992607062) (end 98.76803238277395 100.33151341935853) (width 0.2032) (layer B.Cu))
(segment (start 98.76803238277395 100.33151341935853) (end 98.765 99.99999998492792) (width 0.2032) (layer B.Cu))
(segment (start 98.765 99.99999998492792) (end 98.76462945711306 99.6650210956944) (width 0.2032) (layer B.Cu))
(segment (start 98.76462945711306 99.6650210956944) (end 98.76691390505842 99.50985908522472) (width 0.2032) (layer B.Cu))
(segment (start 98.76691390505842 99.50985908522472) (end 98.77185055262375 99.38792482539709) (width 0.2032) (layer B.Cu))
(segment (start 98.77185055262375 99.38792482539709) (end 98.77944112484614 99.28409222027145) (width 0.2032) (layer B.Cu))
(segment (start 98.77944112484614 99.28409222027145) (end 98.78969252040473 99.19248071003814) (width 0.2032) (layer B.Cu))
(segment (start 98.78969252040473 99.19248071003814) (end 98.8026177010201 99.1100916974803) (width 0.2032) (layer B.Cu))
(segment (start 98.8026177010201 99.1100916974803) (end 98.81823686248855 99.03516500872485) (width 0.2032) (layer B.Cu))
(segment (start 98.81823686248855 99.03516500872485) (end 98.83657895940314 98.9665728194248) (width 0.2032) (layer B.Cu))
(segment (start 98.83657895940314 98.9665728194248) (end 98.8576836871533 98.90354776522348) (width 0.2032) (layer B.Cu))
(segment (start 98.8576836871533 98.90354776522348) (end 98.88160407064449 98.84554435726417) (width 0.2032) (layer B.Cu))
(segment (start 98.88160407064449 98.84554435726417) (end 98.90840987782039 98.79216163826246) (width 0.2032) (layer B.Cu))
(segment (start 98.90840987782039 98.79216163826246) (end 98.93819218181473 98.74309698179103) (width 0.2032) (layer B.Cu))
(segment (start 98.93819218181473 98.74309698179103) (end 98.97106956339462 98.6981170000231) (width 0.2032) (layer B.Cu))
(segment (start 98.97106956339462 98.6981170000231) (end 99.00719672055457 98.65703844053094) (width 0.2032) (layer B.Cu))
(segment (start 99.00719672055457 98.65703844053094) (end 99.0467767202102 98.61971521179633) (width 0.2032) (layer B.Cu))
(segment (start 99.0467767202102 98.61971521179633) (end 99.09007895745178 98.58602932780828) (width 0.2032) (layer B.Cu))
(segment (start 99.09007895745178 98.58602932780828) (end 99.13746643616423 98.55588444904598) (width 0.2032) (layer B.Cu))
(segment (start 99.13746643616423 98.55588444904598) (end 99.18943904755706 98.52920119782443) (width 0.2032) (layer B.Cu))
(segment (start 99.18943904755706 98.52920119782443) (end 99.24670603607659 98.50591372080906) (width 0.2032) (layer B.Cu))
(segment (start 99.24670603607659 98.50591372080906) (end 99.31031600889258 98.48596715163953) (width 0.2032) (layer B.Cu))
(segment (start 99.31031600889258 98.48596715163953) (end 99.38191259484461 98.46931574036441) (width 0.2032) (layer B.Cu))
(segment (start 99.38191259484461 98.46931574036441) (end 99.46430634505599 98.45592149049125) (width 0.2032) (layer B.Cu))
(segment (start 99.46430634505599 98.45592149049125) (end 99.56303370359555 98.44575319423404) (width 0.2032) (layer B.Cu))
(segment (start 99.56303370359555 98.44575319423404) (end 99.69244510278561 98.43878579110844) (width 0.2032) (layer B.Cu))
(segment (start 99.69244510278561 98.43878579110844) (end 99.99999995278048 98.435) (width 0.2032) (layer B.Cu))
(segment (start 99.99999995278048 98.435) (end 100.31060783612413 98.43438219381841) (width 0.2032) (layer B.Cu))
(segment (start 100.31060783612413 98.43438219381841) (end 100.44408115246272 98.43692450129244) (width 0.2032) (layer B.Cu))
(segment (start 100.44408115246272 98.43692450129244) (end 100.54710672872203 98.442625134152) (width 0.2032) (layer B.Cu))
(segment (start 100.54710672872203 98.442625134152) (end 100.63383370674997 98.45148895136587) (width 0.2032) (layer B.Cu))
(segment (start 100.63383370674997 98.45148895136587) (end 100.70970422671631 98.46352828668196) (width 0.2032) (layer B.Cu))
(segment (start 100.70970422671631 98.46352828668196) (end 100.77747811267436 98.47876408305868) (width 0.2032) (layer B.Cu))
(segment (start 100.77747811267436 98.47876408305868) (end 100.8387711489602 98.4972273997571) (width 0.2032) (layer B.Cu))
(segment (start 100.8387711489602 98.4972273997571) (end 100.8946180149899 98.51896138782249) (width 0.2032) (layer B.Cu))
(segment (start 100.8946180149899 98.51896138782249) (end 100.94572335804645 98.54402387185925) (width 0.2032) (layer B.Cu))
(segment (start 100.94572335804645 98.54402387185925) (end 100.99258916967213 98.57249073739632) (width 0.2032) (layer B.Cu))
(segment (start 100.99258916967213 98.57249073739632) (end 101.03558559894347 98.60446041519724) (width 0.2032) (layer B.Cu))
(segment (start 101.03558559894347 98.60446041519724) (end 101.07499311427127 98.64005989594241) (width 0.2032) (layer B.Cu))
(segment (start 101.07499311427127 98.64005989594241) (end 101.1110289794813 98.67945293464665) (width 0.2032) (layer B.Cu))
(segment (start 101.1110289794813 98.67945293464665) (end 101.14386459945572 98.72285147543073) (width 0.2032) (layer B.Cu))
(segment (start 101.14386459945572 98.72285147543073) (end 101.17363727937557 98.770531960202) (width 0.2032) (layer B.Cu))
(segment (start 101.17363727937557 98.770531960202) (end 101.20045842083891 98.82285931061168) (width 0.2032) (layer B.Cu))
(segment (start 101.20045842083891 98.82285931061168) (end 101.22441936316712 98.88032347733146) (width 0.2032) (layer B.Cu))
(segment (start 101.22441936316712 98.88032347733146) (end 101.24559561925344 98.94359762657334) (width 0.2032) (layer B.Cu))
(segment (start 101.24559561925344 98.94359762657334) (end 101.26404998564266 99.01363594411781) (width 0.2032) (layer B.Cu))
(segment (start 101.26404998564266 99.01363594411781) (end 101.27983484211488 99.09184986725438) (width 0.2032) (layer B.Cu))
(segment (start 101.27983484211488 99.09184986725438) (end 101.2929938524212 99.18045639430434) (width 0.2032) (layer B.Cu))
(segment (start 101.2929938524212 99.18045639430434) (end 101.30356321045619 99.2832620251893) (width 0.2032) (layer B.Cu))
(segment (start 101.30356321045619 99.2832620251893) (end 101.31157253100204 99.4078166788468) (width 0.2032) (layer B.Cu))
(segment (start 101.31157253100204 99.4078166788468) (end 101.31704545290275 99.57392359163183) (width 0.2032) (layer B.Cu))
(segment (start 101.31704545290275 99.57392359163183) (end 101.32 99.99999988022743) (width 0.2032) (layer B.Cu))
(segment (start 101.32 99.99999988022743) (end 101.32044872810367 100.43019748823677) (width 0.2032) (layer B.Cu))
(segment (start 101.32044872810367 100.43019748823677) (end 101.31839867246222 100.60161448963859) (width 0.2032) (layer B.Cu))
(segment (start 101.31839867246222 100.60161448963859) (end 101.3138510980248 100.7317210791128) (width 0.2032) (layer B.Cu))
(segment (start 101.3138510980248 100.7317210791128) (end 101.30680104291655 100.84008795317561) (width 0.2032) (layer B.Cu))
(segment (start 101.30680104291655 100.84008795317561) (end 101.29723663271366 100.93415985569831) (width 0.2032) (layer B.Cu))
(segment (start 101.29723663271366 100.93415985569831) (end 101.28513812787946 101.01768881794763) (width 0.2032) (layer B.Cu))
(segment (start 101.28513812787946 101.01768881794763) (end 101.27047664727618 101.09286352463715) (width 0.2032) (layer B.Cu))
(segment (start 101.27047664727618 101.09286352463715) (end 101.25321248440324 101.16108276966187) (width 0.2032) (layer B.Cu))
(segment (start 101.25321248440324 101.16108276966187) (end 101.23329289601551 101.2232984678924) (width 0.2032) (layer B.Cu))
(segment (start 101.23329289601551 101.2232984678924) (end 101.21064918885779 101.28018887897339) (width 0.2032) (layer B.Cu))
(segment (start 101.21064918885779 101.28018887897339) (end 101.18519284928365 101.33225454273882) (width 0.2032) (layer B.Cu))
(segment (start 101.18519284928365 101.33225454273882) (end 101.15681033535762 101.37987521541532) (width 0.2032) (layer B.Cu))
(segment (start 101.15681033535762 101.37987521541532) (end 101.12535595160905 101.42334552652233) (width 0.2032) (layer B.Cu))
(segment (start 101.12535595160905 101.42334552652233) (end 101.09064189823528 101.46289828620438) (width 0.2032) (layer B.Cu))
(segment (start 101.09064189823528 101.46289828620438) (end 101.05242402548014 101.49872025685777) (width 0.2032) (layer B.Cu))
(segment (start 101.05242402548014 101.49872025685777) (end 101.01038082350956 101.53096313018686) (width 0.2032) (layer B.Cu))
(segment (start 101.01038082350956 101.53096313018686) (end 100.96408130291125 101.55975134292136) (width 0.2032) (layer B.Cu))
(segment (start 100.96408130291125 101.55975134292136) (end 100.9129336894528 101.5851877419528) (width 0.2032) (layer B.Cu))
(segment (start 100.9129336894528 101.5851877419528) (end 100.85609886846282 101.60735774469921) (width 0.2032) (layer B.Cu))
(segment (start 100.85609886846282 101.60735774469921) (end 100.79233376992573 101.62633241844797) (width 0.2032) (layer B.Cu))
(segment (start 100.79233376992573 101.62633241844797) (end 100.71968032333798 101.64217076274386) (width 0.2032) (layer B.Cu))
(segment (start 100.71968032333798 101.64217076274386) (end 100.63476125483386 101.65492138826271) (width 0.2032) (layer B.Cu))
(segment (start 100.63476125483386 101.65492138826271) (end 100.53083050933412 101.66462372498958) (width 0.2032) (layer B.Cu))
(segment (start 100.53083050933412 101.66462372498958) (end 100.38998403846699 101.67130885061982) (width 0.2032) (layer B.Cu))
(segment (start 100.38998403846699 101.67130885061982) (end 99.99999987262241 101.675) (width 0.2032) (layer B.Cu))
(segment (start 99.99999987262241 101.675) (end 99.60646158430734 101.67571279370078) (width 0.2032) (layer B.Cu))
(segment (start 99.60646158430734 101.67571279370078) (end 99.4612219696323 101.673455205488) (width 0.2032) (layer B.Cu))
(segment (start 99.4612219696323 101.673455205488) (end 99.35278842197404 101.66822727236425) (width 0.2032) (layer B.Cu))
(segment (start 99.35278842197404 101.66822727236425) (end 99.26342163142425 101.66002053522111) (width 0.2032) (layer B.Cu))
(segment (start 99.26342163142425 101.66002053522111) (end 99.1864455548254 101.64881718128731) (width 0.2032) (layer B.Cu))
(segment (start 99.1864455548254 101.64881718128731) (end 99.11851624258007 101.63458883960024) (width 0.2032) (layer B.Cu))
(segment (start 99.11851624258007 101.63458883960024) (end 99.05769040657297 101.61729495524825) (width 0.2032) (layer B.Cu))
(segment (start 99.05769040657297 101.61729495524825) (end 99.00272882302006 101.59688063371081) (width 0.2032) (layer B.Cu))
(segment (start 99.00272882302006 101.59688063371081) (end 98.95278907030641 101.573273798092) (width 0.2032) (layer B.Cu))
(segment (start 98.95278907030641 101.573273798092) (end 98.90727103318923 101.54638143123039) (width 0.2032) (layer B.Cu))
(segment (start 98.90727103318923 101.54638143123039) (end 98.86573164828776 101.51608456817375) (width 0.2032) (layer B.Cu))
(segment (start 98.86573164828776 101.51608456817375) (end 98.82783446095037 101.48223153960673) (width 0.2032) (layer B.Cu))
(segment (start 98.82783446095037 101.48223153960673) (end 98.79331811621668 101.44462870362085) (width 0.2032) (layer B.Cu))
(segment (start 98.79331811621668 101.44462870362085) (end 98.76197580743127 101.40302746901168) (width 0.2032) (layer B.Cu))
(segment (start 98.76197580743127 101.40302746901168) (end 98.73364139428574 101.35710566983596) (width 0.2032) (layer B.Cu))
(segment (start 98.73364139428574 101.35710566983596) (end 98.70817975441513 101.30644002235454) (width 0.2032) (layer B.Cu))
(segment (start 98.70817975441513 101.30644002235454) (end 98.68547992037314 101.25046389889671) (width 0.2032) (layer B.Cu))
(segment (start 98.68547992037314 101.25046389889671) (end 98.66545010751385 101.18839967147045) (width 0.2032) (layer B.Cu))
(segment (start 98.66545010751385 101.18839967147045) (end 98.64801406227218 101.11914418034556) (width 0.2032) (layer B.Cu))
(segment (start 98.64801406227218 101.11914418034556) (end 98.63310835707442 101.04106069308556) (width 0.2032) (layer B.Cu))
(segment (start 98.63310835707442 101.04106069308556) (end 98.62068038163639 100.95156384265398) (width 0.2032) (layer B.Cu))
(segment (start 98.62068038163639 100.95156384265398) (end 98.6106868604011 100.84617472464632) (width 0.2032) (layer B.Cu))
(segment (start 98.6106868604011 100.84617472464632) (end 98.60309277927216 100.71588617761589) (width 0.2032) (layer B.Cu))
(segment (start 98.60309277927216 100.71588617761589) (end 98.59787064162904 100.53652431946107) (width 0.2032) (layer B.Cu))
(segment (start 98.59787064162904 100.53652431946107) (end 98.595 99.9999989023048) (width 0.2032) (layer B.Cu))
(segment (start 98.595 99.9999989023048) (end 98.59446722962382 99.4587480323013) (width 0.2032) (layer B.Cu))
(segment (start 98.59446722962382 99.4587480323013) (end 98.59626552607978 99.27370514439947) (width 0.2032) (layer B.Cu))
(segment (start 98.59626552607978 99.27370514439947) (end 98.60039512310553 99.13764865378323) (width 0.2032) (layer B.Cu))
(segment (start 98.60039512310553 99.13764865378323) (end 98.60686374020146 99.02658769349422) (width 0.2032) (layer B.Cu))
(segment (start 98.60686374020146 99.02658769349422) (end 98.61568728409856 98.93158926996823) (width 0.2032) (layer B.Cu))
(segment (start 98.61568728409856 98.93158926996823) (end 98.62689084527028 98.84820752388713) (width 0.2032) (layer B.Cu))
(segment (start 98.62689084527028 98.84820752388713) (end 98.6405100524801 98.77386975666522) (width 0.2032) (layer B.Cu))
(segment (start 98.6405100524801 98.77386975666522) (end 98.65659287782069 98.70694008388182) (width 0.2032) (layer B.Cu))
(segment (start 98.65659287782069 98.70694008388182) (end 98.6752020262695 98.6463085694814) (width 0.2032) (layer B.Cu))
(segment (start 98.6752020262695 98.6463085694814) (end 98.69641810450341 98.59118550534058) (width 0.2032) (layer B.Cu))
(segment (start 98.69641810450341 98.59118550534058) (end 98.7203438551508 98.54098828781483) (width 0.2032) (layer B.Cu))
(segment (start 98.7203438551508 98.54098828781483) (end 98.74710988445734 98.49527468407607) (width 0.2032) (layer B.Cu))
(segment (start 98.74710988445734 98.49527468407607) (end 98.77688253804796 98.45370125286993) (width 0.2032) (layer B.Cu))
(segment (start 98.77688253804796 98.45370125286993) (end 98.80987495415584 98.41599628329949) (width 0.2032) (layer B.Cu))
(segment (start 98.80987495415584 98.41599628329949) (end 98.84636296651249 98.38194154850913) (width 0.2032) (layer B.Cu))
(segment (start 98.84636296651249 98.38194154850913) (end 98.8867086803586 98.35135964233872) (width 0.2032) (layer B.Cu))
(segment (start 98.8867086803586 98.35135964233872) (end 98.93139671352189 98.32410498159531) (width 0.2032) (layer B.Cu))
(segment (start 98.93139671352189 98.32410498159531) (end 98.98109243287897 98.30005729195993) (width 0.2032) (layer B.Cu))
(segment (start 98.98109243287897 98.30005729195993) (end 99.03674085999208 98.27911682494707) (width 0.2032) (layer B.Cu))
(segment (start 99.03674085999208 98.27911682494707) (end 99.09974699439003 98.26120081362053) (width 0.2032) (layer B.Cu))
(segment (start 99.09974699439003 98.26120081362053) (end 99.17233713731417 98.24624083790292) (width 0.2032) (layer B.Cu))
(segment (start 99.17233713731417 98.24624083790292) (end 99.25838579880693 98.23418087577492) (width 0.2032) (layer B.Cu))
(segment (start 99.25838579880693 98.23418087577492) (end 99.36573714609152 98.22497588694014) (width 0.2032) (layer B.Cu))
(segment (start 99.36573714609152 98.22497588694014) (end 99.51567331214837 98.21859082390404) (width 0.2032) (layer B.Cu))
(segment (start 99.51567331214837 98.21859082390404) (end 100.000002969016 98.215) (width 0.2032) (layer B.Cu))
(segment (start 100.000002969016 98.215) (end 100.4883260690274 98.21418676985) (width 0.2032) (layer B.Cu))
(segment (start 100.4883260690274 98.21418676985) (end 100.64289211613996 98.21614349852956) (width 0.2032) (layer B.Cu))
(segment (start 100.64289211613996 98.21614349852956) (end 100.75486477437434 98.22087181381387) (width 0.2032) (layer B.Cu))
(segment (start 100.75486477437434 98.22087181381387) (end 100.84540467880508 98.22838315333516) (width 0.2032) (layer B.Cu))
(segment (start 100.84540467880508 98.22838315333516) (end 100.92231141549433 98.23869963718337) (width 0.2032) (layer B.Cu))
(segment (start 100.92231141549433 98.23869963718337) (end 100.9894430021073 98.25185531854686) (width 0.2032) (layer B.Cu))
(segment (start 100.9894430021073 98.25185531854686) (end 101.04902280491463 98.26789789311553) (width 0.2032) (layer B.Cu))
(segment (start 101.04902280491463 98.26789789311553) (end 101.10246059312755 98.28689098597819) (width 0.2032) (layer B.Cu))
(segment (start 101.10246059312755 98.28689098597819) (end 101.15071105149218 98.30891718841296) (width 0.2032) (layer B.Cu))
(segment (start 101.15071105149218 98.30891718841296) (end 101.19445257740001 98.33408209544854) (width 0.2032) (layer B.Cu))
(segment (start 101.19445257740001 98.33408209544854) (end 101.2341852752804 98.36251971340849) (width 0.2032) (layer B.Cu))
(segment (start 101.2341852752804 98.36251971340849) (end 101.27028860374176 98.39439979043256) (width 0.2032) (layer B.Cu))
(segment (start 101.27028860374176 98.39439979043256) (end 101.30305720764999 98.42993791726195) (width 0.2032) (layer B.Cu))
(segment (start 101.30305720764999 98.42993791726195) (end 101.33272419153003 98.46940973280064) (width 0.2032) (layer B.Cu))
(segment (start 101.33272419153003 98.46940973280064) (end 101.35947678515797 98.513171406408) (width 0.2032) (layer B.Cu))
(segment (start 101.35947678515797 98.513171406408) (end 101.38346720075265 98.56169007172251) (width 0.2032) (layer B.Cu))
(segment (start 101.38346720075265 98.56169007172251) (end 101.40482033921487 98.6155907237816) (width 0.2032) (layer B.Cu))
(segment (start 101.40482033921487 98.6155907237816) (end 101.423639365341 98.67573178083857) (width 0.2032) (layer B.Cu))
(segment (start 101.423639365341 98.67573178083857) (end 101.44000980036823 98.74333379949574) (width 0.2032) (layer B.Cu))
(segment (start 101.44000980036823 98.74333379949574) (end 101.45400255537186 98.82021495174011) (width 0.2032) (layer B.Cu))
(segment (start 101.45400255537186 98.82021495174011) (end 101.46567618835596 98.90926476595328) (width 0.2032) (layer B.Cu))
(segment (start 101.46567618835596 98.90926476595328) (end 101.47507857708655 99.01553363700995) (width 0.2032) (layer B.Cu))
(segment (start 101.47507857708655 99.01553363700995) (end 101.48224813931773 99.14931100887208) (width 0.2032) (layer B.Cu))
(segment (start 101.48224813931773 99.14931100887208) (end 101.48721469056717 99.33879906809577) (width 0.2032) (layer B.Cu))
(segment (start 101.48721469056717 99.33879906809577) (end 101.49 99.99999329814626) (width 0.2032) (layer B.Cu))
(segment (start 101.49 99.99999329814626) (end 101.49061808282791 100.66645261673563) (width 0.2032) (layer B.Cu))
(segment (start 101.49061808282791 100.66645261673563) (end 101.48907524995428 100.86187687400252) (width 0.2032) (layer B.Cu))
(segment (start 101.48907524995428 100.86187687400252) (end 101.48536992025272 101.00153832858643) (width 0.2032) (layer B.Cu))
(segment (start 101.48536992025272 101.00153832858643) (end 101.47949218613483 101.11351053431332) (width 0.2032) (layer B.Cu))
(segment (start 101.47949218613483 101.11351053431332) (end 101.47142310732438 101.20803947738287) (width 0.2032) (layer B.Cu))
(segment (start 101.47142310732438 101.20803947738287) (end 101.46113368922587 101.29016228022077) (width 0.2032) (layer B.Cu))
(segment (start 101.46113368922587 101.29016228022077) (end 101.44858347867336 101.36276940871947) (width 0.2032) (layer B.Cu))
(segment (start 101.44858347867336 101.36276940871947) (end 101.43371867795129 101.42768787722619) (width 0.2032) (layer B.Cu))
(segment (start 101.43371867795129 101.42768787722619) (end 101.41646963291744 101.48615201681183) (width 0.2032) (layer B.Cu))
(segment (start 101.41646963291744 101.48615201681183) (end 101.39674748510095 101.53903736622827) (width 0.2032) (layer B.Cu))
(segment (start 101.39674748510095 101.53903736622827) (end 101.3744396780758 101.58698845524579) (width 0.2032) (layer B.Cu))
(segment (start 101.3744396780758 101.58698845524579) (end 101.34940385355883 101.63049377263239) (width 0.2032) (layer B.Cu))
(segment (start 101.34940385355883 101.63049377263239) (end 101.32145942434447 101.66993225630924) (width 0.2032) (layer B.Cu))
(segment (start 101.32145942434447 101.66993225630924) (end 101.29037569938534 101.70560342909155) (width 0.2032) (layer B.Cu))
(segment (start 101.29037569938534 101.70560342909155) (end 101.25585472727566 101.73774764892194) (width 0.2032) (layer B.Cu))
(segment (start 101.25585472727566 101.73774764892194) (end 101.21750574952978 101.76656012357127) (width 0.2032) (layer B.Cu))
(segment (start 101.21750574952978 101.76656012357127) (end 101.17480574340944 101.79220084669838) (width 0.2032) (layer B.Cu))
(segment (start 101.17480574340944 101.79220084669838) (end 101.12703568624406 101.81480178022653) (width 0.2032) (layer B.Cu))
(segment (start 101.12703568624406 101.81480178022653) (end 101.07317167686067 101.83447212397843) (width 0.2032) (layer B.Cu))
(segment (start 101.07317167686067 101.83447212397843) (end 101.01168510085465 101.85130222112242) (width 0.2032) (layer B.Cu))
(segment (start 101.01168510085465 101.85130222112242) (end 100.9401390615721 101.86536646532691) (width 0.2032) (layer B.Cu))
(segment (start 100.9401390615721 101.86536646532691) (end 100.85425593642931 101.87672545782036) (width 0.2032) (layer B.Cu))
(segment (start 100.85425593642931 101.87672545782036) (end 100.74526708239733 101.88542758437815) (width 0.2032) (layer B.Cu))
(segment (start 100.74526708239733 101.88542758437815) (end 100.58890327339469 101.89151012864156) (width 0.2032) (layer B.Cu))
(segment (start 100.58890327339469 101.89151012864156) (end 99.99999917145153 101.895) (width 0.2032) (layer B.Cu))
(segment (start 99.99999917145153 101.895) (end 99.40672904516265 101.89591412576061) (width 0.2032) (layer B.Cu))
(segment (start 99.40672904516265 101.89591412576061) (end 99.24558778643336 101.89425953463635) (width 0.2032) (layer B.Cu))
(segment (start 99.24558778643336 101.89425953463635) (end 99.13193078129336 101.8900331389407) (width 0.2032) (layer B.Cu))
(segment (start 99.13193078129336 101.8900331389407) (end 99.04156642766088 101.88322120406274) (width 0.2032) (layer B.Cu))
(segment (start 99.04156642766088 101.88322120406274) (end 98.96574703189104 101.87379847373502) (width 0.2032) (layer B.Cu))
(segment (start 98.96574703189104 101.87379847373502) (end 98.9001967936416 101.86172689601098) (width 0.2032) (layer B.Cu))
(segment (start 98.9001967936416 101.86172689601098) (end 98.842471998573 101.84695386482107) (width 0.2032) (layer B.Cu))
(segment (start 98.842471998573 101.84695386482107) (end 98.79103257052057 101.82940985135565) (width 0.2032) (layer B.Cu))
(segment (start 98.79103257052057 101.82940985135565) (end 98.7448403245599 101.80900524208727) (width 0.2032) (layer B.Cu))
(segment (start 98.7448403245599 101.80900524208727) (end 98.70316007415849 101.78562611609276) (width 0.2032) (layer B.Cu))
(segment (start 98.70316007415849 101.78562611609276) (end 98.66545129020965 101.75912856714486) (width 0.2032) (layer B.Cu))
(segment (start 98.66545129020965 101.75912856714486) (end 98.6313046997178 101.72933097798926) (width 0.2032) (layer B.Cu))
(segment (start 98.6313046997178 101.72933097798926) (end 98.60040305366996 101.69600333616003) (width 0.2032) (layer B.Cu))
(segment (start 98.60040305366996 101.69600333616003) (end 98.57249574344544 101.6588521524669) (width 0.2032) (layer B.Cu))
(segment (start 98.57249574344544 101.6588521524669) (end 98.54738177098378 101.61749863231458) (width 0.2032) (layer B.Cu))
(segment (start 98.54738177098378 101.61749863231458) (end 98.52489797851422 101.57144610919907) (width 0.2032) (layer B.Cu))
(segment (start 98.52489797851422 101.57144610919907) (end 98.50491071264605 101.52002963982444) (width 0.2032) (layer B.Cu))
(segment (start 98.50491071264605 101.52002963982444) (end 98.48730980342084 101.4623343954514) (width 0.2032) (layer B.Cu))
(segment (start 98.48730980342084 101.4623343954514) (end 98.4720041488777 101.39705588714342) (width 0.2032) (layer B.Cu))
(segment (start 98.4720041488777 101.39705588714342) (end 98.45891844294361 101.32224265553216) (width 0.2032) (layer B.Cu))
(segment (start 98.45891844294361 101.32224265553216) (end 98.44799073869463 101.23477479579859) (width 0.2032) (layer B.Cu))
(segment (start 98.44799073869463 101.23477479579859) (end 98.43917063827179 101.12915390242455) (width 0.2032) (layer B.Cu))
(segment (start 98.43917063827179 101.12915390242455) (end 98.43241796655064 100.9940444738681) (width 0.2032) (layer B.Cu))
(segment (start 98.43241796655064 100.9940444738681) (end 98.42770183072648 100.79778689578191) (width 0.2032) (layer B.Cu))
(segment (start 98.42770183072648 100.79778689578191) (end 98.425 100.00005025631549) (width 0.2032) (layer B.Cu))
(segment (start 98.425 100.00005025631549) (end 98.42429856340766 99.19653860373157) (width 0.2032) (layer B.Cu))
(segment (start 98.42429856340766 99.19653860373157) (end 98.42559184277938 98.99419402787012) (width 0.2032) (layer B.Cu))
(segment (start 98.42559184277938 98.99419402787012) (end 98.42888255414913 98.85316433941325) (width 0.2032) (layer B.Cu))
(segment (start 98.42888255414913 98.85316433941325) (end 98.43418222654779 98.74186595081736) (width 0.2032) (layer B.Cu))
(segment (start 98.43418222654779 98.74186595081736) (end 98.44151190370391 98.64897937637976) (width 0.2032) (layer B.Cu))
(segment (start 98.44151190370391 98.64897937637976) (end 98.45090317366679 98.5690028462177) (width 0.2032) (layer B.Cu))
(segment (start 98.45090317366679 98.5690028462177) (end 98.4623995961682 98.49880468794571) (width 0.2032) (layer B.Cu))
(segment (start 98.4623995961682 98.49880468794571) (end 98.47605863107108 98.43641732516036) (width 0.2032) (layer B.Cu))
(segment (start 98.47605863107108 98.43641732516036) (end 98.49195421869241 98.38051759353155) (width 0.2032) (layer B.Cu))
(segment (start 98.49195421869241 98.38051759353155) (end 98.51018023235245 98.33017032719434) (width 0.2032) (layer B.Cu))
(segment (start 98.51018023235245 98.33017032719434) (end 98.53085512875667 98.2846890797533) (width 0.2032) (layer B.Cu))
(segment (start 98.53085512875667 98.2846890797533) (end 98.5541282859057 98.24355481499026) (width 0.2032) (layer B.Cu))
(segment (start 98.5541282859057 98.24355481499026) (end 98.58018878208956 98.20636569855938) (width 0.2032) (layer B.Cu))
(segment (start 98.58018878208956 98.20636569855938) (end 98.60927780834349 98.17280467155673) (width 0.2032) (layer B.Cu))
(segment (start 98.60927780834349 98.17280467155673) (end 98.64170666469755 98.14261772971865) (width 0.2032) (layer B.Cu))
(segment (start 98.64170666469755 98.14261772971865) (end 98.67788365802423 98.11559893103271) (width 0.2032) (layer B.Cu))
(segment (start 98.67788365802423 98.11559893103271) (end 98.71835581583947 98.09157978969003) (width 0.2032) (layer B.Cu))
(segment (start 98.71835581583947 98.09157978969003) (end 98.76387657165073 98.07042162220371) (width 0.2032) (layer B.Cu))
(segment (start 98.76387657165073 98.07042162220371) (end 98.81552197848215 98.05200993801802) (width 0.2032) (layer B.Cu))
(segment (start 98.81552197848215 98.05200993801802) (end 98.87490525023814 98.03625028402278) (width 0.2032) (layer B.Cu))
(segment (start 98.87490525023814 98.03625028402278) (end 98.94461300493647 98.02306514990019) (width 0.2032) (layer B.Cu))
(segment (start 98.94461300493647 98.02306514990019) (end 99.02922164743462 98.01239166814338) (width 0.2032) (layer B.Cu))
(segment (start 99.02922164743462 98.01239166814338) (end 99.13821768202817 98.004179926639) (width 0.2032) (layer B.Cu))
(segment (start 99.13821768202817 98.004179926639) (end 99.2983257181549 97.99839176917399) (width 0.2032) (layer B.Cu))
(segment (start 99.2983257181549 97.99839176917399) (end 99.99992574726335 97.995) (width 0.2032) (layer B.Cu))
(segment (start 99.99992574726335 97.995) (end 100.70632540139209 97.99398793891321) (width 0.2032) (layer B.Cu))
(segment (start 100.70632540139209 97.99398793891321) (end 100.87128269238592 97.99534929732938) (width 0.2032) (layer B.Cu))
(segment (start 100.87128269238592 97.99534929732938) (end 100.9849396242424 97.99908836651774) (width 0.2032) (layer B.Cu))
(segment (start 100.9849396242424 97.99908836651774) (end 101.07398332085528 98.0052205288681) (width 0.2032) (layer B.Cu))
(segment (start 101.07398332085528 98.0052205288681) (end 101.14789943363638 98.01377312399842) (width 0.2032) (layer B.Cu))
(segment (start 101.14789943363638 98.01377312399842) (end 101.21127430799518 98.02478672607414) (width 0.2032) (layer B.Cu))
(segment (start 101.21127430799518 98.02478672607414) (end 101.26670876007451 98.03831691996797) (width 0.2032) (layer B.Cu))
(segment (start 101.26670876007451 98.03831691996797) (end 101.31583220687874 98.05443670616695) (width 0.2032) (layer B.Cu))
(segment (start 101.31583220687874 98.05443670616695) (end 101.35973798782008 98.0732397241874) (width 0.2032) (layer B.Cu))
(segment (start 101.35973798782008 98.0732397241874) (end 101.39919748262115 98.09484457210887) (width 0.2032) (layer B.Cu))
(segment (start 101.39919748262115 98.09484457210887) (end 101.43477611135297 98.11940063289366) (width 0.2032) (layer B.Cu))
(segment (start 101.43477611135297 98.11940063289366) (end 101.46690090207959 98.14709602582363) (width 0.2032) (layer B.Cu))
(segment (start 101.46690090207959 98.14709602582363) (end 101.4959021329813 98.17816863572082) (width 0.2032) (layer B.Cu))
(segment (start 101.4959021329813 98.17816863572082) (end 101.52204018129832 98.21292172937117) (width 0.2032) (layer B.Cu))
(segment (start 101.52204018129832 98.21292172937117) (end 101.54552348200046 98.25174663157676) (width 0.2032) (layer B.Cu))
(segment (start 101.54552348200046 98.25174663157676) (end 101.56652090812315 98.29515667334657) (width 0.2032) (layer B.Cu))
(segment (start 101.56652090812315 98.29515667334657) (end 101.58517052000396 98.34383993435249) (width 0.2032) (layer B.Cu))
(segment (start 101.58517052000396 98.34383993435249) (end 101.60158587411681 98.39874499478256) (width 0.2032) (layer B.Cu))
(segment (start 101.60158587411681 98.39874499478256) (end 101.61586064411759 98.46122850104045) (width 0.2032) (layer B.Cu))
(segment (start 101.61586064411759 98.46122850104045) (end 101.62807204323681 98.53332829388455) (width 0.2032) (layer B.Cu))
(segment (start 101.62807204323681 98.53332829388455) (end 101.63828337325168 98.61832048092761) (width 0.2032) (layer B.Cu))
(segment (start 101.63828337325168 98.61832048092761) (end 101.64654592008792 98.72202218996026) (width 0.2032) (layer B.Cu))
(segment (start 101.64654592008792 98.72202218996026) (end 101.65290034653334 98.85655289924223) (width 0.2032) (layer B.Cu))
(segment (start 101.65290034653334 98.85655289924223) (end 101.65737768504671 99.0563279979579) (width 0.2032) (layer B.Cu))
(segment (start 101.65737768504671 99.0563279979579) (end 101.66 99.99984778996092) (width 0.2032) (layer B.Cu))
(segment (start 101.66 99.99984778996092) (end 101.66078076371844 100.94966369230313) (width 0.2032) (layer B.Cu))
(segment (start 101.66078076371844 100.94966369230313) (end 101.65972497094312 101.15559091292535) (width 0.2032) (layer B.Cu))
(segment (start 101.65972497094312 101.15559091292535) (end 101.6568289993899 101.2960196432292) (width 0.2032) (layer B.Cu))
(segment (start 101.6568289993899 101.2960196432292) (end 101.65208020796446 101.40533575839977) (width 0.2032) (layer B.Cu))
(segment (start 101.65208020796446 101.40533575839977) (end 101.64545624711693 101.49566536955987) (width 0.2032) (layer B.Cu))
(segment (start 101.64545624711693 101.49566536955987) (end 101.63692403580477 101.57284193115075) (width 0.2032) (layer B.Cu))
(segment (start 101.63692403580477 101.57284193115075) (end 101.62643833407724 101.64016127392412) (width 0.2032) (layer B.Cu))
(segment (start 101.62643833407724 101.64016127392412) (end 101.61393980585954 101.69968233780081) (width 0.2032) (layer B.Cu))
(segment (start 101.61393980585954 101.69968233780081) (end 101.59935241773988 101.7527834907498) (width 0.2032) (layer B.Cu))
(segment (start 101.59935241773988 101.7527834907498) (end 101.58257994791602 101.80043535143977) (width 0.2032) (layer B.Cu))
(segment (start 101.58257994791602 101.80043535143977) (end 101.56350127084852 101.84334822527822) (width 0.2032) (layer B.Cu))
(segment (start 101.56350127084852 101.84334822527822) (end 101.54196391347698 101.88205779946964) (width 0.2032) (layer B.Cu))
(segment (start 101.54196391347698 101.88205779946964) (end 101.51777510535369 101.91697785914596) (width 0.2032) (layer B.Cu))
(segment (start 101.51777510535369 101.91697785914596) (end 101.49068908903983 101.94843422126323) (width 0.2032) (layer B.Cu))
(segment (start 101.49068908903983 101.94843422126323) (end 101.46038866731487 101.97668740013853) (width 0.2032) (layer B.Cu))
(segment (start 101.46038866731487 101.97668740013853) (end 101.42645753458999 102.00194821344293) (width 0.2032) (layer B.Cu))
(segment (start 101.42645753458999 102.00194821344293) (end 101.38833721738865 102.02438879948613) (width 0.2032) (layer B.Cu))
(segment (start 101.38833721738865 102.02438879948613) (end 101.34525693341348 102.04415055460585) (width 0.2032) (layer B.Cu))
(segment (start 101.34525693341348 102.04415055460585) (end 101.29611263298519 102.06134994317206) (width 0.2032) (layer B.Cu))
(segment (start 101.29611263298519 102.06134994317206) (end 101.23924257077583 102.07608279856971) (width 0.2032) (layer B.Cu))
(segment (start 101.23924257077583 102.07608279856971) (end 101.17196824523613 102.08842752591285) (width 0.2032) (layer B.Cu))
(segment (start 101.17196824523613 102.08842752591285) (end 101.0895170855299 102.0984474841721) (width 0.2032) (layer B.Cu))
(segment (start 101.0895170855299 102.0984474841721) (end 100.98189784520243 102.10619273748607) (width 0.2032) (layer B.Cu))
(segment (start 100.98189784520243 102.10619273748607) (end 100.82052423959739 102.11170130547899) (width 0.2032) (layer B.Cu))
(segment (start 100.82052423959739 102.11170130547899) (end 100.0003304361888 102.115) (width 0.2032) (layer B.Cu))
(segment (start 100.0003304361888 102.115) (end 99.17462407213915 102.11610490426693) (width 0.2032) (layer B.Cu))
(segment (start 99.17462407213915 102.11610490426693) (end 99.00838851688245 102.11502152559625) (width 0.2032) (layer B.Cu))
(segment (start 99.00838851688245 102.11502152559625) (end 98.89615284720635 102.11174463163734) (width 0.2032) (layer B.Cu))
(segment (start 98.89615284720635 102.11174463163734) (end 98.8093342952655 102.10625775984863) (width 0.2032) (layer B.Cu))
(segment (start 98.8093342952655 102.10625775984863) (end 98.73792657226763 102.09853236858922) (width 0.2032) (layer B.Cu))
(segment (start 98.73792657226763 102.09853236858922) (end 98.677138410172 102.08852657317303) (width 0.2032) (layer B.Cu))
(segment (start 98.677138410172 102.08852657317303) (end 98.6242719719291 102.07618337840114) (width 0.2032) (layer B.Cu))
(segment (start 98.6242719719291 102.07618337840114) (end 98.57764628899125 102.06142827601045) (width 0.2032) (layer B.Cu))
(segment (start 98.57764628899125 102.06142827601045) (end 98.5361383668971 102.04416601441916) (width 0.2032) (layer B.Cu))
(segment (start 98.5361383668971 102.04416601441916) (end 98.49895875517903 102.02427625839142) (width 0.2032) (layer B.Cu))
(segment (start 98.49895875517903 102.02427625839142) (end 98.46553054169401 102.00160772005303) (width 0.2032) (layer B.Cu))
(segment (start 98.46553054169401 102.00160772005303) (end 98.43541915836083 101.97597012970327) (width 0.2032) (layer B.Cu))
(segment (start 98.43541915836083 101.97597012970327) (end 98.40828927428413 101.94712307122) (width 0.2032) (layer B.Cu))
(segment (start 98.40828927428413 101.94712307122) (end 98.38387708878872 101.91476013324728) (width 0.2032) (layer B.Cu))
(segment (start 98.38387708878872 101.91476013324728) (end 98.36197184908106 101.8784858326718) (width 0.2032) (layer B.Cu))
(segment (start 98.36197184908106 101.8784858326718) (end 98.3424031388036 101.83778096460011) (width 0.2032) (layer B.Cu))
(segment (start 98.3424031388036 101.83778096460011) (end 98.32503191272319 101.79194859472562) (width 0.2032) (layer B.Cu))
(segment (start 98.32503191272319 101.79194859472562) (end 98.30974404268076 101.74002593338523) (width 0.2032) (layer B.Cu))
(segment (start 98.30974404268076 101.74002593338523) (end 98.2964455961091 101.68063206607391) (width 0.2032) (layer B.Cu))
(segment (start 98.2964455961091 101.68063206607391) (end 98.28505934210446 101.61168479757437) (width 0.2032) (layer B.Cu))
(segment (start 98.28505934210446 101.61168479757437) (end 98.27552214988549 101.52981993562018) (width 0.2032) (layer B.Cu))
(segment (start 98.27552214988549 101.52981993562018) (end 98.26778305321749 101.42902407535307) (width 0.2032) (layer B.Cu))
(segment (start 98.26778305321749 101.42902407535307) (end 98.26180182614002 101.29665249994984) (width 0.2032) (layer B.Cu))
(segment (start 98.26180182614002 101.29665249994984) (end 98.25754796421002 101.09627482436161) (width 0.2032) (layer B.Cu))
(segment (start 98.25754796421002 101.09627482436161) (end 98.255 100.0006854583761) (width 0.2032) (layer B.Cu))
(segment (start 98.255 100.0006854583761) (end 98.2541451071404 98.89751547969524) (width 0.2032) (layer B.Cu))
(segment (start 98.2541451071404 98.89751547969524) (end 98.25497896731797 98.69098558929005) (width 0.2032) (layer B.Cu))
(segment (start 98.25497896731797 98.69098558929005) (end 98.25750589185637 98.55277721361523) (width 0.2032) (layer B.Cu))
(segment (start 98.25750589185637 98.55277721361523) (end 98.26173920581036 98.44645113540798) (width 0.2032) (layer B.Cu))
(segment (start 98.26173920581036 98.44645113540798) (end 98.26770191973716 98.35933852946697) (width 0.2032) (layer B.Cu))
(segment (start 98.26770191973716 98.35933852946697) (end 98.27542773447507 98.28540026353139) (width 0.2032) (layer B.Cu))
(segment (start 98.27542773447507 98.28540026353139) (end 98.28496244990063 98.22124705327877) (width 0.2032) (layer B.Cu))
(segment (start 98.28496244990063 98.22124705327877) (end 98.29636588334158 98.16477256444318) (width 0.2032) (layer B.Cu))
(segment (start 98.29636588334158 98.16477256444318) (end 98.30971445253772 98.11457260281672) (width 0.2032) (layer B.Cu))
(segment (start 98.30971445253772 98.11457260281672) (end 98.32510465043981 98.06966179144582) (width 0.2032) (layer B.Cu))
(segment (start 98.32510465043981 98.06966179144582) (end 98.34265774907419 98.02932114383391) (width 0.2032) (layer B.Cu))
(segment (start 98.34265774907419 98.02932114383391) (end 98.36252624178584 97.99300980797854) (width 0.2032) (layer B.Cu))
(segment (start 98.36252624178584 97.99300980797854) (end 98.38490281109591 97.96031095604963) (width 0.2032) (layer B.Cu))
(segment (start 98.38490281109591 97.96031095604963) (end 98.41003307380275 97.93089705475306) (width 0.2032) (layer B.Cu))
(segment (start 98.41003307380275 97.93089705475306) (end 98.43823416116823 97.90450672759336) (width 0.2032) (layer B.Cu))
(segment (start 98.43823416116823 97.90450672759336) (end 98.46992265464482 97.88092885918789) (width 0.2032) (layer B.Cu))
(segment (start 98.46992265464482 97.88092885918789) (end 98.50565819168854 97.85999139486029) (width 0.2032) (layer B.Cu))
(segment (start 98.50565819168854 97.85999139486029) (end 98.54621473411676 97.84155328411876) (width 0.2032) (layer B.Cu))
(segment (start 98.54621473411676 97.84155328411876) (end 98.59270393543966 97.82549859078978) (width 0.2032) (layer B.Cu))
(segment (start 98.59270393543966 97.82549859078978) (end 98.6468050338602 97.81173213665359) (width 0.2032) (layer B.Cu))
(segment (start 98.6468050338602 97.81173213665359) (end 98.71123750161705 97.80017625873732) (width 0.2032) (layer B.Cu))
(segment (start 98.71123750161705 97.80017625873732) (end 98.79087719846537 97.79076839685256) (width 0.2032) (layer B.Cu))
(segment (start 98.79087719846537 97.79076839685256) (end 98.89602001307507 97.78345931790186) (width 0.2032) (layer B.Cu))
(segment (start 98.89602001307507 97.78345931790186) (end 99.05652367010921 97.77821184467057) (width 0.2032) (layer B.Cu))
(segment (start 99.05652367010921 97.77821184467057) (end 99.99912894147347 97.775) (width 0.2032) (layer B.Cu))
(segment (start 99.99912894147347 97.775) (end 100.94845449576839 97.77380850915267) (width 0.2032) (layer B.Cu))
(segment (start 100.94845449576839 97.77380850915267) (end 101.11379007231339 97.77463262828101) (width 0.2032) (layer B.Cu))
(segment (start 101.11379007231339 97.77463262828101) (end 101.22348177387434 97.77747828835692) (width 0.2032) (layer B.Cu))
(segment (start 101.22348177387434 97.77747828835692) (end 101.30741077477589 97.7823625642068) (width 0.2032) (layer B.Cu))
(segment (start 101.30741077477589 97.7823625642068) (end 101.37589977767124 97.7893144997221) (width 0.2032) (layer B.Cu))
(segment (start 101.37589977767124 97.7893144997221) (end 101.4338493804806 97.79837634537984) (width 0.2032) (layer B.Cu))
(segment (start 101.4338493804806 97.79837634537984) (end 101.48400162381174 97.80960529608166) (width 0.2032) (layer B.Cu))
(segment (start 101.48400162381174 97.80960529608166) (end 101.52805660409354 97.82307586047878) (width 0.2032) (layer B.Cu))
(segment (start 101.52805660409354 97.82307586047878) (end 101.56714555053506 97.8388830541891) (width 0.2032) (layer B.Cu))
(segment (start 101.56714555053506 97.8388830541891) (end 101.60206104699783 97.85714669946273) (width 0.2032) (layer B.Cu))
(segment (start 101.60206104699783 97.85714669946273) (end 101.63338064295586 97.87801725085338) (width 0.2032) (layer B.Cu))
(segment (start 101.63338064295586 97.87801725085338) (end 101.66153830188242 97.90168378108098) (width 0.2032) (layer B.Cu))
(segment (start 101.66153830188242 97.90168378108098) (end 101.68686814117379 97.92838510821859) (width 0.2032) (layer B.Cu))
(segment (start 101.68686814117379 97.92838510821859) (end 101.70963246893832 97.95842562562471) (width 0.2032) (layer B.Cu))
(segment (start 101.70963246893832 97.95842562562471) (end 101.73004044131667 97.99219840451579) (width 0.2032) (layer B.Cu))
(segment (start 101.73004044131667 97.99219840451579) (end 101.74826086725905 98.03021997070493) (width 0.2032) (layer B.Cu))
(segment (start 101.74826086725905 98.03021997070493) (end 101.76443122324555 98.07318466043962) (width 0.2032) (layer B.Cu))
(segment (start 101.76443122324555 98.07318466043962) (end 101.77866413296874 98.12205358942286) (width 0.2032) (layer B.Cu))
(segment (start 101.77866413296874 98.12205358942286) (end 101.79105210174205 98.17820891782851) (width 0.2032) (layer B.Cu))
(segment (start 101.79105210174205 98.17820891782851) (end 101.80167101687572 98.24374187434405) (width 0.2032) (layer B.Cu))
(segment (start 101.80167101687572 98.24374187434405) (end 101.81058275276384 98.32204626645935) (width 0.2032) (layer B.Cu))
(segment (start 101.81058275276384 98.32204626645935) (end 101.81783710920271 98.41922394317626) (width 0.2032) (layer B.Cu))
(segment (start 101.81783710920271 98.41922394317626) (end 101.82347323887106 98.54820925734232) (width 0.2032) (layer B.Cu))
(segment (start 101.82347323887106 98.54820925734232) (end 101.82752067056427 98.7467377586141) (width 0.2032) (layer B.Cu))
(segment (start 101.82752067056427 98.7467377586141) (end 101.83 99.99840573725736) (width 0.2032) (layer B.Cu))
(segment (start 101.83 99.99840573725736) (end 101.83092329434369 101.25960374037057) (width 0.2032) (layer B.Cu))
(segment (start 101.83092329434369 101.25960374037057) (end 101.83029423644625 101.46423865184966) (width 0.2032) (layer B.Cu))
(segment (start 101.83029423644625 101.46423865184966) (end 101.82810801759435 101.5989762050122) (width 0.2032) (layer B.Cu))
(segment (start 101.82810801759435 101.5989762050122) (end 101.82435097133794 101.70159057035374) (width 0.2032) (layer B.Cu))
(segment (start 101.82435097133794 101.70159057035374) (end 101.8189999238355 101.78505285657553) (width 0.2032) (layer B.Cu))
(segment (start 101.8189999238355 101.78505285657553) (end 101.8120212161403 101.8554969446214) (width 0.2032) (layer B.Cu))
(segment (start 101.8120212161403 101.8554969446214) (end 101.80336932840164 101.91634497546899) (width 0.2032) (layer B.Cu))
(segment (start 101.80336932840164 101.91634497546899) (end 101.79298500148984 101.9697138366405) (width 0.2032) (layer B.Cu))
(segment (start 101.79298500148984 101.9697138366405) (end 101.78079270262704 102.01700941747657) (width 0.2032) (layer B.Cu))
(segment (start 101.78079270262704 102.01700941747657) (end 101.76669720954187 102.05921515552187) (width 0.2032) (layer B.Cu))
(segment (start 101.76669720954187 102.05921515552187) (end 101.75057897806899 102.09704667057835) (width 0.2032) (layer B.Cu))
(segment (start 101.75057897806899 102.09704667057835) (end 101.73228778628867 102.13104099914408) (width 0.2032) (layer B.Cu))
(segment (start 101.73228778628867 102.13104099914408) (end 101.71163387030961 102.16161114494096) (width 0.2032) (layer B.Cu))
(segment (start 101.71163387030961 102.16161114494096) (end 101.68837530141873 102.18908100126676) (width 0.2032) (layer B.Cu))
(segment (start 101.68837530141873 102.18908100126676) (end 101.66219954475403 102.21370856455852) (width 0.2032) (layer B.Cu))
(segment (start 101.66219954475403 102.21370856455852) (end 101.63269566771609 102.23570185054942) (width 0.2032) (layer B.Cu))
(segment (start 101.63269566771609 102.23570185054942) (end 101.59931084762863 102.25523008979103) (width 0.2032) (layer B.Cu))
(segment (start 101.59931084762863 102.25523008979103) (end 101.56127908490734 102.27243176888085) (width 0.2032) (layer B.Cu))
(segment (start 101.56127908490734 102.27243176888085) (end 101.5174974031432 102.28742050213997) (width 0.2032) (layer B.Cu))
(segment (start 101.5174974031432 102.28742050213997) (end 101.46629428755804 102.30028937065558) (width 0.2032) (layer B.Cu))
(segment (start 101.46629428755804 102.30028937065558) (end 101.40495150616336 102.31111415037873) (width 0.2032) (layer B.Cu))
(segment (start 101.40495150616336 102.31111415037873) (end 101.32856881100402 102.3199557135645) (width 0.2032) (layer B.Cu))
(segment (start 101.32856881100402 102.3199557135645) (end 101.22672102907096 102.32686179743138) (width 0.2032) (layer B.Cu))
(segment (start 101.22672102907096 102.32686179743138) (end 101.06882067996487 102.33186827252031) (width 0.2032) (layer B.Cu))
(segment (start 101.06882067996487 102.33186827252031) (end 100.00152731708955 102.335) (width 0.2032) (layer B.Cu))
(segment (start 100.00152731708955 102.335) (end 98.92613656153189 102.33627133528537) (width 0.2032) (layer B.Cu))
(segment (start 98.92613656153189 102.33627133528537) (end 98.76346287852924 102.33568631032868) (width 0.2032) (layer B.Cu))
(segment (start 98.76346287852924 102.33568631032868) (end 98.65714605216391 102.33323850563579) (width 0.2032) (layer B.Cu))
(segment (start 98.65714605216391 102.33323850563579) (end 98.57655495051974 102.32891060295654) (width 0.2032) (layer B.Cu))
(segment (start 98.57655495051974 102.32891060295654) (end 98.51122944824436 102.32267358840582) (width 0.2032) (layer B.Cu))
(segment (start 98.51122944824436 102.32267358840582) (end 98.45624076926025 102.31448555100341) (width 0.2032) (layer B.Cu))
(segment (start 98.45624076926025 102.31448555100341) (end 98.40884638098565 102.30428999012582) (width 0.2032) (layer B.Cu))
(segment (start 98.40884638098565 102.30428999012582) (end 98.36735331552694 102.29201350269096) (width 0.2032) (layer B.Cu))
(segment (start 98.36735331552694 102.29201350269096) (end 98.33063912313084 102.2775626602908) (width 0.2032) (layer B.Cu))
(segment (start 98.33063912313084 102.2775626602908) (end 98.29791974489251 102.26081979715853) (width 0.2032) (layer B.Cu))
(segment (start 98.29791974489251 102.26081979715853) (end 98.26862532983827 102.24163729391739) (width 0.2032) (layer B.Cu))
(segment (start 98.26862532983827 102.24163729391739) (end 98.24232867992599 102.21982972877258) (width 0.2032) (layer B.Cu))
(segment (start 98.24232867992599 102.21982972877258) (end 98.21870156428862 102.19516292247177) (width 0.2032) (layer B.Cu))
(segment (start 98.21870156428862 102.19516292247177) (end 98.19748678438978 102.1673383247583) (width 0.2032) (layer B.Cu))
(segment (start 98.19748678438978 102.1673383247583) (end 98.17847962394717 102.1359701826072) (width 0.2032) (layer B.Cu))
(segment (start 98.17847962394717 102.1359701826072) (end 98.16151514152966 102.10055109704204) (width 0.2032) (layer B.Cu))
(segment (start 98.16151514152966 102.10055109704204) (end 98.1464592389743 102.06039806051001) (width 0.2032) (layer B.Cu))
(segment (start 98.1464592389743 102.06039806051001) (end 98.13320225043262 102.01456389667716) (width 0.2032) (layer B.Cu))
(segment (start 98.13320225043262 102.01456389667716) (end 98.12165426359391 101.96168324217562) (width 0.2032) (layer B.Cu))
(segment (start 98.12165426359391 101.96168324217562) (end 98.11174166352104 101.89968398658861) (width 0.2032) (layer B.Cu))
(segment (start 98.11174166352104 101.89968398658861) (end 98.10340456195291 101.82519022674153) (width 0.2032) (layer B.Cu))
(segment (start 98.10340456195291 101.82519022674153) (end 98.09659488491181 101.73210136383416) (width 0.2032) (layer B.Cu))
(segment (start 98.09659488491181 101.73210136383416) (end 98.09127496376256 101.60739520076096) (width 0.2032) (layer B.Cu))
(segment (start 98.09127496376256 101.60739520076096) (end 98.08741652393054 101.41266550266637) (width 0.2032) (layer B.Cu))
(segment (start 98.08741652393054 101.41266550266637) (end 98.085 100.0048607426216) (width 0.2032) (layer B.Cu))
(segment (start 98.085 100.0048607426216) (end 98.08401413133494 98.58093166591104) (width 0.2032) (layer B.Cu))
(segment (start 98.08401413133494 98.58093166591104) (end 98.08445581228078 98.38017131265468) (width 0.2032) (layer B.Cu))
(segment (start 98.08445581228078 98.38017131265468) (end 98.08633018794917 98.24980922296834) (width 0.2032) (layer B.Cu))
(segment (start 98.08633018794917 98.24980922296834) (end 98.08965100255456 98.15137866769759) (width 0.2032) (layer B.Cu))
(segment (start 98.08965100255456 98.15137866769759) (end 98.0944412240838 98.07181216974804) (width 0.2032) (layer B.Cu))
(segment (start 98.0944412240838 98.07181216974804) (end 98.10073398871799 98.00497329575299) (width 0.2032) (layer B.Cu))
(segment (start 98.10073398871799 98.00497329575299) (end 98.1085739333947 97.94745620698225) (width 0.2032) (layer B.Cu))
(segment (start 98.1085739333947 97.94745620698225) (end 98.11801901873143 97.89716273238926) (width 0.2032) (layer B.Cu))
(segment (start 98.11801901873143 97.89716273238926) (end 98.12914299260694 97.85270410486608) (width 0.2032) (layer B.Cu))
(segment (start 98.12914299260694 97.85270410486608) (end 98.14203871558819 97.81311162683853) (width 0.2032) (layer B.Cu))
(segment (start 98.14203871558819 97.81311162683853) (end 98.15682267734286 97.777682136086) (width 0.2032) (layer B.Cu))
(segment (start 98.15682267734286 97.777682136086) (end 98.17364120266203 97.74588908806336) (width 0.2032) (layer B.Cu))
(segment (start 98.17364120266203 97.74588908806336) (end 98.19267912033382 97.71732833716985) (width 0.2032) (layer B.Cu))
(segment (start 98.19267912033382 97.71732833716985) (end 98.21417212858022 97.69168350459852) (width 0.2032) (layer B.Cu))
(segment (start 98.21417212858022 97.69168350459852) (end 98.23842489319823 97.66870300331985) (width 0.2032) (layer B.Cu))
(segment (start 98.23842489319823 97.66870300331985) (end 98.26583837627456 97.64818431307155) (width 0.2032) (layer B.Cu))
(segment (start 98.26583837627456 97.64818431307155) (end 98.29695269830407 97.62996293627226) (width 0.2032) (layer B.Cu))
(segment (start 98.29695269830407 97.62996293627226) (end 98.33251756491825 97.61390447606557) (width 0.2032) (layer B.Cu))
(segment (start 98.33251756491825 97.61390447606557) (end 98.37361491397638 97.59989885813442) (width 0.2032) (layer B.Cu))
(segment (start 98.37361491397638 97.59989885813442) (end 98.42188905742357 97.58785606445714) (width 0.2032) (layer B.Cu))
(segment (start 98.42188905742357 97.58785606445714) (end 98.48002372883185 97.57770296124622) (width 0.2032) (layer B.Cu))
(segment (start 98.48002372883185 97.57770296124622) (end 98.55287994384359 97.56938093975795) (width 0.2032) (layer B.Cu))
(segment (start 98.55287994384359 97.56938093975795) (end 98.65086666023522 97.56284417830219) (width 0.2032) (layer B.Cu))
(segment (start 98.65086666023522 97.56284417830219) (end 98.80483305213647 97.55805839455527) (width 0.2032) (layer B.Cu))
(segment (start 98.80483305213647 97.55805839455527) (end 99.99451222257686 97.555) (width 0.2032) (layer B.Cu))
(segment (start 99.99451222257686 97.555) (end 101.20022545079463 97.55365559975718) (width 0.2032) (layer B.Cu))
(segment (start 101.20022545079463 97.55365559975718) (end 101.35888927620331 97.55402180568296) (width 0.2032) (layer B.Cu))
(segment (start 101.35888927620331 97.55402180568296) (end 101.46126051537486 97.55610535152755) (width 0.2032) (layer B.Cu))
(segment (start 101.46126051537486 97.55610535152755) (end 101.5382462482154 97.55992351865089) (width 0.2032) (layer B.Cu))
(segment (start 101.5382462482154 97.55992351865089) (end 101.60029554313071 97.56550490152864) (width 0.2032) (layer B.Cu))
(segment (start 101.60029554313071 97.56550490152864) (end 101.65229997997129 97.57289056650221) (width 0.2032) (layer B.Cu))
(segment (start 101.65229997997129 97.57289056650221) (end 101.69696820930919 97.58213568802843) (width 0.2032) (layer B.Cu))
(segment (start 101.69696820930919 97.58213568802843) (end 101.73596585464036 97.59331178844015) (width 0.2032) (layer B.Cu))
(segment (start 101.73596585464036 97.59331178844015) (end 101.77039373474958 97.6065097665865) (width 0.2032) (layer B.Cu))
(segment (start 101.77039373474958 97.6065097665865) (end 101.80101873211369 97.62184398830466) (width 0.2032) (layer B.Cu))
(segment (start 101.80101873211369 97.62184398830466) (end 101.82839691518284 97.63945784511672) (width 0.2032) (layer B.Cu))
(segment (start 101.82839691518284 97.63945784511672) (end 101.85294429019036 97.65953139718683) (width 0.2032) (layer B.Cu))
(segment (start 101.85294429019036 97.65953139718683) (end 101.87497989415452 97.68229205648103) (width 0.2032) (layer B.Cu))
(segment (start 101.87497989415452 97.68229205648103) (end 101.89475329300386 97.70802983643418) (width 0.2032) (layer B.Cu))
(segment (start 101.89475329300386 97.70802983643418) (end 101.91246280776532 97.73711968912382) (width 0.2032) (layer B.Cu))
(segment (start 101.91246280776532 97.73711968912382) (end 101.92826797956808 97.77005526444182) (width 0.2032) (layer B.Cu))
(segment (start 101.92826797956808 97.77005526444182) (end 101.9422983181738 97.80750190893042) (width 0.2032) (layer B.Cu))
(segment (start 101.9422983181738 97.80750190893042) (end 101.9546595736499 97.85038384263954) (width 0.2032) (layer B.Cu))
(segment (start 101.9546595736499 97.85038384263954) (end 101.96543830864061 97.9000361632886) (width 0.2032) (layer B.Cu))
(segment (start 101.96543830864061 97.9000361632886) (end 101.97470527298296 97.95849048069202) (width 0.2032) (layer B.Cu))
(segment (start 101.97470527298296 97.95849048069202) (end 101.98251791222272 98.02906798535528) (width 0.2032) (layer B.Cu))
(segment (start 101.98251791222272 98.02906798535528) (end 101.98892223318168 98.11779695068485) (width 0.2032) (layer B.Cu))
(segment (start 101.98892223318168 98.11779695068485) (end 101.99395417856178 98.23762301251703) (width 0.2032) (layer B.Cu))
(segment (start 101.99395417856178 98.23762301251703) (end 101.99764061435943 98.42708575927873) (width 0.2032) (layer B.Cu))