tao_z
2022-08-17 64cd8f0556f6bd3693cd05560358d4e31d4095f1
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
(kicad_sch (version 20211123) (generator eeschema)
 
  (uuid dd4cdae9-61d5-4ae5-a9f9-8c3abc0f0770)
 
  (paper "A4")
 
  (title_block
    (title "SX7H SHIFER MIAN SCH")
    (date "2022-07-18")
    (rev "V03")
    (company "宁波正朗汽车零部件有限公司")
    (comment 1 "批准:")
    (comment 2 "校准:")
    (comment 3 "设计:Ethan")
  )
 
  (lib_symbols
    (symbol "C_6" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.635 2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_6" (id 1) (at 0.635 -2.54 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Manufacturer Product Number" "" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Manufacturer" "" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Description" "" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "ki_keywords" "cap capacitor" (id 7) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor" (id 8) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 9) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_6_0_1"
        (polyline
          (pts
            (xy -2.032 -0.762)
            (xy 2.032 -0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 0.762)
            (xy 2.032 0.762)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_6_1_1"
        (pin passive line (at 0 3.81 270) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 2.794)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Connector:TestPoint_Small" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
      (property "Reference" "TP" (id 0) (at 0 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "TestPoint_Small" (id 1) (at 0 2.032 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 5.08 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 5.08 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "test point" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "TestPoint_Small_0_1"
        (circle (center 0 0) (radius 0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "TestPoint_Small_1_1"
        (pin passive line (at 0 0 90) (length 0)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:D_Schottky_Filled" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "D_Schottky_Filled" (id 1) (at 0 -2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "diode Schottky" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Schottky diode, filled shape" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "D_Schottky_Filled_0_1"
        (polyline
          (pts
            (xy 1.27 0)
            (xy -1.27 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 1.27)
            (xy 1.27 -1.27)
            (xy -1.27 0)
            (xy 1.27 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy -1.905 0.635)
            (xy -1.905 1.27)
            (xy -1.27 1.27)
            (xy -1.27 -1.27)
            (xy -0.635 -1.27)
            (xy -0.635 -0.635)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "D_Schottky_Filled_1_1"
        (pin passive line (at -3.81 0 0) (length 2.54)
          (name "K" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 2.54)
          (name "A" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:D_TVS_Dual_AAC" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "D" (id 0) (at 0 4.445 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "D_TVS_Dual_AAC" (id 1) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -3.81 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at -3.81 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "diode TVS thyrector" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Bidirectional dual transient-voltage-suppression diode, center on pin 3" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "D_TVS_Dual_AAC_0_0"
        (polyline
          (pts
            (xy 0 -1.27)
            (xy 0 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "D_TVS_Dual_AAC_0_1"
        (polyline
          (pts
            (xy -6.35 0)
            (xy 6.35 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.302 1.27)
            (xy -3.81 1.27)
            (xy -3.81 -1.27)
            (xy -4.318 -1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 4.318 1.27)
            (xy 3.81 1.27)
            (xy 3.81 -1.27)
            (xy 3.302 -1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -6.35 1.27)
            (xy -1.27 -1.27)
            (xy -1.27 1.27)
            (xy -6.35 -1.27)
            (xy -6.35 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 6.35 1.27)
            (xy 1.27 -1.27)
            (xy 1.27 1.27)
            (xy 6.35 -1.27)
            (xy 6.35 1.27)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 0 0) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "D_TVS_Dual_AAC_1_1"
        (pin passive line (at -8.89 0 0) (length 2.54)
          (name "A1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 8.89 0 180) (length 2.54)
          (name "A2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at 0 -3.81 90) (length 2.54)
          (name "common" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1" (pin_names hide) (in_bom yes) (on_board yes)
      (property "Reference" "Q" (id 0) (at 3.81 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1" (id 1) (at 3.81 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "transistor NPN" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Dual NPN/PNP bias resistor transistor, 6 pin package" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SC?70* SC?88* SOT*363*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1_0_1"
        (rectangle (start -6.35 0.508) (end -4.826 -0.508)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (rectangle (start -4.318 -2.286) (end -3.302 -0.762)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center -3.81 0) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (polyline
          (pts
            (xy -3.81 -0.762)
            (xy -3.81 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.762 0)
            (xy -4.826 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 1.524)
            (xy -0.635 -1.524)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -3.81 -2.286)
            (xy -3.81 -3.048)
            (xy 1.27 -3.048)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (circle (center 1.27 -3.048) (radius 0.254)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
      )
      (symbol "Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1_1_1"
        (polyline
          (pts
            (xy -0.635 0.635)
            (xy 1.27 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 -0.635)
            (xy 1.27 -2.54)
            (xy 1.27 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -1.778)
            (xy 0.508 -1.27)
            (xy 1.016 -2.286)
            (xy 0 -1.778)
            (xy 0 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 0 0) (radius 2.8194)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at 1.27 -5.08 90) (length 2.54)
          (name "E1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -8.89 0 0) (length 2.54)
          (name "B1" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 1.27 5.08 270) (length 2.54)
          (name "C1" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
      (symbol "Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1_2_1"
        (polyline
          (pts
            (xy -0.635 0.635)
            (xy 1.27 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -0.635 -0.635)
            (xy 1.27 -2.54)
            (xy 1.27 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.016 -1.778)
            (xy 0.508 -2.286)
            (xy 0 -1.27)
            (xy 1.016 -1.778)
            (xy 1.016 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 0 0) (radius 2.8194)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (pin passive line (at 1.27 5.08 270) (length 2.54)
          (name "C1" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 1.27 -5.08 90) (length 2.54)
          (name "E1" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -8.89 0 0) (length 2.54)
          (name "B1" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 2.032 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "R" (id 1) (at 0 0 90)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at -1.778 0 90)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "~" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Manufacturer" "" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Description" "" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Manufacturer Product Number" "" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "ki_keywords" "R res resistor" (id 7) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor" (id 8) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 9) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_0_1"
        (rectangle (start -1.016 -2.54) (end 1.016 2.54)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_1_1"
        (pin passive line (at 0 3.81 270) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -3.81 90) (length 1.27)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+12P" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "+12P" (id 1) (at 0 3.556 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"+12P\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+12P_0_1"
        (polyline
          (pts
            (xy -0.762 1.27)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 0)
            (xy 0 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 2.54)
            (xy 0.762 1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "+12P_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+12P" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
      (property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Value" "GND" (id 1) (at 0 -3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "" (id 2) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "GND_0_1"
        (polyline
          (pts
            (xy 0 0)
            (xy 0 -1.27)
            (xy 1.27 -1.27)
            (xy 0 -2.54)
            (xy -1.27 -1.27)
            (xy 0 -1.27)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "GND_1_1"
        (pin power_in line (at 0 0 270) (length 0) hide
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
      )
    )
  )
 
  (junction (at 232.41 54.61) (diameter 0) (color 0 0 0 0)
    (uuid 117b8cf8-9cfc-4fcf-807b-fcc5fb20a42c)
  )
  (junction (at 241.6842 74.93) (diameter 0) (color 0 0 0 0)
    (uuid 1613aea2-74ff-456a-8f58-2ae446640750)
  )
  (junction (at 225.9339 74.93) (diameter 0) (color 0 0 0 0)
    (uuid 180fba07-c0c0-4f64-90a2-3816273fa629)
  )
  (junction (at 162.56 54.61) (diameter 0) (color 0 0 0 0)
    (uuid 27ab07ca-24f6-4b98-9e32-937f5364edd2)
  )
  (junction (at 240.03 31.75) (diameter 0) (color 0 0 0 0)
    (uuid 2a134ab3-6275-4421-945b-c8f4bea31494)
  )
  (junction (at 241.3 74.93) (diameter 0) (color 0 0 0 0)
    (uuid 2c9edacb-2cf9-41c9-be25-bfd309f36b3a)
  )
  (junction (at 224.79 31.75) (diameter 0) (color 0 0 0 0)
    (uuid 2f8c28a2-0ac7-4d6c-a90e-f8c0b0611766)
  )
  (junction (at 167.64 73.66) (diameter 0) (color 0 0 0 0)
    (uuid 3b61ba43-a744-4e60-91dd-12af0722c056)
  )
  (junction (at 229.87 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 58f0812e-e603-4eec-b32d-86d2c4940155)
  )
  (junction (at 152.4 73.66) (diameter 0) (color 0 0 0 0)
    (uuid 6452a69c-6144-4173-a659-c0a8237f65cb)
  )
  (junction (at 245.11 114.3) (diameter 0) (color 0 0 0 0)
    (uuid 72745e37-6398-4523-a0b8-fcae44c9df22)
  )
  (junction (at 160.02 96.52) (diameter 0) (color 0 0 0 0)
    (uuid 79cb8c11-b1cf-43c7-a62f-48509fedf1ce)
  )
  (junction (at 149.86 31.75) (diameter 0) (color 0 0 0 0)
    (uuid 9d342646-7238-4fde-879e-495d5738badd)
  )
  (junction (at 165.1 31.75) (diameter 0) (color 0 0 0 0)
    (uuid a060e16f-f275-448b-8fa2-1c2b832ead39)
  )
  (junction (at 234.95 97.79) (diameter 0) (color 0 0 0 0)
    (uuid a0669899-5470-43ea-a529-f6722444bf9b)
  )
  (junction (at 236.0066 137.16) (diameter 0) (color 0 0 0 0)
    (uuid c2fd4927-8431-4c85-b75d-1336c8306cc2)
  )
  (junction (at 161.29 31.75) (diameter 0) (color 0 0 0 0)
    (uuid e1ff5e2a-fd55-49d3-8761-72919b9c635b)
  )
 
  (wire (pts (xy 101.6 71.12) (xy 101.6 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0589dbaf-56b9-4c08-89e4-cadf0529d123)
  )
  (wire (pts (xy 255.27 142.24) (xy 255.27 143.51))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 088bb7c2-5c2b-4ced-8168-eea7d3f3933d)
  )
  (wire (pts (xy 163.83 73.66) (xy 167.64 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1421d0a0-53a6-4967-9d8d-552612efc758)
  )
  (wire (pts (xy 256.54 74.93) (xy 262.89 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1fa3ce28-eedf-4534-9ef1-29ebb98a6fde)
  )
  (wire (pts (xy 236.22 31.75) (xy 240.03 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2c7bc92a-58f4-4b3a-81e5-cff1971e03c9)
  )
  (wire (pts (xy 240.03 31.75) (xy 245.11 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2c7bc92a-58f4-4b3a-81e5-cff1971e03ca)
  )
  (wire (pts (xy 229.87 114.3) (xy 233.68 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e2bff18-e236-4d53-97a4-7a3233fcc87d)
  )
  (wire (pts (xy 182.88 73.66) (xy 189.23 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 34dd4408-28d0-4670-9ff7-610765e1f974)
  )
  (wire (pts (xy 101.6 49.53) (xy 110.49 49.53))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 430cc2aa-2b46-47d4-8348-3ae348d6ffef)
  )
  (wire (pts (xy 241.3 74.93) (xy 241.6842 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 439726b2-5485-4641-93db-91cabc902867)
  )
  (wire (pts (xy 260.35 114.3) (xy 266.7 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 480589bd-208c-45dd-ae39-bed2ed7ff385)
  )
  (wire (pts (xy 101.6 31.75) (xy 110.49 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 5748f259-010a-4d97-8dee-bfc3eb4cece8)
  )
  (wire (pts (xy 149.86 31.75) (xy 153.67 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 57feb2ca-b6af-47f8-a655-18e5229804fa)
  )
  (wire (pts (xy 241.3 114.3) (xy 245.11 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6578b51e-0055-4149-a6c1-11a92f5555aa)
  )
  (wire (pts (xy 245.11 114.3) (xy 250.19 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6578b51e-0055-4149-a6c1-11a92f5555ab)
  )
  (wire (pts (xy 175.26 59.69) (xy 175.26 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 65b4479a-8088-48a4-8d0d-f905669c7385)
  )
  (wire (pts (xy 161.29 31.75) (xy 165.1 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 699c0885-8e99-407b-a800-7b6209cba33c)
  )
  (wire (pts (xy 165.1 31.75) (xy 170.18 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 699c0885-8e99-407b-a800-7b6209cba33d)
  )
  (wire (pts (xy 223.52 97.79) (xy 234.95 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6d74af88-f3d3-4dd2-a814-711400045e4a)
  )
  (wire (pts (xy 234.95 97.79) (xy 241.3 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6d74af88-f3d3-4dd2-a814-711400045e4b)
  )
  (wire (pts (xy 241.6842 74.93) (xy 246.38 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6f36e151-ac3f-405d-899f-c6b5a1ee3c11)
  )
  (wire (pts (xy 147.32 31.75) (xy 149.86 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6f4031ed-cca2-4281-8c1c-8b3e3dde1b39)
  )
  (wire (pts (xy 149.86 96.52) (xy 160.02 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 72046a53-9280-4527-8809-3e32fc0f4f0f)
  )
  (wire (pts (xy 160.02 96.52) (xy 167.64 96.52))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 72046a53-9280-4527-8809-3e32fc0f4f10)
  )
  (wire (pts (xy 101.6 53.34) (xy 110.49 53.34))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7cccb340-8908-4f03-b2ef-47a177b89eeb)
  )
  (wire (pts (xy 227.33 137.16) (xy 236.0066 137.16))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8cee565b-6f77-4e38-bb0d-fab5c9336e6b)
  )
  (wire (pts (xy 236.0066 137.16) (xy 245.11 137.16))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8cee565b-6f77-4e38-bb0d-fab5c9336e6c)
  )
  (wire (pts (xy 223.52 74.93) (xy 225.9339 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9ac7b28c-e02c-4e12-8eeb-bd00b037a328)
  )
  (wire (pts (xy 177.8 101.6) (xy 177.8 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9e9240f2-7839-402d-89f3-ef249dbc2890)
  )
  (wire (pts (xy 101.6 73.66) (xy 110.49 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b1d4521f-1ad4-477e-a90b-9b90c67f9fb2)
  )
  (wire (pts (xy 250.19 59.69) (xy 250.19 60.96))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b9d03e7d-77f5-444a-8eae-3326c06bbe8a)
  )
  (wire (pts (xy 251.46 102.87) (xy 251.46 104.14))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bb22d57e-3c8c-426a-aa62-d05504cd4a04)
  )
  (wire (pts (xy 101.6 95.25) (xy 110.49 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bdd1e199-d750-4eda-aa1c-00610088fb4f)
  )
  (wire (pts (xy 237.49 74.93) (xy 241.3 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c82ad342-4bc6-4f65-a423-8e93d9c1a865)
  )
  (wire (pts (xy 255.27 31.75) (xy 261.62 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cae8e7db-dbbc-4952-b392-780d9fd4ed6c)
  )
  (wire (pts (xy 224.79 31.75) (xy 228.6 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d5fe9eb5-3bd6-42ab-981a-c51a7a022389)
  )
  (wire (pts (xy 225.9339 74.93) (xy 229.87 74.93))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ddd844cc-8ed5-4207-a330-213efed44449)
  )
  (wire (pts (xy 167.64 73.66) (xy 172.72 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ddfa5acc-376b-4bc2-b655-7e75d6551246)
  )
  (wire (pts (xy 222.25 31.75) (xy 224.79 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid de02b29d-7886-416d-baf2-b367d1bcf3f2)
  )
  (wire (pts (xy 147.32 54.61) (xy 162.56 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid df8a5252-3267-4beb-a12c-02ae6815d824)
  )
  (wire (pts (xy 162.56 54.61) (xy 165.1 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid df8a5252-3267-4beb-a12c-02ae6815d825)
  )
  (wire (pts (xy 149.86 73.66) (xy 152.4 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e27aaf98-34f1-4d96-b458-de5804d2a593)
  )
  (wire (pts (xy 152.4 73.66) (xy 156.21 73.66))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e2997b37-b06a-4244-87ee-abc68b0440bd)
  )
  (wire (pts (xy 222.25 54.61) (xy 232.41 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e59e113c-b9a0-40e4-85dc-c66dd287aa55)
  )
  (wire (pts (xy 232.41 54.61) (xy 240.03 54.61))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e59e113c-b9a0-40e4-85dc-c66dd287aa56)
  )
  (wire (pts (xy 227.33 114.3) (xy 229.87 114.3))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e79301ee-bee9-458b-83c3-3bb6a3471b10)
  )
  (wire (pts (xy 180.34 31.75) (xy 186.69 31.75))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid efd54767-db7d-4853-bb07-a9b90391eb6a)
  )
  (wire (pts (xy 101.6 77.47) (xy 110.49 77.47))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f9273ca7-f927-44fd-8f2e-645b06fcce84)
  )
 
  (label "N_LED_O" (at 102.87 31.75 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 075323a8-7d6d-428b-a664-fbbfc94b126e)
  )
  (label "N_LED_O" (at 229.87 114.3 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 2b686d4d-c010-47ba-a218-33eb21cd2c40)
  )
  (label "D_LED_O" (at 224.79 31.75 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 2f2dc7f8-6d7e-47a8-8163-ab4b07346741)
  )
  (label "R_LED_O" (at 102.87 53.34 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 318b4f7d-bd9d-449c-860a-7e2580e1a83e)
  )
  (label "M_LED_O" (at 152.4 73.66 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 406a7b74-5048-47aa-ba3a-3c8f3f523d71)
  )
  (label "D_LED_O" (at 104.14 77.47 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 623f0f5b-32a8-44ed-b695-f00107032cb2)
  )
  (label "D_LED_O" (at 104.14 95.25 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 649b57bc-bfac-43ff-91ff-fa8fe5b0fdae)
  )
  (label "P_LED_O" (at 149.86 31.75 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid a143151c-359b-4d69-999a-7826efd1c3e4)
  )
  (label "M_LED_O" (at 104.14 73.66 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid d691a990-de24-4189-8c42-b70831bfb820)
  )
  (label "P_LED_O" (at 102.87 49.53 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid faf734a2-e1f1-41e7-885e-12f7e612e0a6)
  )
  (label "R_LED_O" (at 226.06 74.93 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid faf756ce-9577-422c-b8eb-c396db4898b6)
  )
 
  (hierarchical_label "N_LED_OH" (shape input) (at 227.33 114.3 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 16ef5c62-22c5-49bc-9f5f-19cdcf1a5236)
  )
  (hierarchical_label "P_LED_C" (shape input) (at 147.32 54.61 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 176d7e20-4708-4c78-b2fe-bfb000819206)
  )
  (hierarchical_label "M_LED_C" (shape input) (at 149.86 96.52 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 19ad5071-412d-4a41-a2c7-58937c706b49)
  )
  (hierarchical_label "Paddle-_AI" (shape input) (at 118.11 74.93 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 36a875b6-be0a-4450-8924-6177c438c5fa)
  )
  (hierarchical_label "M_LED_OH" (shape input) (at 149.86 73.66 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 4045d1c2-a414-4d39-b81b-44db33622970)
  )
  (hierarchical_label "Paddle+_AI" (shape input) (at 118.11 34.29 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 646f03b0-63c1-42d9-baf1-99932a1b3790)
  )
  (hierarchical_label "D_LED_C" (shape input) (at 222.25 54.61 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 7f25bb5f-70f7-4332-9109-8c064448a86f)
  )
  (hierarchical_label "R_LED_OH" (shape input) (at 223.52 74.93 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid 99596f46-34ee-42bd-8365-794bee112a8e)
  )
  (hierarchical_label "N_LED_C" (shape input) (at 227.33 137.16 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid b9c02dec-6c29-4197-bd05-eb81cb931a88)
  )
  (hierarchical_label "R_LED_C" (shape input) (at 223.52 97.79 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid c3fb0a3c-f0fb-488b-9abe-d3df00b1f08f)
  )
  (hierarchical_label "D_LED_OH" (shape input) (at 222.25 31.75 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid d1232b3c-b64a-459e-9fef-07480ccf99fc)
  )
  (hierarchical_label "P_LED_OH" (shape input) (at 147.32 31.75 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid ed3422a6-a3f8-4b1f-a6a5-bd7c9a442aea)
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 176.53 96.52 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0051c27b-c5ec-4a7b-8127-15e1057aa525)
    (property "Reference" "Q104" (id 0) (at 180.1113 95.6115 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "PUMD3,115" (id 1) (at 180.1113 98.3866 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 176.53 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 176.53 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 176.53 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 176.53 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 176.53 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 176.53 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 66985310-6812-4e6e-a8a4-8ba24d9c17eb))
    (pin "2" (uuid 49972c4f-cf91-4a3f-8136-a023025e285f))
    (pin "6" (uuid 0f74110e-e2d8-45ed-86e3-41e8ba1f0ee4))
    (pin "3" (uuid 7f2dd061-127d-4ae6-a908-90177fd608bd))
    (pin "4" (uuid 66beca7a-bd90-4fcd-8ef7-05143abd7f3b))
    (pin "5" (uuid 70889223-368e-4231-9c45-87497b32ce1a))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 255.27 115.57 90) (unit 2)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 01f94654-08d7-4652-8cfa-a116e078a3d5)
    (property "Reference" "Q107" (id 0) (at 255.27 108.784 90))
    (property "Value" "PUMD3,115" (id 1) (at 255.27 111.5591 90))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 255.27 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 255.27 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 255.27 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 255.27 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 255.27 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 255.27 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f7fd05d7-04be-45ca-8836-cd1b681af03b))
    (pin "2" (uuid 52be7f3c-5cb3-4b8b-bff1-3922edd77412))
    (pin "6" (uuid be1cbacc-bb77-4b89-a12b-268f8bfdd126))
    (pin "3" (uuid 4123499c-31af-44b3-bece-c9ecd8b47b77))
    (pin "4" (uuid 689e76d3-a14d-493b-a861-496a445f201e))
    (pin "5" (uuid 23b78d56-4e36-469b-b163-cb213d5acf2a))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 229.87 114.3 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 087facb6-8f6b-4b1b-a115-9dc2f0ab20d3)
    (property "Reference" "TP79" (id 0) (at 228.473 112.239 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 229.87 116.332 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 224.79 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 224.79 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5989bb98-c682-458d-9160-11cac0802312))
  )
 
  (symbol (lib_id "power:+12P") (at 266.7 114.3 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 09d6f107-d181-4402-ac93-4ec52ed3246c)
    (property "Reference" "#PWR0175" (id 0) (at 262.89 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+12P" (id 1) (at 269.8749 114.779 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 266.7 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 266.7 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b1cb8b89-0813-4584-b89d-fa802a96d9d2))
  )
 
  (symbol (lib_id "Device:R") (at 157.48 31.75 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 0a5c61cf-8c58-4a04-8502-ed37593c7297)
    (property "Reference" "R143" (id 0) (at 157.48 26.7675 90))
    (property "Value" "100R" (id 1) (at 157.48 29.5426 90))
    (property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 157.48 33.528 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 157.48 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "RESI(开步睿思)" (id 4) (at 157.48 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "RES 100R 1% 1/4W 1206" (id 5) (at 157.48 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AECR1206F100RK9" (id 6) (at 157.48 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "RES 100R 1% 1/4W 1206" (id 7) (at 157.48 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cb6985ba-59a9-4498-988f-5aeef8c436bc))
    (pin "2" (uuid a30cea6d-8220-4701-af2e-eedbfc463980))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 236.0066 137.16 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 0cb208d3-9eb8-4a80-a643-bf19447638d6)
    (property "Reference" "TP82" (id 0) (at 234.6096 138.909 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 236.0066 139.192 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 230.9266 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 230.9266 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 010a3b3b-2e0e-4416-88bd-b79039257a71))
  )
 
  (symbol (lib_id "power:GND") (at 245.11 121.92 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 0dd3e991-25ee-48c6-9e0f-db36f4378d61)
    (property "Reference" "#PWR0169" (id 0) (at 245.11 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 245.11 125.73 0))
    (property "Footprint" "" (id 2) (at 245.11 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 245.11 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 50d3e405-e19f-4087-b5db-543ebbc25da2))
  )
 
  (symbol (lib_id "power:GND") (at 251.46 104.14 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 11ba094c-a6b7-4186-bd06-fc4d1717e9af)
    (property "Reference" "#PWR0171" (id 0) (at 251.46 110.49 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 251.46 108.7024 0))
    (property "Footprint" "" (id 2) (at 251.46 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 251.46 104.14 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3fd68735-5d7c-453a-bbb0-6983cdd4cb53))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 173.99 54.61 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 19e7f892-5e1a-49d2-86f6-f5eb70a6cec8)
    (property "Reference" "Q103" (id 0) (at 177.5713 53.7015 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "PUMD3,115" (id 1) (at 177.5713 56.4766 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 173.99 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 173.99 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 173.99 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 173.99 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 173.99 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 173.99 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 83648b66-446a-47e9-99c7-4c4919da52ba))
    (pin "2" (uuid 97d81432-5bbe-47b2-81e1-bc15f9cf7bb9))
    (pin "6" (uuid db805749-dd02-4a06-b19f-94e58f54bf5b))
    (pin "3" (uuid 2f8c0642-7f87-4f29-b04d-988df0064f0c))
    (pin "4" (uuid cd366970-5706-4231-b7f8-d6402ef2c4df))
    (pin "5" (uuid 827b1e89-cc45-42f9-b774-0df61baa56f6))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 225.9339 74.93 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 20e0ab30-c7a8-407a-9421-615d34248087)
    (property "Reference" "TP78" (id 0) (at 224.5369 72.869 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 225.9339 76.962 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 220.8539 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 220.8539 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid abb90020-4d33-44a9-b04b-2627ad8b827e))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 251.46 76.2 90) (unit 2)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 244bcdf3-cb1e-4418-9865-8a7e785a6b1a)
    (property "Reference" "Q106" (id 0) (at 251.46 69.414 90))
    (property "Value" "PUMD3,115" (id 1) (at 251.46 72.1891 90))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 251.46 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 251.46 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 251.46 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 251.46 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 251.46 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 251.46 76.2 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 88f1171c-1512-4bb7-a88a-6d8572562874))
    (pin "2" (uuid 2de17352-976d-4794-915f-c8695906834e))
    (pin "6" (uuid fa8ecc10-a186-4897-bc31-fde1d0841e46))
    (pin "3" (uuid f3e9cd82-0cbc-4f48-bfdc-1ccec8dd04a2))
    (pin "4" (uuid eeeeee71-6564-44da-a8ac-daff58d88658))
    (pin "5" (uuid d427a182-6209-4ff6-8848-4db9a1c7964a))
  )
 
  (symbol (lib_id "power:GND") (at 97.79 40.64 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 337eb52b-5d08-4cbc-9382-c1fb484030da)
    (property "Reference" "#PWR06" (id 0) (at 91.44 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 99.06 40.6399 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 97.79 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 97.79 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e7ca301e-331d-4c20-93b2-f4a9a82fe78d))
  )
 
  (symbol (lib_name "C_6") (lib_id "Device:C") (at 245.11 118.11 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 354383b7-677c-422c-a267-bce9e97516b2)
    (property "Reference" "C143" (id 0) (at 237.49 118.11 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nF{slash}100V" (id 1) (at 232.41 121.92 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 246.0752 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 245.11 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AC0603KRX7R0BB473" (id 4) (at 245.11 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "YAGEO" (id 5) (at 245.11 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CAP CER 47nF 100V X7R 0603" (id 6) (at 245.11 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CAP CER 47nF 100V X7R 0603" (id 7) (at 245.11 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b911b1db-efcc-411b-8aec-337dcddaf8ef))
    (pin "2" (uuid bddf4c38-be0a-47ef-903e-df61c0117b26))
  )
 
  (symbol (lib_id "power:GND") (at 167.64 81.28 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 3f8da623-5abf-4266-8afd-38865bd7b73a)
    (property "Reference" "#PWR0162" (id 0) (at 167.64 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 167.64 85.09 0))
    (property "Footprint" "" (id 2) (at 167.64 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 167.64 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9c8777f1-4265-4d32-9a38-8742bcf5becf))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 254 137.16 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 407aa0f4-bd39-43d0-80aa-972ec5916551)
    (property "Reference" "Q107" (id 0) (at 257.5813 136.2515 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "PUMD3,115" (id 1) (at 257.5813 139.0266 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 254 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 254 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 254 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 254 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 254 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 254 137.16 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1f63c592-22b3-4117-b20e-f2549adbacb4))
    (pin "2" (uuid 50a1c3b6-6b77-4869-a53f-e1c8bbc7d2e4))
    (pin "6" (uuid 531e8d05-e22a-4314-8c96-2f3dbb9959ba))
    (pin "3" (uuid ef0af804-d303-4dc6-a7ef-043871d6f23a))
    (pin "4" (uuid c48e5487-cb22-4c04-a52e-78630d9ec52b))
    (pin "5" (uuid 9f54d31d-430c-4095-b6c2-e625b85c0db7))
  )
 
  (symbol (lib_id "Device:D_Schottky_Filled") (at 177.8 87.63 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 47c66f6a-d3ed-4486-b792-f41184e36847)
    (property "Reference" "D7" (id 0) (at 180.34 86.6774 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BAS316" (id 1) (at 179.07 90.17 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 177.8 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 177.8 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "DIODE 100V 200mA 6ns SOD323" (id 4) (at 177.8 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia(安世)" (id 5) (at 177.8 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "BAS316,115" (id 6) (at 177.8 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid e39dc52d-36db-4514-abe9-326712d94b2b))
    (pin "2" (uuid 5b0aa4a6-f69a-4bdc-815b-217dba32eb24))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 234.95 97.79 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 48ab4ed6-be4a-4811-8d3e-1a50189119dd)
    (property "Reference" "TP81" (id 0) (at 233.553 99.539 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 234.95 99.822 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 229.87 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 229.87 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 66f815a8-dc57-4e84-be33-6624bc870852))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 160.02 96.52 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 4d966b6a-2df3-4011-9e7b-6a44ef668c34)
    (property "Reference" "TP71" (id 0) (at 159.893 98.269 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 160.02 98.552 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 154.94 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 154.94 96.52 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6ef1c276-1660-4078-9f71-b654b424e220))
  )
 
  (symbol (lib_id "Device:D_Schottky_Filled") (at 250.19 45.72 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5255f862-1b7c-4e10-9e68-0e1a32bd0fd9)
    (property "Reference" "D10" (id 0) (at 252.73 44.7674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BAS316" (id 1) (at 251.46 48.26 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 250.19 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 250.19 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "DIODE 100V 200mA 6ns SOD323" (id 4) (at 250.19 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia(安世)" (id 5) (at 250.19 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "BAS316,115" (id 6) (at 250.19 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ed7051e9-7772-4162-8c12-8aa0c4eb70e3))
    (pin "2" (uuid 567404cc-5037-49e1-ac75-8da02261efde))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 240.03 31.75 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 52b2fd62-1523-4526-81c5-31fd3125de1e)
    (property "Reference" "TP83" (id 0) (at 238.633 29.689 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 240.03 33.782 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 234.95 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 234.95 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2bf39772-969e-4e13-bb16-07965fbffc35))
  )
 
  (symbol (lib_id "Device:D_TVS_Dual_AAC") (at 101.6 86.36 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 535f1748-f1fd-44f0-9260-0607aa8fde13)
    (property "Reference" "D8" (id 0) (at 104.14 85.0899 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "ESDA25L" (id 1) (at 104.14 87.6299 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 101.6 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 101.6 90.17 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TVS DIODE 24VWM SOT23-3" (id 4) (at 101.6 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "BORN(伯恩半导体)" (id 5) (at 101.6 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" " ESDA25L" (id 6) (at 101.6 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6b6d8de1-a198-4eb7-82e3-a49e788cacef))
    (pin "2" (uuid eb50f4f4-291d-4a43-a409-1798c0057afe))
    (pin "3" (uuid 1707591c-4546-4da5-bc1c-9f768f2f509d))
  )
 
  (symbol (lib_id "power:+12P") (at 261.62 31.75 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5a052929-c727-46cf-a562-34c92c5271a7)
    (property "Reference" "#PWR0173" (id 0) (at 257.81 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+12P" (id 1) (at 264.7949 32.229 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 261.62 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 261.62 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a03b54ca-733d-4fad-b12c-991a33c0dcfb))
  )
 
  (symbol (lib_id "Device:R") (at 237.49 114.3 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 5e7d3dfc-9afb-4c90-95e8-699727f76d50)
    (property "Reference" "R147" (id 0) (at 237.49 109.3175 90))
    (property "Value" "100R" (id 1) (at 237.49 112.0926 90))
    (property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 237.49 116.078 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 237.49 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "RESI(开步睿思)" (id 4) (at 237.49 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "RES 100R 1% 1/4W 1206" (id 5) (at 237.49 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AECR1206F100RK9" (id 6) (at 237.49 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "RES 100R 1% 1/4W 1206" (id 7) (at 237.49 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d2f1f655-a55b-4239-9d7a-31f85c4389e4))
    (pin "2" (uuid 7e38d3ce-93ec-4653-9a83-151b03f9368f))
  )
 
  (symbol (lib_id "power:GND") (at 161.29 39.37 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 5e7e3bdf-092d-47fb-9c87-5224c95e8f69)
    (property "Reference" "#PWR0161" (id 0) (at 161.29 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 161.29 44.45 0))
    (property "Footprint" "" (id 2) (at 161.29 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 161.29 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid d18d1806-7377-4bbb-982c-9b826292368c))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 167.64 73.66 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 61c52056-f6a3-476e-9a52-e8248809f97f)
    (property "Reference" "TP74" (id 0) (at 166.243 71.599 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 167.64 75.692 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 162.56 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 162.56 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 557c9512-85cc-4d56-b116-fc8f091c9344))
  )
 
  (symbol (lib_id "Device:D_Schottky_Filled") (at 255.27 128.27 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 62a3dbfb-d085-478d-91b9-e59575db0126)
    (property "Reference" "D12" (id 0) (at 257.81 127.3174 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BAS316" (id 1) (at 256.54 130.81 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 255.27 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 255.27 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "DIODE 100V 200mA 6ns SOD323" (id 4) (at 255.27 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia(安世)" (id 5) (at 255.27 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "BAS316,115" (id 6) (at 255.27 128.27 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3f83540f-cfa5-4ff2-92be-62f9274dddbc))
    (pin "2" (uuid ad280127-cff6-484d-a27d-e1c23d498ff2))
  )
 
  (symbol (lib_id "Device:D_TVS_Dual_AAC") (at 101.6 62.23 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 634e2edf-9e99-4dee-b4bb-b66fae286dd5)
    (property "Reference" "D9" (id 0) (at 104.14 60.9599 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "ESDA25L" (id 1) (at 104.14 63.4999 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 101.6 66.04 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 101.6 66.04 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TVS DIODE 24VWM SOT23-3" (id 4) (at 101.6 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "BORN(伯恩半导体)" (id 5) (at 101.6 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" " ESDA25L" (id 6) (at 101.6 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1285cece-c2fc-4117-b4f4-9eb17b0000c7))
    (pin "2" (uuid f4d52796-9990-4f7e-a717-69c2e17f08e1))
    (pin "3" (uuid 1d709db3-944e-49da-9e7a-adc76d346b25))
  )
 
  (symbol (lib_id "Device:D_Schottky_Filled") (at 251.46 88.9 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 6771f39d-da91-40c4-8ded-810f47f2dbca)
    (property "Reference" "D11" (id 0) (at 254 87.9474 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BAS316" (id 1) (at 252.73 91.44 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 251.46 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 251.46 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "DIODE 100V 200mA 6ns SOD323" (id 4) (at 251.46 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia(安世)" (id 5) (at 251.46 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "BAS316,115" (id 6) (at 251.46 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1cc2d805-3c23-4305-bac4-0f004b425511))
    (pin "2" (uuid 8809fdae-967d-4bc1-badf-ac5b94713b1f))
  )
 
  (symbol (lib_id "power:GND") (at 255.27 143.51 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 753297c8-d00d-4dfa-b8f8-b6ee93937d77)
    (property "Reference" "#PWR0172" (id 0) (at 255.27 149.86 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 255.27 148.0724 0))
    (property "Footprint" "" (id 2) (at 255.27 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 255.27 143.51 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a723adb6-cf58-4193-9dc0-b538f125d245))
  )
 
  (symbol (lib_id "power:GND") (at 250.19 60.96 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 75e7bf71-dd24-4e68-b245-37652527b34c)
    (property "Reference" "#PWR0170" (id 0) (at 250.19 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 250.19 65.5224 0))
    (property "Footprint" "" (id 2) (at 250.19 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 250.19 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5c96fd3b-f68c-4448-bfbc-f774375b40f2))
  )
 
  (symbol (lib_id "Device:R") (at 233.68 74.93 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 770eb11f-feb5-475d-a370-dd813eded366)
    (property "Reference" "R146" (id 0) (at 233.68 69.9475 90))
    (property "Value" "100R" (id 1) (at 233.68 72.7226 90))
    (property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 233.68 76.708 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 233.68 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "RESI(开步睿思)" (id 4) (at 233.68 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "RES 100R 1% 1/4W 1206" (id 5) (at 233.68 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AECR1206F100RK9" (id 6) (at 233.68 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "RES 100R 1% 1/4W 1206" (id 7) (at 233.68 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a1995db5-befb-426f-aebe-5be738511362))
    (pin "2" (uuid dcaf1c43-44e1-4b99-ba39-2ff6f4f68f8e))
  )
 
  (symbol (lib_id "power:GND") (at 241.3 82.55 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 7ce949db-e0e0-4e7d-af6e-c9ddb5ad7516)
    (property "Reference" "#PWR0168" (id 0) (at 241.3 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 241.3 86.36 0))
    (property "Footprint" "" (id 2) (at 241.3 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 241.3 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b9fab644-fabf-469a-9520-b27a6cc14ed6))
  )
 
  (symbol (lib_id "power:GND") (at 240.03 39.37 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 8d9b0102-58bf-4d4d-8062-c158180ac9f6)
    (property "Reference" "#PWR0167" (id 0) (at 240.03 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 240.03 43.9324 0))
    (property "Footprint" "" (id 2) (at 240.03 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 240.03 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7b33a8d9-de2b-4360-b90e-27f343d81ef6))
  )
 
  (symbol (lib_id "Device:R") (at 160.02 73.66 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 90baa3fa-a3f6-4cfc-be71-d86fc47f1706)
    (property "Reference" "R144" (id 0) (at 160.02 68.6775 90))
    (property "Value" "100R" (id 1) (at 160.02 71.4526 90))
    (property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 160.02 75.438 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 160.02 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "RESI(开步睿思)" (id 4) (at 160.02 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "RES 100R 1% 1/4W 1206" (id 5) (at 160.02 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AECR1206F100RK9" (id 6) (at 160.02 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "RES 100R 1% 1/4W 1206" (id 7) (at 160.02 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4e3724e7-8875-456c-8dd2-a0cae0a349cc))
    (pin "2" (uuid a4d90654-6132-4a3d-baf4-26521472923b))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 232.41 54.61 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 93369f53-a83c-4ddd-9013-fa4ad9d579e2)
    (property "Reference" "TP80" (id 0) (at 232.283 56.359 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 232.41 56.642 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 227.33 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 227.33 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1f53be8f-248b-48a5-b3d3-02c9ad969443))
  )
 
  (symbol (lib_id "power:GND") (at 175.26 60.96 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 9a9b7e4b-73b9-4c87-ba1e-6a824fcef417)
    (property "Reference" "#PWR0163" (id 0) (at 175.26 67.31 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 175.26 65.5224 0))
    (property "Footprint" "" (id 2) (at 175.26 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 175.26 60.96 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f6b0cf00-638c-4361-8dc1-2616c9cd2185))
  )
 
  (symbol (lib_id "Device:D_TVS_Dual_AAC") (at 101.6 40.64 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a2be3100-ea90-4b1e-819d-6564f1bf42c0)
    (property "Reference" "D5" (id 0) (at 104.14 39.3699 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "ESDA25L" (id 1) (at 104.14 41.9099 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23" (id 2) (at 101.6 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 101.6 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TVS DIODE 24VWM SOT23-3" (id 4) (at 101.6 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "BORN(伯恩半导体)" (id 5) (at 101.6 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" " ESDA25L" (id 6) (at 101.6 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6a34b310-b4c9-4fb6-a8b3-fa120eb1a983))
    (pin "2" (uuid 0f6acca8-3d9f-4bef-9e7d-1093fe2ff8c1))
    (pin "3" (uuid 6f991617-0939-4d86-bc01-66a333880459))
  )
 
  (symbol (lib_id "Device:R") (at 232.41 31.75 90) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid a6401353-1cec-46b0-8afd-bd9bd3ed1888)
    (property "Reference" "R145" (id 0) (at 232.41 26.7675 90))
    (property "Value" "100R" (id 1) (at 232.41 29.5426 90))
    (property "Footprint" "Resistor_SMD:R_1206_3216Metric" (id 2) (at 232.41 33.528 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 232.41 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "RESI(开步睿思)" (id 4) (at 232.41 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "RES 100R 1% 1/4W 1206" (id 5) (at 232.41 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AECR1206F100RK9" (id 6) (at 232.41 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "RES 100R 1% 1/4W 1206" (id 7) (at 232.41 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 170057b6-9987-4819-919f-cd2d599bfa9c))
    (pin "2" (uuid 28b8ddbc-ff4e-4d86-b437-22000f1f9a9a))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 162.56 54.61 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid a9d2cc85-6cce-45ba-8dfb-c06654c8513a)
    (property "Reference" "TP72" (id 0) (at 161.163 56.359 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 162.56 56.642 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 157.48 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 157.48 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 641f4fd8-9014-4a26-bde5-b87eb74d5be8))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 250.19 97.79 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid b1e4be8f-a2a7-4c9a-ab6a-2e065f1c374f)
    (property "Reference" "Q106" (id 0) (at 253.7713 96.8815 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "PUMD3,115" (id 1) (at 253.7713 99.6566 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 250.19 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 250.19 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 250.19 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 250.19 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 250.19 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 250.19 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dee17c07-5332-4fd6-aec5-f889427b440d))
    (pin "2" (uuid c4691b79-d91d-49b0-9d90-144b25a782a9))
    (pin "6" (uuid b37bf97f-714f-4c56-9202-38d012356113))
    (pin "3" (uuid e8ba6315-2066-44de-8ba7-c43d1a1436a2))
    (pin "4" (uuid 9c5375eb-19ab-48cd-8dc2-1235b478613d))
    (pin "5" (uuid 4bd1c5e5-08f0-46e9-aaf4-703a696c41b1))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 224.79 31.75 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b3528c92-e1eb-4a1c-9cfa-aed4b4b64b78)
    (property "Reference" "TP77" (id 0) (at 223.393 29.689 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 224.79 33.782 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 219.71 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 219.71 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 01499ce7-0a23-4b45-b49e-c7ad7076b784))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 165.1 31.75 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid b89f13ed-e39d-47b6-966c-753fd264eb94)
    (property "Reference" "TP73" (id 0) (at 163.703 33.499 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 165.1 33.782 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 160.02 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 160.02 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 685f87ed-9563-47bc-b692-aa398ec0c8a9))
  )
 
  (symbol (lib_name "C_6") (lib_id "Device:C") (at 240.03 35.56 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid c080f8e5-9345-4da6-a738-e6ebeb409a67)
    (property "Reference" "C141" (id 0) (at 232.41 35.56 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nF{slash}100V" (id 1) (at 227.33 39.37 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 240.9952 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 240.03 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AC0603KRX7R0BB473" (id 4) (at 240.03 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "YAGEO" (id 5) (at 240.03 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CAP CER 47nF 100V X7R 0603" (id 6) (at 240.03 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CAP CER 47nF 100V X7R 0603" (id 7) (at 240.03 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 462b1f71-7b85-441c-bce5-b777c2493016))
    (pin "2" (uuid 8e56b4fd-c2e4-4293-85b9-5b2e05f4386e))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 250.19 33.02 90) (unit 2)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c26774dc-30ee-4715-a40d-12e9184bc090)
    (property "Reference" "Q105" (id 0) (at 250.19 26.234 90))
    (property "Value" "PUMD3,115" (id 1) (at 250.19 29.0091 90))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 250.19 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 250.19 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 250.19 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 250.19 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 250.19 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 250.19 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4622c0f3-3986-48cd-812f-b63a3da7fece))
    (pin "2" (uuid 2b194d63-8f52-41ff-8cad-f12c8cbd5e3f))
    (pin "6" (uuid 5e84e4d3-2d47-4894-8809-61006f26a6a0))
    (pin "3" (uuid afdd68a5-68e7-4109-92af-9e6868e5aa6b))
    (pin "4" (uuid ff4699c6-c87f-40f3-8f3f-d519c87716b8))
    (pin "5" (uuid 902d7a0a-f65b-459f-a3a4-951be5c1b60c))
  )
 
  (symbol (lib_id "Device:D_Schottky_Filled") (at 175.26 45.72 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid c51575b4-42e6-4549-854b-493ba3ffb451)
    (property "Reference" "D6" (id 0) (at 177.8 44.7674 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "BAS316" (id 1) (at 176.53 48.26 90)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Diode_SMD:D_SOD-323" (id 2) (at 175.26 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 175.26 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "DIODE 100V 200mA 6ns SOD323" (id 4) (at 175.26 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia(安世)" (id 5) (at 175.26 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "BAS316,115" (id 6) (at 175.26 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 02ed2561-7ac9-411d-94f9-0d829e6d4b5d))
    (pin "2" (uuid 9bb12183-08d9-4980-b6e7-f3f094db1649))
  )
 
  (symbol (lib_name "C_6") (lib_id "Device:C") (at 161.29 35.56 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid c55ae89c-860d-45b5-963c-6b4be5313b0c)
    (property "Reference" "C139" (id 0) (at 164.211 34.6515 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nF{slash}100V" (id 1) (at 164.211 37.4266 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 162.2552 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 161.29 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AC0603KRX7R0BB473" (id 4) (at 161.29 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "YAGEO" (id 5) (at 161.29 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CAP CER 47nF 100V X7R 0603" (id 6) (at 161.29 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CAP CER 47nF 100V X7R 0603" (id 7) (at 161.29 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 07253910-dd78-4fed-81ec-0c679165f9ea))
    (pin "2" (uuid 729b16b2-212e-43ee-befc-a48c9d5bef44))
  )
 
  (symbol (lib_name "C_6") (lib_id "Device:C") (at 241.3 78.74 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid ca215849-340e-4cc9-8c89-419e10acdc77)
    (property "Reference" "C142" (id 0) (at 233.68 78.74 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nF{slash}100V" (id 1) (at 228.6 82.55 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 242.2652 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 241.3 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AC0603KRX7R0BB473" (id 4) (at 241.3 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "YAGEO" (id 5) (at 241.3 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CAP CER 47nF 100V X7R 0603" (id 6) (at 241.3 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CAP CER 47nF 100V X7R 0603" (id 7) (at 241.3 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid cb013101-d1a0-4f7f-8320-6b8794bb8fe6))
    (pin "2" (uuid 6c01ba08-9e0a-4120-8fb7-67457e6f0aec))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 245.11 114.3 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid cd6d28a1-6768-4de4-9b30-68ff440da312)
    (property "Reference" "TP85" (id 0) (at 244.983 112.239 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 245.11 116.332 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 240.03 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 240.03 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6b72103f-ea50-4470-a375-287a5d91f99e))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 175.26 33.02 90) (unit 2)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid d463ad2c-74ba-45ea-a1f2-a387e56c0843)
    (property "Reference" "Q103" (id 0) (at 175.26 26.234 90))
    (property "Value" "PUMD3,115" (id 1) (at 175.26 29.0091 90))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 175.26 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 175.26 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 175.26 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 175.26 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 175.26 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 175.26 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1109ef34-7585-43d8-ba6f-7f03a89f20c7))
    (pin "2" (uuid 1024b513-cc13-4d83-8299-f2a64af39420))
    (pin "6" (uuid ad8e362f-a8ab-4c4a-aaab-f3e48c3f7657))
    (pin "3" (uuid a9a09207-29fc-4eb2-a7e3-645edd005a5b))
    (pin "4" (uuid 9131c423-d7ad-44b8-8bfa-4b92c9595690))
    (pin "5" (uuid 85f3687f-c799-4bf8-883d-9f7c91733c72))
  )
 
  (symbol (lib_id "power:GND") (at 177.8 102.87 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid debe4d25-6a3c-4a57-bf99-c1f5ac401736)
    (property "Reference" "#PWR0164" (id 0) (at 177.8 109.22 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 177.8 107.4324 0))
    (property "Footprint" "" (id 2) (at 177.8 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 177.8 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bfacf24f-c905-4343-ae5f-a6a27363969c))
  )
 
  (symbol (lib_id "power:GND") (at 97.79 86.36 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid e2777ecf-66a9-41fb-b25e-b6b9d03c8994)
    (property "Reference" "#PWR07" (id 0) (at 91.44 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 91.44 86.36 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 97.79 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 97.79 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 67115b11-ba98-4863-a520-098c377a8636))
  )
 
  (symbol (lib_id "power:+12P") (at 262.89 74.93 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e6fd514c-a9bd-4ad4-b798-41d6a1d10aa0)
    (property "Reference" "#PWR0174" (id 0) (at 259.08 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+12P" (id 1) (at 266.0649 75.409 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 262.89 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 262.89 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a787feff-5328-42f2-92c3-36a42ae1643e))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 241.6842 74.93 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid e8212c8a-30d4-4d7d-b78d-a5397ffaab9b)
    (property "Reference" "TP84" (id 0) (at 240.2872 72.869 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 241.6842 76.962 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 236.6042 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 236.6042 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 37aa513c-f49f-4bba-b935-dc9e1d6a8c72))
  )
 
  (symbol (lib_id "power:+12P") (at 189.23 73.66 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e8ba958c-9723-455a-beda-b737cf105233)
    (property "Reference" "#PWR0166" (id 0) (at 185.42 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+12P" (id 1) (at 192.4049 74.139 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 189.23 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 189.23 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7a5448f1-7c7e-4e2a-aee5-4a370811b48c))
  )
 
  (symbol (lib_id "power:+12P") (at 186.69 31.75 270) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid e91ca954-5ea0-4133-82e9-8e2cf6db44a0)
    (property "Reference" "#PWR0165" (id 0) (at 182.88 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+12P" (id 1) (at 189.8649 32.229 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 186.69 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 186.69 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9c8d92cb-aa07-4576-b70e-5a705a56e3f7))
  )
 
  (symbol (lib_id "power:GND") (at 97.79 62.23 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid ec59bdd4-013f-4211-a9f0-edae019aeb34)
    (property "Reference" "#PWR08" (id 0) (at 91.44 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 91.44 62.23 90)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 97.79 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 97.79 62.23 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5f969267-ac5a-4bce-9b53-364c5428bcea))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 152.4 73.66 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid ed8ab504-d407-4e67-89c8-da4f7ac13119)
    (property "Reference" "TP70" (id 0) (at 151.003 71.599 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 152.4 75.692 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 147.32 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 147.32 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c773a57c-1262-4c9d-8174-4522a4b58191))
  )
 
  (symbol (lib_name "C_6") (lib_id "Device:C") (at 167.64 77.47 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid f17cc08b-5d43-4aca-900e-a2d134a74068)
    (property "Reference" "C140" (id 0) (at 160.02 77.47 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "47nF{slash}100V" (id 1) (at 154.94 81.28 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 168.6052 81.28 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 167.64 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "AC0603KRX7R0BB473" (id 4) (at 167.64 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "YAGEO" (id 5) (at 167.64 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "CAP CER 47nF 100V X7R 0603" (id 6) (at 167.64 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "CAP CER 47nF 100V X7R 0603" (id 7) (at 167.64 77.47 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 43915d81-d400-4202-ae55-4bb7c27542a9))
    (pin "2" (uuid e2a6f67d-69ab-469c-a375-e8cc24ccd03d))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 177.8 74.93 90) (unit 2)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fb83ed5a-01ac-4ddc-9964-2bb8862c7ea4)
    (property "Reference" "Q104" (id 0) (at 177.8 68.144 90))
    (property "Value" "PUMD3,115" (id 1) (at 177.8 70.9191 90))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 177.8 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 177.8 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 177.8 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 177.8 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 177.8 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 177.8 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 57526064-b5bb-462f-ba6d-344ab38b69ca))
    (pin "2" (uuid 6075d2f2-c157-4e8f-9ed4-4b415da91752))
    (pin "6" (uuid 87ea578c-368a-4130-8c7d-dcd74270899f))
    (pin "3" (uuid 6b5ae15f-0535-415d-ab86-b79de19b182b))
    (pin "4" (uuid 8da66db6-b9ef-4bfa-8eab-ee7c4a488092))
    (pin "5" (uuid ba957fdd-5f98-41c9-9b09-e638566f8655))
  )
 
  (symbol (lib_id "Connector:TestPoint_Small") (at 149.86 31.75 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid fc3846d8-e91e-4204-a3b4-3bdf3e72d891)
    (property "Reference" "TP69" (id 0) (at 148.463 28.419 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "TestPoint_Small" (id 1) (at 149.86 33.782 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Footprint" "TestPoint:TestPoint_Pad_D1.0mm" (id 2) (at 144.78 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 144.78 31.75 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 0c26f21a-c51c-4994-9a4e-cb98d363e1c3))
  )
 
  (symbol (lib_id "Device:Q_Dual_NPN_PNP_BRT_E1B1C2E2B2C1") (at 248.92 54.61 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid fd582d95-c620-4695-99f3-c8482bb36b4d)
    (property "Reference" "Q105" (id 0) (at 252.5013 53.7015 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "PUMD3,115" (id 1) (at 252.5013 56.4766 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 248.92 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 248.92 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Description" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 4) (at 248.92 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer" "Nexperia USA Inc." (id 5) (at 248.92 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Manufacturer Product Number" "PUMD3,115" (id 6) (at 248.92 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Descriptions" "TRANS PREBIAS NPN/PNP 6TSSOP" (id 7) (at 248.92 54.61 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 34ee7a7b-4dd5-4de9-bcf7-7b07fa25f4f1))
    (pin "2" (uuid a2274049-575c-42ba-a8f8-24e4362b5278))
    (pin "6" (uuid 7588430f-c6be-499b-aaf3-f46f7c861f4d))
    (pin "3" (uuid a00921b1-8257-405c-8e9e-24db7b1acd99))
    (pin "4" (uuid 6cdb3a82-8f9f-4865-9b95-d1934ff07010))
    (pin "5" (uuid 9dc560a4-8327-4a50-8713-5bca9667e915))
  )
)