aboutsummaryrefslogtreecommitdiffstats
path: root/kicad-dart-70/lo_board.kicad_sch
blob: 367a55a91dfb498e8a206c0504381bc28a7269ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
(kicad_sch (version 20211123) (generator eeschema)

  (uuid 59881c22-0c03-499d-b392-fcaeb9c76eaa)

  (paper "A4")

  (title_block
    (title "Anglian LO Board")
    (date "2020-11-29")
    (company "HB9EGM")
  )

  (lib_symbols
    (symbol "Device:C_Polarized_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.254 1.778 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_Polarized_Small" (id 1) (at 0.254 -2.032 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" "cap capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Polarized capacitor, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Polarized_Small_0_1"
        (rectangle (start -1.524 -0.3048) (end 1.524 -0.6858)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (rectangle (start -1.524 0.6858) (end 1.524 0.3048)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 1.524)
            (xy -0.762 1.524)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.016 1.27)
            (xy -1.016 1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_Polarized_Small_1_1"
        (pin passive line (at 0 2.54 270) (length 1.8542)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -2.54 90) (length 1.8542)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 0.254 1.778 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "C_Small" (id 1) (at 0.254 -2.032 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" "capacitor cap" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Unpolarized capacitor, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Small_0_1"
        (polyline
          (pts
            (xy -1.524 -0.508)
            (xy 1.524 -0.508)
          )
          (stroke (width 0.3302) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.524 0.508)
            (xy 1.524 0.508)
          )
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_Small_1_1"
        (pin passive line (at 0 2.54 270) (length 2.032)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -2.54 90) (length 2.032)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:C_Trim_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
      (property "Reference" "C" (id 0) (at 1.524 -2.032 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "C_Trim_Small" (id 1) (at 3.048 -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" "trimmer variable capacitor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Trimmable capacitor, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "C_Trim_Small_0_1"
        (polyline
          (pts
            (xy -1.524 -0.508)
            (xy 1.524 -0.508)
          )
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.524 0.508)
            (xy 1.524 0.508)
          )
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.762 1.524)
            (xy -0.762 -1.524)
          )
          (stroke (width 0.1778) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 1.27)
            (xy 0.381 1.778)
          )
          (stroke (width 0.1778) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "C_Trim_Small_1_1"
        (pin passive line (at 0 2.54 270) (length 2.032)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -2.54 90) (length 2.032)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Crystal_GND24" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Y" (id 0) (at 3.175 5.08 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "Crystal_GND24" (id 1) (at 3.175 3.175 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" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Four pin crystal, GND on pins 2 and 4" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Crystal_GND24_0_1"
        (rectangle (start -1.143 2.54) (end 1.143 -2.54)
          (stroke (width 0.3048) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 0)
            (xy -2.032 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.032 -1.27)
            (xy -2.032 1.27)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 -3.81)
            (xy 0 -3.556)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0 3.556)
            (xy 0 3.81)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.032 -1.27)
            (xy 2.032 1.27)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 2.032 0)
            (xy 2.54 0)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 -2.286)
            (xy -2.54 -3.556)
            (xy 2.54 -3.556)
            (xy 2.54 -2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -2.54 2.286)
            (xy -2.54 3.556)
            (xy 2.54 3.556)
            (xy 2.54 2.286)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Crystal_GND24_1_1"
        (pin passive line (at -3.81 0 0) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 5.08 270) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 3.81 0 180) (length 1.27)
          (name "3" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -5.08 90) (length 1.27)
          (name "4" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Crystal_Small" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Y" (id 0) (at 0 2.54 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "Crystal_Small" (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" "quartz ceramic resonator oscillator" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Two pin crystal, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Crystal*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Crystal_Small_0_1"
        (rectangle (start -0.762 -1.524) (end 0.762 1.524)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy -1.27 -0.762)
            (xy -1.27 0.762)
          )
          (stroke (width 0.381) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -0.762)
            (xy 1.27 0.762)
          )
          (stroke (width 0.381) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Crystal_Small_1_1"
        (pin passive line (at -2.54 0 0) (length 1.27)
          (name "1" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 0 180) (length 1.27)
          (name "2" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:L_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
      (property "Reference" "L" (id 0) (at 0.762 1.016 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "L_Small" (id 1) (at 0.762 -1.016 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" "inductor choke coil reactor magnetic" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Inductor, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "L_Small_0_1"
        (arc (start 0 -2.032) (mid 0.508 -1.524) (end 0 -1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 -1.016) (mid 0.508 -0.508) (end 0 0)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 0) (mid 0.508 0.508) (end 0 1.016)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (arc (start 0 1.016) (mid 0.508 1.524) (end 0 2.032)
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "L_Small_1_1"
        (pin passive line (at 0 2.54 270) (length 0.508)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -2.54 90) (length 0.508)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:Q_NPN_BEC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
      (property "Reference" "Q" (id 0) (at 5.08 1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "Q_NPN_BEC" (id 1) (at 5.08 -1.27 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "" (id 2) (at 5.08 2.54 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" "NPN transistor, base/emitter/collector" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "Q_NPN_BEC_0_1"
        (polyline
          (pts
            (xy 0.635 0.635)
            (xy 2.54 2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 -0.635)
            (xy 2.54 -2.54)
            (xy 2.54 -2.54)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 0.635 1.905)
            (xy 0.635 -1.905)
            (xy 0.635 -1.905)
          )
          (stroke (width 0.508) (type default) (color 0 0 0 0))
          (fill (type none))
        )
        (polyline
          (pts
            (xy 1.27 -1.778)
            (xy 1.778 -1.27)
            (xy 2.286 -2.286)
            (xy 1.27 -1.778)
            (xy 1.27 -1.778)
          )
          (stroke (width 0) (type default) (color 0 0 0 0))
          (fill (type outline))
        )
        (circle (center 1.27 0) (radius 2.8194)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "Q_NPN_BEC_1_1"
        (pin input line (at -5.08 0 0) (length 5.715)
          (name "B" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 -5.08 90) (length 2.54)
          (name "E" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 2.54 5.08 270) (length 2.54)
          (name "C" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Device:R_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
      (property "Reference" "R" (id 0) (at 0.762 0.508 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Value" "R_Small" (id 1) (at 0.762 -1.016 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" "R resistor" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "Resistor, small symbol" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "R_Small_0_1"
        (rectangle (start -0.762 1.778) (end 0.762 -1.778)
          (stroke (width 0.2032) (type default) (color 0 0 0 0))
          (fill (type none))
        )
      )
      (symbol "R_Small_1_1"
        (pin passive line (at 0 2.54 270) (length 0.762)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at 0 -2.54 90) (length 0.762)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "RF_Amplifier:BGA2869" (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at 2.54 6.35 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "BGA2869" (id 1) (at 3.81 3.81 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at -1.27 -16.51 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "https://www.nxp.com/docs/en/data-sheet/BGA2869.pdf" (id 3) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "RF GAIN BLOCK" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "MMIC wideband amplifier, DC-2.2GHz, +31.7dB @ 950MHz, 5V, SOT-363" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOT*363*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "BGA2869_0_1"
        (polyline
          (pts
            (xy 5.08 0)
            (xy -5.08 5.08)
            (xy -5.08 -5.08)
            (xy 5.08 0)
          )
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "BGA2869_1_1"
        (pin power_in line (at -2.54 7.62 270) (length 3.81)
          (name "Vcc" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -2.54 -7.62 90) (length 3.81)
          (name "G" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin output line (at 7.62 0 180) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -2.54 -7.62 90) (length 3.81) hide
          (name "G" (effects (font (size 1.27 1.27))))
          (number "4" (effects (font (size 1.27 1.27))))
        )
        (pin passive line (at -2.54 -7.62 90) (length 3.81) hide
          (name "G" (effects (font (size 1.27 1.27))))
          (number "5" (effects (font (size 1.27 1.27))))
        )
        (pin input line (at -7.62 0 0) (length 2.54)
          (name "~" (effects (font (size 1.27 1.27))))
          (number "6" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "Regulator_Linear:LD1117S50TR_SOT223" (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
      (property "Reference" "U" (id 0) (at -3.81 3.175 0)
        (effects (font (size 1.27 1.27)))
      )
      (property "Value" "LD1117S50TR_SOT223" (id 1) (at 0 3.175 0)
        (effects (font (size 1.27 1.27)) (justify left))
      )
      (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 0 5.08 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf" (id 3) (at 2.54 -6.35 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_keywords" "REGULATOR LDO 5.0V" (id 4) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_description" "800mA Fixed Low Drop Positive Voltage Regulator, Fixed Output 5.0V, SOT-223" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (property "ki_fp_filters" "SOT?223*TabPin2*" (id 6) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "LD1117S50TR_SOT223_0_1"
        (rectangle (start -5.08 -5.08) (end 5.08 1.905)
          (stroke (width 0.254) (type default) (color 0 0 0 0))
          (fill (type background))
        )
      )
      (symbol "LD1117S50TR_SOT223_1_1"
        (pin power_in line (at 0 -7.62 90) (length 2.54)
          (name "GND" (effects (font (size 1.27 1.27))))
          (number "1" (effects (font (size 1.27 1.27))))
        )
        (pin power_out line (at 7.62 0 180) (length 2.54)
          (name "VO" (effects (font (size 1.27 1.27))))
          (number "2" (effects (font (size 1.27 1.27))))
        )
        (pin power_in line (at -7.62 0 0) (length 2.54)
          (name "VI" (effects (font (size 1.27 1.27))))
          (number "3" (effects (font (size 1.27 1.27))))
        )
      )
    )
    (symbol "power:+12V" (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" "+12V" (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" "global power" (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 \"+12V\"" (id 5) (at 0 0 0)
        (effects (font (size 1.27 1.27)) hide)
      )
      (symbol "+12V_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 "+12V_1_1"
        (pin power_in line (at 0 0 90) (length 0) hide
          (name "+12V" (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" "global power" (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 130.81 133.35) (diameter 0) (color 0 0 0 0)
    (uuid 011cfe53-f333-4d9d-bd7f-0f9c58646712)
  )
  (junction (at 125.73 68.58) (diameter 0) (color 0 0 0 0)
    (uuid 0fa54773-7a05-42e6-a93a-6a1bfde705dd)
  )
  (junction (at 130.81 144.78) (diameter 0) (color 0 0 0 0)
    (uuid 258e59d2-e745-453f-919e-846f9707c543)
  )
  (junction (at 139.7 68.58) (diameter 0) (color 0 0 0 0)
    (uuid 37375a4b-3e91-4cec-817c-0a8c61744703)
  )
  (junction (at 139.7 38.1) (diameter 0) (color 0 0 0 0)
    (uuid 37c88608-131c-4315-95be-9a663a67b288)
  )
  (junction (at 96.52 127) (diameter 0) (color 0 0 0 0)
    (uuid 5ce38542-e448-47ea-8530-a252bb517fb2)
  )
  (junction (at 151.13 97.79) (diameter 0) (color 0 0 0 0)
    (uuid 6748a832-23ea-482c-ae39-a9e511c12d23)
  )
  (junction (at 106.68 152.4) (diameter 0) (color 0 0 0 0)
    (uuid 6807bd20-2b87-476c-8e72-56e25cda973e)
  )
  (junction (at 135.89 68.58) (diameter 0) (color 0 0 0 0)
    (uuid 692bb5bc-0f18-480c-93f8-56c884923769)
  )
  (junction (at 114.3 38.1) (diameter 0) (color 0 0 0 0)
    (uuid 74be9050-62a4-49b6-ba05-fa4c7da98ac4)
  )
  (junction (at 107.95 102.87) (diameter 0) (color 0 0 0 0)
    (uuid 807d7032-62fc-46b8-a260-a58e178571e1)
  )
  (junction (at 143.51 68.58) (diameter 0) (color 0 0 0 0)
    (uuid 86f2025f-7461-400a-a32b-0954bcf73431)
  )
  (junction (at 87.63 120.65) (diameter 0) (color 0 0 0 0)
    (uuid 87302e8a-669b-43a8-9436-08d36de968c6)
  )
  (junction (at 106.68 127) (diameter 0) (color 0 0 0 0)
    (uuid 9646fb91-2a23-4db9-a493-c23af7b6c554)
  )
  (junction (at 125.73 102.87) (diameter 0) (color 0 0 0 0)
    (uuid a315f0fe-740d-47db-9627-bccab13164b2)
  )
  (junction (at 167.64 80.01) (diameter 0) (color 0 0 0 0)
    (uuid a9c2dd3a-e11c-4bb5-aa83-a9e6be8e38e7)
  )
  (junction (at 135.89 97.79) (diameter 0) (color 0 0 0 0)
    (uuid ba55d933-95ce-4bb6-bd97-50a6e97339a1)
  )
  (junction (at 87.63 95.25) (diameter 0) (color 0 0 0 0)
    (uuid c47bd565-d3ad-4994-b03e-56cb086ff35a)
  )
  (junction (at 105.41 68.58) (diameter 0) (color 0 0 0 0)
    (uuid cd7f747c-938c-48d1-a065-0138927e549b)
  )
  (junction (at 110.49 38.1) (diameter 0) (color 0 0 0 0)
    (uuid de29516c-495d-499c-84d0-6d4471667d39)
  )
  (junction (at 135.89 111.76) (diameter 0) (color 0 0 0 0)
    (uuid e30a91c1-cc09-431e-80b0-53ae2ef6b29e)
  )
  (junction (at 96.52 83.82) (diameter 0) (color 0 0 0 0)
    (uuid f4b1dcba-7755-49da-8dda-4a915c8bc858)
  )
  (junction (at 106.68 144.78) (diameter 0) (color 0 0 0 0)
    (uuid f726f07d-4cc8-4e02-976d-76ff3adf6f4d)
  )
  (junction (at 96.52 102.87) (diameter 0) (color 0 0 0 0)
    (uuid fa43164e-d5f4-4ed6-a48b-c0d4567bf122)
  )

  (wire (pts (xy 118.11 144.78) (xy 130.81 144.78))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 02a84521-5b51-45bf-b594-99a2f2bbaa71)
  )
  (wire (pts (xy 116.84 127) (xy 130.81 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 03cb712d-9688-4d9e-9415-9d197ce00712)
  )
  (wire (pts (xy 151.13 97.79) (xy 157.48 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 06e7e07e-690e-47ae-8fc6-66818a913a22)
  )
  (wire (pts (xy 143.51 97.79) (xy 135.89 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 0c1bb107-9800-46a8-94a8-ffe660a0cb3e)
  )
  (wire (pts (xy 106.68 127) (xy 96.52 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1a546c8b-3660-486c-90de-605b2c44c53f)
  )
  (wire (pts (xy 139.7 38.1) (xy 139.7 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1b3fa593-4c86-43c6-bae7-2931dbfcf130)
  )
  (wire (pts (xy 113.03 144.78) (xy 106.68 144.78))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 1f3fd3b1-b2e0-4bc6-bf42-b79fd88d13ff)
  )
  (wire (pts (xy 109.22 127) (xy 106.68 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 20cac9b2-3e03-46cd-b976-24885891ddb4)
  )
  (wire (pts (xy 91.44 152.4) (xy 93.98 152.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 21b01876-91c2-4b4b-b15d-8e5875a5cfe8)
  )
  (wire (pts (xy 105.41 68.58) (xy 125.73 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 264da66b-9f98-457b-8f6c-107bdced2c8e)
  )
  (wire (pts (xy 96.52 127) (xy 96.52 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 264f8bdf-fd41-4c9e-bd63-b21b17a45dc4)
  )
  (wire (pts (xy 110.49 38.1) (xy 110.49 35.56))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 26bf67b8-69db-4826-aa71-fe004dccafd5)
  )
  (wire (pts (xy 96.52 68.58) (xy 96.52 76.2))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 27d06a7d-fb58-4395-adfa-6dfbea7ce96f)
  )
  (wire (pts (xy 135.89 97.79) (xy 135.89 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2834d914-bec6-4284-b238-bff1ce2211e5)
  )
  (wire (pts (xy 96.52 83.82) (xy 96.52 92.71))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 286eb775-3085-47d7-b648-c31bae02c655)
  )
  (wire (pts (xy 135.89 111.76) (xy 135.89 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 2e94efa1-a6fc-4453-ad5f-70e7e56b3cb2)
  )
  (wire (pts (xy 123.19 102.87) (xy 125.73 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3107ad66-f2c9-460e-94ff-600903c5a584)
  )
  (wire (pts (xy 113.03 152.4) (xy 106.68 152.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 388b5d6e-4ac7-4005-bfc3-0f568aa73940)
  )
  (wire (pts (xy 184.15 97.79) (xy 187.96 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3bed8aa2-5378-4124-8169-2c3a23fb4f9f)
  )
  (wire (pts (xy 96.52 102.87) (xy 96.52 115.57))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3d60bb77-5861-4601-9a1f-d7fcbbbfb41b)
  )
  (wire (pts (xy 77.47 120.65) (xy 77.47 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 3f16b0a3-a8b4-4d23-99b5-190f92f0010d)
  )
  (wire (pts (xy 106.68 144.78) (xy 106.68 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 446332a4-8621-4afa-bb16-ec7d86bb1d69)
  )
  (wire (pts (xy 96.52 83.82) (xy 87.63 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 44674d3b-c795-48dd-b9a9-01535e7392a2)
  )
  (wire (pts (xy 87.63 95.25) (xy 87.63 100.33))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 457a65c3-9b88-465a-b5a5-20a07409d243)
  )
  (wire (pts (xy 135.89 85.09) (xy 135.89 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 45e90e8a-54a2-4976-ba7f-8c468b01b5eb)
  )
  (wire (pts (xy 87.63 120.65) (xy 77.47 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 46d8f988-7bf1-43e3-aac1-67c560b62431)
  )
  (wire (pts (xy 139.7 111.76) (xy 135.89 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 49b967b2-d3ca-4e75-bd54-8788e40044d1)
  )
  (wire (pts (xy 96.52 102.87) (xy 96.52 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 4d06b07d-a72a-4f9a-8af2-01b9965c3532)
  )
  (wire (pts (xy 107.95 105.41) (xy 107.95 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 510dab3d-eb61-4070-9db9-f53c2d1ab35e)
  )
  (wire (pts (xy 167.64 68.58) (xy 167.64 72.39))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 536216a9-9b61-48d7-a449-fa4f061a856a)
  )
  (wire (pts (xy 107.95 102.87) (xy 118.11 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 556d62b3-8402-4a82-b3e7-e21c6b756e0a)
  )
  (wire (pts (xy 128.27 102.87) (xy 125.73 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6146642d-e170-4750-829d-b340e638655b)
  )
  (wire (pts (xy 143.51 68.58) (xy 167.64 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 62aae552-ca62-4699-a368-22dc0606b6b0)
  )
  (wire (pts (xy 130.81 144.78) (xy 130.81 152.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6b647d87-3978-47fc-bc7a-c501322d7966)
  )
  (wire (pts (xy 130.81 144.78) (xy 130.81 133.35))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 6ca6bf37-eb97-4b53-bb04-ee3aa64d0e72)
  )
  (wire (pts (xy 139.7 38.1) (xy 151.13 38.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 77bcb516-b8e3-44ee-ac0f-20109b2fa3e3)
  )
  (wire (pts (xy 114.3 38.1) (xy 119.38 38.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 79aac804-1dd6-4432-8440-a6bb80a85d70)
  )
  (wire (pts (xy 151.13 100.33) (xy 151.13 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7b8d1632-01f2-44e4-8844-ccb91ce6e85e)
  )
  (wire (pts (xy 162.56 80.01) (xy 167.64 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 7ce7a365-9a81-4829-9b54-8d68667e9eee)
  )
  (wire (pts (xy 139.7 68.58) (xy 143.51 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8387323e-9ffe-41b7-849c-152bb6916a04)
  )
  (wire (pts (xy 167.64 77.47) (xy 167.64 80.01))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 860b3ec3-d83e-4e7d-889a-d44975894f79)
  )
  (wire (pts (xy 151.13 97.79) (xy 148.59 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8823d1d0-9388-4b86-b1bd-435d45b53f06)
  )
  (wire (pts (xy 82.55 152.4) (xy 86.36 152.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 899155fe-3fd0-4bd6-a897-6a398ff87f5e)
  )
  (wire (pts (xy 88.9 120.65) (xy 87.63 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 8de0108b-57bf-42a4-a9af-3ca45f4a9846)
  )
  (wire (pts (xy 107.95 113.03) (xy 107.95 110.49))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 968ec067-71a9-4115-bea2-497bf0e5d38f)
  )
  (wire (pts (xy 125.73 102.87) (xy 125.73 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 96eadd2b-0b6b-4365-9980-d25d8ba2e473)
  )
  (wire (pts (xy 130.81 133.35) (xy 130.81 127))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 98ce663c-d6af-409e-a922-1f7bb106ad7a)
  )
  (wire (pts (xy 96.52 68.58) (xy 105.41 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9dbb56af-f926-4888-848d-c59ace9929d0)
  )
  (wire (pts (xy 87.63 105.41) (xy 87.63 120.65))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid 9f522ddc-4f1a-4343-9a03-8c56b437c394)
  )
  (wire (pts (xy 107.95 102.87) (xy 96.52 102.87))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid a324dc46-5b74-433c-b8a9-c6724bb2db4d)
  )
  (wire (pts (xy 96.52 127) (xy 96.52 125.73))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ac9a6606-98fe-454c-987a-8171165670cb)
  )
  (wire (pts (xy 125.73 85.09) (xy 125.73 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b74d02be-d245-49a7-a042-7d4c23673cbc)
  )
  (wire (pts (xy 78.74 100.33) (xy 78.74 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid b7b2d66f-f93b-45ab-aef9-a4f4570f5d6e)
  )
  (wire (pts (xy 172.72 97.79) (xy 179.07 97.79))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid bbfb1e2e-57ad-4e56-ba96-fd9359982eb6)
  )
  (wire (pts (xy 99.06 152.4) (xy 106.68 152.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c1aae41f-4afb-4d2a-9185-c53874836991)
  )
  (wire (pts (xy 96.52 83.82) (xy 96.52 81.28))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c235c2f7-6fb1-43a4-b48b-fe15369a6936)
  )
  (wire (pts (xy 87.63 83.82) (xy 87.63 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid c6821e83-677e-4f48-800e-04e520d0f366)
  )
  (wire (pts (xy 105.41 83.82) (xy 96.52 83.82))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid cc974980-f19d-4413-aa14-09e39d11afda)
  )
  (wire (pts (xy 134.62 38.1) (xy 139.7 38.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d44f4db9-7923-4ad1-bf34-cac6250811ec)
  )
  (wire (pts (xy 135.89 107.95) (xy 135.89 111.76))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid d4988eb4-5993-452d-bf5c-faeb71e1b1ba)
  )
  (wire (pts (xy 162.56 80.01) (xy 162.56 90.17))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dc2f1ffd-4c37-496e-94a0-9c195672c688)
  )
  (wire (pts (xy 78.74 95.25) (xy 87.63 95.25))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid dd6ec411-ef11-4cd7-b05a-2d4a70f5fbdd)
  )
  (wire (pts (xy 118.11 152.4) (xy 130.81 152.4))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid df960d53-1da7-4660-89a8-f5b9b68ad450)
  )
  (wire (pts (xy 114.3 39.37) (xy 114.3 38.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e1b5d22f-e5b5-43f3-9572-e8c6f0b89348)
  )
  (wire (pts (xy 135.89 68.58) (xy 139.7 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e6d5a41e-ee24-4b6a-9505-7321e48a98b3)
  )
  (wire (pts (xy 106.68 152.4) (xy 106.68 144.78))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid e8b91a97-83d9-4ffc-ade9-6f5d6afaf6b6)
  )
  (wire (pts (xy 110.49 38.1) (xy 114.3 38.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ea22cf76-83ca-4769-b475-79f919eb4fc2)
  )
  (wire (pts (xy 125.73 102.87) (xy 125.73 107.95))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid ea37e4de-262b-4545-b6d2-f5706f613be5)
  )
  (wire (pts (xy 107.95 38.1) (xy 110.49 38.1))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f563da3d-82f5-4c9d-9d8e-3534d63fad2d)
  )
  (wire (pts (xy 125.73 68.58) (xy 135.89 68.58))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid f9550de1-11fd-4c40-93bf-3e49d0e18d1a)
  )
  (wire (pts (xy 87.63 120.65) (xy 87.63 128.27))
    (stroke (width 0) (type default) (color 0 0 0 0))
    (uuid fa171cb7-be67-4367-8d12-0f59e5281105)
  )

  (text "42MHz" (at 120.65 135.89 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 5bef2b7f-3f3a-4115-b2d2-c34aacd57483)
  )
  (text "Injection locking\nof LO, -6 to 3dBm" (at 81.28 158.75 0)
    (effects (font (size 1.27 1.27)) (justify left bottom))
    (uuid 98e8b062-dba6-4a2a-919b-6bd0ca424675)
  )

  (hierarchical_label "VHF_LO" (shape output) (at 187.96 97.79 0)
    (effects (font (size 1.27 1.27)) (justify left))
    (uuid 71410476-c7c3-4830-94cd-77ea2b4f283c)
  )
  (hierarchical_label "LO_INJ" (shape input) (at 82.55 152.4 180)
    (effects (font (size 1.27 1.27)) (justify right))
    (uuid a4971640-e29f-4f99-b428-12a047d3b9d8)
  )

  (symbol (lib_id "Regulator_Linear:LD1117S50TR_SOT223") (at 127 38.1 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb7a5e1)
    (property "Reference" "U?" (id 0) (at 127 31.9532 0))
    (property "Value" "LD1117S50TR_SOT223" (id 1) (at 127 34.2646 0))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-223-3_TabPin2" (id 2) (at 127 33.02 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00000544.pdf" (id 3) (at 129.54 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 61a26e1e-a452-4ccd-9a66-ead0684a1e5b))
    (pin "2" (uuid 42e4fe63-fa93-429a-9141-2ad1c470665d))
    (pin "3" (uuid 7f06a325-4b19-4527-b823-d2ea2863cab1))
  )

  (symbol (lib_id "power:+12V") (at 110.49 35.56 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb7b9dc)
    (property "Reference" "#PWR?" (id 0) (at 110.49 39.37 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "+12V" (id 1) (at 110.871 31.1658 0))
    (property "Footprint" "" (id 2) (at 110.49 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 110.49 35.56 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9e72890d-aec4-4de1-a423-6d6e184947f2))
  )

  (symbol (lib_id "power:GND") (at 127 45.72 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb7e90c)
    (property "Reference" "#PWR?" (id 0) (at 127 52.07 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 127.127 50.1142 0))
    (property "Footprint" "" (id 2) (at 127 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 127 45.72 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 9d5e28be-d365-4b59-9491-704a0bfc0fbb))
  )

  (symbol (lib_id "Device:C_Polarized_Small") (at 114.3 41.91 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb7f183)
    (property "Reference" "C?" (id 0) (at 116.5352 40.7416 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10uF" (id 1) (at 116.5352 43.053 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_1210_3225Metric_Pad1.33x2.70mm_HandSolder" (id 2) (at 114.3 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 114.3 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "TAJA106K016RNJ" (id 4) (at 114.3 41.91 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 29d4258f-b2b5-4a9e-947e-62869eb256a2))
    (pin "2" (uuid d7e96560-51eb-4c67-84b1-84eeed724210))
  )

  (symbol (lib_id "power:GND") (at 151.13 43.18 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb7fde9)
    (property "Reference" "#PWR?" (id 0) (at 151.13 49.53 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 151.257 47.5742 0))
    (property "Footprint" "" (id 2) (at 151.13 43.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 151.13 43.18 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 4262f45a-77df-4bac-8a52-40f6380ba044))
  )

  (symbol (lib_id "power:GND") (at 114.3 44.45 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb80506)
    (property "Reference" "#PWR?" (id 0) (at 114.3 50.8 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 114.427 48.8442 0))
    (property "Footprint" "" (id 2) (at 114.3 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 114.3 44.45 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 29b4ee48-1623-42e9-8a12-123df6c467a1))
  )

  (symbol (lib_id "Device:C_Polarized_Small") (at 151.13 40.64 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb81043)
    (property "Reference" "C?" (id 0) (at 153.3652 39.4716 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "10uF" (id 1) (at 153.3652 41.783 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Capacitor_SMD:C_1210_3225Metric_Pad1.33x2.70mm_HandSolder" (id 2) (at 151.13 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 151.13 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "TAJA106K016RNJ" (id 4) (at 151.13 40.64 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid f33829cd-1450-461b-9866-27939d35fa9f))
    (pin "2" (uuid f2388400-abb0-4748-94d2-b1dca00377c0))
  )

  (symbol (lib_id "Device:C_Small") (at 181.61 97.79 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb883b3)
    (property "Reference" "C?" (id 0) (at 181.61 91.9734 90))
    (property "Value" "1nF" (id 1) (at 181.61 94.2848 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 181.61 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 181.61 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 181.61 97.79 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 22b4eaaa-6825-402a-8b06-8c7b7f423817))
    (pin "2" (uuid 3372b27e-8dcf-43ba-af19-ddf42e2a45c1))
  )

  (symbol (lib_id "power:GND") (at 162.56 105.41 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb8b924)
    (property "Reference" "#PWR?" (id 0) (at 162.56 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 162.687 109.8042 0))
    (property "Footprint" "" (id 2) (at 162.56 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 162.56 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bd7a8348-25aa-4adc-996c-898bab460f5f))
  )

  (symbol (lib_id "power:GND") (at 167.64 85.09 0) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 00000000-0000-0000-0000-00005fb8c8c2)
    (property "Reference" "#PWR?" (id 0) (at 167.64 91.44 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 170.18 86.3599 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 167.64 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 167.64 85.09 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5015837a-d032-4ac7-a504-d970ae745e52))
  )

  (symbol (lib_id "Device:C_Small") (at 151.13 102.87 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb8d8be)
    (property "Reference" "C?" (id 0) (at 153.4668 101.7016 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "39pF" (id 1) (at 153.4668 104.013 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 151.13 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 151.13 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "CBR" (id 4) (at 151.13 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bf2d7500-024f-4f80-b352-bbfaaddf49b0))
    (pin "2" (uuid 348fbc10-a5ed-4ba2-8edf-d1dbb81a5043))
  )

  (symbol (lib_id "power:GND") (at 151.13 105.41 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb8dfc6)
    (property "Reference" "#PWR?" (id 0) (at 151.13 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 151.257 109.8042 0))
    (property "Footprint" "" (id 2) (at 151.13 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 151.13 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 7163da0c-5719-4c10-91c7-8d00b60aaa0d))
  )

  (symbol (lib_id "Device:R_Small") (at 135.89 87.63 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb8efda)
    (property "Reference" "R?" (id 0) (at 137.3886 86.4616 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100" (id 1) (at 137.3886 88.773 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 135.89 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 135.89 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 05019268-a6e3-40f3-9330-93e24e1c8197))
    (pin "2" (uuid 52dc457a-0fc3-4523-a186-8ffa541caf60))
  )

  (symbol (lib_id "power:GND") (at 143.51 73.66 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb9081a)
    (property "Reference" "#PWR?" (id 0) (at 143.51 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 143.637 78.0542 0))
    (property "Footprint" "" (id 2) (at 143.51 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 143.51 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dd751273-7334-4db9-a231-12beaa478582))
  )

  (symbol (lib_id "Device:Q_NPN_BEC") (at 133.35 102.87 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb92ae7)
    (property "Reference" "Q?" (id 0) (at 138.176 101.7016 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BFS17N" (id 1) (at 138.176 104.013 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 138.43 100.33 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 133.35 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BFS17N" (id 4) (at 133.35 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid a30395fa-df80-48ad-bd4c-5eeba24cd4bb))
    (pin "2" (uuid fc799f36-906b-4b8a-b9d8-eb41f8714b8d))
    (pin "3" (uuid 631bc4bb-fff8-411c-8714-37a4b945156c))
  )

  (symbol (lib_id "Device:R_Small") (at 125.73 87.63 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fb98b96)
    (property "Reference" "R?" (id 0) (at 127.2286 86.4616 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "2.7k" (id 1) (at 127.2286 88.773 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 125.73 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 125.73 87.63 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid c3a350e7-76fb-4992-b494-fb43072b7560))
    (pin "2" (uuid 71735138-6a9f-4644-966c-ffa3b5b57bdb))
  )

  (symbol (lib_id "Device:C_Small") (at 146.05 97.79 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba051e)
    (property "Reference" "C?" (id 0) (at 146.05 91.9734 90))
    (property "Value" "1nF" (id 1) (at 146.05 94.2848 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 146.05 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 146.05 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 146.05 97.79 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 54d022e0-10bb-4782-9ea4-644875e06697))
    (pin "2" (uuid 1636c8e3-2ff2-4077-b997-b005ed59af9b))
  )

  (symbol (lib_id "Device:C_Small") (at 143.51 71.12 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba0acd)
    (property "Reference" "C?" (id 0) (at 145.8468 69.9516 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1nF" (id 1) (at 145.8468 72.263 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 143.51 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 143.51 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 143.51 71.12 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bac08f5c-22fd-4b32-9e6a-772a458b9bd0))
    (pin "2" (uuid 30359240-647d-4dfa-8bf8-f50c01b82591))
  )

  (symbol (lib_id "Device:C_Small") (at 167.64 82.55 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 00000000-0000-0000-0000-00005fba0fdb)
    (property "Reference" "C?" (id 0) (at 170.18 81.2735 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1nF" (id 1) (at 170.18 83.8135 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 167.64 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 167.64 82.55 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 167.64 82.55 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5d8d4287-f0f0-4f17-8850-d6e7a994edbc))
    (pin "2" (uuid 7fae4a4e-35e7-4162-8e31-be567e33f1b8))
  )

  (symbol (lib_id "Device:R_Small") (at 125.73 110.49 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba18f8)
    (property "Reference" "R?" (id 0) (at 127.2286 109.3216 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "560" (id 1) (at 127.2286 111.633 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 125.73 110.49 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 125.73 110.49 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 11d31f50-7b6b-4383-937b-9f63c4bf0fdf))
    (pin "2" (uuid b0a53298-a9c8-4cae-9610-b11dd83b2473))
  )

  (symbol (lib_id "power:GND") (at 125.73 113.03 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba1fbb)
    (property "Reference" "#PWR?" (id 0) (at 125.73 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 125.857 117.4242 0))
    (property "Footprint" "" (id 2) (at 125.73 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 125.73 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 213affdf-11df-4f86-bb26-9f5c5e0a75bf))
  )

  (symbol (lib_id "Device:R_Small") (at 139.7 114.3 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba47e6)
    (property "Reference" "R?" (id 0) (at 141.1986 113.1316 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100" (id 1) (at 141.1986 115.443 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 139.7 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 139.7 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid dd164fa6-0e1c-45bc-b00c-e0e2084764e2))
    (pin "2" (uuid d9a2e43d-e8b3-4f7d-9ca6-6ca94aee9c50))
  )

  (symbol (lib_id "power:GND") (at 139.7 116.84 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba4c1f)
    (property "Reference" "#PWR?" (id 0) (at 139.7 123.19 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 139.827 121.2342 0))
    (property "Footprint" "" (id 2) (at 139.7 116.84 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 139.7 116.84 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 6d5fdbc7-6610-432d-870a-24526dfda2d9))
  )

  (symbol (lib_id "Device:C_Small") (at 120.65 102.87 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba5a7b)
    (property "Reference" "C?" (id 0) (at 120.65 97.0534 90))
    (property "Value" "1nF" (id 1) (at 120.65 99.3648 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 120.65 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 120.65 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 120.65 102.87 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid aa0688b5-fa1e-4046-a341-1386bd6769ac))
    (pin "2" (uuid 666a9c1b-70a8-45ad-bb23-79b9e7a0594e))
  )

  (symbol (lib_id "Device:C_Trim_Small") (at 107.95 107.95 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba6a62)
    (property "Reference" "C?" (id 0) (at 110.2614 106.7816 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "20pF" (id 1) (at 110.2614 109.093 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "picardy:C_Trimmer_Vishay_BFC2_808" (id 2) (at 107.95 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 107.95 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "222280823279" (id 4) (at 107.95 107.95 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b1caf4c6-fbbd-4457-a92f-0f74a2a5a666))
    (pin "2" (uuid 5947f637-6d81-4a3b-8029-412af84074f6))
  )

  (symbol (lib_id "power:GND") (at 107.95 113.03 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba7762)
    (property "Reference" "#PWR?" (id 0) (at 107.95 119.38 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 108.077 117.4242 0))
    (property "Footprint" "" (id 2) (at 107.95 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 107.95 113.03 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 81038200-06d8-4d8b-b887-e6980b8667a8))
  )

  (symbol (lib_id "Device:C_Trim_Small") (at 133.35 127 270) (mirror x) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba80fd)
    (property "Reference" "C?" (id 0) (at 133.35 121.2088 90))
    (property "Value" "20pF" (id 1) (at 133.35 123.5202 90))
    (property "Footprint" "picardy:C_Trimmer_Vishay_BFC2_808" (id 2) (at 133.35 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 133.35 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "222280823279" (id 4) (at 133.35 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ab5caf12-761c-47fd-b562-6fa9a5362ffe))
    (pin "2" (uuid c497b9f0-c5af-4a08-b924-bb3f49de37d3))
  )

  (symbol (lib_id "Device:C_Small") (at 133.35 133.35 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fba8e69)
    (property "Reference" "C?" (id 0) (at 133.35 136.8298 90))
    (property "Value" "8.2pF" (id 1) (at 133.35 139.1412 90))
    (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (id 2) (at 133.35 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 133.35 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "CBR" (id 4) (at 133.35 133.35 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 19cfb848-9212-4277-8f01-61b2af2a443c))
    (pin "2" (uuid 48a25b4a-744f-4f4d-b3af-9972f215c0e0))
  )

  (symbol (lib_id "Device:L_Small") (at 115.57 152.4 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbadb16)
    (property "Reference" "L?" (id 0) (at 115.57 154.7622 90))
    (property "Value" "270nH" (id 1) (at 115.57 157.0736 90))
    (property "Footprint" "Inductor_SMD:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder" (id 2) (at 115.57 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 115.57 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "LQW2BASR27G00L" (id 4) (at 115.57 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 205b1268-1550-4963-9f21-82646252b9de))
    (pin "2" (uuid 50956a72-a252-4662-b81f-969d25b3b81a))
  )

  (symbol (lib_id "Device:Crystal_GND24") (at 113.03 127 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbafd15)
    (property "Reference" "Y?" (id 0) (at 117.9576 125.8316 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "42MHz" (id 1) (at 117.9576 128.143 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "" (id 2) (at 113.03 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 113.03 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "" (id 4) (at 113.03 127 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1fe9edac-4399-428e-ab2f-d502b6fd4fd5))
    (pin "2" (uuid 569ff9da-8853-47aa-9c3a-d874709d775e))
    (pin "3" (uuid 4fbd7ad3-783a-4efc-af1e-2923b5986f7c))
    (pin "4" (uuid ce0be841-aea2-4abc-b0f3-b85ba4baa997))
  )

  (symbol (lib_id "Device:Crystal_Small") (at 115.57 144.78 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbb1ddc)
    (property "Reference" "Y?" (id 0) (at 115.57 139.065 0))
    (property "Value" "HC49-U" (id 1) (at 115.57 141.3764 0))
    (property "Footprint" "Crystal:Crystal_HC49-U_Vertical" (id 2) (at 115.57 144.78 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 115.57 144.78 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1c0979f9-b0bc-4f71-9b3a-dceb68e0e848))
    (pin "2" (uuid 84f04161-abfe-4cb6-8283-3dcb6429ed0a))
  )

  (symbol (lib_id "power:GND") (at 113.03 132.08 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbb8532)
    (property "Reference" "#PWR?" (id 0) (at 113.03 138.43 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 113.157 136.4742 0))
    (property "Footprint" "" (id 2) (at 113.03 132.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 113.03 132.08 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 74575c66-87c8-414c-8099-a0a06dd1ed2e))
  )

  (symbol (lib_id "power:GND") (at 113.03 121.92 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbb8858)
    (property "Reference" "#PWR?" (id 0) (at 113.03 115.57 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 112.903 117.5258 0))
    (property "Footprint" "" (id 2) (at 113.03 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 113.03 121.92 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 139dbea8-2698-46b8-8b94-54d8210478fc))
  )

  (symbol (lib_id "Device:R_Small") (at 96.52 152.4 90) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbbec64)
    (property "Reference" "R?" (id 0) (at 96.52 147.4216 90))
    (property "Value" "47" (id 1) (at 96.52 149.733 90))
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 96.52 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 96.52 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 93620925-9a52-47ee-a4c9-eea97476e1f5))
    (pin "2" (uuid f76f4181-4352-47d9-879f-8af5322ca8c7))
  )

  (symbol (lib_id "Device:C_Small") (at 88.9 152.4 270) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbc640c)
    (property "Reference" "C?" (id 0) (at 88.9 146.5834 90))
    (property "Value" "1nF" (id 1) (at 88.9 148.8948 90))
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 88.9 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 88.9 152.4 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 88.9 152.4 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 60cece20-e37b-499f-91b3-8f9b87ed56d2))
    (pin "2" (uuid d68cd02a-f10b-406b-88f1-afe3c0e847fc))
  )

  (symbol (lib_id "Device:R_Small") (at 96.52 130.81 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbccc83)
    (property "Reference" "R?" (id 0) (at 98.0186 129.6416 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "100" (id 1) (at 98.0186 131.953 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 96.52 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 96.52 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 72a3b08a-078d-4e41-b4ab-5019d2b15717))
    (pin "2" (uuid 654b3eee-2912-4ce3-ad8a-5fb939e8063b))
  )

  (symbol (lib_id "power:GND") (at 96.52 133.35 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbce253)
    (property "Reference" "#PWR?" (id 0) (at 96.52 139.7 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 96.647 137.7442 0))
    (property "Footprint" "" (id 2) (at 96.52 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 96.52 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b4b8ef46-bbd6-4159-b548-a398de8271e6))
  )

  (symbol (lib_id "Device:Q_NPN_BEC") (at 93.98 120.65 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbcf0d3)
    (property "Reference" "Q?" (id 0) (at 98.806 119.4816 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "BSV52" (id 1) (at 98.806 121.793 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Package_TO_SOT_SMD:SOT-23_Handsoldering" (id 2) (at 99.06 118.11 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 93.98 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "BSV52LT1G" (id 4) (at 93.98 120.65 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 800fcf9b-659e-4b5d-a817-78ce928429b2))
    (pin "2" (uuid bece4adf-aacf-43a3-8b99-dd7c608d4fb1))
    (pin "3" (uuid f02dcc7b-0968-48b3-8475-8eb7a6a71995))
  )

  (symbol (lib_id "Device:L_Small") (at 96.52 95.25 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbd23c5)
    (property "Reference" "L?" (id 0) (at 97.7392 94.0816 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Value" "150nH" (id 1) (at 97.7392 96.393 0)
      (effects (font (size 1.27 1.27)) (justify left))
    )
    (property "Footprint" "Inductor_SMD:L_1008_2520Metric" (id 2) (at 96.52 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 96.52 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "LQW2UASR15F00L" (id 4) (at 96.52 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid ed78f171-5765-46b6-860f-09c8a777bc14))
    (pin "2" (uuid 758a55fe-2fb6-44e5-a0dd-83fbfc05e81e))
  )

  (symbol (lib_id "Device:C_Small") (at 105.41 86.36 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbd3c7f)
    (property "Reference" "C?" (id 0) (at 107.7468 85.1916 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1nF" (id 1) (at 107.7468 87.503 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 105.41 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 105.41 86.36 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 105.41 86.36 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1eda22e1-e208-45b1-89a9-efae29439de7))
    (pin "2" (uuid 531567ab-46e1-416f-b0d2-e7e2149ab829))
  )

  (symbol (lib_id "power:GND") (at 105.41 88.9 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbd43d6)
    (property "Reference" "#PWR?" (id 0) (at 105.41 95.25 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 105.537 93.2942 0))
    (property "Footprint" "" (id 2) (at 105.41 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 105.41 88.9 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 58f717ee-df93-412c-91ab-ace086fa5562))
  )

  (symbol (lib_id "Device:R_Small") (at 87.63 102.87 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbd58bc)
    (property "Reference" "R?" (id 0) (at 89.1286 101.7016 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1k" (id 1) (at 89.1286 104.013 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 87.63 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 87.63 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1481dc95-cddf-4386-b29f-1e6135afdfab))
    (pin "2" (uuid 8ffaf8d7-1fb3-458b-a99d-8fddc5862f8e))
  )

  (symbol (lib_id "Device:C_Small") (at 78.74 102.87 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbd8545)
    (property "Reference" "C?" (id 0) (at 81.0768 101.7016 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1nF" (id 1) (at 81.0768 104.013 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 78.74 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 78.74 102.87 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 78.74 102.87 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid beccac93-9130-4036-89ff-79ee98fa92ef))
    (pin "2" (uuid b636f0fa-3071-421d-a1c4-a068b7c76ba9))
  )

  (symbol (lib_id "power:GND") (at 78.74 105.41 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbd9eed)
    (property "Reference" "#PWR?" (id 0) (at 78.74 111.76 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 78.867 109.8042 0))
    (property "Footprint" "" (id 2) (at 78.74 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 78.74 105.41 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 85b14bfa-bf1d-4ff0-be4d-fa5d2ae9331a))
  )

  (symbol (lib_id "Device:C_Small") (at 77.47 130.81 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbda1cf)
    (property "Reference" "C?" (id 0) (at 79.8068 129.6416 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1nF" (id 1) (at 79.8068 131.953 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 77.47 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 77.47 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 77.47 130.81 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 5de550c8-b4ca-4bc6-b119-613acbf58366))
    (pin "2" (uuid 6915a1f6-d2b9-4e48-a5c8-54200885ac64))
  )

  (symbol (lib_id "power:GND") (at 77.47 133.35 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbda5ce)
    (property "Reference" "#PWR?" (id 0) (at 77.47 139.7 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 77.597 137.7442 0))
    (property "Footprint" "" (id 2) (at 77.47 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 77.47 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid eb356fab-1eec-4d7b-a7e6-e7da79d9c9b6))
  )

  (symbol (lib_id "Device:R_Small") (at 87.63 130.81 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbdbf9a)
    (property "Reference" "R?" (id 0) (at 89.1286 129.6416 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1k" (id 1) (at 89.1286 131.953 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 87.63 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 87.63 130.81 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid b07f145c-21b3-4631-a822-2c731dfedaab))
    (pin "2" (uuid a384e9d1-310c-47c7-921d-fc0a06a7893c))
  )

  (symbol (lib_id "power:GND") (at 87.63 133.35 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbdc3dc)
    (property "Reference" "#PWR?" (id 0) (at 87.63 139.7 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 87.757 137.7442 0))
    (property "Footprint" "" (id 2) (at 87.63 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 87.63 133.35 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 2a4c0dde-4303-4b2d-b6c4-f7bd54c37443))
  )

  (symbol (lib_id "Device:R_Small") (at 96.52 78.74 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbdf990)
    (property "Reference" "R?" (id 0) (at 98.0186 77.5716 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "10" (id 1) (at 98.0186 79.883 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 96.52 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 96.52 78.74 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 1233472d-db3d-4220-96eb-f78fd6d13840))
    (pin "2" (uuid 9750ac78-2ad5-47d6-abf5-9d4932f1dfc2))
  )

  (symbol (lib_id "power:GND") (at 105.41 73.66 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbe1962)
    (property "Reference" "#PWR?" (id 0) (at 105.41 80.01 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Value" "GND" (id 1) (at 105.537 78.0542 0))
    (property "Footprint" "" (id 2) (at 105.41 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "" (id 3) (at 105.41 73.66 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 305e37c6-0ff5-4377-9934-86b50a5ae60c))
  )

  (symbol (lib_id "Device:C_Small") (at 105.41 71.12 180) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 00000000-0000-0000-0000-00005fbe1db0)
    (property "Reference" "C?" (id 0) (at 107.7468 69.9516 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "1nF" (id 1) (at 107.7468 72.263 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Capacitor_SMD:C_0805_2012Metric" (id 2) (at 105.41 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 105.41 71.12 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "MPN" "VJ0805A102GXXPW1BC" (id 4) (at 105.41 71.12 90)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 158e5e6b-ee80-4499-9861-9c7deeacd4ca))
    (pin "2" (uuid c90b76ad-668c-4db8-992a-41b599a2c903))
  )

  (symbol (lib_id "Device:R_Small") (at 167.64 74.93 180) (unit 1)
    (in_bom yes) (on_board yes) (fields_autoplaced)
    (uuid 00000000-0000-0000-0000-00005fc48583)
    (property "Reference" "R?" (id 0) (at 170.18 73.6599 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Value" "30" (id 1) (at 170.18 76.1999 0)
      (effects (font (size 1.27 1.27)) (justify right))
    )
    (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" (id 2) (at 167.64 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "~" (id 3) (at 167.64 74.93 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid 3b5e26a3-7e4f-4681-aeb1-7d051e1ce52d))
    (pin "2" (uuid 4f6c0ee4-0c7d-4183-aec6-f872fb539e2c))
  )

  (symbol (lib_id "RF_Amplifier:BGA2869") (at 165.1 97.79 0) (unit 1)
    (in_bom yes) (on_board yes)
    (uuid 1d079c51-baa5-49f9-9878-11c069871ddb)
    (property "Reference" "U?" (id 0) (at 170.18 100.33 0))
    (property "Value" "BGA2869" (id 1) (at 170.18 102.87 0))
    (property "Footprint" "Package_TO_SOT_SMD:SOT-363_SC-70-6" (id 2) (at 163.83 114.3 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (property "Datasheet" "https://www.nxp.com/docs/en/data-sheet/BGA2869.pdf" (id 3) (at 165.1 97.79 0)
      (effects (font (size 1.27 1.27)) hide)
    )
    (pin "1" (uuid bd298574-1dd4-406d-bfd3-7a5aa84804c0))
    (pin "2" (uuid a50d5368-d4bb-478e-87ea-ce1bc7bce299))
    (pin "3" (uuid bd2d30b6-26df-48c6-8f83-45beac493728))
    (pin "4" (uuid 7a69362e-af45-4fee-9cd9-2641b5128ad1))
    (pin "5" (uuid a8e03519-ed96-42de-a280-1614138dd761))
    (pin "6" (uuid eeb4ebdb-439a-4e24-a8d4-550b292225d3))
  )

  (sheet_instances
    (path "/" (page "1"))
  )

  (symbol_instances
    (path "/00000000-0000-0000-0000-00005fbda5ce"
      (reference "#PWR01") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbc9d93"
      (reference "#PWR02") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbd9eed"
      (reference "#PWR03") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbdc3dc"
      (reference "#PWR04") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbce253"
      (reference "#PWR05") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbe1da5"
      (reference "#PWR06") (unit 1) (value "+5V") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbe1962"
      (reference "#PWR07") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbd43d6"
      (reference "#PWR08") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fba7762"
      (reference "#PWR09") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbb8858"
      (reference "#PWR010") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbb8532"
      (reference "#PWR011") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fba1fbb"
      (reference "#PWR012") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb7b285"
      (reference "#PWR013") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb7b9dc"
      (reference "#PWR014") (unit 1) (value "+12V") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb80506"
      (reference "#PWR015") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fba4c1f"
      (reference "#PWR016") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb90825"
      (reference "#PWR017") (unit 1) (value "+5V") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb9081a"
      (reference "#PWR018") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb7e90c"
      (reference "#PWR019") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb8dfc6"
      (reference "#PWR020") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb7dbdb"
      (reference "#PWR021") (unit 1) (value "+5V") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb7fde9"
      (reference "#PWR022") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb8b924"
      (reference "#PWR023") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb8d2a3"
      (reference "#PWR024") (unit 1) (value "+5V") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb8c8c2"
      (reference "#PWR025") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fb8bc29"
      (reference "#PWR026") (unit 1) (value "GND") (footprint "")
    )
    (path "/00000000-0000-0000-0000-00005fbda1cf"
      (reference "C1") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbd8545"
      (reference "C2") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbc640c"
      (reference "C3") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbe1db0"
      (reference "C4") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbd3c7f"
      (reference "C5") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fba6a62"
      (reference "C6") (unit 1) (value "20pF") (footprint "picardy:C_Trimmer_Vishay_BFC2_808")
    )
    (path "/00000000-0000-0000-0000-00005fba5a7b"
      (reference "C7") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fb7f183"
      (reference "C8") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_1210_3225Metric_Pad1.33x2.70mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fba80fd"
      (reference "C9") (unit 1) (value "20pF") (footprint "picardy:C_Trimmer_Vishay_BFC2_808")
    )
    (path "/00000000-0000-0000-0000-00005fba8e69"
      (reference "C10") (unit 1) (value "8.2pF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fba0acd"
      (reference "C11") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fba051e"
      (reference "C12") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fb8d8be"
      (reference "C13") (unit 1) (value "39pF") (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fb81043"
      (reference "C14") (unit 1) (value "10uF") (footprint "Capacitor_SMD:C_1210_3225Metric_Pad1.33x2.70mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fb883b3"
      (reference "C15") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fba0fdb"
      (reference "C16") (unit 1) (value "1nF") (footprint "Capacitor_SMD:C_0805_2012Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbc6af0"
      (reference "J1") (unit 1) (value "LO_INJ") (footprint "Connector_Coaxial:SMA_Amphenol_132289_EdgeMount")
    )
    (path "/00000000-0000-0000-0000-00005fb79aed"
      (reference "J2") (unit 1) (value "POWER") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical")
    )
    (path "/00000000-0000-0000-0000-00005fb89846"
      (reference "J3") (unit 1) (value "LO") (footprint "Connector_Coaxial:SMA_Amphenol_132289_EdgeMount")
    )
    (path "/00000000-0000-0000-0000-00005fbd23c5"
      (reference "L1") (unit 1) (value "150nH") (footprint "Inductor_SMD:L_1008_2520Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbadb16"
      (reference "L2") (unit 1) (value "270nH") (footprint "Inductor_SMD:L_0805_2012Metric_Pad1.15x1.40mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fb8afe4"
      (reference "L3") (unit 1) (value "1uH") (footprint "Inductor_SMD:L_1008_2520Metric")
    )
    (path "/00000000-0000-0000-0000-00005fbcf0d3"
      (reference "Q1") (unit 1) (value "BSV52") (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering")
    )
    (path "/00000000-0000-0000-0000-00005fb92ae7"
      (reference "Q2") (unit 1) (value "BFS17N") (footprint "Package_TO_SOT_SMD:SOT-23_Handsoldering")
    )
    (path "/00000000-0000-0000-0000-00005fbd58bc"
      (reference "R1") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fbdbf9a"
      (reference "R2") (unit 1) (value "1k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fbdf990"
      (reference "R3") (unit 1) (value "10") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fbccc83"
      (reference "R4") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fbbec64"
      (reference "R5") (unit 1) (value "47") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fb98b96"
      (reference "R6") (unit 1) (value "2.7k") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fba18f8"
      (reference "R7") (unit 1) (value "560") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fb8efda"
      (reference "R8") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fba47e6"
      (reference "R9") (unit 1) (value "100") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fc48583"
      (reference "R?") (unit 1) (value "30") (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder")
    )
    (path "/00000000-0000-0000-0000-00005fb7a5e1"
      (reference "U1") (unit 1) (value "LD1117S50TR_SOT223") (footprint "Package_TO_SOT_SMD:SOT-223-3_TabPin2")
    )
    (path "/00000000-0000-0000-0000-00005fb9f896"
      (reference "U2") (unit 1) (value "AVT-50663") (footprint "Package_TO_SOT_SMD:SOT-363_SC-70-6_Handsoldering")
    )
    (path "/00000000-0000-0000-0000-00005fbafd15"
      (reference "Y1") (unit 1) (value "ECX-32") (footprint "picardy:CX3225SB")
    )
    (path "/00000000-0000-0000-0000-00005fbb1ddc"
      (reference "Y2") (unit 1) (value "HC49-U") (footprint "Crystal:Crystal_HC49-U_Vertical")
    )
  )
)