summaryrefslogtreecommitdiff
path: root/pcb/securehid.net
blob: 1a47c100127e46c619ab496725b9247b0807cce7 (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
(export (version D)
  (design
    (source /home/user/research/secureHID/pcb/securehid.sch)
    (date "Wed Nov 21 22:56:27 2018")
    (tool "Eeschema (5.0.1)")
    (sheet (number 1) (name /) (tstamps /)
      (title_block
        (title)
        (company)
        (rev)
        (date)
        (source securehid.sch)
        (comment (number 1) (value ""))
        (comment (number 2) (value ""))
        (comment (number 3) (value ""))
        (comment (number 4) (value "")))))
  (components
    (comp (ref U2)
      (value STM32F103C8T6)
      (footprint Package_QFP:LQFP-48_7x7mm_P0.5mm)
      (libsource (lib MCU_ST_STM32F1) (part STM32F103C8Tx) (description "ARM Cortex-M3 MCU, 64KB flash, 20KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEEAD06))
    (comp (ref J1)
      (value USB_B_Micro)
      (footprint Connector_USB:USB_Micro-B_GCT_USB3076-30-A)
      (libsource (lib Connector) (part USB_B_Micro) (description "USB Micro Type B connector"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEEADC1))
    (comp (ref J6)
      (value USB_A)
      (footprint footprints:USB_A_FEMALE_THT)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32849715796.html))
      (libsource (lib conn) (part USB_A) (description "USB Type A connector"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEEAE66))
    (comp (ref U1)
      (value AP1117-33)
      (footprint TO_SOT_Packages_SMD:SOT-223-3Lead_TabPin2)
      (datasheet http://www.diodes.com/datasheets/AP1117.pdf)
      (libsource (lib regul) (part AP1117-33) (description "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEF631A))
    (comp (ref C10)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEF660D))
    (comp (ref C9)
      (value 220u)
      (footprint Capacitor_SMD:C_Elec_10x10.2)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32556865449.html))
      (libsource (lib device) (part CP) (description "Polarised capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEF69F7))
    (comp (ref C12)
      (value 47u)
      (footprint Capacitor_SMD:C_Elec_6.3x5.8)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32846711940.html))
      (libsource (lib device) (part CP) (description "Polarised capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEF6DE0))
    (comp (ref C11)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEF7098))
    (comp (ref R9)
      (value 22)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF05F40))
    (comp (ref R7)
      (value 22)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF06DFB))
    (comp (ref R6)
      (value 1k5)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF07F6E))
    (comp (ref Y2)
      (value 8MHz)
      (footprint Crystal:Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm)
      (libsource (lib device) (part Crystal_GND24_Small) (description "Two pin crystal, two ground/package pins (pin2 and 4) small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF102A6))
    (comp (ref C17)
      (value 12p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF11861))
    (comp (ref C18)
      (value 12p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF125C0))
    (comp (ref R8)
      (value 1M)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF1348D))
    (comp (ref C14)
      (value 10u)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF1E83A))
    (comp (ref C15)
      (value 10u)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF1FBEB))
    (comp (ref R1)
      (value 0)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF2746F))
    (comp (ref C7)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF38053))
    (comp (ref C8)
      (value 10u)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF395B5))
    (comp (ref U3)
      (value STM32F407VET6)
      (footprint Package_QFP:LQFP-100_14x14mm_P0.5mm)
      (libsource (lib MCU_ST_STM32F4) (part STM32F407VETx) (description "ARM Cortex-M4 MCU, 512KB flash, 128KB RAM, 168MHz, 1.8-3.6V, 82 GPIO, LQFP-100"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BEEABF3))
    (comp (ref R5)
      (value 0)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF5BB39))
    (comp (ref C1)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF62211))
    (comp (ref C2)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF6342B))
    (comp (ref C4)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF6483B))
    (comp (ref C5)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF65555))
    (comp (ref C6)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF65AAF))
    (comp (ref BT1)
      (value CR2032)
      (footprint Battery:BatteryHolder_MPD_BC2003_1x2032)
      (libsource (lib device) (part Battery_Cell) (description "single battery cell"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF6C982))
    (comp (ref J2)
      (value SWD_HOST)
      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
      (datasheet ~)
      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BF8388D))
    (comp (ref J3)
      (value UART_HOST)
      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
      (datasheet ~)
      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFBEF9F))
    (comp (ref J5)
      (value UART_DEVICE)
      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
      (datasheet ~)
      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFCCF0F))
    (comp (ref U4)
      (value FE1.1s)
      (footprint Package_SO:SSOP-28_3.9x9.9mm_P0.635mm)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32787809220.html))
      (libsource (lib components) (part FE1.1s) (description ""))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFFC98A))
    (comp (ref J8)
      (value USB_A)
      (footprint footprints:USB_A_FEMALE_THT)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32849715796.html))
      (libsource (lib conn) (part USB_A) (description "USB Type A connector"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C01D6A6))
    (comp (ref C24)
      (value 10u)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C047824))
    (comp (ref C23)
      (value 10u)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C048AFF))
    (comp (ref Y4)
      (value 12MHz)
      (footprint Crystal:Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm)
      (libsource (lib device) (part Crystal_GND24_Small) (description "Two pin crystal, two ground/package pins (pin2 and 4) small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C073CEB))
    (comp (ref C21)
      (value 22p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C07723C))
    (comp (ref C20)
      (value 22p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C079071))
    (comp (ref R10)
      (value 2k7)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C095FA0))
    (comp (ref R11)
      (value 10k)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C0F41D6))
    (comp (ref J7)
      (value USB_SPARE)
      (footprint Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical)
      (datasheet ~)
      (libsource (lib Connector_Generic) (part Conn_02x05_Odd_Even) (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C134723))
    (comp (ref LS1)
      (value "12mm passive piezo")
      (footprint Buzzer_Beeper:Buzzer_12x9.5RM7.6)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32503620431.html))
      (libsource (lib device) (part Speaker_Crystal) (description "crystal speaker/transducer"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C238571))
    (comp (ref Q1)
      (value AO3400)
      (footprint TO_SOT_Packages_SMD:SOT-23)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7002.pdf)
      (libsource (lib transistors) (part 2N7002) (description "60V Vds, 0.115A Id, N-channel MOSFET, SOT-23"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C23FA3A))
    (comp (ref D4)
      (value "Ice blue")
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/store/product//1758868_32693684017.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C249B1C))
    (comp (ref R12)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C25E0F0))
    (comp (ref R13)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C25EB0C))
    (comp (ref R14)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C25EC8A))
    (comp (ref R15)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C25F0FB))
    (comp (ref R16)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C25F439))
    (comp (ref R17)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C26016A))
    (comp (ref Q2)
      (value AO3400)
      (footprint TO_SOT_Packages_SMD:SOT-23)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7002.pdf)
      (libsource (lib transistors) (part 2N7002) (description "60V Vds, 0.115A Id, N-channel MOSFET, SOT-23"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1C85))
    (comp (ref D10)
      (value pink)
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32376752790.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1C8C))
    (comp (ref R18)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1CB6))
    (comp (ref R19)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1CBD))
    (comp (ref R20)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1CC4))
    (comp (ref R21)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1CCB))
    (comp (ref R22)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1CD2))
    (comp (ref R23)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E1CD9))
    (comp (ref Q3)
      (value AO3400)
      (footprint TO_SOT_Packages_SMD:SOT-23)
      (datasheet https://www.fairchildsemi.com/datasheets/2N/2N7002.pdf)
      (libsource (lib transistors) (part 2N7002) (description "60V Vds, 0.115A Id, N-channel MOSFET, SOT-23"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C35C82C))
    (comp (ref C29)
      (value 100p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C36E3E6))
    (comp (ref R24)
      (value 100)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C39507D))
    (comp (ref R25)
      (value 1k)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C3BA02E))
    (comp (ref C25)
      (value 47u)
      (footprint Capacitor_SMD:C_Elec_6.3x5.8)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32846711940.html))
      (libsource (lib device) (part CP_Small) (description "Polarised capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51704D))
    (comp (ref C26)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51BE00))
    (comp (ref C27)
      (value 47u)
      (footprint Capacitor_SMD:C_Elec_6.3x5.8)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32846711940.html))
      (libsource (lib device) (part CP_Small) (description "Polarised capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C56285D))
    (comp (ref C28)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C562864))
    (comp (ref D1)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5B8E64))
    (comp (ref D2)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5C2170))
    (comp (ref D3)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5C4C69))
    (comp (ref D16)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5C8AAB))
    (comp (ref D17)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5CCC8D))
    (comp (ref D18)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5CF123))
    (comp (ref D19)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5CFFD0))
    (comp (ref D20)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5D158A))
    (comp (ref D21)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5D3F1F))
    (comp (ref D22)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5D4845))
    (comp (ref D23)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5D5CC9))
    (comp (ref RN1)
      (value 4*620)
      (footprint Resistor_SMD:R_Array_Convex_4x0603)
      (fields
        (field (name marutsu) https://www.marutsu.co.jp/pc/i/14222/))
      (libsource (lib device) (part R_Pack04) (description "4 Resistor network, parallel topology, DIP package"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5DE49D))
    (comp (ref RN2)
      (value 4*620)
      (footprint Resistor_SMD:R_Array_Convex_4x0603)
      (fields
        (field (name marutsu) https://www.marutsu.co.jp/pc/i/14222/))
      (libsource (lib device) (part R_Pack04) (description "4 Resistor network, parallel topology, DIP package"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C63187D))
    (comp (ref RN3)
      (value 4*620)
      (footprint Resistor_SMD:R_Array_Convex_4x0603)
      (fields
        (field (name marutsu) https://www.marutsu.co.jp/pc/i/14222/))
      (libsource (lib device) (part R_Pack04) (description "4 Resistor network, parallel topology, DIP package"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C63296F))
    (comp (ref D24)
      (value red)
      (footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part LED_Small) (description "LED, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C6C0DF6))
    (comp (ref SW1)
      (value SW_Push)
      (footprint Button_Switch_SMD:SW_SPST_EVPBF)
      (libsource (lib switches) (part SW_Push) (description "Push button switch, generic, two pins"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CA5E99A))
    (comp (ref Y1)
      (value 8MHz)
      (footprint Crystal:Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm)
      (libsource (lib device) (part Crystal_GND24_Small) (description "Two pin crystal, two ground/package pins (pin2 and 4) small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFB4F88))
    (comp (ref C13)
      (value 12p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFB4F8F))
    (comp (ref C16)
      (value 12p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFB4F96))
    (comp (ref R4)
      (value 1M)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFB4F9D))
    (comp (ref Y3)
      (value 32.768kHz)
      (footprint Crystal:Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm)
      (libsource (lib device) (part Crystal_GND24_Small) (description "Two pin crystal, two ground/package pins (pin2 and 4) small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C1E1737))
    (comp (ref C19)
      (value 12p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C1E173E))
    (comp (ref C22)
      (value 12p)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C1E1745))
    (comp (ref R2)
      (value 10k)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C2E339B))
    (comp (ref R3)
      (value 10k)
      (footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C330F23))
    (comp (ref J4)
      (value SWD_DEVICE)
      (footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
      (datasheet ~)
      (libsource (lib Connector_Generic) (part Conn_01x04) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C397A42))
    (comp (ref TP8)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C47DFE5))
    (comp (ref TP10)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C485760))
    (comp (ref TP12)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C485D2E))
    (comp (ref TP13)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4860F8))
    (comp (ref TP15)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C486A3A))
    (comp (ref TP17)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C486BFA))
    (comp (ref TP21)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48822E))
    (comp (ref TP25)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48868A))
    (comp (ref TP29)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48940B))
    (comp (ref TP32)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C489AAB))
    (comp (ref TP34)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48A6A6))
    (comp (ref TP36)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48B64C))
    (comp (ref TP38)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48C6FB))
    (comp (ref TP40)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48CF33))
    (comp (ref TP42)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48D18C))
    (comp (ref TP44)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C48DB4A))
    (comp (ref TP7)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4901EF))
    (comp (ref TP6)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C493CA7))
    (comp (ref TP4)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C49510A))
    (comp (ref TP9)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C496BCA))
    (comp (ref TP11)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C49F6C2))
    (comp (ref TP16)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4A055A))
    (comp (ref TP18)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4A139B))
    (comp (ref TP22)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4A15A3))
    (comp (ref TP26)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4A17AF))
    (comp (ref TP30)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4A19BF))
    (comp (ref TP45)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C4A7F68))
    (comp (ref TP20)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C936D5A))
    (comp (ref TP24)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C9684E2))
    (comp (ref TP28)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C969C2A))
    (comp (ref TP31)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96A276))
    (comp (ref TP33)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96A49E))
    (comp (ref TP35)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96B372))
    (comp (ref TP37)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96BD12))
    (comp (ref TP39)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96BF46))
    (comp (ref TP41)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96CA1E))
    (comp (ref TP43)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C96DB03))
    (comp (ref TP14)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CB50D04))
    (comp (ref TP5)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CB84290))
    (comp (ref TP3)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CBBAA24))
    (comp (ref TP1)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CBEFE72))
    (comp (ref TP2)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CBF3D8C))
    (comp (ref TP46)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC59D09))
    (comp (ref TP47)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC968FC))
    (comp (ref TP48)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC985C2))
    (comp (ref TP49)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC99F42))
    (comp (ref TP50)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC9AA61))
    (comp (ref TP52)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CD6F295))
    (comp (ref TP54)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CD6F29D))
    (comp (ref TP56)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CD6F2A4))
    (comp (ref TP58)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CD6F2AB))
    (comp (ref TP60)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CD6F2B2))
    (comp (ref TP62)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CDA3ACF))
    (comp (ref TP64)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CDA3AD7))
    (comp (ref TP66)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CDA3ADE))
    (comp (ref TP68)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CDA3AE5))
    (comp (ref TP70)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CDA3AEC))
    (comp (ref TP72)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE11B57))
    (comp (ref TP74)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE11B5F))
    (comp (ref TP76)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE11B66))
    (comp (ref TP78)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE11B6D))
    (comp (ref TP51)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56744))
    (comp (ref TP53)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE5674C))
    (comp (ref TP55)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56753))
    (comp (ref TP57)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE5675A))
    (comp (ref TP59)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56761))
    (comp (ref TP61)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE5676C))
    (comp (ref TP63)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56774))
    (comp (ref TP65)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE5677B))
    (comp (ref TP67)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56782))
    (comp (ref TP69)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56789))
    (comp (ref TP71)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE56794))
    (comp (ref TP73)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE5679C))
    (comp (ref TP75)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE567A3))
    (comp (ref TP77)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CE567AA))
    (comp (ref TP79)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CF09FE7))
    (comp (ref TP80)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CF0B43E))
    (comp (ref TP19)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CF877DC))
    (comp (ref TP23)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CF8ADC6))
    (comp (ref TP27)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CF8B936))
    (comp (ref D11)
      (value pink)
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32376752790.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51A7AC))
    (comp (ref D12)
      (value pink)
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32376752790.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51AF3E))
    (comp (ref D13)
      (value pink)
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32376752790.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51B8E6))
    (comp (ref D14)
      (value pink)
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32376752790.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51CDA8))
    (comp (ref D15)
      (value pink)
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32376752790.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51D76E))
    (comp (ref D5)
      (value "Ice blue")
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/store/product//1758868_32693684017.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51EE78))
    (comp (ref D6)
      (value "Ice blue")
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/store/product//1758868_32693684017.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C51FC8E))
    (comp (ref D7)
      (value "Ice blue")
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/store/product//1758868_32693684017.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C52067C))
    (comp (ref D8)
      (value "Ice blue")
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/store/product//1758868_32693684017.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C527E21))
    (comp (ref D9)
      (value "Ice blue")
      (footprint LED_SMD:LED_PLCC_2835_Handsoldering)
      (fields
        (field (name ali) https://www.aliexpress.com/store/product//1758868_32693684017.html))
      (libsource (lib device) (part LED) (description "LED generic"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C5294FF))
    (comp (ref C30)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C8C6262))
    (comp (ref U5)
      (value AP1117-33)
      (footprint TO_SOT_Packages_SMD:SOT-223-3Lead_TabPin2)
      (datasheet http://www.diodes.com/datasheets/AP1117.pdf)
      (libsource (lib regul) (part AP1117-33) (description "1A Low Dropout regulator, positive, 3.3V fixed output, SOT-223"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CAC94A7))
    (comp (ref C32)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CAC94AE))
    (comp (ref C34)
      (value 47u)
      (footprint Capacitor_SMD:C_Elec_6.3x5.8)
      (fields
        (field (name ali) https://www.aliexpress.com/item//32846711940.html))
      (libsource (lib device) (part CP) (description "Polarised capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CAC94BE))
    (comp (ref C33)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CAC94C5))
    (comp (ref C31)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC31EB0))
    (comp (ref C35)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC31EB6))
    (comp (ref C36)
      (value 100n)
      (footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
      (libsource (lib device) (part C_Small) (description "Unpolarized capacitor"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CC31EBC))
    (comp (ref R26)
      (value NETTIE)
      (footprint NetTie:NetTie-2_SMD_Pad2.0mm)
      (libsource (lib device) (part R_Small) (description "Resistor, small symbol"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5CCA267C))
    (comp (ref TP81)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5BFF0539))
    (comp (ref TP82)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C0015E1))
    (comp (ref TP83)
      (value TestPoint_Alt)
      (footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
      (datasheet ~)
      (libsource (lib Connector) (part TestPoint_Alt) (description "test point (alternative shape)"))
      (sheetpath (names /) (tstamps /))
      (tstamp 5C13B94B)))
  (libparts
    (libpart (lib Connector) (part TestPoint_Alt)
      (description "test point (alternative shape)")
      (docs ~)
      (footprints
        (fp Pin*)
        (fp Test*))
      (fields
        (field (name Reference) TP)
        (field (name Value) TestPoint_Alt))
      (pins
        (pin (num 1) (name 1) (type passive))))
    (libpart (lib Connector) (part USB_B_Micro)
      (aliases
        (alias USB_B_Mini))
      (description "USB Micro Type B connector")
      (docs ~)
      (footprints
        (fp USB*))
      (fields
        (field (name Reference) J)
        (field (name Value) USB_B_Micro))
      (pins
        (pin (num 1) (name VBUS) (type power_out))
        (pin (num 2) (name D-) (type passive))
        (pin (num 3) (name D+) (type passive))
        (pin (num 4) (name ID) (type passive))
        (pin (num 5) (name GND) (type power_out))
        (pin (num 6) (name Shield) (type passive))))
    (libpart (lib Connector_Generic) (part Conn_01x04)
      (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
      (docs ~)
      (footprints
        (fp Connector*:*_1x??_*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_01x04))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))
        (pin (num 4) (name Pin_4) (type passive))))
    (libpart (lib Connector_Generic) (part Conn_02x05_Odd_Even)
      (description "Generic connector, double row, 02x05, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
      (docs ~)
      (footprints
        (fp Connector*:*_2x??_*))
      (fields
        (field (name Reference) J)
        (field (name Value) Conn_02x05_Odd_Even))
      (pins
        (pin (num 1) (name Pin_1) (type passive))
        (pin (num 2) (name Pin_2) (type passive))
        (pin (num 3) (name Pin_3) (type passive))
        (pin (num 4) (name Pin_4) (type passive))
        (pin (num 5) (name Pin_5) (type passive))
        (pin (num 6) (name Pin_6) (type passive))
        (pin (num 7) (name Pin_7) (type passive))
        (pin (num 8) (name Pin_8) (type passive))
        (pin (num 9) (name Pin_9) (type passive))
        (pin (num 10) (name Pin_10) (type passive))))
    (libpart (lib MCU_ST_STM32F1) (part STM32F103C8Tx)
      (aliases
        (alias STM32F103CBTx))
      (description "ARM Cortex-M3 MCU, 64KB flash, 20KB RAM, 72MHz, 2-3.6V, 37 GPIO, LQFP-48")
      (docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf)
      (footprints
        (fp LQFP*7x7mm*P0.5mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F103C8Tx)
        (field (name Footprint) Package_QFP:LQFP-48_7x7mm_P0.5mm))
      (pins
        (pin (num 1) (name VBAT) (type power_in))
        (pin (num 2) (name PC13) (type BiDi))
        (pin (num 3) (name PC14) (type BiDi))
        (pin (num 4) (name PC15) (type BiDi))
        (pin (num 5) (name PD0) (type input))
        (pin (num 6) (name PD1) (type input))
        (pin (num 7) (name NRST) (type input))
        (pin (num 8) (name VSSA) (type power_in))
        (pin (num 9) (name VDDA) (type power_in))
        (pin (num 10) (name PA0) (type BiDi))
        (pin (num 11) (name PA1) (type BiDi))
        (pin (num 12) (name PA2) (type BiDi))
        (pin (num 13) (name PA3) (type BiDi))
        (pin (num 14) (name PA4) (type BiDi))
        (pin (num 15) (name PA5) (type BiDi))
        (pin (num 16) (name PA6) (type BiDi))
        (pin (num 17) (name PA7) (type BiDi))
        (pin (num 18) (name PB0) (type BiDi))
        (pin (num 19) (name PB1) (type BiDi))
        (pin (num 20) (name PB2) (type BiDi))
        (pin (num 21) (name PB10) (type BiDi))
        (pin (num 22) (name PB11) (type BiDi))
        (pin (num 23) (name VSS) (type power_in))
        (pin (num 24) (name VDD) (type power_in))
        (pin (num 25) (name PB12) (type BiDi))
        (pin (num 26) (name PB13) (type BiDi))
        (pin (num 27) (name PB14) (type BiDi))
        (pin (num 28) (name PB15) (type BiDi))
        (pin (num 29) (name PA8) (type BiDi))
        (pin (num 30) (name PA9) (type BiDi))
        (pin (num 31) (name PA10) (type BiDi))
        (pin (num 32) (name PA11) (type BiDi))
        (pin (num 33) (name PA12) (type BiDi))
        (pin (num 34) (name PA13) (type BiDi))
        (pin (num 35) (name VSS) (type power_in))
        (pin (num 36) (name VDD) (type power_in))
        (pin (num 37) (name PA14) (type BiDi))
        (pin (num 38) (name PA15) (type BiDi))
        (pin (num 39) (name PB3) (type BiDi))
        (pin (num 40) (name PB4) (type BiDi))
        (pin (num 41) (name PB5) (type BiDi))
        (pin (num 42) (name PB6) (type BiDi))
        (pin (num 43) (name PB7) (type BiDi))
        (pin (num 44) (name BOOT0) (type input))
        (pin (num 45) (name PB8) (type BiDi))
        (pin (num 46) (name PB9) (type BiDi))
        (pin (num 47) (name VSS) (type power_in))
        (pin (num 48) (name VDD) (type power_in))))
    (libpart (lib MCU_ST_STM32F4) (part STM32F407VETx)
      (aliases
        (alias STM32F407VGTx))
      (description "ARM Cortex-M4 MCU, 512KB flash, 128KB RAM, 168MHz, 1.8-3.6V, 82 GPIO, LQFP-100")
      (docs http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00037051.pdf)
      (footprints
        (fp LQFP*14x14mm*P0.5mm*))
      (fields
        (field (name Reference) U)
        (field (name Value) STM32F407VETx)
        (field (name Footprint) Package_QFP:LQFP-100_14x14mm_P0.5mm))
      (pins
        (pin (num 1) (name PE2) (type BiDi))
        (pin (num 2) (name PE3) (type BiDi))
        (pin (num 3) (name PE4) (type BiDi))
        (pin (num 4) (name PE5) (type BiDi))
        (pin (num 5) (name PE6) (type BiDi))
        (pin (num 6) (name VBAT) (type power_in))
        (pin (num 7) (name PC13) (type BiDi))
        (pin (num 8) (name PC14) (type BiDi))
        (pin (num 9) (name PC15) (type BiDi))
        (pin (num 10) (name VSS) (type power_in))
        (pin (num 11) (name VDD) (type power_in))
        (pin (num 12) (name PH0) (type input))
        (pin (num 13) (name PH1) (type input))
        (pin (num 14) (name NRST) (type input))
        (pin (num 15) (name PC0) (type BiDi))
        (pin (num 16) (name PC1) (type BiDi))
        (pin (num 17) (name PC2) (type BiDi))
        (pin (num 18) (name PC3) (type BiDi))
        (pin (num 19) (name VDD) (type power_in))
        (pin (num 20) (name VSSA) (type power_in))
        (pin (num 21) (name VREF+) (type power_in))
        (pin (num 22) (name VDDA) (type power_in))
        (pin (num 23) (name PA0) (type BiDi))
        (pin (num 24) (name PA1) (type BiDi))
        (pin (num 25) (name PA2) (type BiDi))
        (pin (num 26) (name PA3) (type BiDi))
        (pin (num 27) (name VSS) (type power_in))
        (pin (num 28) (name VDD) (type power_in))
        (pin (num 29) (name PA4) (type BiDi))
        (pin (num 30) (name PA5) (type BiDi))
        (pin (num 31) (name PA6) (type BiDi))
        (pin (num 32) (name PA7) (type BiDi))
        (pin (num 33) (name PC4) (type BiDi))
        (pin (num 34) (name PC5) (type BiDi))
        (pin (num 35) (name PB0) (type BiDi))
        (pin (num 36) (name PB1) (type BiDi))
        (pin (num 37) (name PB2) (type BiDi))
        (pin (num 38) (name PE7) (type BiDi))
        (pin (num 39) (name PE8) (type BiDi))
        (pin (num 40) (name PE9) (type BiDi))
        (pin (num 41) (name PE10) (type BiDi))
        (pin (num 42) (name PE11) (type BiDi))
        (pin (num 43) (name PE12) (type BiDi))
        (pin (num 44) (name PE13) (type BiDi))
        (pin (num 45) (name PE14) (type BiDi))
        (pin (num 46) (name PE15) (type BiDi))
        (pin (num 47) (name PB10) (type BiDi))
        (pin (num 48) (name PB11) (type BiDi))
        (pin (num 49) (name VCAP_1) (type power_in))
        (pin (num 50) (name VDD) (type power_in))
        (pin (num 51) (name PB12) (type BiDi))
        (pin (num 52) (name PB13) (type BiDi))
        (pin (num 53) (name PB14) (type BiDi))
        (pin (num 54) (name PB15) (type BiDi))
        (pin (num 55) (name PD8) (type BiDi))
        (pin (num 56) (name PD9) (type BiDi))
        (pin (num 57) (name PD10) (type BiDi))
        (pin (num 58) (name PD11) (type BiDi))
        (pin (num 59) (name PD12) (type BiDi))
        (pin (num 60) (name PD13) (type BiDi))
        (pin (num 61) (name PD14) (type BiDi))
        (pin (num 62) (name PD15) (type BiDi))
        (pin (num 63) (name PC6) (type BiDi))
        (pin (num 64) (name PC7) (type BiDi))
        (pin (num 65) (name PC8) (type BiDi))
        (pin (num 66) (name PC9) (type BiDi))
        (pin (num 67) (name PA8) (type BiDi))
        (pin (num 68) (name PA9) (type BiDi))
        (pin (num 69) (name PA10) (type BiDi))
        (pin (num 70) (name PA11) (type BiDi))
        (pin (num 71) (name PA12) (type BiDi))
        (pin (num 72) (name PA13) (type BiDi))
        (pin (num 73) (name VCAP_2) (type power_in))
        (pin (num 74) (name VSS) (type power_in))
        (pin (num 75) (name VDD) (type power_in))
        (pin (num 76) (name PA14) (type BiDi))
        (pin (num 77) (name PA15) (type BiDi))
        (pin (num 78) (name PC10) (type BiDi))
        (pin (num 79) (name PC11) (type BiDi))
        (pin (num 80) (name PC12) (type BiDi))
        (pin (num 81) (name PD0) (type BiDi))
        (pin (num 82) (name PD1) (type BiDi))
        (pin (num 83) (name PD2) (type BiDi))
        (pin (num 84) (name PD3) (type BiDi))
        (pin (num 85) (name PD4) (type BiDi))
        (pin (num 86) (name PD5) (type BiDi))
        (pin (num 87) (name PD6) (type BiDi))
        (pin (num 88) (name PD7) (type BiDi))
        (pin (num 89) (name PB3) (type BiDi))
        (pin (num 90) (name PB4) (type BiDi))
        (pin (num 91) (name PB5) (type BiDi))
        (pin (num 92) (name PB6) (type BiDi))
        (pin (num 93) (name PB7) (type BiDi))
        (pin (num 94) (name BOOT0) (type input))
        (pin (num 95) (name PB8) (type BiDi))
        (pin (num 96) (name PB9) (type BiDi))
        (pin (num 97) (name PE0) (type BiDi))
        (pin (num 98) (name PE1) (type BiDi))
        (pin (num 99) (name VSS) (type power_in))
        (pin (num 100) (name VDD) (type power_in))))
    (libpart (lib components) (part FE1.1s)
      (fields
        (field (name Reference) U)
        (field (name Value) FE1.1s))
      (pins
        (pin (num 1) (name VSS) (type input))
        (pin (num 2) (name XOUT) (type input))
        (pin (num 3) (name XIN) (type input))
        (pin (num 4) (name DM4) (type input))
        (pin (num 5) (name DP4) (type input))
        (pin (num 6) (name DM3) (type input))
        (pin (num 7) (name DP3) (type input))
        (pin (num 8) (name DM2) (type input))
        (pin (num 9) (name DP2) (type input))
        (pin (num 10) (name DM1) (type input))
        (pin (num 11) (name DP1) (type input))
        (pin (num 12) (name VD18_O) (type input))
        (pin (num 13) (name VD33) (type input))
        (pin (num 14) (name REXT) (type input))
        (pin (num 15) (name DMU) (type input))
        (pin (num 16) (name DPU) (type input))
        (pin (num 17) (name XRSTJ) (type input))
        (pin (num 18) (name VBUSM) (type input))
        (pin (num 19) (name BUSJ) (type input))
        (pin (num 20) (name VDD5) (type input))
        (pin (num 21) (name VDD33_O) (type input))
        (pin (num 22) (name DRV) (type input))
        (pin (num 23) (name LED1) (type input))
        (pin (num 24) (name LED2) (type input))
        (pin (num 25) (name PWRJ) (type input))
        (pin (num 26) (name OVCJ) (type input))
        (pin (num 27) (name TESTJ) (type input))
        (pin (num 28) (name VD18) (type input))))
    (libpart (lib conn) (part USB_A)
      (description "USB Type A connector")
      (footprints
        (fp USB*))
      (fields
        (field (name Reference) J)
        (field (name Value) USB_A))
      (pins
        (pin (num 1) (name VBUS) (type power_in))
        (pin (num 2) (name D-) (type passive))
        (pin (num 3) (name D+) (type passive))
        (pin (num 4) (name GND) (type power_in))
        (pin (num 5) (name Shield) (type passive))))
    (libpart (lib device) (part Battery_Cell)
      (description "single battery cell")
      (fields
        (field (name Reference) BT)
        (field (name Value) Battery_Cell))
      (pins
        (pin (num 1) (name +) (type passive))
        (pin (num 2) (name -) (type passive))))
    (libpart (lib device) (part C)
      (description "Unpolarized capacitor")
      (footprints
        (fp C_*))
      (fields
        (field (name Reference) C)
        (field (name Value) C))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part CP)
      (description "Polarised capacitor")
      (footprints
        (fp CP_*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part CP_Small)
      (description "Polarised capacitor")
      (footprints
        (fp CP_*))
      (fields
        (field (name Reference) C)
        (field (name Value) CP_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part C_Small)
      (description "Unpolarized capacitor")
      (footprints
        (fp C_*))
      (fields
        (field (name Reference) C)
        (field (name Value) C_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part Crystal_GND24_Small)
      (description "Two pin crystal, two ground/package pins (pin2 and 4) small symbol")
      (footprints
        (fp Crystal*))
      (fields
        (field (name Reference) Y)
        (field (name Value) Crystal_GND24_Small))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))
        (pin (num 3) (name 3) (type passive))
        (pin (num 4) (name 4) (type passive))))
    (libpart (lib device) (part LED)
      (description "LED generic")
      (footprints
        (fp LED*))
      (fields
        (field (name Reference) D)
        (field (name Value) LED))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib device) (part LED_Small)
      (description "LED, small symbol")
      (footprints
        (fp LED-*)
        (fp LED_*))
      (fields
        (field (name Reference) D)
        (field (name Value) LED_Small))
      (pins
        (pin (num 1) (name K) (type passive))
        (pin (num 2) (name A) (type passive))))
    (libpart (lib device) (part R_Pack04)
      (description "4 Resistor network, parallel topology, DIP package")
      (footprints
        (fp DIP*)
        (fp SOIC*))
      (fields
        (field (name Reference) RN)
        (field (name Value) R_Pack04))
      (pins
        (pin (num 1) (name R1.1) (type passive))
        (pin (num 2) (name R2.1) (type passive))
        (pin (num 3) (name R3.1) (type passive))
        (pin (num 4) (name R4.1) (type passive))
        (pin (num 5) (name R4.2) (type passive))
        (pin (num 6) (name R3.2) (type passive))
        (pin (num 7) (name R2.2) (type passive))
        (pin (num 8) (name R1.2) (type passive))))
    (libpart (lib device) (part R_Small)
      (description "Resistor, small symbol")
      (footprints
        (fp R_*))
      (fields
        (field (name Reference) R)
        (field (name Value) R_Small))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))))
    (libpart (lib device) (part Speaker_Crystal)
      (aliases
        (alias Speaker_Ultrasound))
      (description "crystal speaker/transducer")
      (fields
        (field (name Reference) LS)
        (field (name Value) Speaker_Crystal))
      (pins
        (pin (num 1) (name 1) (type input))
        (pin (num 2) (name 2) (type input))))
    (libpart (lib regul) (part AP1117-15)
      (aliases
        (alias AP1117-18)
        (alias AP1117-25)
        (alias AP1117-33)
        (alias AP1117-50)
        (alias LD1117S33TR_SOT223)
        (alias LD1117S12TR_SOT223)
        (alias LD1117S18TR_SOT223)
        (alias LD1117S25TR_SOT223)
        (alias LD1117S50TR_SOT223)
        (alias NCP1117-12_SOT223)
        (alias NCP1117-1.5_SOT223)
        (alias NCP1117-1.8_SOT223)
        (alias NCP1117-2.0_SOT223)
        (alias NCP1117-2.5_SOT223)
        (alias NCP1117-2.85_SOT223)
        (alias NCP1117-3.3_SOT223)
        (alias NCP1117-5.0_SOT223))
      (description "1A Low Dropout regulator, positive, 1.5V fixed output, SOT-223")
      (docs http://www.diodes.com/datasheets/AP1117.pdf)
      (footprints
        (fp SOT?223*TabPin2*))
      (fields
        (field (name Reference) U)
        (field (name Value) AP1117-15)
        (field (name Footprint) TO_SOT_Packages_SMD:SOT-223-3Lead_TabPin2))
      (pins
        (pin (num 1) (name GND) (type power_in))
        (pin (num 2) (name VO) (type passive))
        (pin (num 3) (name VI) (type power_in))))
    (libpart (lib switches) (part SW_Push)
      (description "Push button switch, generic, two pins")
      (fields
        (field (name Reference) SW)
        (field (name Value) SW_Push))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib transistors) (part BSS138)
      (aliases
        (alias 2N7002)
        (alias MMBF170))
      (description "50V Vds, 0.22 A Id, N-channel MOSFET, SOT-23")
      (docs https://www.fairchildsemi.com/datasheets/BS/BSS138.pdf)
      (footprints
        (fp SOT?23*))
      (fields
        (field (name Reference) Q)
        (field (name Value) BSS138)
        (field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
      (pins
        (pin (num 1) (name G) (type input))
        (pin (num 2) (name S) (type passive))
        (pin (num 3) (name D) (type passive)))))
  (libraries
    (library (logical Connector)
      (uri /home/user/ref/kicad-symbols/Connector.lib))
    (library (logical Connector_Generic)
      (uri /home/user/ref/kicad-symbols/Connector_Generic.lib))
    (library (logical MCU_ST_STM32F1)
      (uri /home/user/ref/kicad-symbols/MCU_ST_STM32F1.lib))
    (library (logical MCU_ST_STM32F4)
      (uri /home/user/ref/kicad-symbols/MCU_ST_STM32F4.lib))
    (library (logical components)
      (uri /home/user/research/secureHID/pcb/components.lib))
    (library (logical conn)
      (uri /usr/share/kicad/library/conn.lib))
    (library (logical device)
      (uri /usr/share/kicad/library/device.lib))
    (library (logical regul)
      (uri /usr/share/kicad/library/regul.lib))
    (library (logical switches)
      (uri /usr/share/kicad/library/switches.lib))
    (library (logical transistors)
      (uri /usr/share/kicad/library/transistors.lib)))
  (nets
    (net (code 1) (name +3.3VA)
      (node (ref C36) (pin 1))
      (node (ref C35) (pin 1))
      (node (ref C31) (pin 1))
      (node (ref U2) (pin 9))
      (node (ref U2) (pin 48))
      (node (ref U2) (pin 36))
      (node (ref U2) (pin 24))
      (node (ref U2) (pin 1))
      (node (ref R3) (pin 1))
      (node (ref R6) (pin 1))
      (node (ref C33) (pin 1))
      (node (ref C34) (pin 1))
      (node (ref U5) (pin 2)))
    (net (code 2) (name /DBGD_RX)
      (node (ref U2) (pin 31))
      (node (ref J5) (pin 3)))
    (net (code 3) (name /DBGD_TX)
      (node (ref U2) (pin 30))
      (node (ref J5) (pin 4)))
    (net (code 4) (name /USBD_DM)
      (node (ref R9) (pin 2))
      (node (ref U2) (pin 32)))
    (net (code 5) (name /USBD_DP)
      (node (ref R7) (pin 1))
      (node (ref U2) (pin 33)))
    (net (code 6) (name GNDA)
      (node (ref U2) (pin 23))
      (node (ref U2) (pin 44))
      (node (ref C33) (pin 2))
      (node (ref U2) (pin 8))
      (node (ref U2) (pin 47))
      (node (ref U2) (pin 35))
      (node (ref Y1) (pin 4))
      (node (ref C16) (pin 1))
      (node (ref C31) (pin 2))
      (node (ref C32) (pin 2))
      (node (ref U5) (pin 1))
      (node (ref Y1) (pin 2))
      (node (ref C13) (pin 1))
      (node (ref J5) (pin 2))
      (node (ref J2) (pin 3))
      (node (ref J3) (pin 2))
      (node (ref C35) (pin 2))
      (node (ref C36) (pin 2))
      (node (ref J4) (pin 3))
      (node (ref R26) (pin 2))
      (node (ref C34) (pin 2))
      (node (ref TP83) (pin 1)))
    (net (code 7) (name "Net-(SW1-Pad2)")
      (node (ref SW1) (pin 2))
      (node (ref U3) (pin 2)))
    (net (code 8) (name GND)
      (node (ref C24) (pin 1))
      (node (ref C20) (pin 2))
      (node (ref C14) (pin 2))
      (node (ref C23) (pin 1))
      (node (ref R26) (pin 1))
      (node (ref C30) (pin 1))
      (node (ref C21) (pin 2))
      (node (ref J8) (pin 5))
      (node (ref J8) (pin 4))
      (node (ref U4) (pin 27))
      (node (ref U4) (pin 19))
      (node (ref Y4) (pin 2))
      (node (ref Y4) (pin 4))
      (node (ref C29) (pin 2))
      (node (ref Q3) (pin 3))
      (node (ref Y2) (pin 2))
      (node (ref Y2) (pin 4))
      (node (ref C18) (pin 1))
      (node (ref Q2) (pin 3))
      (node (ref C17) (pin 1))
      (node (ref Q1) (pin 3))
      (node (ref J7) (pin 7))
      (node (ref J7) (pin 8))
      (node (ref C2) (pin 2))
      (node (ref C1) (pin 2))
      (node (ref C15) (pin 2))
      (node (ref C4) (pin 2))
      (node (ref U3) (pin 94))
      (node (ref BT1) (pin 2))
      (node (ref U4) (pin 1))
      (node (ref J1) (pin 5))
      (node (ref C9) (pin 2))
      (node (ref C12) (pin 2))
      (node (ref C11) (pin 2))
      (node (ref C10) (pin 2))
      (node (ref J1) (pin 6))
      (node (ref J6) (pin 4))
      (node (ref J6) (pin 5))
      (node (ref U1) (pin 1))
      (node (ref R10) (pin 2))
      (node (ref U3) (pin 10))
      (node (ref U3) (pin 27))
      (node (ref U3) (pin 74))
      (node (ref U3) (pin 99))
      (node (ref C6) (pin 2))
      (node (ref C5) (pin 2))
      (node (ref C27) (pin 1))
      (node (ref Y3) (pin 4))
      (node (ref SW1) (pin 1))
      (node (ref C19) (pin 1))
      (node (ref C25) (pin 1))
      (node (ref C26) (pin 1))
      (node (ref Y3) (pin 2))
      (node (ref C22) (pin 1))
      (node (ref C28) (pin 1)))
    (net (code 9) (name /LED1)
      (node (ref U3) (pin 4))
      (node (ref RN1) (pin 7)))
    (net (code 10) (name /LED2)
      (node (ref RN1) (pin 6))
      (node (ref U3) (pin 5)))
    (net (code 11) (name "Net-(C16-Pad2)")
      (node (ref Y1) (pin 3))
      (node (ref U2) (pin 6))
      (node (ref R4) (pin 2))
      (node (ref C16) (pin 2)))
    (net (code 12) (name "Net-(C13-Pad2)")
      (node (ref U2) (pin 5))
      (node (ref Y1) (pin 1))
      (node (ref C13) (pin 2))
      (node (ref R4) (pin 1)))
    (net (code 13) (name /SWDIOD)
      (node (ref J4) (pin 4))
      (node (ref U2) (pin 34)))
    (net (code 14) (name /SWCLKD)
      (node (ref U2) (pin 37))
      (node (ref J4) (pin 2)))
    (net (code 15) (name "Net-(R3-Pad2)")
      (node (ref U2) (pin 7))
      (node (ref R3) (pin 2)))
    (net (code 16) (name +3V3)
      (node (ref U3) (pin 11))
      (node (ref U3) (pin 19))
      (node (ref U3) (pin 28))
      (node (ref U3) (pin 75))
      (node (ref U3) (pin 50))
      (node (ref C1) (pin 1))
      (node (ref J4) (pin 1))
      (node (ref U1) (pin 2))
      (node (ref C12) (pin 1))
      (node (ref R2) (pin 2))
      (node (ref C11) (pin 1))
      (node (ref U3) (pin 100))
      (node (ref R1) (pin 1))
      (node (ref J2) (pin 1))
      (node (ref C2) (pin 1))
      (node (ref C5) (pin 1))
      (node (ref C6) (pin 1))
      (node (ref C4) (pin 1)))
    (net (code 17) (name "Net-(R2-Pad1)")
      (node (ref U3) (pin 14))
      (node (ref R2) (pin 1)))
    (net (code 18) (name "Net-(TP15-Pad1)")
      (node (ref U2) (pin 40))
      (node (ref TP15) (pin 1)))
    (net (code 19) (name "Net-(TP42-Pad1)")
      (node (ref TP42) (pin 1))
      (node (ref U2) (pin 27)))
    (net (code 20) (name "Net-(TP40-Pad1)")
      (node (ref U2) (pin 26))
      (node (ref TP40) (pin 1)))
    (net (code 21) (name "Net-(TP38-Pad1)")
      (node (ref U2) (pin 25))
      (node (ref TP38) (pin 1)))
    (net (code 22) (name "Net-(TP36-Pad1)")
      (node (ref U2) (pin 22))
      (node (ref TP36) (pin 1)))
    (net (code 23) (name "Net-(TP34-Pad1)")
      (node (ref TP34) (pin 1))
      (node (ref U2) (pin 21)))
    (net (code 24) (name "Net-(TP32-Pad1)")
      (node (ref TP32) (pin 1))
      (node (ref U2) (pin 46)))
    (net (code 25) (name "Net-(TP29-Pad1)")
      (node (ref TP29) (pin 1))
      (node (ref U2) (pin 45)))
    (net (code 26) (name "Net-(TP25-Pad1)")
      (node (ref TP25) (pin 1))
      (node (ref U2) (pin 43)))
    (net (code 27) (name "Net-(TP21-Pad1)")
      (node (ref U2) (pin 42))
      (node (ref TP21) (pin 1)))
    (net (code 28) (name "Net-(TP17-Pad1)")
      (node (ref U2) (pin 41))
      (node (ref TP17) (pin 1)))
    (net (code 29) (name "Net-(TP13-Pad1)")
      (node (ref TP13) (pin 1))
      (node (ref U2) (pin 39)))
    (net (code 30) (name "Net-(TP12-Pad1)")
      (node (ref U2) (pin 20))
      (node (ref TP12) (pin 1)))
    (net (code 31) (name "Net-(TP10-Pad1)")
      (node (ref U2) (pin 19))
      (node (ref TP10) (pin 1)))
    (net (code 32) (name "Net-(TP8-Pad1)")
      (node (ref TP8) (pin 1))
      (node (ref U2) (pin 18)))
    (net (code 33) (name "Net-(C22-Pad2)")
      (node (ref C22) (pin 2))
      (node (ref Y3) (pin 3))
      (node (ref U3) (pin 9)))
    (net (code 34) (name "Net-(C19-Pad2)")
      (node (ref Y3) (pin 1))
      (node (ref U3) (pin 8))
      (node (ref C19) (pin 2)))
    (net (code 35) (name /SECURE_IF_F4RX)
      (node (ref U2) (pin 12))
      (node (ref U3) (pin 26))
      (node (ref TP81) (pin 1)))
    (net (code 36) (name "Net-(D18-Pad1)")
      (node (ref RN2) (pin 2))
      (node (ref D18) (pin 1)))
    (net (code 37) (name "Net-(D17-Pad1)")
      (node (ref RN2) (pin 1))
      (node (ref D17) (pin 1)))
    (net (code 38) (name "Net-(D16-Pad1)")
      (node (ref RN1) (pin 4))
      (node (ref D16) (pin 1)))
    (net (code 39) (name "Net-(D20-Pad1)")
      (node (ref D20) (pin 1))
      (node (ref RN2) (pin 4)))
    (net (code 40) (name "Net-(D1-Pad1)")
      (node (ref RN1) (pin 1))
      (node (ref D1) (pin 1)))
    (net (code 41) (name "Net-(D3-Pad1)")
      (node (ref D3) (pin 1))
      (node (ref RN1) (pin 3)))
    (net (code 42) (name "Net-(D2-Pad1)")
      (node (ref RN1) (pin 2))
      (node (ref D2) (pin 1)))
    (net (code 43) (name /PIEZO_OUT)
      (node (ref U3) (pin 47))
      (node (ref R25) (pin 1)))
    (net (code 44) (name "Net-(C29-Pad1)")
      (node (ref R25) (pin 2))
      (node (ref Q3) (pin 1))
      (node (ref C29) (pin 1)))
    (net (code 45) (name VBUS)
      (node (ref U1) (pin 3))
      (node (ref D1) (pin 2))
      (node (ref D20) (pin 2))
      (node (ref D21) (pin 2))
      (node (ref D22) (pin 2))
      (node (ref J6) (pin 1))
      (node (ref D9) (pin 2))
      (node (ref D23) (pin 2))
      (node (ref D15) (pin 2))
      (node (ref D5) (pin 2))
      (node (ref D6) (pin 2))
      (node (ref D7) (pin 2))
      (node (ref D8) (pin 2))
      (node (ref U4) (pin 20))
      (node (ref U4) (pin 18))
      (node (ref D4) (pin 2))
      (node (ref D19) (pin 2))
      (node (ref D2) (pin 2))
      (node (ref D24) (pin 2))
      (node (ref J8) (pin 1))
      (node (ref J5) (pin 1))
      (node (ref J7) (pin 1))
      (node (ref J7) (pin 2))
      (node (ref D17) (pin 2))
      (node (ref D11) (pin 2))
      (node (ref C10) (pin 1))
      (node (ref D12) (pin 2))
      (node (ref D3) (pin 2))
      (node (ref D16) (pin 2))
      (node (ref D13) (pin 2))
      (node (ref D14) (pin 2))
      (node (ref D18) (pin 2))
      (node (ref LS1) (pin 2))
      (node (ref J3) (pin 1))
      (node (ref C28) (pin 2))
      (node (ref C27) (pin 2))
      (node (ref C9) (pin 1))
      (node (ref C26) (pin 2))
      (node (ref D10) (pin 2))
      (node (ref J1) (pin 1))
      (node (ref U5) (pin 3))
      (node (ref C32) (pin 1))
      (node (ref R24) (pin 1))
      (node (ref C25) (pin 2)))
    (net (code 46) (name /LED0)
      (node (ref RN1) (pin 8))
      (node (ref U3) (pin 3)))
    (net (code 47) (name /LED3)
      (node (ref RN1) (pin 5))
      (node (ref U3) (pin 38)))
    (net (code 48) (name /LED5)
      (node (ref U3) (pin 40))
      (node (ref RN2) (pin 7)))
    (net (code 49) (name /LED8)
      (node (ref U3) (pin 43))
      (node (ref RN3) (pin 8)))
    (net (code 50) (name /LED9)
      (node (ref RN3) (pin 7))
      (node (ref U3) (pin 44)))
    (net (code 51) (name /LED10)
      (node (ref RN3) (pin 6))
      (node (ref U3) (pin 45)))
    (net (code 52) (name /LED11)
      (node (ref RN3) (pin 5))
      (node (ref U3) (pin 46)))
    (net (code 53) (name "Net-(D24-Pad1)")
      (node (ref D24) (pin 1))
      (node (ref RN3) (pin 4)))
    (net (code 54) (name "Net-(D23-Pad1)")
      (node (ref RN3) (pin 3))
      (node (ref D23) (pin 1)))
    (net (code 55) (name "Net-(D21-Pad1)")
      (node (ref RN3) (pin 1))
      (node (ref D21) (pin 1)))
    (net (code 56) (name /LED4)
      (node (ref RN2) (pin 8))
      (node (ref U3) (pin 39)))
    (net (code 57) (name /LED6)
      (node (ref U3) (pin 41))
      (node (ref RN2) (pin 6)))
    (net (code 58) (name /LED7)
      (node (ref RN2) (pin 5))
      (node (ref U3) (pin 42)))
    (net (code 59) (name "Net-(D19-Pad1)")
      (node (ref D19) (pin 1))
      (node (ref RN2) (pin 3)))
    (net (code 60) (name "Net-(D22-Pad1)")
      (node (ref RN3) (pin 2))
      (node (ref D22) (pin 1)))
    (net (code 61) (name "Net-(TP44-Pad1)")
      (node (ref TP44) (pin 1))
      (node (ref U2) (pin 28)))
    (net (code 62) (name /HUB_NRST)
      (node (ref U3) (pin 30))
      (node (ref C30) (pin 2))
      (node (ref R11) (pin 1))
      (node (ref U4) (pin 17)))
    (net (code 63) (name "Net-(Q2-Pad2)")
      (node (ref R18) (pin 2))
      (node (ref R19) (pin 2))
      (node (ref R21) (pin 2))
      (node (ref R22) (pin 2))
      (node (ref Q2) (pin 2))
      (node (ref R23) (pin 2))
      (node (ref R20) (pin 2)))
    (net (code 64) (name "Net-(D14-Pad1)")
      (node (ref D14) (pin 1))
      (node (ref R22) (pin 1)))
    (net (code 65) (name "Net-(D13-Pad1)")
      (node (ref D13) (pin 1))
      (node (ref R21) (pin 1)))
    (net (code 66) (name "Net-(D12-Pad1)")
      (node (ref D12) (pin 1))
      (node (ref R20) (pin 1)))
    (net (code 67) (name "Net-(D11-Pad1)")
      (node (ref R19) (pin 1))
      (node (ref D11) (pin 1)))
    (net (code 68) (name "Net-(D15-Pad1)")
      (node (ref D15) (pin 1))
      (node (ref R23) (pin 1)))
    (net (code 69) (name "Net-(D9-Pad1)")
      (node (ref R17) (pin 1))
      (node (ref D9) (pin 1)))
    (net (code 70) (name "Net-(D8-Pad1)")
      (node (ref D8) (pin 1))
      (node (ref R16) (pin 1)))
    (net (code 71) (name "Net-(D7-Pad1)")
      (node (ref D7) (pin 1))
      (node (ref R15) (pin 1)))
    (net (code 72) (name "Net-(D6-Pad1)")
      (node (ref D6) (pin 1))
      (node (ref R14) (pin 1)))
    (net (code 73) (name "Net-(D5-Pad1)")
      (node (ref R13) (pin 1))
      (node (ref D5) (pin 1)))
    (net (code 74) (name /SECURE_IF_F4TX)
      (node (ref U2) (pin 13))
      (node (ref U3) (pin 25))
      (node (ref TP82) (pin 1)))
    (net (code 75) (name "Net-(TP39-Pad1)")
      (node (ref TP39) (pin 1))
      (node (ref U3) (pin 93)))
    (net (code 76) (name "Net-(TP5-Pad1)")
      (node (ref U3) (pin 67))
      (node (ref TP5) (pin 1)))
    (net (code 77) (name "Net-(TP14-Pad1)")
      (node (ref TP14) (pin 1))
      (node (ref U3) (pin 77)))
    (net (code 78) (name "Net-(TP24-Pad1)")
      (node (ref U3) (pin 36))
      (node (ref TP24) (pin 1)))
    (net (code 79) (name "Net-(TP28-Pad1)")
      (node (ref TP28) (pin 1))
      (node (ref U3) (pin 37)))
    (net (code 80) (name "Net-(TP31-Pad1)")
      (node (ref TP31) (pin 1))
      (node (ref U3) (pin 89)))
    (net (code 81) (name "Net-(TP33-Pad1)")
      (node (ref TP33) (pin 1))
      (node (ref U3) (pin 90)))
    (net (code 82) (name "Net-(TP35-Pad1)")
      (node (ref TP35) (pin 1))
      (node (ref U3) (pin 91)))
    (net (code 83) (name "Net-(TP37-Pad1)")
      (node (ref U3) (pin 92))
      (node (ref TP37) (pin 1)))
    (net (code 84) (name "Net-(TP3-Pad1)")
      (node (ref TP3) (pin 1))
      (node (ref U3) (pin 29)))
    (net (code 85) (name "Net-(TP41-Pad1)")
      (node (ref TP41) (pin 1))
      (node (ref U3) (pin 95)))
    (net (code 86) (name "Net-(TP43-Pad1)")
      (node (ref TP43) (pin 1))
      (node (ref U3) (pin 96)))
    (net (code 87) (name "Net-(TP49-Pad1)")
      (node (ref TP49) (pin 1))
      (node (ref U3) (pin 53)))
    (net (code 88) (name "Net-(TP58-Pad1)")
      (node (ref U3) (pin 18))
      (node (ref TP58) (pin 1)))
    (net (code 89) (name "Net-(TP56-Pad1)")
      (node (ref U3) (pin 17))
      (node (ref TP56) (pin 1)))
    (net (code 90) (name "Net-(TP54-Pad1)")
      (node (ref U3) (pin 16))
      (node (ref TP54) (pin 1)))
    (net (code 91) (name "Net-(TP52-Pad1)")
      (node (ref TP52) (pin 1))
      (node (ref U3) (pin 15)))
    (net (code 92) (name "Net-(TP47-Pad1)")
      (node (ref TP47) (pin 1))
      (node (ref U3) (pin 51)))
    (net (code 93) (name "Net-(TP48-Pad1)")
      (node (ref U3) (pin 52))
      (node (ref TP48) (pin 1)))
    (net (code 94) (name "Net-(TP50-Pad1)")
      (node (ref U3) (pin 54))
      (node (ref TP50) (pin 1)))
    (net (code 95) (name "Net-(TP46-Pad1)")
      (node (ref TP46) (pin 1))
      (node (ref U3) (pin 48)))
    (net (code 96) (name "Net-(TP1-Pad1)")
      (node (ref U3) (pin 23))
      (node (ref TP1) (pin 1)))
    (net (code 97) (name "Net-(TP2-Pad1)")
      (node (ref U3) (pin 24))
      (node (ref TP2) (pin 1)))
    (net (code 98) (name "Net-(TP30-Pad1)")
      (node (ref U2) (pin 29))
      (node (ref TP30) (pin 1)))
    (net (code 99) (name "Net-(TP4-Pad1)")
      (node (ref U2) (pin 2))
      (node (ref TP4) (pin 1)))
    (net (code 100) (name "Net-(TP9-Pad1)")
      (node (ref U2) (pin 10))
      (node (ref TP9) (pin 1)))
    (net (code 101) (name "Net-(TP11-Pad1)")
      (node (ref U2) (pin 11))
      (node (ref TP11) (pin 1)))
    (net (code 102) (name "Net-(TP16-Pad1)")
      (node (ref TP16) (pin 1))
      (node (ref U2) (pin 14)))
    (net (code 103) (name "Net-(TP18-Pad1)")
      (node (ref TP18) (pin 1))
      (node (ref U2) (pin 15)))
    (net (code 104) (name "Net-(TP22-Pad1)")
      (node (ref TP22) (pin 1))
      (node (ref U2) (pin 16)))
    (net (code 105) (name "Net-(TP26-Pad1)")
      (node (ref U2) (pin 17))
      (node (ref TP26) (pin 1)))
    (net (code 106) (name "Net-(TP45-Pad1)")
      (node (ref U2) (pin 38))
      (node (ref TP45) (pin 1)))
    (net (code 107) (name "Net-(TP6-Pad1)")
      (node (ref U2) (pin 3))
      (node (ref TP6) (pin 1)))
    (net (code 108) (name "Net-(TP7-Pad1)")
      (node (ref TP7) (pin 1))
      (node (ref U2) (pin 4)))
    (net (code 109) (name "Net-(TP20-Pad1)")
      (node (ref U3) (pin 35))
      (node (ref TP20) (pin 1)))
    (net (code 110) (name "Net-(TP60-Pad1)")
      (node (ref U3) (pin 33))
      (node (ref TP60) (pin 1)))
    (net (code 111) (name "Net-(TP79-Pad1)")
      (node (ref U3) (pin 61))
      (node (ref TP79) (pin 1)))
    (net (code 112) (name "Net-(TP19-Pad1)")
      (node (ref U3) (pin 97))
      (node (ref TP19) (pin 1)))
    (net (code 113) (name "Net-(TP23-Pad1)")
      (node (ref U3) (pin 98))
      (node (ref TP23) (pin 1)))
    (net (code 114) (name "Net-(TP27-Pad1)")
      (node (ref U3) (pin 1))
      (node (ref TP27) (pin 1)))
    (net (code 115) (name "Net-(TP80-Pad1)")
      (node (ref TP80) (pin 1))
      (node (ref U3) (pin 62)))
    (net (code 116) (name "Net-(TP73-Pad1)")
      (node (ref U3) (pin 58))
      (node (ref TP73) (pin 1)))
    (net (code 117) (name "Net-(TP75-Pad1)")
      (node (ref U3) (pin 59))
      (node (ref TP75) (pin 1)))
    (net (code 118) (name "Net-(TP77-Pad1)")
      (node (ref TP77) (pin 1))
      (node (ref U3) (pin 60)))
    (net (code 119) (name "Net-(TP71-Pad1)")
      (node (ref U3) (pin 57))
      (node (ref TP71) (pin 1)))
    (net (code 120) (name "Net-(TP63-Pad1)")
      (node (ref U3) (pin 87))
      (node (ref TP63) (pin 1)))
    (net (code 121) (name "Net-(TP65-Pad1)")
      (node (ref U3) (pin 88))
      (node (ref TP65) (pin 1)))
    (net (code 122) (name "Net-(TP70-Pad1)")
      (node (ref TP70) (pin 1))
      (node (ref U3) (pin 66)))
    (net (code 123) (name "Net-(TP78-Pad1)")
      (node (ref TP78) (pin 1))
      (node (ref U3) (pin 7)))
    (net (code 124) (name "Net-(TP76-Pad1)")
      (node (ref U3) (pin 80))
      (node (ref TP76) (pin 1)))
    (net (code 125) (name "Net-(TP74-Pad1)")
      (node (ref U3) (pin 79))
      (node (ref TP74) (pin 1)))
    (net (code 126) (name "Net-(TP72-Pad1)")
      (node (ref U3) (pin 78))
      (node (ref TP72) (pin 1)))
    (net (code 127) (name "Net-(TP64-Pad1)")
      (node (ref TP64) (pin 1))
      (node (ref U3) (pin 63)))
    (net (code 128) (name "Net-(TP66-Pad1)")
      (node (ref TP66) (pin 1))
      (node (ref U3) (pin 64)))
    (net (code 129) (name "Net-(TP68-Pad1)")
      (node (ref U3) (pin 65))
      (node (ref TP68) (pin 1)))
    (net (code 130) (name "Net-(TP62-Pad1)")
      (node (ref TP62) (pin 1))
      (node (ref U3) (pin 34)))
    (net (code 131) (name "Net-(TP57-Pad1)")
      (node (ref U3) (pin 84))
      (node (ref TP57) (pin 1)))
    (net (code 132) (name "Net-(TP67-Pad1)")
      (node (ref TP67) (pin 1))
      (node (ref U3) (pin 55)))
    (net (code 133) (name "Net-(TP69-Pad1)")
      (node (ref U3) (pin 56))
      (node (ref TP69) (pin 1)))
    (net (code 134) (name "Net-(TP61-Pad1)")
      (node (ref U3) (pin 86))
      (node (ref TP61) (pin 1)))
    (net (code 135) (name "Net-(TP53-Pad1)")
      (node (ref TP53) (pin 1))
      (node (ref U3) (pin 82)))
    (net (code 136) (name "Net-(TP55-Pad1)")
      (node (ref U3) (pin 83))
      (node (ref TP55) (pin 1)))
    (net (code 137) (name "Net-(TP59-Pad1)")
      (node (ref TP59) (pin 1))
      (node (ref U3) (pin 85)))
    (net (code 138) (name "Net-(TP51-Pad1)")
      (node (ref U3) (pin 81))
      (node (ref TP51) (pin 1)))
    (net (code 139) (name /DBGH_TX)
      (node (ref U3) (pin 68))
      (node (ref J3) (pin 4)))
    (net (code 140) (name /ALARM_LED_PINK)
      (node (ref Q2) (pin 1))
      (node (ref U3) (pin 32)))
    (net (code 141) (name /DBGH_RX)
      (node (ref J3) (pin 3))
      (node (ref U3) (pin 69)))
    (net (code 142) (name "Net-(C15-Pad1)")
      (node (ref U3) (pin 73))
      (node (ref C15) (pin 1)))
    (net (code 143) (name "Net-(C14-Pad1)")
      (node (ref C14) (pin 1))
      (node (ref U3) (pin 49)))
    (net (code 144) (name VSSA)
      (node (ref C8) (pin 2))
      (node (ref U3) (pin 20))
      (node (ref C7) (pin 1)))
    (net (code 145) (name "Net-(R5-Pad1)")
      (node (ref U3) (pin 21))
      (node (ref R5) (pin 1)))
    (net (code 146) (name VDDA)
      (node (ref R5) (pin 2))
      (node (ref U3) (pin 22))
      (node (ref R1) (pin 2))
      (node (ref C7) (pin 2))
      (node (ref C8) (pin 1)))
    (net (code 147) (name "Net-(BT1-Pad1)")
      (node (ref U3) (pin 6))
      (node (ref BT1) (pin 1)))
    (net (code 148) (name "Net-(C18-Pad2)")
      (node (ref C18) (pin 2))
      (node (ref R8) (pin 2))
      (node (ref Y2) (pin 3))
      (node (ref U3) (pin 13)))
    (net (code 149) (name "Net-(J6-Pad3)")
      (node (ref J6) (pin 3))
      (node (ref U4) (pin 11)))
    (net (code 150) (name "Net-(J6-Pad2)")
      (node (ref J6) (pin 2))
      (node (ref U4) (pin 10)))
    (net (code 151) (name "Net-(J1-Pad4)")
      (node (ref J1) (pin 4)))
    (net (code 152) (name "Net-(J1-Pad2)")
      (node (ref R9) (pin 1))
      (node (ref J1) (pin 2)))
    (net (code 153) (name "Net-(C17-Pad2)")
      (node (ref C17) (pin 2))
      (node (ref U3) (pin 12))
      (node (ref Y2) (pin 1))
      (node (ref R8) (pin 1)))
    (net (code 154) (name "Net-(J1-Pad3)")
      (node (ref R6) (pin 2))
      (node (ref R7) (pin 2))
      (node (ref J1) (pin 3)))
    (net (code 155) (name /USBH_DM)
      (node (ref U4) (pin 15))
      (node (ref U3) (pin 70)))
    (net (code 156) (name "Net-(J7-Pad10)")
      (node (ref J7) (pin 10)))
    (net (code 157) (name "Net-(J7-Pad9)")
      (node (ref J7) (pin 9)))
    (net (code 158) (name "Net-(J7-Pad6)")
      (node (ref J7) (pin 6))
      (node (ref U4) (pin 5)))
    (net (code 159) (name "Net-(J7-Pad5)")
      (node (ref U4) (pin 7))
      (node (ref J7) (pin 5)))
    (net (code 160) (name "Net-(J7-Pad4)")
      (node (ref U4) (pin 4))
      (node (ref J7) (pin 4)))
    (net (code 161) (name "Net-(D4-Pad1)")
      (node (ref D4) (pin 1))
      (node (ref R12) (pin 1)))
    (net (code 162) (name "Net-(Q1-Pad2)")
      (node (ref Q1) (pin 2))
      (node (ref R16) (pin 2))
      (node (ref R17) (pin 2))
      (node (ref R15) (pin 2))
      (node (ref R13) (pin 2))
      (node (ref R12) (pin 2))
      (node (ref R14) (pin 2)))
    (net (code 163) (name "Net-(J7-Pad3)")
      (node (ref J7) (pin 3))
      (node (ref U4) (pin 6)))
    (net (code 164) (name "Net-(R10-Pad1)")
      (node (ref U4) (pin 14))
      (node (ref R10) (pin 1)))
    (net (code 165) (name /3V3_HUB)
      (node (ref R11) (pin 2))
      (node (ref C23) (pin 2))
      (node (ref U4) (pin 26))
      (node (ref U4) (pin 21))
      (node (ref U4) (pin 13)))
    (net (code 166) (name "Net-(C20-Pad1)")
      (node (ref U4) (pin 2))
      (node (ref Y4) (pin 1))
      (node (ref C20) (pin 1)))
    (net (code 167) (name "Net-(C21-Pad1)")
      (node (ref U4) (pin 3))
      (node (ref Y4) (pin 3))
      (node (ref C21) (pin 1)))
    (net (code 168) (name "Net-(U4-Pad25)")
      (node (ref U4) (pin 25)))
    (net (code 169) (name /ALARM_LED_BLUE)
      (node (ref U3) (pin 31))
      (node (ref Q1) (pin 1)))
    (net (code 170) (name "Net-(D10-Pad1)")
      (node (ref R18) (pin 1))
      (node (ref D10) (pin 1)))
    (net (code 171) (name "Net-(LS1-Pad1)")
      (node (ref R24) (pin 2))
      (node (ref Q3) (pin 2))
      (node (ref LS1) (pin 1)))
    (net (code 172) (name /SWDIOH)
      (node (ref U3) (pin 72))
      (node (ref J2) (pin 4)))
    (net (code 173) (name /SWCLKH)
      (node (ref U3) (pin 76))
      (node (ref J2) (pin 2)))
    (net (code 174) (name "Net-(C24-Pad2)")
      (node (ref C24) (pin 2))
      (node (ref U4) (pin 28))
      (node (ref U4) (pin 12)))
    (net (code 175) (name "Net-(J8-Pad2)")
      (node (ref U4) (pin 8))
      (node (ref J8) (pin 2)))
    (net (code 176) (name "Net-(J8-Pad3)")
      (node (ref U4) (pin 9))
      (node (ref J8) (pin 3)))
    (net (code 177) (name "Net-(U4-Pad24)")
      (node (ref U4) (pin 24)))
    (net (code 178) (name "Net-(U4-Pad23)")
      (node (ref U4) (pin 23)))
    (net (code 179) (name "Net-(U4-Pad22)")
      (node (ref U4) (pin 22)))
    (net (code 180) (name /USBH_DP)
      (node (ref U3) (pin 71))
      (node (ref U4) (pin 16)))))