aboutsummaryrefslogtreecommitdiff
path: root/hardware/hardware.kicad_pcb
blob: 3363ea1bd656afbae5b21146bae2adf293807132 (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
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
(kicad_pcb (version 20211014) (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)
      (disableapertmacros false)
      (usegerberextensions false)
      (usegerberattributes true)
      (usegerberadvancedattributes true)
      (creategerberjobfile true)
      (svguseinch false)
      (svgprecision 6)
      (excludeedgelayer true)
      (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-Pad1)")
  (net 2 "unconnected-(A1-Pad2)")
  (net 3 "unconnected-(A1-Pad3)")
  (net 4 "unconnected-(A1-Pad4)")
  (net 5 "VCC")
  (net 6 "GND")
  (net 7 "unconnected-(A1-Pad8)")
  (net 8 "POT_ATK")
  (net 9 "POT_REL")
  (net 10 "POT_WAV")
  (net 11 "Net-(A1-Pad12)")
  (net 12 "unconnected-(A1-Pad13)")
  (net 13 "D_SYNTH")
  (net 14 "unconnected-(A1-Pad15)")
  (net 15 "unconnected-(A1-Pad16)")
  (net 16 "unconnected-(A1-Pad17)")
  (net 17 "unconnected-(A1-Pad18)")
  (net 18 "unconnected-(A1-Pad19)")
  (net 19 "unconnected-(A1-Pad20)")
  (net 20 "unconnected-(A1-Pad21)")
  (net 21 "unconnected-(A1-Pad22)")
  (net 22 "unconnected-(A1-Pad23)")
  (net 23 "unconnected-(A1-Pad24)")
  (net 24 "unconnected-(A1-Pad25)")
  (net 25 "unconnected-(A1-Pad14)")
  (net 26 "unconnected-(A1-Pad27)")
  (net 27 "unconnected-(A1-Pad28)")
  (net 28 "unconnected-(A1-Pad30)")
  (net 29 "unconnected-(A1-Pad31)")
  (net 30 "unconnected-(A1-Pad32)")
  (net 31 "Net-(BAR1-Pad1)")
  (net 32 "Net-(BAR1-Pad11)")
  (net 33 "Net-(BAR1-Pad12)")
  (net 34 "Net-(BAR1-Pad13)")
  (net 35 "Net-(BAR1-Pad14)")
  (net 36 "Net-(BAR1-Pad15)")
  (net 37 "Net-(BAR1-Pad16)")
  (net 38 "Net-(BAR1-Pad17)")
  (net 39 "Net-(BAR1-Pad18)")
  (net 40 "Net-(BAR1-Pad19)")
  (net 41 "Net-(BAR1-Pad20)")
  (net 42 "Net-(C3-Pad1)")
  (net 43 "A_SYNTH")
  (net 44 "KB_IN")
  (net 45 "unconnected-(U1-Pad7)")
  (net 46 "AUDIO_OUT")
  (net 47 "unconnected-(U3-Pad6)")
  (net 48 "unconnected-(U3-Pad7)")
  (net 49 "unconnected-(U3-Pad8)")
  (net 50 "unconnected-(U3-Pad9)")
  (net 51 "unconnected-(U3-Pad10)")
  (net 52 "Net-(R1-Pad2)")
  (net 53 "PAD_F3")
  (net 54 "PAD_F#3")
  (net 55 "Net-(R7-Pad2)")
  (net 56 "Net-(R10-Pad1)")
  (net 57 "PAD_G3")
  (net 58 "Net-(R13-Pad2)")
  (net 59 "PAD_G#3")
  (net 60 "Net-(R19-Pad2)")
  (net 61 "PAD_A3")
  (net 62 "Net-(R28-Pad2)")
  (net 63 "PAD_A#3")
  (net 64 "Net-(R32-Pad2)")
  (net 65 "unconnected-(RV5-Pad3)")
  (net 66 "PAD_B3")
  (net 67 "Net-(R38-Pad2)")
  (net 68 "PAD_C4")
  (net 69 "Net-(R44-Pad2)")
  (net 70 "PRE_AMP")
  (net 71 "unconnected-(RV5-Pad1)")
  (net 72 "unconnected-(RV5-Pad2)")
  (net 73 "Net-(R62-Pad2)")
  (net 74 "Net-(R62-Pad1)")
  (net 75 "PAD_C#4")
  (net 76 "Net-(R3-Pad2)")
  (net 77 "Net-(R5-Pad2)")
  (net 78 "PAD_D4")
  (net 79 "PAD_D#4")
  (net 80 "Net-(R11-Pad2)")
  (net 81 "PAD_E4")
  (net 82 "PAD_F4")
  (net 83 "Net-(R15-Pad2)")
  (net 84 "Net-(R17-Pad2)")
  (net 85 "PAD_F#4")
  (net 86 "PAD_G4")
  (net 87 "Net-(R21-Pad2)")
  (net 88 "Net-(R24-Pad2)")
  (net 89 "Net-(R26-Pad2)")
  (net 90 "PAD_G#4")
  (net 91 "PAD_A4")
  (net 92 "Net-(R30-Pad2)")
  (net 93 "PAD_A#4")
  (net 94 "Net-(R34-Pad2)")
  (net 95 "Net-(R36-Pad2)")
  (net 96 "PAD_B4")
  (net 97 "PAD_C5")
  (net 98 "Net-(R40-Pad2)")
  (net 99 "Net-(R42-Pad2)")
  (net 100 "Net-(R46-Pad2)")
  (net 101 "Net-(J1-Pad1)")
  (net 102 "unconnected-(J1-Pad2)")
  (net 103 "unconnected-(J1-Pad3)")

  (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 00b0e5b6-9f8d-48ab-8c17-97136b0827ed)
    (at 231.14 99.06)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/38e3eaf8-4377-4e7b-89b2-34f95ff2036c")
    (attr through_hole)
    (fp_text reference "R45" (at 5.08 -2.37) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 85ae48e3-f69d-49a8-8918-5eab6e3b88b2)
    )
    (fp_text value "50k" (at 5.08 2.37) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5707035c-3b6c-4e03-ba7f-bbf55999ed58)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4dbf03d6-26a3-49a6-a55a-cc91e893fbc3)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 4267a6f8-4b4f-4c70-9abc-9e07ac458e97))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 49f51e8e-0694-4d99-bc2c-191ee7111f27))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 7d4b8cb4-be99-4e40-8a85-85c68fc7a727))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 92a6cc3b-3ebc-4fae-a45f-db9c77001cac))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp a93acd53-5265-4255-b5a7-859ad1852222))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp ddda4f3f-2020-4bd4-bcb7-5104c4d91784))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 47415abb-7b64-4dc7-8959-7cf12f819572))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 907ee05e-ca66-4051-9062-ef0d13b08ec3))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b02ca170-5f1d-4e4b-b8f7-0ed43dd290a8))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c5612151-a013-4668-82a2-369afe7631a9))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 3566eba8-933e-46ed-80ab-9b09d09da81c))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 5e89c0e2-4d72-4091-b0b4-1e9e7195b8f1))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 66410ab9-9834-4c42-b167-b73454b9379e))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp b86d4b29-c101-4476-987b-19b7aa91a0a6))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp be92dfbb-a6f0-4605-bbea-30bad735658c))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp dcae76f5-b887-4e9d-902f-e3cdb4157426))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 69 "Net-(R44-Pad2)") (pintype "passive") (tstamp 8906124b-16fa-4520-bbdc-5ba95960a54c))
    (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 70 "PRE_AMP") (pintype "passive") (tstamp 9cae058f-26c2-43dc-b69e-82f2751f8fb7))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 0520d68c-bdec-4d10-8756-c63de315da38)
    (at 106.68 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/59a5ec6c-b1f4-42f0-b9f2-8ad60d1671d6")
    (attr through_hole)
    (fp_text reference "R27" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 80aba698-f856-4622-a82a-3c7395930a26)
    )
    (fp_text value "75" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 98afd5f8-5eb7-42cb-92a7-4bb0e32eb918)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7f704135-5782-421c-aa14-3367e8023e6d)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 02a911eb-13f8-468a-9e52-a59bcd594995))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 44a3d6e0-81da-4c53-981a-168ed3134773))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4a5d9644-2379-4885-b4a6-a8623a813c99))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 5d69439c-bbdc-43f5-bd41-c6169c74e2f5))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp c32c2d53-75ef-4371-af70-06a6dd412bcc))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp d381e237-63ae-40a2-b286-525994413db9))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4213bb43-a38a-4b14-8bc2-c3c7ea3d73b0))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp be813dec-c91f-4c06-808b-c742fd6baf99))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d86de366-b062-45a7-bdc6-eee27735041a))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f8f6e65d-70e9-4022-98b8-a0f0810215e8))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 0916deba-2579-44ce-bcc0-0c56d78c5bd3))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1088c273-6236-415b-85a3-3a7f49436fe6))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 1b045f10-2695-4131-ad5a-92fba9bb2b89))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp ce6d7a5f-f433-4e4b-b5b7-b76118558c78))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp e8194575-5e83-424b-9bc1-c0b79369f99c))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp f93adc76-130d-446e-8a52-b160db229a99))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 89 "Net-(R26-Pad2)") (pintype "passive") (tstamp f6530a81-d443-4ea6-a0d7-1ecd59edde3f))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 82 "PAD_F4") (pintype "passive") (tstamp 171fdca9-3abf-47ec-adfa-6909484da46f))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 0544e51f-a1f6-4520-9e18-2c81559d20e5)
    (at 71.12 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/b0bac9ab-52b0-4f6c-b31f-57408fffd69e")
    (attr through_hole)
    (fp_text reference "R12" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 27f6f06c-6a6f-41aa-983e-2ed54faf57de)
    )
    (fp_text value "0" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 431a886f-0366-450e-9433-efecde94f72b)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fe3512f5-f0c8-457b-9b0e-7ff15af35ae6)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 31d7bf48-899b-4826-868d-5c37c511b8fb))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 7589d575-3c60-4338-8ad2-67381d8dbc00))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 761f8229-ad1f-46d0-a4c6-52634f42d790))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7b88745f-7df0-4577-b301-892773fe28e9))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 97e0ddb7-737d-4e0d-abd9-eb5f27a76822))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c97c9739-9a1c-47ac-954c-28d6d7b353d4))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 461016e1-95fe-44ab-95ca-f0200c4375d7))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4e4c13d8-0a01-49c9-a795-a1d30ff9efd2))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d65df6c2-4899-4d81-bbd1-f9cd81497d96))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp fca26de5-9099-46f1-a650-97641a4fc54c))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 2dbaab6f-3c0a-40ae-8f5a-53d640e01991))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 931f560b-b7e4-4812-93db-e50c077f321a))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp a18631ab-5079-4828-aa4f-f40d0d360ca1))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp bab68a84-450b-43fa-9a66-c03fffb0911f))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp e0e0225d-f3f4-4560-a40a-20beae2e800a))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp f479c339-3a5b-4069-8d93-2d7eb1cca77d))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 80 "Net-(R11-Pad2)") (pintype "passive") (tstamp ef0449f2-db73-4cb2-8b94-6dc2c179b70a))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 63 "PAD_A#3") (pintype "passive") (tstamp 0ad6da9a-54d0-475b-9a71-59b23036a28f))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 1137625e-9deb-4179-afef-7a1727754f56)
    (at 160.02 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/cb583676-f0f4-48fb-9324-8b9916cbfde1")
    (attr through_hole)
    (fp_text reference "R42" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8409273d-5d5b-4abd-b68d-f877953b9e8c)
    )
    (fp_text value "12k" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8f11a648-190d-47f1-82f4-18c7de0d3372)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7421ed44-b2ba-4eec-9b46-eb0787e3df7d)
    )
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 0b68d6d1-9ca4-4793-93d3-960a4cebc6d8))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2de46d9f-c2c5-45d3-a8d0-d255427e1c74))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 3d2aac69-7a93-42ce-bdec-294901e8b63d))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 544697bd-ff15-4f2f-8f0a-60386a221da6))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 548988f4-1148-44a2-93c8-c4e2dd974051))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8b2cc2ff-a329-40e8-ac99-93bf663d310f))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 51544f8c-3a3b-4653-8ba4-fe6169a6496a))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a2bd4784-dafe-4bc6-a16b-37f404517c33))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a75a7602-1d05-42f6-9b7f-4e49cdfb7c30))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c0310ec3-3385-4986-bbdb-02ad51433aec))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 194e88f4-ca6a-442f-adb8-a71df3890b1d))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 1dc0d1d4-7c6b-4fc9-bc85-ac30b3af10ad))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4b69cf73-65c2-4d83-8d2c-c172d94c46ed))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 5192caae-fa78-429d-9f0f-47c77ca61cb3))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 750443db-6fdb-49ad-8a68-23dc4527ccb6))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp a951c2f2-2e99-4644-9f11-28331742f2a4))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 97 "PAD_C5") (pintype "passive") (tstamp 046cdf70-10c8-4d36-b50d-25b5143dfeb9))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 99 "Net-(R42-Pad2)") (pintype "passive") (tstamp ea742667-e99d-4dd1-a81a-dc5698c8d3cb))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 12fc5c40-8cf0-4057-aa98-3f0c350946a8)
    (at 231.14 101.6)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/8cd3b491-0fa2-47c8-b02b-01c86d3a8279")
    (attr through_hole)
    (fp_text reference "R44" (at 5.08 -2.37) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp cb04bb35-2374-4238-9f69-b57ba88986a9)
    )
    (fp_text value "10k" (at 5.08 2.37) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3a6b7f30-7a81-4acc-86db-af56176cc38f)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b15e4652-907b-47d3-b713-dceb2958e135)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 029c6774-3d5c-4302-afcf-642fabe31167))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 086f30e9-cf6b-4e0b-8dd9-e7b074b90d35))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 28180363-6e49-400d-b519-717f4e36e24e))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 7c2500a1-1aac-40b7-abe3-bc24d4eb524b))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 8457a96c-34b0-4d77-b1cd-d920f0a8202b))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f96b846d-b5ce-48da-a1fb-03759b9d1d03))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 32442fac-62e3-4f41-a4b9-c62d4c7cd87a))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3e92300f-3d2c-4ca4-ab36-a5bffd189da2))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4f8e6476-5c6f-4050-a70e-8e890573e684))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ab60a24c-771d-4685-893b-62d95dce6ee9))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0f6204f2-b27d-4528-9a39-dfc1e1030134))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 231ec965-8a0f-4d17-bfa6-242f8d7a943e))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 8d5bea4f-ae4d-4ddd-b07e-0f6afed76257))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp bd858ecc-087c-4eb2-8ebe-8bd6cd09a5e4))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp c9a03456-92da-4f1b-942c-28229096a482))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp d0a26974-d1b7-47dc-b087-3a21f66593f0))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 13 "D_SYNTH") (pintype "passive") (tstamp 81c604b3-14db-4f62-afbd-c96fd80c8ba1))
    (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 69 "Net-(R44-Pad2)") (pintype "passive") (tstamp e70c062c-1943-417e-bddd-c1c544d837c0))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 13180dd7-4146-4476-bc28-99a2cd0f2cf5)
    (at 231.14 96.52)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/f05a5253-64b1-4608-8d00-b39d16203ce7")
    (attr through_hole)
    (fp_text reference "R47" (at 5.08 -2.37) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 582c9720-aa00-4506-b06b-c0c6108bae42)
    )
    (fp_text value "50k" (at 5.08 2.37) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d003e0da-0bd6-48ae-8781-b1a966225b38)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3a2873fb-b81a-4481-9433-4b95b12a3a39)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0c7c3687-6994-4fbd-a5b0-e77e4f01c641))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 316ab6d4-1e4f-4fa6-8e75-d8e186b0ae1d))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3abaaa7e-2c46-4bc7-b16e-54ff8670dece))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 7e4ba275-89f8-471e-af43-450bd76ea9a8))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8e77cd59-a344-4e9e-920c-eff16a532b61))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp dcb6f4fa-f7c0-41a0-824e-aaef6f9c94dc))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 06c6557f-b710-4969-9b00-b5a0dc5a72d8))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 213a9836-ace1-4db7-8ccf-f743b0655d2d))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7b996203-ba0d-42c5-afe9-3b50b5d97bfc))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f9459b1e-8b85-4602-91d4-c21eefefce6a))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 13be9441-0b9a-484a-ad77-c76bd284fdd3))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 96f7a3ce-6bea-46ba-9020-e13dd10a28c6))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp a1b5ce39-ba1d-4810-8592-2b571837710d))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp c8e550d9-0602-4226-af77-8fc10db93f8e))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp d1630226-3e89-44cc-9c40-662e18a9db9d))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp dac1532f-3f57-4227-b66e-b742407aad48))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 100 "Net-(R46-Pad2)") (pintype "passive") (tstamp 0a601168-3de8-49c3-b7d4-3af84ffdd515))
    (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 70 "PRE_AMP") (pintype "passive") (tstamp 2899f350-027e-46af-b7f7-0b02bc6ea5d9))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 17c56aac-1c19-441e-ad0e-d5f91eeedcde)
    (at 121.92 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/fc988c61-8c25-498a-b51f-4d1bd4e5cfdd")
    (attr through_hole)
    (fp_text reference "R33" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 84f90a15-76dd-441a-b440-962c336c2b22)
    )
    (fp_text value "120" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 497a3aba-0f0c-436e-9543-aa7c20ad968e)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f4e3ae44-ee6a-42c9-9480-36f259d3a69a)
    )
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 00b32290-b6a3-4fed-82ff-3034599f39a3))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 35ed081c-163b-4979-90e3-f6e508b6c0fd))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 81049ca2-49e7-44ea-98ba-da99c1259c4b))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 817cea77-3614-46eb-ac46-8f839c322ae1))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp d665b41c-c6f8-4a45-8ffb-b5dec65a09a3))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp db3f768b-4ec7-4178-b70b-b4b036c84502))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0fa0e183-23fd-4787-b228-f9207d787009))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ac6f6ed4-8668-453c-b29a-e5d6005ea361))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f1960b60-73de-4c92-b6c5-7fa1993f2c9c))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f95acf52-40ba-412b-9d45-8c2880174473))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 09cf0645-d8e1-425c-a1b1-50dc308b5fe2))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 139845db-428c-441f-ab00-21d347aa3d8b))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 340170db-45d6-4c78-9448-445128dd4314))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 90033174-e9d8-4aed-9ec7-ca20b26c50cd))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp c8c01ccd-b5d2-48a3-9337-31437bc0d5b2))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp f33c1be6-4001-4ece-aa46-3a20267b8ad4))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 64 "Net-(R32-Pad2)") (pintype "passive") (tstamp c912059d-5f7c-4079-af03-81ed94feabdd))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 90 "PAD_G#4") (pintype "passive") (tstamp b4ac9ced-c2e0-4836-a46e-6affbff21678))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 1e40e6eb-aeb4-40ee-b188-924ed94fa41f)
    (at 129.54 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/ba7ccf33-9e68-4aeb-a010-a841a3eaab92")
    (attr through_hole)
    (fp_text reference "R36" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ea36586d-a19c-4e3c-93a1-840b072c4fcd)
    )
    (fp_text value "2.2k" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c6a2cf91-3944-4fe6-88be-1553714428e8)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0df48bb2-68f5-482e-9661-2e0943d9f7c6)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 09f50c38-8163-4cff-abd3-47efe8f71ad8))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 538c6f67-9877-43ab-8605-36ff07e67513))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6f15d91a-6d41-4e28-a5e6-a0d9dec055d7))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9b7a40cb-0350-4d97-8450-3832ccbf57a3))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp cab60368-c5ac-4374-a449-bb1cd8a9893c))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e2af272d-2d0d-4c31-b2b1-ad4fdfd01dfd))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 09d1a5d0-91b4-42f5-b268-58ef9e288e21))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 33e932e7-5490-4755-99d9-dd246c355409))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4d1702e7-e805-49fc-8952-d15950eccb86))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 62d34d1d-1b2e-4c94-9024-ce67a57cd0eb))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 3fb15386-b8b8-4ea2-a6e8-64d9ad83e92b))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 845b4379-ed3b-403c-a229-0eb963b7ce46))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp a880e30e-6944-4eca-b639-a7c826703a2f))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp b9f332fe-5a99-4dc5-a633-ff916e88d915))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp c8edb36d-d083-47b1-8f1e-783231e25204))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp c90d9c16-a31b-429f-8a2d-c36ee7c9b01b))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 91 "PAD_A4") (pintype "passive") (tstamp 252ff9d1-8c0b-4ae1-ad8b-664b80ec8945))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 95 "Net-(R36-Pad2)") (pintype "passive") (tstamp e558f9ff-d420-4eaf-bed6-636eb12f6f2e))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 2231b7ac-f92b-4941-9374-f0bfb259582f)
    (at 93.98 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/eff3db5f-9a84-4ea1-8c28-8da52194ad18")
    (attr through_hole)
    (fp_text reference "R21" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6fc07099-549a-4dc5-8c80-3ec767b4b363)
    )
    (fp_text value "1.3k" (at 5.08 -0.17 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b0228418-dad2-4b8d-a837-f46810bb487f)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e5803e45-bd73-45c0-b324-74c3d0cd5ee0)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 023b8036-b37e-4e6b-b316-94c2bd8af4ab))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 12b6afa4-4d3a-430e-8416-f3d60b11b644))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 2c258e51-8ac2-4b9d-aba4-645b6790e3ee))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 4f61ecac-c991-4ada-87f6-95087892525e))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 6c1a3235-4d99-4e6f-a98c-377099e15df8))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp bde06726-cef4-4003-a1b5-ea6b7a6034a0))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 09f6b727-b73b-4591-a484-7c0de0a910bf))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 24336cbb-ed5d-44b0-bf02-d11ae0331fac))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 34fece71-a06e-47e2-b5dc-947ddf87b09e))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp e3ecc5b1-08bf-4166-b46e-49ee316a0004))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 32afcd4b-97fd-4b03-bb8d-932fb13e0a23))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 4318fcb5-9334-4981-bad4-6943832d199d))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4338d29b-6c04-409d-875e-313e19a0fd23))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 5cdb6c77-dfe0-4421-823c-8da8613d150a))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 64fbefce-a964-4fb3-859a-3fdb8eab745c))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 9fe4ec8e-d675-4b57-9038-b2ad5a9800f8))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 78 "PAD_D4") (pintype "passive") (tstamp 2228514e-5299-4258-98b9-e9cdf9417856))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 87 "Net-(R21-Pad2)") (pintype "passive") (tstamp d09fca4c-55e2-452c-818b-2a461bf643cc))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 24628b37-6821-4c35-92d1-561c29cd6789)
    (at 53.34 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/188e9c15-178b-4776-931d-cad5796f043f")
    (attr through_hole)
    (fp_text reference "R5" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp be94af8c-dbd6-4f6c-9b30-da01f7a1c36b)
    )
    (fp_text value "1.1k" (at 5.08 4.71 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 329eb59b-62f7-4f21-a354-49ed8c4fffd0)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 610776bb-a1ac-4507-ab8b-7b3028938d9b)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 023ad332-e571-420f-95bc-943ffe6e671f))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 0ae0dde3-a8f0-402c-b308-f4d09e8aaec5))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2a9ccaaa-2f6b-4e69-98f6-274869f6d941))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 4e9a1803-18ac-4654-a975-d671d8dbf24e))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 7b57558d-3589-40d2-ab63-2d6cc94d197c))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c65869bd-320e-4658-be01-b0c228d779c0))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5f792f58-5703-4de8-83eb-8a2410772e11))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 83df1cb6-463f-4373-8105-981cc8fe8190))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ec4fbb70-8c10-4cd6-89b2-28975c3f36ed))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f63c6b10-cc1b-425f-a494-e44c1742e69b))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 2268d78a-79d5-4262-9b6c-71767627c3f7))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 4fac4605-670b-4c17-a082-ab0e08b81e09))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7d22c3e8-b917-48a4-832c-afdf8f66e94a))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp c5c5f9f8-c332-47c0-a678-3f8aedfc4b7c))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp da1d78a3-1a4b-488d-ab03-33feddcbc27f))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp e3ac5bb8-ad3c-47a0-bcd2-6083113bea9f))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 54 "PAD_F#3") (pintype "passive") (tstamp d374ed99-4b13-4d05-a97c-ff2f799c3ba3))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 77 "Net-(R5-Pad2)") (pintype "passive") (tstamp f68130d5-e0d8-46db-bc1f-886e342bfab9))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 25de8be3-f93a-440d-b827-58d13e33763b)
    (at 73.66 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/8ee3a2b1-fae8-4395-a44a-de9995018803")
    (attr through_hole)
    (fp_text reference "R13" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8f776595-7e2f-4ccf-b66f-8fcdf34a12ae)
    )
    (fp_text value "680" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 74c06c3f-ef67-4f23-a6ae-1802a20c59af)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp eb530003-727b-4ecc-8b8f-441a3d94f9e6)
    )
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 223fcaa1-c8ee-4c8b-90b9-90bbdf7dc635))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 51df22b6-e057-4f99-b98b-50c5e8bcccf5))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 5888e6c7-18c8-4d73-a59f-605e9b3f591b))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8168321f-7a04-4522-8aef-2189470fd750))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp c6ebbe38-c87a-4fe7-a38d-153487ea22e3))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp fd05c247-250a-4625-9a4c-ca0bf2aa3a5f))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2d89ce0b-4fd1-4caa-867e-d317d0ba5928))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 446bf39e-f653-4e79-b238-d1778bb60fa7))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 77bd4070-52a6-475f-bd6a-fadffe842c09))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp bc2ae153-e72d-4f62-822b-b8938bf03172))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 096430c7-4642-4dae-bd6a-55fa18716ff7))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 15916668-965b-4fbb-90fe-6e8ea3eea0f3))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 53af18d3-cffb-4265-9f10-45f6e173c30f))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 8234fbdb-1226-4e55-917b-6308e53f10e5))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 8673fa92-ae9d-475a-8777-2b2111e41e09))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 9349a2a6-9472-46c3-9139-de96a88c881b))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 63 "PAD_A#3") (pintype "passive") (tstamp 5d1822b4-80f4-45dd-9a73-6dfc5358949a))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 58 "Net-(R13-Pad2)") (pintype "passive") (tstamp 6fda8cc7-2c94-48a4-8a84-fdf231d4c8b3))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 27c8c828-a053-4c69-b7ae-c7f1bafdd083)
    (at 210.82 45.72 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (attr through_hole)
    (fp_text reference "R63" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f4d8d87a-e5b3-44b8-8667-25d66377dcdf)
    )
    (fp_text value "240" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3edf4ad6-d132-45a4-8ed7-00927515ef53)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7fe98cb8-0b21-4a87-8b7a-3c346884bc6f)
    )
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 05c77619-1ce3-4723-b67e-0d019cbf4a4c))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1aed41db-dfd3-4b90-b7a1-5c94e9557cf1))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 3ba63057-0b11-4860-9a74-a69828fd03de))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 46e9332d-c795-4bf9-ac30-672c9f0dc01b))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 792fab33-7b74-409c-85da-e8ac19dad894))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 97d8cb9c-7796-4f3e-9cd3-d41043b797fa))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6c20966e-92d4-4959-9ba6-2946d25c7acd))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b4aecb8f-0b34-4217-bca8-415bf644e67b))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c28b7c81-22dc-402b-9254-51430890607f))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f8b07d01-903e-4e3f-8f6f-cdece65f4143))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 0cd092e2-e586-499d-af3f-ce1e4b9a9737))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 23c5fcb5-a572-46db-aab8-bbc19461dd13))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 42ac3088-9453-4c74-ad7f-9a2bd627cf97))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 66c830f7-a17a-4bc7-9ec4-f3f13458a5d0))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 85a5dd7d-6ab2-4945-9279-d12a56a09c3d))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp be15977e-08c4-4134-888d-97385a0345d6))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 73 "Net-(R62-Pad2)") (pintype "passive") (tstamp c8293d21-1a69-42ed-92b0-4f3af4a14d47))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 6 "GND") (pintype "passive") (tstamp 22d6d806-3a4a-4f70-b5c1-0ae4ea874d92))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 2b8e8967-c886-474d-bdd5-e60203fe6e09)
    (at 68.58 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/5c788ba3-1b7e-4660-9f3d-775a3c4b7dca")
    (attr through_hole)
    (fp_text reference "R11" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2505187e-6a6a-4c27-b0a2-cb7321726f03)
    )
    (fp_text value "1k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7f9cd99b-e372-41ec-91dd-ea62e68d3908)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4fb1748c-00e8-45f0-9773-fe4598724367)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1212347b-634c-4a54-8b98-e7a842089bef))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 2297a6b0-c306-4c87-b2fb-f65378dbcb44))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 7843cbb7-0d64-4619-83df-e02f5d6fc926))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 8de88fa7-922a-404c-839f-ef1371114d40))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp cc817987-3dc7-44ce-ba6e-d3a131479a30))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp df2ecf81-599d-45d5-ba1f-ba43e8f0f130))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0cfab216-2f7e-4c44-a60d-16ce20211082))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6e417949-1c0b-4e2c-a1ca-2496c5b6d272))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 70e4a111-ffb9-4dd3-9abc-368ac0ec845c))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8f4ce4e5-bace-49ab-8529-4f690e7139c3))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 28e0cf1e-9b2d-419e-a2ab-b36a75377cae))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4488f065-cc61-4704-a3e9-4ac307ea2486))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp a68e5bc9-7e3f-49ce-861e-c6ff243f77ca))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp ceb8aacf-67ca-4dc6-bb25-c6881996d9a3))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp e907b0a2-026b-4b37-8ba8-ff8ae18c8e7e))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp efc209fa-42b3-4c78-ba74-c07bf365998f))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 61 "PAD_A3") (pintype "passive") (tstamp 0087a083-865d-47a7-9b9a-20a5492d4fe3))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 80 "Net-(R11-Pad2)") (pintype "passive") (tstamp a69fecd3-090e-4619-9872-886bf3a34ba0))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 2e435b0f-671e-4da0-9b1a-48c487e95e18)
    (at 96.52 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/af818b6f-6972-4928-9ba0-71ea4e255640")
    (attr through_hole)
    (fp_text reference "R22" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2a0557af-99f5-4d4f-a3f5-32287aa44770)
    )
    (fp_text value "110" (at 5.08 -0.17 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ef7a955f-0060-4460-a47a-f1ce2e3d6cae)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp be28da98-0ed6-46a8-981d-24fa2887e168)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 256f1b08-c503-4652-af63-7c28ab1c6219))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 7b7b3eb8-bf5e-436f-93fa-fbc636b3b09a))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp bbe6d1fa-41f5-4203-bfc1-ec3317627975))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp d5ce9073-f652-421d-afde-0d7f90c33390))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp eef31ba5-994a-4dab-8b67-8b56d6ec3764))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp f074bef8-5e6d-4f4f-8d44-54c397c827ce))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1f956cf2-b76b-4fb9-b9c3-2661e20caba1))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 34f66f22-45b2-4607-96e4-1850e941d14c))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 914b97a7-9ab8-451c-a722-b00b43b0407a))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 927b13de-a1b2-4c42-9cb3-5b1a43c05216))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 152dc8ca-1ae6-4745-a4ba-ab361a35bfc2))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1b2910e6-315c-4be6-b9e1-e1c7b037fc23))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 2adf8031-c396-4042-8cb1-90a52ba48945))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 375fb0e4-801c-4d69-a5d2-50c5b1699807))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp fd4c7d1c-8c57-45d5-ae7b-8381a3e73b19))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp fe276b31-4f82-46e6-9162-872c14ea41bb))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 87 "Net-(R21-Pad2)") (pintype "passive") (tstamp ec7993b9-2e80-41d7-a9e6-32c1a4acb73d))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 79 "PAD_D#4") (pintype "passive") (tstamp 09039133-a4cd-4c87-ad15-e7527470ab7c))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 2f66cd75-6cb6-4475-807c-fad2e55c6d0d)
    (at 134.62 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/e9952264-b124-4974-b923-6174767441c4")
    (attr through_hole)
    (fp_text reference "R38" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 95987acc-99a8-46e3-91fe-a5c2487bb53b)
    )
    (fp_text value "2.2k" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4ec1b1c8-c381-4286-b127-9f17c615488d)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 77aa6de0-e112-4644-8209-4019238cd692)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 289fcf04-8002-487b-867b-0fb746669a78))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 66762e3a-8ab1-4687-bcbe-f621a5abd289))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 724eb15f-46e5-4515-96e9-12f1ab14c796))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp aed2c426-2444-4cfe-97ed-c9c4d2b38be0))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp be90aaf9-814c-44ba-8256-6c8a64b1aa12))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp d94f810f-4799-4eee-8c80-02e7e483c18d))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 90282323-3cf6-4521-8bfa-ed68abda4d7c))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 96db959d-4a0c-4ce5-9c07-ed45c5751dae))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d29b9ce9-aba1-4e24-8d01-a65419fb534a))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp e14e3f8b-95a7-4666-9950-c76ddb2e4750))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 6c9b3c6a-4fa0-4906-a320-7e57e363460d))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp b3625fc5-c850-4b95-aa5a-8e80f94f0459))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp d5864fe9-4239-45a3-b0ac-ac737383eaa0))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp e9ce1109-07d8-473a-b1a4-6251bff748a8))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp eda27b33-717a-40f7-9238-e8bb9b6c66d8))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp f755be44-2b3e-4dbc-b258-77e5ab61a062))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 93 "PAD_A#4") (pintype "passive") (tstamp 76662ce0-2131-4ee9-b1f7-7301f0f176e8))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 67 "Net-(R38-Pad2)") (pintype "passive") (tstamp a85282fc-d96b-4fae-910a-208bcbb18a75))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Display:HDSP-4832" (layer "F.Cu")
    (tedit 5A02FE80) (tstamp 33c9cd5a-0b16-4784-81bb-8053883c3557)
    (at 85.1975 49.4225 90)
    (descr "10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN")
    (tags "10-Element Red Yellow Green Bar Graph Array")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/d0aa948d-bd00-4094-b292-357ddbe6ac5a")
    (attr through_hole)
    (fp_text reference "BAR1" (at 0.47 -2.41 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f8d23a96-62ae-4fe0-ac9f-c3825bc27adb)
    )
    (fp_text value "HDSP-4832_2" (at 2.89 25.2 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7f14a5ae-5248-4d80-94b9-e279f9cf8170)
    )
    (fp_text user "${REFERENCE}" (at 4 12 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.1)))
      (tstamp 4162ea85-08df-4ac2-99e0-fc35a4bc249d)
    )
    (fp_line (start 9.03 -1.41) (end 9.03 24.27) (layer "F.SilkS") (width 0.12) (tstamp 53a0ab9c-dea9-4993-9b2b-b198736ba68f))
    (fp_line (start -1.41 24.27) (end -1.41 -1.41) (layer "F.SilkS") (width 0.12) (tstamp 852ed01f-6957-4067-acbd-f9eea00a3072))
    (fp_line (start 0 -1.7) (end -1.7 -1.7) (layer "F.SilkS") (width 0.12) (tstamp 9c00ab61-bc85-4894-ab6d-620944c4dd19))
    (fp_line (start 9.03 24.27) (end -1.41 24.27) (layer "F.SilkS") (width 0.12) (tstamp b9da0bee-9ca4-4256-9832-eaed8a23a561))
    (fp_line (start -1.7 -1.7) (end -1.7 0) (layer "F.SilkS") (width 0.12) (tstamp d76500dd-d634-4617-a6c1-c14a9b0b34c9))
    (fp_line (start -1.41 -1.41) (end 9.03 -1.41) (layer "F.SilkS") (width 0.12) (tstamp ef01390f-1570-4cc4-8765-ac99a0a4ddaf))
    (fp_line (start -1.52 -1.52) (end 9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 06a14ff3-8f98-4975-a6ff-2c27e2154e34))
    (fp_line (start 9.14 24.38) (end 9.14 -1.52) (layer "F.CrtYd") (width 0.05) (tstamp 343b5ac3-f32c-4783-9129-b0dfe211dcdc))
    (fp_line (start -1.52 24.38) (end 9.14 24.38) (layer "F.CrtYd") (width 0.05) (tstamp 74833a61-ec7b-4aa0-9b6a-06fd81f3401c))
    (fp_line (start -1.52 -1.52) (end -1.52 24.38) (layer "F.CrtYd") (width 0.05) (tstamp 85cdfc6d-20d6-4552-b685-a2cd7ec40e6a))
    (fp_line (start 8.89 -1.27) (end 8.89 24.13) (layer "F.Fab") (width 0.1) (tstamp 0c01ad54-9305-4aa5-8381-04854d6627bc))
    (fp_line (start 0 -1.27) (end 8.89 -1.27) (layer "F.Fab") (width 0.1) (tstamp 656db949-5371-4df0-862c-699053be77b6))
    (fp_line (start 0 -1.27) (end -1.27 0) (layer "F.Fab") (width 0.1) (tstamp a2feca1e-932e-4cc6-9f65-40c949995c45))
    (fp_line (start -1.27 24.13) (end 8.89 24.13) (layer "F.Fab") (width 0.1) (tstamp c4b3cab4-addb-4665-b77f-cf70f3c09669))
    (fp_line (start -1.27 0) (end -1.27 24.13) (layer "F.Fab") (width 0.1) (tstamp d27e63d6-15d8-4e25-99d5-fa35c42d1ed1))
    (pad "1" thru_hole rect (at 0 0) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp e6a2718a-240f-4292-82fe-56c27996de6a))
    (pad "2" thru_hole circle (at 0 2.54) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp c768a2d1-0e72-428c-ad19-849abea74155))
    (pad "3" thru_hole circle (at 0 5.08) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 8c1b4983-9763-4fa7-a50c-81ffb400f6d5))
    (pad "4" thru_hole circle (at 0 7.62) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 9a8c7a6a-47f5-4759-b195-cb5b2186fe1c))
    (pad "5" thru_hole circle (at 0 10.16) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 02fe7830-e856-472d-9dc9-dbb0dfb8d230))
    (pad "6" thru_hole circle (at 0 12.7) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 322acbc2-fffe-4787-a9a5-a26399971bdf))
    (pad "7" thru_hole circle (at 0 15.24) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp e7ee7906-bc08-410f-88ee-7f7c70df7a3f))
    (pad "8" thru_hole circle (at 0 17.78) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 8e10ce0d-3ed0-4435-ad55-35769451510f))
    (pad "9" thru_hole circle (at 0 20.32) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 11bc6db9-91f6-40e9-aed4-d0a2cd7787e6))
    (pad "10" thru_hole circle (at 0 22.86) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 31 "Net-(BAR1-Pad1)") (pinfunction "A") (pintype "passive") (tstamp 209b3b2f-0fce-4e8e-bbe6-5f4d3d291a30))
    (pad "11" thru_hole circle (at 7.62 22.86) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 32 "Net-(BAR1-Pad11)") (pinfunction "K") (pintype "passive") (tstamp 7aa9af5b-8265-4f36-b44b-4f65c57d845b))
    (pad "12" thru_hole circle (at 7.62 20.32) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 33 "Net-(BAR1-Pad12)") (pinfunction "K") (pintype "passive") (tstamp 7cc910f2-74fd-451b-bb1b-0a6c296c61e3))
    (pad "13" thru_hole circle (at 7.62 17.78) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 34 "Net-(BAR1-Pad13)") (pinfunction "K") (pintype "passive") (tstamp bcf6b6cb-d2d2-411f-b221-af728d1d11df))
    (pad "14" thru_hole circle (at 7.62 15.24) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 35 "Net-(BAR1-Pad14)") (pinfunction "K") (pintype "passive") (tstamp ad2c2e59-c034-4d71-b690-64f26f121be3))
    (pad "15" thru_hole circle (at 7.62 12.7) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 36 "Net-(BAR1-Pad15)") (pinfunction "K") (pintype "passive") (tstamp 2d71232e-9e99-4633-b0f9-12b458c99147))
    (pad "16" thru_hole circle (at 7.62 10.16) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 37 "Net-(BAR1-Pad16)") (pinfunction "K") (pintype "passive") (tstamp 06a39dc9-bcbf-4b25-bd34-52d7f898ab25))
    (pad "17" thru_hole circle (at 7.62 7.62) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 38 "Net-(BAR1-Pad17)") (pinfunction "K") (pintype "passive") (tstamp 214f9396-d3fe-455f-ad16-5eb0d70305d8))
    (pad "18" thru_hole circle (at 7.62 5.08) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 39 "Net-(BAR1-Pad18)") (pinfunction "K") (pintype "passive") (tstamp 69cbf986-4951-4997-a7bc-7d157f337f00))
    (pad "19" thru_hole circle (at 7.62 2.54) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 40 "Net-(BAR1-Pad19)") (pinfunction "K") (pintype "passive") (tstamp b65a95d9-e742-4bd8-a49a-dee994023109))
    (pad "20" thru_hole circle (at 7.62 0) (size 2.032 2.032) (drill 0.9144) (layers *.Cu *.Mask)
      (net 41 "Net-(BAR1-Pad20)") (pinfunction "K") (pintype "passive") (tstamp 75f5ad2d-5e5e-4e6a-9264-49e492912441))
    (model "${KICAD6_3DMODEL_DIR}/Display.3dshapes/HDSP-4832.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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 35cf5712-e365-4b13-b96f-5552a5aa0da5)
    (at 142.24 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/d6be2c6b-f07c-471a-8bd5-fb9f37feb905")
    (attr through_hole)
    (fp_text reference "R41" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 466f999a-3852-4062-a070-bba4eaef8741)
    )
    (fp_text value "160" (at 5.442271 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a68e3599-350a-4dc8-983f-0a82d06cbb1d)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e9ef3e58-73d5-4fa3-952c-dfdaa53358b0)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 07f95ecb-1a38-4c5b-bb94-2a1351a7cb6f))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 239c4a7f-d287-4067-ad55-e13c57d051fc))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 4e73d518-266a-4931-a260-714e6c93c41c))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 5f6e20a5-4fb2-43cf-b44d-a3ec34ff518c))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 613ac90c-f053-4237-bc42-198f81ccdae5))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 65110973-7afa-4ba3-989c-9edda447e72d))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 33b4538b-90d1-4a53-818d-7952e5b1bc13))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4c0767c3-234b-4627-88d4-61961389591a))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4efb5aaf-f042-415b-b057-8703e026c403))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f13289b2-6d62-4a59-bb4e-bd7a47813e57))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 047a5acb-7e23-4852-a693-5c5ae152383a))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 6a147e67-ca13-4a4c-b317-bfda77bc0bba))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 75b9d20a-3112-4b1b-96bc-cf0d0dff8e18))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp ab60d0c3-6bfe-4298-9588-6a472f64f005))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp c49184b2-a5cd-4033-af55-ee358db71db1))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp fdbfdd3a-9914-4af9-86e2-86261dce5c7d))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 98 "Net-(R40-Pad2)") (pintype "passive") (tstamp dedccc5b-3845-49bb-aaae-8fcd5f5c79cc))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 97 "PAD_C5") (pintype "passive") (tstamp 05987e24-ab6d-4d22-8865-74d374076c9a))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 3666e8bc-f1fc-48fa-834d-9a3c9b4dd95c)
    (at 228.6 81.28)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/ab49cb86-d949-4b3d-bf87-f8c2af66777e")
    (attr through_hole)
    (fp_text reference "R48" (at 5.08 -2.37) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5d7f485f-8720-4269-b5df-d550c51ca572)
    )
    (fp_text value "100k" (at 5.08 2.37) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bd0685b6-b5d7-4041-aaff-2a3bf022f28f)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7d2f4358-1e34-45fb-a689-f0a6cb4efcb5)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 0512ebac-cb80-424e-868b-f04296e22c00))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 0db02595-c2a3-4eb1-ba6a-ac67c5d29b5d))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1841ae3d-8dd2-488f-a491-0d149bb5cdec))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4c698e14-cb7d-4e4f-afcc-1f97d2fea857))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6e77cd11-bef0-4272-af41-89f16e2ac913))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f9fdb962-3b58-4f47-ace0-baf6ee3e5d48))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 49fc4ff9-158e-4e2f-a3f7-638b20f6d263))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 61c2d802-31ed-4f99-9a5b-e96dcd2dae0d))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 63e10ba0-1bc4-4eed-a96b-eb3b6b2a4d77))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp daacbfd3-8ef3-4340-a638-23ca427fca1e))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 02020241-7b06-450e-9fc5-fa8cf5f83302))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0e3d8d6b-490f-4f44-a210-89662cd480ba))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 398c7948-8f52-44b8-a637-067b93e36935))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 3d1f201e-833e-4981-8e94-c3db265d168c))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 6bf4d323-338c-4bc9-b3c4-12ca4e9e5767))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp ba101792-5f84-4f42-80e8-b01f27e78088))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 11 "Net-(A1-Pad12)") (pintype "passive") (tstamp 9b524ebc-24d6-4195-aa10-36b6cd563633))
    (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 44 "KB_IN") (pintype "passive") (tstamp ada57a7a-7acb-4fe6-a91b-4f9262c171a9))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_USB:USB_B_Lumberg_2411_02_Horizontal" (layer "F.Cu")
    (tedit 5E6EAC30) (tstamp 423003da-2228-4a7b-8146-f8c48f6599ae)
    (at 36.85 32.1875 90)
    (descr "USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf")
    (tags "USB B receptacle horizontal through-hole")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/41317005-4836-429c-88de-27d3d30f4d28")
    (attr through_hole)
    (fp_text reference "J1" (at 7.5 -7.65 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 9cf208e8-00e0-47b5-9285-5ce79e785d0c)
    )
    (fp_text value "USB_B" (at 7.05 10.45 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 63420c3c-6801-4759-a776-ff81ba2f37e9)
    )
    (fp_text user "${REFERENCE}" (at 7.5 1.25 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0921480b-e7e1-4782-984d-ad572d0bd06d)
    )
    (fp_line (start -1.55 0) (end -2.05 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 05c22087-f0be-4bf7-8f3e-adf8b92618f3))
    (fp_line (start 15.27 -4.86) (end 7.3 -4.86) (layer "F.SilkS") (width 0.12) (tstamp 0f48ce51-54c7-452d-ac75-94d6544a8366))
    (fp_line (start -2.05 -0.5) (end -2.05 0.5) (layer "F.SilkS") (width 0.12) (tstamp 4da90392-9abe-4f25-8e93-b99f82b4cd11))
    (fp_line (start 15.27 7.36) (end 15.27 -4.86) (layer "F.SilkS") (width 0.12) (tstamp 56086fe7-0902-4658-b0a4-79735d2ffe07))
    (fp_line (start -1.35 -4.86) (end 2.4 -4.86) (layer "F.SilkS") (width 0.12) (tstamp 67d3073d-728e-4b1f-baea-18126e875c69))
    (fp_line (start -1.35 7.36) (end -1.35 -4.86) (layer "F.SilkS") (width 0.12) (tstamp 8d0a76cc-088b-43e1-8221-4386c21d6714))
    (fp_line (start -1.35 7.36) (end 2.4 7.36) (layer "F.SilkS") (width 0.12) (tstamp 9ccfc048-c173-4d7a-87df-a5bbf084e037))
    (fp_line (start 15.27 7.36) (end 7.3 7.36) (layer "F.SilkS") (width 0.12) (tstamp ce23cc72-5707-44ff-8a4f-1512c28ca602))
    (fp_line (start -2.05 0.5) (end -1.55 0) (layer "F.SilkS") (width 0.12) (tstamp f089a10f-ab92-4d91-a95d-8c34b6800ca6))
    (fp_line (start 15.66 -7.25) (end -1.74 -7.25) (layer "F.CrtYd") (width 0.05) (tstamp 3321feb0-e25c-48f1-b417-843cc0d0fc5d))
    (fp_line (start 15.66 9.75) (end 15.66 -7.25) (layer "F.CrtYd") (width 0.05) (tstamp 8fd2453d-9dcb-42d4-be0e-4e17cf094c8a))
    (fp_line (start -1.74 -7.25) (end -1.74 9.75) (layer "F.CrtYd") (width 0.05) (tstamp 9e10d7da-7e44-4b95-bd4e-24e1819e2ea4))
    (fp_line (start -1.74 9.75) (end 15.66 9.75) (layer "F.CrtYd") (width 0.05) (tstamp cd55b841-2296-4335-a3ea-682be03a5e4c))
    (fp_line (start 15.16 7.25) (end -1.24 7.25) (layer "F.Fab") (width 0.1) (tstamp 02a08a24-751b-4ad4-b6b1-621603af88cc))
    (fp_line (start -1.24 7.25) (end -1.24 -4.75) (layer "F.Fab") (width 0.1) (tstamp 1b2afd57-d1a0-4fee-a173-2bd4ec4407d2))
    (fp_line (start -1.24 -4.75) (end 15.16 -4.75) (layer "F.Fab") (width 0.1) (tstamp 48ffa39d-adda-4d9d-99bf-b54fa3fc4beb))
    (fp_line (start -0.75 0) (end -1.24 -0.49) (layer "F.Fab") (width 0.1) (tstamp 9c6faf73-17a6-4de9-87e9-d629e939d419))
    (fp_line (start -1.24 0.49) (end -0.75 0) (layer "F.Fab") (width 0.1) (tstamp aaf5283a-c22d-4b03-a805-070b14b8cb76))
    (fp_line (start 15.16 -4.75) (end 15.16 7.25) (layer "F.Fab") (width 0.1) (tstamp b49f564c-98fb-412a-addf-30790a07cc53))
    (pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
      (net 101 "Net-(J1-Pad1)") (pinfunction "VBUS") (pintype "power_out") (tstamp e2099293-451c-44e4-a9f8-cf4488cdfcfc))
    (pad "2" thru_hole circle (at 0 2.5 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
      (net 102 "unconnected-(J1-Pad2)") (pinfunction "D-") (pintype "bidirectional+no_connect") (tstamp f0c486ea-8fdb-49cc-877f-2ed6f80e037d))
    (pad "3" thru_hole circle (at 2 2.5 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
      (net 103 "unconnected-(J1-Pad3)") (pinfunction "D+") (pintype "bidirectional+no_connect") (tstamp 90b329ee-5b84-4045-8310-ebe2c622371c))
    (pad "4" thru_hole circle (at 2 0 180) (size 1.6 1.6) (drill 0.95) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "GND") (pintype "power_out") (tstamp 2ffab9c3-5c7a-4d55-af94-9f9bd8be80ab))
    (pad "5" thru_hole circle (at 4.86 7.25 180) (size 4 4) (drill 2.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "Shield") (pintype "passive") (tstamp 235f67bf-0f50-4ac6-b7c0-564c2d019217))
    (pad "5" thru_hole circle (at 4.86 -4.75 180) (size 4 4) (drill 2.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "Shield") (pintype "passive") (tstamp d094a4b8-0876-42a4-af18-c6e644dd1dc4))
    (model "${KICAD6_3DMODEL_DIR}/Connector_USB.3dshapes/USB_B_Lumberg_2411_02_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 42ceb50a-197b-473c-86d7-15a2b48a4e90)
    (at 55.88 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/4eeb6573-9b3b-4baa-b5f8-bf01bbc58e18")
    (attr through_hole)
    (fp_text reference "R6" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1a55f54c-7f6f-4392-b020-7d75fd2b3fb5)
    )
    (fp_text value "20" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f9e7ff71-7662-40d2-9968-aeace1e0fed4)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 07195c6d-cf77-41b9-8df8-34cb3576da77)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 0c2aedcd-3fb2-49f9-ad49-0a0248e125f8))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1bbee457-a6b3-4f68-8607-daa9c3f4a984))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 78c6d199-4ea2-4f2b-857d-32f55c1e47e6))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 85a5c7bc-431c-4bd5-8174-e44ab1f56c38))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp d3cb0d0b-189b-4e49-8d34-f79d335b8fa5))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp ee5b8c7b-a0b7-41fa-bb4b-6504b7306e5b))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4369dc8b-e248-4152-93d2-b665ee220ede))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 674b6705-51e9-4e9f-97dc-274d686dcb9b))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d0d43c42-b7a5-4dca-9064-cf9730b699fe))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e5ca6752-8bd4-4cf6-a117-bad1f9383ac7))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 30e8237d-252c-4464-afc5-907a1bec6c73))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 422a0cc6-4610-4007-be09-2c093a3a31d8))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 8f9aca01-53aa-40a5-a852-68dc5b83c87f))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp bbae4f90-8f17-4faf-b175-d779ee8c6747))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp e71dea81-09de-4f94-a05e-2a85ce537c40))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp ead67650-197d-41fe-9104-700c17e48fea))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 77 "Net-(R5-Pad2)") (pintype "passive") (tstamp 30cc44e9-3938-4c29-8a43-bbb711178d66))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 57 "PAD_G3") (pintype "passive") (tstamp 96615fcf-45ab-4d92-8280-e2f77390b15a))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "keyboard:potm" (layer "F.Cu")
    (tedit 62289D7E) (tstamp 449fdbe1-24c9-4092-a82e-a5df0f19eb8e)
    (at 165.02 55.88 90)
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/269232c0-a455-433f-be4c-bf2abbe28701")
    (attr through_hole)
    (fp_text reference "RV5" (at 10 -15.24 90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 017bb974-b31c-4cfc-a766-392c5e411fc6)
    )
    (fp_text value "10k" (at 10.16 5.08 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bc4a9130-6103-469b-95fa-7b2448b6a779)
    )
    (fp_text user "${REFERENCE}" (at -0.5 -5) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b1dbe6f0-bd21-4776-982a-aa4f150ccca6)
    )
    (fp_line (start -0.62 3.12) (end 10 3.12) (layer "F.SilkS") (width 0.12) (tstamp 1ee0b041-614b-41ce-86d8-c72dbcb4fe2d))
    (fp_line (start -0.62 -8.574) (end -0.62 -6.425) (layer "F.SilkS") (width 0.12) (tstamp 48e96f22-2858-44d9-beb3-48a20cc47227))
    (fp_line (start -0.62 -13.12) (end -0.62 -11.426) (layer "F.SilkS") (width 0.12) (tstamp 5d57ad10-76d1-4a6d-8ae6-960bef9095ab))
    (fp_line (start -0.62 -3.575) (end -0.62 -1.425) (layer "F.SilkS") (width 0.12) (tstamp a9638d11-3916-4082-a0a6-bf444cbcba51))
    (fp_line (start -0.62 -13.12) (end 10 -13.12) (layer "F.SilkS") (width 0.12) (tstamp b74a8fb2-5728-4c9a-9d52-72bd1e671ced))
    (fp_line (start -0.62 1.425) (end -0.62 3.12) (layer "F.SilkS") (width 0.12) (tstamp d2d30d21-ee96-4c1c-bf9b-518f07ce5f72))
    (fp_circle (center 10 -5) (end 18.12 -5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp a4ff9707-94ef-43e2-beee-e27b2c51c423))
    (fp_line (start -1.45 -13.25) (end -1.45 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 30a11dd4-edbd-4c20-86a6-ff64cb2aca67))
    (fp_line (start -1.45 3.25) (end 18.25 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 4253efbc-9d19-4b12-9781-5a9b50812a0e))
    (fp_line (start 18.25 -13.25) (end -1.45 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 47914ba4-0c67-4199-a3af-3668f62f5e6a))
    (fp_line (start 18.25 3.25) (end 18.25 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp a51cacb2-7d2a-432f-9f00-8964b7deaaca))
    (fp_line (start -0.5 3) (end 10 3) (layer "F.Fab") (width 0.1) (tstamp 3ec3bee6-eaf1-4683-896c-78a4ccd508bc))
    (fp_line (start -0.5 -13) (end -0.5 3) (layer "F.Fab") (width 0.1) (tstamp 79413e23-e3f2-488e-b629-6bd49e4abc77))
    (fp_line (start 10 -13) (end -0.5 -13) (layer "F.Fab") (width 0.1) (tstamp c2527baa-a70d-4f68-803d-acdd366e6718))
    (fp_circle (center 10 -5) (end 18 -5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 4c46bf08-0751-442a-94ca-9dcaa0e94cdc))
    (pad "1" thru_hole circle (at 0 0 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 71 "unconnected-(RV5-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 38014fad-e2e0-4dc6-b2d7-66d73a229d41))
    (pad "2" thru_hole circle (at 0 -5 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 72 "unconnected-(RV5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 5d6b1cd1-b8b6-41fd-852e-0d6a96c0a95c))
    (pad "3" thru_hole circle (at 0 -10 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 65 "unconnected-(RV5-Pad3)") (pinfunction "3") (pintype "passive") (tstamp 01ed7164-4c45-406c-9a80-2a17239050b8))
  )

  (footprint "Connector_Audio:Jack_3.5mm_Ledino_KB3SPRS_Horizontal" (layer "F.Cu")
    (tedit 5BC12D58) (tstamp 4d7cede4-4c73-4866-92ca-bd178f63c45a)
    (at 152.8225 25.75 -90)
    (descr "https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf")
    (tags "jack stereo TRS")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/2470df0f-4575-4ed1-a265-b81f3d26f3e7")
    (attr through_hole)
    (fp_text reference "J2" (at -3.5 2.3 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6316e7da-cd93-492e-9537-8f00959584c5)
    )
    (fp_text value "AUDIO" (at 2.3 -12.2 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 9a260324-a12f-429d-a260-9381590a8b31)
    )
    (fp_text user "${REFERENCE}" (at 2.7 -4.6 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 73d057b8-ca57-4db8-b5ce-96abb549eed3)
    )
    (fp_line (start -5.8 -10.8) (end 1.95 -10.8) (layer "F.SilkS") (width 0.15) (tstamp 0d359bd2-35ca-40a0-805f-b5863c0bb7fa))
    (fp_line (start 8.7 -10.8) (end 8.7 1) (layer "F.SilkS") (width 0.15) (tstamp 25133cf8-9f01-4cd7-8aa7-44517f079fac))
    (fp_line (start 6.3 -10.8) (end 8.7 -10.8) (layer "F.SilkS") (width 0.15) (tstamp 4d280bab-2ecd-4ba4-81be-fada96ed77ac))
    (fp_line (start -9.4 -7.7) (end -9.4 -1.5) (layer "F.SilkS") (width 0.15) (tstamp 77a6f982-e74e-42fc-8730-9e9d04ee2d37))
    (fp_line (start 0 1.5) (end -0.5 2.05) (layer "F.SilkS") (width 0.12) (tstamp 7b8082f4-d518-4517-a8a7-8be7ca86d56b))
    (fp_line (start 0.5 2.05) (end 0 1.5) (layer "F.SilkS") (width 0.12) (tstamp 82d2b3f4-6177-432d-9880-21ef2050b66f))
    (fp_line (start -5.8 -7.7) (end -9.4 -7.7) (layer "F.SilkS") (width 0.15) (tstamp 893052b4-f6c6-4ee5-8ea6-045003ab25ac))
    (fp_line (start 8.7 1) (end 8.6 1) (layer "F.SilkS") (width 0.15) (tstamp 954c6a1a-7f14-4266-8d6d-6e30b4b47546))
    (fp_line (start -5.8 1) (end -5.8 -10.8) (layer "F.SilkS") (width 0.15) (tstamp 95ea4f3e-11f2-40f3-a02d-7c6eb3854210))
    (fp_line (start -0.5 2.05) (end 0.5 2.05) (layer "F.SilkS") (width 0.12) (tstamp b9c6d36e-0457-4e10-ac29-531b6a68a9b0))
    (fp_line (start -9.4 -1.5) (end -5.8 -1.5) (layer "F.SilkS") (width 0.15) (tstamp bdc704d5-d479-4948-bcf6-248b7cd4f5a2))
    (fp_line (start 6 1) (end 2.25 1) (layer "F.SilkS") (width 0.15) (tstamp c9bd9ac8-96ee-43ab-b32b-e049b06caccd))
    (fp_line (start -2.25 1) (end -5.8 1) (layer "F.SilkS") (width 0.15) (tstamp fbb1284b-315f-43ff-95d3-475ccf8f4b8f))
    (fp_line (start -9.8 2) (end 9.1 2) (layer "F.CrtYd") (width 0.05) (tstamp 21f91e1b-d0c3-4c10-9b36-5f6cec45516b))
    (fp_line (start 9.1 -11.4) (end -9.8 -11.4) (layer "F.CrtYd") (width 0.05) (tstamp 45551a21-6567-4b8a-9c88-3724dd7bb7c1))
    (fp_line (start 9.1 2) (end 9.1 -11.4) (layer "F.CrtYd") (width 0.05) (tstamp 7033efb4-4c3b-4787-aa3d-a71d3a213992))
    (fp_line (start -9.8 -11.4) (end -9.8 2) (layer "F.CrtYd") (width 0.05) (tstamp acbc13dc-f559-4200-9266-8be37ee53b3b))
    (fp_line (start 8.6 -10.7) (end -5.7 -10.7) (layer "F.Fab") (width 0.1) (tstamp 29bca701-65c4-4903-b2cd-fcde466eb2b7))
    (fp_line (start -9.3 -7.6) (end -5.7 -7.6) (layer "F.Fab") (width 0.1) (tstamp 852a2e97-9e6f-422b-8233-493d4f4cbb70))
    (fp_line (start -5.7 -10.7) (end -5.7 0.9) (layer "F.Fab") (width 0.1) (tstamp 8a13180b-5965-4bee-9a42-2d5f0bc8674f))
    (fp_line (start 8.6 0.9) (end 8.6 -10.7) (layer "F.Fab") (width 0.1) (tstamp 9a1115ee-d460-49fd-bccb-e99d16ddb187))
    (fp_line (start -9.3 -7.6) (end -9.3 -1.6) (layer "F.Fab") (width 0.1) (tstamp a62a9952-5bd9-4284-b4a0-6dbf6b7b5f63))
    (fp_line (start -9.3 -1.6) (end -5.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp b7cb0130-8e64-42ad-afee-e0cdd95d4855))
    (fp_line (start -5.7 0.9) (end 8.6 0.9) (layer "F.Fab") (width 0.1) (tstamp e2f3bb5d-fc68-42e5-9aee-0a835d0f5cca))
    (fp_circle (center 0.1 -1.75) (end 0.4 -1.55) (layer "F.Fab") (width 0.12) (fill none) (tstamp e955fa5a-5aa5-482f-b7be-f2c2347b485f))
    (pad "R" thru_hole oval (at 4.1 -9.8 270) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask) (tstamp d5653f67-aa1e-4c95-ad3e-3aac842ac9e5))
    (pad "RN" thru_hole oval (at 2.9 -7.1 270) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask) (tstamp 21f77d23-a29c-4c5d-b4e2-66962ced0f8e))
    (pad "S" thru_hole oval (at -3.9 -4.6 270) (size 2.2 4) (drill 1.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pintype "passive") (tstamp fc79368f-ba60-472f-8969-aa399de5993c))
    (pad "T" thru_hole rect (at 0 0 270) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask)
      (net 46 "AUDIO_OUT") (pintype "passive") (tstamp 9f8069e8-8079-4f5b-9b16-c75620a81edc))
    (pad "TN" thru_hole oval (at 7.3 -0.5) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask) (tstamp c1c93dbd-e489-48d1-8ab5-1e961272fda6))
    (model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_Ledino_KB3SPRS_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 4e8c5d7d-0b1a-4d49-b10e-0adaa2597218)
    (at 83.82 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/9d9bc4fd-fc6c-44ee-8eff-4783f43f64ea")
    (attr through_hole)
    (fp_text reference "R17" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f8052cd4-ebc4-4eb1-b2c2-fd93c0c9bafb)
    )
    (fp_text value "1.1k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d877d827-7c2f-44c5-bc7f-fde1c942a5a3)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 662203e4-8a06-4828-b199-73b838f6f757)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 305a5c48-e619-4227-9549-9c60d0176edf))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 4c853f5f-9964-4a4b-aca4-3f1eb53db511))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 531cec06-301d-4728-b0ee-74cf772f6e03))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 87d7ecda-8908-45cd-bcd6-697cb5464c09))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp e37429d8-896a-4b5b-8069-2c75b1cc5a02))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp ee314538-a8f0-415f-87cc-017be6835541))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 44740a0d-f486-4e5f-861c-483a13e99ef1))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp aa13b47b-6d22-47f8-b637-09ce86c078ea))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f2f523bd-0051-4af4-9c3c-2a7bbcacef8f))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp fb2bcbc4-0143-44e7-9bd8-0e0aea63c8ac))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 1a567ddb-661a-41fc-9c6f-25358b0aaba6))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 62af5a18-21ad-417e-99e0-4b7fcd2863e1))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 6a396e41-802a-4878-b135-128274f9e33c))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 71ab8eb1-8610-42ac-96fe-373990c21934))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 9dbf289f-4308-406f-8668-ec88d3bd3395))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp c1f0cb97-7834-44c5-9059-b8582a0969f0))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 68 "PAD_C4") (pintype "passive") (tstamp 4d2b1079-29f7-4456-ab22-8211554ea90b))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 84 "Net-(R17-Pad2)") (pintype "passive") (tstamp 83389342-341d-4149-aaf9-0824346fcd8e))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 5c8796ed-0e8d-4e5f-93fc-1864b7d6f7db)
    (at 58.42 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/bb153e84-0bb1-4339-abc2-fff39dfae233")
    (attr through_hole)
    (fp_text reference "R7" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d00d473b-dbf2-4046-9ca4-13245b851c7d)
    )
    (fp_text value "560" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e35f74da-1ad9-4cb8-ac48-b4ba064240a7)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 535e3851-ef11-46ba-8e69-ed6f2448d191)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 26e7e72a-a079-4605-93e8-56ec5e0640a7))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2f1ebd2b-d08b-4301-aae2-f6ef217f6430))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 3749553d-b3f1-4f21-8fbf-1adb20d44f9a))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 4832ec94-33d2-491a-987b-7def90eed38f))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 8841214d-dd0e-4d87-bdf6-f5358a0d764c))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp fdbec5e1-e74d-42d1-a15f-9870270449de))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1053723d-f511-40f1-ae40-bf7ef45b9a90))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6689fa92-ef3a-482d-bd27-712e73df33e4))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 7c999cd9-380c-4645-8e1d-cd50e73f1aac))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp e686dc0d-0ddd-4a59-bb4f-909d83897018))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 23b1c6b7-24b8-452a-afee-8dc8caa001c5))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 330aa160-0dcf-4d86-b12c-6facdce00691))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7425432c-ba59-49c5-9768-7ae007ff2f74))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 96ea7aa6-700e-42b4-bef6-e684a17d5aa9))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp a067e2a9-2168-4a75-b1ae-07175f3097e7))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp ec3e67b0-4243-4656-a7ba-dca7a98ee1e2))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 57 "PAD_G3") (pintype "passive") (tstamp 78bf525d-6cdf-4984-886a-d31a70711d20))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 55 "Net-(R7-Pad2)") (pintype "passive") (tstamp bd949d1e-3838-40ce-8338-e3416dbddf44))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 633a06ce-2d3f-4167-8016-5eaa571d83ab)
    (at 48.46 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/3d509f26-c5f6-4122-afb8-c49e986fa1be")
    (attr through_hole)
    (fp_text reference "R3" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 64f886b1-f162-4a3c-9ba2-420c2514f979)
    )
    (fp_text value "560" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp dbf441f5-9619-4381-966d-84f7e26363cc)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 90e973ea-bb64-444d-80a3-1f9e5f32719b)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 05e30385-9720-4c8f-ae5b-7032bf82a198))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 6ce3bb28-b009-4709-a2ab-4a5bbf49ec8e))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 917d20db-c252-4964-a306-c81f4655cd64))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 95d1611d-ca97-4aa5-b70f-dc628d54b1ac))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp a7a8fd9d-9905-4464-82d7-9519a17e2e21))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ea39acf5-f29b-4dbb-908c-0c8af52fca9f))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2e92c870-bc3e-4383-8d1a-196cb552a75c))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b4152d6d-71c4-4ef9-aa6a-c3903c9cc96e))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp e6217eaf-1d15-418c-b297-36ed00e785c1))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f75ca73e-ccb7-4b62-b57c-a519daabdb5b))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6391d1c7-f9bf-4d3b-a5cd-58efbcd7c9de))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 748821c2-cd57-447d-9e21-e014e2ec2536))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 75bf7951-4ebd-4794-b31d-e58a43b85afb))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 9785d738-29f1-4fa7-a80b-eb854a0a947b))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp a714db5d-6649-4ebf-ba62-3c5fde9172b8))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp da6c62d0-28b4-4a94-9f98-4fca3bf45749))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 53 "PAD_F3") (pintype "passive") (tstamp 8488c3b0-2260-4fbb-a552-46f910714331))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 76 "Net-(R3-Pad2)") (pintype "passive") (tstamp acd09e9c-71b1-44b1-b4b1-7e32d519f348))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 65778b97-4bd1-4830-a540-c2ec5320ce4e)
    (at 91.44 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/b2dfe012-64e6-4193-b67e-4111d6e20793")
    (attr through_hole)
    (fp_text reference "R20" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a120ec1a-c3ea-4c4e-ad75-54278c183a82)
    )
    (fp_text value "0" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 708692df-f1ed-4dfd-8869-70b93a8004bc)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0a523061-715f-43ef-b1dd-3d745a3e7e1d)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0e86af0a-1fe7-477d-99bc-1729cff58217))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 3324d408-a5b9-4560-951d-d219dc33ad00))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 359d092c-c359-42b7-9d21-55f013d66e0d))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 5d2142a2-f5ce-4a20-b509-6fc8dca8fa51))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 6335d0a4-3503-455f-8a16-33bc2cc40641))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp c3c0c2d5-f711-466e-ac12-378fa93d8683))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 24f4ca8a-b89e-4b56-bcc7-8bd43bb3d11a))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3be24049-710e-4c21-b592-150779e27859))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a3fe4351-40c5-439f-b2ce-943ba00790a3))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c5ddb5b3-ad5c-4b95-988a-1085ab1e494b))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4e171e27-0952-4a5f-bd26-afc8662a6d9a))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 659c7120-8885-4090-b510-a594ad335b4b))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 90eccc84-68e3-440b-b8e7-b46a28e3379b))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp a66a3b2f-f268-4e38-987e-b27ec003ce16))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp b06fdf55-9b05-48ab-b20a-f43456e8f5ec))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp cec5c91b-0f2e-497a-af3e-a5a152b16bf2))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 60 "Net-(R19-Pad2)") (pintype "passive") (tstamp 19cf3f75-846d-40c4-99e9-986cfa896c10))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 78 "PAD_D4") (pintype "passive") (tstamp 7290aba7-9701-4a7f-9efd-a4c38f1a6ef8))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 664c8a73-9b8c-4921-a987-9cd36e955b45)
    (at 81.28 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/96e7638a-942d-4fb8-bf56-e0af7f719acb")
    (attr through_hole)
    (fp_text reference "R16" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0535edc6-1e3a-4c82-8615-41863dde5c6f)
    )
    (fp_text value "30" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0863ca7e-8161-42dc-a413-3e719cc0b0ce)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp eea985ce-2161-4a62-ac90-40121e0999d6)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 126ccd0e-610f-4fa4-8021-30873a398967))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 57cb9f8e-995b-44d7-bb35-b4785acbdfdc))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9be008b9-47cd-4880-9c07-5522eb0c5495))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp c933ad65-bbc8-4355-8633-a7655f4a69a4))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp ccb0186a-abbf-416c-aac5-ea2c529ebce2))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f96b1cf9-e791-4080-95d0-97a5ca590834))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 176fbd6c-6849-486e-805f-c0a532bf3823))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 42a8d8e8-d0a5-4798-9f8d-badcea8614a1))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 88f5a0c2-cbc1-4840-9752-880eb7e2412b))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b5536bc0-4bab-4f8a-be93-a16c0c6cda39))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 496d6fd3-2cc1-43e1-9655-903f427d44f2))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 4cf9d38b-c8b4-4933-a129-e7c4d94b463b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 74495a3f-9f01-4441-977e-348554694c47))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp bea485c4-3ce9-4a63-8340-c0f6eee824dd))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp becbe834-66a6-427d-866d-5ca6683fb6ab))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp efbb1cf2-593e-4ceb-997a-83e340ed003c))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 83 "Net-(R15-Pad2)") (pintype "passive") (tstamp e8d85600-1988-42a1-a3db-f0ee48fa10f8))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 68 "PAD_C4") (pintype "passive") (tstamp 9c6a23ce-1342-4abd-9430-63746c8a2682))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 7476392b-f6b6-475a-8108-77f39d7f53fc)
    (at 66.04 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/4d492f6f-d2b5-4dd9-bfbb-2e2bba50596b")
    (attr through_hole)
    (fp_text reference "R10" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 86cf9de7-1b9b-4c09-ac60-60bb15bed085)
    )
    (fp_text value "39" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5a193133-7a4c-471f-b69d-11ab8c9f813e)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7d4ab197-adca-450c-9fc5-7a95ff72b885)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 092b23a6-9662-464e-b485-7f6161ae967b))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 0967f77b-2290-41f1-b8c2-9a0c7d3af11a))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1a07d91b-e490-454d-823b-6be122ce16de))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 7be20364-1dac-4209-bd9c-56534f2e1f00))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp d741f5af-3898-4ebc-a0ca-90510d8203b4))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp e32e5efd-9a5e-498d-b9ab-cd3359bb61f0))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 32892d9d-80e0-41eb-aaac-917f6e7293c4))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3d0b504e-8856-4a57-8a1c-35d9d7e6ea53))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5b4cfeef-ba85-458b-965f-0fd61f41289a))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c71d03ef-e3f5-47f7-ac63-83fb788789bc))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 15ae5f90-ccc7-4e15-adc6-ac3e5518b056))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 41cd2ad1-44ef-4af6-ba05-e511627d2462))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 42e45e2c-9977-480b-a863-c6494dbed837))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4a123de1-4959-459b-8ea6-00ce0d5bb79a))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 999b41ce-b175-4aa7-bc23-cb134ca59463))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp c4b4b6a1-d405-4ca8-9228-be1733d3e887))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 56 "Net-(R10-Pad1)") (pintype "passive") (tstamp 21b66788-7a47-4e7e-9c5b-47bd8d3b0230))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 61 "PAD_A3") (pintype "passive") (tstamp 2b288282-68f6-4fce-a552-addf3a2456a8))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "keyboard:potm" (layer "F.Cu")
    (tedit 62289D7E) (tstamp 78b92e3a-8baf-4e19-aa30-d98ae1eba404)
    (at 76.2 55.88 90)
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/3ff7806d-0a95-4a3a-bcd2-3b2dd82b9479")
    (attr through_hole)
    (fp_text reference "RV3" (at 10 -15.24 90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a7594d5c-ad1f-40f5-813b-654b6d3b9958)
    )
    (fp_text value "10k" (at 10.16 5.08 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a7c0ad69-e1cb-444e-9165-b717cab496c8)
    )
    (fp_line (start -0.62 1.425) (end -0.62 3.12) (layer "F.SilkS") (width 0.12) (tstamp 58a9058d-261c-4ca5-916e-35c29144d900))
    (fp_line (start -0.62 -13.12) (end 10 -13.12) (layer "F.SilkS") (width 0.12) (tstamp 5ed8b74e-bab3-4b70-874c-568ccac83a97))
    (fp_line (start -0.62 -8.574) (end -0.62 -6.425) (layer "F.SilkS") (width 0.12) (tstamp 65cda88e-efbe-42f2-8237-086e242d31bf))
    (fp_line (start -0.62 -13.12) (end -0.62 -11.426) (layer "F.SilkS") (width 0.12) (tstamp 9575403a-6051-4efd-9b07-e689a7bfd00a))
    (fp_line (start -0.62 -3.575) (end -0.62 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 9954583e-622e-42f6-a286-39bb73918036))
    (fp_line (start -0.62 3.12) (end 10 3.12) (layer "F.SilkS") (width 0.12) (tstamp e1502f9f-fe69-4f6d-8658-c429e069b784))
    (fp_circle (center 10 -5) (end 18.12 -5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 463c19e5-8c2c-4044-89e9-9a774ea67abf))
    (fp_line (start 18.25 -13.25) (end -1.45 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 200bebdd-8892-4134-b57c-c428c27e10c3))
    (fp_line (start -1.45 -13.25) (end -1.45 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 7a904df1-aa2c-420e-b06d-0c1794fbb334))
    (fp_line (start -1.45 3.25) (end 18.25 3.25) (layer "F.CrtYd") (width 0.05) (tstamp f55b7f68-1b3f-49fa-9556-b773358edd5f))
    (fp_line (start 18.25 3.25) (end 18.25 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp f5a3c81b-3610-45d6-a41f-db6778641324))
    (fp_line (start 10 -13) (end -0.5 -13) (layer "F.Fab") (width 0.1) (tstamp 09ecfd31-52f7-4875-abf7-8bbc9c5bd0ce))
    (fp_line (start -0.5 3) (end 10 3) (layer "F.Fab") (width 0.1) (tstamp 628acda9-e82a-4ef6-b541-35d0806d9cf1))
    (fp_line (start -0.5 -13) (end -0.5 3) (layer "F.Fab") (width 0.1) (tstamp 853662b4-c3d7-45f7-844e-c1b7a002d98a))
    (fp_circle (center 10 -5) (end 18 -5) (layer "F.Fab") (width 0.1) (fill none) (tstamp 67cf4992-e8ce-4cf3-b6b6-a2c96ad8cab9))
    (pad "1" thru_hole circle (at 0 0 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 5 "VCC") (pinfunction "1") (pintype "passive") (tstamp 8a7bed28-c408-41bc-8fb4-7e4cf957ac90))
    (pad "2" thru_hole circle (at 0 -5 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 10 "POT_WAV") (pinfunction "2") (pintype "passive") (tstamp 5483c02b-428b-4e75-98d4-0b58473fde20))
    (pad "3" thru_hole circle (at 0 -10 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "3") (pintype "passive") (tstamp beb0f0de-a23a-4886-a703-16fbb95ff878))
  )

  (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 7d214b74-03b9-4774-9708-d292b207cc67)
    (at 78.74 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/52aef6a1-bb01-4cff-bb75-dec87db09670")
    (attr through_hole)
    (fp_text reference "R15" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 647af8d6-8cd2-4c16-b006-85f65e156f0a)
    )
    (fp_text value "1k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 881c0239-0736-44f1-b9ad-270fa5a90c8d)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0494945d-30aa-4dfc-a7db-a76e4144928b)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 40a1d86a-f96b-4f7b-86b1-aaf716bb2d42))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 683f2b56-fd10-4bb7-9ecd-e0730edba3f7))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 73ae83a5-020a-4327-b90d-29cc0aab6a77))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 9292d21d-a1c5-4919-b2ca-d60a18782af4))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp f028bb9a-e844-4a65-be05-94031330ae0e))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp fb49aa4f-1335-4636-a802-241b030c2abc))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6d0c0b5c-64f5-4edf-9b64-3692aee02f2f))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 90ea5eff-61f5-42fd-9d09-8293d32f875f))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp a907df6a-bb58-46d9-bf00-b6cc8cb33e12))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f2d65df2-f587-4815-81c9-d592863fe6fa))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 0921ebf9-2a85-4087-9aa3-f3141411030f))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 5388bc04-5505-4c45-8c69-9dbfc082557e))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 89d4d411-a5f7-4c6f-bc3b-ba27dd7732b0))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp cb769dc3-c6fc-49f5-8be4-730baedaf59b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp cedc45bf-4e65-4017-b907-290cabf6a00e))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp d9a08630-432a-43f5-85e2-e4ead7338f4f))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 66 "PAD_B3") (pintype "passive") (tstamp 3f4f770f-5e99-4a8e-b5af-7914e68b6289))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 83 "Net-(R15-Pad2)") (pintype "passive") (tstamp 3b81d06a-ce18-4bca-803e-30b2703c3dd0))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 7ef98de2-0407-484c-b75f-d3f0938f17b0)
    (at 60.96 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/6972faf2-be64-4d3f-8064-6a07e2961eb4")
    (attr through_hole)
    (fp_text reference "R8" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 719bda63-4195-4c5c-a44b-ca388f59907f)
    )
    (fp_text value "39" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c0358443-e9f9-4f80-a497-d7dbc807ef4d)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c3c02496-b038-43f1-99b8-409718a4222c)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 61446f17-835b-4791-9188-67c3e22457bd))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 7af2ff61-aa57-437e-b3e4-6de63a8458e0))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 82c834f4-65ed-4ed3-ac93-c9bc318e975d))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp a5559a91-1bf7-4f1d-a8fe-8184e76db515))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp ba7195ae-a1f4-4965-82ea-89d705092be4))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp bd66e6de-b853-4de2-bf42-06831b49fe08))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1cb8969e-d6f6-458f-ad19-ff8d1f94f199))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 260d316a-afcb-47fb-9cc4-c0ebdd6e99e0))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 588edd11-2e50-4108-9a03-93d34c69db3f))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5a2ffe10-ce02-42f9-a474-f76d881a7163))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 13829c8a-4754-49a5-a64f-833517abd83b))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 2b3b87fe-178d-462c-ba75-4c49c832fa94))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3ae99dd6-68c6-4c0f-8029-48571177a4a4))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 4d3fbe30-8d80-40e0-b7ae-5eda5664f629))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 5f567410-98c0-4c61-86ba-d95ac31b434f))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 9eccfedf-a791-4695-b0af-985ec515edcb))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 55 "Net-(R7-Pad2)") (pintype "passive") (tstamp cf9b593f-7152-4b36-a501-419aa3f30746))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 59 "PAD_G#3") (pintype "passive") (tstamp 0b8acda2-e6d4-4de7-b591-ea0c9b51fcec))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 823bdb72-b3da-47c7-8be1-d919cd2d99f3)
    (at 63.5 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/27a66150-b8ad-4e9b-a26c-00b78d0b1d2a")
    (attr through_hole)
    (fp_text reference "R9" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0a3d5f0d-9dd3-4d13-b1a2-971ad3066953)
    )
    (fp_text value "750" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2a7ac3c0-b782-4a36-8e14-9fb9fc4b9e99)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f502d467-1eea-4740-aa02-5ec768378ee2)
    )
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0c6addf4-b6fc-4def-8466-3dfac9c38931))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 36f072da-5cf4-42b3-8b46-ce0a76085163))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 451d1f81-9b2b-4af5-8728-d381ceb9fa2a))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 4fe6981b-b29c-4bff-8414-9cf327d56d31))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 725d4335-a8df-4de6-b22d-adf90c885ed7))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp b7b49d45-1872-42fc-a893-cfaa03379edd))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 30232234-b76c-4ef5-be01-5b9ed89bac9a))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5301d788-3064-49ec-9a31-f5ee69083ef1))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6557ea9e-c90e-4ed9-984e-32c4c2bf5b2d))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d6e24b4e-e165-441b-92f7-0a67c0529c28))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 28d6ad40-2169-4bea-bf1b-c3126b8bc630))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7280a6b6-2838-4619-9a09-170c1ee98a4b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7e829b2e-79c1-4650-838f-977c7fbc34ca))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp ae7b2497-1736-4aa7-9c92-c79b4a2ba12e))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp d7f9a14b-c349-4deb-9d5c-8c3b8b4da9fe))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp fe1c6d97-46f0-4866-a441-20d4c51a8a1e))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 59 "PAD_G#3") (pintype "passive") (tstamp 7c40cd61-9106-4e87-8021-9529e806a4fa))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 56 "Net-(R10-Pad1)") (pintype "passive") (tstamp ec24305a-fe45-40a8-bced-f8a7c12c6997))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 85ea239a-4f63-4ce1-823e-14c287be0fe2)
    (at 162.56 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/2b455c78-f27b-4c58-8e2a-396f25214e3c")
    (attr through_hole)
    (fp_text reference "R43" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 38345498-33a1-4606-8da5-8abd6ec436b7)
    )
    (fp_text value "240" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 13ab75e8-6253-4e4a-89dd-a54baf553e1c)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b32533ee-4805-4346-9c37-d15e03c3a807)
    )
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 201e94ed-84d0-4b49-8d30-525169c09873))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 3bc12703-ec85-4e23-b075-ade8bba1f66c))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 7e6e7bd8-b35c-48c6-ab3d-29dc8dd6963c))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 868d6732-5ed4-41c7-ad00-4475998178ce))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp adb01ca0-e7ef-42c6-928b-000470e557cb))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp fcb67acd-5c1c-4941-9e97-df85f8dab600))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2c9e4bc8-c3c1-47a5-b5d4-5676f9c217d4))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3b1a3123-1eab-4fb3-920c-1947f45b51e7))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9ec66984-8d82-45f2-8cd6-feaf6eb1a336))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c1d9ffa1-1ef1-45c7-bcc3-81a2d7789649))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 24ea196d-2672-4138-bc22-b665a3b938cc))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 553a0f35-0ffd-4524-b755-d007f2ce9fb4))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 595f44c9-ca5d-41b3-93fb-bfd87b9c52bf))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp a8d38862-3d8f-459c-84d2-1a6ccbc9f76b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp aa68afe7-2497-4b58-b34a-c35e18010cc7))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp e76d2663-2b54-4bba-aa19-32aacee998f1))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 99 "Net-(R42-Pad2)") (pintype "passive") (tstamp 9fc5a32a-e7c7-47d7-86a9-818ab2c9ad1c))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 6 "GND") (pintype "passive") (tstamp 939dd934-4bdb-4637-b8b2-5387242fcb68))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "keyboard:potm" (layer "F.Cu")
    (tedit 62289D7E) (tstamp 8e1de856-3650-44fc-bdbc-9b70d85e955a)
    (at 144.7 55.88 90)
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/d02bc672-f793-45a7-9593-f71a26d562ee")
    (attr through_hole)
    (fp_text reference "RV4" (at 10 -15.24 90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0f65e6a9-c662-4b83-8ceb-7da0a6ea3632)
    )
    (fp_text value "50k" (at 10.16 5.08 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2bbb3313-83e1-4786-b8fb-e346b79253a4)
    )
    (fp_text user "${REFERENCE}" (at -0.5 -5) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 89e68661-2b84-44be-b490-5065aa4c29dc)
    )
    (fp_line (start -0.62 -3.575) (end -0.62 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 346d4d64-e69f-4e88-9bf9-2a79db90325e))
    (fp_line (start -0.62 -13.12) (end -0.62 -11.426) (layer "F.SilkS") (width 0.12) (tstamp 812e90e5-d28f-4254-983c-74f0da0fa20a))
    (fp_line (start -0.62 -8.574) (end -0.62 -6.425) (layer "F.SilkS") (width 0.12) (tstamp a1b7e4e3-5879-48ea-b56c-644e15d9a3a2))
    (fp_line (start -0.62 1.425) (end -0.62 3.12) (layer "F.SilkS") (width 0.12) (tstamp be552fbc-07be-474a-b5c2-66754ab2f9ad))
    (fp_line (start -0.62 -13.12) (end 10 -13.12) (layer "F.SilkS") (width 0.12) (tstamp d31cd8c2-1972-4659-9389-244e6eac4b7b))
    (fp_line (start -0.62 3.12) (end 10 3.12) (layer "F.SilkS") (width 0.12) (tstamp d35f839c-c98a-4391-8c59-0e76a3cdd552))
    (fp_circle (center 10 -5) (end 18.12 -5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3199b463-e03d-4629-8cfe-1db96b520b52))
    (fp_line (start -1.45 -13.25) (end -1.45 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 35458933-abe4-4633-acb2-d9c38e2b3c6d))
    (fp_line (start 18.25 3.25) (end 18.25 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 50f11fa4-5c52-4e18-afed-a4390e37aec7))
    (fp_line (start 18.25 -13.25) (end -1.45 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 651d8e9c-9b16-4c51-9dc4-fac5e64144c1))
    (fp_line (start -1.45 3.25) (end 18.25 3.25) (layer "F.CrtYd") (width 0.05) (tstamp d7d70c0f-2039-4a25-9bfd-4ad1ad8cdca3))
    (fp_line (start -0.5 -13) (end -0.5 3) (layer "F.Fab") (width 0.1) (tstamp 1d486c6a-a21d-417e-b0b6-352e176f2cdf))
    (fp_line (start 10 -13) (end -0.5 -13) (layer "F.Fab") (width 0.1) (tstamp 79ff2454-8789-4489-8bb4-694963680a8e))
    (fp_line (start -0.5 3) (end 10 3) (layer "F.Fab") (width 0.1) (tstamp aa1ce2f8-9579-440c-8f80-902ecb63ecbf))
    (fp_circle (center 10 -5) (end 18 -5) (layer "F.Fab") (width 0.1) (fill none) (tstamp ba0120b7-e37d-440f-9598-ba2ddbcfd03b))
    (pad "1" thru_hole circle (at 0 0 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 69 "Net-(R44-Pad2)") (pinfunction "1") (pintype "passive") (tstamp bcedcd01-0566-4e75-aca0-a807136ad0f3))
    (pad "2" thru_hole circle (at 0 -5 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "2") (pintype "passive") (tstamp eabd6b42-b363-48f0-8362-3147bbe94dbf))
    (pad "3" thru_hole circle (at 0 -10 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 100 "Net-(R46-Pad2)") (pinfunction "3") (pintype "passive") (tstamp 36c2eaf3-0ab5-4a4e-b861-e1a38721bda1))
  )

  (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 919d6ac8-d98a-4062-ab2e-bc89b789e944)
    (at 182.88 96.52 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (attr through_hole)
    (fp_text reference "R62" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 238d17ee-78a7-4138-8b95-c10b225a8e62)
    )
    (fp_text value "12k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7a6e5b54-0c2b-40c6-b4e9-6db7ea8f6c20)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 10356099-7b8d-4914-a3cc-f6f01f45e7f8)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 131f59d7-81d1-463c-9746-94c7e6ca44ed))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3d87904c-d85c-4bbf-97c6-adb08964aa03))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp a45d6a95-35ca-4a4b-8709-dc847dc368c4))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp b2222e6a-882c-40d4-b385-6d8027e3c680))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp bd72fe48-0065-44ec-a7be-6c365f617f93))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp cf5dd1c2-be2b-47c8-94fd-611c7b3d29ad))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0c7c929d-fc42-48df-9f41-c33294038cd9))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6f2a61dd-5d58-4f9a-947c-9eede02ebaf9))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d8d734de-94b6-4db4-b630-c5060091044f))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f2a5bea0-af16-4f3e-96ea-c2c65e5d3519))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 30e5f311-2fcc-4784-a4ce-8d3fc82814a9))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 47d81e0f-b00a-49d2-8347-393b2de21c4e))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 6fd9be09-73e3-42ee-ba63-d8f79e055153))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 7ce1f786-7a18-4eef-a77e-235ded1e3c77))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp d4fb78ef-9f92-4456-8bf4-84cebe17830e))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp fab6e5d8-40f2-4d6a-a034-ef09d49a2969))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 74 "Net-(R62-Pad1)") (pintype "passive") (tstamp 5e4294f0-73a5-4a2a-bec9-a0892aea3e48))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 73 "Net-(R62-Pad2)") (pintype "passive") (tstamp 5a08b769-52f5-4ffb-a88f-cef6e9ce4690))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 944edb35-9f5b-4576-8b54-6d6a09845a77)
    (at 101.6 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/6640e98e-656f-46c7-b34a-df2d64dd505d")
    (attr through_hole)
    (fp_text reference "R25" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1200673d-b2ca-414e-bac3-885bbdf7d3d1)
    )
    (fp_text value "68" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d5f0102a-ccd2-481d-aac9-a500663069d8)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 95ceb3ed-a7d7-4f46-a5b5-e573dd4a910f)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 2c11cd86-c17d-4d8f-89a3-4b809d7b5b0d))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5310e544-c28f-4fe1-8665-5377bc79757f))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8778d1c5-07c3-4374-9b2c-eb48d2f32042))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8781291e-cbb2-406c-8d33-4c9ef34481d5))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp b68c71cf-bc60-42db-9be0-09ce7c79f3ac))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp eb420a5f-fed2-401e-af84-af7a622b2a76))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1f612e70-0c34-4c1b-9a81-56417c9c8822))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3c2b8904-a734-4a85-a82f-6473c641e8e2))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a43a3659-882e-4070-9e47-a5404e6e1e6a))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp be982124-ae0b-4add-a6d8-2344db80a9aa))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 06fcb724-535c-414c-9bd9-2c4253d1061a))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 169ff030-0e51-4ebc-85c7-e586ef119eec))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 175390ca-dcdb-4f63-8291-35ba8b07b140))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 55e5b7d2-eb43-4f5b-9f89-b1eff1e119d9))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 77aa92e7-fbdc-48fb-aa69-35a8ea21ae59))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp f50dd647-c734-445d-8b14-8c68d6377091))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 88 "Net-(R24-Pad2)") (pintype "passive") (tstamp fb527929-5a76-4386-92c7-ed3f3a2f2a66))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 81 "PAD_E4") (pintype "passive") (tstamp c806ca64-4076-499b-9029-155759542c55))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "keyboard:potm" (layer "F.Cu")
    (tedit 62289D7E) (tstamp 97af4f75-a667-42ab-a6d9-ae3268153439)
    (at 35.56 55.88 90)
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/558b1d1b-b769-4218-bad0-51d820a28863")
    (attr through_hole)
    (fp_text reference "RV1" (at 10 -15.24 90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2151e192-586a-4caf-9577-69a5ad7e509c)
    )
    (fp_text value "10k" (at 10.16 5.08 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0489275c-af6a-41a0-a388-7ad7140910ab)
    )
    (fp_line (start -0.62 1.425) (end -0.62 3.12) (layer "F.SilkS") (width 0.12) (tstamp 19d189f6-835c-4d03-91da-464a9a5e19c6))
    (fp_line (start -0.62 -8.574) (end -0.62 -6.425) (layer "F.SilkS") (width 0.12) (tstamp 3c0c2267-689e-4a39-849e-470453d58615))
    (fp_line (start -0.62 -3.575) (end -0.62 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 71e831a2-d6d4-4c2c-8acd-2e2f8ed41434))
    (fp_line (start -0.62 3.12) (end 10 3.12) (layer "F.SilkS") (width 0.12) (tstamp 9dc2b9ed-150a-4bdb-9b1f-e7ee82aea23d))
    (fp_line (start -0.62 -13.12) (end 10 -13.12) (layer "F.SilkS") (width 0.12) (tstamp a7ae145e-7b82-43e7-996d-aa9cfef94378))
    (fp_line (start -0.62 -13.12) (end -0.62 -11.426) (layer "F.SilkS") (width 0.12) (tstamp b9b3dbaa-44df-49a3-bc6b-a08140804450))
    (fp_circle (center 10 -5) (end 18.12 -5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp c778d9c4-a487-4cae-b78c-65ec3bb91f0d))
    (fp_line (start 18.25 3.25) (end 18.25 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 3014103d-488f-4d42-ae20-fbe5602a1a39))
    (fp_line (start 18.25 -13.25) (end -1.45 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 9140e6b7-aeda-4fbb-a69f-6e9ecb4fd8a8))
    (fp_line (start -1.45 3.25) (end 18.25 3.25) (layer "F.CrtYd") (width 0.05) (tstamp f1d9502e-0002-4259-83c9-4516d9f5acc8))
    (fp_line (start -1.45 -13.25) (end -1.45 3.25) (layer "F.CrtYd") (width 0.05) (tstamp fff665af-1004-4288-beb8-365c37cf08f6))
    (fp_line (start -0.5 3) (end 10 3) (layer "F.Fab") (width 0.1) (tstamp b0f5784b-9d6a-4976-a299-fcd0915c7f6c))
    (fp_line (start 10 -13) (end -0.5 -13) (layer "F.Fab") (width 0.1) (tstamp b385a308-a36f-41bf-9a6c-3ffb12e53051))
    (fp_line (start -0.5 -13) (end -0.5 3) (layer "F.Fab") (width 0.1) (tstamp fface31d-090e-4904-9cd9-293ebf0d206a))
    (fp_circle (center 10 -5) (end 18 -5) (layer "F.Fab") (width 0.1) (fill none) (tstamp bec5b487-d3f7-486f-88f6-f2b3cc77c0e1))
    (pad "1" thru_hole circle (at 0 0 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 5 "VCC") (pinfunction "1") (pintype "passive") (tstamp 1e13617f-c210-4c40-b253-7f17da46fdeb))
    (pad "2" thru_hole circle (at 0 -5 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 8 "POT_ATK") (pinfunction "2") (pintype "passive") (tstamp 1908e938-2ff3-4f98-a60c-ff75ebce6de6))
    (pad "3" thru_hole circle (at 0 -10 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "3") (pintype "passive") (tstamp 6dafc63a-2f65-4f95-839e-877306a1b94d))
  )

  (footprint "keyboard:potm" (layer "F.Cu")
    (tedit 62289D7E) (tstamp 997b4d7d-c891-4d0e-a3e2-bacdbeedf157)
    (at 55.8 55.88 90)
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/f0c290e8-8ca7-4c74-b478-bb1bb112af62")
    (attr through_hole)
    (fp_text reference "RV2" (at 10 -15.24 90 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 992b2881-45e4-44f8-831a-381cbe29ce3c)
    )
    (fp_text value "10k" (at 10.16 5.08 90 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a5e7a0f2-2f6e-4f33-b9e1-3524c8f7e7b7)
    )
    (fp_line (start -0.62 1.425) (end -0.62 3.12) (layer "F.SilkS") (width 0.12) (tstamp 1c1c1d75-81f4-47f2-81c6-b74d48b4067a))
    (fp_line (start -0.62 -13.12) (end -0.62 -11.426) (layer "F.SilkS") (width 0.12) (tstamp 593f8348-ea05-4f6d-a3f8-afab7cb23b64))
    (fp_line (start -0.62 -3.575) (end -0.62 -1.425) (layer "F.SilkS") (width 0.12) (tstamp 721a3e78-622c-469d-9dad-6a4db17974dc))
    (fp_line (start -0.62 3.12) (end 10 3.12) (layer "F.SilkS") (width 0.12) (tstamp 882ab447-671a-46a6-9897-91d22754a638))
    (fp_line (start -0.62 -8.574) (end -0.62 -6.425) (layer "F.SilkS") (width 0.12) (tstamp 8a3328ed-3513-4198-b72d-9d4e383a2034))
    (fp_line (start -0.62 -13.12) (end 10 -13.12) (layer "F.SilkS") (width 0.12) (tstamp fbfbc984-8497-4849-971d-8e6868dad0a7))
    (fp_circle (center 10 -5) (end 18.12 -5) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 5e456540-217e-47d7-8522-e23efb4ced8f))
    (fp_line (start 18.25 -13.25) (end -1.45 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 1e96fdc1-b348-4197-812d-3fa891ee8a9f))
    (fp_line (start -1.45 -13.25) (end -1.45 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 679d1846-bddf-4133-b61a-9af7fa99f247))
    (fp_line (start -1.45 3.25) (end 18.25 3.25) (layer "F.CrtYd") (width 0.05) (tstamp 819e55ee-6625-4e58-872f-ba6d286d0d6a))
    (fp_line (start 18.25 3.25) (end 18.25 -13.25) (layer "F.CrtYd") (width 0.05) (tstamp 81cc4d9d-d03f-44ad-8ff0-9cbe63589bb8))
    (fp_line (start -0.5 -13) (end -0.5 3) (layer "F.Fab") (width 0.1) (tstamp 1a20a6cf-c2a4-4f7a-b63c-797a1137aef6))
    (fp_line (start 10 -13) (end -0.5 -13) (layer "F.Fab") (width 0.1) (tstamp d4b54e33-4a61-4217-8495-2e199ef823fe))
    (fp_line (start -0.5 3) (end 10 3) (layer "F.Fab") (width 0.1) (tstamp fc177e55-07ad-4bb4-bf57-b88553297677))
    (fp_circle (center 10 -5) (end 18 -5) (layer "F.Fab") (width 0.1) (fill none) (tstamp b97a0cb0-7f2e-483a-8d40-061087f82767))
    (pad "1" thru_hole circle (at 0 0 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 5 "VCC") (pinfunction "1") (pintype "passive") (tstamp 4c844ca2-9911-417a-a854-61af52fb0b10))
    (pad "2" thru_hole circle (at 0 -5 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 9 "POT_REL") (pinfunction "2") (pintype "passive") (tstamp 39d49fea-4aa1-414a-b771-aa5cec7d0c20))
    (pad "3" thru_hole circle (at 0 -10 90) (size 2.34 2.34) (drill 1.3) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "3") (pintype "passive") (tstamp 93b82d10-2c32-4820-a487-5ae98a9f3ae1))
  )

  (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 9d0b8b11-2217-410d-ae8a-5f82ba383387)
    (at 43.18 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/de2d5e71-eae6-4854-850e-3a153412982d")
    (attr through_hole)
    (fp_text reference "R2" (at 5.08 -0.03 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c8117bba-6b2a-4528-9104-16037ce7eb42)
    )
    (fp_text value "0" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 83c21344-33b4-4b36-aef3-8bbb7f15ba40)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 64146ce1-cdc2-4879-b718-0bbf42b9d1bf)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 0930bfa0-de1e-48ec-86f2-ec6f59fde2e2))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2db3af06-8cf5-47b1-b47f-32eae9d1b37c))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 3de63265-d6db-49dd-9b31-7efa94010e02))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 4a3a73d5-5b18-45d6-9856-3e76e6490382))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 8524a0c9-e6ce-414b-96ef-e3476e486d1a))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp f9090c08-1796-4499-8b9d-971acae7fd74))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 35f4130b-e4a4-43ea-94ee-f53bc2373750))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5e20a3b1-7255-49b8-a1f3-4ad044696869))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9ef9d694-9bd7-4d32-bfa9-5db8da095e5f))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d522df4c-6e80-4387-b20c-874e7e590146))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 3d0ad381-4df1-446b-a821-663dd9b122ad))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 4db7826c-9a3f-4825-a01f-e5fecf3c7f36))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 531de578-8e38-4025-a0e5-1accd175fb9d))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 7b9e4fdd-6488-4f7d-943d-0b684a39084c))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 916baf08-f1bd-49a9-b32e-2b8eec1a63c3))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp e11bf1f2-4cdd-46df-8613-91b727faea34))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 52 "Net-(R1-Pad2)") (pintype "passive") (tstamp 8af11a3b-7a69-4ecf-b450-24cc6c8fa584))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 53 "PAD_F3") (pintype "passive") (tstamp bc115c57-cdb2-4d81-bf0b-f207aa9314ee))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp 9e240620-4bd8-41ff-8e31-c69fa403ef37)
    (at 86.36 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/58863102-b87d-45b8-a0aa-d8520dc9cad3")
    (attr through_hole)
    (fp_text reference "R18" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f2820135-528f-4ff9-80e5-eb40f0731891)
    )
    (fp_text value "10" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4d7999d9-bd45-4337-a9fd-0f4e89c72d66)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 60afbd7b-6e98-4880-91f4-438b50ba7ad2)
    )
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 05d57f66-61f0-4023-9de9-a966e420154a))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 065c8596-2b89-438b-b2ee-4e1530c773e0))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8373941c-9b20-4954-b46f-27acacd037b6))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c412fdb9-df2e-48e3-9382-f142bf79efaf))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp cffbc373-e375-4624-a053-2e089f6c7c3f))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp ed2885b5-f3c4-4bf1-97db-c3789a851293))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1f594200-2047-4a08-ac37-86ede7da86cd))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 68acb219-3d95-4f4d-92d7-28bdc9cb58ae))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp cf093f4f-e713-460d-82af-deeb478db1cf))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp f80106b8-6b0a-4814-a919-195e29399e2b))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 34086d6a-f7fc-4599-8936-435fffdf091c))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 62f71599-c431-4fe9-93eb-634482c065f3))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 633f75c5-3e59-4c5c-acaa-7b07045091db))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 66edafa8-b259-431f-bd68-843f47203ac5))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp bdff8379-733e-4c01-ad41-370a9842f652))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp ea6d98d5-9bfc-48ff-b210-54fb2a25bc7c))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 84 "Net-(R17-Pad2)") (pintype "passive") (tstamp 6434c47e-ccf7-4cdc-b8b6-4c2ac0312519))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 75 "PAD_C#4") (pintype "passive") (tstamp 2dbe5be1-f654-4d0c-b3d8-644a486db2b4))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Connector_Audio:Jack_3.5mm_Ledino_KB3SPRS_Horizontal" (layer "F.Cu")
    (tedit 5BC12D58) (tstamp a5b01259-e94c-4c01-9810-9b5ec9a88e35)
    (at 164.75 63.9225 180)
    (descr "https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf")
    (tags "jack stereo TRS")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/4fbc2f68-0dba-4bd2-b278-21ce5839e3ed")
    (attr through_hole)
    (fp_text reference "J3" (at -3.5 2.3) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 14c8150e-1a11-47e1-a298-fe94cf1ba305)
    )
    (fp_text value "STYLUS" (at 2.3 -12.2) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4f2a9cd7-f078-4939-bff8-57578ff1c5c4)
    )
    (fp_text user "${REFERENCE}" (at 2.7 -4.6) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 46b38f86-bfe7-4198-8124-8ee92f148a73)
    )
    (fp_line (start -5.8 -10.8) (end 1.95 -10.8) (layer "F.SilkS") (width 0.15) (tstamp 00944aaf-484a-4932-9729-7f1b54486d58))
    (fp_line (start 8.7 -10.8) (end 8.7 1) (layer "F.SilkS") (width 0.15) (tstamp 26d6c6d1-0685-4026-bd64-8355e63e1c00))
    (fp_line (start -9.4 -1.5) (end -5.8 -1.5) (layer "F.SilkS") (width 0.15) (tstamp 32a0da22-dbce-4e30-ac59-fba0b3a7c7d5))
    (fp_line (start 8.7 1) (end 8.6 1) (layer "F.SilkS") (width 0.15) (tstamp 3735b5cd-0973-499b-99f1-019ea1e630a0))
    (fp_line (start -5.8 1) (end -5.8 -10.8) (layer "F.SilkS") (width 0.15) (tstamp 4b2a2196-382e-4871-b32a-4ac9497fdbb4))
    (fp_line (start 0.5 2.05) (end 0 1.5) (layer "F.SilkS") (width 0.12) (tstamp 7325d20f-889f-4584-a844-3df772e15616))
    (fp_line (start -5.8 -7.7) (end -9.4 -7.7) (layer "F.SilkS") (width 0.15) (tstamp 882f6900-260b-4b04-949c-0a5179b95157))
    (fp_line (start 0 1.5) (end -0.5 2.05) (layer "F.SilkS") (width 0.12) (tstamp 9739e49e-6c7a-45f0-89b5-81bdbfd70032))
    (fp_line (start -0.5 2.05) (end 0.5 2.05) (layer "F.SilkS") (width 0.12) (tstamp c083a15c-1171-4c3d-8dd0-5fa9b760cd9f))
    (fp_line (start 6.3 -10.8) (end 8.7 -10.8) (layer "F.SilkS") (width 0.15) (tstamp c2c2b811-945a-45ee-b07d-fe22bca07d82))
    (fp_line (start 6 1) (end 2.25 1) (layer "F.SilkS") (width 0.15) (tstamp c3ada7da-7997-4bcf-b17b-2bfca216f688))
    (fp_line (start -2.25 1) (end -5.8 1) (layer "F.SilkS") (width 0.15) (tstamp cd3e0643-0fc7-478f-b8d3-e079ed2a7855))
    (fp_line (start -9.4 -7.7) (end -9.4 -1.5) (layer "F.SilkS") (width 0.15) (tstamp f7c45ee1-6e1a-40c0-969f-8f5dfe9519b5))
    (fp_line (start -9.8 -11.4) (end -9.8 2) (layer "F.CrtYd") (width 0.05) (tstamp 227da5c9-70bb-4f5f-8de3-bfd86cba78c1))
    (fp_line (start 9.1 -11.4) (end -9.8 -11.4) (layer "F.CrtYd") (width 0.05) (tstamp 39a7dc0f-2d51-44e1-bae5-5d8caddd7637))
    (fp_line (start 9.1 2) (end 9.1 -11.4) (layer "F.CrtYd") (width 0.05) (tstamp 7a2e7027-bca9-4602-a3b1-a06608db0cd8))
    (fp_line (start -9.8 2) (end 9.1 2) (layer "F.CrtYd") (width 0.05) (tstamp abbbc276-80d3-4be9-8a11-657248bb42a3))
    (fp_line (start 8.6 -10.7) (end -5.7 -10.7) (layer "F.Fab") (width 0.1) (tstamp 1e86f9da-23d9-4c91-805d-8794eb511d59))
    (fp_line (start -9.3 -1.6) (end -5.7 -1.6) (layer "F.Fab") (width 0.1) (tstamp 31257103-54d2-48d6-b0c8-7ab8afa4ba51))
    (fp_line (start -9.3 -7.6) (end -5.7 -7.6) (layer "F.Fab") (width 0.1) (tstamp 63716576-d874-4b0d-b614-6996d94a66af))
    (fp_line (start -5.7 -10.7) (end -5.7 0.9) (layer "F.Fab") (width 0.1) (tstamp 64c99d6f-72ca-4834-9092-43b08ec42050))
    (fp_line (start -9.3 -7.6) (end -9.3 -1.6) (layer "F.Fab") (width 0.1) (tstamp 982e2a11-f094-407c-95f2-8c6494b2f453))
    (fp_line (start -5.7 0.9) (end 8.6 0.9) (layer "F.Fab") (width 0.1) (tstamp c24ef356-9b7e-4bb4-971f-db9634e2d0eb))
    (fp_line (start 8.6 0.9) (end 8.6 -10.7) (layer "F.Fab") (width 0.1) (tstamp d408ff10-bc6e-42c0-8030-955a3bb8b6c6))
    (fp_circle (center 0.1 -1.75) (end 0.4 -1.55) (layer "F.Fab") (width 0.12) (fill none) (tstamp 85b9434f-3728-4647-a7d8-911af9900239))
    (pad "R" thru_hole oval (at 4.1 -9.8 180) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask) (tstamp b84ba348-27bc-4151-b418-2db530d0f09f))
    (pad "RN" thru_hole oval (at 2.9 -7.1 180) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask) (tstamp 3bb6e28b-1ec4-4810-ad91-e7dfbb089d3a))
    (pad "S" thru_hole oval (at -3.9 -4.6 180) (size 2.2 4) (drill 1.3) (layers *.Cu *.Mask)
      (net 44 "KB_IN") (pintype "passive") (tstamp dbe7446f-a1b4-489a-937c-26c5b6a81ed1))
    (pad "T" thru_hole rect (at 0 0 180) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask)
      (net 44 "KB_IN") (pintype "passive") (tstamp 3d35fec1-b7f4-4c6e-a28c-1c870b75d077))
    (pad "TN" thru_hole oval (at 7.3 -0.5 270) (size 4 2.2) (drill 1.3) (layers *.Cu *.Mask) (tstamp ac84a9ce-1a5d-4761-b724-7b1551372147))
    (model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_Ledino_KB3SPRS_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp abc0decb-50d4-4467-9412-db8d85ff63ff)
    (at 111.76 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/1e05ba49-1d6f-4534-b239-625d3588e24c")
    (attr through_hole)
    (fp_text reference "R29" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fc39fdda-1f03-48e6-9966-c4215f48ab0d)
    )
    (fp_text value "180" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b28cafae-d394-4513-8ad8-4a26f2715041)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 02c9d8ea-754a-43f7-a713-860920f64b9c)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 29ce0296-11ac-4570-b91c-c76b451384c1))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 693758c0-e8d0-4612-bd48-760fa3b657da))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 71bde7f6-c970-4790-a48c-3a26a72d30aa))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp a2c6ddb8-c592-4f88-8d0d-4d49eee9bee0))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ce52e298-4c1f-4e90-ab4b-157701b38695))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp fad1a70b-66b0-4f20-86d8-daec3418c997))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 271396f2-2847-47d1-bb55-41a773d0e0d6))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3a96ba08-295e-4b0c-940a-8c636d2e8791))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4c574d69-3841-4646-9cb9-67e1549af41a))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b5459239-bbba-4698-9494-ff8aed069c28))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 021b2d69-a9cd-4da6-96cb-34c5471ab313))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 52bad23a-58b1-4b0a-8a4a-7eecb3af8646))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 5bd90a2c-0720-49d7-b471-8bd4be0104c6))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 80ac0b57-0388-409c-bf8b-2ee44690ae03))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp be4a35bf-388c-48f9-a61f-b9bdb1e6be81))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp e72eb9df-bed0-4c60-b16a-6863ea8d0319))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 62 "Net-(R28-Pad2)") (pintype "passive") (tstamp d1e483df-ea1d-4033-835a-7e444a60718e))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 85 "PAD_F#4") (pintype "passive") (tstamp c9a2e9f0-afbe-44db-b1e6-81fd64eb369e))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp accfdd65-ff36-4857-91ff-9c83807ce9b1)
    (at 104.14 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/122ffa40-5568-4b1b-929f-5bed396dbc6a")
    (attr through_hole)
    (fp_text reference "R26" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 19cec2a5-b60e-466c-a462-027339cdd498)
    )
    (fp_text value "1.5k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a0ca6efd-c9af-475a-a623-f71718ecb07a)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 997cb231-50c8-4d21-8ed8-7374ef99c345)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5bffc67e-1f19-4ce8-a04b-5942212e56a5))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 5e372dc8-30ff-4a61-8ed0-592ad0944ea6))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp a9942b9f-63fc-470a-be46-0575b71f7cd0))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ae817417-642a-4517-bfa0-c08fe16c7e5b))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp c609c484-2253-4f34-947c-2a26d9dba820))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp e78c6541-571c-4ae3-b37a-ce88f45e4767))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5e8722e9-7b43-46a9-8d22-878ec7a7e611))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 65c529da-f295-4b48-a2d2-3cba281c7fd8))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8fb055dc-8170-4106-aa22-4b8db6cb5fa9))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9414e889-e605-4406-8118-efabd53f9003))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1407bcdb-092b-40e2-b543-e87309754b16))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 7d7dfbee-e276-47ab-a29b-12b4be9b22c4))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp aa6ef6ac-68c2-4840-9d51-c5640cd77ca8))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp bf369b9c-273d-46f2-9162-086fc0edb50e))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp c41f1e29-aebd-4106-9e20-ba3cc383b8ef))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp d2876e9b-6795-46e8-877a-953cac4c8682))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 81 "PAD_E4") (pintype "passive") (tstamp 060e7195-8501-4e09-8c43-1c823c24812a))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 89 "Net-(R26-Pad2)") (pintype "passive") (tstamp 16f5debb-7b35-41b9-bae0-84ba2f44a466))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp b9bd1d5b-9360-4de4-802f-5a04cc690636)
    (at 124.46 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/a6be3c2e-0b24-4610-89a8-3d44a1b477e9")
    (attr through_hole)
    (fp_text reference "R34" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1cabb1df-ea9a-47c0-9f9f-fe624b208c0a)
    )
    (fp_text value "2.0k" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ffec84f1-e4ac-4b95-9dfd-5bcdd9bf2c4e)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2110e78e-ee7a-4172-8efa-2a08459441f1)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 35b3362e-69d2-40e2-b14c-c70c4d3bff21))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 595c8699-4f87-4ebb-9321-4a5f4987f95c))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp dc18b59a-b83c-41b9-84e1-9f5d05376482))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp de3a57ae-f04b-4bd6-86ed-b4dbf4a937b9))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp ebeec514-8106-4599-a37e-f674b1062f23))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp f4257ea9-ccca-48af-8446-08e47927a42e))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2ae345cb-7c3e-4694-8356-8ed4d861a16d))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2e8ece24-d9f0-49bc-9db8-70f69c63b9d8))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 74603add-b929-498e-8c8d-850ef485db2e))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c9b1e4b6-3792-49fe-b801-5c97749da57c))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 0734d71c-dff6-4d7a-a64e-9cb56187fcbb))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 25ea80cd-85ef-4077-8dd3-4b9423064562))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 71e63be9-108b-4aa8-afea-11b70733c4f9))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 861a060a-2768-44dd-8da6-46b803f62474))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp b953617c-673d-4f4e-b55f-de96c9f9e778))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp c398b60a-d76a-43aa-ab9f-94c87f30d5d8))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 90 "PAD_G#4") (pintype "passive") (tstamp 2ee0d17b-6ec8-412c-a497-d001e695be62))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 94 "Net-(R34-Pad2)") (pintype "passive") (tstamp 98be4b32-51d8-4f7b-9b74-14890e40923b))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp bade9c7d-286a-4c69-846c-66807ca46170)
    (at 40.64 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/5ef14809-7691-4b06-b47a-66540706dd2e")
    (attr through_hole)
    (fp_text reference "R1" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0a0dfa65-606a-484f-b34f-8ccf8ace6459)
    )
    (fp_text value "10k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp da8f90b6-eef1-43f0-8114-0cc2ff10fdf8)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e45ee289-0e09-4fb1-8e60-b9936eece8bf)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1e3679ca-9b22-4c4d-b919-ad655c9fa7cd))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 9bb5793e-9656-4b7f-83d8-8e7a78aeb568))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp a202737f-3bef-4789-86fe-0d52089f6e3f))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp a8a17960-74d8-4f78-a5a9-0866b9d8d09f))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp b7723b28-f2bb-4f44-9dd9-a41ed5b213a7))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp da6e4cba-b944-4298-807a-017a29efd608))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6d869c35-f48b-45fb-9e33-550c174c3c2f))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8a80f9a6-35b6-4540-86c7-f39b39959daa))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b181e61f-2ece-44d0-b3d8-4cf9aab3cc52))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ef3053b8-279f-473d-82b1-edd879beea93))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 3954301a-53c0-4509-a36a-1f3f611bbf6a))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp caf3b000-b380-4ea0-8fc3-06cb851ddfcb))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp d448b3d7-8604-429b-a6f5-d8433bbecdd0))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp e593d6e1-8805-468f-ace3-8f153388fa1d))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp ec7c110d-3397-4876-9b1e-359c83f8a42d))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp fe31bc1b-e400-4908-807a-073938dd1851))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 5 "VCC") (pintype "passive") (tstamp 9c993241-b300-4c08-8fb5-2c70bdcba2ee))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 52 "Net-(R1-Pad2)") (pintype "passive") (tstamp 7bc4d422-ec63-4bcc-89be-3eac726fdba7))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp bbfdf9c2-1fe0-4411-857d-4b555d7af160)
    (at 76.2 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/dccd9d79-1954-46a2-89fd-e27311d329bd")
    (attr through_hole)
    (fp_text reference "R14" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 3a42bce0-7657-48ba-87fb-f076f875d51e)
    )
    (fp_text value "47" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp cde3b9d0-093e-498f-9000-b98af9c727a5)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp e0fb141f-ab47-4acb-8b68-0bcddb2d7b34)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1536a9db-5598-466b-a288-cb0c5770380a))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 4195ec14-3bf5-4e68-87e2-0a491afa3525))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 72725c0e-7c55-454f-96ea-76e2f84cd5a5))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 7c2e2eac-a58d-436d-b4b6-f12f3dce2920))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp b72aaacf-4683-4df4-9e60-1a4b5785f973))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c8f52e79-1c85-4d36-abb4-161a4b988f81))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 13ee48b4-acdb-42d5-98e7-1f42231ad494))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 20d3631c-a610-485d-a77f-480404a55a4f))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp dcd4ca3b-362c-4010-b7a2-fd7eb9bbd861))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f7e897b4-0c7b-4b9d-91e0-6c37e46aa438))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 54f22ccb-d5ec-4e2b-8713-604575a5214e))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 56569bd6-7178-44f0-bdce-f871566a1c1e))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 7fa8a056-ce6b-467d-ba4f-e8fe61828733))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 99c7eb7c-a47e-40e7-ace7-a2d71007b07e))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp bdc38e36-b9b1-46ba-865e-279da74e8098))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp ceec7167-0834-4472-b45d-d666f60ac721))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 58 "Net-(R13-Pad2)") (pintype "passive") (tstamp 267773a4-a2c0-4ca8-aaf8-96a2057e4fca))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 66 "PAD_B3") (pintype "passive") (tstamp 9c6b6a16-9b62-44e4-a22e-f145da2ae51d))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp c1268079-c813-41a7-bb84-503ba3f1a9d0)
    (at 99.06 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/03eebe4f-03e8-4e8d-a496-12197d9982c4")
    (attr through_hole)
    (fp_text reference "R24" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a565fbe1-90b3-4bf4-85a9-0bf50a5110f2)
    )
    (fp_text value "1.3k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f0252edc-e8f7-43bb-bd44-03523a4233fa)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f4ba32ab-ab3d-4753-a0b7-a2a898ba4b27)
    )
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 03a6503e-3bc6-4f20-910b-4b25d7b2c144))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 49c7cb3f-a658-4999-a305-f40b4dfcb82f))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 4b77d0a4-5200-4718-ad55-d12fcc0160fd))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 970b75d2-be6a-4922-bf76-1e9d7e25dec5))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp b719a6ee-0144-4966-8b91-52a9b865a921))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp ca0a8209-494a-467f-a97e-e0b7c2ab04fe))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0da5400b-a1bf-449b-b183-0fcf28aff5c0))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 316172bf-52bc-46b4-adac-2d48a0e34563))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp bda69756-c3f2-469b-b8db-4654be9ef247))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f6ab39d7-8d43-4958-82a0-c13a1e508052))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 2449ad7e-7c10-430f-8adf-47601bb4af79))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 2712dda9-3574-49ce-a5b9-b0a2035d3a7b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 376ca56a-29ee-4f83-81b0-a39eae9d6ea3))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 5a741757-8f38-48f3-8f47-a8be71ee539a))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp b2a70cb2-3ea0-4d7a-83e9-2996d0cf206b))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp d7f30e11-d126-4e7b-a554-c013237d8438))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 79 "PAD_D#4") (pintype "passive") (tstamp 2d5ff2c7-9901-4fc1-a95c-b3ae98b7ab8d))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 88 "Net-(R24-Pad2)") (pintype "passive") (tstamp bf9e4529-e167-447c-a045-25248a85a1d5))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp c2afc2d0-8cf6-48c3-b390-cbf84d9ddb10)
    (at 231.14 93.98)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/f5f0d5e3-3d14-428e-91df-7456a59cbf8b")
    (attr through_hole)
    (fp_text reference "R46" (at 5.08 -2.37) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7bca8e14-1bd4-4462-9621-1a0c6e14130a)
    )
    (fp_text value "10k" (at 5.08 2.37) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c83a1e68-dba2-4c03-a492-7a1e3bae5a89)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp a2e494f0-baac-456a-99c9-66350549566d)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 04c73721-b1ca-46cb-b6f2-ca01b7cccab0))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 17eee055-ca85-4027-95a0-820cf80b90bd))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 1b5f7877-ef7e-4d96-a9be-9855ce468190))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 7337e320-8c12-4965-aa5a-92931883df5a))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8abd5d3d-7697-4748-8c38-7d9664f27308))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp d4845e1f-3e06-449a-893c-007508384162))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3f31c0da-8dff-4ff7-bf0f-9be210119a98))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 8c1765be-d141-4dfa-b76b-94c9d1f60bb9))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp cd62f3be-d6ec-4d74-a192-ed37f9005b02))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ffd066a5-0099-4301-9915-af95245d3e8c))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 19516a53-bc23-4125-b6ff-d98fc233a96e))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 1f052af4-3e84-42c5-a642-18e1f387de5c))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 65f8277b-8f99-4ac7-94ae-ff0b25311668))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 696be6f6-d784-4783-bc15-341d05dc034b))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 795e3a6d-ee26-4e03-8a1a-db48bb29a4d4))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp e83b55fb-532d-4b61-b1a1-3a79f811f23d))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 43 "A_SYNTH") (pintype "passive") (tstamp 02bfe6e1-ae12-488c-b4bb-02e422d34466))
    (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 100 "Net-(R46-Pad2)") (pintype "passive") (tstamp a5cf10ee-13de-43d5-9b58-5345bcf0ad43))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "keyboard:keyboard" (layer "F.Cu")
    (tedit 62277A32) (tstamp c2fc56fc-6971-4782-a3bd-7066e432c6e4)
    (at 92.493447 109.146744)
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/cf646517-4a2c-4f96-9f13-151866e28282")
    (attr smd)
    (fp_text reference "KB1" (at 0 -15.24 unlocked) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7fe0a678-7b3e-460d-8fed-d96d997b7a05)
    )
    (fp_text value "keyboard" (at 0 18.82 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp aa17e72a-5a54-4fdf-a28f-157223c124b3)
    )
    (fp_text user "${REFERENCE}" (at 0 20.32 unlocked) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f629da1e-9c08-4adc-be62-ac06860fde5e)
    )
    (pad "1" smd custom (at -68.58 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 53 "PAD_F3") (pinfunction "F3") (pintype "passive")
      (options (clearance outline) (anchor rect))
      (primitives
        (gr_poly (pts
            (xy 5.329151 -14.57535)
            (xy 7.77579 -12.140176)
            (xy 9.586969 -12.140176)
            (xy 9.586969 1.985798)
            (xy -1.767269 1.985798)
            (xy -1.767269 -28.149652)
            (xy 5.329151 -28.149652)
            (xy 5.329151 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp 28fb8764-46d6-4f64-ad30-0c8fbc9cfd7e))
    (pad "2" smd custom (at -58.42 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 54 "PAD_F#3") (pinfunction "F#3") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 3.620299 0.348089)
            (xy 1.727992 2.231542)
            (xy -2.056798 2.231542)
            (xy -3.949177 0.348089)
            (xy -3.949177 -12.836188)
            (xy 3.620299 -12.836188)
            (xy 3.620299 0.348089)
          ) (width 0.000003) (fill yes))
            (gr_poly (pts
            (xy 3.684808 0.274625)
            (xy 1.792501 2.158078)
            (xy -1.992289 2.158078)
            (xy -3.884668 0.274625)
            (xy -3.884668 -12.909652)
            (xy 3.684808 -12.909652)
            (xy 3.684808 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp adef71ed-447b-4595-b122-4aae896c54f1))
    (pad "3" smd custom (at -55.88 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 57 "PAD_G3") (pinfunction "G3") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 4.929623 -14.57535)
            (xy 7.37622 -12.140176)
            (xy 9.187459 -12.140176)
            (xy 9.187459 1.985798)
            (xy -2.166776 1.985798)
            (xy -2.166776 -12.140176)
            (xy -0.355638 -12.140176)
            (xy 2.091063 -14.57535)
            (xy 2.091063 -28.149652)
            (xy 4.929623 -28.149652)
            (xy 4.929623 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp 0996c5ba-8fc8-49df-84a3-188f2bd4a6db))
    (pad "4" smd custom (at -45.72 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 59 "PAD_G#3") (pinfunction "G#3") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 3.2853 0.274625)
            (xy 1.392895 2.158078)
            (xy -2.391816 2.158078)
            (xy -4.284225 0.274625)
            (xy -4.284225 -12.909652)
            (xy 3.2853 -12.909652)
            (xy 3.2853 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp fedde1db-5e83-441d-90db-e53807df74ed))
    (pad "5" smd custom (at -43.18 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 61 "PAD_A3") (pinfunction "A3") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 4.530014 -14.57535)
            (xy 6.976719 -12.140176)
            (xy 8.787853 -12.140176)
            (xy 8.787853 1.985798)
            (xy -2.566384 1.985798)
            (xy -2.566384 -12.140176)
            (xy -0.755144 -12.140176)
            (xy 1.691452 -14.57535)
            (xy 1.691452 -28.149652)
            (xy 4.530012 -28.149652)
            (xy 4.530014 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp 58bbd7a5-8555-4c91-895c-aafd8fe0adc6))
    (pad "6" smd custom (at -33.02 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 63 "PAD_A#3") (pinfunction "A#3") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 2.885795 0.274625)
            (xy 0.993389 2.158078)
            (xy -2.791428 2.158078)
            (xy -4.683735 0.274625)
            (xy -4.683735 -12.909652)
            (xy 2.885795 -12.909652)
            (xy 2.885795 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp 106e4899-0c95-4ea8-8e7e-27756e55b668))
    (pad "7" smd custom (at -30.48 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 66 "PAD_B3") (pinfunction "B3") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 8.388344 1.985798)
            (xy -2.965892 1.985798)
            (xy -2.965892 -12.140176)
            (xy -1.154651 -12.140176)
            (xy 1.291947 -14.57535)
            (xy 1.291947 -28.149652)
            (xy 8.388344 -28.149652)
            (xy 8.388344 1.985798)
          ) (width 0.000003) (fill yes))
      ) (tstamp 8077a02f-88ea-4a84-aedd-e2f060d304bf))
    (pad "8" smd custom (at -17.78 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 68 "PAD_C4") (pinfunction "C4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 3.731 -14.57535)
            (xy 6.177594 -12.140176)
            (xy 7.988836 -12.140176)
            (xy 7.988836 1.985798)
            (xy -3.3655 1.985798)
            (xy -3.3655 -28.149652)
            (xy 3.731 -28.149652)
            (xy 3.731 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp 58dd2527-316b-4031-adf0-67e0db841c5a))
    (pad "9" smd custom (at -10.16 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 75 "PAD_C#4") (pinfunction "C#4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 4.626679 0.274625)
            (xy 2.734264 2.158078)
            (xy -1.050445 2.158078)
            (xy -2.942848 0.274625)
            (xy -2.942848 -12.909652)
            (xy 4.626679 -12.909652)
            (xy 4.626679 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp 9be7049b-6fc5-4913-a860-d3b821945b26))
    (pad "10" smd custom (at -5.08 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 78 "PAD_D4") (pinfunction "D4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 3.331392 -14.57535)
            (xy 5.778086 -12.140176)
            (xy 7.589235 -12.140176)
            (xy 7.589235 1.985798)
            (xy -3.765009 1.985798)
            (xy -3.765009 -12.140176)
            (xy -1.953768 -12.140176)
            (xy 0.49283 -14.57535)
            (xy 0.49283 -28.149652)
            (xy 3.331392 -28.149652)
            (xy 3.331392 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp c151d06d-68f0-4995-9dee-721ddc513118))
    (pad "11" smd custom (at 2.54 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 79 "PAD_D#4") (pinfunction "D#4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 4.227063 0.274625)
            (xy 2.334767 2.158078)
            (xy -1.450053 2.158078)
            (xy -3.342357 0.274625)
            (xy -3.342357 -12.909652)
            (xy 4.227063 -12.909652)
            (xy 4.227063 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp e21f7664-ebad-4645-831e-54a638d2f155))
    (pad "12" smd custom (at 7.62 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 81 "PAD_E4") (pinfunction "E4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 7.189704 1.985798)
            (xy -4.164521 1.985798)
            (xy -4.164521 -12.140176)
            (xy -2.353372 -12.140176)
            (xy 0.093314 -14.57535)
            (xy 0.093314 -28.149652)
            (xy 7.189711 -28.149652)
            (xy 7.189704 1.985798)
          ) (width 0.000003) (fill yes))
      ) (tstamp 5a2842e0-8679-4b6a-a6f7-339079657c0c))
    (pad "13" smd custom (at 17.78 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 82 "PAD_F4") (pinfunction "F4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 5.072268 -14.57535)
            (xy 7.518954 -12.140176)
            (xy 9.330203 -12.140176)
            (xy 9.330203 1.985798)
            (xy -2.024144 1.985798)
            (xy -2.024144 -28.149652)
            (xy 5.072268 -28.149652)
            (xy 5.072268 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp c1a7c6ca-109f-498d-9537-f48e7ace72ee))
    (pad "14" smd custom (at 25.4 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 85 "PAD_F#4") (pinfunction "F#4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 5.967939 0.274625)
            (xy 4.075628 2.158078)
            (xy 0.290929 2.158078)
            (xy -1.601481 0.274625)
            (xy -1.601481 -12.909652)
            (xy 5.967939 -12.909652)
            (xy 5.967939 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp e47bdc77-4ab2-492c-a69d-602a1bc5e7bb))
    (pad "15" smd custom (at 30.48 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 86 "PAD_G4") (pinfunction "G4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 4.672966 -14.57535)
            (xy 7.118949 -12.140176)
            (xy 8.931106 -12.140176)
            (xy 8.931106 1.985798)
            (xy -2.423646 1.985798)
            (xy -2.423646 -12.140176)
            (xy -0.612404 -12.140176)
            (xy 1.834198 -14.57535)
            (xy 1.834198 -28.149652)
            (xy 4.672958 -28.149652)
            (xy 4.672966 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp 9bef4fd2-3f9e-456e-b805-5b6521fb500c))
    (pad "16" smd custom (at 38.1 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 90 "PAD_G#4") (pinfunction "G#4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 5.568232 0.274625)
            (xy 3.675715 2.158078)
            (xy -0.108289 2.158078)
            (xy -2.000776 0.274625)
            (xy -2.000776 -12.909652)
            (xy 5.568232 -12.909652)
            (xy 5.568232 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp 6d4d43d1-203e-4d92-b84e-ea36529ed37b))
    (pad "17" smd custom (at 43.18 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 91 "PAD_A4") (pinfunction "A4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 4.273251 -14.57535)
            (xy 6.720249 -12.140176)
            (xy 8.531399 -12.140176)
            (xy 8.531399 1.985798)
            (xy -2.82365 1.985798)
            (xy -2.82365 -12.140176)
            (xy -1.011501 -12.140176)
            (xy 1.434483 -14.57535)
            (xy 1.434483 -28.149652)
            (xy 4.273251 -28.149652)
            (xy 4.273251 -14.57535)
          ) (width 0.000003) (fill yes))
      ) (tstamp 9390a8bc-9751-48a4-b01a-574aea3bfab6))
    (pad "18" smd custom (at 50.8 0) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 93 "PAD_A#4") (pinfunction "A#4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 5.168533 0.274625)
            (xy 3.277023 2.158078)
            (xy -0.507989 2.158078)
            (xy -2.400506 0.274625)
            (xy -2.400506 -12.909652)
            (xy 5.168533 -12.909652)
            (xy 5.168533 0.274625)
          ) (width 0.000003) (fill yes))
      ) (tstamp 38a7e6f6-5e6d-4a78-8fe1-4732e4f04336))
    (pad "19" smd custom (at 55.88 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 96 "PAD_B4") (pinfunction "B4") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 8.131692 1.985798)
            (xy -3.222358 1.985798)
            (xy -3.222358 -12.140176)
            (xy -1.411208 -12.140176)
            (xy 1.034783 -14.57535)
            (xy 1.034783 -28.149652)
            (xy 8.131692 -28.149652)
            (xy 8.131692 1.985798)
          ) (width 0.000003) (fill yes))
      ) (tstamp 19de652a-1df5-4255-a071-0057704e5ae8))
    (pad "20" smd custom (at 66.04 15.24) (size 1.524 1.524) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 97 "PAD_C5") (pinfunction "C5") (pintype "passive")
      (options (clearance outline) (anchor circle))
      (primitives
        (gr_poly (pts
            (xy 10.27197 1.985798)
            (xy -1.082065 1.985798)
            (xy -1.082065 -28.149652)
            (xy 10.27197 -28.149652)
            (xy 10.27197 1.985798)
          ) (width 0.000003) (fill yes))
      ) (tstamp 4bb2ff3a-41a0-4e0e-861f-1c0757b86564))
  )

  (footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp c3d693bb-8b79-4c4c-8f6d-fcf59053a0c7)
    (at 109.22 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/3a23f078-29c8-4343-b209-1ce5d7e628b7")
    (attr through_hole)
    (fp_text reference "R28" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 66096f4f-c798-4425-8537-e7adeb21bec3)
    )
    (fp_text value "1.6k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 452c8d75-aa5e-4c5d-b7f7-07aa48bbf245)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 15f50029-307a-4d8a-9c26-89866c277ac0)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 3525d7fb-9fbb-407a-b98f-dbe710a5769f))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 647b068d-34c1-40f5-9c02-6c8ac4e4e7e4))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 8e4b66b5-f3f7-4bd7-a29a-8afd9eeaaeda))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp a77a459c-1f1d-4583-b823-a54a1c799c78))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp cdd161f0-22d1-4053-9a0b-ffab3a54d82f))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e33b88e6-21b7-46e6-ba61-2812267872a7))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5569ffb9-3194-4ed5-a115-e717546fbbd5))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 791865d8-d8e2-4bb4-a45d-5c1ab6b1ca50))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 877182c1-f7de-4075-b871-3852bba4d685))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 9462ae22-4e7f-462a-824e-86cf308ddca1))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 098660ff-f93c-4ccb-8579-57628aa895a7))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0c23fd3c-8e92-44f9-9905-f0d6b673c1e2))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 8fc2e36b-243b-47e2-890e-f3a8d0cb9deb))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp efca2809-2036-46b8-8545-a5bdd08b5301))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp f25c7d87-b8db-41e0-abfc-bec8048ef2cc))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp fffd8529-ec61-4c2e-ae6d-c3e663947951))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 82 "PAD_F4") (pintype "passive") (tstamp 7778230f-f910-4a2e-99e2-9b1e861be1ad))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 62 "Net-(R28-Pad2)") (pintype "passive") (tstamp 611e7c21-be02-4a2c-b017-7fcdbe00c6cf))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp c3e774d4-dedc-494a-89d3-3634a87fe5fb)
    (at 119.38 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/2ebe2750-849d-43b5-a86c-1a24563c4963")
    (attr through_hole)
    (fp_text reference "R32" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 6ae637ec-7362-4a65-97c0-20e6d5770fa2)
    )
    (fp_text value "1.8k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fa029060-e57f-4aa6-a571-1f23e687032b)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d7d36348-4d86-4887-8ce8-77f3dc661022)
    )
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 2262369d-908f-4b7b-8fa8-6f936456c0ae))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 538ab23b-56dc-41b1-84f0-d71d488e9061))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 81b0798c-3dcf-44aa-bdff-27c7582e7f35))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 9a1ee4ae-e660-49f2-995b-2f9e786a47d2))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp a5447a5a-3f78-463f-92b3-8019d9cbd4f4))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp b4877e61-d908-4a92-9ac0-5dfa5a23f7e8))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0e5c956a-0664-4fcf-9bb1-1eae993c2225))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 45234e68-f309-41ff-b7bf-09e6fd708b9a))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp ad673409-a6b5-412f-bb14-962debd6ec67))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp f35b2073-882e-4ac0-9440-1e7208b06a2e))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 3b6f4330-bdb8-40df-a620-2777b9dcf025))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 729ec6c1-399d-419e-a69c-f6fb09d801a5))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7457f92b-d768-49d2-a7c7-6385146769b6))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 926f4738-cb7b-4379-bba2-492c7899975b))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 9f680a18-1241-4418-aadb-0c206c9b1e25))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp e7e1dfac-c1af-406d-9f8e-6fde94e0102c))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 86 "PAD_G4") (pintype "passive") (tstamp 309cce7c-76a5-40f7-bf52-1289c4234f67))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 64 "Net-(R32-Pad2)") (pintype "passive") (tstamp 2b710c32-5910-4fb5-8e24-08ea454479d9))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp c9a7caf1-c5d1-496f-baef-5a8fe8dcc7ff)
    (at 137.16 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/8953b99d-8b04-4fc0-9d29-a69dbc082b8b")
    (attr through_hole)
    (fp_text reference "R39" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 17cb1f71-5347-4fc1-bf60-d997c11dc7c3)
    )
    (fp_text value "30" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ec5ac6dd-932c-4b9d-9261-842ea46742e6)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 93020688-adb1-4ef3-8999-0fb54477df50)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 0e35d709-fffc-43dd-a71b-7f54e14a0053))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3030bd28-3097-45c9-b9b0-3e1b106a2c4f))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 5e828255-d568-4b6d-b7ce-f1e90da2e94a))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8cc15b4b-1746-4c7a-bd2f-f7191d035bd3))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp a1a9bb91-7e58-48f8-a377-e622a57b18e9))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp fd913ba2-6bb3-483a-b896-c70e5661af8e))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3b743a78-dba5-49e3-badb-18374cab2b10))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3d2c36c4-e71a-4274-b5c1-5be5ed157b13))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 449d97ff-3120-4972-a247-f3a89db2d497))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 92b6dad6-bf08-4c01-8836-a8c78719dfdd))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 1ab565db-5935-4afa-ba6a-855247f76470))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 3b1000ec-a0d5-4040-9d90-23376ea079b2))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6044640e-1897-4b9f-95be-e3530990c0e7))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 65c4d532-d375-4114-8b6f-7b739e14e540))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp a013be5f-4c08-4ca4-96b8-5ff67f657cbe))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp faa0cedb-4d71-49bd-b993-cf002a3fcc9b))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 67 "Net-(R38-Pad2)") (pintype "passive") (tstamp 560947a3-4850-48ce-958b-d4959bd52243))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 96 "PAD_B4") (pintype "passive") (tstamp 9542c9a0-759a-439c-b44b-3e0b43b93a8f))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp dcdfdbd8-9727-4ade-aa76-cba9c8d8f6be)
    (at 127 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/3907700f-1b94-4b24-b6b8-d02cea772bf5")
    (attr through_hole)
    (fp_text reference "R35" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c284fabc-5b28-41bb-9569-1ee64e380f3b)
    )
    (fp_text value "160" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8f76f46a-1cc2-4bf4-997e-dabf73dfcdfa)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b498ad19-d1b9-417f-bc57-dae1cd3f2f66)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 038f828e-85a9-4bc1-90d4-9a13732c21de))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 281976bd-e4fe-4e4c-9fd3-502193f8c7c2))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 519d889a-1e69-4d3e-af05-111eb6daf735))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 5375d9fa-ac6a-4dbb-ab94-9ea34d586e79))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 87608cf4-1f51-462b-926e-68d52bfa310e))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp e64bf81b-1d02-474a-833a-efff8d168819))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0595a229-2f5d-4846-8a82-5f8ec50448c8))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 06d76379-768e-4ed2-bdf4-d0cbea3d9272))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 5ba9c799-43e5-4d16-a765-f1573a6c09c3))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b7b923d3-b2b3-4ac2-85e0-b1c86dfa0c74))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 49388d35-320f-4090-beb8-7399de958f14))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 7dbf9775-e98e-4c4f-91cc-77cec365a1cb))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp bc6f04cd-db47-4576-94bf-20c99d4f560b))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp c429657b-d469-4d2d-8617-1cda701cfa88))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp def3e997-6baa-492b-9b7a-329c55dbf5de))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp e7d74d80-e53c-4da6-a8c2-f6cc7802d1ae))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 94 "Net-(R34-Pad2)") (pintype "passive") (tstamp 32b50b97-a298-41eb-bcef-a88d49d5c4df))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 91 "PAD_A4") (pintype "passive") (tstamp 96aa3ef0-fea8-4a8b-805f-5c0e0ddb8301))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp de4d9514-3cb5-4e56-aa34-9a36cc7ab2fb)
    (at 116.84 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/aeda8d04-e983-4be2-b06d-f5f00510885e")
    (attr through_hole)
    (fp_text reference "R31" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8f43871f-66bd-48f6-8a27-9d3168ee9b0c)
    )
    (fp_text value "0" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp d4faf341-fbfa-4ae9-aad0-69ba44e7c909)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 03d91a1d-a585-47a4-99f9-06bc1c5af887)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2646122b-034d-4817-af32-cf5ad01ca4c3))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 3b82d8e3-a040-434a-9991-6271f6273782))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 43d1b320-be08-4c34-893b-273664b3ea68))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 719bf2e0-5e5d-4c1c-a2a4-f786f1849e85))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 96597868-124d-4a3c-974d-f269e7248232))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp d4b7535d-26d7-448d-9ab0-3a8da52b3f70))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1159df6c-6629-41f1-a8b5-e0c16ac2435d))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 267be05a-0275-4937-bf0c-a7a54781ce5a))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 83e6323e-c1d6-44e5-ace0-3d300f8821e3))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp fe9e9f21-2e7d-4a1f-9cf8-dbb5f94d13c1))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp 6d7729f9-9d51-4b7c-bb0a-c926d4ef9093))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 748aaee6-99ae-41ad-8caa-46dcb39df129))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 772b2560-c224-4933-9225-40be66422908))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 89b31927-f663-4a3a-a530-c0fd8571c8d7))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp a7928873-604e-41b4-8f3c-a9332a26491c))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp e23187f9-dcd6-499f-90d3-0eec00b87622))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 92 "Net-(R30-Pad2)") (pintype "passive") (tstamp 883e7763-c7c3-4085-8e36-b949c37033d0))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 86 "PAD_G4") (pintype "passive") (tstamp 917b5326-3ee0-4010-87d4-41a23aedd531))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp df6746c7-6a12-4fd0-ad0b-79769055d54e)
    (at 259.08 71.12)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/fa4b3a81-e338-49d7-b069-6da44f1ddc0f")
    (attr through_hole)
    (fp_text reference "R23" (at 5.08 -2.37) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 92a7eaa6-6c3d-43da-ba33-e26326d5479f)
    )
    (fp_text value "220k" (at 5.08 2.37) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp fd1f6961-bb4f-4f7d-b1b4-356c28dac5f6)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 2c1daa48-28c8-42bb-9e85-511b78a70d02)
    )
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 20ce812d-2b13-4d23-97db-f5b3e4845004))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3270cc0a-a50f-4055-94cc-1893d4681e12))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 56692c97-ca1f-493f-a06e-5eba42b018a6))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 7c875c4d-bbd0-40cb-ac95-4edfb4e5a05e))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp dfdae735-a83b-4f0e-ba93-6c7dc743c2b0))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp e0c2abcd-c63d-4176-a89a-25f8d516fb6b))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 59557197-81e3-4244-a3c5-a7b8cb74ba45))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6f7b4e06-207c-4a94-9287-2d3115079c86))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 78a11397-cc79-48bf-a6b3-882ca96301b3))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp c27f927d-e5ed-4b32-958f-f7fcf9e64837))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 56ccdbd3-acd4-4bc9-bcb8-0a8827922919))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 7111488e-7396-4bf0-92a6-811805184d2f))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7650e5a4-7594-4da8-9607-877852b716f8))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp bb07525f-eecd-48d5-a167-77f54bb48ffd))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp e8b44b69-b4d5-4f4f-9af3-e079acf2e34a))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp fd8d74d7-fb62-4fed-abdb-727491c83c74))
    (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 43 "A_SYNTH") (pintype "passive") (tstamp ded9852d-fce5-4a62-b0e5-4cb5228a1b09))
    (pad "2" thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 42 "Net-(C3-Pad1)") (pintype "passive") (tstamp 949088b5-6a05-4611-8fdd-bb06583c29a7))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp e1679708-2ca6-4de0-bee6-e91cf442d4f7)
    (at 132.08 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/31b0f60f-dce8-42a8-b1e3-0737a2b4c2cd")
    (attr through_hole)
    (fp_text reference "R37" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp c033b5b8-d48b-4e26-9709-d3bfec5bf4ee)
    )
    (fp_text value "39" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 7148cc25-039f-49ac-ae1d-120e79051f4c)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 0da7beb4-f36a-4ed1-9fff-09c56518390d)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1ded0ec6-ecb3-43a1-b30f-349f6f955168))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 68d64382-d6fd-461d-9372-b7871bc4277e))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 8fbd77e3-94f5-4a9f-b34c-c2e3f7dea645))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp a4e799dc-c48c-4341-9e49-2386002341e1))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp a4e9a33d-1f84-4a5c-9741-2585ba584ae9))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp e42e4520-3b94-4010-8f74-048ab15eafb4))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1270a8ea-cecf-4398-a251-6e9d5f4c7203))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4260548e-e6e2-4af5-ae95-2ad2daa9fd50))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4c5c26d6-a643-4429-af26-47421ff4988f))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bb97e551-7057-46a3-bff9-d951fb1c4c36))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 40672972-3b55-4759-bfce-4f78def625bb))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6a5743a8-2ebb-4eb8-819b-b3a09dddf709))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 6c954aad-24ce-4938-b067-070f05013c59))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 7479dd63-54aa-47d8-8c03-970d9b1a2544))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp eb67f81d-a475-40f6-8527-7bfbf0217ae6))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp fc9c79bc-c6a3-4d32-a760-56e963aaf51d))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 95 "Net-(R36-Pad2)") (pintype "passive") (tstamp 78866f59-81f7-43b7-9325-904ceb5d7311))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 93 "PAD_A#4") (pintype "passive") (tstamp 89919836-6964-458b-8d3b-6073d12d65f9))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp e25b16e7-3f94-452b-aca3-2c09017a4c59)
    (at 51 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/cac269c0-95db-43c5-83ac-fc589382f4b8")
    (attr through_hole)
    (fp_text reference "R4" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 274ca838-11fa-44d8-977f-741edfe231b7)
    )
    (fp_text value "10" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 42a98f84-ba87-4b45-8341-21923fd9285a)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 05d1e17c-2c74-460c-819f-fc90d6aad81c)
    )
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2052c7d9-db22-47d5-a59b-8fed1f71e361))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 279275b3-7fcd-451f-9b5e-1d85bbf2f3c8))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 617f1014-4bc1-4789-8806-f25f60822210))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 72a55814-4db1-4fb4-8f3b-49a61aa774b2))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 845302cb-2de9-4f77-837b-67d62120d33a))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 96e8e2b8-33fb-4ab7-b856-5039402beeca))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 68ba0f9a-2d06-4d9e-be6b-6aba3aa1f15f))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 88482d8a-9506-41fa-b483-c5bc50714506))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp a8c608fb-7075-43f3-b9db-ce4600d00b0f))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp d34c0d2d-6667-47b0-b580-371e15324e3a))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 40fc4ff4-870a-4f19-9076-850b64d8aad1))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 62a49154-1bf5-4930-ae56-a6b064fe2497))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 633d96b3-1d31-4dd0-ae85-bb940cb32dc1))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp ad622ffb-d761-47c2-bff6-0d5388b8b695))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp d7a8be0f-73de-4b87-9c2b-f21d83b47f4a))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp fc4ca180-7560-4848-abe7-c3ea98375787))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 76 "Net-(R3-Pad2)") (pintype "passive") (tstamp 68796777-aa99-4637-b6c5-f697608bb0d5))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 54 "PAD_F#3") (pintype "passive") (tstamp 2b5c67a7-e48d-4b56-917f-2da38a1f49a9))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu")
    (tedit 5A02E8C5) (tstamp ec705384-505f-4603-8625-1542fd0a0c28)
    (at 120.66 67.32)
    (descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
    (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/f554789c-667d-4105-98f7-e4a4acc091b2")
    (attr through_hole)
    (fp_text reference "U1" (at 3.81 -2.33) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 8124e94f-f891-4493-917c-abb658e9b484)
    )
    (fp_text value "NE555P" (at 3.81 9.95) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp bfba8411-6fec-4523-82b9-290433a8e694)
    )
    (fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 1e67cf34-6013-46f2-8d78-3cfded882d0c)
    )
    (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 4841094d-a2f3-46a5-bcf1-0dff5bfba736))
    (fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp 85f006a6-d069-4dcb-8df9-ceffe3ef126f))
    (fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ca6c257e-4d78-4804-9e23-8e2ff349bfd8))
    (fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp e1d0ed91-a02f-4343-9f48-8163af61cb6e))
    (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp fc5bf72f-979d-4f33-b2df-76dd06b208f1))
    (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6fa33040-e5b7-417b-89d5-4afea7e89d13))
    (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 1381ec09-df63-4f5e-ab8f-c8612f6d331b))
    (fp_line (start -1.1 9.15) (end 8.7 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 7f6c4566-a90c-4b24-a3a4-7c0b57ef5f10))
    (fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a96e4361-d69d-4900-bf9a-01e60c7aafa9))
    (fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer "F.CrtYd") (width 0.05) (tstamp f4fe0dc9-2f19-4a95-9453-288adfe358a2))
    (fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 06775ea9-a6e6-4908-b8c3-5eb607f34744))
    (fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 869cb403-d8e6-45ae-8592-2c71160b9454))
    (fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 87e9314c-e9ab-4c86-a0e8-1da0807d47e1))
    (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp fd59aff9-9402-4cae-9b63-98337da0ec88))
    (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fe07e156-941d-4d06-a84c-98d3e5e2dc04))
    (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 6 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 363b6cab-7b3c-40d5-a520-6d268af0a976))
    (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 42 "Net-(C3-Pad1)") (pinfunction "TR") (pintype "input") (tstamp 977b4f77-0747-4b07-bb54-222df0fc1d95))
    (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 43 "A_SYNTH") (pinfunction "Q") (pintype "output") (tstamp b876d8d9-5e97-48de-afb4-c0d9323e8b5f))
    (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 5 "VCC") (pinfunction "R") (pintype "input") (tstamp 0e9681fd-79c2-47ba-be74-56d9b1948c6c))
    (pad "5" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 44 "KB_IN") (pinfunction "CV") (pintype "input") (tstamp b15af70a-8cbf-4b0b-bb3c-008a1e671f2d))
    (pad "6" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 42 "Net-(C3-Pad1)") (pinfunction "THR") (pintype "input") (tstamp d9da68a9-f2d1-4425-a74e-6ab89cb3f8c9))
    (pad "7" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 45 "unconnected-(U1-Pad7)") (pinfunction "DIS") (pintype "input+no_connect") (tstamp f49fcd9c-8686-4902-8c11-13e0344b8cd1))
    (pad "8" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 5 "VCC") (pinfunction "VCC") (pintype "power_in") (tstamp cc161bc5-103e-454f-bc68-ddfa43a9aa07))
    (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Package_LCC:PLCC-20" (layer "F.Cu")
    (tedit 5A02ECC8) (tstamp f333d974-b99c-4bf5-abef-09354cacc60c)
    (at 104.14 58.42 90)
    (descr "PLCC, 20 pins, surface mount")
    (tags "plcc smt")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/6861c69a-2093-46f7-addc-65485166ba0a")
    (attr smd)
    (fp_text reference "U3" (at 0 -6.015 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 104bcd73-742e-4c1f-9bf7-0f64c646c2b1)
    )
    (fp_text value "LM3914V" (at 0 6.015 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 4e75bb39-7f9c-4c8c-9469-caeb1497b84f)
    )
    (fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 95b4498b-b18d-4e60-9d06-56582f56bbde)
    )
    (fp_line (start -5.165 -4.015) (end -5.165 -3.515) (layer "F.SilkS") (width 0.1) (tstamp 2606e9cc-4a19-42f8-9df4-2bbf9b6debfd))
    (fp_line (start -3.515 5.165) (end -5.165 5.165) (layer "F.SilkS") (width 0.1) (tstamp 6efc2272-57bd-4e13-9803-19028687812e))
    (fp_line (start -4.015 -5.165) (end -5.165 -4.015) (layer "F.SilkS") (width 0.1) (tstamp 7cd152e6-9b67-4de2-aa52-c7c88e4c4ab2))
    (fp_line (start 3.515 5.165) (end 5.165 5.165) (layer "F.SilkS") (width 0.1) (tstamp 8ea18563-8d92-48ab-81f4-e90c6181f6de))
    (fp_line (start 3.515 -5.165) (end 5.165 -5.165) (layer "F.SilkS") (width 0.1) (tstamp 8f0b416e-fc69-46ef-b400-75be245bafc5))
    (fp_line (start -3.515 -5.165) (end -4.015 -5.165) (layer "F.SilkS") (width 0.1) (tstamp be0f2b35-d70a-425b-9b84-c9137bdde778))
    (fp_line (start 5.165 5.165) (end 5.165 3.515) (layer "F.SilkS") (width 0.1) (tstamp cf815b3a-da6a-4ada-958b-f06faf6be952))
    (fp_line (start -5.165 5.165) (end -5.165 3.515) (layer "F.SilkS") (width 0.1) (tstamp e8e2a42b-4764-4ddf-83b2-0fc1d04b1100))
    (fp_line (start 5.165 -5.165) (end 5.165 -3.515) (layer "F.SilkS") (width 0.1) (tstamp f0ed18cf-ada3-42e9-a162-e356cd8a5b45))
    (fp_line (start 5.5 5.5) (end 5.5 -5.5) (layer "F.CrtYd") (width 0.05) (tstamp ad4c8a11-e2cd-4134-a7af-8af83f3df0d9))
    (fp_line (start -5.5 -5.5) (end -5.5 5.5) (layer "F.CrtYd") (width 0.05) (tstamp c1c5ca41-32cb-4206-bd9d-7ae085e3bbcf))
    (fp_line (start -5.5 5.5) (end 5.5 5.5) (layer "F.CrtYd") (width 0.05) (tstamp cc52642a-62bb-4e30-9fac-e5ae44f32413))
    (fp_line (start 5.5 -5.5) (end -5.5 -5.5) (layer "F.CrtYd") (width 0.05) (tstamp e687bd31-dc20-44a1-a36a-80dce5954cec))
    (fp_line (start 5.015 5.015) (end 5.015 -5.015) (layer "F.Fab") (width 0.1) (tstamp 003721da-b645-4703-8a1f-33eb61dc1a1e))
    (fp_line (start -0.5 -5.015) (end 0 -4.015) (layer "F.Fab") (width 0.1) (tstamp 0ca6e8a4-7a1c-42c2-800f-33836ed5bd36))
    (fp_line (start -4.015 -5.015) (end -5.015 -4.015) (layer "F.Fab") (width 0.1) (tstamp 0cd7cf84-f35d-4b56-b015-61b7817bc01f))
    (fp_line (start -5.015 -4.015) (end -5.015 5.015) (layer "F.Fab") (width 0.1) (tstamp 5fb43c1b-2bf7-416c-becc-765840a2dd84))
    (fp_line (start 0 -4.015) (end 0.5 -5.015) (layer "F.Fab") (width 0.1) (tstamp 75c91c15-1e67-4cb7-b807-ac3b64abb649))
    (fp_line (start -5.015 5.015) (end 5.015 5.015) (layer "F.Fab") (width 0.1) (tstamp 8fbda080-2274-46f6-95b4-bbf3431863ad))
    (fp_line (start 5.015 -5.015) (end -4.015 -5.015) (layer "F.Fab") (width 0.1) (tstamp efa23eba-2daa-4eaa-a938-a6a302db041e))
    (pad "1" smd rect (at 0 -4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 41 "Net-(BAR1-Pad20)") (pinfunction "LED1") (pintype "open_collector") (tstamp 6efc368a-1c32-443f-bca9-245d9d50502c))
    (pad "2" smd rect (at -1.27 -4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 6 "GND") (pinfunction "V-") (pintype "power_in") (tstamp 08a3bc26-0890-4feb-abbd-3f81b6990941))
    (pad "3" smd rect (at -2.54 -4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 5 "VCC") (pinfunction "V+") (pintype "power_in") (tstamp c0c18a2a-6376-4fa0-9928-c3b0ce3e0e91))
    (pad "4" smd rect (at -4.0525 -2.54 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 6 "GND") (pinfunction "RLO") (pintype "input") (tstamp 629949bd-00fa-439d-a2c2-2d3830d66639))
    (pad "5" smd rect (at -4.0525 -1.27 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 46 "AUDIO_OUT") (pinfunction "SIG") (pintype "input") (tstamp a39339b9-a00c-4a8e-bb6e-78f0cad656a5))
    (pad "6" smd rect (at -4.0525 0 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 47 "unconnected-(U3-Pad6)") (pinfunction "RHI") (pintype "input") (tstamp 04fd1839-8460-4b9f-8a64-b1d1dde7a376))
    (pad "7" smd rect (at -4.0525 1.27 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 48 "unconnected-(U3-Pad7)") (pinfunction "NC") (pintype "no_connect") (tstamp 1361c7d2-a37c-4b02-b2b9-4dbf5055c042))
    (pad "8" smd rect (at -4.0525 2.54 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 49 "unconnected-(U3-Pad8)") (pinfunction "REFOUT") (pintype "output") (tstamp 212e6fcf-cc77-4e03-9f14-5fefa6ac803e))
    (pad "9" smd rect (at -2.54 4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 50 "unconnected-(U3-Pad9)") (pinfunction "NC") (pintype "no_connect") (tstamp 790af814-4c93-4388-ab8b-c6ea2ae31d99))
    (pad "10" smd rect (at -1.27 4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 51 "unconnected-(U3-Pad10)") (pinfunction "REFADJ") (pintype "input") (tstamp 499cfaec-47e0-4c32-9ced-93b8237036ca))
    (pad "11" smd rect (at 0 4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 5 "VCC") (pinfunction "MODE") (pintype "input") (tstamp ba561e24-957d-427f-87de-715419008a6b))
    (pad "12" smd rect (at 1.27 4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 32 "Net-(BAR1-Pad11)") (pinfunction "LED10") (pintype "open_collector") (tstamp ec96b5a5-be40-4905-9321-52185965e2b5))
    (pad "13" smd rect (at 2.54 4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 33 "Net-(BAR1-Pad12)") (pinfunction "LED9") (pintype "open_collector") (tstamp 7834a4a3-8999-4ec3-9d27-969dab205b4f))
    (pad "14" smd rect (at 4.0525 2.54 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 34 "Net-(BAR1-Pad13)") (pinfunction "LED8") (pintype "open_collector") (tstamp ed43c84c-c4e3-4242-86e0-960b35e34d6d))
    (pad "15" smd rect (at 4.0525 1.27 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 35 "Net-(BAR1-Pad14)") (pinfunction "LED7") (pintype "open_collector") (tstamp ce54653e-4463-41fe-adbd-9e0ddc44c74b))
    (pad "16" smd rect (at 4.0525 0 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 36 "Net-(BAR1-Pad15)") (pinfunction "LED6") (pintype "open_collector") (tstamp 99a6ac3b-48d0-420e-81de-6dadd2b632a0))
    (pad "17" smd rect (at 4.0525 -1.27 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 37 "Net-(BAR1-Pad16)") (pinfunction "LED5") (pintype "open_collector") (tstamp 2729dd4f-a3e0-4dae-9435-9808feba93c1))
    (pad "18" smd rect (at 4.0525 -2.54 90) (size 1.925 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 38 "Net-(BAR1-Pad17)") (pinfunction "LED4") (pintype "open_collector") (tstamp b3ae9bc1-acb7-4c2b-9285-0527c2947cfa))
    (pad "19" smd rect (at 2.54 -4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 39 "Net-(BAR1-Pad18)") (pinfunction "LED3") (pintype "open_collector") (tstamp ee3f86ec-4b0a-4011-ba8f-285a3731bd0f))
    (pad "20" smd rect (at 1.27 -4.0525 90) (size 0.7 1.925) (layers "F.Cu" "F.Paste" "F.Mask")
      (net 40 "Net-(BAR1-Pad19)") (pinfunction "LED2") (pintype "open_collector") (tstamp 1bad13be-3203-40ae-a6ae-fdf8b10e17de))
    (model "${KICAD6_3DMODEL_DIR}/Package_LCC.3dshapes/PLCC-20.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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp f5879ab2-b938-41a3-ab1b-ec5c0551f7a8)
    (at 88.9 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/fd004cca-4893-42ba-aa6a-7ea897b9281b")
    (attr through_hole)
    (fp_text reference "R19" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ac8d1beb-8064-452d-b2a7-337a1c8f4c29)
    )
    (fp_text value "1.3k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp f5322e2e-cac3-432e-bda8-0a4cf8376319)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5341f75f-445e-45d6-8d7c-693459db4b8f)
    )
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 135e3642-358a-4af8-829a-e9d8d5db6f15))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 378e526d-5a27-490c-9809-30a858151ca1))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 46331abf-ef2b-44f7-8e7b-2addf2a04973))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp d26c0188-a8c0-40f8-947a-e0efe65dd5bd))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp dc50a505-bdbb-49e4-a166-7ad91ea76a60))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp ee2b5b55-18f1-44b0-8eb7-645cdcfe2722))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2da0c218-f525-488e-ae52-b37371a9c8c4))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 398ac0ce-a6d7-46e9-b0d2-f38a583f93bc))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4274c955-0ff2-4ffd-b308-32c7740d7229))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4b680c6f-6bf5-42bc-954e-399a8095278c))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 03180fc3-312d-4869-989b-36a0aa8fbbab))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 116d155f-066d-4394-8897-f470a7ea739b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 6d63f474-3068-4498-806c-b83853047f41))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 8ebf6100-3981-45dc-a269-6504480f2134))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp a659890f-c262-401d-95e1-315d3cf4375a))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp cb7d7a60-c3f6-41de-9a14-1e4dd5641c3a))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 75 "PAD_C#4") (pintype "passive") (tstamp 340a1653-d3fe-441a-a00c-6fadb8816e05))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 60 "Net-(R19-Pad2)") (pintype "passive") (tstamp fc065095-462f-46ee-8772-8e3d563d5f93))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp f8342507-c7e6-47f5-b075-6fb4d71e7ab2)
    (at 139.7 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/e07a28a1-290d-4091-a063-8a5cc9958ed9")
    (attr through_hole)
    (fp_text reference "R40" (at 5.08 -2.37 90) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp ff7b1620-cd8a-4160-90aa-5052c2486687)
    )
    (fp_text value "2.7k" (at 5.08 2.37 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 80af5b57-bfd5-4c00-98ae-5fdf9e7881d9)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 31ba6163-2c37-42eb-b9fd-2917e50f845a)
    )
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 232923bd-2829-44d6-a20b-a369ddd660af))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 4c322f7c-3afb-4214-80c1-dcece51376f2))
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 71a58779-a7d1-4bc2-bdb6-794dd53007b4))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp aa1a38cb-ade4-41ad-b0a4-26226e489e89))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp afb6706f-39e6-4f27-b809-c9bafca14326))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp b7d3e22f-e5c9-4649-b781-bdfa4e59c93a))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 2b6f91a5-0197-4754-9f5b-c03b2435730b))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6fd5563c-bd31-484c-9047-046c45dc9b41))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp b2677a98-b368-4284-8c8b-39af63a28579))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b2aa422b-66e7-413e-9499-b6c85c27d87e))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp 16cc7ef1-1fa1-4531-952f-b0aa821f9e40))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp 5610e074-c2ab-4b63-9dbe-0d60e7b50451))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 74024a12-a33d-4b53-9e76-ac437b64dc56))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 99b9d7e9-ccbb-4f8e-9d55-6a32c48e781b))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp ca8b3fd0-eac9-4439-aa9f-f8725730ef3d))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp dedc7a9e-6663-404e-b96b-8c9d73a04338))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 96 "PAD_B4") (pintype "passive") (tstamp 0c6691ae-7c79-42ca-8669-edd2c13a3a3d))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 98 "Net-(R40-Pad2)") (pintype "passive") (tstamp 0d88970d-8179-464c-9485-d4341d4a1054))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_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_P10.16mm_Horizontal" (layer "F.Cu")
    (tedit 5AE5139B) (tstamp fed962e6-4c11-41ad-933f-6a0484a22c92)
    (at 114.3 81.28 -90)
    (descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 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 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/687dd02d-ef19-44b9-947a-fa831ffdbf08")
    (attr through_hole)
    (fp_text reference "R30" (at 5.08 0 -270) (layer "F.SilkS")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 5aeb1e78-7ed8-446f-a1fa-e72019642e8e)
    )
    (fp_text value "1.8k" (at 5.08 2.37 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp 55366e14-cec9-493d-901d-448b04d2f286)
    )
    (fp_text user "${REFERENCE}" (at 5.08 0 -270) (layer "F.Fab")
      (effects (font (size 1 1) (thickness 0.15)))
      (tstamp b426553d-4a7e-4896-84cf-af69497a695e)
    )
    (fp_line (start 8.35 1.37) (end 8.35 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 03933f33-7fdb-43de-9d7d-a565cad8a277))
    (fp_line (start 1.04 0) (end 1.81 0) (layer "F.SilkS") (width 0.12) (tstamp 18294f4f-7edc-4152-bf13-29a24ca720f2))
    (fp_line (start 1.81 1.37) (end 8.35 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1aac4077-bad0-4463-b828-61cc63a5ccc0))
    (fp_line (start 9.12 0) (end 8.35 0) (layer "F.SilkS") (width 0.12) (tstamp 3cbb184a-f234-407b-9174-d026edde4a38))
    (fp_line (start 1.81 -1.37) (end 1.81 1.37) (layer "F.SilkS") (width 0.12) (tstamp 8b9dc805-4667-42a6-97ef-c89f0fe31327))
    (fp_line (start 8.35 -1.37) (end 1.81 -1.37) (layer "F.SilkS") (width 0.12) (tstamp c7bd9338-9aed-41bb-820b-e4615e63ea41))
    (fp_line (start -1.05 -1.5) (end -1.05 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 0023162f-a07e-408b-b318-1e8e9f305001))
    (fp_line (start 11.21 -1.5) (end -1.05 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4ee0880b-0024-42bc-8cdf-89b0f253ab70))
    (fp_line (start -1.05 1.5) (end 11.21 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 69a7514c-f517-4b46-bf93-1effc96b0e95))
    (fp_line (start 11.21 1.5) (end 11.21 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp bb3823e8-bdbd-4f66-b957-b61f7f04dd87))
    (fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer "F.Fab") (width 0.1) (tstamp 02565f97-cd17-42be-94e0-c07f1614224c))
    (fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer "F.Fab") (width 0.1) (tstamp 55e93042-6fff-4546-87ec-edb8203e9985))
    (fp_line (start 0 0) (end 1.93 0) (layer "F.Fab") (width 0.1) (tstamp 8722c8a4-fdb0-4357-8559-49ae618ba880))
    (fp_line (start 10.16 0) (end 8.23 0) (layer "F.Fab") (width 0.1) (tstamp bb54ebf3-39eb-41d2-9953-cc5d1a5d74ce))
    (fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer "F.Fab") (width 0.1) (tstamp cf9f10ff-ac9e-4b40-87d1-288e16e5a85f))
    (fp_line (start 1.93 1.25) (end 8.23 1.25) (layer "F.Fab") (width 0.1) (tstamp d94f6a76-1cd8-44c8-b9e0-1b2743a67b84))
    (pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 85 "PAD_F#4") (pintype "passive") (tstamp 3f0a593a-f5d6-4037-a904-84b77fcf44ec))
    (pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
      (net 92 "Net-(R30-Pad2)") (pintype "passive") (tstamp 12368119-64a6-4e2c-9075-8eb76c0372b6))
    (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
      (offset (xyz 0 0 0))
      (scale (xyz 1 1 1))
      (rotate (xyz 0 0 0))
    )
  )

  (footprint "Module:Arduino_UNO_R3" (layer "B.Cu")
    (tedit 58AB60FC) (tstamp b760081f-e54f-4581-a57f-4dd0383d9ee1)
    (at 58.42 73.66)
    (descr "Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf")
    (tags "Arduino UNO R3")
    (property "Sheetfile" "hardware.kicad_sch")
    (property "Sheetname" "")
    (path "/2102c637-9f11-48f1-aae6-b4139dc22be2")
    (attr through_hole)
    (fp_text reference "A1" (at 1.27 3.81) (layer "B.SilkS")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 8bb2de93-c162-4981-8966-af7f49b5ff3e)
    )
    (fp_text value "Arduino_UNO_R3" (at 5.16 -22.86) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 254bf983-7e38-4a82-bc20-e57fd1a1abde)
    )
    (fp_text user "${REFERENCE}" (at 5.16 -20.32) (layer "B.Fab")
      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
      (tstamp 7f7c83e5-ad92-4753-85d1-8c5d0acae6d0)
    )
    (fp_line (start -28.07 -50.93) (end 36.58 -50.93) (layer "B.SilkS") (width 0.12) (tstamp 0b443796-ddbb-4779-9b52-5bc35cf8127a))
    (fp_line (start 38.23 2.67) (end -28.07 2.67) (layer "B.SilkS") (width 0.12) (tstamp 1303bfac-9872-4958-9306-4fb5843e2ae8))
    (fp_line (start -28.07 -0.51) (end -29.97 -0.51) (layer "B.SilkS") (width 0.12) (tstamp 1db5ee0a-1faa-4892-be81-e1af9e9280d7))
    (fp_line (start 36.58 -50.93) (end 38.23 -49.28) (layer "B.SilkS") (width 0.12) (tstamp 2bf6aa87-a1bd-4a8d-8ad4-5700393f1759))
    (fp_line (start 38.23 -37.85) (end 40.77 -35.31) (layer "B.SilkS") (width 0.12) (tstamp 343d12ad-104c-4b0f-8b85-f338c8bb1602))
    (fp_line (start 38.23 0) (end 38.23 2.67) (layer "B.SilkS") (width 0.12) (tstamp 49aa6694-d7d7-4c76-9e1a-0c978e3d1c4b))
    (fp_line (start 38.23 -49.28) (end 38.23 -37.85) (layer "B.SilkS") (width 0.12) (tstamp 8488e29d-c288-41ef-98a7-272be9ef7cc5))
    (fp_line (start -29.97 -0.51) (end -29.97 -9.65) (layer "B.SilkS") (width 0.12) (tstamp 98bb9d69-dfde-4d68-acaf-e3b8842fc094))
    (fp_line (start 40.77 -2.54) (end 38.23 0) (layer "B.SilkS") (width 0.12) (tstamp a0761754-d6e5-4cfb-aecf-bf12ec6f96aa))
    (fp_line (start -28.07 -41.4) (end -28.07 -50.93) (layer "B.SilkS") (width 0.12) (tstamp a67d57a0-54fd-4f4a-82a3-66a4ac645cc9))
    (fp_line (start -28.07 2.67) (end -28.07 -0.51) (layer "B.SilkS") (width 0.12) (tstamp a8ddb353-25b8-4bb6-ac7a-9c0d0c6fd604))
    (fp_line (start -34.42 -41.4) (end -28.07 -41.4) (layer "B.SilkS") (width 0.12) (tstamp c61371bc-79de-4bdb-b0df-b6ff8863caff))
    (fp_line (start -28.07 -29.72) (end -34.42 -29.72) (layer "B.SilkS") (width 0.12) (tstamp cf6c6442-80e5-48b1-a454-4c16d2d4a7a8))
    (fp_line (start 40.77 -35.31) (end 40.77 -2.54) (layer "B.SilkS") (width 0.12) (tstamp d7c070a2-6824-4730-851a-ec94d7ef0e39))
    (fp_line (start -28.07 -9.65) (end -28.07 -29.72) (layer "B.SilkS") (width 0.12) (tstamp d7d397d6-848b-4595-8f16-be715b25eeca))
    (fp_line (start -29.97 -9.65) (end -28.07 -9.65) (layer "B.SilkS") (width 0.12) (tstamp e00dc2dc-888b-476a-a6ba-087fab879145))
    (fp_line (start -34.42 -29.72) (end -34.42 -41.4) (layer "B.SilkS") (width 0.12) (tstamp ecff96a4-6047-47fc-8154-3c59ac5a96b3))
    (fp_line (start 36.58 -51.05) (end -28.19 -51.05) (layer "B.CrtYd") (width 0.05) (tstamp 2cd22269-6904-465f-b343-92420b748c73))
    (fp_line (start 38.35 0) (end 40.89 -2.54) (layer "B.CrtYd") (width 0.05) (tstamp 380e4631-0cdc-41cf-a0c9-805af3079200))
    (fp_line (start -28.19 -51.05) (end -28.19 -41.53) (layer "B.CrtYd") (width 0.05) (tstamp 3c946993-c31f-42eb-91c5-2987f19ca522))
    (fp_line (start 38.35 -49.28) (end 36.58 -51.05) (layer "B.CrtYd") (width 0.05) (tstamp 4fde5988-6c04-40c6-8e35-8cc8bcac92ab))
    (fp_line (start 40.89 -2.54) (end 40.89 -35.31) (layer "B.CrtYd") (width 0.05) (tstamp 5c070ac5-0415-485b-b555-12a301aaaa59))
    (fp_line (start 38.35 2.79) (end 38.35 0) (layer "B.CrtYd") (width 0.05) (tstamp 76df5a64-5382-4fe2-83b7-16168e290617))
    (fp_line (start -28.19 2.79) (end 38.35 2.79) (layer "B.CrtYd") (width 0.05) (tstamp 7d1f4e05-da18-428c-a049-ab8c7f6847d2))
    (fp_line (start -28.19 -0.38) (end -28.19 2.79) (layer "B.CrtYd") (width 0.05) (tstamp 959e4507-1a4e-464d-98d6-76e35f321715))
    (fp_line (start -34.54 -29.59) (end -28.19 -29.59) (layer "B.CrtYd") (width 0.05) (tstamp a61b8600-e4ae-4104-abd8-c8d0418deb92))
    (fp_line (start -28.19 -29.59) (end -28.19 -9.78) (layer "B.CrtYd") (width 0.05) (tstamp b2ca14c3-9645-4c6b-8d7c-fa1223882a76))
    (fp_line (start -34.54 -41.53) (end -34.54 -29.59) (layer "B.CrtYd") (width 0.05) (tstamp b59a572b-45e4-4532-9f92-de20c7c8cb61))
    (fp_line (start -28.19 -9.78) (end -30.1 -9.78) (layer "B.CrtYd") (width 0.05) (tstamp b8f5104e-bf28-4c2c-8bbd-3000ed3cc70b))
    (fp_line (start 40.89 -35.31) (end 38.35 -37.85) (layer "B.CrtYd") (width 0.05) (tstamp bb19e933-492f-4c9e-8175-5a4360dd6af6))
    (fp_line (start -30.1 -0.38) (end -28.19 -0.38) (layer "B.CrtYd") (width 0.05) (tstamp e2569042-5686-437a-a88d-838ec26ff52c))
    (fp_line (start -30.1 -9.78) (end -30.1 -0.38) (layer "B.CrtYd") (width 0.05) (tstamp e7ba0631-8a32-4cf8-b1e0-7389be80c395))
    (fp_line (start -28.19 -41.53) (end -34.54 -41.53) (layer "B.CrtYd") (width 0.05) (tstamp ed1dfd1c-32a6-4f5f-87a7-d529e6a4c1e4))
    (fp_line (start 38.35 -37.85) (end 38.35 -49.28) (layer "B.CrtYd") (width 0.05) (tstamp f2352228-377f-4a97-b47a-c18d09ee08bc))
    (fp_line (start -18.41 -29.84) (end -18.41 -41.27) (layer "B.Fab") (width 0.1) (tstamp 08f7614b-9649-49c1-b63a-65c3d0a1ef41))
    (fp_line (start 38.1 -37.85) (end 38.1 -49.28) (layer "B.Fab") (width 0.1) (tstamp 27c16a37-d65b-4a83-af1a-5ee1a87062f4))
    (fp_line (start 38.1 -49.28) (end 36.58 -50.8) (layer "B.Fab") (width 0.1) (tstamp 64c8c09a-cf34-4302-bf79-23dba19dbb70))
    (fp_line (start -29.84 -0.64) (end -16.51 -0.64) (layer "B.Fab") (width 0.1) (tstamp 656f43bd-a03e-460c-ba1b-9715dbec95bc))
    (fp_line (start 40.64 -35.31) (end 38.1 -37.85) (layer "B.Fab") (width 0.1) (tstamp 700fa350-f0e6-491d-9b23-c1cbb3fe07e0))
    (fp_line (start 36.58 -50.8) (end -27.94 -50.8) (layer "B.Fab") (width 0.1) (tstamp 71596cf3-8544-4b7a-8c91-d72ec1d11c78))
    (fp_line (start -29.84 -9.53) (end -29.84 -0.64) (layer "B.Fab") (width 0.1) (tstamp 87db9284-235f-48da-8453-9d391a881930))
    (fp_line (start 40.64 -2.54) (end 40.64 -35.31) (layer "B.Fab") (width 0.1) (tstamp 8b91ee28-3a3b-4f33-b67d-c6bcd098c7ea))
    (fp_line (start -34.29 -41.27) (end -34.29 -29.84) (layer "B.Fab") (width 0.1) (tstamp 8c87a3b7-567b-4121-b5a8-908863fc7b83))
    (fp_line (start -16.51 -9.53) (end -29.84 -9.53) (layer "B.Fab") (width 0.1) (tstamp 9a2d9092-08f4-4605-9911-facfa3d14ae4))
    (fp_line (start -27.94 2.54) (end 38.1 2.54) (layer "B.Fab") (width 0.1) (tstamp 9d7384f4-72dd-4958-81aa-491c8577b346))
    (fp_line (start -16.51 -0.64) (end -16.51 -9.53) (layer "B.Fab") (width 0.1) (tstamp babe5627-ac22-4fb1-9642-cfab572c7144))
    (fp_line (start 38.1 2.54) (end 38.1 0) (layer "B.Fab") (width 0.1) (tstamp e691b83c-22f3-4a3a-9d67-af7d12acfd7b))
    (fp_line (start -34.29 -29.84) (end -18.41 -29.84) (layer "B.Fab") (width 0.1) (tstamp ecee3477-ff41-4a3e-8355-a0963b5d128a))
    (fp_line (start -18.41 -41.27) (end -34.29 -41.27) (layer "B.Fab") (width 0.1) (tstamp ef5c3c45-78b1-43e0-9b89-a01337eef1fe))
    (fp_line (start 38.1 0) (end 40.64 -2.54) (layer "B.Fab") (width 0.1) (tstamp f9e737a8-aaa4-4b82-8dab-cf1ccc2c4de5))
    (fp_line (start -27.94 -50.8) (end -27.94 2.54) (layer "B.Fab") (width 0.1) (tstamp fd06b46b-01d0-46c6-a57f-052554ce939d))
    (pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 1 "unconnected-(A1-Pad1)") (pinfunction "NC") (pintype "no_connect") (tstamp aa3f2b72-20be-4c5a-912e-02daa3293da1))
    (pad "2" thru_hole oval (at 2.54 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 2 "unconnected-(A1-Pad2)") (pinfunction "IOREF") (pintype "output") (tstamp 3aeb1d70-9364-479e-8979-645974f314c4))
    (pad "3" thru_hole oval (at 5.08 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 3 "unconnected-(A1-Pad3)") (pinfunction "~{RESET}") (pintype "input") (tstamp 56750f13-0e97-4f81-95b4-1a2b447c7920))
    (pad "4" thru_hole oval (at 7.62 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 4 "unconnected-(A1-Pad4)") (pinfunction "3V3") (pintype "power_out") (tstamp 3f345fa7-00e4-4610-9020-46f264c4e7e9))
    (pad "5" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 5 "VCC") (pinfunction "+5V") (pintype "power_out") (tstamp fd5d93f1-6e0c-4fe1-8775-7495954d9ad0))
    (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 e2ef1161-622c-41dd-aa52-b283555f5611))
    (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 4dbc1ec6-2f2b-4c9f-8993-aa0b492818dd))
    (pad "8" thru_hole oval (at 17.78 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 7 "unconnected-(A1-Pad8)") (pinfunction "VIN") (pintype "power_in") (tstamp 957258ab-7f38-45d8-bd72-d360fdb2360f))
    (pad "9" thru_hole oval (at 22.86 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 8 "POT_ATK") (pinfunction "A0") (pintype "bidirectional") (tstamp 6bc64d00-abc7-4de7-9cb1-9cb8771c3841))
    (pad "10" thru_hole oval (at 25.4 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 9 "POT_REL") (pinfunction "A1") (pintype "bidirectional") (tstamp 78346e70-6e05-4908-93ab-49e3010859e2))
    (pad "11" thru_hole oval (at 27.94 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 10 "POT_WAV") (pinfunction "A2") (pintype "bidirectional") (tstamp 405e3491-1bb6-428b-81af-a8e410c94587))
    (pad "12" thru_hole oval (at 30.48 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 11 "Net-(A1-Pad12)") (pinfunction "A3") (pintype "bidirectional") (tstamp 9d536585-2f1d-4551-af3b-a0a4a6fa8aee))
    (pad "13" thru_hole oval (at 33.02 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 12 "unconnected-(A1-Pad13)") (pinfunction "SDA/A4") (pintype "bidirectional+no_connect") (tstamp fee8ad19-4814-4c11-a411-676df9d097be))
    (pad "14" thru_hole oval (at 35.56 0 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 25 "unconnected-(A1-Pad14)") (pinfunction "SCL/A5") (pintype "bidirectional") (tstamp 3d988a07-2f51-4db5-8a14-f8b5d55c9f38))
    (pad "15" thru_hole oval (at 35.56 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 14 "unconnected-(A1-Pad15)") (pinfunction "D0/RX") (pintype "bidirectional") (tstamp 01485cac-004a-48cb-b19a-47d7d3d5ba23))
    (pad "16" thru_hole oval (at 33.02 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 15 "unconnected-(A1-Pad16)") (pinfunction "D1/TX") (pintype "bidirectional") (tstamp 1956c8df-94c6-4445-b256-34a1d7d28a4d))
    (pad "17" thru_hole oval (at 30.48 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 16 "unconnected-(A1-Pad17)") (pinfunction "D2") (pintype "bidirectional") (tstamp f2f4c15a-ff5d-438c-a4cd-199c22955067))
    (pad "18" thru_hole oval (at 27.94 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 17 "unconnected-(A1-Pad18)") (pinfunction "D3") (pintype "bidirectional") (tstamp 79a8c7f0-65a5-4428-9aef-5a87fd97bddf))
    (pad "19" thru_hole oval (at 25.4 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 18 "unconnected-(A1-Pad19)") (pinfunction "D4") (pintype "bidirectional") (tstamp bd335a43-f812-4026-ae2f-d676c4fa039d))
    (pad "20" thru_hole oval (at 22.86 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 19 "unconnected-(A1-Pad20)") (pinfunction "D5") (pintype "bidirectional") (tstamp ca5975d0-5c81-4279-a584-3f8477af0ec1))
    (pad "21" thru_hole oval (at 20.32 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 20 "unconnected-(A1-Pad21)") (pinfunction "D6") (pintype "bidirectional") (tstamp 81d37173-02cf-463e-b42d-7d2f3a9935bb))
    (pad "22" thru_hole oval (at 17.78 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 21 "unconnected-(A1-Pad22)") (pinfunction "D7") (pintype "bidirectional") (tstamp 1f3f8e32-4041-419d-bb41-807996b04290))
    (pad "23" thru_hole oval (at 13.72 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 22 "unconnected-(A1-Pad23)") (pinfunction "D8") (pintype "bidirectional") (tstamp 6df2af11-b565-4e67-af0f-011f218c61c3))
    (pad "24" thru_hole oval (at 11.18 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 23 "unconnected-(A1-Pad24)") (pinfunction "D9") (pintype "bidirectional") (tstamp 57238907-3578-428b-8e68-421c25350399))
    (pad "25" thru_hole oval (at 8.64 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 24 "unconnected-(A1-Pad25)") (pinfunction "D10") (pintype "bidirectional") (tstamp 8cf259af-d30a-43ef-9f91-4195c14cd300))
    (pad "26" thru_hole oval (at 6.1 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 13 "D_SYNTH") (pinfunction "D11") (pintype "bidirectional") (tstamp 19eec782-990f-4c63-a1d7-a7ef854442ad))
    (pad "27" thru_hole oval (at 3.56 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 26 "unconnected-(A1-Pad27)") (pinfunction "D12") (pintype "bidirectional") (tstamp 1ede90b2-8c8e-40bd-b2e4-9503f1ee4859))
    (pad "28" thru_hole oval (at 1.02 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 27 "unconnected-(A1-Pad28)") (pinfunction "D13") (pintype "bidirectional") (tstamp f4a91bb3-c792-4909-b481-5f766c12d04f))
    (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 e374a0ca-8cd2-459c-921b-1871cb8e4673))
    (pad "30" thru_hole oval (at -4.06 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 28 "unconnected-(A1-Pad30)") (pinfunction "AREF") (pintype "input") (tstamp ca35c147-ab24-44e7-9c34-89c7bf5a086d))
    (pad "31" thru_hole oval (at -6.6 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 29 "unconnected-(A1-Pad31)") (pinfunction "SDA/A4") (pintype "bidirectional") (tstamp 7035631a-1651-43d5-b918-d9c226e7e47d))
    (pad "32" thru_hole oval (at -9.14 -48.26 270) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask)
      (net 30 "unconnected-(A1-Pad32)") (pinfunction "SCL/A5") (pintype "bidirectional") (tstamp 672a7c5f-21f2-4afc-941e-89b6103cf88b))
    (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_rect (start 20.32 20.32) (end 170.32 128.1) (layer "Edge.Cuts") (width 0.2) (fill none) (tstamp f02e7ebf-b592-4593-9892-30a806923c55))

  (segment (start 55.88 53.34) (end 55.8 53.42) (width 0.25) (layer "B.Cu") (net 5) (tstamp 24c810c3-c4b4-4ae4-ad91-91fb54454652))
  (segment (start 35.56 53.34) (end 55.88 53.34) (width 0.25) (layer "B.Cu") (net 5) (tstamp 42803321-bc69-4d41-a9b1-36cfcfd3f7c7))
  (segment (start 40.64 76.2) (end 40.64 81.28) (width 0.25) (layer "B.Cu") (net 5) (tstamp 58f70a22-9446-42ef-bebf-14d155fae9e1))
  (segment (start 68.58 76.2) (end 40.64 76.2) (width 0.25) (layer "B.Cu") (net 5) (tstamp 60935ce1-3be5-488a-a7d9-5b68d1a93de6))
  (segment (start 76.2 53.34) (end 76.2 55.88) (width 0.25) (layer "B.Cu") (net 5) (tstamp 78e9746d-4c99-4508-8e50-428e1a4e3310))
  (segment (start 55.88 53.34) (end 68.58 53.34) (width 0.25) (layer "B.Cu") (net 5) (tstamp 8f118eaf-fcca-4d42-aa4f-01ea79270c70))
  (segment (start 68.58 73.66) (end 68.58 53.34) (width 0.25) (layer "B.Cu") (net 5) (tstamp 9ee1b34b-fd3c-4bdb-8ca9-eaf08df77333))
  (segment (start 68.58 73.66) (end 68.58 76.2) (width 0.25) (layer "B.Cu") (net 5) (tstamp c6c6f2d7-cc37-4665-8212-d57062a94ea4))
  (segment (start 35.56 55.88) (end 35.56 53.34) (width 0.25) (layer "B.Cu") (net 5) (tstamp c8ccfe63-f1f2-4e44-aa51-e9fa4a79df51))
  (segment (start 68.58 53.34) (end 76.2 53.34) (width 0.25) (layer "B.Cu") (net 5) (tstamp ca4fc957-ed3d-460d-82dc-cd43a25d2aa5))
  (segment (start 55.8 53.42) (end 55.8 55.88) (width 0.25) (layer "B.Cu") (net 5) (tstamp e14b9e98-7735-4094-b34d-b4356da9c946))
  (segment (start 45.8 55.88) (end 45.8 53.352362) (width 0.25) (layer "F.Cu") (net 6) (tstamp 0518eb54-1d95-4e90-8fb5-7b145083df7a))
  (segment (start 32.1 27.3275) (end 36.854501 27.3275) (width 0.25) (layer "F.Cu") (net 6) (tstamp 14b1bb43-ecb5-4d2f-bdfe-1780da981cea))
  (segment (start 54.9725 27.3275) (end 56.9 25.4) (width 0.25) (layer "F.Cu") (net 6) (tstamp 1eab2a57-04e9-451a-90c4-2ebd22426c4d))
  (segment (start 36.85 27.332001) (end 36.854501 27.3275) (width 0.25) (layer "F.Cu") (net 6) (tstamp 221afb53-5ab7-4940-9a42-9d21c0e2bab2))
  (segment (start 73.66 68.58) (end 73.66 73.66) (width 0.25) (layer "F.Cu") (net 6) (tstamp 2da7692e-a39c-4a88-94d6-db1b534c2c73))
  (segment (start 25.803039 53.34) (end 25.56 53.583039) (width 0.25) (layer "F.Cu") (net 6) (tstamp 366bd107-80d5-46d0-aa4f-51201173bdd5))
  (segment (start 66.2 53.5) (end 66.04 53.34) (width 0.25) (layer "F.Cu") (net 6) (tstamp 6035776b-274f-468d-8d09-18e12879fe51))
  (segment (start 66.04 53.34) (end 45.787638 53.34) (width 0.25) (layer "F.Cu") (net 6) (tstamp b1f5bcf2-b16e-4c88-90c9-2cd3bd6f746e))
  (segment (start 25.56 53.583039) (end 25.56 55.88) (width 0.25) (layer "F.Cu") (net 6) (tstamp b5445dd4-435f-4fcb-a446-b5a1d03cdc2d))
  (segment (start 68.58 63.5) (end 73.66 68.58) (width 0.25) (layer "F.Cu") (net 6) (tstamp b68e02c6-83eb-4cf8-bc79-a3df159d5e01))
  (segment (start 36.85 30.1875) (end 36.85 27.332001) (width 0.25) (layer "F.Cu") (net 6) (tstamp bb4ad220-1dac-4b09-a032-745346607978))
  (segment (start 33.18 63.5) (end 68.58 63.5) (width 0.25) (layer "F.Cu") (net 6) (tstamp bdb92073-5671-45ac-9ca1-e764ab1a346b))
  (segment (start 25.803039 53.34) (end 25.803039 33.624461) (width 0.25) (layer "F.Cu") (net 6) (tstamp c631450d-b1cc-496c-93c3-fd14760db375))
  (segment (start 45.787638 53.34) (end 25.803039 53.34) (width 0.25) (layer "F.Cu") (net 6) (tstamp c652ef6e-429f-43b7-a731-adff9637f787))
  (segment (start 66.2 55.88) (end 66.2 53.5) (width 0.25) (layer "F.Cu") (net 6) (tstamp c70f34e1-2dea-4eb8-836b-990f5b62287f))
  (segment (start 36.854501 27.3275) (end 44.1 27.3275) (width 0.25) (layer "F.Cu") (net 6) (tstamp ce4d8ee6-65dc-40c7-8fa9-8966a4ffecfe))
  (segment (start 45.8 53.352362) (end 45.787638 53.34) (width 0.25) (layer "F.Cu") (net 6) (tstamp d12cde85-f43e-4dd2-988b-fdc298098072))
  (segment (start 25.803039 33.624461) (end 32.1 27.3275) (width 0.25) (layer "F.Cu") (net 6) (tstamp ef78d31f-d1c7-421a-8ab9-8b2024dec799))
  (segment (start 25.56 55.88) (end 33.18 63.5) (width 0.25) (layer "F.Cu") (net 6) (tstamp ef7c1d73-0efd-43d8-89ae-fbd62fe39e05))
  (segment (start 44.1 27.3275) (end 54.9725 27.3275) (width 0.25) (layer "F.Cu") (net 6) (tstamp f21f4e3c-1786-4b7a-817c-16d1e2774ba5))
  (segment (start 73.66 73.66) (end 71.12 73.66) (width 0.25) (layer "F.Cu") (net 6) (tstamp fd4c1d45-7cac-4663-8a1d-748b5f23fce7))
  (segment (start 31.729999 29.230001) (end 33.02 27.94) (width 0.25) (layer "B.Cu") (net 6) (tstamp 3ec0e338-24c6-446f-8726-49549a5d3812))
  (segment (start 162.56 91.44) (end 149.86 78.74) (width 0.25) (layer "B.Cu") (net 6) (tstamp 99d33e99-22eb-44a6-989f-56faf1bf179e))
  (segment (start 81.28 73.66) (end 68.58 60.96) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2f4a76f4-ce68-4201-aca3-32c568e23345))
  (segment (start 35.64 60.96) (end 30.56 55.88) (width 0.25) (layer "F.Cu") (net 8) (tstamp 5eb4a969-fabd-4390-8442-d03bf611961a))
  (segment (start 68.58 60.96) (end 35.64 60.96) (width 0.25) (layer "F.Cu") (net 8) (tstamp 6eb9c640-453e-40ab-8735-b5b121b3fab4))
  (segment (start 53.34 58.42) (end 68.58 58.42) (width 0.25) (layer "F.Cu") (net 9) (tstamp 377e5fb9-d6ed-46e6-bc95-70915c24fe8d))
  (segment (start 50.8 55.88) (end 53.34 58.42) (width 0.25) (layer "F.Cu") (net 9) (tstamp 96bbdcb0-de0a-4a1b-9fc7-bd2897520bef))
  (segment (start 68.58 58.42) (end 83.82 73.66) (width 0.25) (layer "F.Cu") (net 9) (tstamp e5cbd68e-842f-4bba-95ff-dc49bb8c01e8))
  (segment (start 71.2 58.5) (end 86.36 73.66) (width 0.25) (layer "F.Cu") (net 10) (tstamp 289aa284-4692-4787-a7e7-9895bf3a39da))
  (segment (start 71.2 55.88) (end 71.2 58.5) (width 0.25) (layer "F.Cu") (net 10) (tstamp 90e58d47-086c-4fe6-86a4-e3371294b041))
  (segment (start 43.18 81.28) (end 43.18 88.9) (width 0.25) (layer "F.Cu") (net 52) (tstamp e4a67b4c-3089-4bfc-b459-778c005bfd40))
  (segment (start 43.18 88.9) (end 40.64 91.44) (width 0.25) (layer "F.Cu") (net 52) (tstamp fce76e3c-0361-44db-8a7e-9ea2e90c81ea))
  (segment (start 43.18 91.44) (end 42.055489 92.564511) (width 0.25) (layer "F.Cu") (net 53) (tstamp 0684fa04-c65a-4231-8382-299958b436ea))
  (segment (start 48.46 81.28) (end 48.46 86.16) (width 0.25) (layer "F.Cu") (net 53) (tstamp 299a1071-da1c-427a-85ee-a1296a7bc0aa))
  (segment (start 48.46 86.16) (end 43.18 91.44) (width 0.25) (layer "F.Cu") (net 53) (tstamp 607e16ab-128e-4b86-a730-5342459a2b2b))
  (segment (start 23.913447 95.41989) (end 23.913447 124.386744) (width 0.25) (layer "F.Cu") (net 53) (tstamp 85fabedf-a691-4822-be4c-4415cd1d4dcf))
  (segment (start 26.768826 92.564511) (end 23.913447 95.41989) (width 0.25) (layer "F.Cu") (net 53) (tstamp a3f793ac-c8f8-4b6b-a1a0-68bdc0e9870a))
  (segment (start 42.055489 92.564511) (end 26.768826 92.564511) (width 0.25) (layer "F.Cu") (net 53) (tstamp e5588e62-caec-4581-8753-afa8055836e7))
  (segment (start 35.640413 93.03057) (end 34.073447 94.597536) (width 0.25) (layer "F.Cu") (net 54) (tstamp 22910cf2-891c-44a9-9f43-8ef3fc9e8206))
  (segment (start 53.34 89.1) (end 51 91.44) (width 0.25) (layer "F.Cu") (net 54) (tstamp 462bfc9b-f4ef-4869-9627-087bd334518f))
  (segment (start 34.073447 94.597536) (end 34.073447 109.146744) (width 0.25) (layer "F.Cu") (net 54) (tstamp b50a57ff-20dd-412f-afa2-2fe2bd76e71c))
  (segment (start 53.34 81.28) (end 53.34 89.1) (width 0.25) (layer "F.Cu") (net 54) (tstamp bb73babd-00fe-4cbe-97f5-b4a4f31e46e5))
  (segment (start 51 91.44) (end 49.40943 93.03057) (width 0.25) (layer "F.Cu") (net 54) (tstamp d2ebea05-c9c5-4615-b2ab-567641f26035))
  (segment (start 49.40943 93.03057) (end 35.640413 93.03057) (width 0.25) (layer "F.Cu") (net 54) (tstamp e62272b5-ad53-4637-95f3-e8e18f2f9732))
  (segment (start 60.96 88.9) (end 58.42 91.44) (width 0.25) (layer "F.Cu") (net 55) (tstamp 1d2d5409-88f7-49e7-af86-7e9d4508aee5))
  (segment (start 60.96 81.28) (end 60.96 88.9) (width 0.25) (layer "F.Cu") (net 55) (tstamp cd9493a5-ae18-44cf-8be4-72e34378d3da))
  (segment (start 66.04 81.28) (end 66.04 88.9) (width 0.25) (layer "F.Cu") (net 56) (tstamp 8a5f6ae9-11ec-4b5f-9621-4657c1de7599))
  (segment (start 66.04 88.9) (end 63.5 91.44) (width 0.25) (layer "F.Cu") (net 56) (tstamp 90aa9e49-8236-43df-972a-f9f2a3eb1b9b))
  (segment (start 55.88 91.44) (end 53.838266 93.481734) (width 0.25) (layer "F.Cu") (net 57) (tstamp 212f5c7e-fb2d-48c4-bbc6-5c9fe132929b))
  (segment (start 40.64 94.397464) (end 40.64 120.360191) (width 0.25) (layer "F.Cu") (net 57) (tstamp 22587571-51b5-4bb7-81bf-1dd0a58b8490))
  (segment (start 58.42 81.28) (end 58.42 88.9) (width 0.25) (layer "F.Cu") (net 57) (tstamp 4c739fa0-f32e-4df4-9b7b-ee3e6afb295f))
  (segment (start 40.64 120.360191) (end 36.613447 124.386744) (width 0.25) (layer "F.Cu") (net 57) (tstamp 5e95f62f-763d-414f-9972-9290245d1d41))
  (segment (start 58.42 88.9) (end 55.88 91.44) (width 0.25) (layer "F.Cu") (net 57) (tstamp 61552163-4761-4a1c-b2d6-fa35886f0193))
  (segment (start 41.55573 93.481734) (end 40.64 94.397464) (width 0.25) (layer "F.Cu") (net 57) (tstamp 975a2b5d-590e-4d4e-91b2-ffcd2f922aa0))
  (segment (start 53.838266 93.481734) (end 41.55573 93.481734) (width 0.25) (layer "F.Cu") (net 57) (tstamp d42167cf-9a23-433b-bf2f-1cdd794d3c5d))
  (segment (start 73.66 91.44) (end 76.2 88.9) (width 0.25) (layer "F.Cu") (net 58) (tstamp 0e350449-90c6-44d7-8fbc-5e3daac6e005))
  (segment (start 76.2 88.9) (end 76.2 81.28) (width 0.25) (layer "F.Cu") (net 58) (tstamp de3579eb-fbd6-4729-a83a-9a6ca91a15e0))
  (segment (start 46.773447 96.132259) (end 46.773447 109.146744) (width 0.25) (layer "F.Cu") (net 59) (tstamp 4e3e4276-4b1b-43d6-a6e7-cdf37915d79d))
  (segment (start 63.5 88.9) (end 60.96 91.44) (width 0.25) (layer "F.Cu") (net 59) (tstamp 9aead6e8-cca3-443a-8f84-afc69f95535f))
  (segment (start 58.466541 93.933459) (end 48.972247 93.933459) (width 0.25) (layer "F.Cu") (net 59) (tstamp a32d008c-7ae2-429e-b769-efcc7067c278))
  (segment (start 60.96 91.44) (end 58.466541 93.933459) (width 0.25) (layer "F.Cu") (net 59) (tstamp ade50e7b-f677-4364-a23b-44c09be97fe2))
  (segment (start 48.972247 93.933459) (end 46.773447 96.132259) (width 0.25) (layer "F.Cu") (net 59) (tstamp e245957d-1351-4069-8aef-db6fbfc0cbf8))
  (segment (start 63.5 81.28) (end 63.5 88.9) (width 0.25) (layer "F.Cu") (net 59) (tstamp e712e5ad-ef6c-406e-ad24-a7827c0c69d5))
  (segment (start 91.44 88.9) (end 88.9 91.44) (width 0.25) (layer "F.Cu") (net 60) (tstamp 148f0828-014a-4025-9ccd-22182ea0e768))
  (segment (start 91.44 81.28) (end 91.44 88.9) (width 0.25) (layer "F.Cu") (net 60) (tstamp ff7b20b5-c8ee-4ded-8994-e6c3905741aa))
  (segment (start 66.04 91.44) (end 63.093114 94.386886) (width 0.25) (layer "F.Cu") (net 61) (tstamp 50e60a94-e341-4b30-bf75-dc66b5c12353))
  (segment (start 53.420799 97.434811) (end 52.727922 98.127688) (width 0.25) (layer "F.Cu") (net 61) (tstamp 5622e5f8-f4d1-4e17-9793-8b20b67b75e2))
  (segment (start 68.58 88.9) (end 66.04 91.44) (width 0.25) (layer "F.Cu") (net 61) (tstamp 8994fceb-4325-496c-bcd4-3c56637a3a95))
  (segment (start 68.58 81.28) (end 68.58 88.9) (width 0.25) (layer "F.Cu") (net 61) (tstamp 8e03dd6d-803c-4542-b3e0-9449138b9fa6))
  (segment (start 53.420799 94.386886) (end 53.420799 97.434811) (width 0.25) (layer "F.Cu") (net 61) (tstamp a450b760-b1dd-406a-93b0-98cf075514b6))
  (segment (start 63.093114 94.386886) (end 53.420799 94.386886) (width 0.25) (layer "F.Cu") (net 61) (tstamp b37aef5d-08ac-4050-80d2-400652102905))
  (segment (start 111.76 81.28) (end 111.76 88.9) (width 0.25) (layer "F.Cu") (net 62) (tstamp 67a7bbee-db7c-4632-8cda-01b3c01916aa))
  (segment (start 111.76 88.9) (end 109.22 91.44) (width 0.25) (layer "F.Cu") (net 62) (tstamp ebdc5608-8877-4853-8afc-12eb95545037))
  (segment (start 59.465489 109.138786) (end 59.473447 109.146744) (width 0.25) (layer "F.Cu") (net 63) (tstamp 1a8ea114-18fb-4fec-88b9-58ccf3f7ac2c))
  (segment (start 67.688657 94.871343) (end 59.465489 94.871343) (width 0.25) (layer "F.Cu") (net 63) (tstamp 2852ff54-665b-4bb8-93ab-81a9ba0aa6d7))
  (segment (start 73.66 88.9) (end 71.12 91.44) (width 0.25) (layer "F.Cu") (net 63) (tstamp 3b7391b0-88d4-4303-ac56-a443b823a699))
  (segment (start 59.465489 94.871343) (end 59.465489 109.138786) (width 0.25) (layer "F.Cu") (net 63) (tstamp 7b6741f3-952f-468c-bfbe-8cca2e41d3ab))
  (segment (start 73.66 81.28) (end 73.66 88.9) (width 0.25) (layer "F.Cu") (net 63) (tstamp 8b881b67-9183-4369-b04e-2d3839f97ac1))
  (segment (start 71.12 91.44) (end 67.688657 94.871343) (width 0.25) (layer "F.Cu") (net 63) (tstamp cbd0b934-4d2f-473f-9e9c-0823b8ba95fc))
  (segment (start 121.92 88.9) (end 121.92 81.28) (width 0.25) (layer "F.Cu") (net 64) (tstamp 6aef1125-8d1a-46e8-9213-84a1607a3595))
  (segment (start 119.38 91.44) (end 121.92 88.9) (width 0.25) (layer "F.Cu") (net 64) (tstamp cb5ce2d0-bb2d-4aec-af83-7f3e1d6b5a8f))
  (segment (start 67.239629 98.469125) (end 67.323402 98.552898) (width 0.25) (layer "F.Cu") (net 66) (tstamp 2b4cea34-197d-48ca-b5eb-bb55d472050e))
  (segment (start 72.291705 95.348295) (end 67.239629 95.348295) (width 0.25) (layer "F.Cu") (net 66) (tstamp 52ae9cb5-3014-490d-a77d-e296820c815f))
  (segment (start 78.74 81.28) (end 78.74 88.9) (width 0.25) (layer "F.Cu") (net 66) (tstamp 561105c0-e3df-4b9a-b9e7-5f00e10ab031))
  (segment (start 67.239629 95.348295) (end 67.239629 98.469125) (width 0.25) (layer "F.Cu") (net 66) (tstamp bcf9b464-c57b-43c7-a590-537a6046bafd))
  (segment (start 78.74 88.9) (end 76.2 91.44) (width 0.25) (layer "F.Cu") (net 66) (tstamp f3daef59-e1a9-4a9b-9b34-17c715a7d545))
  (segment (start 76.2 91.44) (end 72.291705 95.348295) (width 0.25) (layer "F.Cu") (net 66) (tstamp f49db415-38af-4e78-ae76-52daa8fb5c46))
  (segment (start 134.62 91.44) (end 137.16 88.9) (width 0.25) (layer "F.Cu") (net 67) (tstamp d05e82f3-fdfa-4f34-ab96-ad08af3e33aa))
  (segment (start 137.16 88.9) (end 137.16 81.28) (width 0.25) (layer "F.Cu") (net 67) (tstamp d6a25885-e607-46b3-85a4-093e834c6e3a))
  (segment (start 74.713447 94.763215) (end 74.713447 124.386744) (width 0.25) (layer "F.Cu") (net 68) (tstamp 2ee6d5d1-29c8-46cd-8e6c-4e519bc5dcf7))
  (segment (start 81.28 91.44) (end 78.975726 93.744274) (width 0.25) (layer "F.Cu") (net 68) (tstamp 3284e4a2-ebae-4aa9-a436-acfd1c5bd291))
  (segment (start 75.732388 93.744274) (end 74.713447 94.763215) (width 0.25) (layer "F.Cu") (net 68) (tstamp 502e3500-9958-4321-b58f-e0e18ea0d13a))
  (segment (start 78.975726 93.744274) (end 75.732388 93.744274) (width 0.25) (layer "F.Cu") (net 68) (tstamp 603cde7d-a9d1-4bc9-94b1-e9f448425dc2))
  (segment (start 83.82 81.28) (end 83.82 88.9) (width 0.25) (layer "F.Cu") (net 68) (tstamp 9c0492e3-8b4c-48f6-a86b-e42781505861))
  (segment (start 83.82 88.9) (end 81.28 91.44) (width 0.25) (layer "F.Cu") (net 68) (tstamp b15f3018-2585-4fbc-ad4b-6f69f7fe1426))
  (segment (start 82.333447 95.466553) (end 82.333447 109.146744) (width 0.25) (layer "F.Cu") (net 75) (tstamp 5a7de32a-df6d-4a0f-bbae-de1b96db2496))
  (segment (start 88.9 81.28) (end 88.9 88.9) (width 0.25) (layer "F.Cu") (net 75) (tstamp 6a08e7cf-56f8-427f-a198-85368584f711))
  (segment (start 86.36 91.44) (end 82.333447 95.466553) (width 0.25) (layer "F.Cu") (net 75) (tstamp 8f70969a-9f35-48fb-a634-0ae5e1083657))
  (segment (start 88.9 88.9) (end 86.36 91.44) (width 0.25) (layer "F.Cu") (net 75) (tstamp b4750253-17f7-4952-a97f-0e2aa78e5d4e))
  (segment (start 51 81.28) (end 51 88.9) (width 0.25) (layer "F.Cu") (net 76) (tstamp 744b64d9-2ed3-474e-b57c-b50ff188fa42))
  (segment (start 51 88.9) (end 48.46 91.44) (width 0.25) (layer "F.Cu") (net 76) (tstamp a5f08fbb-a715-4cf0-857c-0e9ee50cfbb9))
  (segment (start 55.88 81.28) (end 55.88 88.9) (width 0.25) (layer "F.Cu") (net 77) (tstamp 15bc015c-7afb-427a-83cc-674e31456083))
  (segment (start 55.88 88.9) (end 53.34 91.44) (width 0.25) (layer "F.Cu") (net 77) (tstamp 9bc35066-bf49-4fb1-9b7a-f7e94f104b4d))
  (segment (start 91.44 91.44) (end 91.44 91.470395) (width 0.25) (layer "F.Cu") (net 78) (tstamp 28d81186-3c14-4508-88e5-c295f1178312))
  (segment (start 91.44 91.470395) (end 88.818697 94.091698) (width 0.25) (layer "F.Cu") (net 78) (tstamp a61654a3-de5a-4e01-913b-ca18ecda8ce1))
  (segment (start 88.818697 94.091698) (end 88.818697 122.981494) (width 0.25) (layer "F.Cu") (net 78) (tstamp ae5cfbfa-65e8-483b-a969-049b2df3d464))
  (segment (start 88.818697 122.981494) (end 87.413447 124.386744) (width 0.25) (layer "F.Cu") (net 78) (tstamp c519ca6a-d70e-40fb-9e97-05d39a356099))
  (segment (start 93.98 88.9) (end 91.44 91.44) (width 0.25) (layer "F.Cu") (net 78) (tstamp d42847ad-990a-4200-934d-4d556b925193))
  (segment (start 93.98 81.28) (end 93.98 88.9) (width 0.25) (layer "F.Cu") (net 78) (tstamp e2301668-6e69-4a95-b043-c54260d19a27))
  (segment (start 96.52 107.660191) (end 95.033447 109.146744) (width 0.25) (layer "F.Cu") (net 79) (tstamp 09c2c2fc-7328-4061-bf5a-37e7912dffee))
  (segment (start 99.06 81.28) (end 99.06 88.9) (width 0.25) (layer "F.Cu") (net 79) (tstamp 1d086828-e531-4329-91c2-3da38cfb3425))
  (segment (start 96.52 91.44) (end 96.52 107.660191) (width 0.25) (layer "F.Cu") (net 79) (tstamp d2aacd8f-cf44-4ff6-90e6-49cd0618479e))
  (segment (start 99.06 88.9) (end 96.52 91.44) (width 0.25) (layer "F.Cu") (net 79) (tstamp e9c77ad6-1c6e-4065-86ae-f73c5c776b3b))
  (segment (start 71.12 88.9) (end 71.12 81.28) (width 0.25) (layer "F.Cu") (net 80) (tstamp 528124d7-6765-4290-8ccc-62a50e00d3eb))
  (segment (start 68.58 91.44) (end 71.12 88.9) (width 0.25) (layer "F.Cu") (net 80) (tstamp 8c6ecf50-a72f-45a5-b4a3-3a1b01eadf98))
  (segment (start 104.14 81.28) (end 104.14 88.9) (width 0.25) (layer "F.Cu") (net 81) (tstamp 07501074-0540-4fdf-915b-26dc4d6bc220))
  (segment (start 101.6 122.900191) (end 100.113447 124.386744) (width 0.25) (layer "F.Cu") (net 81) (tstamp 67d61a94-e09d-4fa9-a982-a35317c715ac))
  (segment (start 104.14 88.9) (end 101.6 91.44) (width 0.25) (layer "F.Cu") (net 81) (tstamp 94e5c10e-5b7e-46bb-967c-bd86d0c9bfe3))
  (segment (start 101.6 91.44) (end 101.6 122.900191) (width 0.25) (layer "F.Cu") (net 81) (tstamp 955f615b-e89b-48ad-aca8-9542c34d4723))
  (segment (start 106.68 93.694453) (end 108.525151 95.539604) (width 0.25) (layer "F.Cu") (net 82) (tstamp 4ebd65ae-57cf-4b4d-8977-38b2034c608e))
  (segment (start 109.22 88.9) (end 106.68 91.44) (width 0.25) (layer "F.Cu") (net 82) (tstamp 8171c8c4-d02e-4adb-bf54-352a6595d8c5))
  (segment (start 108.525151 95.539604) (end 108.525151 122.638448) (width 0.25) (layer "F.Cu") (net 82) (tstamp 81e0230d-8c10-487a-a8a7-3b1b02e42043))
  (segment (start 108.525151 122.638448) (end 110.273447 124.386744) (width 0.25) (layer "F.Cu") (net 82) (tstamp ba8047a4-ac0e-4869-b96b-4c63cd893684))
  (segment (start 106.68 91.44) (end 106.68 93.694453) (width 0.25) (layer "F.Cu") (net 82) (tstamp c88a2209-e2e7-4712-b98d-f6488e1c9b1d))
  (segment (start 109.22 81.28) (end 109.22 88.9) (width 0.25) (layer "F.Cu") (net 82) (tstamp f9d731fa-da6b-4a28-9717-99ddf5e9094b))
  (segment (start 78.74 91.44) (end 81.28 88.9) (width 0.25) (layer "F.Cu") (net 83) (tstamp 9c18a65d-0f14-47ad-b910-ca7f2227d0e9))
  (segment (start 81.28 88.9) (end 81.28 81.28) (width 0.25) (layer "F.Cu") (net 83) (tstamp e73e7531-1c76-4aea-bb94-5853a2dba337))
  (segment (start 86.36 88.9) (end 83.82 91.44) (width 0.25) (layer "F.Cu") (net 84) (tstamp bab5d8b6-6341-4364-b18b-98cc58031c55))
  (segment (start 86.36 81.28) (end 86.36 88.9) (width 0.25) (layer "F.Cu") (net 84) (tstamp f625351b-fdae-462c-a312-ece5ddd5dac5))
  (segment (start 111.76 91.44) (end 117.893447 97.573447) (width 0.25) (layer "F.Cu") (net 85) (tstamp 261046f5-8dea-4dbe-bbc8-b5ca6e29690d))
  (segment (start 114.3 81.28) (end 114.3 88.9) (width 0.25) (layer "F.Cu") (net 85) (tstamp 2887c778-e5af-4d06-a928-2d83cf843512))
  (segment (start 114.3 88.9) (end 111.76 91.44) (width 0.25) (layer "F.Cu") (net 85) (tstamp d81ddeec-f298-4fd7-9726-89a21de6257c))
  (segment (start 117.893447 97.573447) (end 117.893447 109.146744) (width 0.25) (layer "F.Cu") (net 85) (tstamp e727ef33-a01a-4a16-87ea-571f789ed093))
  (segment (start 119.864023 94.464023) (end 116.84 91.44) (width 0.25) (layer "F.Cu") (net 86) (tstamp 0698ae2b-27fd-415f-8eba-2a73a2cec3bc))
  (segment (start 119.38 81.28) (end 119.38 88.9) (width 0.25) (layer "F.Cu") (net 86) (tstamp 29d00abc-e76e-4b18-8e7a-d08fb95e7032))
  (segment (start 126.08184 121.278351) (end 126.08184 94.464023) (width 0.25) (layer "F.Cu") (net 86) (tstamp 4fd8a557-5828-4c9d-8f61-7e9ad6234d97))
  (segment (start 122.973447 124.386744) (end 126.08184 121.278351) (width 0.25) (layer "F.Cu") (net 86) (tstamp 54a8e5ec-4c12-480a-b80e-ee08ee0eb589))
  (segment (start 119.38 88.9) (end 116.84 91.44) (width 0.25) (layer "F.Cu") (net 86) (tstamp d43a9ef3-1132-4d54-ba14-59baccdcc826))
  (segment (start 126.08184 94.464023) (end 119.864023 94.464023) (width 0.25) (layer "F.Cu") (net 86) (tstamp e06c0d0f-49ef-4efc-91ea-b0f21486e846))
  (segment (start 96.52 88.9) (end 93.98 91.44) (width 0.25) (layer "F.Cu") (net 87) (tstamp 077c7306-71e6-414e-91bb-3b5840c35f98))
  (segment (start 96.52 81.28) (end 96.52 88.9) (width 0.25) (layer "F.Cu") (net 87) (tstamp 811187c6-7463-49b4-976b-a04741f09084))
  (segment (start 101.6 88.9) (end 99.06 91.44) (width 0.25) (layer "F.Cu") (net 88) (tstamp 27b868db-ea29-4e39-922e-e923f857eed8))
  (segment (start 101.6 81.28) (end 101.6 88.9) (width 0.25) (layer "F.Cu") (net 88) (tstamp 31fe8ab1-0f10-4d47-9b2e-2b35ac41afad))
  (segment (start 106.68 88.9) (end 104.14 91.44) (width 0.25) (layer "F.Cu") (net 89) (tstamp 522216ea-de3d-4504-b87b-21976468255c))
  (segment (start 106.68 81.28) (end 106.68 88.9) (width 0.25) (layer "F.Cu") (net 89) (tstamp 97bfdb0a-bb4a-45fb-929e-6966632074c2))
  (segment (start 124.46 81.28) (end 124.46 88.9) (width 0.25) (layer "F.Cu") (net 90) (tstamp 42fda316-2d8c-4fd9-9329-a5673a981441))
  (segment (start 130.593447 109.146744) (end 130.593447 98.232169) (width 0.25) (layer "F.Cu") (net 90) (tstamp 4a05c0c2-4b34-4a12-a452-010e2662609f))
  (segment (start 130.404536 98.043258) (end 130.404536 94.014503) (width 0.25) (layer "F.Cu") (net 90) (tstamp 70a7a389-d0a8-4907-840f-9eae3379673f))
  (segment (start 124.46 88.9) (end 121.92 91.44) (width 0.25) (layer "F.Cu") (net 90) (tstamp 837f1da1-c297-4591-bc6e-b2da5f018fbd))
  (segment (start 130.404536 94.014503) (end 124.494503 94.014503) (width 0.25) (layer "F.Cu") (net 90) (tstamp 97040848-752c-4c1f-819c-af3b8d43d7c4))
  (segment (start 130.593447 98.232169) (end 130.404536 98.043258) (width 0.25) (layer "F.Cu") (net 90) (tstamp 99ce4334-4b93-40c4-bcda-bdd9a52e73a7))
  (segment (start 124.494503 94.014503) (end 121.92 91.44) (width 0.25) (layer "F.Cu") (net 90) (tstamp c0c3ef5b-6826-437b-9a91-b867235f2d50))
  (segment (start 129.124983 93.564983) (end 127 91.44) (width 0.25) (layer "F.Cu") (net 91) (tstamp 799529a4-b235-4577-bec0-9bdaf9a5b249))
  (segment (start 135.673447 124.386744) (end 138.547289 121.512902) (width 0.25) (layer "F.Cu") (net 91) (tstamp 8805149b-b5ee-43d1-9693-f220d4d63ac4))
  (segment (start 138.547289 93.564983) (end 129.124983 93.564983) (width 0.25) (layer "F.Cu") (net 91) (tstamp 885ac475-0862-461a-afca-63ad6c695b56))
  (segment (start 138.547289 121.512902) (end 138.547289 93.564983) (width 0.25) (layer "F.Cu") (net 91) (tstamp 90930607-6d92-4083-ad07-02da16c45204))
  (segment (start 129.54 88.9) (end 127 91.44) (width 0.25) (layer "F.Cu") (net 91) (tstamp be286e1d-a88f-4844-8167-07773c2bdfbd))
  (segment (start 129.54 81.28) (end 129.54 88.9) (width 0.25) (layer "F.Cu") (net 91) (tstamp db3669eb-e710-44a5-a40d-a81e0511f173))
  (segment (start 116.84 88.9) (end 116.84 81.28) (width 0.25) (layer "F.Cu") (net 92) (tstamp c9390790-8d5a-4d7a-a3c6-ddf63c16c17e))
  (segment (start 114.3 91.44) (end 116.84 88.9) (width 0.25) (layer "F.Cu") (net 92) (tstamp cc9bcf96-8675-452f-9014-d6d6e722d596))
  (segment (start 143.293447 109.146744) (end 143.293447 94.188643) (width 0.25) (layer "F.Cu") (net 93) (tstamp 543a60d4-b324-4ed0-a68c-5a316676ecf2))
  (segment (start 143.293447 94.188643) (end 142.220267 93.115463) (width 0.25) (layer "F.Cu") (net 93) (tstamp 5aaa9a2d-d06a-43c8-9699-af4c69e2ab83))
  (segment (start 134.62 88.9) (end 132.08 91.44) (width 0.25) (layer "F.Cu") (net 93) (tstamp 907c24fa-37c4-4c4d-a4b8-1fcf1a0f1099))
  (segment (start 134.62 81.28) (end 134.62 88.9) (width 0.25) (layer "F.Cu") (net 93) (tstamp e25fad77-0a37-4836-8476-849b61098e9d))
  (segment (start 142.220267 93.115463) (end 133.755463 93.115463) (width 0.25) (layer "F.Cu") (net 93) (tstamp e338660e-34cf-4efd-96e4-2780eb4ddd91))
  (segment (start 133.755463 93.115463) (end 132.08 91.44) (width 0.25) (layer "F.Cu") (net 93) (tstamp e5c000a1-56c8-440f-87dc-1def58cd5e34))
  (segment (start 124.46 91.44) (end 127 88.9) (width 0.25) (layer "F.Cu") (net 94) (tstamp 287ecb8d-bb55-4e9f-802b-411229d32ff7))
  (segment (start 127 88.9) (end 127 81.28) (width 0.25) (layer "F.Cu") (net 94) (tstamp cdacc17e-82d4-4b91-b303-596f96d9cd1d))
  (segment (start 132.08 88.9) (end 132.08 81.28) (width 0.25) (layer "F.Cu") (net 95) (tstamp bd731311-09c5-4a4c-a907-655b805e8f3e))
  (segment (start 129.54 91.44) (end 132.08 88.9) (width 0.25) (layer "F.Cu") (net 95) (tstamp c6d49213-b649-47f2-aaed-35c46164f70a))
  (segment (start 139.7 81.28) (end 139.7 88.9) (width 0.25) (layer "F.Cu") (net 96) (tstamp 054e172b-2327-4c2f-9686-344fc7f6bac2))
  (segment (start 139.7 88.9) (end 137.16 91.44) (width 0.25) (layer "F.Cu") (net 96) (tstamp b0b4726e-2db0-44b7-89f9-18ddacbccb83))
  (segment (start 137.16 91.44) (end 138.36043 92.64043) (width 0.25) (layer "F.Cu") (net 96) (tstamp dee3106b-9aa9-4321-888e-aeb3710086c1))
  (segment (start 138.36043 92.64043) (end 151.705151 92.64043) (width 0.25) (layer "F.Cu") (net 96) (tstamp e8d4345b-a8ac-411d-8bde-a5dd98f89b63))
  (segment (start 151.705151 92.64043) (end 151.705151 121.05504) (width 0.25) (layer "F.Cu") (net 96) (tstamp eae6b59c-c44e-4434-838f-30272473f1c4))
  (segment (start 151.705151 121.05504) (end 148.373447 124.386744) (width 0.25) (layer "F.Cu") (net 96) (tstamp fb7c2138-63c4-49c4-bce8-7867269a72e1))
  (segment (start 152.4 91.44) (end 157.48 96.52) (width 0.25) (layer "F.Cu") (net 97) (tstamp 15460987-07c7-494a-9457-6099f31335ac))
  (segment (start 152.4 91.44) (end 142.24 91.44) (width 0.25) (layer "F.Cu") (net 97) (tstamp 383662a5-24d3-47d3-bbbe-d51494d0fb3e))
  (segment (start 160.02 81.28) (end 160.02 83.82) (width 0.25) (layer "F.Cu") (net 97) (tstamp 58839ec5-5b46-4caf-be8a-fcb25e5c7d97))
  (segment (start 160.02 83.82) (end 152.4 91.44) (width 0.25) (layer "F.Cu") (net 97) (tstamp 601a896b-d482-4b42-bf2d-5dc999508b24))
  (segment (start 142.24 81.28) (end 142.24 88.9) (width 0.25) (layer "F.Cu") (net 98) (tstamp 8d83b008-e6e3-47d0-ab70-01bb77675bc4))
  (segment (start 142.24 88.9) (end 139.7 91.44) (width 0.25) (layer "F.Cu") (net 98) (tstamp cf08016a-8e9c-4e0f-9ba5-039f4530f1d1))
  (segment (start 162.56 81.28) (end 162.56 88.9) (width 0.25) (layer "F.Cu") (net 99) (tstamp 6d849ac5-0ae1-4605-94be-f47a8af2295a))
  (segment (start 162.56 88.9) (end 160.02 91.44) (width 0.25) (layer "F.Cu") (net 99) (tstamp b7cd2d81-c79a-41a4-8fbe-60f122c6c24b))

)