aboutsummaryrefslogtreecommitdiff
path: root/docs/hardware/hardware.kicad_pcb
blob: 51fe573de1e49690c16849caa9c6d4c577ba00d5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
(kicad_pcb (version 20221018) (generator pcbnew)

  (general
    (thickness 1.6)
  )

  (paper "A4")
  (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)
    (50 "User.1" user)
    (51 "User.2" user)
    (52 "User.3" user)
    (53 "User.4" user)
    (54 "User.5" user)
    (55 "User.6" user)
    (56 "User.7" user)
    (57 "User.8" user)
    (58 "User.9" user)
  )

  (setup
    (pad_to_mask_clearance 0)
    (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 1)
      (scaleselection 1)
      (outputdirectory "")
    )
  )

  (net 0 "")
  (net 1 "unconnected-(A1-NC-Pad1)")
  (net 2 "unconnected-(A1-IOREF-Pad2)")
  (net 3 "unconnected-(A1-~{RESET}-Pad3)")
  (net 4 "VCC")
  (net 5 "unconnected-(A1-+5V-Pad5)")
  (net 6 "GND")
  (net 7 "unconnected-(A1-VIN-Pad8)")
  (net 8 "unconnected-(A1-D0{slash}RX-Pad15)")
  (net 9 "PPU_HBLANK")
  (net 10 "SPI_SR")
  (net 11 "PPU_VBLANK")
  (net 12 "unconnected-(A1-D10-Pad25)")
  (net 13 "SPI_MOSI")
  (net 14 "unconnected-(A1-D12-Pad27)")
  (net 15 "SPI_CLK")
  (net 16 "unconnected-(A1-AREF-Pad30)")
  (net 17 "unconnected-(A1-SDA{slash}A4-Pad31)")
  (net 18 "unconnected-(A1-SCL{slash}A5-Pad32)")
  (net 19 "Net-(C1-Pad1)")
  (net 20 "unconnected-(J1-Pin_4-Pad4)")
  (net 21 "Net-(J1-Pin_12)")
  (net 22 "unconnected-(J1-Pin_9-Pad9)")
  (net 23 "unconnected-(J1-Pin_10-Pad10)")
  (net 24 "unconnected-(SW7-C-Pad3)")
  (net 25 "unconnected-(J6-Pin_1-Pad1)")
  (net 26 "unconnected-(J6-Pin_2-Pad2)")
  (net 27 "unconnected-(J6-Pin_3-Pad3)")
  (net 28 "unconnected-(J6-Pin_4-Pad4)")
  (net 29 "unconnected-(J6-Pin_6-Pad6)")
  (net 30 "Net-(J6-Pin_7)")
  (net 31 "unconnected-(J6-Pin_8-Pad8)")
  (net 32 "unconnected-(J6-Pin_9-Pad9)")
  (net 33 "unconnected-(J6-Pin_10-Pad10)")
  (net 34 "unconnected-(J6-Pin_12-Pad12)")
  (net 35 "Net-(J3-UP)")
  (net 36 "Net-(J3-DOWN)")
  (net 37 "Net-(J3-LEFT)")
  (net 38 "Net-(J3-VCC)")
  (net 39 "Net-(J3-RIGHT)")
  (net 40 "Net-(J3-PRIMARY)")
  (net 41 "Net-(J3-SECONDARY)")
  (net 42 "GP_P1_BUT_2")
  (net 43 "GP_P1_BUT_1")
  (net 44 "GP_P1_RIGHT")
  (net 45 "GP_P1_LEFT")
  (net 46 "GP_P1_DOWN")
  (net 47 "GP_P1_UP")
  (net 48 "GP_P2_UP")
  (net 49 "GP_P2_DOWN")
  (net 50 "GP_P2_LEFT")
  (net 51 "GP_P2_RIGHT")
  (net 52 "GP_P2_BUT_1")
  (net 53 "GP_P2_BUT_2")

  (footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (layer "F.Cu")
    (tstamp 0dee130f-c83f-4dd5-8dbf-6cf84c47a719)
    (at 38.1 35.56 -90)
    (descr "Through hole straight pin header, 2x06, 2.54mm pitch, double rows")
    (tags "Through hole pin header THT 2x06 2.54mm double row")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Generic connector, double row, 02x06, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)")
    (property "ki_keywords" "connector")
    (path "/62426352-bbab-485a-87e4-f269b920c8e7")
    (attr through_hole)
    (fp_text reference "J1" (at 1.27 -2.33 90) (layer "F.SilkS") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 13d15c6d-afc9-4104-a6d7-04eece055fd9)
    )
    (fp_text value "BASYS_JA" (at 1.27 15.03 90) (layer "F.Fab") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 89ca68c2-26f9-4f43-897c-827ca0412fc6)
    )
    (fp_line (start -1.33 -1.33) (end 0 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84c2a983-1118-48bb-a34c-0acfbd962bbe))
    (fp_line (start -1.33 0) (end -1.33 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24b6c2e4-527b-4cad-92ca-c1a3eecfd0d4))
    (fp_line (start -1.33 1.27) (end -1.33 14.03)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03e11702-bcd1-4ad7-a155-3ad03af39fe6))
    (fp_line (start -1.33 1.27) (end 1.27 1.27)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1488779a-9f2a-41b9-9f9a-41a3875d6f8c))
    (fp_line (start -1.33 14.03) (end 3.87 14.03)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6f15833-165f-4d8a-acd9-cc6dfff04f2c))
    (fp_line (start 1.27 -1.33) (end 3.87 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04fc5066-5be2-4a29-8a24-5b5b3fd9efe9))
    (fp_line (start 1.27 1.27) (end 1.27 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b0dad7bc-a20d-4a15-8a68-2e258f18ea70))
    (fp_line (start 3.87 -1.33) (end 3.87 14.03)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 788b20bf-d751-47c4-8958-a545d14e776d))
    (fp_line (start -1.8 -1.8) (end -1.8 14.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ee54c25-a8cf-40b0-a5bc-a3d8911b6b83))
    (fp_line (start -1.8 14.5) (end 4.35 14.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3d42711-8bb3-488d-a838-a3be4e4d64b3))
    (fp_line (start 4.35 -1.8) (end -1.8 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0796dea9-b1fe-45f6-96c6-94d282e8a569))
    (fp_line (start 4.35 14.5) (end 4.35 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4dd0e678-d643-4b72-8f9f-df8cd2571a97))
    (fp_line (start -1.27 0) (end 0 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ca47ccd-204c-4dde-bab7-fab248e5dd78))
    (fp_line (start -1.27 13.97) (end -1.27 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 089e612c-1b05-4c56-82f8-1fb4424c9136))
    (fp_line (start 0 -1.27) (end 3.81 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bfe1f2ed-1eb4-4cb5-b7d3-288cb592ea27))
    (fp_line (start 3.81 -1.27) (end 3.81 13.97)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2135fca9-7da8-4db7-9183-592cd8c83924))
    (fp_line (start 3.81 13.97) (end -1.27 13.97)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b289e20d-8174-46f7-a359-034f5c41fe9a))
    (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 11 "PPU_VBLANK") (pinfunction "Pin_1") (pintype "passive") (tstamp dc81b7c7-7358-4d2e-b645-3d258ae2a739))
    (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 13 "SPI_MOSI") (pinfunction "Pin_2") (pintype "passive") (tstamp b70206b6-2385-4553-b7d3-8ed64210e686))
    (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 15 "SPI_CLK") (pinfunction "Pin_3") (pintype "passive") (tstamp 4489259d-65ff-47c8-9af3-885b08309e9d))
    (pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 20 "unconnected-(J1-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp fe2f5ff6-1cc0-4fb2-bccb-c279f62edf51))
    (pad "5" thru_hole oval (at 0 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp f849aae9-cc76-407b-aa40-4ff58ffd8bc4))
    (pad "6" thru_hole oval (at 0 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 21 "Net-(J1-Pin_12)") (pinfunction "Pin_6") (pintype "passive") (tstamp 47a457ab-d3ac-4a12-9149-b9fde5498595))
    (pad "7" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 10 "SPI_SR") (pinfunction "Pin_7") (pintype "passive") (tstamp 3922e13d-29bd-40ff-977a-3e3b9e405847))
    (pad "8" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 9 "PPU_HBLANK") (pinfunction "Pin_8") (pintype "passive") (tstamp d0387654-ed3b-4f12-ac37-4701154aea75))
    (pad "9" thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 22 "unconnected-(J1-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp 796b57e5-780e-4255-aa9c-5ef126244cf3))
    (pad "10" thru_hole oval (at 2.54 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 23 "unconnected-(J1-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp d0cc7185-8631-4017-965e-66964a0da495))
    (pad "11" thru_hole oval (at 2.54 10.16 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp b0412a41-1ce9-4f88-a839-61954133e701))
    (pad "12" thru_hole oval (at 2.54 12.7 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 21 "Net-(J1-Pin_12)") (pinfunction "Pin_12") (pintype "passive") (tstamp 05d78506-4ed3-4dc9-8817-000f3de10ce9))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
    (tstamp 4dcb4d42-571b-4635-86a2-8569bdc399da)
    (at 79.86 45.72)
    (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
    (tags "tact sw push 6mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Momentary Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/4e8ff737-e950-459a-8bae-7fb76a943341")
    (attr through_hole)
    (fp_text reference "SW1" (at 3.25 -2) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6446e1bc-3c9a-4de9-ad62-1ffbe1616533)
    )
    (fp_text value "LEFT" (at 3.75 6.7) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b5f60ad8-33a6-4fcd-9cf1-9eb1b8551918)
    )
    (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 25a6de80-3698-47a3-ab8e-1f2e72cd99d0)
    )
    (fp_line (start -0.25 1.5) (end -0.25 3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9fc34a74-3409-4717-ae2a-53c1638e2cd8))
    (fp_line (start 1 5.5) (end 5.5 5.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6edc056c-2108-41b5-8bcd-c692ccf3b617))
    (fp_line (start 5.5 -1) (end 1 -1)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bfce32ab-640f-42be-aa24-995dfc17e23f))
    (fp_line (start 6.75 3) (end 6.75 1.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a86c8625-f9f8-4530-a411-00b61686b01f))
    (fp_line (start -1.5 -1.5) (end -1.25 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 704d493a-7b38-4234-9e3b-41ac7e5fc735))
    (fp_line (start -1.5 -1.25) (end -1.5 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp af48eff8-92a3-4c21-9b19-8032216e94d5))
    (fp_line (start -1.5 5.75) (end -1.5 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ef5cc15e-9929-4531-889a-c319fdc3abc9))
    (fp_line (start -1.5 5.75) (end -1.5 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f03ffd0e-d841-4fb0-a99f-61960b078c3f))
    (fp_line (start -1.5 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 61acba94-3127-4ae6-87bf-95231ad0da1c))
    (fp_line (start -1.25 -1.5) (end 7.75 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c2efcb59-9c24-42a3-97f3-85f5ed0d4f98))
    (fp_line (start 7.75 -1.5) (end 8 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e090dfe-5c68-4f8c-af2a-ff01bbeddeb4))
    (fp_line (start 7.75 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 85fd41ce-b7d5-4083-a537-6c629f7aa9a9))
    (fp_line (start 7.75 6) (end 8 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 078d649c-651e-4b64-8fcc-869559d31501))
    (fp_line (start 8 -1.5) (end 8 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ae95551-2cc5-474a-998b-1904d7bbd2c0))
    (fp_line (start 8 -1.25) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d9c2e3a-542b-40d4-9702-c49b004d171f))
    (fp_line (start 8 6) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d16bc0c1-4ce1-416d-8477-45ea37cf2e2a))
    (fp_line (start 0.25 -0.75) (end 3.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 34deab34-a2f5-4567-9c6e-ee750366baad))
    (fp_line (start 0.25 5.25) (end 0.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6c1414a-91f5-441c-be4b-6114eb5f1139))
    (fp_line (start 3.25 -0.75) (end 6.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6014f25f-2fcc-4d2a-b69d-cbab6e9221ec))
    (fp_line (start 6.25 -0.75) (end 6.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fd2115cb-8be6-4ab1-aaf8-0cc4027d6d16))
    (fp_line (start 6.25 5.25) (end 0.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 10935063-629a-48d0-aa32-85d4c5b52ac7))
    (fp_circle (center 3.25 2.25) (end 1.25 2.5)
      (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp be845cb4-6f62-44fb-a0cd-4eba99b06d70))
    (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 35 "Net-(J3-UP)") (pinfunction "A") (pintype "passive") (tstamp e79429a0-03ff-4fbd-bc03-16f09a5a29ef))
    (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 35 "Net-(J3-UP)") (pinfunction "A") (pintype "passive") (tstamp 3354bd21-5580-4709-a08e-5bd8be58dcd6))
    (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp b54c77fb-6188-469d-af22-45a601f3fc41))
    (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp 1220fdd0-f9ad-4142-a585-a27a31f63080))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (layer "F.Cu")
    (tstamp 5a570195-9e23-42f8-8068-b04b37ddd527)
    (at 58.42 60.96 180)
    (descr "Through hole straight pin header, 2x04, 2.54mm pitch, double rows")
    (tags "Through hole pin header THT 2x04 2.54mm double row")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Generic connector, double row, 02x04, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)")
    (property "ki_keywords" "connector")
    (path "/d5388d0e-7171-4da4-bd98-7bc38ff2fceb")
    (attr through_hole)
    (fp_text reference "J8" (at 1.27 -2.33) (layer "F.SilkS") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1bd61853-4d94-49a1-afbf-b3236e031e7a)
    )
    (fp_text value "GAMEPAD_2" (at 1.27 9.95) (layer "F.Fab") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d9fe6cc6-94ce-470f-b66a-417d0a738adf)
    )
    (fp_line (start -1.33 -1.33) (end 0 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d2f0fa6-d11a-4360-a19e-47cf6657054f))
    (fp_line (start -1.33 0) (end -1.33 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f6e0170-8325-4020-b882-0d26642a1768))
    (fp_line (start -1.33 1.27) (end -1.33 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0b1c244b-3221-4c4a-bd33-9ed40f6f1fe0))
    (fp_line (start -1.33 1.27) (end 1.27 1.27)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5835d7ac-9c1b-46e6-9ec1-ef9e58b7f62a))
    (fp_line (start -1.33 8.95) (end 3.87 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72e65e95-439e-4216-96ec-709eca1fe3cf))
    (fp_line (start 1.27 -1.33) (end 3.87 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da1845f8-9f22-4ee7-8e87-a2e60f0e12ee))
    (fp_line (start 1.27 1.27) (end 1.27 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7b064d35-48ef-49a9-a8dd-e77b6a87ad88))
    (fp_line (start 3.87 -1.33) (end 3.87 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88603853-229a-4189-85c1-0678281a5c86))
    (fp_line (start -1.8 -1.8) (end -1.8 9.4)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9979cb6-52e7-4883-a268-83a1c3b1fe5b))
    (fp_line (start -1.8 9.4) (end 4.35 9.4)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c174688d-30be-46b7-8f09-23b7eaefcce0))
    (fp_line (start 4.35 -1.8) (end -1.8 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 28b03cb6-3348-4f62-adfc-827737d65c4f))
    (fp_line (start 4.35 9.4) (end 4.35 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f68c1a76-5fa0-4c10-842e-df3fbf462f5b))
    (fp_line (start -1.27 0) (end 0 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c7b066b-215a-41be-b9f6-d5e56f3936c7))
    (fp_line (start -1.27 8.89) (end -1.27 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 079691bb-7e60-4678-9810-308162199774))
    (fp_line (start 0 -1.27) (end 3.81 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aa53eb10-eb6b-4fb6-9115-797177cfe281))
    (fp_line (start 3.81 -1.27) (end 3.81 8.89)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ebb3527a-7f41-44a4-80b1-e310cb3604ef))
    (fp_line (start 3.81 8.89) (end -1.27 8.89)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f133d85-a442-4dbd-b5a9-7e79f1908ad5))
    (pad "1" thru_hole circle (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 50 "GP_P2_LEFT") (pinfunction "UP") (pintype "output") (tstamp 4f5ff734-0e36-4d01-9bda-312b02796687))
    (pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 48 "GP_P2_UP") (pinfunction "DOWN") (pintype "output") (tstamp 0f80334b-054f-401f-b17b-395e50fb8b19))
    (pad "3" thru_hole oval (at 0 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 51 "GP_P2_RIGHT") (pinfunction "LEFT") (pintype "output") (tstamp b4836e5a-514b-4e4d-b39b-4a03a8b7e5d6))
    (pad "4" thru_hole oval (at 0 7.62 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 4 "VCC") (pinfunction "VCC") (pintype "input") (tstamp 62e62b5c-e574-4b91-85c3-d318bd9dc9f8))
    (pad "5" thru_hole oval (at 2.54 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 52 "GP_P2_BUT_1") (pinfunction "RIGHT") (pintype "output") (tstamp 85970322-004d-48ee-bb29-30dc9016ed7d))
    (pad "6" thru_hole oval (at 2.54 2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 53 "GP_P2_BUT_2") (pinfunction "PRIMARY") (pintype "output") (tstamp a6f2a67a-eb8f-40ad-9893-53b870c4d7eb))
    (pad "7" thru_hole oval (at 2.54 5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 49 "GP_P2_DOWN") (pinfunction "SECONDARY") (pintype "output") (tstamp e126903b-65ee-4a65-a898-694d9be2cca7))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x04_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
    (tstamp 5e905506-7eb2-4d73-b0c8-84192488edbd)
    (at 137.16 45.72)
    (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
    (tags "tact sw push 6mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Momentary Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/1425e690-937f-4e6f-9aa7-93a468f68098")
    (attr through_hole)
    (fp_text reference "SW4" (at 3.25 -2) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 30bdb751-fcf8-4a34-886c-0bfd9c1365e7)
    )
    (fp_text value "PRIMARY" (at 3.75 6.7) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 08f93b0d-e92f-4167-8cbe-2e72e7099031)
    )
    (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 72bf7c8b-df29-4add-90ca-48d5d29966c2)
    )
    (fp_line (start -0.25 1.5) (end -0.25 3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c326e8b0-7c86-482d-ba01-8e97197b8263))
    (fp_line (start 1 5.5) (end 5.5 5.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cd78f4d-1e62-4537-b088-1a4d0af17e16))
    (fp_line (start 5.5 -1) (end 1 -1)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0eb8238a-de44-4c48-a3d3-3dccf63ea083))
    (fp_line (start 6.75 3) (end 6.75 1.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b19b0ebb-a4cd-4758-a876-58caeba43b89))
    (fp_line (start -1.5 -1.5) (end -1.25 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 162c32b8-d57c-4620-9842-313409da635f))
    (fp_line (start -1.5 -1.25) (end -1.5 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9b441aa-ff4f-47a1-aad2-dd18bf36a42a))
    (fp_line (start -1.5 5.75) (end -1.5 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49408f97-d2dc-473e-aeff-978cebbe06af))
    (fp_line (start -1.5 5.75) (end -1.5 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 84bf437b-7fe0-4555-b0dd-8b091c5b75cf))
    (fp_line (start -1.5 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0fa6ed3c-2688-4967-84cd-5b1d4e050ee4))
    (fp_line (start -1.25 -1.5) (end 7.75 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d47a6a17-858c-42e9-b950-1592dd47ca17))
    (fp_line (start 7.75 -1.5) (end 8 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a5e1523e-a242-4444-8911-8806bc5ba9fc))
    (fp_line (start 7.75 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 04499f0f-6cd5-48c2-afda-78e2840c67d7))
    (fp_line (start 7.75 6) (end 8 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b6aa09a3-7edc-492b-961c-da5311846db1))
    (fp_line (start 8 -1.5) (end 8 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0d15bfb2-e7b9-40e2-9d7c-aaa31a6a962e))
    (fp_line (start 8 -1.25) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68abd59d-550a-46a7-a036-6fc22d25df56))
    (fp_line (start 8 6) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1f95dc92-0f3a-4d58-890d-81e143d438c6))
    (fp_line (start 0.25 -0.75) (end 3.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 153b68a4-33cb-4e00-8162-98c759c835fe))
    (fp_line (start 0.25 5.25) (end 0.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3af5ef8f-4584-494d-88ae-07bda52908d1))
    (fp_line (start 3.25 -0.75) (end 6.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bf531787-8b9e-43dc-a8fb-fee3679b2a3a))
    (fp_line (start 6.25 -0.75) (end 6.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2fa26b2-2cf3-484c-9d92-64e9636c9881))
    (fp_line (start 6.25 5.25) (end 0.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4eb2101-2c9f-47d2-b712-2cda38b856a4))
    (fp_circle (center 3.25 2.25) (end 1.25 2.5)
      (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 33d14fe2-b237-4e84-9691-de3625c41ec3))
    (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 39 "Net-(J3-RIGHT)") (pinfunction "A") (pintype "passive") (tstamp 8d2f57a7-ec64-4095-88e2-7a1be20b7322))
    (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 39 "Net-(J3-RIGHT)") (pinfunction "A") (pintype "passive") (tstamp ba12e5ef-6417-44dd-bb85-9810199d34a2))
    (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp 37f4dc8c-e361-4844-9d3e-47e954bee053))
    (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp e2487c22-5eff-464d-ba26-982b92046408))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_Audio:Jack_3.5mm_CUI_SJ1-3523N_Horizontal" (layer "F.Cu")
    (tstamp 6c070f5c-b955-444a-a8e5-079ec1dd42c0)
    (at 109.26 83.74 90)
    (descr "TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf")
    (tags "TRS audio jack stereo horizontal")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Audio Jack, 2 Poles (Mono / TS)")
    (property "ki_keywords" "audio jack receptacle mono phone headphone TS connector")
    (path "/3e67b72a-3d20-484f-a9eb-aef187654a16")
    (attr through_hole exclude_from_pos_files)
    (fp_text reference "J2" (at 0 -8.8 90) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 43df4791-baad-4be7-8f50-cb8aea6b3ff3)
    )
    (fp_text value "AudioJack2" (at 0 -10 90) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a3cab8b4-3fff-45b9-b5c2-6d6431470308)
    )
    (fp_text user "PCB edge" (at 0 3.65 90 unlocked) (layer "Dwgs.User")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 37589f89-8a2f-4360-ac6e-ceb59fd7e993)
    )
    (fp_text user "${REFERENCE}" (at 0 -1.5 90) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b94e7640-6120-43fb-96c8-2834ab5c4e44)
    )
    (fp_line (start -6 -7.7) (end 6 -7.7)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70df9aca-9800-471a-8c17-d7e96fc63d99))
    (fp_line (start -6 3.3) (end -6 -7.7)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e15b8a5c-3280-451d-8eb2-7a89499d2e91))
    (fp_line (start -4.5 3.3) (end -6 3.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d431ebc3-aa04-46fc-8152-45d3318550cc))
    (fp_line (start -4.5 4.5) (end -4.5 3.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21084160-e87a-40af-a0fa-dfc1721669a6))
    (fp_line (start -3 4.5) (end -4.5 4.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ba194295-7cb2-4719-b504-fdedcf2272bf))
    (fp_line (start -3 6.3) (end -3 4.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f1fbc63-07e8-414e-b6f2-6fa65069f633))
    (fp_line (start -2 3.3) (end -2 6.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5b06464-977e-483d-9390-75857ca2c999))
    (fp_line (start 2 3.3) (end -2 3.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7bcec255-724e-4458-b529-fca71ae4be8f))
    (fp_line (start 2 6.3) (end 2 3.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 317a9bbd-4116-4314-b231-47457748deaf))
    (fp_line (start 3 4.5) (end 3 6.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 985aac0b-df56-4b8f-a711-0c7f53e41a2d))
    (fp_line (start 3 6.3) (end -3 6.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66b452aa-faf4-49db-8346-d05d75954fea))
    (fp_line (start 4.5 3.3) (end 4.5 4.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9fc0137-d6b1-4695-a2b4-347e53605dd1))
    (fp_line (start 4.5 4.5) (end 3 4.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 93283d33-f6c6-457f-adf5-d2dbebb9a8be))
    (fp_line (start 6 -7.7) (end 6 3.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ac2cbc5-6e4c-41f5-8d37-38a549ab0450))
    (fp_line (start 6 3.3) (end 4.5 3.3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b458ad11-b371-4bdd-98f4-7398c037a1f9))
    (fp_line (start -2.2 3.5) (end -2.2 4.5)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp c7792ea1-370a-40c0-9768-e013dec1f07b))
    (fp_line (start -2.2 4.5) (end -6.5 4.5)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 37ede811-f033-4af1-91b8-8764122fd0b4))
    (fp_line (start 1.8 3.1) (end -1.8 3.1)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 8c20e4ea-4169-4118-a622-f12d0905f110))
    (fp_line (start 2.2 3.5) (end 2.2 4.5)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 8e1ab403-b573-4f25-a4ca-806965d8eee6))
    (fp_line (start 2.2 4.5) (end 6.5 4.5)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 16d69279-4c15-4b9a-bd42-fc40c691af85))
    (fp_arc (start -2.2 3.5) (mid -2.082842 3.217158) (end -1.8 3.1)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp 8c23c50f-912b-4ae7-a2e2-065db4a0ce08))
    (fp_arc (start 1.8 3.1) (mid 2.082843 3.217157) (end 2.2 3.5)
      (stroke (width 0.12) (type solid)) (layer "Edge.Cuts") (tstamp b9143a03-d621-48fe-b9e6-d3fb55d64018))
    (fp_line (start -6.25 -7.95) (end -6.25 4.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 157a4c6c-40c1-4321-a541-310665faf052))
    (fp_line (start -6.25 4.75) (end -3.25 4.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ea2e667-5cbe-44b3-a690-8fde9c0326c5))
    (fp_line (start -3.25 4.75) (end -3.25 6.55)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d91bfb0b-2396-4488-bf99-3f1356cf2f32))
    (fp_line (start -3.25 6.55) (end 3.25 6.55)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37bdb25e-909e-4938-ba17-1cd29f201686))
    (fp_line (start 3.25 4.75) (end 6.25 4.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0b5a5a39-a3ca-402f-8c28-3ea2b208eac7))
    (fp_line (start 3.25 6.55) (end 3.25 4.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 783a36a3-4a3a-42de-8fb8-9e0d11f4dbd7))
    (fp_line (start 6.25 -7.95) (end -6.25 -7.95)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 94e6f329-21ef-4c1d-9426-f20e027e65e5))
    (fp_line (start 6.25 4.5) (end 6.25 -7.95)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 98a496bb-0c24-492c-869a-dfb3bc756533))
    (fp_line (start 6.25 4.75) (end 6.25 4.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c6c23d1c-2e91-4691-8519-02af9f046391))
    (fp_line (start -6 -7.7) (end 6 -7.7)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 381b0afe-5c47-4c19-bf13-e64fc7eba167))
    (fp_line (start -6 3.3) (end -6 -7.7)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2879cf74-2f8a-4227-b33a-7c028456485b))
    (fp_line (start -4.5 3.3) (end -6 3.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eefecae1-f67b-44d8-a7da-f30b65c9d9a6))
    (fp_line (start -4.5 4.5) (end -4.5 3.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7dff54aa-67f3-4b40-bf5a-5f5114e9c910))
    (fp_line (start -4.5 4.5) (end -3 4.5)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 896b9949-0347-468d-9de4-6a089a2b7b09))
    (fp_line (start -3 4.5) (end -3 6.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9f5b9971-c294-4602-9859-9b2b5309793b))
    (fp_line (start -3 6.3) (end 3 6.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e74d1bf-7d4b-4f7d-a704-1f5bf478314f))
    (fp_line (start 3 4.5) (end 3 6.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6a7400e9-a326-4e0d-a404-a3ccafb917f0))
    (fp_line (start 4.5 3.3) (end 6 3.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 688f9298-4e44-42c2-9579-f585f7444003))
    (fp_line (start 4.5 4.5) (end 3 4.5)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 69a2a69b-1d72-4f8b-9647-7977f98d9f1e))
    (fp_line (start 4.5 4.5) (end 4.5 3.3)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18434e67-cc4c-4008-bedf-fe6bb4757e5a))
    (fp_line (start 6 3.3) (end 6 -7.7)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 716785e4-1435-4377-93c3-057c28636985))
    (pad "" np_thru_hole circle (at -5 0 90) (size 1.2 1.2) (drill 1.2) (layers "*.Cu") (tstamp a1d79c2b-b7e5-442b-a317-f75ba5f3961e))
    (pad "" np_thru_hole circle (at -5 2.5 90) (size 1.2 1.2) (drill 1.2) (layers "*.Cu") (tstamp 2de4e39d-4ab4-458d-b689-65f743868e25))
    (pad "" np_thru_hole circle (at 0 -5 90) (size 1.2 1.2) (drill 1.2) (layers "*.Cu") (tstamp 60c5b4b4-129c-4603-91df-0772a38b636a))
    (pad "" np_thru_hole circle (at 5 0 90) (size 1.2 1.2) (drill 1.2) (layers "*.Cu") (tstamp bc2bb07b-5719-4792-8965-fa6e5bae27a4))
    (pad "" np_thru_hole circle (at 5 2.5 90) (size 1.2 1.2) (drill 1.2) (layers "*.Cu") (tstamp 5e0bb486-7f0c-400b-8290-cad8c710e8e1))
    (pad "R" thru_hole oval (at -5 -5 90) (size 1.2 2.2) (drill oval 0.4 1.4) (layers "*.Cu" "*.Mask") (tstamp c9af06a6-81cd-4c27-a262-8c7af59e79fe))
    (pad "S" thru_hole oval (at 0 0 90) (size 2.2 1.2) (drill oval 1.4 0.4) (layers "*.Cu" "*.Mask")
      (net 19 "Net-(C1-Pad1)") (pintype "passive") (tstamp 82071224-e270-4d53-9fba-e8bbeb1f09c6))
    (pad "T" thru_hole oval (at 5 -5 270) (size 1.2 2.2) (drill oval 0.4 1.4) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pintype "passive") (tstamp 9a6871e9-e2e5-429a-acfa-d7dfacdfd8bf))
    (model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_CUI_SJ1-3523N_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal" (layer "F.Cu")
    (tstamp 9d74a36d-93d5-417c-b4e1-3045bb73850a)
    (at 91.44 78.74)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
    (tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Resistor")
    (property "ki_keywords" "R res resistor")
    (path "/764d0f2f-e00d-4d6e-82b0-da17c8d83559")
    (attr through_hole)
    (fp_text reference "R1" (at 3.81 -2.37) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7a333b1a-3521-46f9-84f5-9175199e0bfd)
    )
    (fp_text value "R" (at 3.81 2.37) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c7bce8b3-7716-4996-b206-f0de8adc254e)
    )
    (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6d07d645-eb7e-4fdc-8433-44938dc73a49)
    )
    (fp_line (start 0.54 -1.37) (end 7.08 -1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 497ecaa1-4d0e-465e-ad92-02946c8f4bb3))
    (fp_line (start 0.54 -1.04) (end 0.54 -1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33f4ab29-27ea-4222-8a11-fd4f1ddb9558))
    (fp_line (start 0.54 1.04) (end 0.54 1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c21793c-533c-4bd2-8538-b8d6c8c9ffa4))
    (fp_line (start 0.54 1.37) (end 7.08 1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9130216-659c-4182-aae9-79df0bc01b98))
    (fp_line (start 7.08 -1.37) (end 7.08 -1.04)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 57014247-5222-445a-9448-b42e31c0ffe9))
    (fp_line (start 7.08 1.37) (end 7.08 1.04)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5eea811d-23ef-45bd-9097-f5864d921e99))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3cdb77f-cd5b-483f-9213-1056e2da2f3d))
    (fp_line (start -1.05 1.5) (end 8.67 1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6f1525d-fbf2-4ca1-a403-32cb9adb3cd3))
    (fp_line (start 8.67 -1.5) (end -1.05 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c3ea6974-58d7-4793-8552-47b42d693800))
    (fp_line (start 8.67 1.5) (end 8.67 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b3e26b03-dbdb-48fd-ae37-9794a87117ec))
    (fp_line (start 0 0) (end 0.66 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6e96c5cb-7b05-4d4e-8803-a83b4b7d9003))
    (fp_line (start 0.66 -1.25) (end 0.66 1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8ceb1091-b575-478f-acaa-ee4157298b03))
    (fp_line (start 0.66 1.25) (end 6.96 1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9fc2fe5a-5c1f-429b-beae-17cf73b131d4))
    (fp_line (start 6.96 -1.25) (end 0.66 -1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4f1369a8-4b30-4cf4-8c27-9af521838337))
    (fp_line (start 6.96 1.25) (end 6.96 -1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ff50707-7bc2-4f18-9ce6-8d16fe44374f))
    (fp_line (start 7.62 0) (end 6.96 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 209bab79-b7aa-4dda-b999-bc33a6551151))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 30 "Net-(J6-Pin_7)") (pintype "passive") (tstamp 282407f1-c448-4298-8a01-951fc9c2a043))
    (pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 19 "Net-(C1-Pad1)") (pintype "passive") (tstamp 6837a657-baeb-45f3-916c-740acb92f05b))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Capacitor_THT:C_Disc_D6.0mm_W2.5mm_P5.00mm" (layer "F.Cu")
    (tstamp 9ef6e7fa-6353-4eb0-a283-75fa67c22ff1)
    (at 99.06 81.36 -90)
    (descr "C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf")
    (tags "C Disc series Radial pin pitch 5.00mm  diameter 6mm width 2.5mm Capacitor")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Unpolarized capacitor")
    (property "ki_keywords" "cap capacitor")
    (path "/88616a98-32a9-45a4-ad80-7b1dbb105eda")
    (attr through_hole)
    (fp_text reference "C1" (at 2.5 -2.5 90) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8efec292-1f74-403a-b19e-8eda7c78f14d)
    )
    (fp_text value "C" (at 2.5 2.5 90) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b7472789-e2b9-4b72-9983-623414ebd05d)
    )
    (fp_text user "${REFERENCE}" (at 2.5 0 90) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 52f46e2a-4633-463a-ba9f-735bf6cbd532)
    )
    (fp_line (start -0.62 -1.37) (end -0.62 -0.925)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ad9e1da-e5ce-4745-9907-cbc41507eba7))
    (fp_line (start -0.62 -1.37) (end 5.62 -1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f2e890e-5040-4720-acc0-3aba2d5d1844))
    (fp_line (start -0.62 0.925) (end -0.62 1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 407f2c3b-1bf5-4d38-8bb6-3d57d4a118de))
    (fp_line (start -0.62 1.37) (end 5.62 1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4bab2ba-d501-4c42-884b-fa3bbc039228))
    (fp_line (start 5.62 -1.37) (end 5.62 -0.925)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5f779638-504f-4b4d-b33f-4623bd8cf204))
    (fp_line (start 5.62 0.925) (end 5.62 1.37)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fdd7e285-c91d-41d3-bd34-f7caf1c80438))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ce1b3f6-2533-426d-b378-5dc93f922c61))
    (fp_line (start -1.05 1.5) (end 6.05 1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b545cc5d-d308-498d-9393-a498ae66a6bb))
    (fp_line (start 6.05 -1.5) (end -1.05 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5ddf5f0-d025-422f-abf0-be1f2f8c65e9))
    (fp_line (start 6.05 1.5) (end 6.05 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2ed2281-594e-4596-9e94-9548812eed61))
    (fp_line (start -0.5 -1.25) (end -0.5 1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15734726-8bee-4fe3-b906-2c5c76a0f6fd))
    (fp_line (start -0.5 1.25) (end 5.5 1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e57fa906-5876-4571-89fd-965cc9b7ff86))
    (fp_line (start 5.5 -1.25) (end -0.5 -1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08b8df1e-c64b-4d8e-a080-98c5117abff3))
    (fp_line (start 5.5 1.25) (end 5.5 -1.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ad8a737-adb6-4ec4-872e-d4f90aa1718f))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 19 "Net-(C1-Pad1)") (pintype "passive") (tstamp 6e833537-6cd9-496a-a272-8df790e1257f))
    (pad "2" thru_hole circle (at 5 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pintype "passive") (tstamp bdf03847-1ebe-468e-82fc-d29be55b53f2))
    (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Disc_D6.0mm_W2.5mm_P5.00mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_PinHeader_2.54mm:PinHeader_2x06_P2.54mm_Vertical" (layer "F.Cu")
    (tstamp a323c55d-c587-4883-aad8-50f3854a4e0a)
    (at 83.82 78.74)
    (descr "Through hole straight pin header, 2x06, 2.54mm pitch, double rows")
    (tags "Through hole pin header THT 2x06 2.54mm double row")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Generic connector, double row, 02x06, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)")
    (property "ki_keywords" "connector")
    (path "/fe7b1f01-3f0e-49f0-9674-7a7e79bae509")
    (attr through_hole)
    (fp_text reference "J6" (at 1.27 -2.33) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 57af09a2-2f09-4310-8809-7c971e00841c)
    )
    (fp_text value "BASYS_JB" (at 1.27 15.03) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 14779451-0fdb-4e18-82d0-f6403255abbc)
    )
    (fp_text user "${REFERENCE}" (at 1.27 6.35 90) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 74bba54a-a2c3-4868-a02b-aebbdb611e7f)
    )
    (fp_line (start -1.33 -1.33) (end 0 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e1e9d58-5c3d-413c-ac0a-0172fbfe8485))
    (fp_line (start -1.33 0) (end -1.33 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6d698252-7973-474f-83bf-7d47f0ce28b1))
    (fp_line (start -1.33 1.27) (end -1.33 14.03)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f08e635b-553e-4bdb-8723-737e5661b157))
    (fp_line (start -1.33 1.27) (end 1.27 1.27)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bbb30b9-bf83-46c3-84db-d862d776916f))
    (fp_line (start -1.33 14.03) (end 3.87 14.03)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61511794-e531-44da-b369-4159df00584e))
    (fp_line (start 1.27 -1.33) (end 3.87 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d19ae10-9483-4c2a-920c-253e76257e91))
    (fp_line (start 1.27 1.27) (end 1.27 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a51a91b7-a03a-4ab7-85d5-753ac4f7ec26))
    (fp_line (start 3.87 -1.33) (end 3.87 14.03)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bd06bf42-6c73-4e7a-8257-412ed7a80278))
    (fp_line (start -1.8 -1.8) (end -1.8 14.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0479fd4c-e68c-466f-9057-b92c7f7c53e8))
    (fp_line (start -1.8 14.5) (end 4.35 14.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp baffd811-e0f1-45ee-a414-5c94ad48c8ef))
    (fp_line (start 4.35 -1.8) (end -1.8 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f482e11b-3dcb-404c-a65c-5037a0c56a35))
    (fp_line (start 4.35 14.5) (end 4.35 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ff96384-3e0f-41b0-ab2f-b830335b2cbf))
    (fp_line (start -1.27 0) (end 0 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6adbe5b-141b-4277-91b9-7c82e93abca0))
    (fp_line (start -1.27 13.97) (end -1.27 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5cca470d-380f-4756-80f2-b7a2d02f3f0f))
    (fp_line (start 0 -1.27) (end 3.81 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2607598f-2ce1-462d-bb56-bbeaeabf2997))
    (fp_line (start 3.81 -1.27) (end 3.81 13.97)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7bb01997-9b16-48d4-8898-0f6e8b2712e5))
    (fp_line (start 3.81 13.97) (end -1.27 13.97)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41ebe843-dfd6-4d2c-9baa-af9d3f68964a))
    (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 25 "unconnected-(J6-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 7e089a0e-f9d4-4425-8e82-3a4bfcd9fb5b))
    (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 26 "unconnected-(J6-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp e727f071-2979-40e9-bfdf-e2e92167a613))
    (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 27 "unconnected-(J6-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp b3dbf835-4ab6-4381-b946-c40654e69ca3))
    (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 28 "unconnected-(J6-Pin_4-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp cc42ee7e-918b-4514-8c33-6a447e010d78))
    (pad "5" thru_hole oval (at 0 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "Pin_5") (pintype "passive") (tstamp 11e663dc-c411-467c-8a62-31245192c8df))
    (pad "6" thru_hole oval (at 0 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 29 "unconnected-(J6-Pin_6-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp f96ba032-6860-440e-96fc-13c33edcaf29))
    (pad "7" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 30 "Net-(J6-Pin_7)") (pinfunction "Pin_7") (pintype "passive") (tstamp 585f85c3-3cd3-4360-a613-5bcb3d758f41))
    (pad "8" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 31 "unconnected-(J6-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp c0e546c6-17f0-48b1-bfe0-6b774996ffb0))
    (pad "9" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 32 "unconnected-(J6-Pin_9-Pad9)") (pinfunction "Pin_9") (pintype "passive") (tstamp 6a1206cd-c443-4775-b5d7-b313cd4248e7))
    (pad "10" thru_hole oval (at 2.54 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 33 "unconnected-(J6-Pin_10-Pad10)") (pinfunction "Pin_10") (pintype "passive") (tstamp 15434db6-74da-49b3-a95d-59c6f2682660))
    (pad "11" thru_hole oval (at 2.54 10.16) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "Pin_11") (pintype "passive") (tstamp 9d496423-253b-4ab8-baa1-0e443ea46c49))
    (pad "12" thru_hole oval (at 2.54 12.7) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 34 "unconnected-(J6-Pin_12-Pad12)") (pinfunction "Pin_12") (pintype "passive") (tstamp d9f26b6e-ddbc-4cce-a7a3-a5765882f5ac))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x06_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
    (tstamp c38f5038-efd0-4951-a4e7-b93bcf00c020)
    (at 90.73 54.565)
    (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
    (tags "tact sw push 6mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Momentary Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/dfc07b71-4ab0-4c2f-871c-5f3136d79d4b")
    (attr through_hole)
    (fp_text reference "SW6" (at 3.25 -2) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 43c494ed-c006-4ad5-98d3-c21cf341f304)
    )
    (fp_text value "DOWN" (at 3.75 6.7) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp defdd9dd-7b3f-4736-bda3-66565799fc96)
    )
    (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ab64c404-aab1-4296-bdd8-339409b0946c)
    )
    (fp_line (start -0.25 1.5) (end -0.25 3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3aa3e3b-1c8a-4445-8c7f-95ff0dd1262c))
    (fp_line (start 1 5.5) (end 5.5 5.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 68ec7fd3-54d0-4f7c-ab17-fedb19a72f72))
    (fp_line (start 5.5 -1) (end 1 -1)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2d3b84b-db2b-46b5-bc31-cdf3aaf8b1c6))
    (fp_line (start 6.75 3) (end 6.75 1.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5ab7659-00ec-4da3-a99a-fca72535b6e0))
    (fp_line (start -1.5 -1.5) (end -1.25 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 26368870-db38-4635-a7a0-a54f0f7e0f48))
    (fp_line (start -1.5 -1.25) (end -1.5 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edf68bbc-5fe5-430d-9d77-cb989d4db39a))
    (fp_line (start -1.5 5.75) (end -1.5 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 31a6f609-9e7a-4120-871e-c910c677d1b6))
    (fp_line (start -1.5 5.75) (end -1.5 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fca20b65-4091-4f0d-a369-c3fade4d93f9))
    (fp_line (start -1.5 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d63f1f5-c060-41e0-be59-df40cdc33949))
    (fp_line (start -1.25 -1.5) (end 7.75 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57a8e838-5735-4775-b098-606a0a36f67f))
    (fp_line (start 7.75 -1.5) (end 8 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ab01cc72-5e97-46e0-96a0-de7be8e381ab))
    (fp_line (start 7.75 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c75f385e-7dc6-42e9-ae53-8a84a632df81))
    (fp_line (start 7.75 6) (end 8 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 48537656-f8d0-4713-a606-c367b6b73ee4))
    (fp_line (start 8 -1.5) (end 8 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7bf4ed34-4279-4857-b182-bb163119b307))
    (fp_line (start 8 -1.25) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 17613011-1eda-4dcd-a9e5-0c018b0e7990))
    (fp_line (start 8 6) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8dc88f31-5d4d-42e0-ba6f-71a399fb1802))
    (fp_line (start 0.25 -0.75) (end 3.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 141ca93f-73f0-4cfb-9fed-b13601a1db90))
    (fp_line (start 0.25 5.25) (end 0.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9d606874-164a-48af-bb15-f7decef9be5f))
    (fp_line (start 3.25 -0.75) (end 6.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7df66abe-fb14-4818-8863-dafe8817cded))
    (fp_line (start 6.25 -0.75) (end 6.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5aec897c-9444-4c82-8815-55eaf74fd559))
    (fp_line (start 6.25 5.25) (end 0.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c9a1349-bd3b-459d-b76c-e836f76beb27))
    (fp_circle (center 3.25 2.25) (end 1.25 2.5)
      (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp ad192291-6564-4682-bfae-14f17a6bcff7))
    (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 41 "Net-(J3-SECONDARY)") (pinfunction "A") (pintype "passive") (tstamp b048d91d-45b0-4c2f-99cf-287fedd50b7c))
    (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 41 "Net-(J3-SECONDARY)") (pinfunction "A") (pintype "passive") (tstamp a9c2de2b-1493-412f-863d-112747790de1))
    (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp 95c61c4d-209e-465c-bde6-35c1a7952953))
    (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp 9e353f57-dc9e-4784-886d-64a62e2d76c0))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
    (tstamp c5414711-7ba8-46c8-bfdf-3ebb7ff0e5cb)
    (at 90.8025 37.075)
    (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
    (tags "tact sw push 6mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Momentary Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/49058202-80c4-4b2d-9180-68c845d7c63f")
    (attr through_hole)
    (fp_text reference "SW2" (at 3.25 -2) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4e7cf29e-d756-433d-8036-51ad93bc6e51)
    )
    (fp_text value "UP" (at 3.75 6.7) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 21a3ca1b-9824-4414-91c7-3a0c5420e3ae)
    )
    (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 76f75778-69af-4237-8fc7-23dc18fc0a19)
    )
    (fp_line (start -0.25 1.5) (end -0.25 3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01c6a1e0-d50b-4057-a2f5-4c19abdadbad))
    (fp_line (start 1 5.5) (end 5.5 5.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a28c9d5-9731-4c45-b237-61305c3e07b9))
    (fp_line (start 5.5 -1) (end 1 -1)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af1aed42-48cf-42b9-ba70-58edfb755cd3))
    (fp_line (start 6.75 3) (end 6.75 1.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a43257e3-1322-45b6-bf17-991298ca1fca))
    (fp_line (start -1.5 -1.5) (end -1.25 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a498857-d0a0-4950-ab59-757bab3b7e37))
    (fp_line (start -1.5 -1.25) (end -1.5 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ac6900b1-8046-4d3a-897b-42afa6047e0d))
    (fp_line (start -1.5 5.75) (end -1.5 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c467dbca-8fe4-4fb2-a48c-ab8dc2936ab0))
    (fp_line (start -1.5 5.75) (end -1.5 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 78596ca9-1655-4fcb-a446-e60eed8ded27))
    (fp_line (start -1.5 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6e76eb62-5630-4da8-964a-bee7d3eecf2d))
    (fp_line (start -1.25 -1.5) (end 7.75 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 99bc6298-2c86-4c69-9c0e-082db0f3051e))
    (fp_line (start 7.75 -1.5) (end 8 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 978116d7-33d5-470d-8792-93fedecac914))
    (fp_line (start 7.75 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be46d582-0228-4a09-88c1-ec398fff2d10))
    (fp_line (start 7.75 6) (end 8 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de821240-b641-4061-8f32-82bbc5b49836))
    (fp_line (start 8 -1.5) (end 8 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eddaf6ab-6c04-4d3a-8392-d687c3970fa9))
    (fp_line (start 8 -1.25) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fa3e6b0b-ba13-4c96-a8b6-02b72da2985c))
    (fp_line (start 8 6) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 67700a16-cfd5-4a7b-935d-33b875cd7605))
    (fp_line (start 0.25 -0.75) (end 3.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f16ac649-bc19-455e-973c-b653af482f28))
    (fp_line (start 0.25 5.25) (end 0.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2b9409e-60ff-4213-a722-33ec56e0a042))
    (fp_line (start 3.25 -0.75) (end 6.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a640e92e-3a5b-4a81-9441-12a30ebb0827))
    (fp_line (start 6.25 -0.75) (end 6.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 827f6e59-8fde-4b2c-a0b3-2b400f9f8ccd))
    (fp_line (start 6.25 5.25) (end 0.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 633948c0-fe9a-4fb2-b052-08710ac2ce05))
    (fp_circle (center 3.25 2.25) (end 1.25 2.5)
      (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp c1c776e1-7020-4886-b210-a95944da36ea))
    (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 36 "Net-(J3-DOWN)") (pinfunction "A") (pintype "passive") (tstamp a2b8f9fb-4064-448a-a02b-f70ba3c7708d))
    (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 36 "Net-(J3-DOWN)") (pinfunction "A") (pintype "passive") (tstamp 96261d70-f407-4ace-97bd-a8bbd5ff1b42))
    (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp faf78f5a-540d-4be2-b95e-f4b5d2741068))
    (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp cfa1d536-ce41-4100-befd-ef115c95002e))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
    (tstamp c9b1d8e9-c316-4c31-b478-88439d0a6ad6)
    (at 124.46 45.72)
    (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
    (tags "tact sw push 6mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Momentary Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/b2bf2f45-3635-4293-9ae5-d24524b3b2e9")
    (attr through_hole)
    (fp_text reference "SW5" (at 3.25 -2) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ade7fbad-fde6-416e-80ca-355a83c5743d)
    )
    (fp_text value "SECONDARY" (at 3.75 6.7) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b2b7255e-d8aa-4e76-918a-44d32957eb39)
    )
    (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4204871a-f6fe-4838-a33c-19a72f379413)
    )
    (fp_line (start -0.25 1.5) (end -0.25 3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bebc04f3-2cd5-4d66-bedd-a9441582fc27))
    (fp_line (start 1 5.5) (end 5.5 5.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8693eace-4f5e-4abb-96d3-97667d77024b))
    (fp_line (start 5.5 -1) (end 1 -1)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b9cee48-bd5f-422b-b577-406db5898720))
    (fp_line (start 6.75 3) (end 6.75 1.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb9a5fa8-fb46-4423-97db-c0b080ed43fd))
    (fp_line (start -1.5 -1.5) (end -1.25 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9625ed5e-3ff4-4a30-8daa-ac188c41c98e))
    (fp_line (start -1.5 -1.25) (end -1.5 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 33f79e02-c4a3-47c0-bfcf-3f1683d7198a))
    (fp_line (start -1.5 5.75) (end -1.5 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 427f93bc-07d3-41b8-bb9d-989591c0ebc2))
    (fp_line (start -1.5 5.75) (end -1.5 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp efdbd4fd-344c-41c0-aade-11d68a4ba11f))
    (fp_line (start -1.5 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e388fe63-7159-45b9-a359-4c275fd9a4a5))
    (fp_line (start -1.25 -1.5) (end 7.75 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68644736-cda3-4f8a-a7da-09969adac949))
    (fp_line (start 7.75 -1.5) (end 8 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9c625626-34ad-4528-a90d-cf38f2dad964))
    (fp_line (start 7.75 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp de0c25dd-9336-4b1d-a434-9f44823ab330))
    (fp_line (start 7.75 6) (end 8 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cad5ae97-588b-45fa-b425-5c1dd008c113))
    (fp_line (start 8 -1.5) (end 8 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80f38d8d-06f9-4bc2-bc7f-46623493096f))
    (fp_line (start 8 -1.25) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a3fff17d-d527-49aa-ac97-7bb2bf495855))
    (fp_line (start 8 6) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 659018fb-d361-460f-b287-bc9d6d6ab2a4))
    (fp_line (start 0.25 -0.75) (end 3.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f8a2b21-2d97-4bdc-b758-14715eea2ba6))
    (fp_line (start 0.25 5.25) (end 0.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e29f3f8-fe5e-43fc-8fc1-188fbef523c0))
    (fp_line (start 3.25 -0.75) (end 6.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21ecbf97-2c08-4bfc-8edd-72c7ae46019f))
    (fp_line (start 6.25 -0.75) (end 6.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5e5d2a9d-6643-42aa-b80d-d2746da1801c))
    (fp_line (start 6.25 5.25) (end 0.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9bc0c640-07d5-4c7d-9235-b640f29f04fe))
    (fp_circle (center 3.25 2.25) (end 1.25 2.5)
      (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e6725f08-da4e-46dc-a8e8-469bb4b68b22))
    (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 40 "Net-(J3-PRIMARY)") (pinfunction "A") (pintype "passive") (tstamp 04b58072-9935-4e8c-96bf-ffea4858769c))
    (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 40 "Net-(J3-PRIMARY)") (pinfunction "A") (pintype "passive") (tstamp d2b353de-9703-4196-bda2-6c1bf89795d3))
    (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp 1684df4b-5aad-4a5e-836d-512d3dfd6515))
    (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp e4ccdaa7-231c-4cb0-85b6-05a2682f01f5))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_Slide_1P2T_CK_OS102011MS2Q" (layer "F.Cu")
    (tstamp d138c934-843e-42c8-9f85-b99d246e44e9)
    (at 30.48 55.88 90)
    (descr "CuK miniature slide switch, OS series, SPDT, https://www.ckswitches.com/media/1428/os.pdf")
    (tags "switch SPDT")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/105049d1-1340-44f8-ae8e-8ec4a4f135fd")
    (attr through_hole)
    (fp_text reference "SW7" (at 3.99 -2.99 90) (layer "F.SilkS") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4312ff2c-f0c0-4e57-81c7-d9bfcac558dc)
    )
    (fp_text value "STM_PWR_SOURCE" (at 1.779337 -3.676307 90) (layer "F.Fab") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 012e5355-8629-4742-9847-fa8280bd23f0)
    )
    (fp_line (start -2.41 -2.26) (end 6.41 -2.26)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f227c6f6-1f2a-4993-9267-c9b4ced0f0ed))
    (fp_line (start -2.41 -1.95) (end -2.41 -2.26)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c52af1cb-97cd-477e-b7e9-a97c8ee5bfeb))
    (fp_line (start -2.41 2.26) (end -2.41 1.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8e99a5cc-b023-47e1-8476-fa7d92ca20ec))
    (fp_line (start -0.5 -2.96) (end 0 -2.46)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2861edc-7fa9-4151-a023-a53cd44b911c))
    (fp_line (start 0 -2.46) (end 0.5 -2.96)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f36c0bd-1cb3-4243-a8e1-9a42692f819c))
    (fp_line (start 0.5 -2.96) (end -0.5 -2.96)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 36b540bc-b8ac-499c-a9b6-b1b488f55629))
    (fp_line (start 6.41 -2.26) (end 6.41 -1.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29a41975-9e89-45fe-a545-14016b4998ce))
    (fp_line (start 6.41 2.26) (end -2.41 2.26)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8efa8b3d-4a49-4877-b59e-9500194d5eb7))
    (fp_line (start 6.41 2.26) (end 6.41 1.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7c961fa-4039-45f5-8139-453fc86e4bcb))
    (fp_line (start -3.45 -2.4) (end 7.45 -2.4)
      (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 632d93a7-90cc-4571-9d29-7e16c60365d4))
    (fp_line (start -3.45 2.4) (end -3.45 -2.4)
      (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp dd2d7dbd-11d1-4eb0-b3fd-0d9e8d408784))
    (fp_line (start 7.45 -2.4) (end 7.45 2.4)
      (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 4fcf46bf-7022-4086-b002-67c99b383216))
    (fp_line (start 7.45 2.4) (end -3.45 2.4)
      (stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ee855d58-e464-4da9-a14b-74d7a80d30f5))
    (fp_line (start -2.3 -2.15) (end -0.5 -2.15)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0ce81fa-bf4f-48e3-9afe-140dcfe6f3f9))
    (fp_line (start -2.3 2.15) (end -2.3 -2.15)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1817eae-28fb-4e10-b07e-09b8a5782896))
    (fp_line (start -0.5 -2.15) (end 0 -1.65)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f4acab60-d407-4890-b6b9-b663a85ab8d1))
    (fp_line (start 0 -1.65) (end 0.5 -2.15)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4344ee4f-fa96-4d40-8966-9c6bbaab27a8))
    (fp_line (start 0 -1) (end 0 1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c5d32d2-74e6-40c2-a6c9-4dd3ddd3628f))
    (fp_line (start 0 -1) (end 4 -1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2f9734d2-6be0-4f36-be52-807d7668b7ec))
    (fp_line (start 0 1) (end 4 1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5aa4d124-c5b2-448b-a2f9-bbb0d06952ee))
    (fp_line (start 0.5 -2.15) (end 6.3 -2.15)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a687bf53-f1cd-41a8-bd26-ebb49f97f5ee))
    (fp_line (start 0.66 -1) (end 0.66 1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0815fc97-c99d-46c9-a176-c2364b0b9f9d))
    (fp_line (start 1.34 -1) (end 1.34 1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a0da6801-3e24-464b-ac2f-b2fe99b7a05b))
    (fp_line (start 2 -1) (end 2 1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5c6ad3c7-9e59-441f-994d-478a7a96a95a))
    (fp_line (start 4 -1) (end 4 1)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2ffa9631-93b7-4fb0-93ef-06f2f6e6750d))
    (fp_line (start 6.3 -2.15) (end 6.3 2.15)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12bc7930-1053-4294-b041-64c1c9ff7e52))
    (fp_line (start 6.3 2.15) (end -2.3 2.15)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ab01190a-eae8-428e-927f-d89928d29e72))
    (pad "" thru_hole oval (at -2.1 0 90) (size 2.2 3.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp 1c782fa4-dac8-4010-8f49-e89bd680140c))
    (pad "" thru_hole oval (at 6.1 0 90) (size 2.2 3.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp dc425046-bd8a-455a-9d15-673bd5a48852))
    (pad "1" thru_hole rect (at 0 0 90) (size 1.5 2.5) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 4 "VCC") (pinfunction "A") (pintype "passive") (tstamp c1538d95-5374-4c21-b641-f904c5334f5c))
    (pad "2" thru_hole oval (at 2 0 90) (size 1.5 2.5) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 21 "Net-(J1-Pin_12)") (pinfunction "B") (pintype "passive") (tstamp 4ef73561-8c81-4ea3-9eaa-fafa8945ce9c))
    (pad "3" thru_hole oval (at 4 0 90) (size 1.5 2.5) (drill 0.8) (layers "*.Cu" "*.Mask")
      (net 24 "unconnected-(SW7-C-Pad3)") (pinfunction "C") (pintype "passive+no_connect") (tstamp f15bd561-672d-4081-b8bb-e72a2b9450a2))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_Slide_1P2T_CK_OS102011MS2Q.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (layer "F.Cu")
    (tstamp e05910b2-5dff-4dd5-a667-d3fe5597c90b)
    (at 119.38 34.98 -90)
    (descr "Through hole straight pin header, 2x04, 2.54mm pitch, double rows")
    (tags "Through hole pin header THT 2x04 2.54mm double row")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Generic connector, double row, 02x04, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)")
    (property "ki_keywords" "connector")
    (path "/57478726-f67c-4db7-a7d2-98e0223f05cb")
    (attr through_hole)
    (fp_text reference "J3" (at 1.27 -2.33 90) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp caa00206-c901-48ab-a579-48b1d4a8d78c)
    )
    (fp_text value "GAMEPAD" (at 1.27 9.95 90) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e879d5cd-7e66-4d83-ad09-871d956eefe6)
    )
    (fp_text user "${REFERENCE}" (at 1.27 3.81) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d1ecdbc8-7131-425c-9cf6-c3ac0c2c9718)
    )
    (fp_line (start -1.33 -1.33) (end 0 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bea9bd1d-ba37-406f-afe1-bf607de80978))
    (fp_line (start -1.33 0) (end -1.33 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5dd3846a-9b64-4b9d-ab04-c2226fe24726))
    (fp_line (start -1.33 1.27) (end -1.33 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 23feb25b-7df4-44df-9b11-eeb75f48c32c))
    (fp_line (start -1.33 1.27) (end 1.27 1.27)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34de599b-2d9e-4eea-a272-e915dfcd1bdf))
    (fp_line (start -1.33 8.95) (end 3.87 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 83c8bf3e-ba6d-4969-b6e8-ee9dddc8963f))
    (fp_line (start 1.27 -1.33) (end 3.87 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b3fe8af-6af3-472a-af9c-fc9c39388015))
    (fp_line (start 1.27 1.27) (end 1.27 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8ee4b6df-a489-4c84-a659-2e84167a6c1a))
    (fp_line (start 3.87 -1.33) (end 3.87 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a066f2c3-da7e-4011-8f81-239a5710586f))
    (fp_line (start -1.8 -1.8) (end -1.8 9.4)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fdb37fe5-6071-4be0-913f-0500d72dead2))
    (fp_line (start -1.8 9.4) (end 4.35 9.4)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ba44cde-dca7-4c73-a9e7-1683fd3a1ecd))
    (fp_line (start 4.35 -1.8) (end -1.8 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ad6b89fe-9e60-4c4d-b237-aef6cd69599a))
    (fp_line (start 4.35 9.4) (end 4.35 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9ea077c-1741-41a4-a776-0d98bdfd0924))
    (fp_line (start -1.27 0) (end 0 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3669cb48-a194-47f0-b3d2-6be3199f9d2c))
    (fp_line (start -1.27 8.89) (end -1.27 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c70c14f-2396-47bd-864b-ef5e6b889b76))
    (fp_line (start 0 -1.27) (end 3.81 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e92cd02e-6083-405f-a06d-8d52dedb9798))
    (fp_line (start 3.81 -1.27) (end 3.81 8.89)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffd7cfde-5d72-4a62-a8d0-7bfe44f72590))
    (fp_line (start 3.81 8.89) (end -1.27 8.89)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ca55dc55-0498-43b0-8bb1-e52e12bcf2e2))
    (pad "1" thru_hole rect (at 0 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 35 "Net-(J3-UP)") (pinfunction "UP") (pintype "output") (tstamp db72aed1-4b40-481f-9f96-3d409354c7d0))
    (pad "2" thru_hole oval (at 0 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 36 "Net-(J3-DOWN)") (pinfunction "DOWN") (pintype "output") (tstamp aceab463-3a90-4f77-9ca3-6ba3683b6180))
    (pad "3" thru_hole oval (at 0 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 37 "Net-(J3-LEFT)") (pinfunction "LEFT") (pintype "output") (tstamp f624e656-d679-4c99-a98b-1c809425a955))
    (pad "4" thru_hole oval (at 0 7.62 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "VCC") (pintype "input") (tstamp 47fc4146-6abb-4ff0-a522-f867a0c31190))
    (pad "5" thru_hole oval (at 2.54 0 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask" "B.SilkS")
      (net 39 "Net-(J3-RIGHT)") (pinfunction "RIGHT") (pintype "output") (tstamp f530bc43-b8ed-4456-91fe-ecd5a7d121a5))
    (pad "6" thru_hole oval (at 2.54 2.54 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 40 "Net-(J3-PRIMARY)") (pinfunction "PRIMARY") (pintype "output") (tstamp f9c8fc02-6608-41cf-b731-ef1cba3638dc))
    (pad "7" thru_hole oval (at 2.54 5.08 270) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 41 "Net-(J3-SECONDARY)") (pinfunction "SECONDARY") (pintype "output") (tstamp 87af7126-e5cd-4d54-9b2d-903a609fe868))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x04_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Button_Switch_THT:SW_PUSH_6mm" (layer "F.Cu")
    (tstamp e0e7f290-941c-4cea-9e85-d71ccf252f0c)
    (at 100.89 45.72)
    (descr "https://www.omron.com/ecb/products/pdf/en-b3f.pdf")
    (tags "tact sw push 6mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Momentary Switch, single pole double throw")
    (property "ki_keywords" "switch single-pole double-throw spdt ON-ON")
    (path "/c89f7037-8f49-4d17-be56-039e9a29ee25")
    (attr through_hole)
    (fp_text reference "SW3" (at 3.25 -2) (layer "F.SilkS")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ae39ac8d-a2f9-4ef7-8edd-617b514e082b)
    )
    (fp_text value "RIGHT" (at 3.75 6.7) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 48ce4514-1dc5-4fe2-8b30-b38fcce37335)
    )
    (fp_text user "${REFERENCE}" (at 3.25 2.25) (layer "F.Fab")
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4a3de003-e29e-4971-99ca-9bfa74c6a27d)
    )
    (fp_line (start -0.25 1.5) (end -0.25 3)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5504fd33-b1eb-4d41-a5c8-bedf35572ee7))
    (fp_line (start 1 5.5) (end 5.5 5.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99ec9a94-d49f-4b76-89b8-e877d7de1a81))
    (fp_line (start 5.5 -1) (end 1 -1)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f9da02c-6f7e-49b5-9422-ca2873157c3a))
    (fp_line (start 6.75 3) (end 6.75 1.5)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c5f938e-7a47-43f0-aad7-3f95ea4b1d4c))
    (fp_line (start -1.5 -1.5) (end -1.25 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6740223e-ebf6-4f23-8514-e8b9f58f2c60))
    (fp_line (start -1.5 -1.25) (end -1.5 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp db4f515d-7fa0-4b71-9008-83c56ee78dcc))
    (fp_line (start -1.5 5.75) (end -1.5 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ed8fd080-329c-48ae-8eb4-4b2fcebef95e))
    (fp_line (start -1.5 5.75) (end -1.5 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d3729a2d-890a-415e-9cbe-4bd8dec7d875))
    (fp_line (start -1.5 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4f5b0f20-8a9d-4aa8-9ee3-53bd1129ef05))
    (fp_line (start -1.25 -1.5) (end 7.75 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59f48d0b-4552-4c95-a3d3-258e3818c148))
    (fp_line (start 7.75 -1.5) (end 8 -1.5)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 73fbbfc5-b35c-4f3d-841a-72b0c8b0da9e))
    (fp_line (start 7.75 6) (end -1.25 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 354286eb-c42c-4c80-8a11-dd1c02f54b55))
    (fp_line (start 7.75 6) (end 8 6)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 14f361b4-6490-438c-9fbc-81738f62e057))
    (fp_line (start 8 -1.5) (end 8 -1.25)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a4acf94-6cf4-4ec4-ad7e-1e6d6bbca7f9))
    (fp_line (start 8 -1.25) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 431472e4-3e69-47c6-aa38-691e983af8b4))
    (fp_line (start 8 6) (end 8 5.75)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4033c649-b159-437d-984c-8bcc7146182b))
    (fp_line (start 0.25 -0.75) (end 3.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3d8844c-be35-490e-b5df-c417975378c9))
    (fp_line (start 0.25 5.25) (end 0.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6998de8f-9ca4-4fb9-a4c7-29c83eb3b27a))
    (fp_line (start 3.25 -0.75) (end 6.25 -0.75)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ada0d3b1-3f09-4bb7-81ae-5211b7ed7cb9))
    (fp_line (start 6.25 -0.75) (end 6.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e789e20-8756-4ef4-ad32-2cb25f3f8077))
    (fp_line (start 6.25 5.25) (end 0.25 5.25)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 65555cdd-94c4-4305-a7b9-5bcb23cc23d6))
    (fp_circle (center 3.25 2.25) (end 1.25 2.5)
      (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 20f2c806-8160-48fd-ac33-56a1772f401a))
    (pad "1" thru_hole circle (at 0 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 37 "Net-(J3-LEFT)") (pinfunction "A") (pintype "passive") (tstamp 6a6e1fc2-dee0-459d-a6d7-cd422b8f24aa))
    (pad "1" thru_hole circle (at 6.5 0 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 37 "Net-(J3-LEFT)") (pinfunction "A") (pintype "passive") (tstamp baf2ba24-90cc-4eff-8121-14c7787d18b2))
    (pad "2" thru_hole circle (at 0 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp c5424fab-0116-49d8-af97-3a0e5033371a))
    (pad "2" thru_hole circle (at 6.5 4.5 90) (size 2 2) (drill 1.1) (layers "*.Cu" "*.Mask")
      (net 38 "Net-(J3-VCC)") (pinfunction "B") (pintype "passive") (tstamp bbc353ea-e110-406b-b4fa-a9314a08fcd1))
    (model "${KICAD6_3DMODEL_DIR}/Button_Switch_THT.3dshapes/SW_PUSH_6mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical" (layer "F.Cu")
    (tstamp e61ea2f9-2607-4e06-b2b9-a60823ee73c7)
    (at 50.8 22.86)
    (descr "Through hole straight pin header, 2x04, 2.54mm pitch, double rows")
    (tags "Through hole pin header THT 2x04 2.54mm double row")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Generic connector, double row, 02x04, top/bottom pin numbering scheme (row 1: 1...pins_per_row, row2: pins_per_row+1 ... num_pins), script generated (kicad-library-utils/schlib/autogen/connector/)")
    (property "ki_keywords" "connector")
    (path "/c8ada392-2138-4585-999b-9eb680392247")
    (attr through_hole)
    (fp_text reference "J7" (at 1.27 -2.33) (layer "F.SilkS") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 44285cf8-6461-44e5-8482-fefa034ae6db)
    )
    (fp_text value "GAMEPAD_1" (at 1.27 9.95) (layer "F.Fab") hide
        (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 74d7559c-8593-4496-9f30-17637712bc33)
    )
    (fp_line (start -1.33 -1.33) (end 0 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4825821-a946-465f-b307-7cf1ea3343d1))
    (fp_line (start -1.33 0) (end -1.33 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff28acf9-8ea6-4a75-9377-a2c3539c9216))
    (fp_line (start -1.33 1.27) (end -1.33 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa92c214-016c-484a-a645-f237d5e0ef04))
    (fp_line (start -1.33 1.27) (end 1.27 1.27)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27782845-062b-4110-b905-2ae5c400750c))
    (fp_line (start -1.33 8.95) (end 3.87 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5717623-b637-4f74-96bb-9a458a544288))
    (fp_line (start 1.27 -1.33) (end 3.87 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5464f327-e515-4f14-912e-9a07f573588d))
    (fp_line (start 1.27 1.27) (end 1.27 -1.33)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d8f5d88-500c-424e-8327-28b178c374b3))
    (fp_line (start 3.87 -1.33) (end 3.87 8.95)
      (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09851e2e-7944-4f4b-b485-631b9ceb0729))
    (fp_line (start -1.8 -1.8) (end -1.8 9.4)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 71ee342b-fddd-4f97-be16-a3fe9fa6a92d))
    (fp_line (start -1.8 9.4) (end 4.35 9.4)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8b8f73df-2dc8-4f12-aa26-0ddc91ea2e82))
    (fp_line (start 4.35 -1.8) (end -1.8 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74514bd7-c878-426d-a0b3-1d253c9f1fa2))
    (fp_line (start 4.35 9.4) (end 4.35 -1.8)
      (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e78e0df-b14d-4af0-b4a3-ebeb7c961bd2))
    (fp_line (start -1.27 0) (end 0 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5a26c541-628e-4fd2-a6da-6e6b67a0e2ea))
    (fp_line (start -1.27 8.89) (end -1.27 0)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c81ac99d-4f3d-4d0e-818e-56a7c62fbb17))
    (fp_line (start 0 -1.27) (end 3.81 -1.27)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 128644fd-c882-4c95-9f64-c80c32a5086b))
    (fp_line (start 3.81 -1.27) (end 3.81 8.89)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0462988-f41b-4e45-bcc5-ab5cf516682c))
    (fp_line (start 3.81 8.89) (end -1.27 8.89)
      (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 82307bb5-5aed-412e-89cf-42bd339e9ec0))
    (pad "1" thru_hole circle (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 45 "GP_P1_LEFT") (pinfunction "UP") (pintype "output") (tstamp 6a780d88-5dfd-4e04-8022-666e8d8e9f11))
    (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 47 "GP_P1_UP") (pinfunction "DOWN") (pintype "output") (tstamp a3a3ee38-ac29-4180-9d01-9d8450f713b7))
    (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 44 "GP_P1_RIGHT") (pinfunction "LEFT") (pintype "output") (tstamp 66dd55b7-fdcb-4b94-b6b2-d2f889f7653f))
    (pad "4" thru_hole oval (at 0 7.62) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 4 "VCC") (pinfunction "VCC") (pintype "input") (tstamp c0f27fca-1c0c-4cf1-91a3-096f01b07fd9))
    (pad "5" thru_hole oval (at 2.54 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 43 "GP_P1_BUT_1") (pinfunction "RIGHT") (pintype "output") (tstamp c2b6541a-2b8c-4c57-b463-169fca74f49c))
    (pad "6" thru_hole oval (at 2.54 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 42 "GP_P1_BUT_2") (pinfunction "PRIMARY") (pintype "output") (tstamp caea9859-ef62-4229-9b62-b6b77f8ee52e))
    (pad "7" thru_hole oval (at 2.54 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
      (net 46 "GP_P1_DOWN") (pinfunction "SECONDARY") (pintype "output") (tstamp 31331d8b-3bd5-4ad4-8bdf-3c3db425f9d2))
    (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_2x04_P2.54mm_Vertical.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Module:Arduino_UNO_R3" (layer "B.Cu")
    (tstamp 186f5b5c-ddb3-490a-ae64-32519350e4fc)
    (at 27.94 66.04)
    (descr "Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
    (tags "Arduino UNO R3")
    (property "Field4" "")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (property "ki_description" "Arduino UNO Microcontroller Module, release 3")
    (property "ki_keywords" "Arduino UNO R3 Microcontroller Module Atmel AVR USB")
    (path "/e037481e-1397-4cfd-9c3c-4a1e6476185d")
    (attr through_hole)
    (fp_text reference "A1" (at -12.7 -25.4 180) (layer "B.SilkS") hide
        (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7a901f3b-f479-4206-a735-21de007c264f)
    )
    (fp_text value "STM32F091RC" (at 0 -22.86 180) (layer "B.Fab") hide
        (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 6b2108a4-b5f2-4526-9b95-6941b0f952ea)
    )
    (pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 1 "unconnected-(A1-NC-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp 44af3d2b-143c-4a8f-ad01-249857ddf7aa))
    (pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 2 "unconnected-(A1-IOREF-Pad2)") (pinfunction "IOREF") (pintype "output") (tstamp 99936de8-81ea-4f2a-8441-93a17c0c4871))
    (pad "3" thru_hole oval (at 5.08 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 3 "unconnected-(A1-~{RESET}-Pad3)") (pinfunction "~{RESET}") (pintype "input") (tstamp cd39845e-bab6-4b7b-bc50-b848f685477b))
    (pad "4" thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 4 "VCC") (pinfunction "3V3") (pintype "power_out") (tstamp c6b6706a-4e44-41a3-9714-a54d024949c7))
    (pad "5" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 5 "unconnected-(A1-+5V-Pad5)") (pinfunction "+5V") (pintype "power_out") (tstamp 6833e498-9991-44f1-b0c2-dc573bb483d1))
    (pad "6" thru_hole oval (at 12.7 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 03c058eb-af06-4ad4-838a-7f1e52090dca))
    (pad "7" thru_hole oval (at 15.24 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b4db02d4-4000-4773-919e-7071d7e08ff6))
    (pad "8" thru_hole oval (at 17.78 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 7 "unconnected-(A1-VIN-Pad8)") (pinfunction "VIN") (pintype "power_in") (tstamp a948cbd9-c383-455e-9866-c39293141199))
    (pad "9" thru_hole oval (at 22.86 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 49 "GP_P2_DOWN") (pinfunction "A0") (pintype "bidirectional") (tstamp 984ee39f-57cb-425c-bb8e-1540a997e138))
    (pad "10" thru_hole oval (at 25.4 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 53 "GP_P2_BUT_2") (pinfunction "A1") (pintype "bidirectional") (tstamp ce74ec1b-4811-4d64-9472-d6e0b7c34dfc))
    (pad "11" thru_hole oval (at 27.94 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 52 "GP_P2_BUT_1") (pinfunction "A2") (pintype "bidirectional") (tstamp 0a01e545-4808-4e96-874c-41cb95413b76))
    (pad "12" thru_hole oval (at 30.48 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 50 "GP_P2_LEFT") (pinfunction "A3") (pintype "bidirectional") (tstamp 6223031d-c054-4f19-8735-5fcb93d421a9))
    (pad "13" thru_hole oval (at 33.02 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 48 "GP_P2_UP") (pinfunction "SDA/A4") (pintype "bidirectional") (tstamp 8c0a748f-f657-4b20-948c-d6a03dd8401c))
    (pad "14" thru_hole oval (at 35.56 0 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 51 "GP_P2_RIGHT") (pinfunction "SCL/A5") (pintype "bidirectional") (tstamp a17c3128-ce08-4623-bcec-6b7ec1297ea4))
    (pad "15" thru_hole oval (at 35.56 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 8 "unconnected-(A1-D0{slash}RX-Pad15)") (pinfunction "D0/RX") (pintype "bidirectional") (tstamp f064c20c-d646-472c-9177-a1002a2b31c6))
    (pad "16" thru_hole oval (at 33.02 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 9 "PPU_HBLANK") (pinfunction "D1/TX") (pintype "bidirectional") (tstamp 29518c81-950a-4e03-9e67-483868b834b4))
    (pad "17" thru_hole oval (at 30.48 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 46 "GP_P1_DOWN") (pinfunction "D2") (pintype "bidirectional") (tstamp 6465f0c8-3210-4f34-ae71-121b0881033f))
    (pad "18" thru_hole oval (at 27.94 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 42 "GP_P1_BUT_2") (pinfunction "D3") (pintype "bidirectional") (tstamp d6534579-556e-4683-816a-f2f598e50e09))
    (pad "19" thru_hole oval (at 25.4 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 43 "GP_P1_BUT_1") (pinfunction "D4") (pintype "bidirectional") (tstamp bf02f91c-08b0-463f-93b8-c5bfec36c658))
    (pad "20" thru_hole oval (at 22.86 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 45 "GP_P1_LEFT") (pinfunction "D5") (pintype "bidirectional") (tstamp eaed1c04-8fdd-4e26-a74c-aeee86f75e92))
    (pad "21" thru_hole oval (at 20.32 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 47 "GP_P1_UP") (pinfunction "D6") (pintype "bidirectional") (tstamp 0363c988-3128-41dc-9f1d-8e636ec65c0c))
    (pad "22" thru_hole oval (at 17.78 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 44 "GP_P1_RIGHT") (pinfunction "D7") (pintype "bidirectional") (tstamp f710686a-aaae-4e77-bd99-acd2af9dd300))
    (pad "23" thru_hole oval (at 13.72 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 10 "SPI_SR") (pinfunction "D8") (pintype "bidirectional") (tstamp 97067b86-2fd1-45a4-9df4-ac5b7bff66ed))
    (pad "24" thru_hole oval (at 11.18 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 11 "PPU_VBLANK") (pinfunction "D9") (pintype "bidirectional") (tstamp 1a1897e4-7725-4223-a8e8-a9d19443850c))
    (pad "25" thru_hole oval (at 8.64 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 12 "unconnected-(A1-D10-Pad25)") (pinfunction "D10") (pintype "bidirectional") (tstamp d72d22d0-8c91-4e96-a6c3-ebc4ae358807))
    (pad "26" thru_hole oval (at 6.1 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 13 "SPI_MOSI") (pinfunction "D11") (pintype "bidirectional") (tstamp 95bef109-f10c-470c-8783-eca128677c89))
    (pad "27" thru_hole oval (at 3.56 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 14 "unconnected-(A1-D12-Pad27)") (pinfunction "D12") (pintype "bidirectional") (tstamp 406569cf-9187-4a4d-b797-ce4224940f9a))
    (pad "28" thru_hole oval (at 1.02 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 15 "SPI_CLK") (pinfunction "D13") (pintype "bidirectional") (tstamp e1740cf3-aa55-4fcc-89c6-3959ad48027e))
    (pad "29" thru_hole oval (at -1.52 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bf967080-c14f-4dc8-bc50-b1ef36506d8a))
    (pad "30" thru_hole oval (at -4.06 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 16 "unconnected-(A1-AREF-Pad30)") (pinfunction "AREF") (pintype "input") (tstamp a7765549-6a55-4f2f-97fe-fe8acf99632e))
    (pad "31" thru_hole oval (at -6.6 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 17 "unconnected-(A1-SDA{slash}A4-Pad31)") (pinfunction "SDA/A4") (pintype "bidirectional") (tstamp 0d8bd3f4-bfdc-40fa-95a7-4f7072c08d46))
    (pad "32" thru_hole oval (at -9.14 -48.26 270) (size 1.6 1.6) (drill 1) (layers "*.Cu" "*.Mask")
      (net 18 "unconnected-(A1-SCL{slash}A5-Pad32)") (pinfunction "SCL/A5") (pintype "bidirectional") (tstamp 18c2fb6b-bad6-419f-baad-0b3799b61d7b))
    (model "${KICAD6_3DMODEL_DIR}/Module.3dshapes/Arduino_UNO_R3.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (gr_text "ARDUINO SHIELD\n(TOP VIEW)" (at 40.64 45.72) (layer "Dwgs.User") (tstamp 656b16ea-49d4-4095-8265-37be65a3a42d)
    (effects (font (size 1.5 1.5) (thickness 0.3) bold))
  )
  (gr_text "GAMEPAD LAYOUT/PINOUT" (at 96.52 25.4) (layer "Dwgs.User") (tstamp cdeebddc-f1da-4018-94e7-d5b28005d3d2)
    (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  )
  (gr_text "PWM AUDIO OUTPUT LOW PASS FILTER" (at 76.2 73.66) (layer "Dwgs.User") (tstamp d521f0de-697c-4611-b225-7d414829a2ae)
    (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify left bottom))
  )

  (segment (start 30.48 55.88) (end 35.56 55.88) (width 0.25) (layer "F.Cu") (net 4) (tstamp 11fa306b-1cd7-4dcd-9621-50e59ca4ed40))
  (segment (start 50.8 53.34) (end 58.42 53.34) (width 0.25) (layer "F.Cu") (net 4) (tstamp 650643a3-e4a4-4406-834e-2cc2f8bb82eb))
  (segment (start 35.56 63.5) (end 35.56 53.34) (width 0.25) (layer "F.Cu") (net 4) (tstamp 779e37ae-270e-4be6-8499-b71106cd9f4f))
  (segment (start 50.8 30.48) (end 50.8 53.34) (width 0.25) (layer "F.Cu") (net 4) (tstamp 79600088-225f-4285-abbf-0f44311509be))
  (segment (start 50.8 53.34) (end 35.56 53.34) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9651e340-72ba-4300-8f94-cc204fc925c4))
  (via (at 35.56 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 7d0e0153-fdcb-4bf5-9879-4f900c525f60))
  (segment (start 35.56 66.04) (end 35.56 63.5) (width 0.25) (layer "B.Cu") (net 4) (tstamp 007d7c97-2f15-4a2d-b74b-2324a077d066))
  (segment (start 111.76 83.82) (end 109.22 86.36) (width 0.25) (layer "F.Cu") (net 6) (tstamp 0e2f8487-821f-4980-8996-6ffcec039f8e))
  (segment (start 27.94 20.32) (end 27.94 35.56) (width 0.25) (layer "F.Cu") (net 6) (tstamp 22eab51a-14ab-4156-8ae1-e9f6fb87e877))
  (segment (start 106.68 78.74) (end 111.76 83.82) (width 0.25) (layer "F.Cu") (net 6) (tstamp 6bf39048-2bc0-4a75-b80a-db2a4df4116d))
  (segment (start 109.22 86.36) (end 99.06 86.36) (width 0.25) (layer "F.Cu") (net 6) (tstamp a5eba4d9-9324-49d7-adc2-47964079fede))
  (segment (start 27.94 35.56) (end 27.94 38.1) (width 0.25) (layer "F.Cu") (net 6) (tstamp b4885c57-2cbf-4b6e-b47c-e9fc854f5b64))
  (segment (start 104.26 78.74) (end 106.68 78.74) (width 0.25) (layer "F.Cu") (net 6) (tstamp c87b0d52-9112-490f-a93a-3d54e0b89559))
  (segment (start 99.06 86.36) (end 99.06 88.9) (width 0.25) (layer "F.Cu") (net 6) (tstamp ce078426-027d-4d63-bcce-7aed16e11f5b))
  (segment (start 99.06 88.9) (end 86.36 88.9) (width 0.25) (layer "F.Cu") (net 6) (tstamp e0149dac-3804-4a41-aa25-d25d749a8ccb))
  (via (at 27.94 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp cb79c0b8-e210-44c1-9a63-3c5c8a5e3849))
  (segment (start 27.94 19.3) (end 27.94 20.32) (width 0.25) (layer "B.Cu") (net 6) (tstamp d6b9d96f-9e05-43b1-b8a2-ea49ff096317))
  (segment (start 26.42 17.78) (end 27.94 19.3) (width 0.25) (layer "B.Cu") (net 6) (tstamp fa1b0a1e-fb4f-4506-aee4-faff9b9fa8f9))
  (segment (start 60.96 40.64) (end 53.34 40.64) (width 0.25) (layer "F.Cu") (net 9) (tstamp 4ecea7b6-44ab-4294-8332-edd5841f5f54))
  (segment (start 48.26 40.64) (end 35.56 40.64) (width 0.25) (layer "F.Cu") (net 9) (tstamp a2cde76d-6582-4440-ba13-ce40da196913))
  (segment (start 35.56 40.64) (end 35.56 38.1) (width 0.25) (layer "F.Cu") (net 9) (tstamp c89e4d09-0060-4966-b5c4-2d6fa9af3e33))
  (segment (start 60.96 20.32) (end 60.96 40.64) (width 0.25) (layer "F.Cu") (net 9) (tstamp e213ce68-f2f8-4521-a1f5-6e39356d4bfc))
  (via (at 60.96 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp 7e283df5-523c-4598-894c-42ac0984a61f))
  (via (at 48.26 40.64) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp bb78d93a-59b9-4dcf-921a-7dec5a5e1f81))
  (via (at 53.34 40.64) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 9) (tstamp c8acddac-6a45-49f0-8644-99041f484ab5))
  (segment (start 53.34 40.64) (end 48.26 40.64) (width 0.25) (layer "B.Cu") (net 9) (tstamp 635b57cf-3eb4-4156-9916-b28630c009d4))
  (segment (start 60.96 17.78) (end 60.96 20.32) (width 0.25) (layer "B.Cu") (net 9) (tstamp f802cf08-3b28-483b-a211-8738958ced14))
  (segment (start 43.18 38.1) (end 38.1 38.1) (width 0.25) (layer "F.Cu") (net 10) (tstamp 060badf2-a830-4185-83aa-83df1def6fff))
  (segment (start 43.18 20.32) (end 43.18 38.1) (width 0.25) (layer "F.Cu") (net 10) (tstamp c3f60514-b242-4be8-aa53-991cc2dd701a))
  (via (at 43.18 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 10) (tstamp e684cc05-1982-4af0-90ec-2c26ab6a4ced))
  (segment (start 43.18 19.3) (end 43.18 20.32) (width 0.25) (layer "B.Cu") (net 10) (tstamp 6c73a116-3c29-49f0-83da-77f4b3633008))
  (segment (start 41.66 17.78) (end 43.18 19.3) (width 0.25) (layer "B.Cu") (net 10) (tstamp 959dffe5-e710-49fc-9245-d7670ba92844))
  (segment (start 38.1 35.56) (end 40.64 35.56) (width 0.25) (layer "F.Cu") (net 11) (tstamp 498bb700-a90d-46d1-855a-7b13a491ddc4))
  (segment (start 40.64 20.32) (end 40.64 22.86) (width 0.25) (layer "F.Cu") (net 11) (tstamp 5bfb54e2-9c09-40b4-a4f3-1bf3f4c7f1ad))
  (segment (start 40.64 27.94) (end 40.64 35.56) (width 0.25) (layer "F.Cu") (net 11) (tstamp 80431b20-5b84-4527-b12e-88f4e9e7e89c))
  (segment (start 40.64 22.86) (end 40.64 27.94) (width 0.25) (layer "F.Cu") (net 11) (tstamp a6708fe1-648b-4095-b977-5f212acb8000))
  (via (at 40.64 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 11) (tstamp 3ab7a843-b00b-45d5-b709-9cd765eec4f6))
  (segment (start 39.12 17.78) (end 40.64 19.3) (width 0.25) (layer "B.Cu") (net 11) (tstamp b08559c0-52c6-4af9-a4bf-41a0ea94934b))
  (segment (start 40.64 19.3) (end 40.64 20.32) (width 0.25) (layer "B.Cu") (net 11) (tstamp bf2e8768-20df-4dde-ac5c-6fe4aa204ea2))
  (via (at 38.1 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 12) (tstamp eead14fb-48f7-422c-9a67-4b42f2c2e42a))
  (segment (start 38.1 19.3) (end 38.1 20.32) (width 0.25) (layer "B.Cu") (net 12) (tstamp 1f305b39-9a9a-4f14-b68e-2c1e9130c59a))
  (segment (start 36.58 17.78) (end 38.1 19.3) (width 0.25) (layer "B.Cu") (net 12) (tstamp f4344c4c-ae90-4553-bb14-dda167acbb43))
  (segment (start 35.56 35.56) (end 35.56 20.32) (width 0.25) (layer "F.Cu") (net 13) (tstamp 54785771-fab6-4c9e-be19-62545ff60461))
  (via (at 35.56 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 13) (tstamp a962a02b-1958-4803-bda8-bbc50303ff19))
  (segment (start 35.56 19.3) (end 35.56 20.32) (width 0.25) (layer "B.Cu") (net 13) (tstamp 5ae000df-d653-4d05-ab98-cb9cd5fd6c7e))
  (segment (start 34.04 17.78) (end 35.56 19.3) (width 0.25) (layer "B.Cu") (net 13) (tstamp b5bf2e63-e13d-4f6a-981d-9d4b93fb40de))
  (via (at 33.02 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 14) (tstamp 878b1885-c48d-4c98-b0f9-ede4475a25cf))
  (segment (start 31.5 17.78) (end 33.02 19.3) (width 0.25) (layer "B.Cu") (net 14) (tstamp 61a3e4fd-a6e5-4e74-aa13-bda5748b7271))
  (segment (start 33.02 19.3) (end 33.02 20.32) (width 0.25) (layer "B.Cu") (net 14) (tstamp ae405748-77b8-437c-a96e-27b18a54d511))
  (segment (start 33.02 30.48) (end 33.02 35.56) (width 0.25) (layer "F.Cu") (net 15) (tstamp 57213237-96ad-4830-879c-1ad9121a6050))
  (segment (start 30.48 30.48) (end 33.02 30.48) (width 0.25) (layer "F.Cu") (net 15) (tstamp c3b0e28e-62fe-4aa9-960c-233cdd08e114))
  (segment (start 30.48 20.32) (end 30.48 30.48) (width 0.25) (layer "F.Cu") (net 15) (tstamp dccdded4-2587-4c64-9047-544e6624d062))
  (via (at 30.48 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 15) (tstamp 1168f50f-38f2-41fc-bbaf-6154aafe0035))
  (segment (start 30.48 19.3) (end 30.48 20.32) (width 0.25) (layer "B.Cu") (net 15) (tstamp 312aa1d3-0664-4016-945b-37a9e6a24406))
  (segment (start 28.96 17.78) (end 30.48 19.3) (width 0.25) (layer "B.Cu") (net 15) (tstamp dda62557-6c79-4255-937d-f8eeca9a7d9d))
  (via (at 25.4 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 16) (tstamp c5a9f4b5-cdf5-4487-a8d5-936126034459))
  (segment (start 25.4 19.3) (end 25.4 20.32) (width 0.25) (layer "B.Cu") (net 16) (tstamp 2c04991a-c733-49cb-b42f-a70d4c259502))
  (segment (start 23.88 17.78) (end 25.4 19.3) (width 0.25) (layer "B.Cu") (net 16) (tstamp 5b920b3f-aea5-4a37-8a5f-9461bf02dc62))
  (via (at 22.86 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 17) (tstamp 84270e06-0997-4b4b-a3a8-838cdc217361))
  (segment (start 21.34 17.78) (end 22.86 19.3) (width 0.25) (layer "B.Cu") (net 17) (tstamp 30202a7b-6ffa-42da-8b26-7b4d6493d19f))
  (segment (start 22.86 19.3) (end 22.86 20.32) (width 0.25) (layer "B.Cu") (net 17) (tstamp e1a63e85-da19-48f1-b9d9-16bbe05a6192))
  (via (at 20.32 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 18) (tstamp 883b6ac3-5355-4171-9105-c08413e28d98))
  (segment (start 20.32 19.3) (end 20.32 20.32) (width 0.25) (layer "B.Cu") (net 18) (tstamp ea2bbc4a-d080-4d08-a80c-ada6881f220d))
  (segment (start 18.8 17.78) (end 20.32 19.3) (width 0.25) (layer "B.Cu") (net 18) (tstamp ef811e33-d75f-4815-bfb4-cf9de0cf9780))
  (segment (start 99.06 78.74) (end 99.06 81.36) (width 0.25) (layer "F.Cu") (net 19) (tstamp 362bd879-cedf-4de4-992c-7a9a9b8b5f2f))
  (segment (start 106.88 81.36) (end 109.26 83.74) (width 0.25) (layer "F.Cu") (net 19) (tstamp 8a6fd3f1-a2b4-4c72-b92d-6f4aa5fcd679))
  (segment (start 99.06 81.36) (end 106.88 81.36) (width 0.25) (layer "F.Cu") (net 19) (tstamp ce8a5541-db96-4520-b513-c1761a7e1ceb))
  (segment (start 30.48 53.88) (end 25.94 53.88) (width 0.25) (layer "F.Cu") (net 21) (tstamp 17b2c4a5-3891-4e03-9e92-64063e476138))
  (segment (start 25.4 35.56) (end 25.4 38.1) (width 0.25) (layer "F.Cu") (net 21) (tstamp 3e9d6080-be7a-4e29-a36c-9ff205454e1d))
  (segment (start 25.4 38.1) (end 25.4 53.34) (width 0.25) (layer "F.Cu") (net 21) (tstamp b4553731-a362-41f8-9b6d-f20554824b3c))
  (segment (start 25.94 53.88) (end 25.4 53.34) (width 0.25) (layer "F.Cu") (net 21) (tstamp dbb59304-cd35-4732-b48a-ec20397b585f))
  (segment (start 86.36 78.74) (end 91.44 78.74) (width 0.25) (layer "F.Cu") (net 30) (tstamp 65b76877-86b9-46fb-965c-9bea3100bbee))
  (segment (start 86.36 29.9) (end 86.36 45.72) (width 0.25) (layer "F.Cu") (net 35) (tstamp 5fe18a3e-b9c7-481c-b36d-b8ce95817d33))
  (segment (start 119.38 29.9) (end 86.36 29.9) (width 0.25) (layer "F.Cu") (net 35) (tstamp 9340194f-7e50-4719-9ed9-f54f508b99a2))
  (segment (start 79.86 45.72) (end 86.36 45.72) (width 0.25) (layer "F.Cu") (net 35) (tstamp c68dbfe9-9809-420b-a36f-df3687c6ebc7))
  (segment (start 119.38 34.98) (end 119.38 29.9) (width 0.25) (layer "F.Cu") (net 35) (tstamp e68120a3-0965-473b-8cb4-a0ca528b9231))
  (segment (start 116.84 32.44) (end 99.06 32.44) (width 0.25) (layer "F.Cu") (net 36) (tstamp 4be3fda9-b9ca-45cd-9df2-0a24ce6eddcb))
  (segment (start 90.8025 37.075) (end 97.3025 37.075) (width 0.25) (layer "F.Cu") (net 36) (tstamp 58af8821-8388-4294-86d2-766c67ddf06d))
  (segment (start 99.06 32.44) (end 97.3025 34.1975) (width 0.25) (layer "F.Cu") (net 36) (tstamp 670acce2-db03-4573-b378-84983286e19e))
  (segment (start 116.84 34.98) (end 116.84 32.44) (width 0.25) (layer "F.Cu") (net 36) (tstamp 8dfa55b6-6d52-4d8f-adc9-b516e946e0b4))
  (segment (start 97.3025 34.1975) (end 97.3025 37.075) (width 0.25) (layer "F.Cu") (net 36) (tstamp b640ba37-0467-4b6f-819f-5295a651741f))
  (segment (start 114.3 34.98) (end 107.39 41.89) (width 0.25) (layer "F.Cu") (net 37) (tstamp c21e1478-6c78-40c5-a37d-b6622b29f99c))
  (segment (start 107.39 41.89) (end 107.39 45.72) (width 0.25) (layer "F.Cu") (net 37) (tstamp c931db2a-d74c-4e47-855b-630ebd34e60c))
  (segment (start 100.89 45.72) (end 107.39 45.72) (width 0.25) (layer "F.Cu") (net 37) (tstamp eab0f61b-49b2-4d8c-a693-0e9e57e65b28))
  (segment (start 97.3025 41.575) (end 90.8025 41.575) (width 0.25) (layer "F.Cu") (net 38) (tstamp 17e5dd6c-ab52-4c90-84a2-e192a9c40081))
  (segment (start 137.16 50.22) (end 143.66 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp 18898b1e-2de4-4e86-aa0c-a2bab74ee144))
  (segment (start 86.36 50.22) (end 79.86 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp 1c13e897-8b17-4d86-b993-e2178b9eb3f5))
  (segment (start 90.8025 41.575) (end 90.8025 45.7775) (width 0.25) (layer "F.Cu") (net 38) (tstamp 2a176bd0-5da9-4cf4-8ba2-eb2b1872f7c9))
  (segment (start 86.36 54.695) (end 90.73 59.065) (width 0.25) (layer "F.Cu") (net 38) (tstamp 3a97836e-da72-4977-8cc5-ae92de6dde7a))
  (segment (start 97.3025 41.575) (end 97.3025 46.6325) (width 0.25) (layer "F.Cu") (net 38) (tstamp 497ef38d-1a3a-4dd0-a541-94910346adca))
  (segment (start 115.615 59.065) (end 124.46 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp 4e73bc6d-7d9d-4222-8425-e11f2ccb149e))
  (segment (start 97.23 59.065) (end 90.73 59.065) (width 0.25) (layer "F.Cu") (net 38) (tstamp 5efd3b08-23d4-4794-a46c-b420bccf7e29))
  (segment (start 97.3025 46.6325) (end 100.89 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp 61b87c70-7718-4700-9171-ccb22478fc94))
  (segment (start 100.085 41.575) (end 97.3025 41.575) (width 0.25) (layer "F.Cu") (net 38) (tstamp 74ec0050-feb1-413f-8583-eb6e42d12e18))
  (segment (start 101.6 40.06) (end 100.085 41.575) (width 0.25) (layer "F.Cu") (net 38) (tstamp 8cd2a7be-32f1-42a2-8b03-49b256508be7))
  (segment (start 86.36 50.22) (end 86.36 54.695) (width 0.25) (layer "F.Cu") (net 38) (tstamp 9a21638e-a572-44f6-b6bf-c87ae455cf72))
  (segment (start 111.76 34.98) (end 101.6 34.98) (width 0.25) (layer "F.Cu") (net 38) (tstamp a6b46ff3-08c2-44ab-83ff-d1ce556ebc72))
  (segment (start 97.23 59.065) (end 115.615 59.065) (width 0.25) (layer "F.Cu") (net 38) (tstamp ab130863-c0dc-4714-9e99-d692e0e78aa1))
  (segment (start 130.96 50.22) (end 137.16 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp b690b133-c91d-40f3-8577-076ca015107f))
  (segment (start 101.6 34.98) (end 101.6 40.06) (width 0.25) (layer "F.Cu") (net 38) (tstamp c9edabb1-152d-43dc-9909-4e5924c43cfe))
  (segment (start 124.46 50.22) (end 130.96 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp ccc7f8bf-b5b6-4dd0-8752-6bb5dab2e42e))
  (segment (start 90.8025 45.7775) (end 86.36 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp f1ec7b37-62f2-4001-ac3f-84a996945886))
  (segment (start 100.89 50.22) (end 107.39 50.22) (width 0.25) (layer "F.Cu") (net 38) (tstamp f3ac38b9-7b32-45af-bc8b-ea7097b0a449))
  (segment (start 137.16 37.52) (end 137.16 45.72) (width 0.25) (layer "F.Cu") (net 39) (tstamp 7cd2309c-22b1-4ff7-a891-54457e935b9a))
  (segment (start 137.16 45.72) (end 143.66 45.72) (width 0.25) (layer "F.Cu") (net 39) (tstamp a350257d-937e-4e68-85b2-fcfda467be2c))
  (segment (start 119.38 37.52) (end 137.16 37.52) (width 0.25) (layer "F.Cu") (net 39) (tstamp bcdeba1d-122e-4063-85db-71be6048ded4))
  (segment (start 130.96 45.72) (end 124.46 45.72) (width 0.25) (layer "F.Cu") (net 40) (tstamp 3462604a-2581-46b0-8dff-d11e7a0a6a5b))
  (segment (start 116.84 45.14) (end 117.42 45.72) (width 0.25) (layer "F.Cu") (net 40) (tstamp 5d494717-24c7-4693-bbab-ccfb21fd8315))
  (segment (start 116.84 37.52) (end 116.84 45.14) (width 0.25) (layer "F.Cu") (net 40) (tstamp 823c62b5-d4e8-46d1-87eb-b6f2a910c2ce))
  (segment (start 117.42 45.72) (end 124.46 45.72) (width 0.25) (layer "F.Cu") (net 40) (tstamp f4f7eebc-a2c3-4977-a668-32a962951a88))
  (segment (start 112.495 54.565) (end 97.23 54.565) (width 0.25) (layer "F.Cu") (net 41) (tstamp 13a97c58-37d8-4c1f-93df-e15ebd64f8e4))
  (segment (start 97.23 54.565) (end 90.73 54.565) (width 0.25) (layer "F.Cu") (net 41) (tstamp 1a3b546a-1eaf-46ef-9b06-4049cfb100b3))
  (segment (start 114.3 52.76) (end 112.495 54.565) (width 0.25) (layer "F.Cu") (net 41) (tstamp 5aabb82e-813f-4783-87cc-6855fea30abc))
  (segment (start 114.3 37.52) (end 114.3 52.76) (width 0.25) (layer "F.Cu") (net 41) (tstamp 7682ec2e-e643-40bb-89d1-9aa0de236ccf))
  (segment (start 53.34 25.4) (end 55.88 25.4) (width 0.25) (layer "F.Cu") (net 42) (tstamp 4de6f6c3-1a8b-4f6a-9f05-19bf8cdc6037))
  (segment (start 55.88 20.32) (end 55.88 25.4) (width 0.25) (layer "F.Cu") (net 42) (tstamp a5f21e5f-5697-4c5a-9f42-06554c9b4654))
  (via (at 55.88 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 42) (tstamp 998a3523-6b32-4045-8022-74b4e68b48f6))
  (segment (start 55.88 17.78) (end 55.88 20.32) (width 0.25) (layer "B.Cu") (net 42) (tstamp a018e619-900a-4fd9-9d08-15f992d18663))
  (segment (start 53.34 20.32) (end 53.34 22.86) (width 0.25) (layer "F.Cu") (net 43) (tstamp 28c82faa-a43c-4434-a98b-c7966d902b75))
  (via (at 53.34 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 43) (tstamp ff625627-2288-4254-96a0-6e1463f07a6e))
  (segment (start 53.34 17.78) (end 53.34 20.32) (width 0.25) (layer "B.Cu") (net 43) (tstamp c4ebb928-d752-44b4-a721-42d369d2ce64))
  (segment (start 50.8 27.94) (end 45.72 27.94) (width 0.25) (layer "F.Cu") (net 44) (tstamp 43327e8d-2f2e-401a-92ad-2334ece5b034))
  (segment (start 45.72 20.32) (end 45.72 27.94) (width 0.25) (layer "F.Cu") (net 44) (tstamp a241a55e-b7bf-42ec-ad49-20d3b8ef6182))
  (via (at 45.72 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 44) (tstamp 05437b32-3c80-4083-93be-8bfeec812416))
  (segment (start 45.72 17.78) (end 45.72 20.32) (width 0.25) (layer "B.Cu") (net 44) (tstamp 9d272a6f-f541-4eb2-9e9e-2aa6d8dfdb27))
  (segment (start 50.8 20.32) (end 50.8 22.86) (width 0.25) (layer "F.Cu") (net 45) (tstamp 481b17c0-ec33-4110-95e8-e73b8df66303))
  (via (at 50.8 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 45) (tstamp d02bc169-8036-4e33-bea7-00f56b0980af))
  (segment (start 50.8 17.78) (end 50.8 20.32) (width 0.25) (layer "B.Cu") (net 45) (tstamp 6ce57e92-eed5-45db-a22c-7555a0de31b7))
  (segment (start 58.42 20.32) (end 58.42 27.94) (width 0.25) (layer "F.Cu") (net 46) (tstamp 16861a50-91a0-4cda-9871-6e27b424462d))
  (segment (start 53.34 27.94) (end 58.42 27.94) (width 0.25) (layer "F.Cu") (net 46) (tstamp acf78f43-8992-4a96-8016-ee3a31ed3831))
  (via (at 58.42 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 46) (tstamp f528f9f7-e26e-44e1-b920-aff788a93d41))
  (segment (start 58.42 17.78) (end 58.42 20.32) (width 0.25) (layer "B.Cu") (net 46) (tstamp 0292a854-d310-4be9-a12a-8ba9c7350aef))
  (segment (start 48.26 20.32) (end 48.26 25.4) (width 0.25) (layer "F.Cu") (net 47) (tstamp 20e5abff-3615-4136-a324-ceab1f530600))
  (segment (start 50.8 25.4) (end 48.26 25.4) (width 0.25) (layer "F.Cu") (net 47) (tstamp 52f76421-f921-409f-801a-18f34811ba34))
  (via (at 48.26 20.32) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 47) (tstamp b4ab2922-d113-48f3-9938-a3730f4f01a0))
  (segment (start 48.26 17.78) (end 48.26 20.32) (width 0.25) (layer "B.Cu") (net 47) (tstamp 2d831c71-6d56-4539-8bbc-32a0b4026d41))
  (segment (start 58.42 58.42) (end 60.96 58.42) (width 0.25) (layer "F.Cu") (net 48) (tstamp 6437ade7-f219-4c65-a1c2-df1cefc75fb5))
  (segment (start 60.96 58.42) (end 60.96 63.5) (width 0.25) (layer "F.Cu") (net 48) (tstamp 9cb909a1-c9fc-4d65-8645-4cf865285daf))
  (via (at 60.96 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 48) (tstamp 77ca5ae0-296a-4d6b-a0d8-8a9ffece1623))
  (segment (start 60.96 66.04) (end 60.96 63.5) (width 0.25) (layer "B.Cu") (net 48) (tstamp 9b322e17-e814-4e88-919d-52a2d7fcadc2))
  (segment (start 50.8 55.88) (end 50.8 63.5) (width 0.25) (layer "F.Cu") (net 49) (tstamp 2325fd44-6164-4b39-a02d-5d4fcf4e9358))
  (segment (start 55.88 55.88) (end 50.8 55.88) (width 0.25) (layer "F.Cu") (net 49) (tstamp 6b9abe85-9302-4a80-b7f5-29c9dccafacb))
  (via (at 50.8 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 49) (tstamp a30266a9-ddda-456d-9042-d7ae64936193))
  (segment (start 50.8 66.04) (end 50.8 63.5) (width 0.25) (layer "B.Cu") (net 49) (tstamp f01b9b7a-dedd-483f-829b-90d32ad9fd00))
  (segment (start 58.42 63.5) (end 58.42 60.96) (width 0.25) (layer "F.Cu") (net 50) (tstamp 8b4957d1-dfc5-4479-a795-1f697ce6d7ac))
  (via (at 58.42 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (tstamp c78ef4f1-30bf-4500-84ea-a2935ea62aff))
  (segment (start 58.42 66.04) (end 58.42 63.5) (width 0.25) (layer "B.Cu") (net 50) (tstamp b537ecf6-b24a-4ecd-a42a-4ad94cbf87cf))
  (segment (start 58.42 55.88) (end 63.5 55.88) (width 0.25) (layer "F.Cu") (net 51) (tstamp 066ebebe-1895-49c4-88e7-d62a93acea46))
  (segment (start 63.5 63.5) (end 63.5 55.88) (width 0.25) (layer "F.Cu") (net 51) (tstamp 2e8834e6-e69e-4706-8121-ad1763052a19))
  (via (at 63.5 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 51) (tstamp 00d595de-cc2d-4072-b401-732ad957b9c6))
  (segment (start 63.5 66.04) (end 63.5 63.5) (width 0.25) (layer "B.Cu") (net 51) (tstamp 095d5a5b-64bc-4530-9cd7-20de14640714))
  (segment (start 55.88 63.5) (end 55.88 60.96) (width 0.25) (layer "F.Cu") (net 52) (tstamp c0baf7d0-48d3-4b9e-af23-c9308a3a4a2f))
  (via (at 55.88 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 52) (tstamp 8f9b95b6-8512-4e24-b1ee-691e46201bc2))
  (segment (start 55.88 66.04) (end 55.88 63.5) (width 0.25) (layer "B.Cu") (net 52) (tstamp 8dc3d744-c25a-480e-84cf-0c3936858253))
  (segment (start 53.34 63.5) (end 53.34 58.42) (width 0.25) (layer "F.Cu") (net 53) (tstamp 2bf44906-eaae-4d28-85c0-73bf256f76dd))
  (segment (start 55.88 58.42) (end 53.34 58.42) (width 0.25) (layer "F.Cu") (net 53) (tstamp 7863b17a-f73d-4f15-9c76-ad28d0e4ec1c))
  (via (at 53.34 63.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 53) (tstamp 91c690b3-096a-47bc-906c-05734471e6a1))
  (segment (start 53.34 66.04) (end 53.34 63.5) (width 0.25) (layer "B.Cu") (net 53) (tstamp 780f2944-1447-45f7-8494-a8af59e5ebe7))

)