summaryrefslogtreecommitdiff
path: root/board/schematics/main/schematic.lp
blob: a586bb57c8a8850a7efdc9ee7025c23bfa1015e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
(librepcb_schematic 9d360070-db7a-4077-bd4b-1328646ec41d
 (name "Main")
 (grid (interval 2.54) (unit millimeters))
 (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb
  (component a594577f-b967-41dd-9ba3-7401df235978)
  (lib_gate c10da483-8184-48c3-8977-52ef7187c885)
  (position 114.3 -83.82) (rotation -90.0) (mirror false)
  (text 278303b7-968a-41e6-af8f-ebcf460c84db (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 101.6 -83.82) (rotation -90.0)
  )
  (text eafc5c09-bc81-4bf1-9383-2ee875ee753f (layer sym_names) (value "{{NAME}}")
   (align center bottom) (height 2.54) (position 124.46 -83.82) (rotation -90.0)
  )
 )
 (symbol 06d361dd-394a-4b48-b7c7-64b502f00016
  (component 72b5484a-906a-4e99-a49b-04dbf24cf835)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 175.26 -96.52) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 168.91 -96.52) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 168.91 -96.52) (rotation 0.0)
  )
 )
 (symbol 07e95c6a-347c-4148-959d-12ff7fa46a91
  (component 7c0f4c57-c656-4296-92dc-7ec3cc0a2c79)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 68.58 -12.7) (rotation 270.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 68.58 -12.7) (rotation 270.0)
  )
 )
 (symbol 09d2bdde-ef86-484d-8b3b-33a8fea8853a
  (component aad60047-b273-4e60-98a0-fab1fd947585)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 137.16 -106.68) (rotation -90.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 136.144 -103.6) (rotation -90.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 138.176 -103.6) (rotation -90.0)
  )
 )
 (symbol 0d9897a7-6d77-435a-ac99-19c04e05f1db
  (component 35099bc2-2343-44fe-8368-b22441aa6a3c)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 177.8 -109.22) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 177.165 -109.22) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 177.165 -109.22) (rotation 0.0)
  )
 )
 (symbol 11cedbd3-cfcf-4d94-add4-f3300c25822f
  (component 9b7ef3ec-66cc-4313-868c-7389eaf71af3)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 175.26 -134.62) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 168.91 -134.62) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 168.91 -134.62) (rotation 0.0)
  )
 )
 (symbol 135073ba-4c03-48e8-83a9-757f1e6ed325
  (component 0a110ffa-5f43-443c-a85e-7bb140f43500)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 185.42 -132.08) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 183.72 -132.08) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 183.72 -132.08) (rotation 180.0)
  )
 )
 (symbol 1f0625e8-52c2-4471-b32d-4e1c981d43fc
  (component 19182516-3872-4ee7-8ad5-54ab3a974fcf)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 81.28 -53.34) (rotation 0.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 83.82 -53.34) (rotation 0.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 83.82 -53.34) (rotation 0.0)
  )
 )
 (symbol 223fce6c-d993-488f-a143-0e9ca2ed777f
  (component 2b11e799-b468-4c1b-94f2-b016b72ab792)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 71.12 -53.34) (rotation 0.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 73.66 -53.34) (rotation 0.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 73.66 -53.34) (rotation 0.0)
  )
 )
 (symbol 2639aa09-394d-441f-99a8-ebcd6057bdaa
  (component ee778887-31b4-4f01-9018-a9d0bdad38b4)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 246.38 -93.98) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 244.68 -93.98) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 244.68 -93.98) (rotation 180.0)
  )
 )
 (symbol 28867930-0db8-4d5d-8d2e-3e010f78f591
  (component 33484fb5-97b5-4d9e-8135-f1cfb52a56e0)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 81.28 -12.7) (rotation 180.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 84.36 -11.684) (rotation 180.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 84.36 -13.716) (rotation 180.0)
  )
 )
 (symbol 29b79e3b-ce46-4852-a514-8bbba855cec0
  (component c1e03e9a-25ac-4b1c-ae4a-e3d78e085399)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 223.52 -149.86) (rotation 0.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 220.44 -150.876) (rotation 0.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 220.44 -148.844) (rotation 0.0)
  )
 )
 (symbol 2e8caa64-bde8-4ea0-9cb7-91588f6231ac
  (component eea64f1b-2009-45cb-ad78-7be761c5d632)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 137.16 -33.02) (rotation 180.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 137.16 -33.02) (rotation 180.0)
  )
 )
 (symbol 36093cbc-dcbd-4da3-8bff-d6f53879f962
  (component 7ab90019-26ee-4ae5-b669-d978dfa62995)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 236.22 -96.52) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 229.87 -96.52) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 229.87 -96.52) (rotation 0.0)
  )
 )
 (symbol 36e5d84a-25e1-4187-8a6d-1f9dc26868aa
  (component ee87f9fc-38f5-4fec-9344-36b08952008e)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 147.32 -50.8) (rotation 90.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 147.32 -48.26) (rotation 90.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 147.32 -48.26) (rotation 90.0)
  )
 )
 (symbol 3bfd473f-60c4-43e8-8bd0-ffb42c741a30
  (component 7ab90019-26ee-4ae5-b669-d978dfa62995)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -81.28) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -76.2) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -76.2) (rotation 90.0)
  )
 )
 (symbol 3fb49447-c236-4bba-bf86-ca085ecdbdf4
  (component 9c759720-44cf-4b19-b8b1-98adb63935ab)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 205.74 -96.52) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 199.39 -96.52) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 199.39 -96.52) (rotation 0.0)
  )
 )
 (symbol 4a766d83-238e-4228-a67d-d56dd2889924
  (component 9a2b9f0a-10b0-4bf4-ad17-11cbf48de9d4)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 185.42 -93.98) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 183.72 -93.98) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 183.72 -93.98) (rotation 180.0)
  )
 )
 (symbol 4b6728b1-302a-4873-a030-43becda15b3a
  (component 1201fa9f-0c31-4146-83aa-d5afafce5184)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 96.52 -12.7) (rotation 180.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 99.6 -11.684) (rotation 180.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 99.6 -13.716) (rotation 180.0)
  )
 )
 (symbol 52432312-47de-4940-a417-73f4757891bf
  (component 9f4dcc83-1e4a-4ab3-b45b-17444fee35d6)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 154.94 -93.98) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 153.24 -93.98) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 153.24 -93.98) (rotation 180.0)
  )
 )
 (symbol 53f790e2-aa1d-4504-a381-849bcde54910
  (component b679c88a-a60d-4dc5-a265-dc34eccdc1b0)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 238.76 -147.32) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 238.125 -147.32) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 238.125 -147.32) (rotation 0.0)
  )
 )
 (symbol 5fc55e0d-693f-42d0-a363-7921b177fa53
  (component f3339ff3-9520-4dbd-a242-95fd88c470f7)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 205.74 -134.62) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 199.39 -134.62) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 199.39 -134.62) (rotation 0.0)
  )
 )
 (symbol 63184f33-c173-4c38-93c5-6c44177bc994
  (component a81cb96b-e5a8-4a52-bb1b-33e1a83cf458)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 238.76 -109.22) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 238.125 -109.22) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 238.125 -109.22) (rotation 0.0)
  )
 )
 (symbol 63419cec-129d-4a32-8466-fab5820735a6
  (component 3469d2e1-3b84-441f-b445-b2d1a5a8fe1d)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 124.46 -144.78) (rotation 0.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 124.46 -144.78) (rotation 0.0)
  )
 )
 (symbol 65bea3a5-1e23-47ce-b83b-a97824626b0f
  (component c2ad6a93-1320-4b1c-9d59-cd319f1eb66f)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 215.9 -93.98) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 214.2 -93.98) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 214.2 -93.98) (rotation 180.0)
  )
 )
 (symbol 6b68b53b-adbd-479e-a8d2-21f12a522d03
  (component 9b7ef3ec-66cc-4313-868c-7389eaf71af3)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -106.68) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -101.6) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -101.6) (rotation 90.0)
  )
 )
 (symbol 6bcf4d78-b145-42f2-92e0-4ea5fa311076
  (component e16a780c-11c3-4b8f-a2de-06133720f133)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 193.04 -111.76) (rotation 0.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 189.96 -112.776) (rotation 0.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 189.96 -110.744) (rotation 0.0)
  )
 )
 (symbol 6bf7f225-071d-42e3-b8ca-098c93211056
  (component bf8c2ac6-6bef-4681-8d40-49de366fb199)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 208.28 -109.22) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 207.645 -109.22) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 207.645 -109.22) (rotation 0.0)
  )
 )
 (symbol 6e47615b-736f-4b46-a237-310a77f79021
  (component c0f64001-86fb-4cad-914e-168f9a486196)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 147.32 -71.12) (rotation 90.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 147.32 -68.58) (rotation 90.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 147.32 -68.58) (rotation 90.0)
  )
 )
 (symbol 7284c020-2471-4037-a601-2362fcf29a05
  (component 003e5a09-081d-4b51-a79f-a99d94d66249)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -40.64) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -35.56) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -35.56) (rotation 90.0)
  )
 )
 (symbol 78de4c26-e18b-428f-8f5e-cd2a7280053c
  (component 55e3de39-75a4-46ef-aa41-505deb97efb9)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 73.66 -43.18) (rotation 180.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 73.66 -43.18) (rotation 180.0)
  )
 )
 (symbol 7fa15227-7bce-48ff-9f17-448969656f79
  (component d567a650-d378-4640-a857-702bfb56b7de)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 116.84 -71.12) (rotation 180.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 116.84 -71.12) (rotation 180.0)
  )
 )
 (symbol 805032df-7411-4ffe-b972-147d32bef66c
  (component f3339ff3-9520-4dbd-a242-95fd88c470f7)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -119.38) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -114.3) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -114.3) (rotation 90.0)
  )
 )
 (symbol 8093e669-de04-46ba-a3ca-5d7a099c6c79
  (component ee7abbb7-1d4b-46e9-8e35-a146efe1261a)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 109.22 -15.24) (rotation 270.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 109.22 -17.78) (rotation 270.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 109.22 -17.78) (rotation 270.0)
  )
 )
 (symbol 81847a16-70ae-40c8-a96c-edb116c26bdd
  (component 8a8113d2-9964-4898-b9fa-6fd5b5f10f0c)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 63.5 -43.18) (rotation 0.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 66.04 -43.18) (rotation 0.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 66.04 -43.18) (rotation 0.0)
  )
 )
 (symbol 84e31463-abd5-486f-b07f-6f15fcc7c682
  (component 9eac99f9-953f-42e3-ab87-ec108ec4bd03)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 93.98 -25.4) (rotation 270.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 93.98 -27.94) (rotation 270.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 93.98 -27.94) (rotation 270.0)
  )
 )
 (symbol 86a75e2f-4751-4a26-8f47-346e2b261f7f
  (component 34874403-2246-466a-984e-d27da72baee1)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 246.38 -114.3) (rotation 90.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 246.38 -114.3) (rotation 90.0)
  )
 )
 (symbol 87fc0197-cc2f-4235-b85d-f03158415baf
  (component 98efd561-45f9-4931-8033-c38ccf5f5da5)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 147.32 -30.48) (rotation 90.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 147.32 -27.94) (rotation 90.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 147.32 -27.94) (rotation 90.0)
  )
 )
 (symbol 8bfca755-bf4a-4366-8e5e-ddefb1730aaf
  (component 003e5a09-081d-4b51-a79f-a99d94d66249)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 144.78 -96.52) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 138.43 -96.52) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 138.43 -96.52) (rotation 0.0)
  )
 )
 (symbol 8f380c95-e1f9-4218-9f62-8a9bd9cbf392
  (component fe1ba7f6-a930-4527-99ec-6a43dc923261)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 157.48 -25.4) (rotation 90.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 157.48 -25.4) (rotation 90.0)
  )
 )
 (symbol 96a92916-87b2-453c-a24c-fc5594713190
  (component 72b5484a-906a-4e99-a49b-04dbf24cf835)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -53.34) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -48.26) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -48.26) (rotation 90.0)
  )
 )
 (symbol 973f0072-7f2a-4872-9b35-ca76d13d2b90
  (component bac0dff3-b09f-49b9-a27c-4c6df328363d)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 223.52 -111.76) (rotation 0.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 220.44 -112.776) (rotation 0.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 220.44 -110.744) (rotation 0.0)
  )
 )
 (symbol a0753e6f-7cfd-4f41-9a12-4d54d887177d
  (component 75d0d62e-62b5-40f2-b4b5-1318679c936a)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 144.78 -134.62) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 138.43 -134.62) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 138.43 -134.62) (rotation 0.0)
  )
 )
 (symbol a480a48a-cf47-4392-b2bd-845aa30e493b
  (component c2acd434-b6cf-46b0-9bbd-a690c3276c17)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 137.16 -144.78) (rotation -90.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 136.144 -141.7) (rotation -90.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 138.176 -141.7) (rotation -90.0)
  )
 )
 (symbol a8638444-bebb-49b2-960b-5f849ff9d014
  (component 6c91ba05-d8ee-4290-87f9-3de392a15d35)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 162.56 -111.76) (rotation 0.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 159.48 -112.776) (rotation 0.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 159.48 -110.744) (rotation 0.0)
  )
 )
 (symbol b0d4945d-9e36-40e5-a3b3-ae38b3035798
  (component 75d0d62e-62b5-40f2-b4b5-1318679c936a)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -93.98) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -88.9) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -88.9) (rotation 90.0)
  )
 )
 (symbol b5771b29-b35c-4fc9-879b-bb6bfe5b4bcf
  (component 3df65d78-dc62-4bf1-bb5f-767975e464c8)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 81.28 -40.64) (rotation 90.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 82.296 -43.72) (rotation 90.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 80.264 -43.72) (rotation 90.0)
  )
 )
 (symbol b6b106e3-4525-4670-8f08-b6b96f4c2bfd
  (component 9c759720-44cf-4b19-b8b1-98adb63935ab)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -66.04) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -60.96) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -60.96) (rotation 90.0)
  )
 )
 (symbol b889a6b7-b396-416b-8fd1-de9e39c2fcfa
  (component fa699f55-aa8c-4f8e-ae23-47f51683b51b)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 137.16 -78.74) (rotation 0.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 138.86 -78.74) (rotation 0.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 138.86 -78.74) (rotation 0.0)
  )
 )
 (symbol bafd2a42-3527-44a9-98f6-3492cde69c3b
  (component d827ca0b-9f27-4a2e-a718-4fa07b329918)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 208.28 -147.32) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 207.645 -147.32) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 207.645 -147.32) (rotation 0.0)
  )
 )
 (symbol bc779dfb-6921-4deb-8b43-658ce5be6918
  (component 05fb3408-c9fb-401b-b8bf-a72c462cae4c)
  (lib_gate 1a96486c-cb0e-4bd2-81cc-926f7b1dd2e4)
  (position 106.68 -25.4) (rotation 0.0) (mirror false)
  (text 2fde80ad-8d33-4bef-8af2-fbd6903c09ce (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 103.6 -25.816) (rotation 0.0)
  )
  (text 7998cd0a-5835-4cb0-b360-9fb65f124341 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 103.6 -24.384) (rotation 0.0)
  )
 )
 (symbol bdc9f477-f974-475e-b9ce-c0c708d78fa9
  (component 0e2a5346-270d-49d4-85d8-1cbb5fd36efc)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 246.38 -132.08) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 244.68 -132.08) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 244.68 -132.08) (rotation 180.0)
  )
 )
 (symbol be2a77c0-b2aa-4c46-b67f-e00c08076e47
  (component c30bf2b0-e5b2-4bcf-96a2-8aa3df6f25cd)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 147.32 -109.22) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 146.685 -109.22) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 146.685 -109.22) (rotation 0.0)
  )
 )
 (symbol bef31cac-19e6-4838-a79b-e9709b874c1d
  (component 0f474324-9bc7-4322-8304-01e88a920696)
  (lib_gate 230dd9bb-08ce-4f13-9e71-aa9fb0513898)
  (position 66.04 -20.32) (rotation 0.0) (mirror false)
  (text 0e0b04a9-9d43-48e6-a748-09afbb144d05 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.5) (position 66.04 -20.32) (rotation 0.0)
  )
  (text 6a1d31fc-14cf-4f23-a220-02da2762aaaf (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.5) (position 68.58 -35.56) (rotation 0.0)
  )
 )
 (symbol bfc2072a-6006-4e91-a56b-625f70a79bff
  (component f6cb19ea-2420-4966-a665-144c8aea3a39)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 177.8 -147.32) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 177.165 -147.32) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 177.165 -147.32) (rotation 0.0)
  )
 )
 (symbol c44d8c44-7dac-4744-b2ba-4e498e5d8b05
  (component 7902bf33-28bc-4258-9b32-ff64aca152fc)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 246.38 -152.4) (rotation 90.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 246.38 -152.4) (rotation 90.0)
  )
 )
 (symbol c4a89766-1302-4585-8835-e2a49f7b6987
  (component 31596a36-1fa4-4c96-bc6d-79771f142df4)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 147.32 -60.96) (rotation 90.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 147.32 -58.42) (rotation 90.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 147.32 -58.42) (rotation 90.0)
  )
 )
 (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d
  (component dc014bad-d340-48fe-ae9e-eba0d2251cbd)
  (lib_gate 22ad78c8-6205-4c17-9093-b51505e7e04e)
  (position 17.78 -55.88) (rotation 0.0) (mirror false)
  (text d918fd72-af58-4e1e-a973-ba4e123765ed (layer sym_names) (value "{{NAME}}")
   (align center bottom) (height 2.54) (position 17.78 -43.18) (rotation 0.0)
  )
  (text e8c5e611-e12e-4cc1-9d79-82f95cab6310 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 17.78 -71.12) (rotation 0.0)
  )
 )
 (symbol e2403870-69d7-4278-9e9b-819315bc012b
  (component c32fb448-94d5-423f-9d08-5575b3bdf98c)
  (lib_gate 026180c8-8a0f-42fa-90cc-f62cd2cbad56)
  (position 127.0 -40.64) (rotation 0.0) (mirror false)
  (text 224b7b6f-aa29-4c41-984b-4027a1568820 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 119.38 -35.56) (rotation 0.0)
  )
  (text 85ee0c56-700a-4df6-b482-a2e932707aef (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 119.38 -45.72) (rotation 0.0)
  )
 )
 (symbol e3c0aac9-f122-4a49-97f1-24d8f95f12d8
  (component f699f4ae-d728-4a7e-bd2f-a08ce56eb74d)
  (lib_gate 5e98a660-6976-4a64-a39f-a3628e60ae0f)
  (position 45.72 -132.08) (rotation 90.0) (mirror false)
  (text 1c1e97d3-5e2b-40dd-a105-68ab34b42b2b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 45.72 -127.0) (rotation 90.0)
  )
  (text a2c9bd80-2da4-4135-b864-8f32a35ad6ea (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 45.72 -127.0) (rotation 90.0)
  )
 )
 (symbol e55618a0-877b-4c79-af92-f8c7710bd8fd
  (component 1733362b-3bae-470b-9ba7-7a872bf41510)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 193.04 -149.86) (rotation 0.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 189.96 -150.876) (rotation 0.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 189.96 -148.844) (rotation 0.0)
  )
 )
 (symbol e8b146cd-6c29-4f95-98f6-386b2b08f85e
  (component 5a823968-958d-4e08-ae30-8ee87cb53a9f)
  (lib_gate 667bc8bd-a8ab-4e4b-854d-45d52ce196d8)
  (position 43.18 -25.4) (rotation 0.0) (mirror false)
  (text 34eefe40-4e54-4835-8a13-0d84f7c4b6af (layer sym_outlines) (value "+")
   (align center center) (height 2.5) (position 45.72 -25.4) (rotation 0.0)
  )
  (text 88d0ce26-8bca-479d-9ffe-85a08af8d5f3 (layer sym_outlines) (value "-")
   (align center center) (height 2.5) (position 40.64 -25.4) (rotation 0.0)
  )
  (text 9c9cd4f6-1870-4f6b-8bf7-fa7c935e49e4 (layer sym_outlines) (value "~")
   (align center center) (height 2.5) (position 43.18 -27.94) (rotation 0.0)
  )
  (text a80a5135-0cbd-4783-becc-fbc11f799f8a (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.5) (position 46.99 -27.94) (rotation 0.0)
  )
  (text aa3cf55a-62c9-4fb9-8fff-6d4e518c2aff (layer sym_outlines) (value "~")
   (align center center) (height 2.5) (position 43.18 -22.86) (rotation 0.0)
  )
  (text ccf1bf02-5821-4c02-8931-d2d02e4d2825 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.5) (position 46.99 -27.94) (rotation 0.0)
  )
 )
 (symbol eb45f434-8a1f-4bb4-a3c9-2fd8c5d58bf5
  (component e2c6eb62-ec6b-46b0-b57e-814a087ac89a)
  (lib_gate 169660fd-968a-4d3e-83f5-47f973b4ecd8)
  (position 162.56 -149.86) (rotation 0.0) (mirror false)
  (text 004ddf26-2104-4d0a-8391-54dee4b07ba4 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 159.48 -150.876) (rotation 0.0)
  )
  (text 775ce1fb-3468-457a-a9f5-d5c9b0887b76 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 159.48 -148.844) (rotation 0.0)
  )
 )
 (symbol ef47d16a-53c5-40a9-8907-2d8366708256
  (component 551683f7-f0dc-4950-9fa0-9834115972fe)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 60.96 -53.34) (rotation 0.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 63.5 -53.34) (rotation 0.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 63.5 -53.34) (rotation 0.0)
  )
 )
 (symbol ef614469-6e6d-44f4-a38c-bf01516c62b1
  (component f699f4ae-d728-4a7e-bd2f-a08ce56eb74d)
  (lib_gate 70b68910-b276-4e73-86e0-b3a9c48507cb)
  (position 236.22 -134.62) (rotation 0.0) (mirror false)
  (text 9a0516ce-255e-49ef-a6e6-52e705351636 (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 229.87 -134.62) (rotation 0.0)
  )
  (text f3f19176-ba2d-4763-9a1b-f7063f636839 (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 229.87 -134.62) (rotation 0.0)
  )
 )
 (symbol f2e02f2e-b70e-41bc-b305-04588931d517
  (component 83aa6fb6-653b-4e28-a917-a411b326c0fb)
  (lib_gate abb0fd2d-e3d8-492e-8c53-95575916028b)
  (position 147.32 -147.32) (rotation 0.0) (mirror false)
  (text 329c08b0-c2f9-418e-b116-1179061ddaac (layer sym_values) (value "{{VALUE}}")
   (align right top) (height 2.54) (position 146.685 -147.32) (rotation 0.0)
  )
  (text 7f363383-91d6-41fb-b2b3-25746675006a (layer sym_names) (value "{{NAME}}")
   (align right bottom) (height 2.54) (position 146.685 -147.32) (rotation 0.0)
  )
 )
 (symbol f5548af8-3ba9-4aae-8e17-8da6013ae019
  (component 04c02e94-7b29-475e-b3fc-f0d3cf3d3fd4)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 154.94 -132.08) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 153.24 -132.08) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 153.24 -132.08) (rotation 180.0)
  )
 )
 (symbol f85a0fdd-7fed-45e3-98a3-377d7ab1f36b
  (component aa9c354e-5fc5-4ace-90b1-84edcb8a5769)
  (lib_gate 426e2b17-da88-400b-b1fb-248b24f9c541)
  (position 215.9 -132.08) (rotation 180.0) (mirror false)
  (text 3a49ee6c-f561-4fec-bb7b-9f879fc8ebd9 (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 214.2 -132.08) (rotation 180.0)
  )
  (text 4df62c67-2d01-4825-9d2b-8e53858ebd75 (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 214.2 -132.08) (rotation 180.0)
  )
 )
 (symbol fc349383-ccd7-4997-8c95-7f637421e0fc
  (component e6a6bef4-31c9-4997-b5f4-8e413fa676e2)
  (lib_gate 5e9de029-0af9-477f-afb4-bc05692e4b87)
  (position 147.32 -40.64) (rotation 90.0) (mirror false)
  (text 81c4ccf7-5afd-4013-9da4-57527aa7b02e (layer sym_values) (value "{{VALUE}}")
   (align left top) (height 2.54) (position 147.32 -38.1) (rotation 90.0)
  )
  (text e504f7ee-8a8b-48eb-bf1a-9979455f173b (layer sym_names) (value "{{NAME}}")
   (align left bottom) (height 2.54) (position 147.32 -38.1) (rotation 90.0)
  )
 )
 (symbol fcd3f65b-67c6-4cd9-b3e6-c28417e66b02
  (component 2b4acd95-089f-4f7a-b0a4-c641902fdcda)
  (lib_gate 0539fd52-890f-48af-97a9-bacfb79c9475)
  (position 33.02 -25.4) (rotation 270.0) (mirror false)
  (text 5ec17485-716e-4eb9-8bbf-273444155632 (layer sym_values) (value "{{VALUE}}")
   (align center top) (height 2.54) (position 33.02 -25.4) (rotation 270.0)
  )
 )
 (netsegment 03749341-720f-4776-9401-b81b98400c76
  (net 5481c539-602f-4e26-a584-bcc189481de2)
  (junction 14c80f3b-d9be-4fd2-bcda-658bbdae2ab2 (position 231.14 -111.76))
  (junction 1a415ada-f88c-41d7-a768-ca3764dfd21a (position 111.76 -121.92))
  (junction 2ed2fbc2-f160-4f6a-b9bd-6ea3afee3c36 (position 114.3 -93.98))
  (junction c9c5992a-9d24-450d-9c01-f4d9d6be7b57 (position 111.76 -93.98))
  (junction e92a2f3f-699e-41e6-99b2-b13ad76e4019 (position 231.14 -121.92))
  (line 21997588-6934-47ac-bf24-57641a6d767b (width 0.15875)
   (from (junction 1a415ada-f88c-41d7-a768-ca3764dfd21a))
   (to (junction e92a2f3f-699e-41e6-99b2-b13ad76e4019))
  )
  (line 27a3bf5a-4997-4329-b492-fa11cd8237bd (width 0.15875)
   (from (symbol 973f0072-7f2a-4872-9b35-ca76d13d2b90) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (junction 14c80f3b-d9be-4fd2-bcda-658bbdae2ab2))
  )
  (line 5e0899fb-52ec-4d4f-8b97-fc6caf0e0e28 (width 0.15875)
   (from (symbol 63184f33-c173-4c38-93c5-6c44177bc994) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction 14c80f3b-d9be-4fd2-bcda-658bbdae2ab2))
  )
  (line 645b110d-be6b-470f-b2ff-9de84d89466a (width 0.15875)
   (from (junction c9c5992a-9d24-450d-9c01-f4d9d6be7b57))
   (to (junction 1a415ada-f88c-41d7-a768-ca3764dfd21a))
  )
  (line 7c0e2977-8419-4d84-82d1-3c36bd8aec36 (width 0.15875)
   (from (junction 14c80f3b-d9be-4fd2-bcda-658bbdae2ab2))
   (to (junction e92a2f3f-699e-41e6-99b2-b13ad76e4019))
  )
  (line d3e7a1b3-a73b-412d-bde4-6f967541895a (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 2c570caa-a9a7-4b0a-8308-bf04c5470888))
   (to (junction 2ed2fbc2-f160-4f6a-b9bd-6ea3afee3c36))
  )
  (line f1d8005e-24ce-43ca-8ed2-ac0e186eebee (width 0.15875)
   (from (junction 2ed2fbc2-f160-4f6a-b9bd-6ea3afee3c36))
   (to (junction c9c5992a-9d24-450d-9c01-f4d9d6be7b57))
  )
 )
 (netsegment 0b35d253-690a-49d4-a9fb-5dd4518d7ffb
  (net cb6c9b76-d1e8-4326-8da5-129806eb89d7)
  (junction 1ebac599-fbee-411b-91bd-d6f8ff01c434 (position 246.38 -139.7))
  (junction 34c538f7-6eea-4e10-ab3a-054eb57d7375 (position 241.3 -139.7))
  (junction 4e052c9f-663f-467e-8ccd-d322ec015c7b (position 236.22 -139.7))
  (line 267a4c21-38e2-45a2-a4ae-304675fcbb05 (width 0.15875)
   (from (junction 34c538f7-6eea-4e10-ab3a-054eb57d7375))
   (to (junction 1ebac599-fbee-411b-91bd-d6f8ff01c434))
  )
  (line 37ff3fc5-b484-48b1-957e-56c5d95194d9 (width 0.15875)
   (from (symbol bdc9f477-f974-475e-b9ce-c0c708d78fa9) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction 1ebac599-fbee-411b-91bd-d6f8ff01c434))
  )
  (line 8d3527eb-3e2a-4228-b221-7cc36eaa8c0d (width 0.15875)
   (from (symbol 53f790e2-aa1d-4504-a381-849bcde54910) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 34c538f7-6eea-4e10-ab3a-054eb57d7375))
  )
  (line cb459a11-38ae-464c-9b67-e98a5b14bd04 (width 0.15875)
   (from (junction 4e052c9f-663f-467e-8ccd-d322ec015c7b))
   (to (symbol ef614469-6e6d-44f4-a38c-bf01516c62b1) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line d47bdb3e-fe20-4e2e-b223-2c5e05c38f28 (width 0.15875)
   (from (junction 34c538f7-6eea-4e10-ab3a-054eb57d7375))
   (to (junction 4e052c9f-663f-467e-8ccd-d322ec015c7b))
  )
 )
 (netsegment 0cbe12c3-be5f-4116-b02b-6065bea83bea
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (junction 2a48ed8a-b3ae-4e25-a383-5068e8431362 (position 241.3 -152.4))
  (junction 3cc724ca-66da-427b-939f-68b1bf3b9f95 (position 180.34 -152.4))
  (junction a75e0527-9679-4131-9e4a-01485932c4a3 (position 157.48 -152.4))
  (junction e170b8b8-815e-4a51-af07-9d9937de5d09 (position 218.44 -152.4))
  (junction fdad9c3f-a6c0-4ed7-9907-e45752709f28 (position 187.96 -152.4))
  (junction fff69eb6-c377-4af5-a30d-e7dd9fe57712 (position 210.82 -152.4))
  (line 03344e31-9cde-4f52-9f39-2de19b481970 (width 0.15875)
   (from (junction fff69eb6-c377-4af5-a30d-e7dd9fe57712))
   (to (symbol bafd2a42-3527-44a9-98f6-3492cde69c3b) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
  (line 1d2898b1-6b66-4d5c-8d92-bc64104f45ef (width 0.15875)
   (from (junction fff69eb6-c377-4af5-a30d-e7dd9fe57712))
   (to (junction fdad9c3f-a6c0-4ed7-9907-e45752709f28))
  )
  (line 1d4b61ad-5161-4ea0-9200-aabb1e73a3e9 (width 0.15875)
   (from (symbol f2e02f2e-b70e-41bc-b305-04588931d517) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
   (to (junction a75e0527-9679-4131-9e4a-01485932c4a3))
  )
  (line 2c3544df-8760-4b0c-818b-8f73a9c9c3f2 (width 0.15875)
   (from (symbol e55618a0-877b-4c79-af92-f8c7710bd8fd) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction fdad9c3f-a6c0-4ed7-9907-e45752709f28))
  )
  (line 39681768-fd61-4b44-bee0-34dc4693f2a6 (width 0.15875)
   (from (symbol c44d8c44-7dac-4744-b2ba-4e498e5d8b05) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
   (to (junction 2a48ed8a-b3ae-4e25-a383-5068e8431362))
  )
  (line 39b83b09-739c-4cf9-8b0e-c60f4d717213 (width 0.15875)
   (from (symbol 29b79e3b-ce46-4852-a514-8bbba855cec0) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction e170b8b8-815e-4a51-af07-9d9937de5d09))
  )
  (line 3ae92428-ed5e-4946-a1ea-9755c2997f95 (width 0.15875)
   (from (junction 3cc724ca-66da-427b-939f-68b1bf3b9f95))
   (to (symbol bfc2072a-6006-4e91-a56b-625f70a79bff) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
  (line 710da40a-efac-4d8d-aaa7-22b1dfb8d098 (width 0.15875)
   (from (junction fff69eb6-c377-4af5-a30d-e7dd9fe57712))
   (to (junction e170b8b8-815e-4a51-af07-9d9937de5d09))
  )
  (line 75e2d7e5-5329-4c91-8d27-89c1ca0b0b72 (width 0.15875)
   (from (junction 2a48ed8a-b3ae-4e25-a383-5068e8431362))
   (to (symbol 53f790e2-aa1d-4504-a381-849bcde54910) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
  (line ab46420b-6338-4696-b16c-4c3cac38d8c8 (width 0.15875)
   (from (symbol eb45f434-8a1f-4bb4-a3c9-2fd8c5d58bf5) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction a75e0527-9679-4131-9e4a-01485932c4a3))
  )
  (line b9e5f751-3636-4965-b91a-bc8f9431098a (width 0.15875)
   (from (junction 3cc724ca-66da-427b-939f-68b1bf3b9f95))
   (to (junction fdad9c3f-a6c0-4ed7-9907-e45752709f28))
  )
  (line c6f8b472-8246-4030-bf79-0fc9cda810cf (width 0.15875)
   (from (junction 3cc724ca-66da-427b-939f-68b1bf3b9f95))
   (to (junction a75e0527-9679-4131-9e4a-01485932c4a3))
  )
  (line f824f70e-7cea-4da2-be6e-66920c807a0c (width 0.15875)
   (from (junction 2a48ed8a-b3ae-4e25-a383-5068e8431362))
   (to (junction e170b8b8-815e-4a51-af07-9d9937de5d09))
  )
 )
 (netsegment 0da1c5b9-6612-4b1b-a9b4-308b12ae5771
  (net 92404067-50aa-4a1d-81fa-31d45eaf1b12)
  (junction 260f9c1b-2c14-4407-9efc-4aef31a6441a (position 236.22 -101.6))
  (junction 320a6214-864d-4ef3-9bf9-01f88a2ba80b (position 246.38 -101.6))
  (junction 52db3dae-3753-4bee-8935-609515ba5088 (position 241.3 -101.6))
  (line 007b681f-cd37-40ef-817a-cd8a26686e8d (width 0.15875)
   (from (junction 52db3dae-3753-4bee-8935-609515ba5088))
   (to (junction 320a6214-864d-4ef3-9bf9-01f88a2ba80b))
  )
  (line 08425608-6785-4dd6-b9fb-5d386a258516 (width 0.15875)
   (from (junction 52db3dae-3753-4bee-8935-609515ba5088))
   (to (junction 260f9c1b-2c14-4407-9efc-4aef31a6441a))
  )
  (line 89391932-e692-4b08-b8d3-c4cb752786b7 (width 0.15875)
   (from (junction 260f9c1b-2c14-4407-9efc-4aef31a6441a))
   (to (symbol 36093cbc-dcbd-4da3-8bff-d6f53879f962) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line a877b672-f74d-47e4-9621-48bdc6558e8b (width 0.15875)
   (from (symbol 2639aa09-394d-441f-99a8-ebcd6057bdaa) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction 320a6214-864d-4ef3-9bf9-01f88a2ba80b))
  )
  (line ed1aa1a8-a2f3-4daf-b83d-bd26c0b57fba (width 0.15875)
   (from (symbol 63184f33-c173-4c38-93c5-6c44177bc994) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 52db3dae-3753-4bee-8935-609515ba5088))
  )
 )
 (netsegment 114158de-e6e6-4259-8b0c-22920f93e57e
  (net fa097ea3-9409-45b3-a97a-75888dd83a62)
  (line fc332449-e41b-4575-aeb5-43bc05bcd6de (width 0.15875)
   (from (symbol b5771b29-b35c-4fc9-879b-bb6bfe5b4bcf) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin 51297969-868c-4801-acab-5894943d8264))
  )
 )
 (netsegment 1455d78c-a6c3-4a2d-a9a9-c86d522bb7e6
  (net 8c869aee-5efd-4881-81d2-fa37b74485ea)
  (junction 10eab832-1bfb-4bfe-aef6-93e2f212548f (position 71.12 -58.42))
  (junction 35cfdf0d-3cca-449a-94ca-bba39b29cd62 (position 58.42 -25.4))
  (junction 3a1f4358-96ca-426a-a4f7-6bffd7a7736f (position 81.28 -58.42))
  (junction 534b5486-64f1-4821-a09c-502a955c4577 (position 60.96 -58.42))
  (junction 668fef85-60d3-455c-883a-c760f2703d28 (position 58.42 -58.42))
  (junction cf8ed7ea-6a80-4091-9769-9da73b060c4a (position 88.9 -58.42))
  (junction e0a1d42b-b69c-4771-831d-b6e8653f65ae (position 88.9 -27.94))
  (line 11cbc972-356e-430b-95ac-9fdeba54bfad (width 0.15875)
   (from (junction 3a1f4358-96ca-426a-a4f7-6bffd7a7736f))
   (to (junction cf8ed7ea-6a80-4091-9769-9da73b060c4a))
  )
  (line 12474a4b-3c8d-4853-868f-9b08b508b56a (width 0.15875)
   (from (junction 534b5486-64f1-4821-a09c-502a955c4577))
   (to (junction 10eab832-1bfb-4bfe-aef6-93e2f212548f))
  )
  (line 19dab6c4-e84b-4d03-bb5f-a668d83341a5 (width 0.15875)
   (from (symbol 1f0625e8-52c2-4471-b32d-4e1c981d43fc) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction 3a1f4358-96ca-426a-a4f7-6bffd7a7736f))
  )
  (line 23eaa268-9884-43ae-ad47-9e4f87734b4c (width 0.15875)
   (from (junction 534b5486-64f1-4821-a09c-502a955c4577))
   (to (junction 668fef85-60d3-455c-883a-c760f2703d28))
  )
  (line 3408ac19-90b5-476d-b3e8-8c6b67731a83 (width 0.15875)
   (from (junction 3a1f4358-96ca-426a-a4f7-6bffd7a7736f))
   (to (junction 10eab832-1bfb-4bfe-aef6-93e2f212548f))
  )
  (line b5ee302c-5315-4cd0-a529-ea6b4b1642e1 (width 0.15875)
   (from (junction 35cfdf0d-3cca-449a-94ca-bba39b29cd62))
   (to (junction 668fef85-60d3-455c-883a-c760f2703d28))
  )
  (line d6989702-4507-494c-8ec9-8df3e0153729 (width 0.15875)
   (from (symbol 223fce6c-d993-488f-a143-0e9ca2ed777f) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction 10eab832-1bfb-4bfe-aef6-93e2f212548f))
  )
  (line d6de3d3c-13ab-4d19-ba99-06ce1f98049c (width 0.15875)
   (from (junction cf8ed7ea-6a80-4091-9769-9da73b060c4a))
   (to (junction e0a1d42b-b69c-4771-831d-b6e8653f65ae))
  )
  (line ddac9928-e9b0-4e89-8754-b82bc1a3a856 (width 0.15875)
   (from (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin e262847f-f69a-4008-a6b6-f2ccb480c733))
   (to (junction e0a1d42b-b69c-4771-831d-b6e8653f65ae))
  )
  (line ea8eb7b8-3fcf-4b92-ab8c-de214e3621f9 (width 0.15875)
   (from (symbol e8b146cd-6c29-4f95-98f6-386b2b08f85e) (pin 8ddf0e09-635a-4afd-bf5f-34193f2ed35d))
   (to (junction 35cfdf0d-3cca-449a-94ca-bba39b29cd62))
  )
  (line fe09ce8e-723a-458a-a84d-39375c97603c (width 0.15875)
   (from (symbol ef47d16a-53c5-40a9-8907-2d8366708256) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction 534b5486-64f1-4821-a09c-502a955c4577))
  )
 )
 (netsegment 19820257-1a2b-4cc0-9b6b-2b9b0188374b
  (net 062006c5-6ec3-4dd1-aabd-19940323e782)
  (junction 2983cbc6-c132-40d2-b0ed-e40d2cd33ad3 (position 134.62 -160.02))
  (junction 3bd45013-8e6a-485a-814a-1f4f2904b2b6 (position 104.14 -60.96))
  (junction 8dbb7c5d-0319-4c34-a18e-bf83006c4a90 (position 231.14 -160.02))
  (junction 9a03da5d-ce4a-4931-89b8-71d0e353b7e7 (position 134.62 -60.96))
  (junction ee4c9b8a-9643-4df1-b28c-7d5ea3ac9df8 (position 231.14 -149.86))
  (line 269ac599-200c-449f-8597-ea64a088014f (width 0.15875)
   (from (symbol 29b79e3b-ce46-4852-a514-8bbba855cec0) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (junction ee4c9b8a-9643-4df1-b28c-7d5ea3ac9df8))
  )
  (line 7b69809c-0a53-444a-b1b0-dfcaa69f4aa0 (width 0.15875)
   (from (symbol 53f790e2-aa1d-4504-a381-849bcde54910) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction ee4c9b8a-9643-4df1-b28c-7d5ea3ac9df8))
  )
  (line a699b88c-f6a4-4daa-ab28-13c142ce370d (width 0.15875)
   (from (junction 3bd45013-8e6a-485a-814a-1f4f2904b2b6))
   (to (junction 9a03da5d-ce4a-4931-89b8-71d0e353b7e7))
  )
  (line a995f46c-05a1-46eb-adee-4ef54a83b587 (width 0.15875)
   (from (junction ee4c9b8a-9643-4df1-b28c-7d5ea3ac9df8))
   (to (junction 8dbb7c5d-0319-4c34-a18e-bf83006c4a90))
  )
  (line b3faf2ec-e797-43db-b696-4b84a8ecf00d (width 0.15875)
   (from (junction 9a03da5d-ce4a-4931-89b8-71d0e353b7e7))
   (to (junction 2983cbc6-c132-40d2-b0ed-e40d2cd33ad3))
  )
  (line d3669fb9-3227-4a22-9b90-2d7163891490 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 7d1db861-3a9a-42d9-b39f-042be5c703d1))
   (to (junction 3bd45013-8e6a-485a-814a-1f4f2904b2b6))
  )
  (line ed5c0919-990e-45c9-b6d5-94f9fcfdb6c0 (width 0.15875)
   (from (junction 2983cbc6-c132-40d2-b0ed-e40d2cd33ad3))
   (to (junction 8dbb7c5d-0319-4c34-a18e-bf83006c4a90))
  )
 )
 (netsegment 1a864a5d-0742-43f7-b4b0-fc9e02bc1df2
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (junction d0bd75b8-2aa6-49de-b7fe-12702c62413a (position 124.46 -139.7))
  (junction eaa9df12-5abd-4712-bca8-7a54994216ca (position 124.46 -101.6))
  (line 2b75816b-4ac2-438b-9f29-ac9fb410f759 (width 0.15875)
   (from (symbol 09d2bdde-ef86-484d-8b3b-33a8fea8853a) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction eaa9df12-5abd-4712-bca8-7a54994216ca))
  )
  (line 7f6363d6-2642-4e07-ba16-04fe2a6fca9b (width 0.15875)
   (from (junction d0bd75b8-2aa6-49de-b7fe-12702c62413a))
   (to (junction eaa9df12-5abd-4712-bca8-7a54994216ca))
  )
  (line 81b7b090-3d32-4a69-963e-4c3f116e64c3 (width 0.15875)
   (from (junction d0bd75b8-2aa6-49de-b7fe-12702c62413a))
   (to (symbol 63419cec-129d-4a32-8466-fab5820735a6) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
  )
  (line b952e814-09e7-4f7b-82cf-bc319ea6d260 (width 0.15875)
   (from (symbol a480a48a-cf47-4392-b2bd-845aa30e493b) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction d0bd75b8-2aa6-49de-b7fe-12702c62413a))
  )
 )
 (netsegment 24398fde-5ca9-435c-95fd-0c61c998f16e
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (line 84d60f56-a36e-4214-8c2c-7045c14ad89a (width 0.15875)
   (from (symbol e2403870-69d7-4278-9e9b-819315bc012b) (pin 0e0dd2a1-d269-441a-b4df-73a7affb0162))
   (to (symbol 2e8caa64-bde8-4ea0-9cb7-91588f6231ac) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
  )
 )
 (netsegment 26bb8513-04af-4312-ac9c-fb887bbb9193
  (net 99d1572a-d0ac-4c5d-b055-32a1b8efd5cc)
  (junction e77a559e-2ba3-48bd-9035-4e563442abb2 (position 33.02 -83.82))
  (junction f79a6a36-f4f9-4cbe-981c-0cb0ba984b2c (position 33.02 -58.42))
  (line 8e6d2b6f-60db-464f-ab58-943502a20fa0 (width 0.15875)
   (from (junction f79a6a36-f4f9-4cbe-981c-0cb0ba984b2c))
   (to (junction e77a559e-2ba3-48bd-9035-4e563442abb2))
  )
  (line aa2f969b-1acb-4420-9cf8-ba6539f97db2 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin ca52c4d3-ebcc-4b46-9376-b47b62ee8b06))
   (to (junction f79a6a36-f4f9-4cbe-981c-0cb0ba984b2c))
  )
  (line c95bf63f-8364-48e4-901c-4bdbc3822fdf (width 0.15875)
   (from (symbol 3bfd473f-60c4-43e8-8bd0-ffb42c741a30) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction e77a559e-2ba3-48bd-9035-4e563442abb2))
  )
 )
 (netsegment 2b9b8b29-dc0e-4663-9375-01a28a8008dc
  (net 41e89a55-4be5-4879-8a2e-1102c7f2074f)
  (junction 3672c659-b021-4efc-a5a2-bde3091ddfc6 (position 88.9 -17.78))
  (junction 5895d36e-f80d-404b-8eba-888f7a45c0ea (position 104.14 -15.24))
  (junction 61ed6c4f-5365-40fe-aa7b-989113d880b6 (position 60.96 -25.4))
  (junction 85569b79-d9c7-4007-a0f1-71d5fa5f5f0f (position 60.96 -17.78))
  (junction d23615b6-28d4-472a-b6d8-f2b2f819dd4b (position 104.14 -17.78))
  (junction ea7bf541-bade-4b40-87e8-78d7cb8066ea (position 88.9 -12.7))
  (line 1aa092f3-75cb-473b-810c-c051ecb7a5b3 (width 0.15875)
   (from (junction 85569b79-d9c7-4007-a0f1-71d5fa5f5f0f))
   (to (junction 61ed6c4f-5365-40fe-aa7b-989113d880b6))
  )
  (line 34ac0779-48d0-4005-a717-622359387f49 (width 0.15875)
   (from (junction ea7bf541-bade-4b40-87e8-78d7cb8066ea))
   (to (symbol 4b6728b1-302a-4873-a030-43becda15b3a) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
  )
  (line 590054ad-79c4-43e2-be4b-e5c7535cefea (width 0.15875)
   (from (junction d23615b6-28d4-472a-b6d8-f2b2f819dd4b))
   (to (junction 3672c659-b021-4efc-a5a2-bde3091ddfc6))
  )
  (line 68549889-72a2-4c09-aa73-d8c90dc139de (width 0.15875)
   (from (junction 3672c659-b021-4efc-a5a2-bde3091ddfc6))
   (to (junction 85569b79-d9c7-4007-a0f1-71d5fa5f5f0f))
  )
  (line 86516e9c-128a-43ea-88fd-339db3f499df (width 0.15875)
   (from (junction ea7bf541-bade-4b40-87e8-78d7cb8066ea))
   (to (junction 3672c659-b021-4efc-a5a2-bde3091ddfc6))
  )
  (line b098261d-61f0-4022-9063-f95807d1497d (width 0.15875)
   (from (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin e70efabc-23a4-4bef-815f-c91932f00b22))
   (to (junction 61ed6c4f-5365-40fe-aa7b-989113d880b6))
  )
  (line b8e8698b-28be-448e-af49-5a3d5668c4b8 (width 0.15875)
   (from (junction 5895d36e-f80d-404b-8eba-888f7a45c0ea))
   (to (junction d23615b6-28d4-472a-b6d8-f2b2f819dd4b))
  )
  (line d1738549-de0b-4a15-8cd9-8200e557bb27 (width 0.15875)
   (from (symbol 8093e669-de04-46ba-a3ca-5d7a099c6c79) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction 5895d36e-f80d-404b-8eba-888f7a45c0ea))
  )
  (line ee4ad64a-9895-4a2f-a101-070eabf60d5e (width 0.15875)
   (from (junction ea7bf541-bade-4b40-87e8-78d7cb8066ea))
   (to (symbol 28867930-0db8-4d5d-8d2e-3e010f78f591) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
  )
 )
 (netsegment 2c0cee0d-c527-453a-9bd2-1651dcc1c8bb
  (net c5177c94-1a2c-47a1-b53e-1ee0bd6d30a1)
  (junction 1b7d1614-b34e-40d2-beb2-c4c408170c2c (position 114.3 -68.58))
  (junction 611441d9-5828-44d3-a789-cfdc391af021 (position 127.0 -152.4))
  (junction e2d97fad-ee4a-4121-bfa4-936915779702 (position 137.16 -152.4))
  (junction f134c44e-875e-4ad0-8f0d-bff6ccc52c34 (position 137.16 -149.86))
  (junction f9736a36-8f96-4f79-915b-e0c36b0af062 (position 127.0 -68.58))
  (line 3a8a90ff-7dee-4ea8-bdf2-5ef0c8d176d8 (width 0.15875)
   (from (symbol f2e02f2e-b70e-41bc-b305-04588931d517) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction f134c44e-875e-4ad0-8f0d-bff6ccc52c34))
  )
  (line 4e400fe4-432a-4fa0-96a2-cc3f230ee841 (width 0.15875)
   (from (junction f134c44e-875e-4ad0-8f0d-bff6ccc52c34))
   (to (junction e2d97fad-ee4a-4121-bfa4-936915779702))
  )
  (line 5db4a81e-37b5-46cf-bdbe-564dfbfb996a (width 0.15875)
   (from (junction f9736a36-8f96-4f79-915b-e0c36b0af062))
   (to (junction 611441d9-5828-44d3-a789-cfdc391af021))
  )
  (line 7d159714-0c1c-4ebb-8aa9-69a63cd149c7 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 6a5d752f-659a-4b64-9d04-9920a1fcbf12))
   (to (junction 1b7d1614-b34e-40d2-beb2-c4c408170c2c))
  )
  (line a5fbabd4-5b2a-44ca-b800-64fdb7c119c3 (width 0.15875)
   (from (junction e2d97fad-ee4a-4121-bfa4-936915779702))
   (to (junction 611441d9-5828-44d3-a789-cfdc391af021))
  )
  (line c3b23140-94e1-4c98-803c-a42090c81de1 (width 0.15875)
   (from (junction 1b7d1614-b34e-40d2-beb2-c4c408170c2c))
   (to (junction f9736a36-8f96-4f79-915b-e0c36b0af062))
  )
  (line dd389384-5cfe-4640-a796-a5d71c4eaef2 (width 0.15875)
   (from (junction f134c44e-875e-4ad0-8f0d-bff6ccc52c34))
   (to (symbol a480a48a-cf47-4392-b2bd-845aa30e493b) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
  )
 )
 (netsegment 2d4f91f1-d2f6-400f-bd44-904a47ecb4a0
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (line 55d8ab69-4fc3-4a5d-9874-2ef8faedd051 (width 0.15875)
   (from (symbol 28867930-0db8-4d5d-8d2e-3e010f78f591) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (symbol 07e95c6a-347c-4148-959d-12ff7fa46a91) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
  )
 )
 (netsegment 2f61a3f8-b889-434a-821a-c49a5fcbb6d2
  (net 37f8e6df-f624-4e86-bfd8-97b937ff29a2)
  (junction 115e4b1f-c790-4661-adef-c5ef6b7f2d7f (position 30.48 -50.8))
  (junction ccde3cab-4c5c-4bf0-ba45-88f73fd84c99 (position 30.48 -43.18))
  (line 55dfd006-6eed-4d43-927b-7ffe78cc2df4 (width 0.15875)
   (from (symbol 7284c020-2471-4037-a601-2362fcf29a05) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction ccde3cab-4c5c-4bf0-ba45-88f73fd84c99))
  )
  (line 8ed16b1b-07e3-4e77-8abc-34876a51bee8 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin d47f1757-6221-43de-91a2-c6c6ccabf7c5))
   (to (junction 115e4b1f-c790-4661-adef-c5ef6b7f2d7f))
  )
  (line b12e1ae8-0759-4c62-8d24-735d97243e04 (width 0.15875)
   (from (junction 115e4b1f-c790-4661-adef-c5ef6b7f2d7f))
   (to (junction ccde3cab-4c5c-4bf0-ba45-88f73fd84c99))
  )
 )
 (netsegment 2f62751a-46be-4b48-a99e-be770b11bf5c
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (junction 23af8379-19f8-4991-967c-a5c28f9a4c6e (position 187.96 -114.3))
  (junction 85fdac8d-146a-4a51-85db-a6a12be69c25 (position 180.34 -114.3))
  (junction bfb07efa-1505-45c7-a046-c145ffecb6d4 (position 157.48 -114.3))
  (junction d8281607-166e-41b0-bc54-c61e4b450143 (position 210.82 -114.3))
  (junction f5f1adb4-2ea5-46a3-afea-48710f1b0d3c (position 241.3 -114.3))
  (junction f7d140c3-8cab-4644-b70b-59f12419ad24 (position 149.86 -114.3))
  (junction fcfb9d05-72a9-4c19-b4c6-5c62793aef42 (position 218.44 -114.3))
  (line 0872c0f2-e377-417f-80c8-2786b8e4b40e (width 0.15875)
   (from (junction fcfb9d05-72a9-4c19-b4c6-5c62793aef42))
   (to (junction f5f1adb4-2ea5-46a3-afea-48710f1b0d3c))
  )
  (line 0aed19d8-4ffd-4870-9182-1d2b2ddaceeb (width 0.15875)
   (from (symbol 86a75e2f-4751-4a26-8f47-346e2b261f7f) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
   (to (junction f5f1adb4-2ea5-46a3-afea-48710f1b0d3c))
  )
  (line 4e3d89a1-ab0d-4eac-aa11-7d1e4a44144d (width 0.15875)
   (from (junction f7d140c3-8cab-4644-b70b-59f12419ad24))
   (to (symbol be2a77c0-b2aa-4c46-b67f-e00c08076e47) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
  (line 4f77c64b-6785-4e7c-9132-d5feb7f0c36b (width 0.15875)
   (from (symbol 973f0072-7f2a-4872-9b35-ca76d13d2b90) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction fcfb9d05-72a9-4c19-b4c6-5c62793aef42))
  )
  (line 5b28e405-a7c6-4531-af31-9ec0dbfb1593 (width 0.15875)
   (from (junction bfb07efa-1505-45c7-a046-c145ffecb6d4))
   (to (junction 85fdac8d-146a-4a51-85db-a6a12be69c25))
  )
  (line 63f847b2-de95-49b4-b5ef-ed7361ddf36a (width 0.15875)
   (from (junction 23af8379-19f8-4991-967c-a5c28f9a4c6e))
   (to (junction d8281607-166e-41b0-bc54-c61e4b450143))
  )
  (line 657d3b75-4465-4d76-b0a7-397d8956f4b6 (width 0.15875)
   (from (junction fcfb9d05-72a9-4c19-b4c6-5c62793aef42))
   (to (junction d8281607-166e-41b0-bc54-c61e4b450143))
  )
  (line 85b9b072-60c0-4b7c-ab06-123b877f0dc8 (width 0.15875)
   (from (symbol 6bcf4d78-b145-42f2-92e0-4ea5fa311076) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction 23af8379-19f8-4991-967c-a5c28f9a4c6e))
  )
  (line a9e4c9a5-7f5b-4597-a0ca-ce73b9ebded5 (width 0.15875)
   (from (junction bfb07efa-1505-45c7-a046-c145ffecb6d4))
   (to (junction f7d140c3-8cab-4644-b70b-59f12419ad24))
  )
  (line ad12f6de-759e-4c16-b8cb-e53bd2bb16c0 (width 0.15875)
   (from (junction 23af8379-19f8-4991-967c-a5c28f9a4c6e))
   (to (junction 85fdac8d-146a-4a51-85db-a6a12be69c25))
  )
  (line c9b0611f-aa2b-4177-89c8-64c2f049b0d5 (width 0.15875)
   (from (junction d8281607-166e-41b0-bc54-c61e4b450143))
   (to (symbol 6bf7f225-071d-42e3-b8ca-098c93211056) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
  (line f17fa405-5200-4316-ad60-a87a5e0e7eb1 (width 0.15875)
   (from (symbol a8638444-bebb-49b2-960b-5f849ff9d014) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction bfb07efa-1505-45c7-a046-c145ffecb6d4))
  )
  (line f883fc42-bdb5-45fc-9146-a3b91efc441d (width 0.15875)
   (from (junction 85fdac8d-146a-4a51-85db-a6a12be69c25))
   (to (symbol 0d9897a7-6d77-435a-ac99-19c04e05f1db) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
  (line fba3655e-cc63-4181-b1e9-475a8b7c25c7 (width 0.15875)
   (from (junction f5f1adb4-2ea5-46a3-afea-48710f1b0d3c))
   (to (symbol 63184f33-c173-4c38-93c5-6c44177bc994) (pin 25ed99ff-f079-402d-823c-39eac3d358c2))
  )
 )
 (netsegment 33ccfc1d-4f4b-460e-9af9-1d3647f4008d
  (net 15ce32e9-5052-44a5-b7e0-de6b02b306b8)
  (junction 1c065202-ea08-4360-95f7-7941985f4518 (position 149.86 -101.6))
  (junction 4c94dd5c-7176-40f1-8cbf-1f58b7c18d95 (position 147.32 -101.6))
  (junction 8dbd1b96-d507-478b-8e74-fb0f9fe24a85 (position 154.94 -101.6))
  (junction a30fa07b-6965-42dc-9207-4ab024a0f4d3 (position 154.94 -101.6))
  (line 8b06f276-0123-45bb-9532-9fca705c4e0c (width 0.15875)
   (from (symbol be2a77c0-b2aa-4c46-b67f-e00c08076e47) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 1c065202-ea08-4360-95f7-7941985f4518))
  )
  (line b4fccc89-4067-4cbb-a435-6b822aa68f78 (width 0.15875)
   (from (junction 1c065202-ea08-4360-95f7-7941985f4518))
   (to (junction 8dbd1b96-d507-478b-8e74-fb0f9fe24a85))
  )
  (line bacb10d4-0812-4079-bcc3-3b4fde389892 (width 0.15875)
   (from (symbol 52432312-47de-4940-a417-73f4757891bf) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction a30fa07b-6965-42dc-9207-4ab024a0f4d3))
  )
  (line c1f8dfa5-ccf1-4415-8851-df39f7034a27 (width 0.15875)
   (from (junction 4c94dd5c-7176-40f1-8cbf-1f58b7c18d95))
   (to (symbol 8bfca755-bf4a-4366-8e5e-ddefb1730aaf) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line c30c320e-ca6f-4204-b5e5-b1433a349006 (width 0.15875)
   (from (junction 8dbd1b96-d507-478b-8e74-fb0f9fe24a85))
   (to (junction a30fa07b-6965-42dc-9207-4ab024a0f4d3))
  )
  (line dbcfa5af-8762-4d64-a604-63424feb270b (width 0.15875)
   (from (junction 1c065202-ea08-4360-95f7-7941985f4518))
   (to (junction 4c94dd5c-7176-40f1-8cbf-1f58b7c18d95))
  )
 )
 (netsegment 36355632-c828-4516-a3cb-4468af348867
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (junction 0d1a4bf0-8709-445a-88ea-028231554f56 (position 86.36 -48.26))
  (junction 1881a328-1d43-4577-9fb0-054e9fb00c28 (position 71.12 -48.26))
  (junction 34e45e29-fa27-460d-a19f-829f9331b784 (position 81.28 -48.26))
  (junction 3c7e6915-136e-4d73-bfb8-96d8ffd6e217 (position 60.96 -27.94))
  (junction 5343e0e3-5d6f-4374-99a8-3171d1160eaa (position 73.66 -48.26))
  (junction 95a80c66-6381-436d-a94f-0ae3f94f6088 (position 60.96 -48.26))
  (junction a539f11c-3981-40d6-86ff-70f9b9c052cc (position 81.28 -48.26))
  (junction a8bb2e52-1b6b-42c3-afd6-d16aaa3e1a5d (position 63.5 -48.26))
  (junction a9f58d6c-453e-46e2-b77a-0cc56575bb6d (position 86.36 -30.48))
  (line 1063ad07-fa66-4887-b770-27c28d5e6587 (width 0.15875)
   (from (junction 1881a328-1d43-4577-9fb0-054e9fb00c28))
   (to (junction a8bb2e52-1b6b-42c3-afd6-d16aaa3e1a5d))
  )
  (line 387f0e37-f618-49cc-ac93-a87fa7676ed1 (width 0.15875)
   (from (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin 2e4b1a37-2490-43bb-ba49-b00e14dcbd36))
   (to (junction a9f58d6c-453e-46e2-b77a-0cc56575bb6d))
  )
  (line 43a7eefa-cf82-46ef-8381-0021901d0950 (width 0.15875)
   (from (junction 3c7e6915-136e-4d73-bfb8-96d8ffd6e217))
   (to (junction 95a80c66-6381-436d-a94f-0ae3f94f6088))
  )
  (line 4b5d7c87-935c-441a-95ab-33f0c7be8382 (width 0.15875)
   (from (junction a9f58d6c-453e-46e2-b77a-0cc56575bb6d))
   (to (junction 0d1a4bf0-8709-445a-88ea-028231554f56))
  )
  (line 4f0ccc6a-2549-4239-9ccb-53497c9fa0de (width 0.15875)
   (from (junction a539f11c-3981-40d6-86ff-70f9b9c052cc))
   (to (junction 0d1a4bf0-8709-445a-88ea-028231554f56))
  )
  (line 629beb0d-235c-46f7-8146-26566509c0d5 (width 0.15875)
   (from (symbol ef47d16a-53c5-40a9-8907-2d8366708256) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 95a80c66-6381-436d-a94f-0ae3f94f6088))
  )
  (line 730c0c66-24b0-4f8f-809a-35da0422f7e1 (width 0.15875)
   (from (symbol b5771b29-b35c-4fc9-879b-bb6bfe5b4bcf) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction a539f11c-3981-40d6-86ff-70f9b9c052cc))
  )
  (line 793578a8-41bc-446c-ae8c-5e518a3a2fd5 (width 0.15875)
   (from (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin 316e8cb1-9931-43f5-97b1-1a686ee8a645))
   (to (junction 3c7e6915-136e-4d73-bfb8-96d8ffd6e217))
  )
  (line 8d60214c-01d9-45d2-8510-1d8ca88972b1 (width 0.15875)
   (from (junction 34e45e29-fa27-460d-a19f-829f9331b784))
   (to (junction a539f11c-3981-40d6-86ff-70f9b9c052cc))
  )
  (line 94a4e872-ad94-45bc-ab62-d5d7de987913 (width 0.15875)
   (from (junction 34e45e29-fa27-460d-a19f-829f9331b784))
   (to (junction 5343e0e3-5d6f-4374-99a8-3171d1160eaa))
  )
  (line a6fa4810-d420-4c49-8783-4591dc8e1635 (width 0.15875)
   (from (symbol 223fce6c-d993-488f-a143-0e9ca2ed777f) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 1881a328-1d43-4577-9fb0-054e9fb00c28))
  )
  (line aa5abe53-0ceb-4426-ad76-e8edee670b88 (width 0.15875)
   (from (junction 1881a328-1d43-4577-9fb0-054e9fb00c28))
   (to (junction 5343e0e3-5d6f-4374-99a8-3171d1160eaa))
  )
  (line b0ba3f0c-3738-40a3-a37a-5e44cbc736d2 (width 0.15875)
   (from (symbol 81847a16-70ae-40c8-a96c-edb116c26bdd) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction a8bb2e52-1b6b-42c3-afd6-d16aaa3e1a5d))
  )
  (line b41c2f6b-f212-4cb0-b29b-489d1b871a10 (width 0.15875)
   (from (symbol 1f0625e8-52c2-4471-b32d-4e1c981d43fc) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 34e45e29-fa27-460d-a19f-829f9331b784))
  )
  (line e1193a37-d943-406d-9f88-9cc74d389f3d (width 0.15875)
   (from (junction a8bb2e52-1b6b-42c3-afd6-d16aaa3e1a5d))
   (to (junction 95a80c66-6381-436d-a94f-0ae3f94f6088))
  )
  (line fff2a52d-8006-4638-b0ba-d03e727e063b (width 0.15875)
   (from (junction 5343e0e3-5d6f-4374-99a8-3171d1160eaa))
   (to (symbol 78de4c26-e18b-428f-8f5e-cd2a7280053c) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
  )
 )
 (netsegment 38d61fcb-5037-4d44-a40d-fb7f5b4162db
  (net 199b4cb6-a442-492b-bc10-39842b91d297)
  (junction 6b7d9379-9ca0-4fc4-b9ce-63467e22fb8c (position 109.22 -119.38))
  (junction db743aa4-3b60-424b-8525-0c5283d02944 (position 200.66 -119.38))
  (junction ddde05cd-0592-4a72-9456-ab8d1df9c376 (position 200.66 -111.76))
  (line 3c5f8c9c-bb66-4f3a-91b2-30fd5f27783e (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 04dc0d6b-ae5e-4a97-839c-2236c921237e))
   (to (junction 6b7d9379-9ca0-4fc4-b9ce-63467e22fb8c))
  )
  (line 66384faf-a900-430b-abf6-a83674b61e66 (width 0.15875)
   (from (junction ddde05cd-0592-4a72-9456-ab8d1df9c376))
   (to (junction db743aa4-3b60-424b-8525-0c5283d02944))
  )
  (line 8a4859b0-9082-4894-894b-6a8bec47cebc (width 0.15875)
   (from (symbol 6bcf4d78-b145-42f2-92e0-4ea5fa311076) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (junction ddde05cd-0592-4a72-9456-ab8d1df9c376))
  )
  (line 8ad19d5f-e986-40d4-ad2b-e5ddccfee9b8 (width 0.15875)
   (from (symbol 6bf7f225-071d-42e3-b8ca-098c93211056) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction ddde05cd-0592-4a72-9456-ab8d1df9c376))
  )
  (line ec54d501-ec22-40d5-9da5-841d8842708e (width 0.15875)
   (from (junction 6b7d9379-9ca0-4fc4-b9ce-63467e22fb8c))
   (to (junction db743aa4-3b60-424b-8525-0c5283d02944))
  )
 )
 (netsegment 3a61ea80-d26c-45ac-9e4e-a224b81bc9c1
  (net 208e989a-fe13-4b10-b3c5-a3203575f96e)
  (junction 11014e67-c06d-43c5-b5a8-c8e31d901c8d (position 137.16 -111.76))
  (junction 50fc2e45-2b48-4380-a004-5ec89bb3928d (position 104.14 -114.3))
  (junction 7b6d750f-e4ac-455b-8b79-d74b1826b843 (position 137.16 -114.3))
  (line 3d429953-5b0e-43af-8928-4a30753f16f5 (width 0.15875)
   (from (symbol be2a77c0-b2aa-4c46-b67f-e00c08076e47) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction 11014e67-c06d-43c5-b5a8-c8e31d901c8d))
  )
  (line 69b45907-6e7d-423a-ae69-060c9ba4ea15 (width 0.15875)
   (from (junction 11014e67-c06d-43c5-b5a8-c8e31d901c8d))
   (to (junction 7b6d750f-e4ac-455b-8b79-d74b1826b843))
  )
  (line 69e94d45-be2c-4328-bc28-32fa57c86521 (width 0.15875)
   (from (junction 50fc2e45-2b48-4380-a004-5ec89bb3928d))
   (to (junction 7b6d750f-e4ac-455b-8b79-d74b1826b843))
  )
  (line 7a51b043-1c4b-4a6f-9d4f-c27a4fa899c1 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 41ea20eb-38c8-4ba3-995c-371559352c19))
   (to (junction 50fc2e45-2b48-4380-a004-5ec89bb3928d))
  )
  (line 8bc7ac2e-1021-4139-9894-66ed18742fef (width 0.15875)
   (from (junction 11014e67-c06d-43c5-b5a8-c8e31d901c8d))
   (to (symbol 09d2bdde-ef86-484d-8b3b-33a8fea8853a) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
  )
 )
 (netsegment 3b56b4ff-4209-48d9-9da9-07eadb733fb0
  (net d4626238-abe7-4a78-8a6a-f1d4678f245e)
  (junction 03e54431-060b-4602-87ed-967063f08e89 (position 137.16 -71.12))
  (junction 1342395b-6330-453c-8fab-dc19e0b25840 (position 142.24 -40.64))
  (junction 1ea024a1-601b-4a84-8a7a-10de06d03eff (position 114.3 -12.7))
  (junction 59e692e8-0ce0-4c5f-9765-18afdd452930 (position 121.92 -71.12))
  (junction 7944bca4-a7df-4480-9aee-0a9622d1a54e (position 142.24 -60.96))
  (junction 80400a99-c883-43fa-9d54-f29053ee9e30 (position 142.24 -71.12))
  (junction 86ac6a42-fac1-4883-8ab0-e090cfb2861d (position 142.24 -55.88))
  (junction a7801783-a587-498d-93ee-002d8d0cebfa (position 119.38 -73.66))
  (junction b9d5f104-b5d7-4cdc-ba97-88ba0d10ac59 (position 111.76 -25.4))
  (junction bf598623-a8e6-436a-a3f2-5b40146b9c98 (position 114.3 -15.24))
  (junction cb3c4ae2-733f-49dc-bdc1-c2453cb76478 (position 121.92 -73.66))
  (junction d13ebe58-491c-4474-84cf-9536e3fe4af7 (position 114.3 -25.4))
  (junction d20ba516-1af1-4996-8632-cfbd9f7ba9da (position 142.24 -25.4))
  (junction de8b7d02-2d5b-4f9f-9a66-724eae5fbc97 (position 142.24 -30.48))
  (junction df576995-969d-4769-bb7d-9589ba9f0b6d (position 142.24 -50.8))
  (line 0af87150-7077-4129-8b66-24640d8bd52c (width 0.15875)
   (from (junction 80400a99-c883-43fa-9d54-f29053ee9e30))
   (to (junction 7944bca4-a7df-4480-9aee-0a9622d1a54e))
  )
  (line 1548af5c-1891-4aac-9e85-892cd05dd12f (width 0.15875)
   (from (symbol b889a6b7-b396-416b-8fd1-de9e39c2fcfa) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction 03e54431-060b-4602-87ed-967063f08e89))
  )
  (line 230649b3-f14b-4767-956f-c3bf3a345b21 (width 0.15875)
   (from (symbol 87fc0197-cc2f-4235-b85d-f03158415baf) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction de8b7d02-2d5b-4f9f-9a66-724eae5fbc97))
  )
  (line 2edb68ff-bfe4-47c8-bc7e-f86d28c95fec (width 0.15875)
   (from (junction d13ebe58-491c-4474-84cf-9536e3fe4af7))
   (to (junction d20ba516-1af1-4996-8632-cfbd9f7ba9da))
  )
  (line 49708fe3-6df9-4d75-b25b-a43f4ca3f4c9 (width 0.15875)
   (from (symbol 36e5d84a-25e1-4187-8a6d-1f9dc26868aa) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction df576995-969d-4769-bb7d-9589ba9f0b6d))
  )
  (line 589f4974-9b9b-42a7-bc88-11f4f6b690ff (width 0.15875)
   (from (symbol 6e47615b-736f-4b46-a237-310a77f79021) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 80400a99-c883-43fa-9d54-f29053ee9e30))
  )
  (line 6c7c2d23-3b8e-4107-b8a0-24a4463671ae (width 0.15875)
   (from (junction bf598623-a8e6-436a-a3f2-5b40146b9c98))
   (to (junction 1ea024a1-601b-4a84-8a7a-10de06d03eff))
  )
  (line 6e4953f1-ca3b-4eb5-93dc-ef11e1a3d1ac (width 0.15875)
   (from (junction cb3c4ae2-733f-49dc-bdc1-c2453cb76478))
   (to (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 8e85707c-4a6f-498c-b908-883a4d1a25d1))
  )
  (line 710f135e-2cd3-4f20-a102-d00aeab47abe (width 0.15875)
   (from (symbol 8093e669-de04-46ba-a3ca-5d7a099c6c79) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction bf598623-a8e6-436a-a3f2-5b40146b9c98))
  )
  (line 7a5faeeb-8a00-4b2c-b7d9-08cce2ed9368 (width 0.15875)
   (from (junction cb3c4ae2-733f-49dc-bdc1-c2453cb76478))
   (to (junction a7801783-a587-498d-93ee-002d8d0cebfa))
  )
  (line 8761fe05-1b03-4c20-bbd4-91ab6e1b4fd2 (width 0.15875)
   (from (symbol fc349383-ccd7-4997-8c95-7f637421e0fc) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 1342395b-6330-453c-8fab-dc19e0b25840))
  )
  (line 8dbafef3-49b5-43ef-b6de-581977b2429c (width 0.15875)
   (from (junction 59e692e8-0ce0-4c5f-9765-18afdd452930))
   (to (junction cb3c4ae2-733f-49dc-bdc1-c2453cb76478))
  )
  (line 93cc0079-3385-417b-8cfd-27b845cc9089 (width 0.15875)
   (from (junction d13ebe58-491c-4474-84cf-9536e3fe4af7))
   (to (junction b9d5f104-b5d7-4cdc-ba97-88ba0d10ac59))
  )
  (line a9259d96-5e77-4ec5-aad1-09a32e38b4b7 (width 0.15875)
   (from (junction bf598623-a8e6-436a-a3f2-5b40146b9c98))
   (to (junction d13ebe58-491c-4474-84cf-9536e3fe4af7))
  )
  (line af5d2a9e-0a9f-42f2-8eb1-7d1295e91571 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin e890f654-6c17-4325-9a33-4e3ccdab0867))
   (to (junction a7801783-a587-498d-93ee-002d8d0cebfa))
  )
  (line c1628137-7d03-4fcf-a4de-35c86467de8c (width 0.15875)
   (from (symbol c4a89766-1302-4585-8835-e2a49f7b6987) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 7944bca4-a7df-4480-9aee-0a9622d1a54e))
  )
  (line cdefc8ea-a985-4834-8678-add2d0d2b7dd (width 0.15875)
   (from (symbol 4b6728b1-302a-4873-a030-43becda15b3a) (pin f42020e8-c53f-4ff2-947e-07879cf42546))
   (to (junction 1ea024a1-601b-4a84-8a7a-10de06d03eff))
  )
  (line d36659a9-91fa-4c68-a4e9-7d708fbc40f7 (width 0.15875)
   (from (junction 1342395b-6330-453c-8fab-dc19e0b25840))
   (to (junction de8b7d02-2d5b-4f9f-9a66-724eae5fbc97))
  )
  (line d4ca4cff-64b0-441c-b53d-13bd37e477d5 (width 0.15875)
   (from (junction 86ac6a42-fac1-4883-8ab0-e090cfb2861d))
   (to (junction 7944bca4-a7df-4480-9aee-0a9622d1a54e))
  )
  (line d7bebf6c-9fe5-4223-9742-5f12873ef131 (width 0.15875)
   (from (junction df576995-969d-4769-bb7d-9589ba9f0b6d))
   (to (junction 1342395b-6330-453c-8fab-dc19e0b25840))
  )
  (line e23cccf2-418d-4091-a4ba-d2c1d9a374f1 (width 0.15875)
   (from (junction de8b7d02-2d5b-4f9f-9a66-724eae5fbc97))
   (to (junction d20ba516-1af1-4996-8632-cfbd9f7ba9da))
  )
  (line e8049da8-163d-4440-9a9d-3c5e1b088461 (width 0.15875)
   (from (junction 80400a99-c883-43fa-9d54-f29053ee9e30))
   (to (junction 03e54431-060b-4602-87ed-967063f08e89))
  )
  (line eb48438d-19f0-4de3-ac5f-6ccc95810f01 (width 0.15875)
   (from (junction 03e54431-060b-4602-87ed-967063f08e89))
   (to (junction 59e692e8-0ce0-4c5f-9765-18afdd452930))
  )
  (line f990a9cc-c4aa-4659-9c49-d5d7d1dc58e2 (width 0.15875)
   (from (junction 86ac6a42-fac1-4883-8ab0-e090cfb2861d))
   (to (junction df576995-969d-4769-bb7d-9589ba9f0b6d))
  )
  (line fcf389a2-97ba-49c5-9a54-3515f42c9a94 (width 0.15875)
   (from (junction b9d5f104-b5d7-4cdc-ba97-88ba0d10ac59))
   (to (symbol bc779dfb-6921-4deb-8b43-658ce5be6918) (pin 7c8796e8-a731-4428-ad4e-a85eeeaf58d1))
  )
 )
 (netsegment 411af898-6fad-45a0-8f2b-4b9e64a52235
  (net 0cc88ed9-7ab1-4f6a-bc53-367814c24f4a)
  (junction 8a602bf2-e1cb-4213-b75f-1ae1221b62ee (position 35.56 -55.88))
  (junction c76108f9-f711-4158-bc4b-35a56fd7c66e (position 35.56 -68.58))
  (line 0908f118-3082-4c00-8d59-895c94b569af (width 0.15875)
   (from (junction 8a602bf2-e1cb-4213-b75f-1ae1221b62ee))
   (to (junction c76108f9-f711-4158-bc4b-35a56fd7c66e))
  )
  (line 568f28a1-dee6-4d4f-baea-3174e57c6bfe (width 0.15875)
   (from (symbol b6b106e3-4525-4670-8f08-b6b96f4c2bfd) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction c76108f9-f711-4158-bc4b-35a56fd7c66e))
  )
  (line 5c9e7ea0-270d-411c-86b3-96d4469429c1 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin 70424ae6-0958-49b1-9492-1c43685dae62))
   (to (junction 8a602bf2-e1cb-4213-b75f-1ae1221b62ee))
  )
 )
 (netsegment 46ec332e-438d-4a70-809b-9d55cfea9bd4
  (net fa4a56c1-cc6a-428c-b9b2-ee888d670e7c)
  (junction 5cfb937c-e694-4e75-a8aa-7e1e4385be2e (position 175.26 -139.7))
  (junction 61297381-c8fe-4338-adaf-88744155a587 (position 180.34 -139.7))
  (junction ce9a9ec1-86c9-426b-955b-a05e1e9d107f (position 185.42 -139.7))
  (line 5870f839-1760-49f1-ad34-66f47e7577ca (width 0.15875)
   (from (junction 5cfb937c-e694-4e75-a8aa-7e1e4385be2e))
   (to (symbol 11cedbd3-cfcf-4d94-add4-f3300c25822f) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line 5f226d58-9828-4670-87b8-b26f4c681996 (width 0.15875)
   (from (symbol 135073ba-4c03-48e8-83a9-757f1e6ed325) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction ce9a9ec1-86c9-426b-955b-a05e1e9d107f))
  )
  (line 87191ff6-f975-4434-826d-f185297c60f0 (width 0.15875)
   (from (symbol bfc2072a-6006-4e91-a56b-625f70a79bff) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 61297381-c8fe-4338-adaf-88744155a587))
  )
  (line 8ecf5f88-9274-4fee-aef3-b5f99876c56d (width 0.15875)
   (from (junction 61297381-c8fe-4338-adaf-88744155a587))
   (to (junction ce9a9ec1-86c9-426b-955b-a05e1e9d107f))
  )
  (line c0328e93-e295-4b54-a28d-31f107ecc322 (width 0.15875)
   (from (junction 61297381-c8fe-4338-adaf-88744155a587))
   (to (junction 5cfb937c-e694-4e75-a8aa-7e1e4385be2e))
  )
 )
 (netsegment 63bccd05-2b44-49db-9549-344c44187746
  (net 8858ff8a-6d48-4a72-9d56-d48bb68c5886)
  (junction 2da1b349-f66a-4753-9d88-a10beb90928f (position 30.48 -96.52))
  (junction d0c81f63-1880-40c4-ace3-d0bd202ffbb3 (position 30.48 -60.96))
  (line 382ef2bb-4ad0-40c3-9e3a-4c2695d3b3e2 (width 0.15875)
   (from (junction d0c81f63-1880-40c4-ace3-d0bd202ffbb3))
   (to (junction 2da1b349-f66a-4753-9d88-a10beb90928f))
  )
  (line 595af54d-e7cc-48f4-ac1d-4a8d538c5bf7 (width 0.15875)
   (from (symbol b0d4945d-9e36-40e5-a3b3-ae38b3035798) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction 2da1b349-f66a-4753-9d88-a10beb90928f))
  )
  (line ae32b558-563d-45f2-8642-8eaf41a2ac69 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin 0f317892-fafc-475d-b67d-f5b659f9bcca))
   (to (junction d0c81f63-1880-40c4-ace3-d0bd202ffbb3))
  )
 )
 (netsegment 645c8a37-bec6-434a-abe1-f7ac9de61ce1
  (net c707e92a-928d-42f7-9303-9325d8fd1939)
  (junction 1290e4e8-5963-4894-81fa-d8d22a5b8bf7 (position 22.86 -134.62))
  (line 707e1d7e-e711-4e3e-8ce2-2439051a2799 (width 0.15875)
   (from (symbol e3c0aac9-f122-4a49-97f1-24d8f95f12d8) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction 1290e4e8-5963-4894-81fa-d8d22a5b8bf7))
  )
  (line fcea12f2-bed7-4074-8cc2-947933758783 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin 013beb41-354a-4799-89c3-1ccaadbb758c))
   (to (junction 1290e4e8-5963-4894-81fa-d8d22a5b8bf7))
  )
 )
 (netsegment 72c25744-a245-46bd-b3a1-c47409743831
  (net 10a596cc-b4ee-46b1-9c9e-75394dc0d280)
  (line 81aee1a6-9e1d-4673-a4dd-0dced7187641 (width 0.15875)
   (from (symbol 84e31463-abd5-486f-b07f-6f15fcc7c682) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin 64ae8933-7775-4a85-9de7-166c457abd6a))
  )
 )
 (netsegment 7a87bf15-15f4-466f-afaf-7950e37ceeaf
  (net d348e811-dd63-4199-a8b3-92572406c4ab)
  (junction 1f39b846-f758-4e05-ad5d-e0dc6b48a583 (position 99.06 -48.26))
  (junction 76efe8cb-f8fc-48d1-8e4a-a179d1d8708d (position 137.16 -48.26))
  (junction 8b32da0c-8458-4bf6-9d16-384da0dbd221 (position 99.06 -101.6))
  (junction cf6d528b-aa1f-47ad-a26c-8827b273c858 (position 121.92 -101.6))
  (line 0e3fe05e-2a0a-422c-8003-22bcca75475f (width 0.15875)
   (from (symbol e2403870-69d7-4278-9e9b-819315bc012b) (pin 47720781-c4de-417b-87a6-1223da2c736f))
   (to (junction 76efe8cb-f8fc-48d1-8e4a-a179d1d8708d))
  )
  (line 6df2373b-292a-457a-8ed3-e0fb5a903e42 (width 0.15875)
   (from (junction 8b32da0c-8458-4bf6-9d16-384da0dbd221))
   (to (junction 1f39b846-f758-4e05-ad5d-e0dc6b48a583))
  )
  (line 85b191e6-4d45-4efd-b49d-3233b00fd5aa (width 0.15875)
   (from (junction cf6d528b-aa1f-47ad-a26c-8827b273c858))
   (to (junction 8b32da0c-8458-4bf6-9d16-384da0dbd221))
  )
  (line a0621ef6-72fd-4e68-91c4-8a72370cc955 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin cb55b615-01a0-4ef9-9493-8ece84cf465b))
   (to (junction cf6d528b-aa1f-47ad-a26c-8827b273c858))
  )
  (line cf6897be-94f2-4b4a-b0db-f5ca39711155 (width 0.15875)
   (from (junction 1f39b846-f758-4e05-ad5d-e0dc6b48a583))
   (to (junction 76efe8cb-f8fc-48d1-8e4a-a179d1d8708d))
  )
 )
 (netsegment 83dc96c0-849e-47d8-a111-2a7a47f5a2a2
  (net 696c0c3d-7c20-4fba-ae51-0065748c382f)
  (junction 322f06a9-129b-46dd-8461-861e32a9ea76 (position 215.9 -101.6))
  (junction 39e032e2-d6c0-44d6-a4fb-e3f2f1b7e266 (position 205.74 -101.6))
  (junction 8e5f7566-b0bc-4ed8-a0ae-ce7d6e34b561 (position 210.82 -101.6))
  (line 684cb6ac-f741-4ad3-98d4-c6d8cb378e16 (width 0.15875)
   (from (symbol 6bf7f225-071d-42e3-b8ca-098c93211056) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 8e5f7566-b0bc-4ed8-a0ae-ce7d6e34b561))
  )
  (line 6dee15e2-c6b0-44ca-aef2-02378b734072 (width 0.15875)
   (from (junction 8e5f7566-b0bc-4ed8-a0ae-ce7d6e34b561))
   (to (junction 322f06a9-129b-46dd-8461-861e32a9ea76))
  )
  (line a95e5aca-3a01-4b28-af1a-e35c569651fa (width 0.15875)
   (from (junction 39e032e2-d6c0-44d6-a4fb-e3f2f1b7e266))
   (to (symbol 3fb49447-c236-4bba-bf86-ca085ecdbdf4) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line da7aee6f-ddb1-4043-ba17-7eac2f77adb8 (width 0.15875)
   (from (junction 8e5f7566-b0bc-4ed8-a0ae-ce7d6e34b561))
   (to (junction 39e032e2-d6c0-44d6-a4fb-e3f2f1b7e266))
  )
  (line fac0b3f3-6350-4700-ac18-52966eb0c70c (width 0.15875)
   (from (symbol 65bea3a5-1e23-47ce-b83b-a97824626b0f) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction 322f06a9-129b-46dd-8461-861e32a9ea76))
  )
 )
 (netsegment 8699ffca-f08e-4d9b-a53f-8919514c83b2
  (net 72131bec-675d-4659-bde6-e289f4ef7282)
  (line 80cb2624-ff15-4480-a649-6656ec652c9c (width 0.15875)
   (from (symbol 81847a16-70ae-40c8-a96c-edb116c26bdd) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin 82ad71cb-71f8-4381-ab01-69bd75632103))
  )
 )
 (netsegment 89a1f0ed-b8ed-4941-b2da-89b191668f89
  (net 9927fbdf-6965-408e-a181-46a324b2f658)
  (junction 296757db-c511-4fb7-938c-4c33e87d441d (position 25.4 -66.04))
  (junction 741ed473-5f07-4f0c-a9b3-fda5feb8bb10 (position 25.4 -121.92))
  (line 49996209-fba5-4da4-a576-9d626c7e8396 (width 0.15875)
   (from (junction 296757db-c511-4fb7-938c-4c33e87d441d))
   (to (junction 741ed473-5f07-4f0c-a9b3-fda5feb8bb10))
  )
  (line 4a0a8349-dfdd-470c-9386-9ef18edd572b (width 0.15875)
   (from (symbol 805032df-7411-4ffe-b972-147d32bef66c) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction 741ed473-5f07-4f0c-a9b3-fda5feb8bb10))
  )
  (line c5d3a35a-18b1-49c5-8fd8-d0a2b88b2729 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin 22cd03f5-e36a-4ee2-adf5-b489c35a4e25))
   (to (junction 296757db-c511-4fb7-938c-4c33e87d441d))
  )
 )
 (netsegment 95481139-4b39-4783-bc60-1f4cc52a0ae4
  (net bcc7f942-323c-4efa-9e9c-ce7e7abce278)
  (junction 1028d449-eb4e-4a95-91c2-8cd9e05aa392 (position 106.68 -116.84))
  (junction 46713c97-5044-4453-915d-e83c6fb48455 (position 170.18 -111.76))
  (junction cc7dcb58-48cf-4cb3-98be-8764d7537460 (position 170.18 -114.3))
  (junction ec3f2c78-a0c8-44ad-bcb9-75ef4978365c (position 170.18 -116.84))
  (line 38a1d2c3-e926-4140-aa4c-467feb87a43a (width 0.15875)
   (from (symbol a8638444-bebb-49b2-960b-5f849ff9d014) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (junction 46713c97-5044-4453-915d-e83c6fb48455))
  )
  (line 441d1bb1-2fb3-40b3-8ab0-1da2cc71734a (width 0.15875)
   (from (symbol 0d9897a7-6d77-435a-ac99-19c04e05f1db) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction 46713c97-5044-4453-915d-e83c6fb48455))
  )
  (line 8083bf21-085c-4bf0-a5b2-741378032178 (width 0.15875)
   (from (junction cc7dcb58-48cf-4cb3-98be-8764d7537460))
   (to (junction 46713c97-5044-4453-915d-e83c6fb48455))
  )
  (line 981231f2-4f9c-4d99-9f30-c0ac55a80744 (width 0.15875)
   (from (junction cc7dcb58-48cf-4cb3-98be-8764d7537460))
   (to (junction ec3f2c78-a0c8-44ad-bcb9-75ef4978365c))
  )
  (line a636afcc-3456-4ce5-991d-d310054a0506 (width 0.15875)
   (from (junction 1028d449-eb4e-4a95-91c2-8cd9e05aa392))
   (to (junction ec3f2c78-a0c8-44ad-bcb9-75ef4978365c))
  )
  (line d317ef86-cc9b-4d5d-8fa7-0abe2696262d (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 20a4a4da-33e5-4faf-9ae0-57173e3a9a53))
   (to (junction 1028d449-eb4e-4a95-91c2-8cd9e05aa392))
  )
 )
 (netsegment 9b4d8e66-c11b-4329-b683-0c2f9341b9a5
  (net d63ded29-0579-4d8b-a2dd-be5fa6ae9e3d)
  (junction 04af8f1f-ff28-4cdd-ba84-88e0d2a47fa6 (position 129.54 -66.04))
  (junction 0ee6c566-030f-4ac3-b668-a1503c22903d (position 111.76 -66.04))
  (junction 6394db1b-5761-41a5-890f-a19d2136f7ef (position 170.18 -154.94))
  (junction ed134774-219f-4bb8-8e4d-0ee27c568378 (position 170.18 -149.86))
  (junction f28bc5ea-3614-46e8-a937-3e35a4f7bccd (position 129.54 -154.94))
  (line 29332d63-7675-47f0-9265-0666203360c4 (width 0.15875)
   (from (junction f28bc5ea-3614-46e8-a937-3e35a4f7bccd))
   (to (junction 6394db1b-5761-41a5-890f-a19d2136f7ef))
  )
  (line 421d16db-dc2d-4a6e-bd34-87d3c634aacd (width 0.15875)
   (from (junction ed134774-219f-4bb8-8e4d-0ee27c568378))
   (to (junction 6394db1b-5761-41a5-890f-a19d2136f7ef))
  )
  (line b0fb456f-d4e3-4e94-85b3-95287d9a196a (width 0.15875)
   (from (symbol bfc2072a-6006-4e91-a56b-625f70a79bff) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction ed134774-219f-4bb8-8e4d-0ee27c568378))
  )
  (line b85824b0-ead4-4ca3-8ba8-6ead2362dfa1 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin ed0e4c0c-a1a8-4abe-98e5-523fdcb9b0ef))
   (to (junction 0ee6c566-030f-4ac3-b668-a1503c22903d))
  )
  (line e1c81ba8-c638-406d-82b3-86dd52c54c71 (width 0.15875)
   (from (symbol eb45f434-8a1f-4bb4-a3c9-2fd8c5d58bf5) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (junction ed134774-219f-4bb8-8e4d-0ee27c568378))
  )
  (line f0614303-5376-45c3-b9d5-e5f4ce7c5587 (width 0.15875)
   (from (junction 0ee6c566-030f-4ac3-b668-a1503c22903d))
   (to (junction 04af8f1f-ff28-4cdd-ba84-88e0d2a47fa6))
  )
  (line fc011b1a-57cd-4f25-89a8-d265c850c909 (width 0.15875)
   (from (junction 04af8f1f-ff28-4cdd-ba84-88e0d2a47fa6))
   (to (junction f28bc5ea-3614-46e8-a937-3e35a4f7bccd))
  )
 )
 (netsegment 9d317640-a9e0-4408-bba1-71f4924689bf
  (net fb074a31-08aa-4dd7-af11-2f1169c2a4bf)
  (junction 3a51e2a4-102d-43d7-a01b-9270fce2ad5a (position 116.84 -99.06))
  (junction 970340fa-572b-4283-ae9b-96cda55d8361 (position 93.98 -99.06))
  (junction ed995a5b-1e0a-424e-a2b1-62f4b2837510 (position 93.98 -43.18))
  (line 19c4ac7f-e3b2-4528-9b96-ec11ec7f036b (width 0.15875)
   (from (junction 970340fa-572b-4283-ae9b-96cda55d8361))
   (to (junction 3a51e2a4-102d-43d7-a01b-9270fce2ad5a))
  )
  (line 1ff09967-6fb6-4799-b82f-05e0be7b3116 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin b315f13d-791d-4e5e-9614-120aa96167c9))
   (to (junction 3a51e2a4-102d-43d7-a01b-9270fce2ad5a))
  )
  (line fbf4a922-ea6b-4038-b599-0b929a604ef7 (width 0.15875)
   (from (junction 970340fa-572b-4283-ae9b-96cda55d8361))
   (to (junction ed995a5b-1e0a-424e-a2b1-62f4b2837510))
  )
  (line fd6894cb-4bf4-4274-9338-c8382556eb83 (width 0.15875)
   (from (symbol e2403870-69d7-4278-9e9b-819315bc012b) (pin e4102d93-eb84-4b8e-90b2-d935d6b63c6d))
   (to (junction ed995a5b-1e0a-424e-a2b1-62f4b2837510))
  )
 )
 (netsegment 9d456eed-661d-4796-81e2-061949ecec9e
  (net e796368f-2bc3-4e6b-8ec6-4221cd57f218)
  (junction aa69c76f-b163-430f-8378-75b13701da20 (position 119.38 -96.52))
  (junction c1528864-4257-4b76-9589-34e2388c9f9a (position 96.52 -38.1))
  (junction cdeabd19-b2da-481f-833e-569996be8612 (position 96.52 -96.52))
  (line 251ce1bc-06ad-4c16-9ef9-3b94b1f494da (width 0.15875)
   (from (symbol e2403870-69d7-4278-9e9b-819315bc012b) (pin b2fac1ac-6a19-40a5-ab07-5c5de1759293))
   (to (junction c1528864-4257-4b76-9589-34e2388c9f9a))
  )
  (line 421272c5-624c-4532-985c-a6666386c4d3 (width 0.15875)
   (from (junction cdeabd19-b2da-481f-833e-569996be8612))
   (to (junction c1528864-4257-4b76-9589-34e2388c9f9a))
  )
  (line 5feb132e-4b06-40ba-acfa-c5c578e692e5 (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin f1c7fea2-bd2f-4b6a-b57d-34f2fbd93cd6))
   (to (junction aa69c76f-b163-430f-8378-75b13701da20))
  )
  (line 790694c4-432d-4045-ad78-4c45f1e92e71 (width 0.15875)
   (from (junction cdeabd19-b2da-481f-833e-569996be8612))
   (to (junction aa69c76f-b163-430f-8378-75b13701da20))
  )
 )
 (netsegment 9d8130e4-4a19-4462-b850-37c707e2d595
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (junction 0bf44062-8173-40e5-9863-00fcc92446d1 (position 152.4 -25.4))
  (junction 1805fc3d-2cd5-4e57-b237-c75fad30eb3a (position 152.4 -50.8))
  (junction 8e457433-2f19-41d2-98da-d5ac32360500 (position 152.4 -60.96))
  (junction a1372ddf-2fa0-4264-8030-7b9b299d118e (position 152.4 -30.48))
  (junction a9fe9e5b-b2fe-4b5f-a406-7e12f99f3666 (position 152.4 -40.64))
  (junction c09b2445-04f5-4686-8c6a-b0d855f1e6e7 (position 152.4 -71.12))
  (line 088a0b7c-7203-420c-b248-6b51dd5b2de3 (width 0.15875)
   (from (junction 1805fc3d-2cd5-4e57-b237-c75fad30eb3a))
   (to (junction a9fe9e5b-b2fe-4b5f-a406-7e12f99f3666))
  )
  (line 24e61891-df2e-4a91-84f8-f8237a334033 (width 0.15875)
   (from (junction a1372ddf-2fa0-4264-8030-7b9b299d118e))
   (to (junction 0bf44062-8173-40e5-9863-00fcc92446d1))
  )
  (line 473a676d-5c52-4c63-982b-260293c76483 (width 0.15875)
   (from (junction a9fe9e5b-b2fe-4b5f-a406-7e12f99f3666))
   (to (junction a1372ddf-2fa0-4264-8030-7b9b299d118e))
  )
  (line 48728113-11ea-42ee-83ad-0f8a37cdba64 (width 0.15875)
   (from (symbol 87fc0197-cc2f-4235-b85d-f03158415baf) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction a1372ddf-2fa0-4264-8030-7b9b299d118e))
  )
  (line 49a6b742-db97-4f0e-a6b7-02d7f3725a8a (width 0.15875)
   (from (symbol 6e47615b-736f-4b46-a237-310a77f79021) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction c09b2445-04f5-4686-8c6a-b0d855f1e6e7))
  )
  (line a24a2408-5110-4f43-8381-bcfcd252cc08 (width 0.15875)
   (from (junction c09b2445-04f5-4686-8c6a-b0d855f1e6e7))
   (to (junction 8e457433-2f19-41d2-98da-d5ac32360500))
  )
  (line b305289e-f3d5-4905-8074-0885539d9783 (width 0.15875)
   (from (symbol 8f380c95-e1f9-4218-9f62-8a9bd9cbf392) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
   (to (junction 0bf44062-8173-40e5-9863-00fcc92446d1))
  )
  (line c56642e1-6363-4550-90f9-cb0b65cbad61 (width 0.15875)
   (from (symbol 36e5d84a-25e1-4187-8a6d-1f9dc26868aa) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction 1805fc3d-2cd5-4e57-b237-c75fad30eb3a))
  )
  (line d699a161-def4-4e21-b595-0939d4123d5e (width 0.15875)
   (from (junction 8e457433-2f19-41d2-98da-d5ac32360500))
   (to (junction 1805fc3d-2cd5-4e57-b237-c75fad30eb3a))
  )
  (line da5c52b5-06f1-4ebb-a1a8-6b80ee1e03e8 (width 0.15875)
   (from (symbol c4a89766-1302-4585-8835-e2a49f7b6987) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction 8e457433-2f19-41d2-98da-d5ac32360500))
  )
  (line f88d049f-9781-4722-a212-62d948667da2 (width 0.15875)
   (from (symbol fc349383-ccd7-4997-8c95-7f637421e0fc) (pin c39ca7a0-22c0-4338-83e8-98aba0874d88))
   (to (junction a9fe9e5b-b2fe-4b5f-a406-7e12f99f3666))
  )
 )
 (netsegment 9d908d67-73bb-402e-99ba-b37c77760d6a
  (net c8880beb-7885-4113-b1bd-f5b52de09c2c)
  (junction 5e29ed63-8b28-4e1d-89fa-b98f341d1ac2 (position 27.94 -63.5))
  (junction 99515209-13f5-44ff-841e-db379c68b418 (position 27.94 -109.22))
  (line 20dbc075-174f-4087-a4a2-87dc66398308 (width 0.15875)
   (from (junction 5e29ed63-8b28-4e1d-89fa-b98f341d1ac2))
   (to (junction 99515209-13f5-44ff-841e-db379c68b418))
  )
  (line 85141b2d-247f-4009-a788-88ccf62d60e8 (width 0.15875)
   (from (symbol 6b68b53b-adbd-479e-a8d2-21f12a522d03) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction 99515209-13f5-44ff-841e-db379c68b418))
  )
  (line a405a523-b4cd-4dbd-a03c-3fb06948bedb (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin 4e0ac191-ec61-4396-865c-0a06b6c2765e))
   (to (junction 5e29ed63-8b28-4e1d-89fa-b98f341d1ac2))
  )
 )
 (netsegment a39ba79a-0f15-45dd-827a-f63ec79dddf3
  (net 9f25fab6-52ee-4670-9b5e-ab477e103419)
  (junction 26870ea2-c06c-492e-a2a0-8b85086eddb5 (position 236.22 -127.0))
  (junction 49ee37c4-a099-4e3c-879c-48b568eb6d6b (position 144.78 -88.9))
  (junction 54242613-9582-4b43-a076-10fc7d214ab9 (position 175.26 -127.0))
  (junction 5527beda-a1eb-4e90-afdb-70cc4d47ed0f (position 205.74 -88.9))
  (junction 79de6037-1cfc-41ae-a734-3ff9c2fa5f9e (position 205.74 -127.0))
  (junction 7f609ff1-c776-4585-9c7d-518192ae390c (position 137.16 -88.9))
  (junction 95143d95-1496-4d21-bd49-6d1922fd5c7c (position 154.94 -88.9))
  (junction 9aaf5e4d-683c-4bb8-b26e-b74bbdb11a13 (position 251.46 -127.0))
  (junction a26118ae-6d2e-4a09-9cea-f186d2f116aa (position 246.38 -88.9))
  (junction a9f1c30f-88c0-4c48-b0db-c2a5901fcbfc (position 215.9 -88.9))
  (junction abe86b5f-e6e5-42d5-8d02-34770b45dd7f (position 246.38 -127.0))
  (junction b9079ccc-f1fa-49bf-81bc-6f6c90bc982c (position 154.94 -127.0))
  (junction bdd26d87-8620-4767-bd33-43810c5300b7 (position 185.42 -88.9))
  (junction c7b8d63a-84d6-4437-ac7c-34782b0bd6de (position 215.9 -127.0))
  (junction c94e9bff-bd3b-4646-a25e-dd39cc4375b0 (position 236.22 -88.9))
  (junction ca2fe941-5d01-4a1f-afdf-068685dbd989 (position 185.42 -127.0))
  (junction d4d74302-69f5-427f-b05b-9c8f586307df (position 251.46 -88.9))
  (junction e6251e84-3249-479d-b2a2-67b725b1d060 (position 175.26 -88.9))
  (junction f21f236b-7e93-4329-86ee-bde7af8a531b (position 144.78 -127.0))
  (line 0256eaf6-bb61-4ec7-9d63-d0d74f991832 (width 0.15875)
   (from (junction c94e9bff-bd3b-4646-a25e-dd39cc4375b0))
   (to (junction a9f1c30f-88c0-4c48-b0db-c2a5901fcbfc))
  )
  (line 0b376260-8eef-4ae5-a664-d003d15161a1 (width 0.15875)
   (from (junction a26118ae-6d2e-4a09-9cea-f186d2f116aa))
   (to (junction d4d74302-69f5-427f-b05b-9c8f586307df))
  )
  (line 0d65c37c-29fa-4424-9add-ac4d15535840 (width 0.15875)
   (from (symbol 135073ba-4c03-48e8-83a9-757f1e6ed325) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction ca2fe941-5d01-4a1f-afdf-068685dbd989))
  )
  (line 1695130a-d99c-4312-9a48-f184e102f2d4 (width 0.15875)
   (from (symbol f5548af8-3ba9-4aae-8e17-8da6013ae019) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction b9079ccc-f1fa-49bf-81bc-6f6c90bc982c))
  )
  (line 2fb7808d-cd57-469a-a8d3-5d21de404242 (width 0.15875)
   (from (junction abe86b5f-e6e5-42d5-8d02-34770b45dd7f))
   (to (junction 9aaf5e4d-683c-4bb8-b26e-b74bbdb11a13))
  )
  (line 333d12f1-16e7-4448-bb91-cc36aef56d82 (width 0.15875)
   (from (symbol 3fb49447-c236-4bba-bf86-ca085ecdbdf4) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction 5527beda-a1eb-4e90-afdb-70cc4d47ed0f))
  )
  (line 39b26792-f146-4c79-8e37-691974e95bd2 (width 0.15875)
   (from (symbol a0753e6f-7cfd-4f41-9a12-4d54d887177d) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction f21f236b-7e93-4329-86ee-bde7af8a531b))
  )
  (line 3cd1b9a6-04a7-4e95-befd-358a667f0f55 (width 0.15875)
   (from (junction abe86b5f-e6e5-42d5-8d02-34770b45dd7f))
   (to (junction 26870ea2-c06c-492e-a2a0-8b85086eddb5))
  )
  (line 3e472a06-4fc6-4ceb-a67f-b405d88f6303 (width 0.15875)
   (from (symbol 06d361dd-394a-4b48-b7c7-64b502f00016) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction e6251e84-3249-479d-b2a2-67b725b1d060))
  )
  (line 43a0ee0f-f014-4965-915e-ae71be78f2b0 (width 0.15875)
   (from (symbol 5fc55e0d-693f-42d0-a363-7921b177fa53) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction 79de6037-1cfc-41ae-a734-3ff9c2fa5f9e))
  )
  (line 502e10b3-6921-48bd-a6cc-218471ac230b (width 0.15875)
   (from (junction c7b8d63a-84d6-4437-ac7c-34782b0bd6de))
   (to (junction 79de6037-1cfc-41ae-a734-3ff9c2fa5f9e))
  )
  (line 58e56186-77b5-41ec-8701-fbde59cafdb8 (width 0.15875)
   (from (junction bdd26d87-8620-4767-bd33-43810c5300b7))
   (to (junction e6251e84-3249-479d-b2a2-67b725b1d060))
  )
  (line 5ce96dac-f210-485b-9700-e49a88772ed1 (width 0.15875)
   (from (symbol 65bea3a5-1e23-47ce-b83b-a97824626b0f) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction a9f1c30f-88c0-4c48-b0db-c2a5901fcbfc))
  )
  (line 62c91ea5-34a5-43d9-ac32-877f81cdf4d3 (width 0.15875)
   (from (symbol 36093cbc-dcbd-4da3-8bff-d6f53879f962) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction c94e9bff-bd3b-4646-a25e-dd39cc4375b0))
  )
  (line 6e476688-b5e6-4692-96a4-f2334e51ca68 (width 0.15875)
   (from (symbol 2639aa09-394d-441f-99a8-ebcd6057bdaa) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction a26118ae-6d2e-4a09-9cea-f186d2f116aa))
  )
  (line 6ec3ecf6-f7d3-4f4a-bf55-2d38f271599e (width 0.15875)
   (from (junction e6251e84-3249-479d-b2a2-67b725b1d060))
   (to (junction 95143d95-1496-4d21-bd49-6d1922fd5c7c))
  )
  (line 86936508-8192-45e6-9815-dbb86c551492 (width 0.15875)
   (from (junction 95143d95-1496-4d21-bd49-6d1922fd5c7c))
   (to (junction 49ee37c4-a099-4e3c-879c-48b568eb6d6b))
  )
  (line 95642ad7-cb4c-4fcd-bcfc-4c916ce84cb6 (width 0.15875)
   (from (junction b9079ccc-f1fa-49bf-81bc-6f6c90bc982c))
   (to (junction f21f236b-7e93-4329-86ee-bde7af8a531b))
  )
  (line a2327833-948e-4eeb-a7bb-fb1bf4498a10 (width 0.15875)
   (from (symbol 52432312-47de-4940-a417-73f4757891bf) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction 95143d95-1496-4d21-bd49-6d1922fd5c7c))
  )
  (line a2370bd3-deab-4297-ab73-9a56e357016c (width 0.15875)
   (from (symbol 4a766d83-238e-4228-a67d-d56dd2889924) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction bdd26d87-8620-4767-bd33-43810c5300b7))
  )
  (line a665fe26-ffb9-4cd8-87a8-6308e20d262e (width 0.15875)
   (from (junction ca2fe941-5d01-4a1f-afdf-068685dbd989))
   (to (junction 54242613-9582-4b43-a076-10fc7d214ab9))
  )
  (line b235c8e0-90ff-4d1c-9fde-cdab02367b45 (width 0.15875)
   (from (junction c7b8d63a-84d6-4437-ac7c-34782b0bd6de))
   (to (junction 26870ea2-c06c-492e-a2a0-8b85086eddb5))
  )
  (line b3120c07-c481-4cee-b329-12b58eebc07a (width 0.15875)
   (from (symbol f85a0fdd-7fed-45e3-98a3-377d7ab1f36b) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction c7b8d63a-84d6-4437-ac7c-34782b0bd6de))
  )
  (line b4badf90-4a13-4525-84e9-7ea238f16775 (width 0.15875)
   (from (symbol 11cedbd3-cfcf-4d94-add4-f3300c25822f) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction 54242613-9582-4b43-a076-10fc7d214ab9))
  )
  (line c7c006ec-38ec-438a-af65-06b7de5f7024 (width 0.15875)
   (from (junction d4d74302-69f5-427f-b05b-9c8f586307df))
   (to (junction 9aaf5e4d-683c-4bb8-b26e-b74bbdb11a13))
  )
  (line d27ac85c-e640-4655-a891-66b1ceaa8a1a (width 0.15875)
   (from (junction 5527beda-a1eb-4e90-afdb-70cc4d47ed0f))
   (to (junction a9f1c30f-88c0-4c48-b0db-c2a5901fcbfc))
  )
  (line d48c0af5-651a-4cc9-a460-6ab74c855a9a (width 0.15875)
   (from (symbol bdc9f477-f974-475e-b9ce-c0c708d78fa9) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction abe86b5f-e6e5-42d5-8d02-34770b45dd7f))
  )
  (line da14565d-7509-412c-8962-deb33361154e (width 0.15875)
   (from (symbol b889a6b7-b396-416b-8fd1-de9e39c2fcfa) (pin 48dad2d5-4392-4d8f-870e-9e69d9727b83))
   (to (junction 7f609ff1-c776-4585-9c7d-518192ae390c))
  )
  (line efb69238-1019-4f31-97e0-e5f8737a0b2c (width 0.15875)
   (from (junction c94e9bff-bd3b-4646-a25e-dd39cc4375b0))
   (to (junction a26118ae-6d2e-4a09-9cea-f186d2f116aa))
  )
  (line f28ce3ff-88e3-4ac9-9800-9841b12aab71 (width 0.15875)
   (from (symbol ef614469-6e6d-44f4-a38c-bf01516c62b1) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction 26870ea2-c06c-492e-a2a0-8b85086eddb5))
  )
  (line f3a6795f-d9db-4fc8-bb79-8f5933735ec7 (width 0.15875)
   (from (junction 49ee37c4-a099-4e3c-879c-48b568eb6d6b))
   (to (junction 7f609ff1-c776-4585-9c7d-518192ae390c))
  )
  (line f6370684-fcb1-42c4-bed4-38e0c0557f5c (width 0.15875)
   (from (junction ca2fe941-5d01-4a1f-afdf-068685dbd989))
   (to (junction 79de6037-1cfc-41ae-a734-3ff9c2fa5f9e))
  )
  (line f8bcf440-a1fc-44f2-a364-2539ca97967c (width 0.15875)
   (from (junction b9079ccc-f1fa-49bf-81bc-6f6c90bc982c))
   (to (junction 54242613-9582-4b43-a076-10fc7d214ab9))
  )
  (line fa5bf112-8216-4202-bc03-5493c475604b (width 0.15875)
   (from (junction 5527beda-a1eb-4e90-afdb-70cc4d47ed0f))
   (to (junction bdd26d87-8620-4767-bd33-43810c5300b7))
  )
  (line fdea7e0c-a4ef-4f07-b649-fe1433c56d78 (width 0.15875)
   (from (symbol 8bfca755-bf4a-4366-8e5e-ddefb1730aaf) (pin fa167eba-70af-48df-a772-299542d38e9b))
   (to (junction 49ee37c4-a099-4e3c-879c-48b568eb6d6b))
  )
 )
 (netsegment ce4fb090-8fa9-4191-b389-48fe67ddf5ee
  (net 88b03d91-3993-4c36-b5d8-a20d2eb96ccc)
  (junction 2ddf51d9-ca58-48ab-80d3-4ad53449c02e (position 180.34 -101.6))
  (junction 591fd341-273e-4aaf-8709-e6d4e761d04a (position 175.26 -101.6))
  (junction f07e154b-3873-47ab-bfce-ff0e1ed1c083 (position 185.42 -101.6))
  (line 4dedfc21-8e80-43ba-8321-76c1517d8fd8 (width 0.15875)
   (from (junction 2ddf51d9-ca58-48ab-80d3-4ad53449c02e))
   (to (junction f07e154b-3873-47ab-bfce-ff0e1ed1c083))
  )
  (line 6cdadbd1-7390-4582-928b-c4d3902853d4 (width 0.15875)
   (from (junction 591fd341-273e-4aaf-8709-e6d4e761d04a))
   (to (symbol 06d361dd-394a-4b48-b7c7-64b502f00016) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line a0fb77d2-b372-489a-96c8-ebd2d0522e4d (width 0.15875)
   (from (junction 2ddf51d9-ca58-48ab-80d3-4ad53449c02e))
   (to (junction 591fd341-273e-4aaf-8709-e6d4e761d04a))
  )
  (line ddbeb0c7-a602-4646-9a68-73ad5819f570 (width 0.15875)
   (from (symbol 0d9897a7-6d77-435a-ac99-19c04e05f1db) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 2ddf51d9-ca58-48ab-80d3-4ad53449c02e))
  )
  (line e4cfd381-aa52-4d83-a0b6-0f4de8d913e8 (width 0.15875)
   (from (symbol 4a766d83-238e-4228-a67d-d56dd2889924) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction f07e154b-3873-47ab-bfce-ff0e1ed1c083))
  )
 )
 (netsegment d95fe7a9-e8af-485c-8259-79aced864313
  (net 1836000f-5078-4ffc-8553-df54a3f27c06)
  (junction 3ac7ad6e-3352-4bfa-8fd1-6ed0aa940de3 (position 27.94 -48.26))
  (junction 5c66307e-9ba2-435d-b004-378fafde1b1a (position 27.94 -30.48))
  (line 04ab46dd-a79c-41ba-97f0-905a5e0b7d20 (width 0.15875)
   (from (symbol e8b146cd-6c29-4f95-98f6-386b2b08f85e) (pin ebbf1fd9-e566-4a0b-a5e0-7b1635387a13))
   (to (junction 5c66307e-9ba2-435d-b004-378fafde1b1a))
  )
  (line 2bbee236-a889-4c10-b3fe-b25bce4e1905 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin e90890e4-8a64-44e6-942e-6ebf083e0649))
   (to (junction 3ac7ad6e-3352-4bfa-8fd1-6ed0aa940de3))
  )
  (line a9925a43-6fc6-485e-b8d8-c931174545dc (width 0.15875)
   (from (junction 3ac7ad6e-3352-4bfa-8fd1-6ed0aa940de3))
   (to (junction 5c66307e-9ba2-435d-b004-378fafde1b1a))
  )
 )
 (netsegment e208023f-9853-427c-a031-2c370f9c9e97
  (net f4de1e45-9e99-496a-b17c-b4c8d33fb003)
  (junction 0141d726-ac93-4831-9eff-0f832a5a584d (position 53.34 -53.34))
  (junction 126f3b69-aa14-459f-a0cd-9ed1368b9b0d (position 40.64 -20.32))
  (junction 324d1774-0665-4158-8dc9-e43b5573f6a3 (position 25.4 -45.72))
  (junction 34eecb00-f2b4-43ae-9ea4-00353827e82f (position 53.34 -81.28))
  (junction 6d87f1f7-c259-4624-bdf4-2b2f344e0885 (position 53.34 -66.04))
  (junction 783bc3b9-5fff-4e4b-a70f-1e7157c1c0a8 (position 53.34 -132.08))
  (junction 7bead4d1-efaf-4ed8-baf5-bd8aef97ae75 (position 53.34 -119.38))
  (junction 811b3259-266b-45e7-943f-f154d5520d09 (position 53.34 -106.68))
  (junction 94dad609-797a-4794-ac03-3f737e107ef4 (position 25.4 -20.32))
  (junction 9bc17a75-bac4-44e6-90f8-ccbfe132ed3c (position 25.4 -40.64))
  (junction b3d2ec27-a9b8-4eff-b2ef-0181620c3ce3 (position 53.34 -40.64))
  (junction d87b5d04-3da1-4ea5-ac1b-b0861b394c89 (position 53.34 -15.24))
  (junction dd7ceea1-9bb1-4c43-bce2-44baadaa4fa0 (position 53.34 -93.98))
  (junction e310d824-ccff-463b-bf04-8c90965ec4df (position 40.64 -15.24))
  (line 029a06a1-34a1-4786-9cb6-bd4c73f60018 (width 0.15875)
   (from (symbol 3bfd473f-60c4-43e8-8bd0-ffb42c741a30) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction 34eecb00-f2b4-43ae-9ea4-00353827e82f))
  )
  (line 0b0f0c7c-973f-4312-9831-d1ae5adea7d7 (width 0.15875)
   (from (symbol b0d4945d-9e36-40e5-a3b3-ae38b3035798) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction dd7ceea1-9bb1-4c43-bce2-44baadaa4fa0))
  )
  (line 1c831d1b-d9d0-411b-a032-ebec14b508d7 (width 0.15875)
   (from (junction 6d87f1f7-c259-4624-bdf4-2b2f344e0885))
   (to (junction 0141d726-ac93-4831-9eff-0f832a5a584d))
  )
  (line 27a23b49-9c55-4a2b-b133-9795cea086d9 (width 0.15875)
   (from (junction 7bead4d1-efaf-4ed8-baf5-bd8aef97ae75))
   (to (junction 783bc3b9-5fff-4e4b-a70f-1e7157c1c0a8))
  )
  (line 3bf01630-7b48-48ed-822b-dd9d44d049c2 (width 0.15875)
   (from (symbol 6b68b53b-adbd-479e-a8d2-21f12a522d03) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction 811b3259-266b-45e7-943f-f154d5520d09))
  )
  (line 405839e3-5894-489d-816a-dfab3bb78910 (width 0.15875)
   (from (symbol e3c0aac9-f122-4a49-97f1-24d8f95f12d8) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction 783bc3b9-5fff-4e4b-a70f-1e7157c1c0a8))
  )
  (line 43476b3b-a660-48c5-961d-ed08c139390a (width 0.15875)
   (from (junction dd7ceea1-9bb1-4c43-bce2-44baadaa4fa0))
   (to (junction 34eecb00-f2b4-43ae-9ea4-00353827e82f))
  )
  (line 48190161-3f70-4cb9-88c2-a08aacb9c605 (width 0.15875)
   (from (symbol 7284c020-2471-4037-a601-2362fcf29a05) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction b3d2ec27-a9b8-4eff-b2ef-0181620c3ce3))
  )
  (line 83044fc7-fdd5-4511-b52c-eb042af96012 (width 0.15875)
   (from (junction 9bc17a75-bac4-44e6-90f8-ccbfe132ed3c))
   (to (junction 94dad609-797a-4794-ac03-3f737e107ef4))
  )
  (line 8bf7cac7-8029-429e-a631-5b4900bb2a83 (width 0.15875)
   (from (junction e310d824-ccff-463b-bf04-8c90965ec4df))
   (to (junction d87b5d04-3da1-4ea5-ac1b-b0861b394c89))
  )
  (line 9ea6dc8b-a949-4f69-aef6-68056e356dce (width 0.15875)
   (from (symbol 96a92916-87b2-453c-a24c-fc5594713190) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction 0141d726-ac93-4831-9eff-0f832a5a584d))
  )
  (line ac3a3290-894a-44db-86df-8bd841620516 (width 0.15875)
   (from (symbol b6b106e3-4525-4670-8f08-b6b96f4c2bfd) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction 6d87f1f7-c259-4624-bdf4-2b2f344e0885))
  )
  (line b342ac91-2fb6-4bcd-aaa3-75dd77092165 (width 0.15875)
   (from (junction 9bc17a75-bac4-44e6-90f8-ccbfe132ed3c))
   (to (junction 324d1774-0665-4158-8dc9-e43b5573f6a3))
  )
  (line b7f4d5ea-2278-4dd4-9798-2ddb55a6a114 (width 0.15875)
   (from (junction 0141d726-ac93-4831-9eff-0f832a5a584d))
   (to (junction b3d2ec27-a9b8-4eff-b2ef-0181620c3ce3))
  )
  (line d39f9ce2-b748-4df6-8eaa-1e7760cacc11 (width 0.15875)
   (from (junction 7bead4d1-efaf-4ed8-baf5-bd8aef97ae75))
   (to (junction 811b3259-266b-45e7-943f-f154d5520d09))
  )
  (line d8e71326-ef29-43a0-a552-b7c4b179f55d (width 0.15875)
   (from (junction 126f3b69-aa14-459f-a0cd-9ed1368b9b0d))
   (to (junction e310d824-ccff-463b-bf04-8c90965ec4df))
  )
  (line dd1b4ed0-0bf4-4edf-ad56-4c558125cf65 (width 0.15875)
   (from (junction b3d2ec27-a9b8-4eff-b2ef-0181620c3ce3))
   (to (junction d87b5d04-3da1-4ea5-ac1b-b0861b394c89))
  )
  (line e1e1c12b-6dac-4856-a108-cc994b4121de (width 0.15875)
   (from (junction 811b3259-266b-45e7-943f-f154d5520d09))
   (to (junction dd7ceea1-9bb1-4c43-bce2-44baadaa4fa0))
  )
  (line f07eefc1-6272-42c8-9f9d-56a96d78ab67 (width 0.15875)
   (from (junction 126f3b69-aa14-459f-a0cd-9ed1368b9b0d))
   (to (symbol e8b146cd-6c29-4f95-98f6-386b2b08f85e) (pin b25141b8-f02a-427c-89be-1c0baab1303d))
  )
  (line f6eab37e-75a1-4484-9dda-9d4dead52905 (width 0.15875)
   (from (junction 34eecb00-f2b4-43ae-9ea4-00353827e82f))
   (to (junction 6d87f1f7-c259-4624-bdf4-2b2f344e0885))
  )
  (line f83044e4-5147-4e81-8743-7fef231373c2 (width 0.15875)
   (from (junction 126f3b69-aa14-459f-a0cd-9ed1368b9b0d))
   (to (junction 94dad609-797a-4794-ac03-3f737e107ef4))
  )
  (line f908b7c2-9cb2-45bf-8446-16883ec448dd (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin dc001b18-a3f0-4d9f-baa9-3e2d6aab1cc8))
   (to (junction 324d1774-0665-4158-8dc9-e43b5573f6a3))
  )
  (line f9357e95-ec04-42b5-9c63-537a3913fadb (width 0.15875)
   (from (symbol 805032df-7411-4ffe-b972-147d32bef66c) (pin b5140ac9-13b5-419d-8fc8-839028a616e5))
   (to (junction 7bead4d1-efaf-4ed8-baf5-bd8aef97ae75))
  )
 )
 (netsegment e9cce978-add4-4d0d-9b56-0b003721ce7d
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (line f069cd06-b3e3-45db-94bd-2cfb6858f11c (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin 731f37a0-151a-4660-a428-148ab152f484))
   (to (symbol 7fa15227-7bce-48ff-9f17-448969656f79) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
  )
 )
 (netsegment ed33be72-e4af-4d32-9023-d5e174829e5e
  (net 07a06b2e-43ee-4eb7-b312-22fd6399beab)
  (line a90b98b1-c4fc-42f5-b294-fe88cd1d180d (width 0.15875)
   (from (symbol fcd3f65b-67c6-4cd9-b3e6-c28417e66b02) (pin abcc319b-d09f-437b-a624-3dcf3eff5792))
   (to (symbol e8b146cd-6c29-4f95-98f6-386b2b08f85e) (pin a5291c98-3729-47c7-b3d5-173a8ccea1e5))
  )
 )
 (netsegment ee66afda-a53e-4323-9c85-6930bef51317
  (net 040de378-880f-441c-870a-29594b041ada)
  (junction 442a978e-7a57-4879-8fd4-1235dccdb673 (position 149.86 -139.7))
  (junction 9aa7bf22-b513-4fcc-a45c-98d568af3e73 (position 154.94 -139.7))
  (junction b296026f-7238-4cd2-9be0-ee2f41d80d86 (position 147.32 -139.7))
  (line 38819794-91ca-40ec-934d-fa0d972b69a9 (width 0.15875)
   (from (symbol f5548af8-3ba9-4aae-8e17-8da6013ae019) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction 9aa7bf22-b513-4fcc-a45c-98d568af3e73))
  )
  (line 4cca5d0b-aa23-4764-a352-ed106e4a554b (width 0.15875)
   (from (junction 442a978e-7a57-4879-8fd4-1235dccdb673))
   (to (junction 9aa7bf22-b513-4fcc-a45c-98d568af3e73))
  )
  (line 55874344-d5eb-4007-abd7-a06b151a3599 (width 0.15875)
   (from (symbol f2e02f2e-b70e-41bc-b305-04588931d517) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction 442a978e-7a57-4879-8fd4-1235dccdb673))
  )
  (line e2e3ba5a-66d0-4aaf-a689-7ad8bfecc41f (width 0.15875)
   (from (junction b296026f-7238-4cd2-9be0-ee2f41d80d86))
   (to (symbol a0753e6f-7cfd-4f41-9a12-4d54d887177d) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line ec21201b-2efb-4414-80f2-b06c86168917 (width 0.15875)
   (from (junction 442a978e-7a57-4879-8fd4-1235dccdb673))
   (to (junction b296026f-7238-4cd2-9be0-ee2f41d80d86))
  )
 )
 (netsegment ef56c465-5945-420f-83aa-6aea41d2b66e
  (net 510139b0-5b7b-4254-8b9d-003afc9e5274)
  (junction 5cbb42f6-b0e5-46af-a9d5-d1ead573c983 (position 99.06 -25.4))
  (junction c5d4c5a1-dec6-451c-997e-ce07d35d3405 (position 99.06 -22.86))
  (line 8b716671-5210-40d0-9048-43b6fb7a6804 (width 0.15875)
   (from (symbol 84e31463-abd5-486f-b07f-6f15fcc7c682) (pin 83d40864-0a14-496e-a08d-faeb2bbd9af6))
   (to (junction 5cbb42f6-b0e5-46af-a9d5-d1ead573c983))
  )
  (line accb26a1-7357-4e42-a80d-01a32b82e7d6 (width 0.15875)
   (from (symbol bef31cac-19e6-4838-a79b-e9709b874c1d) (pin ddf9e498-a477-4110-b90d-7e4592148613))
   (to (junction c5d4c5a1-dec6-451c-997e-ce07d35d3405))
  )
  (line d8957065-4d13-4e8f-85c5-940c7eaf0739 (width 0.15875)
   (from (junction c5d4c5a1-dec6-451c-997e-ce07d35d3405))
   (to (junction 5cbb42f6-b0e5-46af-a9d5-d1ead573c983))
  )
  (line da269c5d-c432-4e3b-bb0e-d9c3390696b3 (width 0.15875)
   (from (symbol bc779dfb-6921-4deb-8b43-658ce5be6918) (pin d1587bb1-f5be-451c-b0ea-9298743dfc3d))
   (to (junction 5cbb42f6-b0e5-46af-a9d5-d1ead573c983))
  )
 )
 (netsegment f322a1f5-b6f5-48c1-9abf-7dd8a22c43eb
  (net 6183b9b9-8433-4e01-9196-0ffe79bbf5f3)
  (junction 05506215-03f7-4d06-ade2-9625d83307fb (position 200.66 -157.48))
  (junction 16a2df85-fa4b-46cc-8f17-22ba8290dd32 (position 200.66 -149.86))
  (junction 25b30528-7976-47b5-bee2-c8b5c3d98f22 (position 132.08 -157.48))
  (junction 3240a11a-b1be-4039-b093-b74e089d4a69 (position 109.22 -63.5))
  (junction 9c095e4a-a8b7-4248-8bd1-eef5aa965727 (position 132.08 -63.5))
  (line 373104b4-48f2-4498-83d3-487bae2b70cb (width 0.15875)
   (from (junction 9c095e4a-a8b7-4248-8bd1-eef5aa965727))
   (to (junction 25b30528-7976-47b5-bee2-c8b5c3d98f22))
  )
  (line 56513024-5c8a-465f-a3f9-8c80be5ef760 (width 0.15875)
   (from (junction 3240a11a-b1be-4039-b093-b74e089d4a69))
   (to (junction 9c095e4a-a8b7-4248-8bd1-eef5aa965727))
  )
  (line 5a419245-fbe1-4d8b-b2a5-8429a274786a (width 0.15875)
   (from (symbol 006ed4a7-391d-4b26-bb5e-a21c5ff037eb) (pin cf0f9cb1-1218-4cac-b3ed-ace10babfbe3))
   (to (junction 3240a11a-b1be-4039-b093-b74e089d4a69))
  )
  (line b37216f9-91a0-4f7f-ab6f-acb85275097b (width 0.15875)
   (from (junction 16a2df85-fa4b-46cc-8f17-22ba8290dd32))
   (to (junction 05506215-03f7-4d06-ade2-9625d83307fb))
  )
  (line b576fa7d-c435-40e8-a535-36441f32cafa (width 0.15875)
   (from (symbol bafd2a42-3527-44a9-98f6-3492cde69c3b) (pin 6b08ad4a-ea43-420c-af39-4b08609e9532))
   (to (junction 16a2df85-fa4b-46cc-8f17-22ba8290dd32))
  )
  (line c0549038-670f-4f52-8020-4d9a32e31a82 (width 0.15875)
   (from (junction 25b30528-7976-47b5-bee2-c8b5c3d98f22))
   (to (junction 05506215-03f7-4d06-ade2-9625d83307fb))
  )
  (line fe9272c1-f23a-46e8-8e38-b6649efd728e (width 0.15875)
   (from (symbol e55618a0-877b-4c79-af92-f8c7710bd8fd) (pin 2b3dd7f8-043b-4d43-9302-9300ba356de7))
   (to (junction 16a2df85-fa4b-46cc-8f17-22ba8290dd32))
  )
 )
 (netsegment f396c5fe-55c7-47b8-b25e-962546e1a680
  (net 2eb90cca-49df-406c-8b70-8455e2e83c7e)
  (junction 8fb9f517-7da9-4989-9760-c2b3c2bc2c76 (position 205.74 -139.7))
  (junction a6a94d1d-3260-4b4a-ba27-35010be978d5 (position 210.82 -139.7))
  (junction d45f3b46-1f62-42aa-b10e-c8ab85f8aad9 (position 215.9 -139.7))
  (line 024ea5c9-3f8f-4b7c-a0cb-e310ee3c154c (width 0.15875)
   (from (junction a6a94d1d-3260-4b4a-ba27-35010be978d5))
   (to (junction d45f3b46-1f62-42aa-b10e-c8ab85f8aad9))
  )
  (line 28d0bafd-3066-42b3-9c2b-f4eec1ad9944 (width 0.15875)
   (from (junction a6a94d1d-3260-4b4a-ba27-35010be978d5))
   (to (junction 8fb9f517-7da9-4989-9760-c2b3c2bc2c76))
  )
  (line 4e3c2dda-3841-424d-8efa-ecd7686d124c (width 0.15875)
   (from (junction 8fb9f517-7da9-4989-9760-c2b3c2bc2c76))
   (to (symbol 5fc55e0d-693f-42d0-a363-7921b177fa53) (pin ba358cff-2dd4-47e7-89b2-c3f9e2266e1b))
  )
  (line 57a2c80d-21ff-4922-a897-12a889dd9e95 (width 0.15875)
   (from (symbol bafd2a42-3527-44a9-98f6-3492cde69c3b) (pin 55014667-bbfc-410a-b0eb-cacd978d1e08))
   (to (junction a6a94d1d-3260-4b4a-ba27-35010be978d5))
  )
  (line 6ca68b6b-c57f-46de-9e26-25433ca96947 (width 0.15875)
   (from (symbol f85a0fdd-7fed-45e3-98a3-377d7ab1f36b) (pin cd50cc1e-a0d2-460e-818b-c9a4cc03ec42))
   (to (junction d45f3b46-1f62-42aa-b10e-c8ab85f8aad9))
  )
 )
 (netsegment f6d8c667-e7bc-42d5-a80b-eb4b7310a399
  (net d95e94f8-c344-4bf2-99a4-e37b1792ff2e)
  (junction 0117f635-951b-4a38-ab5e-61a8dc630eb7 (position 38.1 -53.34))
  (junction 066b894c-853e-4e9b-a423-34d0b999b321 (position 38.1 -55.88))
  (line c8f298f4-2ecd-4016-a65c-547690e79713 (width 0.15875)
   (from (junction 0117f635-951b-4a38-ab5e-61a8dc630eb7))
   (to (junction 066b894c-853e-4e9b-a423-34d0b999b321))
  )
  (line db5336a9-1630-4735-b5f5-99f4bdb4888c (width 0.15875)
   (from (symbol 96a92916-87b2-453c-a24c-fc5594713190) (pin 717bbdd9-261c-40c9-b4dd-9730228f6af6))
   (to (junction 066b894c-853e-4e9b-a423-34d0b999b321))
  )
  (line e715f9f6-5a86-43d7-8a79-c4c947c5b292 (width 0.15875)
   (from (symbol dacb5db7-a4a3-4208-89d0-62bd1bd8120d) (pin ebcf07e1-c572-4a97-a10c-d924951cf18a))
   (to (junction 0117f635-951b-4a38-ab5e-61a8dc630eb7))
  )
 )
 (polygon 6b4369f8-ec1a-4ea8-97a8-cc859a207480 (layer sch_guide)
  (width 0.3) (fill false) (grab_area false)
  (vertex (position 139.7 -68.58) (angle 0.0))
  (vertex (position 111.76 -109.22) (angle 0.0))
  (vertex (position 91.44 -109.22) (angle 0.0))
  (vertex (position 91.44 -35.56) (angle 0.0))
  (vertex (position 134.62 -30.48) (angle 0.0))
  (vertex (position 139.7 -30.48) (angle 0.0))
  (vertex (position 139.7 -68.58) (angle 0.0))
 )
 (polygon 76b8b94d-6e10-43d1-b27f-1c1ae9dd9443 (layer sch_guide)
  (width 0.3) (fill false) (grab_area false)
  (vertex (position 139.7 -68.58) (angle 0.0))
  (vertex (position 139.7 -81.28) (angle 0.0))
  (vertex (position 254.0 -81.28) (angle 0.0))
  (vertex (position 254.0 -165.1) (angle 0.0))
  (vertex (position 111.76 -165.1) (angle 0.0))
  (vertex (position 111.76 -109.22) (angle 0.0))
  (vertex (position 139.7 -68.58) (angle 0.0))
 )
 (polygon 8ab3a660-26d3-425b-a6d4-20c663525658 (layer sch_guide)
  (width 0.3) (fill false) (grab_area false)
  (vertex (position 35.56 -35.56) (angle 0.0))
  (vertex (position 55.88 -35.56) (angle 0.0))
  (vertex (position 55.88 -68.58) (angle 0.0))
  (vertex (position 58.42 -68.58) (angle 0.0))
  (vertex (position 58.42 -91.44) (angle 0.0))
  (vertex (position 55.88 -91.44) (angle 0.0))
  (vertex (position 55.88 -137.16) (angle 0.0))
  (vertex (position 35.56 -137.16) (angle 0.0))
  (vertex (position 35.56 -35.56) (angle 0.0))
 )
 (polygon fbe3cd5e-cbfb-4436-bbc5-abdec7fb6038 (layer sch_guide)
  (width 0.3) (fill false) (grab_area false)
  (vertex (position 165.1 -81.28) (angle 0.0))
  (vertex (position 165.1 -2.54) (angle 0.0))
  (vertex (position 38.1 -2.54) (angle 0.0))
  (vertex (position 38.1 -35.56) (angle 0.0))
  (vertex (position 55.88 -35.56) (angle 0.0))
  (vertex (position 55.88 -68.58) (angle 0.0))
  (vertex (position 91.44 -68.58) (angle 0.0))
  (vertex (position 91.44 -35.56) (angle 0.0))
  (vertex (position 134.62 -30.48) (angle 0.0))
  (vertex (position 139.7 -30.48) (angle 0.0))
  (vertex (position 139.7 -81.28) (angle 0.0))
  (vertex (position 165.1 -81.28) (angle 0.0))
 )
 (text 1d4e60b2-1819-4b67-8434-87d2c3657003 (layer sch_comments) (value "GPIO 22")
  (align left bottom) (height 1.5) (position 124.46 -86.36) (rotation 90.0)
 )
 (text 224b2ca8-0ff7-4133-903e-108868bf3249 (layer sch_comments) (value "GPIO 27")
  (align left bottom) (height 1.5) (position 106.68 -93.98) (rotation 90.0)
 )
 (text 2d18fc7e-17f2-4406-bae4-a9dcaf1fc941 (layer sch_comments) (value "GPIO 22")
  (align left bottom) (height 1.5) (position 104.14 -93.98) (rotation 90.0)
 )
 (text 2d19614c-bec1-48ad-ba01-ab472a7bd2ec (layer sch_comments) (value "24 VAC (3A max)")
  (align left bottom) (height 1.5) (position 25.4 -20.32) (rotation 0.0)
 )
 (text 34bd85d8-71fc-4098-a7bf-49902900c34e (layer sch_comments) (value "GPIO 17")
  (align left bottom) (height 1.5) (position 109.22 -93.98) (rotation 90.0)
 )
 (text 3b7a532d-f308-4a4c-af97-bd6bce6b2ee6 (layer sch_documentation) (value "HVAC IN")
  (align left bottom) (height 4.0) (position 12.7 -60.96) (rotation 90.0)
 )
 (text 3d4684c3-726c-4aa8-812d-b05a6baa4c9b (layer sch_documentation) (value "Relay Drivers")
  (align left bottom) (height 4.0) (position 177.8 -86.36) (rotation 0.0)
 )
 (text 4091ea49-ca3f-43de-a906-4330a4f224f5 (layer sch_documentation) (value "{{PROJECT}}")
  (align left bottom) (height 7.0) (position 2.54 -7.62) (rotation 0.0)
 )
 (text 474e1f4d-9a7c-4f5b-b073-c4f09b1d8308 (layer sch_comments) (value "GPIO 15")
  (align left bottom) (height 1.5) (position 111.76 -73.66) (rotation 270.0)
 )
 (text 4816d230-bf7d-4b95-a9d9-729c0eace376 (layer sch_comments) (value "3V3")
  (align left bottom) (height 1.5) (position 121.92 -93.98) (rotation 90.0)
 )
 (text 4853f2d2-79fb-4c00-8287-fdf2fc7a0be8 (layer sch_documentation) (value "Relay Contacts")
  (align left bottom) (height 4.0) (position 53.34 -71.12) (rotation 270.0)
 )
 (text 77ee22ce-568a-453d-a20e-b94e7f6afbbc (layer sch_comments) (value "GPIO 2")
  (align left bottom) (height 1.5) (position 119.38 -93.98) (rotation 90.0)
 )
 (text 79682d8e-08eb-449c-80ee-5b3757a3e333 (layer sch_comments) (value "GPIO 3")
  (align left bottom) (height 1.5) (position 116.84 -93.98) (rotation 90.0)
 )
 (text 7b93b11d-ad77-4fd5-ac2c-06c10bc8d44c (layer sch_documentation) (value "Power Subsystem")
  (align left bottom) (height 4.0) (position 60.96 -7.62) (rotation 0.0)
 )
 (text 7fde6b0a-07c8-4c04-8b12-007ef7fab1b3 (layer sch_comments) (value "GPIO 14")
  (align left bottom) (height 1.5) (position 114.3 -73.66) (rotation 270.0)
 )
 (text a21ce2c9-d6f8-4e2c-9178-569860218236 (layer sch_comments) (value "GND")
  (align left bottom) (height 1.5) (position 111.76 -93.98) (rotation 90.0)
 )
 (text a4ff859f-839e-435e-ba7e-37b23a1cd1f3 (layer sch_documentation) (value "RPI Connection")
  (align left bottom) (height 4.0) (position 109.22 -60.96) (rotation 0.0)
 )
 (text a6454299-3ec5-43bf-8c2d-3addcf8d5f20 (layer sch_comments) (value "GPIO 4")
  (align left bottom) (height 1.5) (position 114.3 -93.98) (rotation 90.0)
 )
 (text ba845074-956d-4261-943f-760c1aa682d9 (layer sch_comments) (value "24V Rectified DC")
  (align left bottom) (height 1.5) (position 88.9 -38.1) (rotation 270.0)
 )
 (text bdc78364-403a-46dc-809f-762bec73b244 (layer sch_comments) (value "GPIO 23")
  (align left bottom) (height 1.5) (position 104.14 -73.66) (rotation 270.0)
 )
 (text c197ecde-544e-4d37-9a6b-93ddd4c80d27 (layer sch_comments) (value "GND")
  (align left bottom) (height 1.5) (position 106.68 -73.66) (rotation 270.0)
 )
 (text ccfa9812-3626-4173-a952-67ffcce47a21 (layer sch_comments) (value "COM")
  (align left bottom) (height 1.5) (position 27.94 -30.48) (rotation 0.0)
 )
 (text d87912bd-e04d-4346-b571-a5d44dc0b17a (layer sch_comments) (value "5V DC")
  (align left bottom) (height 1.5) (position 137.16 -25.4) (rotation 0.0)
 )
 (text d92c7fa3-4397-493c-abd9-3f8729851402 (layer sch_comments) (value "GPIO 18")
  (align left bottom) (height 1.5) (position 109.22 -73.66) (rotation 270.0)
 )
)