-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProMicro_expanded.kicad_mod
2719 lines (2671 loc) · 107 KB
/
ProMicro_expanded.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_expanded" (version 20221018) (generator pcbnew)
(layer "F.Cu")
(descr "Solder-jumper reversible Pro Micro footprint (exposed jumpers)")
(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 c00016d6-90a9-444a-ab02-189ffd1a0392)
)
(fp_text value "ProMicro" (at -16.51 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4f9d57b6-bd43-4bbb-8840-f05121617ca6)
)
(fp_line (start -15.24 6.985) (end -13.97 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fbe31668-7b57-40e8-aad3-4be4e649328b))
(fp_line (start -15.24 8.89) (end -15.24 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 4d2c9022-cec8-4741-a7b3-821ae2dfe853))
(fp_line (start -13.97 -10.16) (end -12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d62cb915-cdb3-4443-a0b4-cc189c1dcb9e))
(fp_line (start -13.97 -7.62) (end -13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3c6a3230-a270-4f39-a1fa-487e84ad3270))
(fp_line (start -13.97 7.62) (end -13.97 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 9b04ed10-d976-4a77-b423-b5fae9afa5f8))
(fp_line (start -13.97 10.16) (end -15.24 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 97a3e8ce-5784-4255-8cd0-1d8241f72e86))
(fp_line (start -12.7 -8.89) (end -12.7 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 348df137-48f4-4237-a672-4e7362589a58))
(fp_line (start -12.7 -6.985) (end -13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8af15980-6d61-489e-9b07-662bcd75ad7c))
(fp_line (start -12.7 6.985) (end -11.43 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7dca42f0-48b0-4643-941c-dc7c423d0504))
(fp_line (start -12.7 8.89) (end -12.7 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6a7e624a-55ac-4db9-af6b-346cc942adb6))
(fp_line (start -11.43 -10.16) (end -10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2d539dcc-d16b-4fd7-88a7-d0b7b89343f6))
(fp_line (start -11.43 -7.62) (end -11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a531c6c4-ddbb-4c04-8d68-09b0166cda18))
(fp_line (start -11.43 7.62) (end -11.43 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fd357249-6130-4854-9a54-8a85ef22717d))
(fp_line (start -11.43 10.16) (end -12.7 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 01ca9c66-2299-45f8-af69-1f1623f708f6))
(fp_line (start -10.16 -8.89) (end -10.16 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c1073a94-4b90-4459-b141-5205c961e86a))
(fp_line (start -10.16 -6.985) (end -11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f4d2ed07-03e5-4430-9e3e-6b04c0c387bb))
(fp_line (start -10.16 6.985) (end -8.89 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f0802166-e800-423e-8090-a6a52774aaef))
(fp_line (start -10.16 8.89) (end -10.16 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d3a067a5-09dc-4d3d-9699-70eb5a8c2a08))
(fp_line (start -8.89 -10.16) (end -7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ccc85330-56ca-423b-bc0a-6ec15d39b6a2))
(fp_line (start -8.89 -7.62) (end -8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 1225b5f0-8056-40b2-828a-25ac891b7e7d))
(fp_line (start -8.89 7.62) (end -8.89 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d79d659c-ffb4-42fd-aee4-d5e9848ed9e7))
(fp_line (start -8.89 10.16) (end -10.16 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b8d253f7-7738-44b7-8c10-45dd2d5d8f23))
(fp_line (start -7.62 -8.89) (end -7.62 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7a8272b7-a669-4d0a-81e9-5061815d18db))
(fp_line (start -7.62 -6.985) (end -8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2ff64ab4-6600-466e-9c85-9a8c29f67907))
(fp_line (start -7.62 6.985) (end -6.35 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 39d218cc-3fbc-4ba5-82c3-fceae32a39ad))
(fp_line (start -7.62 8.89) (end -7.62 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f14bdb8c-6f7e-4fce-bdb3-124bc82ba70d))
(fp_line (start -6.35 -10.16) (end -5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 4101e850-9d9c-49ae-9660-ae4dcd5a623f))
(fp_line (start -6.35 -7.62) (end -6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp da876318-c271-4553-be7f-6c6155870385))
(fp_line (start -6.35 7.62) (end -6.35 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c5deb258-943d-47b8-b1c8-934efb0ae0e8))
(fp_line (start -6.35 10.16) (end -7.62 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 0990f3f8-db9f-4c50-a0c7-8f8d3490b431))
(fp_line (start -5.08 -8.89) (end -5.08 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ae0a2278-f0e4-44cb-88c5-53ec2475b6e3))
(fp_line (start -5.08 -6.985) (end -6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f2107761-ffe4-4fcb-9308-eefb758c70ed))
(fp_line (start -5.08 6.985) (end -3.81 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b1121069-c3c3-4c64-a3ef-ae043f3b05c2))
(fp_line (start -5.08 8.89) (end -5.08 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 39b2f44a-5162-48d4-afc9-faff3b52acb5))
(fp_line (start -3.81 -10.16) (end -2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 509ea2df-6085-4974-be9b-c47b259e1456))
(fp_line (start -3.81 -7.62) (end -3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5aba4ea8-17b5-4854-9c8a-ab50c94a13f6))
(fp_line (start -3.81 7.62) (end -3.81 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d69cb585-1e0c-47a2-8d80-e42c1c385c13))
(fp_line (start -3.81 10.16) (end -5.08 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e76e1bff-76d7-4dec-827a-bda4c6df998f))
(fp_line (start -2.54 -8.89) (end -2.54 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d224eb49-b89d-41b8-a620-4f3969b8d2cb))
(fp_line (start -2.54 -6.985) (end -3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 47b95f48-9b8a-4aef-8e81-291285e8337d))
(fp_line (start -2.54 6.985) (end -1.27 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f07bfbab-8474-49f4-83eb-52152d8979bc))
(fp_line (start -2.54 8.89) (end -2.54 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 79eade54-adab-4925-80e9-99916df8eb52))
(fp_line (start -1.27 -10.16) (end 0 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fae15a79-b121-40f5-ab7f-d3b82d1892d5))
(fp_line (start -1.27 -7.62) (end -1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp aa72f40f-4a40-43c3-8aea-6061e89e1557))
(fp_line (start -1.27 7.62) (end -1.27 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fb632a7d-cc58-479e-afea-5cdc2c84815f))
(fp_line (start -1.27 10.16) (end -2.54 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3e0c7389-a487-49b8-a442-036ea55fdc3a))
(fp_line (start 0 -8.89) (end 0 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b93a9053-b0e7-411e-9a49-9f1f6277d77c))
(fp_line (start 0 -6.985) (end -1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fa567c23-dbcd-4498-ad68-fdbae3de3fd7))
(fp_line (start 0 6.985) (end 1.27 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e8d7f1e2-bebe-4fff-9ed8-d3e5c0abfd4c))
(fp_line (start 0 8.89) (end 0 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 785c813d-64b2-4377-82f8-e6b9441a9a85))
(fp_line (start 1.27 -10.16) (end 2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c64cb86c-6e62-42fb-b92b-57f3bb173bb6))
(fp_line (start 1.27 -7.62) (end 1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 88241c81-1698-488f-86d5-74e66abaaac1))
(fp_line (start 1.27 7.62) (end 1.27 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 7446987b-87b7-4ffc-b9bd-a62d8f9a929b))
(fp_line (start 1.27 10.16) (end 0 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp b9450d49-c506-489b-8243-58285bd50803))
(fp_line (start 2.54 -8.89) (end 2.54 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2820fb58-bddb-43ff-ba0b-4a71b05d2673))
(fp_line (start 2.54 -6.985) (end 1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2ee0e505-4137-4125-b7ae-e635815b3edd))
(fp_line (start 2.54 6.985) (end 3.81 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f120bf79-e99a-4a61-bd3c-47ad9e1e1f0f))
(fp_line (start 2.54 8.89) (end 2.54 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp fa6e0d10-3bdc-40a9-bf20-a73b955a181c))
(fp_line (start 3.81 -10.16) (end 5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 90ba3bdc-3b06-4b27-840a-7ee562f7381c))
(fp_line (start 3.81 -7.62) (end 3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ee288387-600e-499e-9ad9-a6d6a398803f))
(fp_line (start 3.81 7.62) (end 3.81 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp d625fdcc-574b-4ad3-9580-f62dddbb7962))
(fp_line (start 3.81 10.16) (end 2.54 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 82c7c27e-9ef1-44a8-b3c6-3855ccd09170))
(fp_line (start 5.08 -8.89) (end 5.08 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 40680bf2-2b09-484c-8b9e-52b3c3c24138))
(fp_line (start 5.08 -6.985) (end 3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5dfd1bfb-7250-43b5-9a5c-ea8a6c14a917))
(fp_line (start 5.08 6.985) (end 6.35 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c7cbb4cd-52c7-48ba-87fe-e98716c88a99))
(fp_line (start 5.08 8.89) (end 5.08 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8a75e98c-7e81-49a9-8c46-8ca610a5aae6))
(fp_line (start 6.35 -10.16) (end 7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c2e1d285-8e4e-427f-9294-6c0a8d1e9379))
(fp_line (start 6.35 -7.62) (end 6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp ef6fd00e-eccd-46e3-9c9f-dd688dc34145))
(fp_line (start 6.35 7.62) (end 6.35 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6f042c87-157a-4821-b675-c2e805eff5bc))
(fp_line (start 6.35 10.16) (end 5.08 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3c390460-02ce-4ae4-9c1f-bb97deace9ec))
(fp_line (start 7.62 -8.89) (end 7.62 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a78d4eaf-1524-4d3f-84a9-1af0c5a3aab5))
(fp_line (start 7.62 -6.985) (end 6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 200ffe92-3194-4878-8404-a9b3ba1943c2))
(fp_line (start 7.62 6.985) (end 8.89 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp bb5caaaf-0968-4476-86ae-a8bb43a4fa60))
(fp_line (start 7.62 8.89) (end 7.62 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 13a86072-f413-4761-80a4-e8d6fbf6fcc6))
(fp_line (start 8.89 -10.16) (end 10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8d2f76f0-6908-44db-8ce9-ba9b8268e69c))
(fp_line (start 8.89 -7.62) (end 8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 719fba6d-c750-4597-9e21-ba753ad3ac3e))
(fp_line (start 8.89 7.62) (end 8.89 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 465c84d5-a0fd-47ae-ad42-993632166a3c))
(fp_line (start 8.89 10.16) (end 7.62 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 41577f62-e757-479c-b43b-5cb90c8e76e0))
(fp_line (start 10.16 -8.89) (end 10.16 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c8aa5cf8-a487-4ce3-9514-e8e94ee709fc))
(fp_line (start 10.16 -6.985) (end 8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp c22628a5-ce0f-4a55-b10c-841e8895790e))
(fp_line (start 10.16 6.985) (end 11.43 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 92c4b16b-e9c6-4d03-9d4c-9365172453bf))
(fp_line (start 10.16 8.89) (end 10.16 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 8b2cfc7f-f18a-4903-b02b-def3e0d5aa92))
(fp_line (start 11.43 -10.16) (end 12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp f7b49052-4777-4ee2-940c-a3a04415e679))
(fp_line (start 11.43 -7.62) (end 11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp a73e83da-3984-408f-abcd-8b025c65239a))
(fp_line (start 11.43 7.62) (end 11.43 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 60f1c4bc-9bb4-4bba-a155-422108f8d8d5))
(fp_line (start 11.43 10.16) (end 10.16 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 613be385-441d-4094-be03-9a02f6d2b707))
(fp_line (start 12.7 -8.89) (end 12.7 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp dc1d5329-a4a1-4e7b-8f04-9b2dbdcccbf4))
(fp_line (start 12.7 -6.985) (end 11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 24960427-6b91-4979-9270-c5f16d95d6c2))
(fp_line (start 12.7 6.985) (end 13.97 5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 77ca0bb7-f64d-4667-8b6b-b2cb52708420))
(fp_line (start 12.7 8.89) (end 12.7 6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e0b50559-f47d-4a22-a50a-bed1d7765dd8))
(fp_line (start 13.97 -10.16) (end 15.24 -8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 160c015b-4470-4efc-b896-d8d54b34f506))
(fp_line (start 13.97 -7.62) (end 13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 6f27ebd0-3bce-4986-b0c9-7156fa23a1dc))
(fp_line (start 13.97 7.62) (end 13.97 9.398)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 5b078e7b-7b9b-48c2-944a-31faebf90063))
(fp_line (start 13.97 10.16) (end 12.7 8.89)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 3acd6c30-58c8-4e9c-b323-5e0b848ef5c8))
(fp_line (start 15.24 -8.89) (end 15.24 -6.985)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp 2f5afeab-e38c-46d9-b756-8006d5d1d3df))
(fp_line (start 15.24 -6.985) (end 13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "F.Cu") (tstamp e0e71208-d01f-477d-9a30-ae5398cc0271))
(fp_line (start -15.24 5.715) (end -15.24 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a08bbb11-1e43-4e8b-ab2e-27e35b6c08e7))
(fp_line (start -15.24 5.715) (end -14.605 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 07c71d97-a52c-4c30-b7a4-d805c7461b7d))
(fp_line (start -14.605 -5.08) (end -14.605 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 17e61a96-177c-48c4-ab95-a88143962778))
(fp_line (start -14.605 -5.08) (end -13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 88352f7a-fb62-4119-be51-9e7e92055528))
(fp_line (start -13.97 -10.16) (end -12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 14ab2606-42cc-4825-a827-c53547c9e324))
(fp_line (start -13.97 7.62) (end -13.97 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e8f46977-cb20-48bd-b79b-1216362eb5af))
(fp_line (start -13.97 10.16) (end -15.24 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6b725d22-0efd-4fc8-abea-63fa554aeb3f))
(fp_line (start -13.335 5.08) (end -13.97 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a3745da9-0b5b-42ad-8cfb-d0a6c8601f4b))
(fp_line (start -13.335 5.08) (end -13.335 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b7557451-f94a-464b-8d5a-3fa003c2a0ce))
(fp_line (start -12.7 -5.715) (end -13.335 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 594cdb7c-3e88-4243-8932-167b87851ccb))
(fp_line (start -12.7 -5.715) (end -12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 89e0d451-8c21-4688-b926-7863ba5c1994))
(fp_line (start -12.7 5.715) (end -12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp eda63d1e-39b4-4cf3-8c2f-5a79b616570a))
(fp_line (start -12.7 5.715) (end -12.065 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8430dd50-7776-4bb1-bfe0-63e299f1cb8a))
(fp_line (start -12.065 -5.08) (end -12.065 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d0e06e98-9999-4c5d-8abc-5447421ac8d0))
(fp_line (start -12.065 -5.08) (end -11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9222a2ec-d865-48b7-8659-7b500184734a))
(fp_line (start -11.43 -10.16) (end -10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9f520373-843f-4931-b667-4039780c31c2))
(fp_line (start -11.43 -7.62) (end -11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e2d879d7-d6d5-4853-bf36-701ebdc90f82))
(fp_line (start -11.43 7.62) (end -11.43 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 49a0c420-5d0d-4a78-9df4-fa3e96e6d016))
(fp_line (start -11.43 10.16) (end -12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 446da3d9-86ff-427e-8f65-177767f34819))
(fp_line (start -10.795 5.08) (end -11.43 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 785844c8-66b5-4666-b399-c4b96af7e577))
(fp_line (start -10.795 5.08) (end -10.795 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2cfe968d-9eb6-4228-950b-f5f9817bec70))
(fp_line (start -10.16 -5.715) (end -10.795 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5a7b4553-ca39-4ca7-b8a5-0609e2361009))
(fp_line (start -10.16 -5.715) (end -10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp df78d19d-dcbd-4c12-8130-d77ea613c47e))
(fp_line (start -10.16 5.715) (end -10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b0c2e1b0-3237-482d-b927-c23b13c32966))
(fp_line (start -10.16 5.715) (end -9.525 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ee408c75-1ebb-4aa1-af3b-e54091a46e34))
(fp_line (start -9.525 -5.08) (end -9.525 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b287a954-5882-44da-8bab-a6a400c04d66))
(fp_line (start -9.525 -5.08) (end -8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f8d748be-89d3-4e4a-9ecc-34c0734ce1e2))
(fp_line (start -8.89 -10.16) (end -7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9c3a45c3-1a5f-48a8-85c5-bf8ae0713ef1))
(fp_line (start -8.89 -7.62) (end -8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bf3f4cb5-31af-48c4-8723-2c99e1cf610a))
(fp_line (start -8.89 7.62) (end -8.89 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 99eb2129-08b4-40fe-a7cf-1a6f40f49fe3))
(fp_line (start -8.89 10.16) (end -10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 34b8ed1b-d1ae-4135-a119-9f5e3a97fba2))
(fp_line (start -8.255 5.08) (end -8.89 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c54fa70e-76ed-43ce-9ab4-fb5b6cf1ee26))
(fp_line (start -8.255 5.08) (end -8.255 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 225ab74f-a68b-4362-b307-ab1e76aba5e4))
(fp_line (start -7.62 -5.715) (end -8.255 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp bcae2e47-b4d1-45f6-9634-df4a0391f0ea))
(fp_line (start -7.62 -5.715) (end -7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4a726843-519a-49bc-a26d-b7d99f19617d))
(fp_line (start -7.62 5.715) (end -7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp dec8931d-bf58-40b4-8fc2-0352287246b1))
(fp_line (start -7.62 5.715) (end -6.985 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 18b71753-cb2b-4c62-b65a-3d94a37aa3ce))
(fp_line (start -6.985 -5.08) (end -6.985 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d38f7e11-90be-4d2d-8130-42481a4cb853))
(fp_line (start -6.985 -5.08) (end -6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3f753ead-5180-4a9c-8510-479fbf1ddf5a))
(fp_line (start -6.35 -10.16) (end -5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5200abbb-46f4-42c2-9d51-351b488bd14c))
(fp_line (start -6.35 -7.62) (end -6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1b09074b-8efd-45c9-a527-96a012aeec89))
(fp_line (start -6.35 7.62) (end -6.35 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9a4e3fda-ae21-46e5-a108-453bb9a7c45c))
(fp_line (start -6.35 10.16) (end -7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c0065c9a-97ab-404b-8e41-2c746f8856c2))
(fp_line (start -5.715 5.08) (end -6.35 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f5a31516-411c-42e6-9629-8ed1b64dd5cf))
(fp_line (start -5.715 5.08) (end -5.715 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4a10f95f-872a-4fd9-a014-43f1c5fc0652))
(fp_line (start -5.08 -5.715) (end -5.715 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0475d6ab-29cc-4172-8524-6346e8071301))
(fp_line (start -5.08 -5.715) (end -5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 20f5442e-947f-4a22-ba68-621e9dd5045a))
(fp_line (start -5.08 5.715) (end -5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6baf4093-d750-41bd-81e9-d8d10676e44c))
(fp_line (start -5.08 5.715) (end -4.445 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 37dd0541-ce21-4cee-8b00-df6acde11906))
(fp_line (start -4.445 -5.08) (end -4.445 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 119db1d7-0a98-4002-85c9-44682df3eb61))
(fp_line (start -4.445 -5.08) (end -3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0d6bf921-c7f2-4bf5-8a38-ce8dd5134d0f))
(fp_line (start -3.81 -10.16) (end -2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 78a0c8e7-8565-4f09-a06a-9a3c645010e7))
(fp_line (start -3.81 -7.62) (end -3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8b8107ce-9a8c-4198-9375-9e825dda9b4c))
(fp_line (start -3.81 7.62) (end -3.81 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ca130e2a-242d-4790-85cc-71ff677bf40a))
(fp_line (start -3.81 10.16) (end -5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 462ec6dc-c1fa-47fe-a406-8f896ef2eba7))
(fp_line (start -3.175 5.08) (end -3.81 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp df6d45d3-a2c9-461e-8d34-716b638441bc))
(fp_line (start -3.175 5.08) (end -3.175 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 299775b2-92af-4706-8b22-39b94dee95e3))
(fp_line (start -2.54 -5.715) (end -3.175 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1671363d-a81b-4ca8-a70e-f2fe4a76ce41))
(fp_line (start -2.54 -5.715) (end -2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp c2089d44-86a0-4094-84d0-c2e115140158))
(fp_line (start -2.54 5.715) (end -2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 057c8660-416c-4016-914e-70c8c7c9d76b))
(fp_line (start -2.54 5.715) (end -1.905 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 431a38e0-264d-482c-ac57-13665c925a96))
(fp_line (start -1.905 -5.08) (end -1.905 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1cf22e15-9797-4d7e-a246-6f22eb8d3882))
(fp_line (start -1.905 -5.08) (end -1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 01209e8e-e2a2-40a8-bb40-b8e596203b02))
(fp_line (start -1.27 -10.16) (end 0 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 59c42bd2-a91f-41ac-bd3b-a61a359c703a))
(fp_line (start -1.27 -7.62) (end -1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 234fdd16-5af9-4946-8d5b-59b873028f5c))
(fp_line (start -1.27 7.62) (end -1.27 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4fccc366-e9e6-4821-a0f0-ea929caedea2))
(fp_line (start -1.27 10.16) (end -2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e5168ba6-76db-4102-a25a-55466224fe3c))
(fp_line (start -0.635 5.08) (end -1.27 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp afe4d471-4484-453a-9371-340cce54fa8f))
(fp_line (start -0.635 5.08) (end -0.635 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0e9ea7af-9d4f-4903-91cb-2b7587a9a4dc))
(fp_line (start 0 -5.715) (end -0.635 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6530ba4c-b9a4-46d4-9e47-9f174c8d47b9))
(fp_line (start 0 -5.715) (end 0 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 06969e6a-8758-4bd2-a782-59ce6958d639))
(fp_line (start 0 5.715) (end 0 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 779160a4-7383-4249-9d2c-85e3e55e4c7d))
(fp_line (start 0 5.715) (end 0.635 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d1567e75-6f7e-4ea2-aee9-4c0c3c0e2697))
(fp_line (start 0.635 -5.08) (end 0.635 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 89c33bbe-39d8-48d4-a923-c20767bbde12))
(fp_line (start 0.635 -5.08) (end 1.27 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b9cd798e-2e61-4735-b1d5-52de966118c1))
(fp_line (start 1.27 -10.16) (end 2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e745cceb-32fc-425e-a1b4-795c3a5665ae))
(fp_line (start 1.27 -7.62) (end 1.27 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 75bd245f-55bd-445b-8262-318e52ee9615))
(fp_line (start 1.27 7.62) (end 1.27 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 25d0de7f-9f11-4d28-b1df-dae00c8cb12a))
(fp_line (start 1.27 10.16) (end 0 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 88c80401-eea6-4edb-8084-6bcbb282ddb2))
(fp_line (start 1.905 5.08) (end 1.27 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ce5aac4f-7f61-4c90-8fa3-06874dba80f0))
(fp_line (start 1.905 5.08) (end 1.905 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6aab87cb-3425-4509-a622-040c8837c6b1))
(fp_line (start 2.54 -5.715) (end 1.905 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8b318bad-e59c-4388-afae-f4188a78beb1))
(fp_line (start 2.54 -5.715) (end 2.54 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f2a7fb45-7411-441e-8853-ea81ea710eda))
(fp_line (start 2.54 5.715) (end 2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp eb4314d5-af66-41cb-a99d-e012fb3e9d3c))
(fp_line (start 2.54 5.715) (end 3.175 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp e201226b-8cd0-4ab2-a3c7-0e784a469219))
(fp_line (start 3.175 -5.08) (end 3.175 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2dc76ffd-a378-4750-8048-26217a1fa53f))
(fp_line (start 3.175 -5.08) (end 3.81 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0b7939b4-5e5c-40e7-8c53-d3acd0dc85de))
(fp_line (start 3.81 -10.16) (end 5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4026de02-e17f-408e-95ab-8064753e2dfe))
(fp_line (start 3.81 -7.62) (end 3.81 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5bd462c4-75d9-4a21-9e8f-3da62db24ebf))
(fp_line (start 3.81 7.62) (end 3.81 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3adb3a5e-0329-4071-8022-15626cf09d04))
(fp_line (start 3.81 10.16) (end 2.54 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 93443c32-6b83-4099-bd54-e33babf96f0c))
(fp_line (start 4.445 5.08) (end 3.81 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ab28e491-059c-48f9-90bc-ad9063d2e7ff))
(fp_line (start 4.445 5.08) (end 4.445 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6751f1bd-2faa-498b-ba00-f6bdb3065d90))
(fp_line (start 5.08 -5.715) (end 4.445 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 72c1291f-9be1-4b4f-bf00-e4e12e5673fc))
(fp_line (start 5.08 -5.715) (end 5.08 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d075214e-ab4f-469c-af4c-8a1662520930))
(fp_line (start 5.08 5.715) (end 5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 4bcef573-59a2-4769-b335-cf760c1b70d1))
(fp_line (start 5.08 5.715) (end 5.715 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0130cac0-e2a4-48fe-b9cf-e79c99754b43))
(fp_line (start 5.715 -5.08) (end 5.715 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 497504f2-4c76-4c0f-b480-628c803ea3ec))
(fp_line (start 5.715 -5.08) (end 6.35 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 5581e17b-5d29-4806-864f-d569fc583445))
(fp_line (start 6.35 -10.16) (end 7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp eaafb446-7c95-44c6-8a89-407c7e2ec3da))
(fp_line (start 6.35 -7.62) (end 6.35 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 864ef340-f783-43bb-a86c-6157b0cbb8fa))
(fp_line (start 6.35 7.62) (end 6.35 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ce17d71e-a055-4af6-a39f-8a7a2933a83c))
(fp_line (start 6.35 10.16) (end 5.08 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b3da9ea5-dc0e-4ca1-b629-8e38014f64a1))
(fp_line (start 6.985 5.08) (end 6.35 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 58070892-4e97-4235-8141-a2f1eace3d64))
(fp_line (start 6.985 5.08) (end 6.985 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 0fd29631-e500-45e6-a8ef-5f5dd0fba097))
(fp_line (start 7.62 -5.715) (end 6.985 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7c2932b6-679e-462e-b14b-8f5f858ec4f5))
(fp_line (start 7.62 -5.715) (end 7.62 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 66716aad-fe73-4400-be5a-776b805b9e97))
(fp_line (start 7.62 5.715) (end 7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 71d011c0-2b53-4f72-98d0-4cc5f19b4905))
(fp_line (start 7.62 5.715) (end 8.255 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 319f1a25-89f4-4643-b514-4377d1296d74))
(fp_line (start 8.255 -5.08) (end 8.255 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2b8a08a3-c5f1-4bc4-a0fd-6c7726f00819))
(fp_line (start 8.255 -5.08) (end 8.89 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 8baa96e3-12aa-4e08-b075-8273d6093883))
(fp_line (start 8.89 -10.16) (end 10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp a9bad29c-c161-4241-ae9a-96b88a9d57fc))
(fp_line (start 8.89 -7.62) (end 8.89 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 66c7f68f-d47b-46b4-ba62-bd364687f679))
(fp_line (start 8.89 7.62) (end 8.89 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 97ab2f62-b586-47aa-879d-f1d777ddb2ca))
(fp_line (start 8.89 10.16) (end 7.62 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp be19b6a6-20c2-4dc0-b69e-6a1f1119f383))
(fp_line (start 9.525 5.08) (end 8.89 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fcf3cdf9-d8fa-417a-a7f5-13eedc0b38e0))
(fp_line (start 9.525 5.08) (end 9.525 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9d34345d-6413-420d-91c3-aae3fd7493d6))
(fp_line (start 10.16 -5.715) (end 9.525 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp db255a9b-615a-4d0f-81c2-bec1b10a1ed2))
(fp_line (start 10.16 -5.715) (end 10.16 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 54fececc-c718-4b0d-8a64-9a648d9bcee8))
(fp_line (start 10.16 5.715) (end 10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7c3dd500-7b84-447f-a796-a5c045f3287a))
(fp_line (start 10.16 5.715) (end 10.795 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 546aa584-4073-41c5-a53e-630eb24d6c5a))
(fp_line (start 10.795 -5.08) (end 10.795 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b2b8d73e-abdf-47ae-9464-5abe70a4a732))
(fp_line (start 10.795 -5.08) (end 11.43 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3f4430d6-a0a1-4b89-a221-ad87d22c80b1))
(fp_line (start 11.43 -10.16) (end 12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp eb0f0628-294e-4af1-8c79-e7a57c2a8129))
(fp_line (start 11.43 -7.62) (end 11.43 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 3594b718-f710-46b7-9db9-3db23ecc0032))
(fp_line (start 11.43 7.62) (end 11.43 9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp b6fd7014-2757-4a01-88c9-ea17e7b85a62))
(fp_line (start 11.43 10.16) (end 10.16 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7cf27971-fabe-4aa6-9e08-8444dfde6e7d))
(fp_line (start 12.065 5.08) (end 11.43 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9eb391fb-4c83-4ee7-b78f-65fee412aebd))
(fp_line (start 12.065 5.08) (end 12.065 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 1f904fb5-71b7-4788-bc8f-e3d64b8d7e4b))
(fp_line (start 12.7 -5.715) (end 12.065 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f8c359ce-a0c5-4617-8d28-fedbc0eafa0f))
(fp_line (start 12.7 -5.715) (end 12.7 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 2bfee77a-ad6e-4e91-90c6-11c15eeeaea9))
(fp_line (start 12.7 5.715) (end 12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 20d4bb57-b36e-4dbc-b122-c19d5e9ccc7b))
(fp_line (start 12.7 5.715) (end 13.335 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp f04201b5-0030-41e8-98b8-4e4f9b5901fe))
(fp_line (start 13.335 -5.08) (end 13.335 5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6eb350c1-f480-4492-acbd-4d3e4d4b75ec))
(fp_line (start 13.335 -5.08) (end 13.97 -5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6691e6cb-b30d-4628-82b2-196247ba0ab0))
(fp_line (start 13.97 -10.16) (end 15.24 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 6f4eb41b-738a-4701-aa5a-cfdf90b94675))
(fp_line (start 13.97 -7.62) (end 13.97 -9.398)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 7610aa00-0b64-4220-8193-8b5f491c9a88))
(fp_line (start 13.97 10.16) (end 12.7 8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 85d5ee6d-8888-4e97-b755-4c1cd1443f02))
(fp_line (start 14.605 5.08) (end 13.97 5.715)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp ce60c669-1fc8-42ef-9f37-11ee5b18e603))
(fp_line (start 14.605 5.08) (end 14.605 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp d9a8f358-ec79-4ab2-ade7-3cfebe542d0b))
(fp_line (start 15.24 -5.715) (end 14.605 -5.08)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp fd75cbc2-001f-45fc-9acc-23d9d9483328))
(fp_line (start 15.24 -5.715) (end 15.24 -8.89)
(stroke (width 0.254) (type default)) (layer "B.Cu") (tstamp 9df923f6-5b1a-4a41-bdcb-b90a26cdcb57))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp efc329bd-4bfd-4dda-81cb-ce18bb971100))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 08e0df41-a748-43be-ab63-56095ee2103f))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp f484f320-85b5-4f3d-8e4f-1d8eff9c3017))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "B.SilkS") (tstamp 2214ff54-7d5f-4adc-89e7-5be0ff7e6aae))
(fp_line (start -17.78 -8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4127d632-779f-498f-9849-ca5c8a005bf7))
(fp_line (start -17.78 8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f2c59dce-efa7-4446-a0cb-fc5d34968bf1))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 504795e1-17de-41f4-a6ec-647dc63135f0))
(fp_line (start 15.24 -8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bffda206-14a6-45bc-81b4-3b2baef9f151))
(fp_poly
(pts
(xy -14.478 10.16)
(xy -13.462 10.16)
(xy -13.462 9.144)
(xy -14.478 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp adb68624-e032-402c-911a-a1101f4f02d2))
(fp_poly
(pts
(xy -13.462 -10.16)
(xy -14.478 -10.16)
(xy -14.478 -9.144)
(xy -13.462 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp fae2dee7-a4c1-4787-8f52-f3f07fc1b2cc))
(fp_poly
(pts
(xy -11.938 10.16)
(xy -10.922 10.16)
(xy -10.922 9.144)
(xy -11.938 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 47ab79be-3135-41aa-9e96-dba3de710457))
(fp_poly
(pts
(xy -10.922 -10.16)
(xy -11.938 -10.16)
(xy -11.938 -9.144)
(xy -10.922 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 00ac76c9-8617-42ff-8113-efa028189f89))
(fp_poly
(pts
(xy -9.398 10.16)
(xy -8.382 10.16)
(xy -8.382 9.144)
(xy -9.398 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp bb1ef440-2321-481c-9597-9c8fbfc276d4))
(fp_poly
(pts
(xy -8.382 -10.16)
(xy -9.398 -10.16)
(xy -9.398 -9.144)
(xy -8.382 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp c6d3cace-8dbb-44a0-b598-d006331e107a))
(fp_poly
(pts
(xy -6.858 10.16)
(xy -5.842 10.16)
(xy -5.842 9.144)
(xy -6.858 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d35aac62-b06a-4154-a594-e43d51c555c0))
(fp_poly
(pts
(xy -5.842 -10.16)
(xy -6.858 -10.16)
(xy -6.858 -9.144)
(xy -5.842 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 3083cbe5-e7be-46bd-a15a-6b50aa6e0787))
(fp_poly
(pts
(xy -4.318 10.16)
(xy -3.302 10.16)
(xy -3.302 9.144)
(xy -4.318 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp bf3daea0-6f25-4f13-9c06-feae703392e0))
(fp_poly
(pts
(xy -3.302 -10.16)
(xy -4.318 -10.16)
(xy -4.318 -9.144)
(xy -3.302 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp d4a3fa51-7495-42d3-958d-3150bc8c2e45))
(fp_poly
(pts
(xy -1.778 10.16)
(xy -0.762 10.16)
(xy -0.762 9.144)
(xy -1.778 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7e90cbee-010b-4c40-90c2-5978973d3b23))
(fp_poly
(pts
(xy -0.762 -10.16)
(xy -1.778 -10.16)
(xy -1.778 -9.144)
(xy -0.762 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 4636bbc5-f0cd-46bc-b19b-f22364f22500))
(fp_poly
(pts
(xy 0.762 10.16)
(xy 1.778 10.16)
(xy 1.778 9.144)
(xy 0.762 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 310ff0bb-b9e7-401e-82d1-0083b8612300))
(fp_poly
(pts
(xy 1.778 -10.16)
(xy 0.762 -10.16)
(xy 0.762 -9.144)
(xy 1.778 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 0429770f-33a4-46d5-b3e0-ec1d27d716b9))
(fp_poly
(pts
(xy 3.302 10.16)
(xy 4.318 10.16)
(xy 4.318 9.144)
(xy 3.302 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 8372aa6e-f311-498f-bf9a-56069dee758d))
(fp_poly
(pts
(xy 4.318 -10.16)
(xy 3.302 -10.16)
(xy 3.302 -9.144)
(xy 4.318 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 6fe25fe8-e633-478b-99d9-8e6ce0a7973e))
(fp_poly
(pts
(xy 5.842 10.16)
(xy 6.858 10.16)
(xy 6.858 9.144)
(xy 5.842 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 8246457f-6e19-4062-85b6-09a1e8e04004))
(fp_poly
(pts
(xy 6.858 -10.16)
(xy 5.842 -10.16)
(xy 5.842 -9.144)
(xy 6.858 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp ca616008-57ee-43a3-becd-0ad9d8021141))
(fp_poly
(pts
(xy 8.382 10.16)
(xy 9.398 10.16)
(xy 9.398 9.144)
(xy 8.382 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7d65e5d3-2395-483d-a295-1b3ed7125d33))
(fp_poly
(pts
(xy 9.398 -10.16)
(xy 8.382 -10.16)
(xy 8.382 -9.144)
(xy 9.398 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 35f75ec4-f539-4ffc-87f7-9aa9b172c2ca))
(fp_poly
(pts
(xy 10.922 10.16)
(xy 11.938 10.16)
(xy 11.938 9.144)
(xy 10.922 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp e9e74275-b204-4678-be5f-dd492e45f90a))
(fp_poly
(pts
(xy 11.938 -10.16)
(xy 10.922 -10.16)
(xy 10.922 -9.144)
(xy 11.938 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 94a1482d-ebef-4529-b5b5-023f1e421614))
(fp_poly
(pts
(xy 13.462 10.16)
(xy 14.478 10.16)
(xy 14.478 9.144)
(xy 13.462 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 9a8f811c-d72c-4fbe-b0c6-ac16d78a7ef4))
(fp_poly
(pts
(xy 14.478 -10.16)
(xy 13.462 -10.16)
(xy 13.462 -9.144)
(xy 14.478 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "B.Mask") (tstamp 7d62fd14-90d7-4140-9772-c046991c46e4))
(fp_poly
(pts
(xy -14.478 10.16)
(xy -13.462 10.16)
(xy -13.462 9.144)
(xy -14.478 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp ea05f40c-2372-4b33-a3c6-abf28922dccb))
(fp_poly
(pts
(xy -13.462 -10.16)
(xy -14.478 -10.16)
(xy -14.478 -9.144)
(xy -13.462 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 15c9c85b-84b4-48c3-85d2-ce60fba50076))
(fp_poly
(pts
(xy -11.938 10.16)
(xy -10.922 10.16)
(xy -10.922 9.144)
(xy -11.938 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 5832fc29-7adc-43ef-a8da-f4874d6a7c19))
(fp_poly
(pts
(xy -10.922 -10.16)
(xy -11.938 -10.16)
(xy -11.938 -9.144)
(xy -10.922 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c0557da1-077b-4555-9fe2-3cd4692c4e14))
(fp_poly
(pts
(xy -9.398 10.16)
(xy -8.382 10.16)
(xy -8.382 9.144)
(xy -9.398 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 99428939-ca5a-49be-b336-c84fccf3b9f5))
(fp_poly
(pts
(xy -8.382 -10.16)
(xy -9.398 -10.16)
(xy -9.398 -9.144)
(xy -8.382 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b05d46f0-d3f0-4d88-8c16-2996cc55b71c))
(fp_poly
(pts
(xy -6.858 10.16)
(xy -5.842 10.16)
(xy -5.842 9.144)
(xy -6.858 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 10702a46-0262-4002-843f-65d1a9a0d9b2))
(fp_poly
(pts
(xy -5.842 -10.16)
(xy -6.858 -10.16)
(xy -6.858 -9.144)
(xy -5.842 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 4e0d8dbf-e7f2-423f-aca0-343cc0ee01a1))
(fp_poly
(pts
(xy -4.318 10.16)
(xy -3.302 10.16)
(xy -3.302 9.144)
(xy -4.318 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp d3e3d2be-1ed1-4335-a582-c10c6401df08))
(fp_poly
(pts
(xy -3.302 -10.16)
(xy -4.318 -10.16)
(xy -4.318 -9.144)
(xy -3.302 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 7477707e-ba7e-4545-b07b-c0428d70de4d))
(fp_poly
(pts
(xy -1.778 10.16)
(xy -0.762 10.16)
(xy -0.762 9.144)
(xy -1.778 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 47be6131-26d5-462d-924e-695f95073246))
(fp_poly
(pts
(xy -0.762 -10.16)
(xy -1.778 -10.16)
(xy -1.778 -9.144)
(xy -0.762 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 7645f46a-cb22-4584-a552-13061540c263))
(fp_poly
(pts
(xy 0.762 10.16)
(xy 1.778 10.16)
(xy 1.778 9.144)
(xy 0.762 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 000ad61d-373a-4140-8b6f-3a80d02c48c5))
(fp_poly
(pts
(xy 1.778 -10.16)
(xy 0.762 -10.16)
(xy 0.762 -9.144)
(xy 1.778 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 8aa7a9d1-edc4-4eb0-8f8b-171e13ec73c7))
(fp_poly
(pts
(xy 3.302 10.16)
(xy 4.318 10.16)
(xy 4.318 9.144)
(xy 3.302 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 6b6debf6-a23f-4b11-8c25-ecb5c442885a))
(fp_poly
(pts
(xy 4.318 -10.16)
(xy 3.302 -10.16)
(xy 3.302 -9.144)
(xy 4.318 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c2264ace-c1b5-482d-b21f-5f8ee92eb0a5))
(fp_poly
(pts
(xy 5.842 10.16)
(xy 6.858 10.16)
(xy 6.858 9.144)
(xy 5.842 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b145b6d0-416b-4d1c-8d43-b03e792e3fb8))
(fp_poly
(pts
(xy 6.858 -10.16)
(xy 5.842 -10.16)
(xy 5.842 -9.144)
(xy 6.858 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 98d3d540-9ad7-4a3a-92d8-d0d0d954d3f7))
(fp_poly
(pts
(xy 8.382 10.16)
(xy 9.398 10.16)
(xy 9.398 9.144)
(xy 8.382 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b068d14f-c913-4c62-aab5-4eac2db7481b))
(fp_poly
(pts
(xy 9.398 -10.16)
(xy 8.382 -10.16)
(xy 8.382 -9.144)
(xy 9.398 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 74c9dc94-fb44-46e3-b56c-6fa97a0b773b))
(fp_poly
(pts
(xy 10.922 10.16)
(xy 11.938 10.16)
(xy 11.938 9.144)
(xy 10.922 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp c54590cd-5273-4f60-9e0e-76f53b87fa43))
(fp_poly
(pts
(xy 11.938 -10.16)
(xy 10.922 -10.16)
(xy 10.922 -9.144)
(xy 11.938 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp b9b91e80-d05c-42a6-85bb-6831e134728b))
(fp_poly
(pts
(xy 13.462 10.16)
(xy 14.478 10.16)
(xy 14.478 9.144)
(xy 13.462 9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp 8f8297c2-fe6f-4003-9b33-bfc3980678db))
(fp_poly
(pts
(xy 14.478 -10.16)
(xy 13.462 -10.16)
(xy 13.462 -9.144)
(xy 14.478 -9.144)
)
(stroke (width 0.2) (type solid)) (fill solid) (layer "F.Mask") (tstamp acd17840-8f68-48ce-b3cd-994a84348472))
(pad "" smd custom (at -13.97 -9.398) (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 8af48a76-1cc9-4a6e-86cf-ea3c6ee54a95))
(pad "" smd custom (at -13.97 -9.398) (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 daa95032-c9f6-4334-abf0-5212f58dbe9e))
(pad "" thru_hole circle (at -13.97 -7.62) (size 1.6 1.6) (drill 1.1) (layers "*.Cu" "*.Paste" "*.Mask") (tstamp 9ef4c8d7-78cc-4944-8f35-e7b8518789b0))
(pad "" smd rect (at -13.97 -7.62) (size 1.6 1.6) (layers "B.Cu" "B.Paste" "B.Mask")
(zone_connect 0) (tstamp f874b058-488d-4210-b9a3-703e1012363d))
(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 1d953bc4-1f54-4672-ab4b-4b33b091b0fe))
(pad "" smd rect (at -13.97 7.62) (size 1.6 1.6) (layers "F.Cu" "F.Paste" "F.Mask")
(zone_connect 0) (tstamp ac7197e5-be8e-4b80-8975-905da86431a8))
(pad "" smd custom (at -13.97 9.398 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 9b61feb7-dc81-4c44-aca8-8eeb21587fbc))
(pad "" smd custom (at -13.97 9.398 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 40d56519-66a2-49a9-99ee-e64ff8caa46b))