-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidiot17apr.kicad_pcb
1298 lines (1271 loc) · 90.4 KB
/
idiot17apr.kicad_pcb
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
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A3")
(title_block
(title "tutorial")
(rev "v1.0.0")
(company "Unknown")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
)
(setup
(pad_to_mask_clearance 0.05)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "P6")
(net 2 "GND")
(net 3 "P4")
(net 4 "P2")
(net 5 "P1")
(net 6 "P16")
(net 7 "P15")
(net 8 "P19")
(net 9 "P20")
(net 10 "P7")
(net 11 "P5")
(net 12 "P3")
(net 13 "P0")
(net 14 "P10")
(net 15 "P14")
(net 16 "P18")
(net 17 "P21")
(net 18 "P9")
(net 19 "RAW")
(net 20 "RST")
(net 21 "VCC")
(net 22 "P8")
(footprint "E73:SW_TACT_ALPS_SKQGABE010" (layer "F.Cu")
(tstamp 00000000-0000-0000-0000-00005bf2cc94)
(at 160.225 56.855 -90)
(descr "Low-profile SMD Tactile Switch, https://www.e-switch.com/product-catalog/tact/product-lines/tl3342-series-low-profile-smt-tact-switch")
(tags "SPST Tactile Switch")
(attr through_hole)
(fp_text reference "B1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 7f5fb0fd-58e6-48e1-ba46-e1d0c8011b4e)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp c188789b-b950-4b49-8885-7754f553cc13)
)
(fp_line (start -2.75 -1.25) (end -2.75 1.25)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 72964cad-0f52-4279-ad3f-78386f0947b3))
(fp_line (start -2.75 -1.25) (end -1.25 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 537746c2-b0ce-4159-9404-f2241b7f68db))
(fp_line (start -2.75 1.25) (end -1.25 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 967e1c49-8899-4913-9b52-9a924577faa4))
(fp_line (start -1.25 -2.75) (end 1.25 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fd128fe2-0bca-4f65-806d-1e1e65fb6ade))
(fp_line (start -1.25 2.75) (end 1.25 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ec18524c-16b7-47ae-b52e-d019ee89d4fc))
(fp_line (start 2.75 -1.25) (end 1.25 -2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 10a6cd7c-0af0-41a8-9d8a-794c66921db2))
(fp_line (start 2.75 -1.25) (end 2.75 1.25)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1542ada7-98c5-4dd3-ac95-098960d0a2b7))
(fp_line (start 2.75 1.25) (end 1.25 2.75)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1ba62464-9489-4b7b-b1de-0dd8f1ee9cd7))
(pad "1" smd rect (at -3.1 -1.85 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 1e666bc6-f230-42cf-a1b4-786896e05e4c))
(pad "1" smd rect (at 3.1 -1.85 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "GND") (tstamp 9f467a46-56f9-4256-ab4a-b056b9d4e8f3))
(pad "2" smd rect (at -3.1 1.85 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "RST") (tstamp b27d83c7-e080-4ef2-89ec-865d7d1a3497))
(pad "2" smd rect (at 3.1 1.85 270) (size 1.8 1.1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "RST") (tstamp 5dc35703-ade1-4251-beb8-c60e4c4e7288))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 004f06f2-283e-4f46-b2a9-46059dd7fb03)
(at 44.875 26.375)
(attr through_hole)
(fp_text reference "S2" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 379de2db-dc1a-44a1-9070-e42b34df807f)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp f1f5c6f4-3fcf-45b6-86a3-832d52166554)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d4f52f40-507e-4b09-bca0-5a52b4b8e275))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2a11d9ad-275d-47d4-8c7f-f60e7a227c25))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 62f3178a-1057-4b6c-8ea7-e7db56c014e8))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6d7c19d0-df22-441f-803c-f8b88fcc170f))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 564d2717-0d63-499c-9766-a66685d64ffb))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d0774d0b-5a9f-41fb-b06f-4db846886ef0))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b49cabce-42ae-4353-8734-197ba1648d46))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0823105b-c13c-46d2-8d92-9b0faac6a0ba))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 11034e9a-e63f-4a57-952a-aca6046797bf))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 21450a9a-eedc-49dd-904b-81f710d16a9c))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5f3dbee8-9963-4a54-a56d-31162bd25cc6))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3ea8fe21-c572-4f46-8a30-85b8b58136e9))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 519305e5-c63a-4ba9-84c9-95e207cf3f4c))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 6367bc94-8737-49c8-a731-fe99757c77d2))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 04ec2418-6425-4c8b-9e78-e588b6187ff9))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 3 "P4") (tstamp e88efddd-e217-42f7-99f3-028077ab28ac))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 3 "P4") (tstamp ad3d8a8e-c670-46ac-b1ea-0ece55802645))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 256605dd-ffa7-4636-a1d4-3d067a3b6969))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp e37253eb-153f-4100-8c2c-2d624ccd7c55))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 13fb8614-29ad-412f-83eb-3034a4fddf50)
(at 62.875 43.375)
(attr through_hole)
(fp_text reference "S11" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 1ffb6584-b203-4233-a58b-a2061c6e1dc2)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 7c64774a-9b8d-4634-9484-4e1ca2494a25)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4fbee985-5543-4f94-9615-e1705507b94c))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 020e34ff-7c37-4d4b-ae52-177a23c3107c))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d41bf13f-fcd5-425a-8375-64497ff2afec))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 54259cea-b2c5-4667-b16b-2e7d6d17a41e))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp bd4ca709-e346-411d-a39a-35156ac3326f))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c81af31a-42f5-415d-ad27-d2b8ae4c19cc))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0fa007fe-7fce-4f0a-89ad-340de3216355))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c453e132-4518-4999-878a-f295e97f3d39))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e5a1dbe5-cbaa-43e9-afdb-c16a4589def1))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f91df96c-e1e4-438f-966e-3537d2d7bdfe))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 85ec17d3-70b5-447b-81a1-61b922764b7e))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 937c7ef5-f19d-4cb9-af7e-be05feeed437))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp fe28c8e5-33f2-4183-82cf-9ff2e002955c))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 3ec39be3-ff25-4534-b88f-3a1f0238edae))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 23d048f4-d64a-450d-b31a-88c213c4bee5))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 12 "P3") (tstamp c924b93c-2ab5-411f-9bc9-de0f3e330fa6))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 12 "P3") (tstamp 69761f17-b1cd-4b3b-852a-6a4c0c5ea18c))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 74ada0ee-1ae2-4b8e-84dc-18ed49583f87))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp be1df71c-63ba-43de-86d8-3dd0f2eaa2e3))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 2003ee4e-d0eb-4a0a-964c-0533ed589183)
(at 152.875 43.375)
(attr through_hole)
(fp_text reference "S16" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 7adc0c1d-b7cf-4424-b032-ac4c6680c0e9)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp a1827a7e-6e0d-43a3-9ee7-96ad840adf30)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5e8b8e44-b498-47fb-b3b5-95f9e90d7196))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c3b657ba-c472-466a-93fc-b53f2fc3b189))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp bca458a8-13bb-479a-90a1-911b3698f7d2))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b1279d6a-df06-4ddb-b757-7067173fef3f))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 56340873-e45c-4154-8264-8660b083564d))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d3a6b0c7-2445-4bbf-b400-67ec80fdab49))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7852b962-77d0-4d27-8e40-f3c5034caa9e))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ef024279-1c39-4c68-97d6-2794b10eea71))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 9cb9b5e2-c232-4e3c-a00c-55ce868964a4))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 44d3a977-4a20-4d1b-86a3-9f28fb1d2c93))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp cee2407b-1def-4ab7-8b0e-b3528a2afe58))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 539352ef-71d1-464c-8c03-ed5e45c7d817))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp e8cafd74-de86-4217-ab7f-d13d86895eb2))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp b5d6f2c8-086b-4cf0-9559-364a24b48db4))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 11cbe562-baf9-40ba-9100-78a1851dbedb))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 17 "P21") (tstamp 01a0572f-8649-4cf6-93a6-1f9a2c8e6c8d))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 17 "P21") (tstamp 8fc52ff4-fcf5-41ab-9473-ae8b80ee4365))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 9dd6ee2b-b63f-49d2-919b-562a6dc04135))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp faf40620-4e00-423b-8a2b-9d47b2b40f7f))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 246ee28f-7120-4513-8565-4ab998fb1c1d)
(at 116.875 43.375)
(attr through_hole)
(fp_text reference "S14" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 7db0a4cf-ca7a-457e-b80a-6425f7e4a190)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 5b3eaa40-eeb2-4fd3-b483-315ebab4db5e)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ec86054b-db37-40fb-88c7-a1a3e4d7b48d))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c7dbca8a-8540-4a96-bed6-2e21b4bef493))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8ba83305-0d87-4f50-a5cf-847332e00923))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ab3fe49d-e29b-4bed-b347-f5bbf2aa7370))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8d4500ec-c948-49b3-9822-34b6d0975401))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4cabba66-ea20-480e-bffe-e810f3016d7d))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5fd25c2b-8879-45f6-8655-4324fee6dfc1))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6df8e885-aba2-47cf-b19d-87e06151bee4))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 31cd7091-8591-437d-98b7-91ef5d5a0910))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 34e8513c-404c-4082-999b-748db7c783e8))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 798cf93b-61b1-4087-8056-a922496efc94))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 823da6de-e9b3-4fe2-9d3f-4b5da9e4f9ce))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 466b6ddf-7f10-49fd-8b5b-fdf65be67aee))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 66247036-7f47-4b4c-a68a-fc0203aa566d))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 8808c67a-b184-4df2-b97b-b0307240714a))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 15 "P14") (tstamp 587ea607-a50c-4ddf-901a-0fdde126d485))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 15 "P14") (tstamp 0ad15763-72e6-48d2-b7f0-03c3cd57cb42))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 64eccb19-02b0-4bca-99b4-6d21fc41c06e))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp ddb0e855-0152-4f88-8adb-3234ebfa9d39))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 2615d0d9-63f5-45a2-bd00-ef55b9bbd32d)
(at 134.875 26.375)
(attr through_hole)
(fp_text reference "S7" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 9dc80376-067c-4e05-bbe0-d285521bd507)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp df8977f5-e410-4385-a87f-69e88856c2f6)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7ad2dd99-f496-4d63-ba7a-ae0aa1b61d21))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7fc063a7-ad26-4528-8102-140cec9f248f))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4600d7e5-4fd9-43b7-b878-0d78fa29f648))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 84a5da28-6eea-48f6-ad22-a6db09536406))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7f13ba41-22a3-4b04-8104-5d5df3915090))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 787bfbbe-2a8a-46dd-ad6a-630815bad6de))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c28ac49a-62f5-44ab-ad0f-c0ec9f077292))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3371217c-7c49-418a-aacf-7e8c288ff26f))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8fd0aa79-b45e-4268-aa6f-fd93c4d28869))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3ea71c91-7e12-4de0-ac61-a0b58ff9f54f))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3940888f-6c2b-4ed5-b029-45f426e66672))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0b1b219a-0216-458d-b481-72b5c9ff57ee))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp e9f209d5-c2bd-4c67-9fc5-96db54bc7050))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 5b996dfe-56ba-4741-8249-2406ae1598d1))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 4d83b5c8-15a6-4a06-90cd-e21796c0385f))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 8 "P19") (tstamp 2484a535-8d8d-4204-91fe-60c2f138b332))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 8 "P19") (tstamp 06b8ec22-9c42-40c9-9a3b-17108364af9f))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 67f95d5c-6953-46aa-b1a6-21343428f9d0))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp a132858d-a961-4095-ab8c-2384bcd051ff))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 3858a7f3-dfdf-4e73-8371-22113b65f5db)
(at 80.875 43.375)
(attr through_hole)
(fp_text reference "S12" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 776fb5a8-e4a5-43f2-9ab1-4737fdd2f5fc)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 86835278-47c2-4ba2-8e9d-8d2e4844db19)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0d370cf9-d802-4836-86b1-059ecc74229e))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5a844c94-658d-44f8-a1e3-38e6eaada5a0))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 30e55eb3-04f0-48ca-b1cf-8414c92d3d4a))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6d6512c1-968b-40ff-839f-540d965f26ce))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 189a334f-106d-462b-9429-1e427d1bf5db))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e0aa217e-803f-40b1-9e29-ebbb46abf204))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 27a2cbbb-26c9-46db-b899-e18a1754e4c3))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5f6b7bea-a3cd-445d-8e01-ccb2f51c0465))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1b4d8932-f5b1-45f8-9fa8-59c0fe962e4c))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp dba85ff9-ac5d-44f7-b590-747380a0f9ee))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 71c0ad4a-dc67-4944-854c-7359f32362fa))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp eaea441a-64c6-4ef9-ba65-397cad71282d))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 8b28510c-f92d-4dd1-8a44-9972133464d5))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp aeb766ac-3444-4719-a10e-3de52faee63f))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 95930a04-fe99-4f55-b5ed-52f76e6f93ca))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 13 "P0") (tstamp e9b7714f-0ecb-4126-9fab-94b9a7de7234))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 13 "P0") (tstamp ed8915ca-5386-4e77-a26f-59f320952777))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 09f1e4f8-5865-45d5-90ac-a02528a466c1))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp ca53f352-aef3-4cb6-9259-7d0c6de8e2bc))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 390c2be7-4f40-4865-a172-be7769733313)
(at 89.867 60.342)
(attr through_hole)
(fp_text reference "S17" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 28b4aa51-bc72-4238-b147-edf5eb95e97b)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp c204e467-6321-455b-adaf-311f3e70e1f3)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1763218d-e48a-41b3-b1e2-1778dfe7cd82))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8f72ad93-04db-4ddc-b48e-8d6666b44800))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d4431a0d-0ec2-4c32-99c5-71be96b35e8b))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7db60411-c7e2-4f53-b526-ac83f3d19f1c))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8299a6ad-f422-401d-a0a3-5543f3b6c88a))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 21d88dab-d5dd-4c37-a265-814eeadc2f66))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6678ce86-51e9-488c-ba93-2dc3912b0fc8))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 11fcccdf-8b42-4aae-9fba-c463abdc1c51))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8afe3cbe-ae6c-4bff-a3e4-38874fb832c8))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ff1cb4b8-d685-4a42-93b1-73ff90fa5dec))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 28825d3f-5835-4470-bf16-8013b195f825))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp fcb88451-affd-44c1-946f-6f229c0fc973))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 4eb1d180-8faa-48c9-8be2-40df7a12a690))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 3401b702-c6f2-45d5-860e-28c388a7f492))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 2ed8caff-0622-4dd2-950d-39c8edd3cf16))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 18 "P9") (tstamp 3e774361-7a1d-40bd-9465-e6bd116ba74a))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 18 "P9") (tstamp 455c0792-0f32-4991-9ecb-9d434d619059))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp ae85454a-bb44-41fc-add3-1d658d7ed99b))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp ccab44d6-876d-49df-a65c-5fa11cca32e0))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 41eb85ac-8e86-4c40-82eb-a89d29445f71)
(at 62.875 26.375)
(attr through_hole)
(fp_text reference "S3" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp fd3ee0e8-4cdc-4400-8958-6b170c3bfd4c)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 72c43ae9-c472-4aa8-b709-82607a3d60bf)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d2b55419-be06-41d6-80bd-cc6d08c209a6))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6afde926-cd4a-401f-bfaf-2decaa826c2c))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c13c3ade-bea4-426b-9f95-c6d8de396392))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 38158450-5f02-4997-88db-52020b3c1a9a))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 75feb486-894f-4c20-9658-273a739b86ff))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3b546c2f-16d4-4357-afb2-68b2974ccc4a))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 447b5f59-d954-4b86-8122-22d6c8257c84))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 3f39fb2c-a9f0-4b5b-b6a4-ef4687a1e2c6))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 91d0f222-c3d3-4b58-bdcc-2414f901fbde))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7ed5f8a0-c779-4a44-b0f5-4012d58cb950))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ddd3d0a2-8cd0-439b-ae81-ce2872a563d7))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 71412907-45a6-4fb5-ba06-a7474d5a6f78))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp d3e3ed2d-35ce-4059-8540-c71b3e60339c))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 0432cbb7-21cd-4c58-8bcc-5f24cfbb6c17))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 663184c7-22a3-4e0f-83bd-9e36607e5ec3))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 4 "P2") (tstamp 15c9d104-82f6-4229-8bd1-30369831f4d0))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 4 "P2") (tstamp 22c6a128-0e98-4764-85ae-32de100c988f))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 94fe5dfd-68b9-4dc3-959d-ce669a59a016))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp ff659aa5-dc63-445d-a89a-38dc599f8374))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 5d1e4015-e334-433f-8190-55bc53e3f567)
(at 152.875 26.375)
(attr through_hole)
(fp_text reference "S8" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 28305b69-3a89-404d-a3fc-73b0252528f0)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp ba368138-b568-480f-b5dd-931633ee0334)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 34214f32-452d-47c6-940a-261cf9fc2ef7))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6bd97adc-e8f6-4506-9339-552a662afb94))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c500f1cf-63e7-49c7-a114-aae99a0d2867))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5412a482-206c-481b-bf77-e003191c1f35))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b021ff59-152a-4e1b-8bcf-c67ec3629074))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c3ee18a7-1933-4a73-8c06-405fcd81fb5b))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 175350ca-ef05-4d1f-9464-31d86d1044f5))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c90721ed-f3fb-40c1-82dd-58dedbf09a09))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f99af9d8-473d-4979-b9ba-12054e4f7d54))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0a4b101e-a7fb-4eeb-9203-b57e32dbdf1d))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b58b4dbe-9cce-48fe-b88e-5a5422abb9de))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8ea1898a-4d74-4f55-ae33-506b6d385a62))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 5c3d7c76-cb58-4ca2-ba15-9e521f421f72))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 0cce0ca9-1fd2-46d8-af0d-edf2018f00e6))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp e2da7eb6-a89b-433a-ad31-6182d8bf6a74))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 9 "P20") (tstamp 1840c0d5-87d1-4f8a-ab53-5b6969c13097))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 9 "P20") (tstamp 2e1ada3e-8181-4e8f-9203-f2cb8df91082))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 028641fb-1d07-4f7e-bee4-eda0ba9f10dc))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 7940fa58-0e4c-497a-97af-ca7306dcdbce))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 8b4c9dec-fd53-465c-b056-612e690f2a88)
(at 98.875 43.375)
(attr through_hole)
(fp_text reference "S13" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp fe5c7b4c-fa92-4154-b4a1-1e1801afaba1)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 3071092e-16c2-42aa-aa55-f7a651c3c06b)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d43d5ce8-86fc-4a45-a3b7-d18196c56a95))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b09a1daa-9ee9-41f0-b005-bd14d253e9a2))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 948146e0-f16f-4595-a375-981d9aa05b09))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 35f4d90a-e5a0-49ef-a8e1-ba37c6e1789d))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c7f39c7d-8e4c-4119-85ff-e41cbe8123f7))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a7b1d031-1df1-4b51-82fb-79b539bac166))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 886af666-35d8-4b44-a705-d227e2a42f01))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 800f45b1-4a76-4a88-bd13-ead1c65cdd3c))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 472fffd4-dca9-47c8-b810-593eb9c63b4e))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e07b753d-a618-457d-b182-3a53861d06f5))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 4ee0bf94-1662-485c-9203-d40c8209def5))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8fcd4e2c-1151-4d3c-9351-eca08c5cfd9d))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 8a685656-af68-4d2e-b5d6-20bdb1afafca))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp c84aa190-f826-4340-aa34-545c91c5d7df))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 34e3895b-3bfb-4770-a164-075aeaebb172))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 14 "P10") (tstamp d60c51f7-dc0e-4143-a4e4-485ecef35927))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 14 "P10") (tstamp 6bf6f763-5cf2-491a-8402-45bac3489c3b))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 3abd2893-c89d-4bdb-b35f-5deef4d4f21f))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 7a377722-81f4-407b-b38e-acdd89e20fa1))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp 9552c1c3-098c-4531-aa1f-d9b75c6ea305)
(at 80.875 26.375)
(attr through_hole)
(fp_text reference "S4" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 76af2ed2-b634-42af-bb98-0943816ab13a)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp a70ea630-c720-4217-8a56-9f8183c0a9a3)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 636114c7-2579-4e72-82dd-ecb044d2ffc2))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2ac152bd-5d84-495b-a9da-c472818cbd03))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1666070a-748e-4a87-bf07-79e55f84580a))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b5aa379a-e425-4815-a140-6074908bda53))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 0d49f82d-d73f-4835-8b85-10b647526a2a))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b2018155-796b-43d9-9f11-8d0651742568))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b87f649d-140b-4017-a2ea-bfb7cc59bf3d))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c01607e1-42c9-42a0-9ea9-c891357c27ba))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 22eed470-05e7-4c6c-a269-6c118d267324))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp c2e8e18a-d2d2-44a7-b209-7bd021a6e6bc))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 176ed553-5600-404c-8365-eba842e4cddc))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a590bebe-2050-4ff4-a629-8b6bd03e17ab))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 6ae6cef2-90d3-4cb7-a0ba-6b8985a5f395))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp bfecd0c1-fd74-45c9-b407-610aa2033195))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp f0d5f19f-c409-45ca-9be0-d5c280e49cdb))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 5 "P1") (tstamp 65ea2c98-3b59-423d-baf6-11aaf81a313c))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 5 "P1") (tstamp a1042f50-469c-4da6-a832-10a858e26070))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 8a6cffad-4378-450a-ad34-027bb3e2da39))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp d0006833-d9eb-4536-b8ff-91e47f94930b))
)
(footprint "ProMicro" (layer "F.Cu")
(tstamp ab91a791-9ca3-48ec-8224-019884b08db2)
(at 137.492 61.554 180)
(attr through_hole)
(fp_text reference "MCU1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 27b95507-a304-4f7b-b9a3-0e74007b70d1)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 4fd434c6-82a3-4643-9dd5-9cee7f524d73)
)
(fp_text user "P03" (at -1.27 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 0c001cd4-3d4d-484e-a48e-e5c3d2667e92)
)
(fp_text user "P07" (at 8.89 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 115f9631-344a-4b91-9e95-b749c2ad0054)
)
(fp_text user "P21" (at -3.81 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 1587d05c-a5d9-409f-ab49-263b0f30a2ce)
)
(fp_text user "P05" (at 3.81 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 2be60748-1923-461c-8590-13ffea0f4c3d)
)
(fp_text user "P20" (at -1.27 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 34dd92c8-dc9a-47de-b0a3-db37d051a719)
)
(fp_text user "GND" (at -6.35 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 38a8401f-6a32-4597-83a0-529a874cd24b)
)
(fp_text user "P08" (at 11.43 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 4282c492-c2a2-43e8-83ea-3fea01de2e08)
)
(fp_text user "P09" (at 13.97 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 548fa089-4434-4716-88ac-97b9aeeb14ef)
)
(fp_text user "P14" (at 8.89 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 64049e7f-244c-4233-a27e-c2ba91e8e880)
)
(fp_text user "P16" (at 11.43 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 6783554a-692a-4476-b3fc-375331d11c0b)
)
(fp_text user "P06" (at 6.35 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7d490abb-f079-4b73-9591-d5f43521deff)
)
(fp_text user "P02" (at -3.81 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 7f5de7e3-73d2-4d50-84c7-bfb07fd57753)
)
(fp_text user "GND" (at -11.43 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 95e723df-e1aa-4ac4-a038-71867891c9dc)
)
(fp_text user "P19" (at 1.27 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp a0e955f2-b882-42e1-84dc-de079b870b55)
)
(fp_text user "P18" (at 3.81 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c20f228d-7e32-4241-88b1-05e9cc409b8d)
)
(fp_text user "P00" (at -11.43 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c71064f3-d258-4ccf-95e7-6bf2dbcbfec2)
)
(fp_text user "RST" (at -8.89 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c84b81a6-2397-45e9-9d75-380738df4976)
)
(fp_text user "P04" (at 1.27 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp c89e6aa7-ac3c-486b-a675-e4616902c8cf)
)
(fp_text user "P10" (at 13.97 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp cc7b2fcf-91fa-431c-9dc4-9f95241663d4)
)
(fp_text user "VCC" (at -6.35 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp d7691e50-40c8-4a96-a693-4a580e8e3298)
)
(fp_text user "P01" (at -13.97 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e2d20d50-2767-4f74-a724-3b6688ad13b7)
)
(fp_text user "RAW" (at -13.97 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp e6af3713-08c4-4eda-a099-0c6adfc52829)
)
(fp_text user "GND" (at -8.89 -4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f7f492e5-161d-4892-b2c3-c81a9ffcc79d)
)
(fp_text user "P15" (at 6.35 4.8 90) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp fa7104fa-dd6e-4707-aed0-8677b0ad4c97)
)
(fp_line (start -17.78 -8.89) (end -17.78 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 193af241-8f14-4ffa-aa85-a0296cb03069))
(fp_line (start -17.78 8.89) (end 15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 68dca167-48f2-420b-a817-ba0fa21a6cfa))
(fp_line (start -15.24 6.35) (end -15.24 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d9d645ab-8e83-4558-bae0-7f71fae3abd2))
(fp_line (start -15.24 6.35) (end -12.7 6.35)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6b1de4a1-414c-45ff-a8ef-c1dbab0a2628))
(fp_line (start -12.7 6.35) (end -12.7 8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 27cfb888-4713-404d-8cbe-fc3869d3bbc0))
(fp_line (start 15.24 -8.89) (end -17.78 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ff454a92-a77a-450b-9e0f-1d4b57335e30))
(fp_line (start 15.24 8.89) (end 15.24 -8.89)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f12f0f21-95d3-4381-9bc4-6f1ccf870e9f))
(fp_line (start -19.304 -3.81) (end -14.224 -3.81)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 24738edd-800b-4cd8-88c0-6e0fe8846ddd))
(fp_line (start -19.304 3.81) (end -19.304 -3.81)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 77460ee1-c1c9-403c-898b-a692365e5944))
(fp_line (start -14.224 -3.81) (end -14.224 3.81)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 60d7f689-6abc-4603-a70e-1a11db1cf5c6))
(fp_line (start -14.224 3.81) (end -19.304 3.81)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b31122a6-15f3-4b8c-a470-111edb8c8740))
(pad "1" thru_hole rect (at -13.97 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 19 "RAW") (tstamp 8c19c5d2-be7e-4cfb-8ada-f537582dad3d))
(pad "2" thru_hole circle (at -11.43 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 2 "GND") (tstamp 387bed30-5bf7-4f2d-90ec-9835f48e3247))
(pad "3" thru_hole circle (at -8.89 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 20 "RST") (tstamp 2ae7b939-f58e-4bfb-ba10-0b09a6c53f35))
(pad "4" thru_hole circle (at -6.35 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 21 "VCC") (tstamp b2a492a8-f46e-4a2e-9842-602524524631))
(pad "5" thru_hole circle (at -3.81 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 17 "P21") (tstamp 130590b5-e1bc-4f15-8588-f7dc5356a137))
(pad "6" thru_hole circle (at -1.27 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 9 "P20") (tstamp a44cfad0-f06f-4415-a32f-d5193678b147))
(pad "7" thru_hole circle (at 1.27 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 8 "P19") (tstamp ba0238d3-0627-4e64-a092-e96e523e00a5))
(pad "8" thru_hole circle (at 3.81 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 16 "P18") (tstamp 6eac3fc9-2551-45ab-9144-92cdf60f4100))
(pad "9" thru_hole circle (at 6.35 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 7 "P15") (tstamp 28e098e6-6c23-4b4f-9b34-1087cce4f7bd))
(pad "10" thru_hole circle (at 8.89 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 15 "P14") (tstamp 84954969-106f-4c64-aa7b-701bd5b068f3))
(pad "11" thru_hole circle (at 11.43 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 6 "P16") (tstamp dfb797a4-55dc-44f8-b1d6-af8065400e46))
(pad "12" thru_hole circle (at 13.97 7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 14 "P10") (tstamp b816b9c1-ddf6-471f-83ac-97c80096dfa3))
(pad "13" thru_hole circle (at -13.97 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 5 "P1") (tstamp 477cd2b9-e23b-4af4-bb83-dd863b973235))
(pad "14" thru_hole circle (at -11.43 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 13 "P0") (tstamp 97eeaa4c-8c0d-4398-a7b0-4346e47bc991))
(pad "15" thru_hole circle (at -8.89 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 2 "GND") (tstamp a5b1c26e-e5d7-495b-abb3-79d8990c8d51))
(pad "16" thru_hole circle (at -6.35 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 2 "GND") (tstamp f3ef221b-9935-4dc4-a959-7c574d209eca))
(pad "17" thru_hole circle (at -3.81 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 4 "P2") (tstamp 51886b16-6ce3-4b7c-948d-fdb7b679f356))
(pad "18" thru_hole circle (at -1.27 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 12 "P3") (tstamp a35be66c-229e-4aa2-8869-59e984f88eef))
(pad "19" thru_hole circle (at 1.27 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 3 "P4") (tstamp 1f0b85dc-405f-4dee-a131-ace3e6d88ef0))
(pad "20" thru_hole circle (at 3.81 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 11 "P5") (tstamp 34cb1901-d1f1-4129-bb7b-2ce3af8a9664))
(pad "21" thru_hole circle (at 6.35 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 1 "P6") (tstamp 3bd52c80-2a6f-425c-9925-2bbf54a7f14b))
(pad "22" thru_hole circle (at 8.89 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 10 "P7") (tstamp 3e10a189-0321-484a-a7be-cfe1c2a92a1b))
(pad "23" thru_hole circle (at 11.43 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 22 "P8") (tstamp 779914c8-8140-4410-ac7c-514009d5147e))
(pad "24" thru_hole circle (at 13.97 -7.62 180) (size 1.7526 1.7526) (drill 1.0922) (layers "*.Cu" "*.SilkS" "*.Mask")
(net 18 "P9") (tstamp db63e6f3-f0c1-490b-ad2c-424715d3391a))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp d174651f-3de1-48fc-aff4-e2a7aebc06c1)
(at 26.875 26.375)
(attr through_hole)
(fp_text reference "S1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 73483dc7-2340-48eb-a26d-a4499933c09c)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 1bef8d07-0344-4c8e-822d-58dc7cc964d0)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f0db0a20-bd9e-41c0-862a-3099a5cc0fdb))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f2ea49b3-2fba-4a4c-aabc-cdb3c16aa1c4))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ab1fc83c-2edc-4dad-8087-af0d5cda2e97))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b887480c-9774-456c-a4f5-65bb46076227))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6a4da907-5217-4811-9c99-82be84ef864c))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 8032fd27-2379-417a-8915-7a3c35b23d29))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d2737696-994f-4b2d-9826-5d2177559be0))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 45fc8098-2a3a-4374-9170-7fadfad82cb9))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 6c3e0796-6073-454d-b386-2befdef3f4df))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 28f14bba-7c5f-486a-b0be-3310ab592028))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 99d35409-21fc-4272-85d5-42e5e4da92ab))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 378ef74e-e299-4147-8bd2-14686eade39a))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 7a49a1e9-85f7-4236-8dc9-6828ceb6340b))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp ad901e62-f41b-45e6-85ca-8837a8bfadc9))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp bbb9e577-0aab-4e92-98d9-f04749b6a703))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 1 "P6") (tstamp 17786a7e-a826-4055-83f2-7f93081e2566))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 1 "P6") (tstamp 04fbe4a5-8530-4ca4-89c5-db6e6d6c115d))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 1c764954-2067-4e29-937e-e5e2c34abde8))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 9808a857-738e-44a1-89e5-d3e46a55cb27))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp d4ee7a87-8dc2-4aea-8f57-5ab28f568e38)
(at 116.875 26.375)
(attr through_hole)
(fp_text reference "S6" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 064da941-86e7-4b2b-8417-b2c4ff383a8c)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp de7b40e1-ebe8-47bf-9785-73c9a6355db8)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 2788ebcc-8a46-4ab9-9ef5-3bef41a4e92e))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1b3813aa-fa7b-4de4-8ef8-12ecd806afa2))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1769b7c3-c1e5-437e-b778-c52584744ab8))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b4cf9f51-8462-401f-a63b-4f656284ccaf))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 369f9b7c-58a0-4f94-b5db-df0be1496f5c))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp e51f46d6-b16e-437a-b589-9ae3f84287c6))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp d6e16e3c-1e9d-4338-b426-746c2e60b680))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp f4870306-4fb8-4ce7-b98a-c9aefe72444e))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 5a2d1df6-0fd5-4da2-b692-be28ef5353a6))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp bbf53156-18de-49eb-b17e-455c73a59b26))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp b58d9409-cad9-45e7-b133-b6a5f9cfab71))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7560b6ed-c894-4bc9-9380-a5e3c2780c64))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp a509d218-eb17-4c35-af46-1d8a974633b2))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 6c4aca45-8655-4c0c-b012-97134d7d7a49))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 40cd2340-ce3f-49a9-9b4d-5200bdfdd729))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 7 "P15") (tstamp 5cb0ccfb-2654-4b81-a1b6-4ade32f9d559))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 7 "P15") (tstamp 8517046f-7750-4831-ae7e-be79bf0ed36b))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 24615c8b-3851-4cf1-9c87-6ecd90420220))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp 59261cdc-ffd6-4047-aafa-d230d33a6eb5))
)
(footprint "PG1350" (layer "F.Cu")
(tstamp e16894f9-8325-4ddc-92d8-34721a714909)
(at 134.875 43.375)
(attr through_hole)
(fp_text reference "S15" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp 6c9f49a2-a8a3-4f02-9db3-6b3d2594cdab)
)
(fp_text value "" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1.27 1.27) (thickness 0.15)))
(tstamp eda673e5-98ab-407a-ab99-061244db5a73)
)
(fp_line (start -9 -8.5) (end 9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 11700183-b692-4c45-a6d1-4f21f07e431f))
(fp_line (start -9 8.5) (end -9 -8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 78a5c9a3-a484-423c-8b0a-5123ce491f5f))
(fp_line (start -7 -6) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 648b7302-2734-4510-a9d6-2acc648c6a31))
(fp_line (start -7 7) (end -7 6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a5a445d4-78dc-464a-9970-c634292131f7))
(fp_line (start -7 7) (end -6 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ca2fccda-cbf4-4f33-9b42-75c199ea060f))
(fp_line (start -6 -7) (end -7 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 150d4321-8ea1-4f52-a90e-96f841dac526))
(fp_line (start 6 7) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 7070db90-44aa-465c-817f-019fe393f3dd))
(fp_line (start 7 -7) (end 6 -7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ac4a1d8e-1bb8-4edf-ba54-e52e59634ac8))
(fp_line (start 7 -7) (end 7 -6)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp a0828a60-2df0-481e-af87-8f48108d482b))
(fp_line (start 7 6) (end 7 7)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp 1dcdc127-61f5-4f0b-b444-017331e47f71))
(fp_line (start 9 -8.5) (end 9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp fd9b2ce0-87a4-41a0-a1f4-fd8ea5088b6f))
(fp_line (start 9 8.5) (end -9 8.5)
(stroke (width 0.15) (type solid)) (layer "Dwgs.User") (tstamp ddfb76bb-5ab6-4d48-88d1-f021ded4359b))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 492a8516-e3fe-49fc-83e0-fb3fc50271ac))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers "*.Cu" "*.Mask") (tstamp 1071d52b-30bd-47a7-b13b-233154236a3a))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers "*.Cu" "*.Mask") (tstamp 7c2d4dce-4f91-4bae-9c0d-208c570c7e74))
(pad "1" thru_hole circle (at -5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 16 "P18") (tstamp a7d5e95d-4f67-4342-a996-9d1a19b0b9ce))
(pad "1" thru_hole circle (at 5 -3.8) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 16 "P18") (tstamp b9a5013e-7145-4102-b1db-71b657a8a049))
(pad "2" thru_hole circle (at 0 -5.9) (size 2.032 2.032) (drill 1.27) (layers "*.Cu" "*.Mask")
(net 2 "GND") (tstamp c5b38171-2577-4988-a085-cc5b61f93148))