-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMicro_flipped.kicad_mod
2319 lines (2271 loc) · 84.1 KB
/
ProMicro_flipped.kicad_mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(footprint "ProMicro_flipped" (version 20221018) (generator pcbnew)
(layer "F.Cu")
(descr "Solder-jumper reversible Pro Micro footprint")
(tags "promicro ProMicro reversible solder jumper")
(attr through_hole)
(fp_text reference "REF**" (at 16.51 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 88712721-e1da-4efb-b3bd-a3ab295e2aa6)
)
(fp_text value "ProMicro" (at -16.51 0 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d38fbf6-d42d-45d5-8b81-752b96131a90)
)
(fp_line (start -13.97 -7.62) (end -13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp db502bdf-dc28-4cd6-88a2-0808d080a072))
(fp_line (start -13.97 -3.81) (end -13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ee888e1e-840d-4ce1-b54c-ba5c6d4abd5d))
(fp_line (start -13.97 3.81) (end -13.97 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6b1ab662-1db9-49b1-b929-c906a7369019))
(fp_line (start -13.97 7.62) (end -13.97 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 79a0781f-40b6-40d6-a3ed-b784e801df47))
(fp_line (start -11.43 -7.62) (end -11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7a56c02c-4582-4233-a189-5b35f4f1c6eb))
(fp_line (start -11.43 -3.81) (end -11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a2c208d8-b013-46d2-8d0b-501286e889c4))
(fp_line (start -11.43 3.81) (end -11.43 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b81e7b17-54e3-4dd9-a0ba-eec99aadb447))
(fp_line (start -11.43 7.62) (end -11.43 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 81a8915d-6105-4960-b2f7-c6afef86b39e))
(fp_line (start -8.89 -7.62) (end -8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 651503f9-936a-4f63-9386-0f722dd99bc9))
(fp_line (start -8.89 -3.81) (end -8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a97f5519-0fc7-45f7-a3c5-ea47b123b04b))
(fp_line (start -8.89 3.81) (end -8.89 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 0144e384-80dc-4dea-987d-3310ca6f0088))
(fp_line (start -8.89 7.62) (end -8.89 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 54b62ffa-9f06-4b64-9b48-ba827fb07601))
(fp_line (start -6.35 -7.62) (end -6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5114598a-f08b-4c36-9af7-f9827a51eb02))
(fp_line (start -6.35 -3.81) (end -6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8224321a-799b-49fb-93e2-554b9a4c2291))
(fp_line (start -6.35 3.81) (end -6.35 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e8367c98-d179-436b-b490-53db777fd257))
(fp_line (start -6.35 7.62) (end -6.35 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 64226b31-06a2-4578-bd44-c672f1c61502))
(fp_line (start -3.81 -7.62) (end -3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d4215413-14ab-42b3-ae64-5fcb6fba28a4))
(fp_line (start -3.81 -3.81) (end -3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d7866f06-df8f-4fd1-afff-9bd6b5fb1925))
(fp_line (start -3.81 3.81) (end -3.81 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5dd4ede4-c4bc-4095-9f6d-a20b50f5f213))
(fp_line (start -3.81 7.62) (end -3.81 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 189f4d8e-fbdc-477c-8d0d-7ba5faaf85c3))
(fp_line (start -1.27 -7.62) (end -1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 055525e6-b961-4ee3-a67e-ede48e1d0035))
(fp_line (start -1.27 -3.81) (end -1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 371f2e6a-5d13-4db0-9117-8242c5bdd01a))
(fp_line (start -1.27 3.81) (end -1.27 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fdebd00d-780c-418c-aff9-6a0e4a6c13df))
(fp_line (start -1.27 7.62) (end -1.27 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a918f16c-8f45-43fe-a74e-1717cf986812))
(fp_line (start 1.27 -7.62) (end 1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a24de56a-16a9-41df-8924-6ddb58cd5b4b))
(fp_line (start 1.27 -3.81) (end 1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8ef961b8-3476-40b5-8f27-29c75c12adab))
(fp_line (start 1.27 3.81) (end 1.27 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 55382f4b-1f8d-485f-bbba-1a7d1c72ee7d))
(fp_line (start 1.27 7.62) (end 1.27 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9aeb9a90-bc53-49cc-b9bd-73190847ff1c))
(fp_line (start 3.81 -7.62) (end 3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6065801b-20b8-4d08-98ff-92a5efdac34b))
(fp_line (start 3.81 -3.81) (end 3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 098aa45c-1f77-47a7-8f01-bf70d2f5ec26))
(fp_line (start 3.81 3.81) (end 3.81 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ff6daca5-e6e9-4778-af79-e504c9893d99))
(fp_line (start 3.81 7.62) (end 3.81 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 4de9811e-eb18-421d-8579-682da7b45a1e))
(fp_line (start 6.35 -7.62) (end 6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ca8191e2-ea00-4f65-ba0f-f87bdc62a579))
(fp_line (start 6.35 -3.81) (end 6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 4a11d805-33e6-48d2-8034-1183a1b57255))
(fp_line (start 6.35 3.81) (end 6.35 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5df33cae-5b20-481e-9ed2-fa3c3f60f693))
(fp_line (start 6.35 7.62) (end 6.35 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e68736e9-c7d3-404d-9041-c4a0de4bd95d))
(fp_line (start 8.89 -7.62) (end 8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 762546b8-7f3f-4adb-b4c9-0714fc502f35))
(fp_line (start 8.89 -3.81) (end 8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6a7b1ac6-0b76-4ed1-9d4a-b36d35768645))
(fp_line (start 8.89 3.81) (end 8.89 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a5326717-5b98-407f-9971-3a1e04bf1932))
(fp_line (start 8.89 7.62) (end 8.89 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a2e3cd3f-3f34-450a-84b2-9a1d58dd1396))
(fp_line (start 11.43 -7.62) (end 11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 4ea17e32-90df-4144-b1e7-4bf1d3485ad6))
(fp_line (start 11.43 -3.81) (end 11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 22474bbe-68e7-4731-be81-33be0c27a3a9))
(fp_line (start 11.43 3.81) (end 11.43 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 89d139ba-cd25-41df-b7be-f9375a8c7ee1))
(fp_line (start 11.43 7.62) (end 11.43 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 21eba533-0084-4903-9edb-a9b8551760a8))
(fp_line (start 13.97 -7.62) (end 13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 029a6492-a0dd-402f-b38a-5999ac8360d5))
(fp_line (start 13.97 -3.81) (end 13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9b52c61a-7634-4f1f-b19d-b07b9c440101))
(fp_line (start 13.97 3.81) (end 13.97 5.08)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6ad9b93d-d10e-4195-8e3b-fca4595d5f84))
(fp_line (start 13.97 7.62) (end 13.97 5.842)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 36a53260-e139-42de-be3d-5f1d0fea4ab9))
(fp_line (start -14.859 -2.921) (end -14.859 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp dbbff704-e9dd-432c-b743-e7044f6f7916))
(fp_line (start -14.859 -2.921) (end -13.97 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5c89d65e-8777-42e8-bff9-3bf8ece9b7f2))
(fp_line (start -14.859 4.191) (end -13.97 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 44b1079a-905e-4851-9f94-5dde21fe00de))
(fp_line (start -13.97 -7.62) (end -13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f35a4a6f-ac4d-42d4-9340-1059f1f7946f))
(fp_line (start -13.97 7.62) (end -13.97 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f507d951-d09b-4613-8ed1-cbc8dfbdd3db))
(fp_line (start -13.081 -4.191) (end -13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f421db65-fa33-4f49-b3c9-808580f92acc))
(fp_line (start -13.081 2.921) (end -13.97 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e7578504-e233-455d-a1c7-bf031934613d))
(fp_line (start -13.081 2.921) (end -13.081 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f01a3f00-ad24-4e65-aed3-5a36fbee58ce))
(fp_line (start -12.319 -2.921) (end -12.319 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d6ad4628-ad92-4383-b198-7a67b11ffa52))
(fp_line (start -12.319 -2.921) (end -11.43 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7744de06-4cbd-4bb9-9d9b-ce7d0be1bc83))
(fp_line (start -12.319 4.191) (end -11.43 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0748c470-2109-4ead-89ec-c1870a13486e))
(fp_line (start -11.43 -7.62) (end -11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0574ef6b-75fa-4326-958e-16086e096ef5))
(fp_line (start -11.43 7.62) (end -11.43 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d3243374-c375-4c8e-a318-308b04859ea9))
(fp_line (start -10.541 -4.191) (end -11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c82868f6-1dd7-4a3e-a574-d582c57dc3ec))
(fp_line (start -10.541 2.921) (end -11.43 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 415e7dda-e640-41e1-893b-7dd7e1d84ed3))
(fp_line (start -10.541 2.921) (end -10.541 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 88767963-54b2-4b3b-b6ff-d23bb240f32f))
(fp_line (start -9.779 -2.921) (end -9.779 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d6ad71c7-25a6-498b-84c7-4e5cdc6d5317))
(fp_line (start -9.779 -2.921) (end -8.89 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c3edd26a-198d-43af-860f-2b4efadc4191))
(fp_line (start -9.779 4.191) (end -8.89 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 12d70df9-3765-46c1-a12f-930979f3d147))
(fp_line (start -8.89 -7.62) (end -8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp dbc0e014-fda7-4d58-9b5c-22dfd188d99b))
(fp_line (start -8.89 7.62) (end -8.89 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4c47f35f-256d-451a-ba89-afa4ed7fe668))
(fp_line (start -8.001 -4.191) (end -8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 551b9083-f6e4-44cd-a350-31475c487ca6))
(fp_line (start -8.001 2.921) (end -8.89 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 26adc994-8b79-4134-805c-ccbe82ed8f9d))
(fp_line (start -8.001 2.921) (end -8.001 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9a1e3051-031d-4c34-8f05-bf0bed37a6e5))
(fp_line (start -7.239 -2.921) (end -7.239 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp aff57d62-0629-46d2-8161-a0d9fdd050e6))
(fp_line (start -7.239 -2.921) (end -6.35 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 69ff6ab8-2a88-4d00-bd2e-497029e20ad4))
(fp_line (start -7.239 4.191) (end -6.35 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 013dd953-3d14-48c5-96ab-4046ba20c0c5))
(fp_line (start -6.35 -7.62) (end -6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6cae6cd1-1724-46d8-a478-7c1faffbf72a))
(fp_line (start -6.35 7.62) (end -6.35 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 65441e3f-f507-4706-9ced-be47f5919d23))
(fp_line (start -5.461 -4.191) (end -6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 570ada47-8d93-433b-b9ff-5550a371a1f9))
(fp_line (start -5.461 2.921) (end -6.35 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6d73aca3-8201-4726-8538-785d06c4c188))
(fp_line (start -5.461 2.921) (end -5.461 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 77f54d2b-17d4-45f2-a8c3-8c7c18888544))
(fp_line (start -4.699 -2.921) (end -4.699 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 34bce448-5974-49a5-bef5-521d3c133f67))
(fp_line (start -4.699 -2.921) (end -3.81 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e8beddac-2ff9-4a36-bf3a-8e9de3e8ef17))
(fp_line (start -4.699 4.191) (end -3.81 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 86d4cadc-26f7-4998-9d34-151e9578b6a0))
(fp_line (start -3.81 -7.62) (end -3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0e8eac10-68f6-496d-b90c-4fe4ada084db))
(fp_line (start -3.81 7.62) (end -3.81 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a13e5f53-c8f4-41f1-af01-7cd422015a1e))
(fp_line (start -2.921 -4.191) (end -3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a40fdcff-01d4-42af-9545-56f13ccde457))
(fp_line (start -2.921 2.921) (end -3.81 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d67b1dfe-3123-4f1c-88cf-21c38915e1bf))
(fp_line (start -2.921 2.921) (end -2.921 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp edcb9c83-a759-4a8d-a4a6-6e6c3996390b))
(fp_line (start -2.159 -2.921) (end -2.159 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f94d142d-9905-4871-b933-2bc5598199ce))
(fp_line (start -2.159 -2.921) (end -1.27 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 310b0caf-39be-4fad-ac36-8f164fdba388))
(fp_line (start -2.159 4.191) (end -1.27 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 39112c80-75b8-4c4e-81ae-c701d21935f2))
(fp_line (start -1.27 -7.62) (end -1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7b5eb6d0-715b-4de3-9843-42feb0fad93e))
(fp_line (start -1.27 7.62) (end -1.27 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 07255f62-aac6-42e6-ab3e-f19bf52491af))
(fp_line (start -0.381 -4.191) (end -1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c54e2c5a-592f-4fc2-a106-1b0a77409d81))
(fp_line (start -0.381 2.921) (end -1.27 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 69ee5e25-10f8-4667-8427-64546cc7c796))
(fp_line (start -0.381 2.921) (end -0.381 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 346a1dc5-9863-403b-bdec-c19b507fe73d))
(fp_line (start 0.381 -2.921) (end 0.381 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 199c7323-c689-4fd2-8ad7-b42aaf78eab7))
(fp_line (start 0.381 -2.921) (end 1.27 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 12a71352-a240-41ea-8c08-658e761523f8))
(fp_line (start 0.381 4.191) (end 1.27 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4fa429ec-c549-464c-ab57-eaf02b4b67ef))
(fp_line (start 1.27 -7.62) (end 1.27 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bd402013-44ec-42f8-9c82-e5b862eba163))
(fp_line (start 1.27 7.62) (end 1.27 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b0063d66-e955-4a38-b2ae-0882dc51ec16))
(fp_line (start 2.159 -4.191) (end 1.27 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e78d1a02-8e7b-4856-98fa-8630e24797df))
(fp_line (start 2.159 2.921) (end 1.27 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9a216398-de37-42f1-be9b-98b6ee7926df))
(fp_line (start 2.159 2.921) (end 2.159 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4eea547d-f73e-4c82-a7de-7c381ee2a5dd))
(fp_line (start 2.921 -2.921) (end 2.921 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4bfa8562-24dc-44b2-a274-eab3d8db1176))
(fp_line (start 2.921 -2.921) (end 3.81 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 979e602d-785b-47da-8555-67edcac9ce5a))
(fp_line (start 2.921 4.191) (end 3.81 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 72623847-4d52-44f6-b59d-a2cbc1ba619f))
(fp_line (start 3.81 -7.62) (end 3.81 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 71777e78-60c4-4640-a361-e5b13dec7781))
(fp_line (start 3.81 7.62) (end 3.81 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 787184e0-a639-4121-a3c3-8fbe85c490e3))
(fp_line (start 4.699 -4.191) (end 3.81 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 320f78a8-7efb-474f-a328-664a76f9dd04))
(fp_line (start 4.699 2.921) (end 3.81 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c4d51d9a-bf0c-4560-b58b-d9ca7b8cb90d))
(fp_line (start 4.699 2.921) (end 4.699 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1a5f0bd6-a345-4252-b2da-b265cf7b11a0))
(fp_line (start 5.461 -2.921) (end 5.461 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1664fba8-7b18-4d19-ba03-1827cca2981c))
(fp_line (start 5.461 -2.921) (end 6.35 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 903b0bbb-0e5c-4650-b266-8c5873add6c9))
(fp_line (start 5.461 4.191) (end 6.35 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c215ac36-7282-4464-9fa7-7c2b71bf4dd2))
(fp_line (start 6.35 -7.62) (end 6.35 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 16d542a7-d10a-4e59-9018-b85f8f9f9a2a))
(fp_line (start 6.35 7.62) (end 6.35 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 94700c58-544b-451f-8fd3-601fc521c0e6))
(fp_line (start 7.239 -4.191) (end 6.35 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3ed89681-5ac7-4dee-bd38-1a8f2d86a7b4))
(fp_line (start 7.239 2.921) (end 6.35 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f7de282d-652a-46ca-9bb7-ce1839b4f406))
(fp_line (start 7.239 2.921) (end 7.239 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9643c9c8-cf50-4e51-a165-de0c95306334))
(fp_line (start 8.001 -2.921) (end 8.001 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 380da1a9-b063-47de-8398-6a03a0cd6de1))
(fp_line (start 8.001 -2.921) (end 8.89 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6b2eb24e-2819-4201-8394-92593980e39f))
(fp_line (start 8.001 4.191) (end 8.89 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3e7095ab-b6a8-4c1a-8d28-40379e4dcb4d))
(fp_line (start 8.89 -7.62) (end 8.89 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2810ff21-d42b-4e18-b230-8a278f66de9f))
(fp_line (start 8.89 7.62) (end 8.89 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp faa8ebeb-9c48-451f-9fab-0c5d6f3133b6))
(fp_line (start 9.779 -4.191) (end 8.89 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6ee4387c-6631-4e4a-8700-ce1472f147ef))
(fp_line (start 9.779 2.921) (end 8.89 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 132e0d46-b368-4fbe-abdf-c9a6fcdebc84))
(fp_line (start 9.779 2.921) (end 9.779 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0c5b2860-8549-4b8c-a319-6fe3a5ef81c8))
(fp_line (start 10.541 -2.921) (end 10.541 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9a74e683-e584-4b6f-be8c-91115259084c))
(fp_line (start 10.541 -2.921) (end 11.43 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c9b955c7-3489-4029-ab7a-bab1825a1e54))
(fp_line (start 10.541 4.191) (end 11.43 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 40e5550e-ca0e-4f5e-a3e2-b47115c898e8))
(fp_line (start 11.43 -7.62) (end 11.43 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fa915c3c-d9ad-46cc-9e88-f262e19a1152))
(fp_line (start 11.43 7.62) (end 11.43 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bd2a6333-0208-443a-8b9c-5e3d89d39a5b))
(fp_line (start 12.319 -4.191) (end 11.43 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0458a7a5-ca0a-4366-870a-13ca73ca0c05))
(fp_line (start 12.319 2.921) (end 11.43 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 23505c08-933c-465f-8f93-50745b71c476))
(fp_line (start 12.319 2.921) (end 12.319 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d44e45cd-0a4f-4833-be1d-9db911d52a0f))
(fp_line (start 13.081 -2.921) (end 13.081 4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6b6f63de-d3ad-4e3d-bc5a-f7de36491824))
(fp_line (start 13.081 -2.921) (end 13.97 -3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 98a024af-afb3-4f67-8865-c8b8ad251c43))
(fp_line (start 13.081 4.191) (end 13.97 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 51400f1f-62bc-4ff2-ad7b-6dbb9a85fb07))
(fp_line (start 13.97 -7.62) (end 13.97 -5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 49750374-a359-4fb8-9c3f-9a3d35cc467d))
(fp_line (start 13.97 7.62) (end 13.97 5.842)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ff0917cd-e314-437e-9911-43b8e2044d05))
(fp_line (start 14.859 -4.191) (end 13.97 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 95aa6f60-a47b-42f0-9818-1a22e2ed5d58))
(fp_line (start 14.859 2.921) (end 13.97 3.81)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c114a49f-d90b-49da-a664-95975a2255bc))
(fp_line (start 14.859 2.921) (end 14.859 -4.191)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 17581082-aaae-4392-83ea-a1674c10c194))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 4ba62bd3-d21f-47e8-a217-5f73d05a32de))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 79017999-cf69-4de5-837c-3881dcf70524))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp e2c9342d-9b36-426d-9dec-d503b4bc5a17))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 9bb286d2-509c-4564-ae4b-f1d17927cd2a))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp ecf05dc5-082c-4ede-addf-3164328e34ab))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1ff1be2c-0841-4229-b2d1-1ddb0c93108b))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 05bee245-b6a2-43c9-a158-fd198d9fd355))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5cf7c971-4447-4cc8-8f2a-11ddaee6cdfa))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b73623ab-565f-49c0-8d4d-1ce7f9bd0093))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ce835400-5372-431b-924f-9bf0df5f5348))
(fp_poly
(pts
(xy -14.478 -5.08)
(xy -13.462 -5.08)
(xy -13.462 -6.096)
(xy -14.478 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d80646fb-ab91-456d-959c-3444a826e4a8))
(fp_poly
(pts
(xy -13.462 5.08)
(xy -14.478 5.08)
(xy -14.478 6.096)
(xy -13.462 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp fdf15fe3-4520-4415-b36d-84b03768f69f))
(fp_poly
(pts
(xy -11.938 -5.08)
(xy -10.922 -5.08)
(xy -10.922 -6.096)
(xy -11.938 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp fc923039-f12d-4f3c-8df5-4137a47e8b5c))
(fp_poly
(pts
(xy -10.922 5.08)
(xy -11.938 5.08)
(xy -11.938 6.096)
(xy -10.922 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 4d0bd2fa-de83-4fb2-bb60-bf53f298a02f))
(fp_poly
(pts
(xy -9.398 -5.08)
(xy -8.382 -5.08)
(xy -8.382 -6.096)
(xy -9.398 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp cbb9788e-caed-4402-9def-17fca0218896))
(fp_poly
(pts
(xy -8.382 5.08)
(xy -9.398 5.08)
(xy -9.398 6.096)
(xy -8.382 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 2f2b8e1e-d94f-4c09-80e8-8e272cb5a0c0))
(fp_poly
(pts
(xy -6.858 -5.08)
(xy -5.842 -5.08)
(xy -5.842 -6.096)
(xy -6.858 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 791d0603-7f47-4f10-8bf2-fd901d158b2c))
(fp_poly
(pts
(xy -5.842 5.08)
(xy -6.858 5.08)
(xy -6.858 6.096)
(xy -5.842 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 6117f623-f0a3-4973-bd2d-33adf1edb524))
(fp_poly
(pts
(xy -4.318 -5.08)
(xy -3.302 -5.08)
(xy -3.302 -6.096)
(xy -4.318 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 37149c66-12ca-42c9-a94f-fe0bec3efcbd))
(fp_poly
(pts
(xy -3.302 5.08)
(xy -4.318 5.08)
(xy -4.318 6.096)
(xy -3.302 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 38ee9e42-2722-47f0-a2a9-10b84c54dd55))
(fp_poly
(pts
(xy -1.778 -5.08)
(xy -0.762 -5.08)
(xy -0.762 -6.096)
(xy -1.778 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 71f4b8c7-6193-4ee9-a902-4ae06da8aa3a))
(fp_poly
(pts
(xy -0.762 5.08)
(xy -1.778 5.08)
(xy -1.778 6.096)
(xy -0.762 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 49336922-dc77-4e30-bf3a-9ea0f3423f6a))
(fp_poly
(pts
(xy 0.762 -5.08)
(xy 1.778 -5.08)
(xy 1.778 -6.096)
(xy 0.762 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 2769e337-c29b-49c9-a599-47586c425bb5))
(fp_poly
(pts
(xy 1.778 5.08)
(xy 0.762 5.08)
(xy 0.762 6.096)
(xy 1.778 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 756efeea-5ef8-4602-a31a-b35229298bb5))
(fp_poly
(pts
(xy 3.302 -5.08)
(xy 4.318 -5.08)
(xy 4.318 -6.096)
(xy 3.302 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 61207a73-ce02-4e4d-84cd-41af0599bf67))
(fp_poly
(pts
(xy 4.318 5.08)
(xy 3.302 5.08)
(xy 3.302 6.096)
(xy 4.318 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 717c4eb4-69eb-4792-bdc3-10dfcf9e42d3))
(fp_poly
(pts
(xy 5.842 -5.08)
(xy 6.858 -5.08)
(xy 6.858 -6.096)
(xy 5.842 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7cec4c40-f733-4c8c-8c9a-f3ca8b69eb7d))
(fp_poly
(pts
(xy 6.858 5.08)
(xy 5.842 5.08)
(xy 5.842 6.096)
(xy 6.858 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 46eacc3a-fe93-4a8f-bc37-5e1435f391f9))
(fp_poly
(pts
(xy 8.382 -5.08)
(xy 9.398 -5.08)
(xy 9.398 -6.096)
(xy 8.382 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d0aaf56a-f9e9-4bb9-877e-89925d05e748))
(fp_poly
(pts
(xy 9.398 5.08)
(xy 8.382 5.08)
(xy 8.382 6.096)
(xy 9.398 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 15eef3e1-c291-4dfe-b7fe-812cf3f221f3))
(fp_poly
(pts
(xy 10.922 -5.08)
(xy 11.938 -5.08)
(xy 11.938 -6.096)
(xy 10.922 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp dcc5124e-22bc-4ea3-b828-1c9b91dc1796))
(fp_poly
(pts
(xy 11.938 5.08)
(xy 10.922 5.08)
(xy 10.922 6.096)
(xy 11.938 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 818bc613-ecc6-410c-9a3e-b5c94c06242a))
(fp_poly
(pts
(xy 13.462 -5.08)
(xy 14.478 -5.08)
(xy 14.478 -6.096)
(xy 13.462 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 88e1cec1-d4e4-4fc0-94dc-cb5130ae3cc9))
(fp_poly
(pts
(xy 14.478 5.08)
(xy 13.462 5.08)
(xy 13.462 6.096)
(xy 14.478 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp f8a79273-5676-49a8-a84b-73773157b687))
(fp_poly
(pts
(xy -14.478 -5.08)
(xy -13.462 -5.08)
(xy -13.462 -6.096)
(xy -14.478 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 5357de4c-d7a0-43ec-b213-85415077bb78))
(fp_poly
(pts
(xy -13.462 5.08)
(xy -14.478 5.08)
(xy -14.478 6.096)
(xy -13.462 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c86facd3-0c64-4a0e-9929-b1f8e74e189e))
(fp_poly
(pts
(xy -11.938 -5.08)
(xy -10.922 -5.08)
(xy -10.922 -6.096)
(xy -11.938 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c1972819-805b-421c-91a4-97cf9ae11ec1))
(fp_poly
(pts
(xy -10.922 5.08)
(xy -11.938 5.08)
(xy -11.938 6.096)
(xy -10.922 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 0ae20f3f-6d93-42c9-85c4-af59678b2714))
(fp_poly
(pts
(xy -9.398 -5.08)
(xy -8.382 -5.08)
(xy -8.382 -6.096)
(xy -9.398 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp ae291231-986f-46a2-ba78-fce415ebdd0d))
(fp_poly
(pts
(xy -8.382 5.08)
(xy -9.398 5.08)
(xy -9.398 6.096)
(xy -8.382 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 2726d390-270f-44c8-95bd-ef7366995455))
(fp_poly
(pts
(xy -6.858 -5.08)
(xy -5.842 -5.08)
(xy -5.842 -6.096)
(xy -6.858 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp f341b99c-63d9-47f6-945f-da464a318f5e))
(fp_poly
(pts
(xy -5.842 5.08)
(xy -6.858 5.08)
(xy -6.858 6.096)
(xy -5.842 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp cef3498f-20b1-4668-a177-eaaf9df62530))
(fp_poly
(pts
(xy -4.318 -5.08)
(xy -3.302 -5.08)
(xy -3.302 -6.096)
(xy -4.318 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp a7991ac1-dd30-490c-bbf3-a125ff5e2eb5))
(fp_poly
(pts
(xy -3.302 5.08)
(xy -4.318 5.08)
(xy -4.318 6.096)
(xy -3.302 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp a1a1f768-6344-48e8-b30f-a9a43cdb669b))
(fp_poly
(pts
(xy -1.778 -5.08)
(xy -0.762 -5.08)
(xy -0.762 -6.096)
(xy -1.778 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 9f9b8058-9b07-4bfb-8b58-906bb644c9eb))
(fp_poly
(pts
(xy -0.762 5.08)
(xy -1.778 5.08)
(xy -1.778 6.096)
(xy -0.762 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 235f63ff-9b5c-4c31-bbc7-6157821b28b1))
(fp_poly
(pts
(xy 0.762 -5.08)
(xy 1.778 -5.08)
(xy 1.778 -6.096)
(xy 0.762 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 8609e0f9-6a11-422b-9304-d9d6d4b04ebd))
(fp_poly
(pts
(xy 1.778 5.08)
(xy 0.762 5.08)
(xy 0.762 6.096)
(xy 1.778 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 20522cbf-add9-4194-b397-67b46d97e6cb))
(fp_poly
(pts
(xy 3.302 -5.08)
(xy 4.318 -5.08)
(xy 4.318 -6.096)
(xy 3.302 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b21c77da-f28d-45cd-8019-4414f2474929))
(fp_poly
(pts
(xy 4.318 5.08)
(xy 3.302 5.08)
(xy 3.302 6.096)
(xy 4.318 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp bff4b4f2-f2a1-4f59-91f2-15dea1630bd6))
(fp_poly
(pts
(xy 5.842 -5.08)
(xy 6.858 -5.08)
(xy 6.858 -6.096)
(xy 5.842 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c5180384-5933-4ce6-9f5c-a9ac97e88bb3))
(fp_poly
(pts
(xy 6.858 5.08)
(xy 5.842 5.08)
(xy 5.842 6.096)
(xy 6.858 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp a1170e4e-4eb4-487d-b6b3-6590cdefa9dc))
(fp_poly
(pts
(xy 8.382 -5.08)
(xy 9.398 -5.08)
(xy 9.398 -6.096)
(xy 8.382 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp f7a596b6-c40d-4b3a-9f20-2fcd6ea1f2a7))
(fp_poly
(pts
(xy 9.398 5.08)
(xy 8.382 5.08)
(xy 8.382 6.096)
(xy 9.398 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 60e7579e-27ce-484f-add1-decc5f77461f))
(fp_poly
(pts
(xy 10.922 -5.08)
(xy 11.938 -5.08)
(xy 11.938 -6.096)
(xy 10.922 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 621d108c-f603-4cc3-9dc9-d156de4c27d6))
(fp_poly
(pts
(xy 11.938 5.08)
(xy 10.922 5.08)
(xy 10.922 6.096)
(xy 11.938 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 562a4700-5097-4cc0-96a9-de627047f9cb))
(fp_poly
(pts
(xy 13.462 -5.08)
(xy 14.478 -5.08)
(xy 14.478 -6.096)
(xy 13.462 -6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp faa282c5-c341-4457-b5ad-f2f68fed7142))
(fp_poly
(pts
(xy 14.478 5.08)
(xy 13.462 5.08)
(xy 13.462 6.096)
(xy 14.478 6.096)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp dc403851-8da2-41d7-95cf-a3c0527c9994))
(pad "" thru_hole circle (at -13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask")
(zone_connect 0) (tstamp b080857f-a007-4e07-b5c4-c58291fa6dc2))
(pad "" smd rect (at -13.97 -7.62 90) (size 1.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(zone_connect 0) (tstamp 30bc3135-e062-47be-baca-ce9305d1fe4c))
(pad "" smd custom (at -13.97 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp e0cc008c-6ed2-4e60-a015-740d1d00f58c))
(pad "" smd custom (at -13.97 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 2c1b28a8-cfab-48b3-998d-d2afc517a5a5))
(pad "" smd custom (at -13.97 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp d346dfbc-004a-4a42-ad41-7a2ac37be160))
(pad "" smd custom (at -13.97 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp d35856d8-7750-4844-a1dd-7f32c627b57e))
(pad "" thru_hole circle (at -13.97 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 746f82ea-355c-4404-a2f0-7bed38ee9e97))
(pad "" smd rect (at -13.97 7.62) (size 1.6 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(zone_connect 0) (tstamp b7ec1a75-b69a-4a2a-b757-83b7d0fe4934))
(pad "" thru_hole circle (at -11.43 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 5332e16f-4539-4645-92bb-a48702aadbd3))
(pad "" smd custom (at -11.43 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 0ac04a1b-bbeb-4342-a73b-6b17336f08fd))
(pad "" smd custom (at -11.43 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp d01b688e-3557-49f6-9bcc-3b03bc998127))
(pad "" smd custom (at -11.43 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp cfc091b4-5d4e-4248-8eaa-20ec595763ed))
(pad "" smd custom (at -11.43 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp fa497414-8b12-48ee-a71a-204df4b93a0f))
(pad "" thru_hole circle (at -11.43 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp b13b9520-a8b7-4de3-9569-a42413775a12))
(pad "" thru_hole circle (at -8.89 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp e4aaa988-84f6-445d-98ac-4ef4973dd1de))
(pad "" smd custom (at -8.89 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 1049354d-1520-4a6d-93dd-ad3e4ea9e596))
(pad "" smd custom (at -8.89 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp c8c65ef8-1c2a-4776-9a7d-a275c2e3ca01))
(pad "" smd custom (at -8.89 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp cb5f393c-c75a-4555-a379-a218d1694b9a))
(pad "" smd custom (at -8.89 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 035a2dee-7124-4cbe-b06a-d67790a7d15f))
(pad "" thru_hole circle (at -8.89 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp b0774eb3-067a-470d-8f43-f0bd71edae6b))
(pad "" thru_hole circle (at -6.35 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 720dd6a4-1a58-42c9-8702-0cbf944f926f))
(pad "" smd custom (at -6.35 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 9fa84a9e-8281-475d-9ded-a1dc0ee992ab))
(pad "" smd custom (at -6.35 -5.842 180) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp ae83fbd5-37ff-469d-82a6-702ffe56f1f0))
(pad "" smd custom (at -6.35 5.842) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp a88429c6-b653-471c-9ae1-d3e6335fde53))
(pad "" smd custom (at -6.35 5.842) (size 0.1 0.1) (layers "B.Cu" "B.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)
(xy 0 -0.4)
(xy 0.6 0.2)
)
(width 0) (fill yes))
) (tstamp 1e178679-b315-4c4c-8996-3b0dfcdc7b52))
(pad "" thru_hole circle (at -6.35 7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 9b77aab0-7485-4ad7-948f-f4cc6622a991))
(pad "" thru_hole circle (at -3.81 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp b9c4b0e6-3d50-4291-acd3-28c6e397b6c7))
(pad "" smd custom (at -3.81 -5.842 180) (size 0.1 0.1) (layers "F.Cu" "F.Mask")
(zone_connect 0)
(options (clearance outline) (anchor rect))
(primitives
(gr_poly
(pts
(xy 0.6 0.4)
(xy -0.6 0.4)
(xy -0.6 0.2)