summaryrefslogtreecommitdiff
path: root/proxdongl3.kicad_pcb
blob: 8d569266dd55cba2a4d2c7bbf3dae1021c2453a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
(kicad_pcb
	(version 20241229)
	(generator "pcbnew")
	(generator_version "9.0")
	(general
		(thickness 1.6)
		(legacy_teardrops no)
	)
	(paper "A4")
	(layers
		(0 "F.Cu" signal)
		(2 "B.Cu" signal)
		(9 "F.Adhes" user "F.Adhesive")
		(11 "B.Adhes" user "B.Adhesive")
		(13 "F.Paste" user)
		(15 "B.Paste" user)
		(5 "F.SilkS" user "F.Silkscreen")
		(7 "B.SilkS" user "B.Silkscreen")
		(1 "F.Mask" user)
		(3 "B.Mask" user)
		(17 "Dwgs.User" user "User.Drawings")
		(19 "Cmts.User" user "User.Comments")
		(21 "Eco1.User" user "User.Eco1")
		(23 "Eco2.User" user "User.Eco2")
		(25 "Edge.Cuts" user)
		(27 "Margin" user)
		(31 "F.CrtYd" user "F.Courtyard")
		(29 "B.CrtYd" user "B.Courtyard")
		(35 "F.Fab" user)
		(33 "B.Fab" user)
		(39 "User.1" user)
		(41 "User.2" user)
		(43 "User.3" user)
		(45 "User.4" user)
	)
	(setup
		(pad_to_mask_clearance 0)
		(allow_soldermask_bridges_in_footprints no)
		(tenting front back)
		(pcbplotparams
			(layerselection 0x00000000_00000000_55555555_5755f5ff)
			(plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000)
			(disableapertmacros no)
			(usegerberextensions yes)
			(usegerberattributes yes)
			(usegerberadvancedattributes yes)
			(creategerberjobfile yes)
			(dashed_line_dash_ratio 12.000000)
			(dashed_line_gap_ratio 3.000000)
			(svgprecision 4)
			(plotframeref no)
			(mode 1)
			(useauxorigin no)
			(hpglpennumber 1)
			(hpglpenspeed 20)
			(hpglpendiameter 15.000000)
			(pdf_front_fp_property_popups yes)
			(pdf_back_fp_property_popups yes)
			(pdf_metadata yes)
			(pdf_single_document no)
			(dxfpolygonmode yes)
			(dxfimperialunits yes)
			(dxfusepcbnewfont yes)
			(psnegative no)
			(psa4output no)
			(plot_black_and_white yes)
			(sketchpadsonfab no)
			(plotpadnumbers no)
			(hidednponfab no)
			(sketchdnponfab yes)
			(crossoutdnponfab yes)
			(subtractmaskfromsilk no)
			(outputformat 1)
			(mirror no)
			(drillshape 0)
			(scaleselection 1)
			(outputdirectory "out/")
		)
	)
	(net 0 "")
	(net 1 "unconnected-(J1-P14-Pad14)")
	(net 2 "/ETH7")
	(net 3 "/ETH6")
	(net 4 "unconnected-(J1-P15-Pad15)")
	(net 5 "/ETH1")
	(net 6 "unconnected-(J1-Pad7)")
	(net 7 "/ETH8")
	(net 8 "/ETH5")
	(net 9 "unconnected-(J1-Pad8)")
	(net 10 "unconnected-(J1-P13-Pad13)")
	(net 11 "/ETH4")
	(net 12 "/ETH3")
	(net 13 "unconnected-(J1-Pad6)")
	(net 14 "/ETH2")
	(net 15 "unconnected-(J1-Pad5)")
	(footprint ""
		(layer "F.Cu")
		(uuid "0353ed88-d888-41d5-8672-184bfe3d2a43")
		(at 101.3 60.67)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "d51b5fc7-b899-461f-8bc0-e484ee45ff71")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "c9d4a551-b8a0-414a-bdcb-09fd02e6e9a8")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "604e24cf-a0d2-4719-8614-62a53be04e6d")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "a99161b6-0081-4e92-b843-cab053b2f42e")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "8" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 9 "unconnected-(J1-Pad8)")
			(pinfunction "8")
			(pintype "passive")
			(uuid "24a50991-5ebb-44f8-a3d4-173b099b76cf")
		)
		(embedded_fonts no)
	)
	(footprint ""
		(layer "F.Cu")
		(uuid "2932e663-2424-46d1-b14b-2a37f9c80ea7")
		(at 116.2 64.825)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "20a3e318-c02b-4d7f-9651-82a97775a7ab")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "2f1cc500-b9b6-42a7-9a18-dd56cb9e4cab")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "79687323-722d-4bc3-86de-196b7dda2267")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "4ce5ac62-e1e3-42c5-9e98-fabdf61e39e0")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "14" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 1 "unconnected-(J1-P14-Pad14)")
			(pinfunction "P14")
			(pintype "passive")
			(uuid "15a2efc8-5ade-46c4-b5ec-453b68a5efe1")
		)
		(embedded_fonts no)
	)
	(footprint ""
		(layer "F.Cu")
		(uuid "8403a45b-41b6-4e57-b858-17f99b1126d9")
		(at 116.2 67.595)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "52f4325e-ed8c-4280-90b4-40889777072c")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "b3112fce-b96c-4118-93f9-773d11df700f")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "4f7105c7-e061-4b90-9885-9c985ef3bbde")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "20a77410-a152-4145-b7d7-d36c6bbfb4e3")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "13" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 10 "unconnected-(J1-P13-Pad13)")
			(pinfunction "P13")
			(pintype "passive")
			(uuid "4eb45e6d-73c9-4369-8a2c-c75c770c52b2")
		)
		(embedded_fonts no)
	)
	(footprint ""
		(layer "F.Cu")
		(uuid "9ad6a8e5-ebba-4c52-8e48-c1ac60abbbc1")
		(at 101.304188 63.44)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "82e0a5b2-fd63-4b9e-8f76-b7fe196d7bab")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "dad1b688-9d72-4425-a8e2-02c1e140ffc1")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "0e6884b8-1f41-447d-b518-55f1127c7131")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "c757b899-eb49-493a-9191-6743f11eea58")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "7" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 6 "unconnected-(J1-Pad7)")
			(pinfunction "7")
			(pintype "passive")
			(uuid "46019ac5-ff76-440f-91bd-2538e7c9c4d8")
		)
		(embedded_fonts no)
	)
	(footprint ""
		(layer "F.Cu")
		(uuid "b26c2954-d3ba-4c88-b9f9-549b9560befd")
		(at 101.3 68.98)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "9db6e317-9df9-47f1-a500-e029e9895812")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "2475dfa5-f8f3-4f2e-946d-577e5064bfbf")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "38d79dd3-f4aa-47d3-976d-2fb049011689")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "be957511-007b-4aee-8e53-133e7a6a2ec7")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "5" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 15 "unconnected-(J1-Pad5)")
			(pinfunction "5")
			(pintype "passive")
			(uuid "e32752b7-eb9f-4528-b840-b4d8b49fbfb1")
		)
		(embedded_fonts no)
	)
	(footprint ""
		(layer "F.Cu")
		(uuid "c7b0991d-8a9e-4378-8563-3444d19640a0")
		(at 116.2 62.055)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "9be6439f-ac00-44f0-869e-780017eed795")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "987a7dcd-76dd-4f6a-b1b0-d2a8c930cf9d")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "53a59575-36bd-43fe-b099-f8a70dadb55b")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "0ef11823-4719-48b0-bce0-a303903460d2")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "15" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 4 "unconnected-(J1-P15-Pad15)")
			(pinfunction "P15")
			(pintype "passive")
			(uuid "1dc84494-166b-44bd-af31-f7ed289b5e29")
		)
		(embedded_fonts no)
	)
	(footprint ""
		(layer "F.Cu")
		(uuid "de89dd51-17b3-40e5-a072-f11f7e1aa765")
		(at 101.3 66.21)
		(property "Reference" ""
			(at 0 0 0)
			(layer "F.SilkS")
			(uuid "86913b99-3730-41db-8e39-68b6276a1aee")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Value" ""
			(at 0 0 0)
			(layer "F.Fab")
			(uuid "6ef5ab8e-80ba-44c4-83dc-0f8ec9deda08")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "5dc9de06-33cc-4741-b5c2-59e6c501d320")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" ""
			(at 0 0 0)
			(layer "F.Fab")
			(hide yes)
			(uuid "3d9d7e83-9555-4148-97ae-9316df107237")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(attr board_only)
		(pad "6" thru_hole circle
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 13 "unconnected-(J1-Pad6)")
			(pinfunction "6")
			(pintype "passive")
			(uuid "eeb686c2-f248-45f0-93fc-b682f43491ad")
		)
		(embedded_fonts no)
	)
	(footprint "Connector_RJ:RJ45_OST_PJ012-8P8CX_Vertical"
		(layer "F.Cu")
		(uuid "fe5167af-1fc9-4835-9c93-949aa7fe1208")
		(at 113.23 94.1 180)
		(descr "RJ45 vertical connector https://www.on-shore.com/wp-content/uploads/PJ012-8P8CX.pdf")
		(tags "RJ45 PJ012")
		(property "Reference" "J2"
			(at -2.27 0.1 180)
			(layer "F.SilkS")
			(hide yes)
			(uuid "3ae18b77-b77d-4b1f-bf1b-6bfa0c038cec")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property "Value" "RJ45"
			(at 4.59 2.54 180)
			(layer "F.Fab")
			(hide yes)
			(uuid "d7a37115-79cd-4f08-b600-13440855a16f")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
			)
		)
		(property "Datasheet" "~"
			(at 0 0 180)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "808d2431-5894-4604-8989-83e0eceee589")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property "Description" "RJ connector, 8P8C (8 positions 8 connected)"
			(at 0 0 180)
			(unlocked yes)
			(layer "F.Fab")
			(hide yes)
			(uuid "e6cf1616-7e6c-4aed-8bbe-e0148c7672fe")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
			)
		)
		(property ki_fp_filters "8P8C* RJ31* RJ32* RJ33* RJ34* RJ35* RJ41* RJ45* RJ49* RJ61*")
		(path "/03904daf-44fc-49e6-938e-d8c4bb1f30f9")
		(sheetname "/")
		(sheetfile "proxdongl3.kicad_sch")
		(attr through_hole)
		(fp_line
			(start 12.31 12.95)
			(end -3.42 12.95)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "77d0e43f-cbaa-4495-b8d2-625b684a4bea")
		)
		(fp_line
			(start 12.31 -3.79)
			(end 12.31 12.95)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "902500f2-15f5-4b92-b9d9-dbbf74a0b3b7")
		)
		(fp_line
			(start 12.3 -3.79)
			(end -3.42 -3.79)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "eb194ff6-8428-493d-b611-44609ea8b474")
		)
		(fp_line
			(start -3.42 -3.79)
			(end -3.42 12.95)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "21cd6123-0ca1-426a-a85d-193b7897c323")
		)
		(fp_line
			(start -3.5 0)
			(end -4 -0.5)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "476b3dca-0609-4a5a-815c-a7b87e0d14a9")
		)
		(fp_line
			(start -4 0.5)
			(end -3.5 0)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "37ca8582-5e9f-472c-aa7f-2af260a99d71")
		)
		(fp_line
			(start -4 -0.5)
			(end -4 0.5)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.SilkS")
			(uuid "23fc4474-e7b0-489d-9106-390094ef694c")
		)
		(fp_line
			(start 12.69 -4.17)
			(end 12.69 13.33)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "3d8bce6a-53ac-461d-aa2a-f157c020071c")
		)
		(fp_line
			(start -3.8 13.33)
			(end 12.69 13.33)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "d05e607f-e379-4958-a4d8-90dbca0d8028")
		)
		(fp_line
			(start -3.8 -4.17)
			(end 12.69 -4.17)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "ca61d21c-a563-4703-b851-e2930a9a06e5")
		)
		(fp_line
			(start -3.8 -4.17)
			(end -3.8 13.33)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "F.CrtYd")
			(uuid "972c995b-fd2f-477d-89bc-41dbd7624b8e")
		)
		(fp_line
			(start 12.195 12.83)
			(end -3.305 12.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "a9f382cb-ea4b-43fe-991e-ab2ac22ff4a1")
		)
		(fp_line
			(start 12.195 -3.67)
			(end 12.195 12.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "65e3154a-c418-40f3-a82e-8a325ffec452")
		)
		(fp_line
			(start 12.195 -3.67)
			(end -3.305 -3.67)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "5faa3d3c-1252-4bb2-bad6-8d019ce42f9c")
		)
		(fp_line
			(start -3.305 -3.67)
			(end -3.305 12.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "92e0a30a-b58c-4a1a-9fec-7a45a4a716d3")
		)
		(fp_line
			(start -3.5 0)
			(end -4 -0.5)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "19edd1c4-e113-43ca-b4e0-d669077213f7")
		)
		(fp_line
			(start -4 0.5)
			(end -3.5 0)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "fa1b95f4-bd12-4898-843b-610ffbbb568a")
		)
		(fp_line
			(start -4 -0.5)
			(end -4 0.5)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "F.Fab")
			(uuid "683248b4-433d-4954-9586-85c2668e1471")
		)
		(pad "" np_thru_hole circle
			(at -1.27 6.35 180)
			(size 3.65 3.65)
			(drill 3.45)
			(layers "*.Cu" "*.SilkS" "*.Mask")
			(uuid "e797624c-4a79-40b2-837e-b0bea50d128a")
		)
		(pad "" np_thru_hole circle
			(at 10.16 6.35 180)
			(size 3.65 3.65)
			(drill 3.45)
			(layers "*.Cu" "*.SilkS" "*.Mask")
			(uuid "28ffb8e8-5b6d-4fd8-a894-18f659404d86")
		)
		(pad "1" thru_hole rect
			(at 0 0 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 5 "/ETH1")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "8f1f4570-ec1c-4bc9-b7d9-35881321cbe6")
		)
		(pad "2" thru_hole circle
			(at 1.27 -2.54 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 14 "/ETH2")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "8fbc8f75-5dd4-4ed1-bbc3-048d8d28d6e9")
		)
		(pad "3" thru_hole circle
			(at 2.54 0 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 12 "/ETH3")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "f46aa6b8-5096-481b-b601-05084752b648")
		)
		(pad "4" thru_hole circle
			(at 3.81 -2.54 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 11 "/ETH4")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "e95d9595-6a99-4fbd-91e5-f3a6d4558b34")
		)
		(pad "5" thru_hole circle
			(at 5.08 0 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 8 "/ETH5")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "4cba3918-ecb5-4190-a28e-eb81a75b41dd")
		)
		(pad "6" thru_hole circle
			(at 6.35 -2.54 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 3 "/ETH6")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "99b5af50-8128-45de-b794-9c68344b06c4")
		)
		(pad "7" thru_hole circle
			(at 7.62 0 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 2 "/ETH7")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "3fb4ae5e-7a8b-4229-9895-192a50d0fc09")
		)
		(pad "8" thru_hole circle
			(at 8.89 -2.54 180)
			(size 1.5 1.5)
			(drill 0.9)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 7 "/ETH8")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "82dbfd62-4005-4453-be92-a68afd0a9301")
		)
		(embedded_fonts no)
		(model "${KICAD9_3DMODEL_DIR}/Connector_RJ.3dshapes/RJ45_OST_PJ012-8P8CX_Vertical.step"
			(offset
				(xyz 0 0 0)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(footprint "Connector_Dsub:DSUB-15_Socket_Vertical_P2.77x2.84mm"
		(layer "B.Cu")
		(uuid "1444201c-dcef-431a-b651-1ebe7508891a")
		(at 107.385 80.06 -90)
		(descr "15-pin D-Sub connector, straight/vertical, THT-mount, socket (female), pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf")
		(tags "15-pin D-Sub connector straight vertical THT socket pitch 2.77x2.84mm mounting holes distance 33.3mm")
		(property "Reference" "J1"
			(at -0.06 1.885 90)
			(layer "B.SilkS")
			(hide yes)
			(uuid "8bca298c-0314-4716-81eb-eb0e23e6d740")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
				(justify mirror)
			)
		)
		(property "Value" "DA15_Socket"
			(at -9.695 -8.73 90)
			(layer "B.Fab")
			(hide yes)
			(uuid "64418e9f-cc75-4fa5-a72d-bc30a44e7cc9")
			(effects
				(font
					(size 1 1)
					(thickness 0.15)
				)
				(justify mirror)
			)
		)
		(property "Datasheet" "~"
			(at 0 0 90)
			(layer "B.Fab")
			(hide yes)
			(uuid "9656d13b-fee4-4adf-b2ea-6f1706aa512d")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
				(justify mirror)
			)
		)
		(property "Description" "15-pin D-SUB connector, socket (female) (low-density/2 columns)"
			(at 0 0 90)
			(layer "B.Fab")
			(hide yes)
			(uuid "30167474-a718-47fa-9ab0-a28fafb49bac")
			(effects
				(font
					(size 1.27 1.27)
					(thickness 0.15)
				)
				(justify mirror)
			)
		)
		(property ki_fp_filters "DSUB*Socket*")
		(path "/96e4f012-8032-4bf4-8b89-d09e2358c224")
		(sheetname "/")
		(sheetfile "proxdongl3.kicad_sch")
		(attr through_hole)
		(fp_line
			(start -0.248149 3.216506)
			(end 0.251851 3.216506)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "94f346dd-e827-4449-86bf-658930d327a7")
		)
		(fp_line
			(start 0.251851 3.216506)
			(end 0.001851 2.783493)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "9cc6163c-aede-467b-8cee-bfd8a4fcecac")
		)
		(fp_line
			(start 0.001851 2.783493)
			(end -0.248149 3.216506)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "d691954f-5ecb-41d3-8464-225464a6c059")
		)
		(fp_line
			(start -20.076689 2.59)
			(end 0.686689 2.59)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "059fc2f0-983d-4fd7-8cd6-e416143b3d2a")
		)
		(fp_line
			(start 2.32147 0.641744)
			(end 1.492733 -4.058256)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "427fe5f2-c75d-4e69-9dba-759297e508d9")
		)
		(fp_line
			(start -20.882733 -4.058256)
			(end -21.71147 0.641744)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "e3bc4142-40ad-44ca-9382-128677351152")
		)
		(fp_line
			(start -0.142048 -5.43)
			(end -19.247952 -5.43)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "d274ab51-3f6d-4c6e-ac5a-d5df115b60a8")
		)
		(fp_arc
			(start -20.076689 2.59)
			(mid -21.348323 1.997027)
			(end -21.71147 0.641744)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "2ae44039-f694-4528-87ac-e3c8286e570f")
		)
		(fp_arc
			(start 2.32147 0.641744)
			(mid 1.958323 1.997027)
			(end 0.686689 2.59)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "becca506-8d18-4257-8f6d-7572ecbce3de")
		)
		(fp_arc
			(start -20.882733 -4.058256)
			(mid -20.31498 -5.041634)
			(end -19.247952 -5.43)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "9d00d2f3-45f4-40dc-a9d7-4aa34b5c457f")
		)
		(fp_arc
			(start -0.142048 -5.43)
			(mid 0.92498 -5.041634)
			(end 1.492733 -4.058256)
			(stroke
				(width 0.12)
				(type solid)
			)
			(layer "B.SilkS")
			(uuid "57ea83f2-7502-49e0-a752-ad5ab147e295")
		)
		(fp_line
			(start -29.8 5.33)
			(end -29.8 -8.17)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "B.CrtYd")
			(uuid "3a82caed-e46e-4dc2-b88c-5b52cf46d6c6")
		)
		(fp_line
			(start 10.41 5.33)
			(end -29.8 5.33)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "B.CrtYd")
			(uuid "c5bc56f4-caee-4188-b0d9-b643cfa802aa")
		)
		(fp_line
			(start -29.8 -8.17)
			(end 10.41 -8.17)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "B.CrtYd")
			(uuid "c2732549-a724-457a-9890-93fbc725e860")
		)
		(fp_line
			(start 10.41 -8.17)
			(end 10.41 5.33)
			(stroke
				(width 0.05)
				(type solid)
			)
			(layer "B.CrtYd")
			(uuid "0d25ef4c-2412-4bb9-875a-8295cbc91ca1")
		)
		(fp_line
			(start -28.295 4.83)
			(end 8.905 4.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "0fe99611-0a88-4aac-a8e6-4dce3cb865f2")
		)
		(fp_line
			(start 9.905 3.83)
			(end 9.905 -6.67)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "acfde9fc-f36e-47e7-8ec9-42d4af8658ac")
		)
		(fp_line
			(start -20.088194 2.53)
			(end 0.698194 2.53)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "ae0ab3e7-027f-4db1-bb41-3d3a7e41de71")
		)
		(fp_line
			(start 2.273887 0.652163)
			(end 1.44515 -4.047837)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "6fa26652-d438-41f6-a0da-0aabebac3cbf")
		)
		(fp_line
			(start -20.83515 -4.047837)
			(end -21.663887 0.652163)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "d950cc25-7144-4654-a518-08c0332d07a3")
		)
		(fp_line
			(start -0.130543 -5.37)
			(end -19.259457 -5.37)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "d8cf5cac-4ee3-4844-8ebf-6fa441276275")
		)
		(fp_line
			(start -29.295 -6.67)
			(end -29.295 3.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "eec57772-bb8d-438c-9b54-c7f70857f6ba")
		)
		(fp_line
			(start 8.905 -7.67)
			(end -28.295 -7.67)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "8cf169fd-0fe8-4ec5-9e19-5978eeccec48")
		)
		(fp_arc
			(start -28.295 4.83)
			(mid -29.002107 4.537107)
			(end -29.295 3.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "0fd2f7a5-b35f-484c-b7c6-c50276b4dd12")
		)
		(fp_arc
			(start 9.905 3.83)
			(mid 9.612107 4.537107)
			(end 8.905 4.83)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "266a7cdb-51b8-4833-b49a-4122f8ab093f")
		)
		(fp_arc
			(start -20.088194 2.53)
			(mid -21.313865 1.95846)
			(end -21.663887 0.652163)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "7558eb9d-1baa-4a4d-ab56-729b83a68f6b")
		)
		(fp_arc
			(start 2.273887 0.652163)
			(mid 1.923865 1.95846)
			(end 0.698194 2.53)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "a1046b43-b48f-4d89-a8c6-05126f6bdc34")
		)
		(fp_arc
			(start -20.83515 -4.047837)
			(mid -20.287918 -4.995671)
			(end -19.259457 -5.37)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "3fcd4f0d-8e44-485a-b4b6-d6d605c1edb9")
		)
		(fp_arc
			(start -0.130543 -5.37)
			(mid 0.897918 -4.995671)
			(end 1.44515 -4.047837)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "d17bfb16-4aba-4a4e-b47c-90d1f0e824cf")
		)
		(fp_arc
			(start -29.295 -6.67)
			(mid -29.002107 -7.377107)
			(end -28.295 -7.67)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "f5035940-35f3-40de-bb2c-20f8b36aa8a1")
		)
		(fp_arc
			(start 8.905 -7.67)
			(mid 9.612107 -7.377107)
			(end 9.905 -6.67)
			(stroke
				(width 0.1)
				(type solid)
			)
			(layer "B.Fab")
			(uuid "7e30986c-04a9-4a80-b1d1-55d909212132")
		)
		(pad "1" thru_hole rect
			(at 0 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 5 "/ETH1")
			(pinfunction "1")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "614843ba-a038-4978-a205-14bdb0613403")
		)
		(pad "2" thru_hole circle
			(at -2.77 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 14 "/ETH2")
			(pinfunction "2")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "e8129f2c-59fc-4929-a8f4-7f3b15fd4280")
		)
		(pad "3" thru_hole circle
			(at -5.54 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 12 "/ETH3")
			(pinfunction "3")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "d3452d33-d32c-47fa-a512-bf9b225d0746")
		)
		(pad "4" thru_hole circle
			(at -8.31 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 3 "/ETH6")
			(pinfunction "4")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "3dd1f875-caed-4d31-9627-993e20074070")
		)
		(pad "5" thru_hole circle
			(at -11.08 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 15 "unconnected-(J1-Pad5)")
			(pinfunction "5")
			(pintype "passive")
			(uuid "f4a2975f-8921-453d-85f9-5a535c83844e")
		)
		(pad "6" thru_hole circle
			(at -13.85 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 13 "unconnected-(J1-Pad6)")
			(pinfunction "6")
			(pintype "passive")
			(uuid "ddf2e765-36e1-4f06-894b-c9c7a8744b1f")
		)
		(pad "7" thru_hole circle
			(at -16.62 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 6 "unconnected-(J1-Pad7)")
			(pinfunction "7")
			(pintype "passive")
			(uuid "7f5259f5-5eb4-4239-80f7-20f5171b6cbe")
		)
		(pad "8" thru_hole circle
			(at -19.39 0 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 9 "unconnected-(J1-Pad8)")
			(pinfunction "8")
			(pintype "passive")
			(uuid "c83896d2-70f6-4d9a-a885-d132ed27a429")
		)
		(pad "9" thru_hole circle
			(at -1.385 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 7 "/ETH8")
			(pinfunction "P9")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "d313eb92-791e-4ea4-a8c6-88738dd848e0")
		)
		(pad "10" thru_hole circle
			(at -4.155 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 2 "/ETH7")
			(pinfunction "P10")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "89f725d9-0bfc-4e02-9ba8-f5b0f07e87bd")
		)
		(pad "11" thru_hole circle
			(at -6.925 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 8 "/ETH5")
			(pinfunction "P111")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "3427930a-8359-45ba-a982-a620228d6491")
		)
		(pad "12" thru_hole circle
			(at -9.695 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 11 "/ETH4")
			(pinfunction "P12")
			(pintype "passive")
			(teardrops
				(best_length_ratio 0.5)
				(max_length 1)
				(best_width_ratio 1)
				(max_width 2)
				(curved_edges yes)
				(filter_ratio 0.9)
				(enabled yes)
				(allow_two_segments yes)
				(prefer_zone_connections yes)
			)
			(uuid "89f38064-b884-4b02-8036-3bd869294802")
		)
		(pad "13" thru_hole circle
			(at -12.465 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 10 "unconnected-(J1-P13-Pad13)")
			(pinfunction "P13")
			(pintype "passive")
			(uuid "cda6df6c-827d-4cdd-9c52-e0215597f9aa")
		)
		(pad "14" thru_hole circle
			(at -15.235 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 1 "unconnected-(J1-P14-Pad14)")
			(pinfunction "P14")
			(pintype "passive")
			(uuid "0b0f83e6-f691-4cc5-871b-46de0e3853da")
		)
		(pad "15" thru_hole circle
			(at -18.005 -2.84 270)
			(size 1.6 1.6)
			(drill 1)
			(layers "*.Cu" "*.Mask")
			(remove_unused_layers no)
			(net 4 "unconnected-(J1-P15-Pad15)")
			(pinfunction "P15")
			(pintype "passive")
			(uuid "520d8da4-5692-4c66-8ee4-6bd7aabc574c")
		)
		(embedded_fonts no)
		(model "${KICAD9_3DMODEL_DIR}/Connector_Dsub.3dshapes/DSUB-15_Socket_Vertical_P2.77x2.84mm.step"
			(offset
				(xyz 0 0 0)
			)
			(scale
				(xyz 1 1 1)
			)
			(rotate
				(xyz 0 0 0)
			)
		)
	)
	(gr_line
		(start 114.5 56.5)
		(end 103 56.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "021ef750-f317-4603-bf23-b5cb50e00420")
	)
	(gr_line
		(start 100 97.5)
		(end 100 51)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "0db6ce03-0979-466c-8d70-b73e485d4a8f")
	)
	(gr_line
		(start 117.5 51)
		(end 117.5 97.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "10be46f5-97dc-400b-ad24-0b8b87306653")
	)
	(gr_arc
		(start 115.5 55.5)
		(mid 115.207107 56.207107)
		(end 114.5 56.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "22e4f643-9040-40fc-9376-5286c1521cca")
	)
	(gr_line
		(start 101 50)
		(end 116.5 50)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "413b3a9e-9bd9-4831-9365-cd63dbd28d7f")
	)
	(gr_arc
		(start 116.5 50)
		(mid 117.207107 50.292893)
		(end 117.5 51)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "52b734ef-74dd-43b6-888f-18443ecf54e3")
	)
	(gr_arc
		(start 114.5 52)
		(mid 115.207107 52.292893)
		(end 115.5 53)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "5f16d652-3b7c-40a2-8b7f-03eecc9e2438")
	)
	(gr_arc
		(start 101 98.5)
		(mid 100.292893 98.207107)
		(end 100 97.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "6a17951b-3130-4b4a-9fe8-2b07478bf2be")
	)
	(gr_line
		(start 102 55.5)
		(end 102 53)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "73c0560d-d510-459b-ac5b-444727fde7ab")
	)
	(gr_line
		(start 116.5 98.5)
		(end 101 98.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "79c46bbb-04e4-4a4a-967a-27117ae08049")
	)
	(gr_line
		(start 103 52)
		(end 114.5 52)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "7ee0c211-580e-4894-8542-cf4985a5e67b")
	)
	(gr_arc
		(start 102 53)
		(mid 102.292893 52.292893)
		(end 103 52)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "87f561fa-5993-40f8-8da0-b98a26a3470b")
	)
	(gr_line
		(start 115.5 53)
		(end 115.5 55.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "9b13839c-79dc-4605-a582-9dced6b67940")
	)
	(gr_arc
		(start 117.5 97.5)
		(mid 117.207107 98.207107)
		(end 116.5 98.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "dbd91a20-56fa-46cf-ba01-69e810d4c7e5")
	)
	(gr_arc
		(start 103 56.5)
		(mid 102.292893 56.207107)
		(end 102 55.5)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "e48e5af3-ca18-41d2-8172-ea126ac3bc14")
	)
	(gr_arc
		(start 100 51)
		(mid 100.292893 50.292893)
		(end 101 50)
		(stroke
			(width 0.05)
			(type default)
		)
		(layer "Edge.Cuts")
		(uuid "f40b6dc1-c075-4afe-b6bc-38632a8e4915")
	)
	(gr_text "PROXdongl3\n\n\n\n2025-12-14"
		(at 108.75 58 0)
		(layer "F.SilkS")
		(uuid "ca6d681c-1b30-4157-b329-de577ee1e039")
		(effects
			(font
				(size 1 1)
				(thickness 0.1)
			)
			(justify bottom)
		)
	)
	(segment
		(start 110.225 64.825)
		(end 116.2 64.825)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 1)
		(uuid "9a78c14a-e3b6-47a5-9e9c-81f45b83cd76")
	)
	(segment
		(start 110.225 64.825)
		(end 116.2 64.825)
		(width 1.6)
		(layer "B.Cu")
		(net 1)
		(uuid "5454c990-f015-4f2e-abc2-f7af3003d9f6")
	)
	(segment
		(start 109.416893 76.713107)
		(end 110.225 75.905)
		(width 0.2)
		(layer "B.Cu")
		(net 2)
		(uuid "74f56b40-fbb9-487d-9036-0871980c3759")
	)
	(segment
		(start 109.124 87.641773)
		(end 109.124 77.420214)
		(width 0.2)
		(layer "B.Cu")
		(net 2)
		(uuid "9d54d51e-9e68-4001-ab18-f9e650961831")
	)
	(segment
		(start 105.61 94.1)
		(end 107.042033 92.668001)
		(width 0.2)
		(layer "B.Cu")
		(net 2)
		(uuid "b1d2e325-53ff-48d0-b58b-dd59a049cdb2")
	)
	(segment
		(start 105.61 94.1)
		(end 105.5 93.99)
		(width 0.2)
		(layer "B.Cu")
		(net 2)
		(uuid "ee570994-3e94-4237-bd5c-cfcc1aedb572")
	)
	(arc
		(start 109.416893 76.713107)
		(mid 109.20012 77.03753)
		(end 109.124 77.420214)
		(width 0.2)
		(layer "B.Cu")
		(net 2)
		(uuid "4fdc9943-d9d9-48de-aaf5-4f8cdd6e3822")
	)
	(arc
		(start 107.042033 92.668001)
		(mid 108.582913 90.361955)
		(end 109.124 87.641773)
		(width 0.2)
		(layer "B.Cu")
		(net 2)
		(uuid "8e959c60-e399-4576-b992-fa5bb0a2d2f7")
	)
	(segment
		(start 106.88 96.64)
		(end 106.88 91.014127)
		(width 0.2)
		(layer "F.Cu")
		(net 3)
		(uuid "35e5ba2f-7fd0-48ff-93b1-eae833a0d61e")
	)
	(segment
		(start 105.482 87.639086)
		(end 105.482 76.344198)
		(width 0.2)
		(layer "F.Cu")
		(net 3)
		(uuid "60b35e78-4833-4263-92c3-97eb2a95da3d")
	)
	(arc
		(start 105.774893 88.346193)
		(mid 106.592798 89.570264)
		(end 106.88 91.014127)
		(width 0.2)
		(layer "F.Cu")
		(net 3)
		(uuid "19e1288e-cd7a-4cfe-953d-6947053902e2")
	)
	(arc
		(start 107.385 71.75)
		(mid 105.976563 73.857856)
		(end 105.482 76.344198)
		(width 0.2)
		(layer "F.Cu")
		(net 3)
		(uuid "9c5fc30d-d7ed-4b8a-bacb-26097bee2dee")
	)
	(arc
		(start 105.774893 88.346193)
		(mid 105.55812 88.02177)
		(end 105.482 87.639086)
		(width 0.2)
		(layer "F.Cu")
		(net 3)
		(uuid "d51b8968-c8e4-42c4-9a1a-bfffcced0d88")
	)
	(segment
		(start 110.225 62.055)
		(end 116.2 62.055)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 4)
		(uuid "6f1755ef-aa5a-4868-bf70-9de10656fdf5")
	)
	(segment
		(start 110.225 62.055)
		(end 116.2 62.055)
		(width 1.6)
		(layer "B.Cu")
		(net 4)
		(uuid "d7b7aad6-921f-4026-b3dc-e2bd15d04ae2")
	)
	(segment
		(start 106.685 80.76)
		(end 106.685 87.140786)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "213cc9bc-96a1-4c17-8f5c-ccd93a116c65")
	)
	(segment
		(start 108.728115 89.12294)
		(end 108.960045 88.891007)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "24ac8024-d204-4326-b00b-005f6abc51fc")
	)
	(segment
		(start 110.62316 90.078947)
		(end 110.741953 90.19774)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "33be4c92-56f3-41eb-816b-15f32d9d77e2")
	)
	(segment
		(start 107.385 80.06)
		(end 106.685 80.76)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "34c1f55e-d59e-4312-a4ac-b692196311fb")
	)
	(segment
		(start 110.741953 90.672916)
		(end 110.51002 90.904846)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "5422b261-37a7-4aa3-8ee2-9fe0f509da50")
	)
	(segment
		(start 107.385 80.06)
		(end 106.977893 80.467107)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "6c1f7510-deab-4342-9ffa-c055c23b178e")
	)
	(segment
		(start 107.540176 87.935001)
		(end 107.772106 87.703068)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "84b38016-7cc8-4fa3-8b7d-a5b057c522ba")
	)
	(segment
		(start 109.554014 89.484977)
		(end 109.322081 89.716907)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "9ac48fe6-f7b1-44c0-98a7-4e04da66844b")
	)
	(segment
		(start 109.916054 90.310879)
		(end 110.147984 90.078946)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "a2574c8e-f60c-47dc-ba1e-fdeaf4826972")
	)
	(segment
		(start 110.628817 91.498817)
		(end 111.065 91.935)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "ab11df4e-0c3b-49e5-b3ae-859f74f2b246")
	)
	(segment
		(start 109.435221 88.891008)
		(end 109.554014 89.009801)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "b6312bb9-ecae-4f9e-96e4-326e5c0f01a1")
	)
	(segment
		(start 109.322082 90.192083)
		(end 109.440878 90.310878)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "b73de118-aa28-480d-b46e-9d60e59735a8")
	)
	(segment
		(start 108.366075 88.297038)
		(end 108.134142 88.528968)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "bca99180-b19e-4329-afac-060f59b785f4")
	)
	(segment
		(start 111.065 91.935)
		(end 113.23 94.1)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "d2aaabad-c98a-45ae-96f4-1a8bd2222fa4")
	)
	(segment
		(start 108.247282 87.703069)
		(end 108.366075 87.821862)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "dfb03752-e664-48a2-9d08-a7133c0f8063")
	)
	(segment
		(start 110.510021 91.380022)
		(end 110.628817 91.498817)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "e06b253f-14fb-4dc8-9851-561d427c4427")
	)
	(segment
		(start 106.977893 87.847893)
		(end 107.065 87.935)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "e20394a6-36ba-478e-8529-2641863adfaf")
	)
	(segment
		(start 108.134143 89.004144)
		(end 108.252939 89.122939)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "e7e0aa8a-e407-46af-a998-0e98ace99086")
	)
	(arc
		(start 108.134142 88.528968)
		(mid 108.035731 88.766556)
		(end 108.134143 89.004144)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "233b63ef-0432-464d-be60-e0fff5d13ac2")
	)
	(arc
		(start 110.51002 90.904846)
		(mid 110.411609 91.142434)
		(end 110.510021 91.380022)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "3f33e3bc-9f81-4a07-86d5-c2781531a87b")
	)
	(arc
		(start 109.440878 90.310878)
		(mid 109.678467 90.40929)
		(end 109.916054 90.310879)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "443a3d4a-6585-4196-a40e-7041425c4eac")
	)
	(arc
		(start 110.147984 90.078946)
		(mid 110.385572 89.980535)
		(end 110.62316 90.078947)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "450e2d8f-0dd2-42b4-8f9f-39d4c2ccd201")
	)
	(arc
		(start 110.741953 90.19774)
		(mid 110.840365 90.435328)
		(end 110.741953 90.672916)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "4e2764a4-0acf-4e47-855b-0e09e4b064ac")
	)
	(arc
		(start 107.065 87.935)
		(mid 107.302589 88.033412)
		(end 107.540176 87.935001)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "617fa0de-ebb0-436c-8263-15595d60ef9c")
	)
	(arc
		(start 108.366075 87.821862)
		(mid 108.464487 88.05945)
		(end 108.366075 88.297038)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "75f31041-05b3-4f77-bf21-c5469b3b3203")
	)
	(arc
		(start 108.252939 89.122939)
		(mid 108.490528 89.221351)
		(end 108.728115 89.12294)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "8f790694-a398-4b1e-bb57-b582fb2543be")
	)
	(arc
		(start 107.772106 87.703068)
		(mid 108.009694 87.604657)
		(end 108.247282 87.703069)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "a951adfe-5ee2-47da-a8db-acf76f9336c4")
	)
	(arc
		(start 109.554014 89.009801)
		(mid 109.652426 89.247389)
		(end 109.554014 89.484977)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "cac28868-16bc-44b8-8510-56e0c858b8a5")
	)
	(arc
		(start 106.685 87.140786)
		(mid 106.76112 87.52347)
		(end 106.977893 87.847893)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "d50a074b-b3dd-4558-8c40-85b226028dcd")
	)
	(arc
		(start 109.322081 89.716907)
		(mid 109.22367 89.954495)
		(end 109.322082 90.192083)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "dc2f670d-15ea-4477-9882-6c8a74a5d2f3")
	)
	(arc
		(start 108.960045 88.891007)
		(mid 109.197633 88.792596)
		(end 109.435221 88.891008)
		(width 0.2)
		(layer "F.Cu")
		(net 5)
		(uuid "e16beaad-139b-4905-8a28-40e8a90511db")
	)
	(segment
		(start 107.385 63.44)
		(end 101.3 63.44)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 6)
		(uuid "b05c3401-86eb-4201-8074-dc20c57561b7")
	)
	(segment
		(start 107.385 63.44)
		(end 101.3 63.44)
		(width 1.6)
		(layer "B.Cu")
		(net 6)
		(uuid "2202af03-67a3-42df-ac67-86f448721caf")
	)
	(segment
		(start 106.953893 93.828232)
		(end 106.953893 93.785982)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "6010f089-3123-43db-a364-fbc262c45f34")
	)
	(segment
		(start 109.525 87.578835)
		(end 109.525 79.789214)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "7e9e76bf-d0c5-4b76-b851-d7129937c28e")
	)
	(segment
		(start 104.556339 96.64)
		(end 106.661 94.535339)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "95ee3c68-50d0-449d-b1c1-bdd40f4b71cc")
	)
	(segment
		(start 104.34 96.64)
		(end 104.556339 96.64)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "b41c45bb-3840-4329-873b-0826724ca19c")
	)
	(segment
		(start 109.817893 79.082107)
		(end 110.225 78.675)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "ee68e164-ca41-4506-92ea-0620134d969e")
	)
	(arc
		(start 109.525 79.789214)
		(mid 109.60112 79.406531)
		(end 109.817893 79.082107)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "601c0325-34fd-4107-8982-98e1646ff6bb")
	)
	(arc
		(start 106.953893 93.785982)
		(mid 107.030013 93.403299)
		(end 107.246786 93.078875)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "6cbdcb56-97f5-4eb9-bec7-9c4b1ad8ab0a")
	)
	(arc
		(start 106.661 94.535339)
		(mid 106.877773 94.210916)
		(end 106.953893 93.828232)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "cdf8a814-f6e8-4848-b587-18abdfccfa59")
	)
	(arc
		(start 107.246786 93.078875)
		(mid 108.932921 90.555415)
		(end 109.525 87.578835)
		(width 0.2)
		(layer "B.Cu")
		(net 7)
		(uuid "eb7a141a-7c25-4cc6-b7e6-d884c399ce57")
	)
	(segment
		(start 111.033107 73.943107)
		(end 110.225 73.135)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "02f8d281-3755-4241-9642-834ef87742d2")
	)
	(segment
		(start 109.926 80.25231)
		(end 109.926 80.17231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "2bc6c945-8fce-472c-b3af-8c4174a678e5")
	)
	(segment
		(start 109.926 77.31)
		(end 109.926 77.23)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "3121b6be-e0b7-4560-bc3c-55db659ae612")
	)
	(segment
		(start 110.086 77.07)
		(end 111.166 77.07)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "39fbd7f6-445a-4d5a-b10f-019b40f866be")
	)
	(segment
		(start 111.166 77.47)
		(end 110.086 77.47)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "52302108-03ed-4341-9e7d-a2f238f8841f")
	)
	(segment
		(start 108.15 94.1)
		(end 109.613128 92.636912)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "54e4239c-2c76-4f3f-9cf8-3b474068c190")
	)
	(segment
		(start 111.326 76.91)
		(end 111.326 74.650214)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "ac539a3e-7749-4423-982b-581375dc342a")
	)
	(segment
		(start 111.166 80.41231)
		(end 110.086 80.41231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "f267e51d-988f-41ec-bff1-934f179769d8")
	)
	(segment
		(start 111.326 79.85231)
		(end 111.326 77.63)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "f8e2db57-6df5-462f-98b2-7f776803f6e2")
	)
	(segment
		(start 110.086 80.01231)
		(end 111.166 80.01231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "f9d94192-f7ce-4224-b153-5764569eeabc")
	)
	(segment
		(start 111.326 88.501752)
		(end 111.326 80.57231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "fde40424-2ac4-42f3-b9d3-260dfe9d9a69")
	)
	(arc
		(start 111.166 77.07)
		(mid 111.279137 77.023137)
		(end 111.326 76.91)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "1f85d8a2-a264-4372-8895-c15da693af4e")
	)
	(arc
		(start 109.926 77.23)
		(mid 109.972863 77.116863)
		(end 110.086 77.07)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "520d3787-169f-41a2-bf2f-42bc5a8e0442")
	)
	(arc
		(start 109.926 80.17231)
		(mid 109.972863 80.059173)
		(end 110.086 80.01231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "64b6ee93-3c4d-4c5d-9713-edc2a5b2d6c5")
	)
	(arc
		(start 111.326 80.57231)
		(mid 111.279137 80.459173)
		(end 111.166 80.41231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "69619b9f-1c7d-4330-ac84-129bfff03d72")
	)
	(arc
		(start 111.326 77.63)
		(mid 111.279137 77.516863)
		(end 111.166 77.47)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "9d695b4f-5c2a-41ec-a77f-cb24afd3a92d")
	)
	(arc
		(start 111.326 74.650214)
		(mid 111.24988 74.267531)
		(end 111.033107 73.943107)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "ce01f1da-5534-40db-9d53-9aba4398de1c")
	)
	(arc
		(start 110.086 77.47)
		(mid 109.972863 77.423137)
		(end 109.926 77.31)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "d36426b5-95ba-4325-9b81-9c53627ba920")
	)
	(arc
		(start 111.166 80.01231)
		(mid 111.279137 79.965447)
		(end 111.326 79.85231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "e259cb3d-f8bc-4973-bfc4-ccb5774645c2")
	)
	(arc
		(start 110.086 80.41231)
		(mid 109.972863 80.365447)
		(end 109.926 80.25231)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "e270fb05-5a7b-4780-a7a0-bff8858c802e")
	)
	(arc
		(start 109.613128 92.636912)
		(mid 110.880839 90.739691)
		(end 111.326 88.501752)
		(width 0.2)
		(layer "B.Cu")
		(net 8)
		(uuid "f85f0379-a67e-4e4a-ad13-5b05d853dd26")
	)
	(segment
		(start 107.385 60.67)
		(end 101.3 60.67)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 9)
		(uuid "6efdac27-33aa-4785-be82-2c919e79bf91")
	)
	(segment
		(start 107.379675 60.664675)
		(end 107.385 60.67)
		(width 0.2)
		(layer "F.Cu")
		(net 9)
		(uuid "b301174a-6c44-4f14-80a8-f66375b7bcf4")
	)
	(segment
		(start 107.385 60.67)
		(end 101.3 60.67)
		(width 1.6)
		(layer "B.Cu")
		(net 9)
		(uuid "fdb3fce5-ffe7-4233-85e7-60592939cea4")
	)
	(segment
		(start 110.225 67.595)
		(end 116.2 67.595)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 10)
		(uuid "22fb94f7-0a12-4eb1-ae92-321b90063328")
	)
	(segment
		(start 110.225 67.595)
		(end 116.2 67.595)
		(width 1.6)
		(layer "B.Cu")
		(net 10)
		(uuid "bd7bad6a-b7a9-4af1-9dc8-435860bbf7d5")
	)
	(segment
		(start 109.42 93.811275)
		(end 109.42 96.64)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "140deae3-eafa-4406-8c1b-3f9e6dce038e")
	)
	(segment
		(start 111.741 72.295214)
		(end 111.741 88.450162)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "aa487935-8fdb-4da0-a2ab-2ed24b45dd41")
	)
	(segment
		(start 110.225 70.365)
		(end 111.448107 71.588107)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "e3e6e41e-36aa-4f17-b432-ea0d701e1ebe")
	)
	(segment
		(start 109.712893 93.104207)
		(end 109.884176 92.932925)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "e89d9e97-f277-4aa0-9e0b-73cf585c6b24")
	)
	(arc
		(start 109.712893 93.104207)
		(mid 109.496112 93.428631)
		(end 109.42 93.811275)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "5c728b2b-0a12-43b7-ab69-f33023d08051")
	)
	(arc
		(start 111.448107 71.588107)
		(mid 111.66488 71.91253)
		(end 111.741 72.295214)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "9fe181b8-ad3b-4fe8-a5c0-86ea3d8d25a4")
	)
	(arc
		(start 111.741 88.450162)
		(mid 111.258427 90.876216)
		(end 109.884176 92.932925)
		(width 0.2)
		(layer "B.Cu")
		(net 11)
		(uuid "a26f5bab-b53a-440c-8f5a-bd564c2db278")
	)
	(segment
		(start 109.162381 91.166581)
		(end 109.3279 91.3321)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "15b411c7-ffbd-4ead-bf58-f9f9c6b35cb2")
	)
	(segment
		(start 109.104397 91.108597)
		(end 109.162381 91.166581)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "2762318f-2d42-4a0d-9577-aa34abcf0d1c")
	)
	(segment
		(start 108.002727 90.238858)
		(end 107.619475 90.622109)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "287071ee-1ee2-499c-a9ce-f8ecf42d3b0b")
	)
	(segment
		(start 107.4229 89.659031)
		(end 107.216424 89.865506)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "29a7ed2f-8e4f-4cb7-82c9-1b82aa07d29c")
	)
	(segment
		(start 108.199302 91.433867)
		(end 108.257284 91.491849)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "2bc0a353-443d-4045-92f7-8008b44d6876")
	)
	(segment
		(start 107.216424 90.097437)
		(end 107.274406 90.155419)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "3bd8a843-541f-49a2-80ce-54e5adec7582")
	)
	(segment
		(start 109.3279 91.3321)
		(end 110.281037 92.285237)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "3ff0c178-d559-4453-b347-324ac0c71169")
	)
	(segment
		(start 110.281037 92.285237)
		(end 110.397107 92.401307)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "870a4c3e-3467-4d7d-899e-2fa5d5e145dc")
	)
	(segment
		(start 107.944743 89.948943)
		(end 108.002727 90.006927)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "9c62ffd7-2d59-4831-8a10-0b34bb66b7f3")
	)
	(segment
		(start 107.506337 90.155419)
		(end 107.712812 89.948943)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "a5c6f3b1-9b78-483d-a59a-da4a82b89d2b")
	)
	(segment
		(start 107.909388 90.912022)
		(end 108.292639 90.52877)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "a8239e8f-f4ad-4bcd-a685-40b24630076d")
	)
	(segment
		(start 108.582554 90.818685)
		(end 108.199302 91.201936)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "ae2a428f-6241-4267-938d-dc7b1785dbab")
	)
	(segment
		(start 107.619475 90.85404)
		(end 107.677457 90.912022)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "bd542de6-00d6-4569-a8a8-7b814e5434c0")
	)
	(segment
		(start 105.883 78.146129)
		(end 105.883 87.472986)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "bdcc6913-de0c-47e8-80af-b18b6df31a33")
	)
	(segment
		(start 108.52457 90.52877)
		(end 108.582554 90.586754)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "cbb60cd9-50b4-4299-b5a3-262396cc7801")
	)
	(segment
		(start 106.175893 88.180093)
		(end 107.4229 89.4271)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "dc2eb85c-2011-497b-9c1a-e9375e89c281")
	)
	(segment
		(start 108.489215 91.491849)
		(end 108.872466 91.108597)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "f106b01f-947e-4b6d-b921-7b6d67ddc96c")
	)
	(segment
		(start 110.69 93.108414)
		(end 110.69 94.1)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "fadf9c9d-be21-45c6-bd28-ba31471b182e")
	)
	(arc
		(start 107.677457 90.912022)
		(mid 107.793423 90.960056)
		(end 107.909388 90.912022)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "0044d40f-1336-4018-897f-f767c31ef9ee")
	)
	(arc
		(start 110.397107 92.401307)
		(mid 110.61388 92.725731)
		(end 110.69 93.108414)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "08a9e97a-790d-4c1c-9c02-8911175f24f6")
	)
	(arc
		(start 105.883 87.472986)
		(mid 105.95912 87.855669)
		(end 106.175893 88.180093)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "132eb2b6-7af8-45e0-ad5e-0a1ba96503ff")
	)
	(arc
		(start 108.199302 91.201936)
		(mid 108.151268 91.317901)
		(end 108.199302 91.433867)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "2908833b-4ba6-4279-91a0-8e3768d41ad8")
	)
	(arc
		(start 107.4229 89.4271)
		(mid 107.470934 89.543066)
		(end 107.4229 89.659031)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "3d1a5c3b-9c1c-4ff9-b509-0cd7ba345534")
	)
	(arc
		(start 108.002727 90.006927)
		(mid 108.050761 90.122893)
		(end 108.002727 90.238858)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "43d0c6e6-db7b-45ce-b80a-75e47fc99d11")
	)
	(arc
		(start 107.619475 90.622109)
		(mid 107.571441 90.738074)
		(end 107.619475 90.85404)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "450ede13-fc08-433a-a879-90ba3cb3c275")
	)
	(arc
		(start 107.712812 89.948943)
		(mid 107.828777 89.900909)
		(end 107.944743 89.948943)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "559183c8-82a1-498e-9f0c-0c279546951a")
	)
	(arc
		(start 108.292639 90.52877)
		(mid 108.408604 90.480736)
		(end 108.52457 90.52877)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "6c24ef7f-7479-488d-81ee-eaa183b09299")
	)
	(arc
		(start 108.582554 90.586754)
		(mid 108.630588 90.70272)
		(end 108.582554 90.818685)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "a09cebd6-3518-47f7-8983-a19fb2e66433")
	)
	(arc
		(start 107.274406 90.155419)
		(mid 107.390372 90.203453)
		(end 107.506337 90.155419)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "a2dcb139-68dc-48c9-8390-fa2135db1e40")
	)
	(arc
		(start 107.216424 89.865506)
		(mid 107.16839 89.981471)
		(end 107.216424 90.097437)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "ad7c87b6-7075-4132-a3b8-14a1b031aa08")
	)
	(arc
		(start 107.385 74.52)
		(mid 106.273353 76.18369)
		(end 105.883 78.146129)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "b7972300-392c-4a71-beb6-4c9b3c4b1973")
	)
	(arc
		(start 108.872466 91.108597)
		(mid 108.988431 91.060563)
		(end 109.104397 91.108597)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "ea0192bc-0949-40f4-aa03-732e56c585c8")
	)
	(arc
		(start 108.257284 91.491849)
		(mid 108.37325 91.539883)
		(end 108.489215 91.491849)
		(width 0.2)
		(layer "F.Cu")
		(net 12)
		(uuid "ffa78e4a-9ea6-435a-ba81-a0d93d71d9c7")
	)
	(segment
		(start 107.385 66.21)
		(end 101.3 66.21)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 13)
		(uuid "f71d65ad-f6d9-49b8-8953-0212ae8374e9")
	)
	(segment
		(start 107.385 66.21)
		(end 101.3 66.21)
		(width 1.6)
		(layer "B.Cu")
		(net 13)
		(uuid "6bef4acf-6dee-47b1-8764-d50093a8c306")
	)
	(segment
		(start 111.96 96.64)
		(end 111.96 95.064265)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "1e072b2f-a021-4d03-b679-d9ccb33c45ac")
	)
	(segment
		(start 110.781137 92.218237)
		(end 106.576893 88.013993)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "2ced86cf-7653-41f5-805b-b58d44cbf522")
	)
	(segment
		(start 107.037789 77.637211)
		(end 107.385 77.29)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "54d048d0-6021-4565-a7d5-639d167c4ae7")
	)
	(segment
		(start 106.284 87.306886)
		(end 106.284 79.457019)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "712ae5f0-9554-4cfe-b6b0-42cb67fcdea8")
	)
	(arc
		(start 106.576893 88.013993)
		(mid 106.36012 87.68957)
		(end 106.284 87.306886)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "0907e4d0-264d-4934-9588-116a623b2293")
	)
	(arc
		(start 107.037789 77.637211)
		(mid 106.479903 78.472146)
		(end 106.284 79.457019)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "6fbe9976-3140-4f1f-b030-d3810ef537c8")
	)
	(arc
		(start 111.96 95.064265)
		(mid 111.653623 93.524006)
		(end 110.781137 92.218237)
		(width 0.2)
		(layer "F.Cu")
		(net 14)
		(uuid "c8e3aab4-fd21-4b27-8658-33ac568c0160")
	)
	(segment
		(start 107.385 68.98)
		(end 101.3 68.98)
		(width 1.6)
		(layers "F.Cu" "F.Mask")
		(net 15)
		(uuid "79f72a13-f812-4a7c-b581-ca5ae15df7e6")
	)
	(segment
		(start 107.385 68.98)
		(end 101.3 68.98)
		(width 1.6)
		(layer "B.Cu")
		(net 15)
		(uuid "b7864b5b-3720-4b5d-a66c-5b2aa641fa91")
	)
	(zone
		(net 14)
		(net_name "/ETH2")
		(layer "F.Cu")
		(uuid "3ade32f2-7876-4773-9e29-6fb5afc1850e")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30004)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 106.542223 78.589624) (xy 106.588958 78.489554) (xy 106.638314 78.407454) (xy 106.687224 78.344839)
				(xy 106.738526 78.294838) (xy 106.848569 78.226176) (xy 106.982235 78.185954) (xy 107.16647 78.162783)
				(xy 107.315021 78.146408) (xy 107.474851 78.115405) (xy 107.646237 78.056188) (xy 107.829456 77.955176)
				(xy 107.385382 77.289077) (xy 106.600372 77.133928) (xy 106.548437 77.478336) (xy 106.532923 77.732237)
				(xy 106.524387 77.893666) (xy 106.502012 78.061027) (xy 106.451224 78.259207) (xy 106.357446 78.513088)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 106.612383 77.136302) (xy 106.895829 77.192322) (xy 107.380612 77.288134) (xy 107.388064 77.2931)
				(xy 107.388079 77.293122) (xy 107.822395 77.944585) (xy 107.824133 77.953369) (xy 107.81915 77.96081)
				(xy 107.818309 77.961321) (xy 107.647118 78.055702) (xy 107.64529 78.056515) (xy 107.475629 78.115135)
				(xy 107.474036 78.115562) (xy 107.315495 78.146315) (xy 107.314549 78.146459) (xy 107.16647 78.162783)
				(xy 106.982235 78.185954) (xy 106.982234 78.185954) (xy 106.982228 78.185955) (xy 106.848568 78.226175)
				(xy 106.738526 78.294838) (xy 106.687225 78.344837) (xy 106.687216 78.344848) (xy 106.638315 78.40745)
				(xy 106.638307 78.407462) (xy 106.588962 78.489545) (xy 106.546959 78.579482) (xy 106.540353 78.585528)
				(xy 106.531881 78.58534) (xy 106.367843 78.517394) (xy 106.361511 78.511062) (xy 106.361345 78.502532)
				(xy 106.451224 78.259207) (xy 106.502012 78.061027) (xy 106.524387 77.893666) (xy 106.532923 77.732237)
				(xy 106.532925 77.732237) (xy 106.532927 77.73217) (xy 106.548405 77.478846) (xy 106.548514 77.477823)
				(xy 106.57637 77.2931) (xy 106.598546 77.146034) (xy 106.603168 77.138366) (xy 106.61186 77.136211)
			)
		)
	)
	(zone
		(net 3)
		(net_name "/ETH6")
		(layer "F.Cu")
		(uuid "727a522b-989d-42fb-8c75-c3ef4439972c")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30003)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 106.497809 73.050144) (xy 106.564449 72.950714) (xy 106.630418 72.869989) (xy 106.693223 72.808304)
				(xy 106.756114 72.759846) (xy 106.885918 72.694167) (xy 107.039748 72.656239) (xy 107.164912 72.639616)
				(xy 107.310427 72.620064) (xy 107.468013 72.585435) (xy 107.640185 72.521787) (xy 107.829456 72.415176)
				(xy 107.385522 71.749148) (xy 106.600372 71.593928) (xy 106.558214 71.891) (xy 106.549855 72.169643)
				(xy 106.54668 72.340618) (xy 106.522498 72.510724) (xy 106.49598 72.603053) (xy 106.456351 72.704289)
				(xy 106.327282 72.945643)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 106.612472 71.59632) (xy 107.380752 71.748205) (xy 107.388203 71.75317) (xy 107.388218 71.753193)
				(xy 107.822461 72.404682) (xy 107.824198 72.413467) (xy 107.819214 72.420907) (xy 107.818467 72.421365)
				(xy 107.640996 72.521329) (xy 107.639311 72.522109) (xy 107.468768 72.585155) (xy 107.467222 72.585608)
				(xy 107.310906 72.619958) (xy 107.309953 72.620127) (xy 107.164912 72.639616) (xy 107.164894 72.639618)
				(xy 107.039756 72.656237) (xy 107.039744 72.656239) (xy 106.885919 72.694166) (xy 106.756113 72.759846)
				(xy 106.69323 72.808298) (xy 106.693213 72.808312) (xy 106.630423 72.869983) (xy 106.564444 72.950719)
				(xy 106.504063 73.040812) (xy 106.49661 73.045776) (xy 106.488231 73.044274) (xy 106.336688 72.951407)
				(xy 106.331424 72.944162) (xy 106.332483 72.935915) (xy 106.456351 72.704289) (xy 106.49598 72.603053)
				(xy 106.522498 72.510724) (xy 106.54668 72.340618) (xy 106.549855 72.169643) (xy 106.558194 71.891636)
				(xy 106.558303 71.890366) (xy 106.598636 71.606155) (xy 106.603191 71.598448) (xy 106.611864 71.596217)
			)
		)
	)
	(zone
		(net 12)
		(net_name "/ETH3")
		(layer "F.Cu")
		(uuid "98ae57f4-9665-4e04-93c2-c42f4bee7106")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30002)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 106.541388 75.839471) (xy 106.594202 75.737755) (xy 106.648662 75.654459) (xy 106.701803 75.590802)
				(xy 106.756686 75.540049) (xy 106.872918 75.470027) (xy 107.013121 75.427969) (xy 107.176082 75.40385)
				(xy 107.32109 75.383732) (xy 107.477659 75.34927) (xy 107.646784 75.287429) (xy 107.829456 75.185176)
				(xy 107.385422 74.519094) (xy 106.600372 74.363928) (xy 106.553468 74.684778) (xy 106.542213 74.969996)
				(xy 106.538028 75.134636) (xy 106.517378 75.304071) (xy 106.463623 75.502707) (xy 106.360127 75.754948)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 106.612438 74.366313) (xy 106.623038 74.368408) (xy 107.380652 74.518151) (xy 107.388103 74.523117)
				(xy 107.388118 74.523139) (xy 107.822441 75.174653) (xy 107.824179 75.183438) (xy 107.819196 75.190878)
				(xy 107.818421 75.191352) (xy 107.6476 75.286971) (xy 107.645903 75.28775) (xy 107.478395 75.349)
				(xy 107.476892 75.349438) (xy 107.321546 75.383631) (xy 107.320639 75.383794) (xy 107.176088 75.403848)
				(xy 107.013123 75.427968) (xy 106.872917 75.470027) (xy 106.756687 75.540047) (xy 106.701803 75.590802)
				(xy 106.648662 75.654459) (xy 106.594198 75.737761) (xy 106.546554 75.82952) (xy 106.5397 75.835283)
				(xy 106.531225 75.834732) (xy 106.370243 75.759665) (xy 106.364194 75.753063) (xy 106.364363 75.744621)
				(xy 106.463623 75.502707) (xy 106.517378 75.304071) (xy 106.538028 75.134636) (xy 106.542213 74.969996)
				(xy 106.553444 74.685382) (xy 106.553555 74.684178) (xy 106.598593 74.376097) (xy 106.60318 74.368408)
				(xy 106.611861 74.366214)
			)
		)
	)
	(zone
		(net 14)
		(net_name "/ETH2")
		(layer "F.Cu")
		(uuid "bf3d2394-6e4b-4f2b-b9a4-c3b0327d405c")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30007)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 111.86 95.154411) (xy 111.855044 95.305282) (xy 111.840355 95.429672) (xy 111.819577 95.521601)
				(xy 111.791641 95.600952) (xy 111.714464 95.7376) (xy 111.591653 95.891013) (xy 111.473544 96.034394)
				(xy 111.336398 96.223322) (xy 111.96 96.641) (xy 112.583602 96.223322) (xy 112.404816 95.98249)
				(xy 112.328348 95.891014) (xy 112.21367 95.748973) (xy 112.167661 95.679047) (xy 112.129508 95.603652)
				(xy 112.099439 95.518139) (xy 112.07768 95.417861) (xy 112.064458 95.298167) (xy 112.06 95.154411)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 112.056931 95.157838) (xy 112.060352 95.165748) (xy 112.064457 95.298162) (xy 112.064458 95.298181)
				(xy 112.077679 95.417856) (xy 112.07768 95.417861) (xy 112.099439 95.518139) (xy 112.10066 95.52161)
				(xy 112.12951 95.603657) (xy 112.167654 95.679035) (xy 112.167666 95.679057) (xy 112.213662 95.748962)
				(xy 112.213666 95.748968) (xy 112.21367 95.748973) (xy 112.268955 95.81745) (xy 112.328332 95.890995)
				(xy 112.404605 95.982238) (xy 112.405022 95.982768) (xy 112.576281 96.213461) (xy 112.578461 96.222146)
				(xy 112.573861 96.229829) (xy 112.573398 96.230156) (xy 111.966511 96.636639) (xy 111.95773 96.638396)
				(xy 111.953489 96.636639) (xy 111.346492 96.230083) (xy 111.341525 96.222632) (xy 111.343282 96.213851)
				(xy 111.34351 96.213523) (xy 111.473338 96.034677) (xy 111.473752 96.03414) (xy 111.591653 95.891013)
				(xy 111.714464 95.7376) (xy 111.791641 95.600952) (xy 111.819577 95.521601) (xy 111.840355 95.429672)
				(xy 111.855044 95.305282) (xy 111.859628 95.165726) (xy 111.863325 95.157571) (xy 111.871322 95.154411)
				(xy 112.048658 95.154411)
			)
		)
	)
	(zone
		(net 5)
		(net_name "/ETH1")
		(layer "F.Cu")
		(uuid "c57089af-a642-4af9-981b-7fea95114f5c")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30001)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 111.87896 92.890381) (xy 112.014359 93.05313) (xy 112.163505 93.295638) (xy 112.305123 93.60297)
				(xy 112.364091 93.766834) (xy 112.412835 93.93345) (xy 112.447467 94.088342) (xy 112.470267 94.240456)
				(xy 112.48 94.41066) (xy 113.230707 94.100707) (xy 113.54066 93.35) (xy 113.298997 93.331046) (xy 113.015241 93.269915)
				(xy 112.704453 93.163741) (xy 112.399683 93.019427) (xy 112.26554 92.939992) (xy 112.146939 92.857768)
				(xy 112.020381 92.74896)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 112.028606 92.756032) (xy 112.146939 92.857768) (xy 112.146945 92.857772) (xy 112.265544 92.939995)
				(xy 112.399672 93.019421) (xy 112.399677 93.019423) (xy 112.399683 93.019427) (xy 112.704453 93.163741)
				(xy 113.015241 93.269915) (xy 113.298997 93.331046) (xy 113.299002 93.331046) (xy 113.299005 93.331047)
				(xy 113.524621 93.348742) (xy 113.532601 93.352805) (xy 113.53537 93.361321) (xy 113.53452 93.364871)
				(xy 113.232562 94.096213) (xy 113.226238 94.102552) (xy 113.226213 94.102562) (xy 112.495206 94.404381)
				(xy 112.486251 94.404371) (xy 112.479927 94.398032) (xy 112.47906 94.394239) (xy 112.470267 94.240456)
				(xy 112.447467 94.088342) (xy 112.412835 93.93345) (xy 112.364091 93.766834) (xy 112.305123 93.60297)
				(xy 112.305117 93.602958) (xy 112.305114 93.602949) (xy 112.163509 93.295645) (xy 112.163506 93.29564)
				(xy 112.014363 93.053135) (xy 112.014362 93.053133) (xy 111.920236 92.939995) (xy 111.885786 92.898586)
				(xy 111.88313 92.890036) (xy 111.886507 92.882833) (xy 112.012709 92.756631) (xy 112.020981 92.753205)
			)
		)
	)
	(zone
		(net 5)
		(net_name "/ETH1")
		(layer "F.Cu")
		(uuid "c91de504-5541-4aa7-8edb-beb2e322d89a")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30000)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 106.785 81.66) (xy 106.804388 81.538458) (xy 106.866773 81.402049) (xy 106.977621 81.256956)
				(xy 107.136447 81.116225) (xy 107.230936 81.052837) (xy 107.333766 80.996305) (xy 107.440959 80.949075)
				(xy 107.554344 80.910682) (xy 107.666994 80.883454) (xy 107.783748 80.866232) (xy 107.907906 80.86)
				(xy 107.385 80.059) (xy 106.585 79.891753) (xy 106.605125 80.257367) (xy 106.602653 80.846022) (xy 106.594587 81.169494)
				(xy 106.585 81.66)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 106.599907 79.894869) (xy 107.38025 80.058007) (xy 107.387645 80.063052) (xy 107.514496 80.257365)
				(xy 107.896769 80.84294) (xy 107.898422 80.851741) (xy 107.893368 80.859133) (xy 107.887559 80.861021)
				(xy 107.783749 80.866231) (xy 107.666995 80.883453) (xy 107.589298 80.902233) (xy 107.554344 80.910682)
				(xy 107.55434 80.910683) (xy 107.554333 80.910685) (xy 107.440966 80.949072) (xy 107.440965 80.949072)
				(xy 107.333768 80.996304) (xy 107.333766 80.996305) (xy 107.230936 81.052837) (xy 107.230931 81.052839)
				(xy 107.230926 81.052843) (xy 107.136447 81.116224) (xy 106.97762 81.256956) (xy 106.866775 81.402045)
				(xy 106.866769 81.402055) (xy 106.804388 81.538456) (xy 106.804388 81.538457) (xy 106.786572 81.650143)
				(xy 106.781885 81.657773) (xy 106.775018 81.66) (xy 106.596931 81.66) (xy 106.588658 81.656573)
				(xy 106.585231 81.6483) (xy 106.585233 81.648071) (xy 106.587376 81.538458) (xy 106.594587 81.169494)
				(xy 106.602653 80.846022) (xy 106.605125 80.257367) (xy 106.585837 79.906964) (xy 106.588804 79.898516)
				(xy 106.596876 79.89464)
			)
		)
	)
	(zone
		(net 3)
		(net_name "/ETH6")
		(layer "F.Cu")
		(uuid "ce370a95-c0d7-46f5-a7c5-0dfd38af8609")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30006)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 106.78 95.154411) (xy 106.775044 95.305282) (xy 106.760355 95.429672) (xy 106.739577 95.521601)
				(xy 106.711641 95.600952) (xy 106.634464 95.7376) (xy 106.511653 95.891013) (xy 106.393544 96.034394)
				(xy 106.256398 96.223322) (xy 106.88 96.641) (xy 107.503602 96.223322) (xy 107.324816 95.98249)
				(xy 107.248348 95.891014) (xy 107.13367 95.748973) (xy 107.087661 95.679047) (xy 107.049508 95.603652)
				(xy 107.019439 95.518139) (xy 106.99768 95.417861) (xy 106.984458 95.298167) (xy 106.98 95.154411)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 106.976931 95.157838) (xy 106.980352 95.165748) (xy 106.984457 95.298162) (xy 106.984458 95.298181)
				(xy 106.997679 95.417856) (xy 106.99768 95.417861) (xy 107.019439 95.518139) (xy 107.02066 95.52161)
				(xy 107.04951 95.603657) (xy 107.087654 95.679035) (xy 107.087666 95.679057) (xy 107.133662 95.748962)
				(xy 107.133666 95.748968) (xy 107.13367 95.748973) (xy 107.188955 95.81745) (xy 107.248332 95.890995)
				(xy 107.324605 95.982238) (xy 107.325022 95.982768) (xy 107.496281 96.213461) (xy 107.498461 96.222146)
				(xy 107.493861 96.229829) (xy 107.493398 96.230156) (xy 106.886511 96.636639) (xy 106.87773 96.638396)
				(xy 106.873489 96.636639) (xy 106.266492 96.230083) (xy 106.261525 96.222632) (xy 106.263282 96.213851)
				(xy 106.26351 96.213523) (xy 106.393338 96.034677) (xy 106.393752 96.03414) (xy 106.511653 95.891013)
				(xy 106.634464 95.7376) (xy 106.711641 95.600952) (xy 106.739577 95.521601) (xy 106.760355 95.429672)
				(xy 106.775044 95.305282) (xy 106.779628 95.165726) (xy 106.783325 95.157571) (xy 106.791322 95.154411)
				(xy 106.968658 95.154411)
			)
		)
	)
	(zone
		(net 12)
		(net_name "/ETH3")
		(layer "F.Cu")
		(uuid "e6e86d84-5f59-4d26-9b43-e20cc4214dcc")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30005)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 110.491273 92.691237) (xy 110.540201 92.773316) (xy 110.572617 92.847792) (xy 110.588838 92.909566)
				(xy 110.593632 92.966857) (xy 110.57379 93.069037) (xy 110.514801 93.172678) (xy 110.397472 93.305061)
				(xy 110.35335 93.349623) (xy 110.210255 93.499128) (xy 110.066398 93.683322) (xy 110.690555 94.100831)
				(xy 111.313602 93.683322) (xy 111.172887 93.46467) (xy 111.074225 93.296616) (xy 110.985576 93.131713)
				(xy 110.860343 92.90257) (xy 110.657567 92.580125)
			)
		)
		(filled_polygon
			(layer "F.Cu")
			(pts
				(xy 110.663793 92.590035) (xy 110.663969 92.590306) (xy 110.86015 92.902263) (xy 110.860513 92.902881)
				(xy 110.985576 93.131713) (xy 110.985614 93.131784) (xy 111.074215 93.296599) (xy 111.074225 93.296616)
				(xy 111.10539 93.349701) (xy 111.172888 93.464671) (xy 111.307386 93.673663) (xy 111.308981 93.682475)
				(xy 111.30406 93.689715) (xy 110.697061 94.09647) (xy 110.688281 94.098228) (xy 110.684043 94.096475)
				(xy 110.076865 93.690323) (xy 110.071894 93.682875) (xy 110.073645 93.674093) (xy 110.074132 93.673418)
				(xy 110.209901 93.49958) (xy 110.210659 93.498705) (xy 110.35335 93.349623) (xy 110.397472 93.305061)
				(xy 110.514801 93.172678) (xy 110.57379 93.069037) (xy 110.593632 92.966857) (xy 110.593631 92.966853)
				(xy 110.593632 92.96685) (xy 110.59105 92.936008) (xy 110.588838 92.909566) (xy 110.572617 92.847792)
				(xy 110.540201 92.773316) (xy 110.496961 92.70078) (xy 110.495669 92.691921) (xy 110.50051 92.685064)
				(xy 110.647567 92.586806) (xy 110.656348 92.58506)
			)
		)
	)
	(zone
		(net 11)
		(net_name "/ETH4")
		(layer "B.Cu")
		(uuid "07f7796e-935d-46e7-b36a-4f773a99b76b")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30007)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 109.32 95.154411) (xy 109.315044 95.305282) (xy 109.300355 95.429672) (xy 109.279577 95.521601)
				(xy 109.251641 95.600952) (xy 109.174464 95.7376) (xy 109.051653 95.891013) (xy 108.933544 96.034394)
				(xy 108.796398 96.223322) (xy 109.42 96.641) (xy 110.043602 96.223322) (xy 109.864816 95.98249)
				(xy 109.788348 95.891014) (xy 109.67367 95.748973) (xy 109.627661 95.679047) (xy 109.589508 95.603652)
				(xy 109.559439 95.518139) (xy 109.53768 95.417861) (xy 109.524458 95.298167) (xy 109.52 95.154411)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 109.516931 95.157838) (xy 109.520352 95.165748) (xy 109.524457 95.298162) (xy 109.524458 95.298181)
				(xy 109.537679 95.417856) (xy 109.53768 95.417861) (xy 109.559439 95.518139) (xy 109.56066 95.52161)
				(xy 109.58951 95.603657) (xy 109.627654 95.679035) (xy 109.627666 95.679057) (xy 109.673662 95.748962)
				(xy 109.673666 95.748968) (xy 109.67367 95.748973) (xy 109.728955 95.81745) (xy 109.788332 95.890995)
				(xy 109.864605 95.982238) (xy 109.865022 95.982768) (xy 110.036281 96.213461) (xy 110.038461 96.222146)
				(xy 110.033861 96.229829) (xy 110.033398 96.230156) (xy 109.426511 96.636639) (xy 109.41773 96.638396)
				(xy 109.413489 96.636639) (xy 108.806492 96.230083) (xy 108.801525 96.222632) (xy 108.803282 96.213851)
				(xy 108.80351 96.213523) (xy 108.933338 96.034677) (xy 108.933752 96.03414) (xy 109.051653 95.891013)
				(xy 109.174464 95.7376) (xy 109.251641 95.600952) (xy 109.279577 95.521601) (xy 109.300355 95.429672)
				(xy 109.315044 95.305282) (xy 109.319628 95.165726) (xy 109.323325 95.157571) (xy 109.331322 95.154411)
				(xy 109.508658 95.154411)
			)
		)
	)
	(zone
		(net 11)
		(net_name "/ETH4")
		(layer "B.Cu")
		(uuid "9f4aa463-1d4b-43e7-afbf-0b8a2df93d7b")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30002)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 111.416212 71.41479) (xy 111.310391 71.301967) (xy 111.229927 71.200773) (xy 111.176745 71.118078)
				(xy 111.137834 71.039485) (xy 111.092251 70.885354) (xy 111.067124 70.659126) (xy 111.048841 70.458994)
				(xy 111.009628 70.208928) (xy 110.224293 70.364293) (xy 110.068928 71.149628) (xy 110.373149 71.194665)
				(xy 110.519126 71.207124) (xy 110.711621 71.226515) (xy 110.79882 71.244032) (xy 110.884334 71.271643)
				(xy 110.971427 71.313007) (xy 111.06336 71.371783) (xy 111.163393 71.451632) (xy 111.27479 71.556212)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 111.006465 70.213047) (xy 111.011433 70.220497) (xy 111.011514 70.220955) (xy 111.048784 70.458633)
				(xy 111.048876 70.459382) (xy 111.067123 70.659122) (xy 111.09225 70.885347) (xy 111.092251 70.885354)
				(xy 111.127065 71.003073) (xy 111.137835 71.039489) (xy 111.176743 71.118075) (xy 111.176745 71.118078)
				(xy 111.229927 71.200773) (xy 111.286278 71.271642) (xy 111.310391 71.301967) (xy 111.310392 71.301968)
				(xy 111.40846 71.406525) (xy 111.41162 71.414904) (xy 111.408199 71.422802) (xy 111.282806 71.548195)
				(xy 111.274533 71.551622) (xy 111.266525 71.548452) (xy 111.163397 71.451635) (xy 111.163393 71.451632)
				(xy 111.117238 71.41479) (xy 111.06336 71.371783) (xy 110.971427 71.313007) (xy 110.884334 71.271643)
				(xy 110.884331 71.271642) (xy 110.798823 71.244032) (xy 110.711629 71.226516) (xy 110.711615 71.226514)
				(xy 110.519154 71.207126) (xy 110.373504 71.194695) (xy 110.372786 71.194611) (xy 110.081076 71.151426)
				(xy 110.073393 71.146824) (xy 110.071215 71.138139) (xy 110.071311 71.137581) (xy 110.075169 71.11808)
				(xy 110.222772 70.371978) (xy 110.22774 70.364529) (xy 110.231976 70.362772) (xy 110.997686 70.21129)
			)
		)
	)
	(zone
		(net 2)
		(net_name "/ETH7")
		(layer "B.Cu")
		(uuid "a2f6f207-bf9d-4bba-bf80-42272751d8a0")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30005)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 106.589772 92.978831) (xy 106.479586 93.082006) (xy 106.381241 93.159574) (xy 106.301544 93.209884)
				(xy 106.225681 93.246239) (xy 106.074483 93.28829) (xy 105.879167 93.309926) (xy 105.69426 93.327795)
				(xy 105.463682 93.364411) (xy 105.609293 94.100707) (xy 106.345589 94.246318) (xy 106.389463 93.949599)
				(xy 106.400075 93.830863) (xy 106.419425 93.649333) (xy 106.436338 93.567354) (xy 106.462674 93.487063)
				(xy 106.50188 93.405335) (xy 106.557403 93.319041) (xy 106.632691 93.225057) (xy 106.731192 93.120254)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 106.597776 92.986835) (xy 106.723171 93.112233) (xy 106.726598 93.120505) (xy 106.723424 93.128518)
				(xy 106.632684 93.225064) (xy 106.557403 93.31904) (xy 106.501877 93.405339) (xy 106.462677 93.487054)
				(xy 106.462674 93.487062) (xy 106.436338 93.567351) (xy 106.419424 93.64934) (xy 106.400078 93.830828)
				(xy 106.389491 93.949275) (xy 106.389411 93.949944) (xy 106.347385 94.234168) (xy 106.342785 94.241851)
				(xy 106.3341 94.244031) (xy 106.333541 94.243935) (xy 105.61698 94.102227) (xy 105.609529 94.09726)
				(xy 105.607773 94.093021) (xy 105.466039 93.376329) (xy 105.467796 93.367549) (xy 105.475247 93.362582)
				(xy 105.47566 93.362508) (xy 105.693909 93.32785) (xy 105.6946 93.327762) (xy 105.879167 93.309926)
				(xy 106.074483 93.28829) (xy 106.225681 93.246239) (xy 106.301544 93.209884) (xy 106.381241 93.159574)
				(xy 106.479586 93.082006) (xy 106.581508 92.986568) (xy 106.589888 92.983415)
			)
		)
	)
	(zone
		(net 2)
		(net_name "/ETH7")
		(layer "B.Cu")
		(uuid "a838412a-9b37-4782-ade8-a23d012d799e")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30003)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 109.331968 76.985748) (xy 109.373464 76.898384) (xy 109.417588 76.829337) (xy 109.460182 76.780776)
				(xy 109.505282 76.744248) (xy 109.602363 76.701656) (xy 109.725474 76.688658) (xy 109.894491 76.699604)
				(xy 110.118566 76.713473) (xy 110.244744 76.708819) (xy 110.381072 76.689628) (xy 110.225382 75.904077)
				(xy 109.440372 75.748928) (xy 109.371346 76.138322) (xy 109.342195 76.309726) (xy 109.30541 76.470263)
				(xy 109.245555 76.657553) (xy 109.147192 76.909214)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 109.452032 75.751232) (xy 110.147502 75.888684) (xy 110.217696 75.902558) (xy 110.225147 75.907524)
				(xy 110.226904 75.911761) (xy 110.378666 76.677491) (xy 110.376913 76.686273) (xy 110.369464 76.691243)
				(xy 110.36882 76.691352) (xy 110.245338 76.708735) (xy 110.244138 76.708841) (xy 110.119147 76.713451)
				(xy 110.117993 76.713437) (xy 109.894523 76.699606) (xy 109.894506 76.699598) (xy 109.894491 76.699604)
				(xy 109.725472 76.688657) (xy 109.725465 76.688658) (xy 109.602363 76.701656) (xy 109.505284 76.744246)
				(xy 109.460183 76.780774) (xy 109.417587 76.829337) (xy 109.373463 76.898384) (xy 109.336738 76.975703)
				(xy 109.330093 76.981706) (xy 109.321693 76.981492) (xy 109.157786 76.913602) (xy 109.151454 76.907271)
				(xy 109.151366 76.898534) (xy 109.197393 76.780776) (xy 109.245555 76.657553) (xy 109.30541 76.470263)
				(xy 109.342195 76.309726) (xy 109.342197 76.309718) (xy 109.371332 76.138402) (xy 109.371346 76.138322)
				(xy 109.438289 75.760677) (xy 109.443107 75.753129) (xy 109.451851 75.751199)
			)
		)
	)
	(zone
		(net 7)
		(net_name "/ETH8")
		(layer "B.Cu")
		(uuid "c0db119d-a728-4498-b195-f9b4a81a5008")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30000)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 109.625 80.02306) (xy 109.629905 79.926057) (xy 109.644239 79.84474) (xy 109.665025 79.782915)
				(xy 109.692732 79.731482) (xy 109.765249 79.656184) (xy 109.869258 79.602744) (xy 110.032393 79.559693)
				(xy 110.097379 79.546737) (xy 110.230988 79.519045) (xy 110.372772 79.480909) (xy 110.519879 79.424046)
				(xy 110.669456 79.340176) (xy 110.225 78.674) (xy 109.440372 78.518928) (xy 109.400821 78.742542)
				(xy 109.378895 78.9237) (xy 109.373058 79.19139) (xy 109.391827 79.417561) (xy 109.414121 79.672369)
				(xy 109.425 80.02306)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 109.452068 78.521239) (xy 110.220233 78.673057) (xy 110.227684 78.678023) (xy 110.227697 78.678042)
				(xy 110.66244 79.32966) (xy 110.664181 79.338444) (xy 110.6592 79.345886) (xy 110.658429 79.346358)
				(xy 110.520606 79.423638) (xy 110.519102 79.424346) (xy 110.373349 79.480685) (xy 110.37217 79.48107)
				(xy 110.231331 79.518952) (xy 110.230667 79.519111) (xy 110.134802 79.53898) (xy 110.097379 79.546737)
				(xy 110.097329 79.546746) (xy 110.097293 79.546754) (xy 110.032401 79.559691) (xy 109.869257 79.602744)
				(xy 109.765247 79.656185) (xy 109.765246 79.656186) (xy 109.692734 79.731479) (xy 109.692732 79.731482)
				(xy 109.665022 79.782921) (xy 109.644241 79.844732) (xy 109.644237 79.844748) (xy 109.629905 79.926056)
				(xy 109.629904 79.926061) (xy 109.626655 79.990324) (xy 109.625574 80.011722) (xy 109.625562 80.011951)
				(xy 109.621722 80.02004) (xy 109.613877 80.02306) (xy 109.436342 80.02306) (xy 109.432353 80.021407)
				(xy 109.428329 80.019885) (xy 109.428248 80.019707) (xy 109.428069 80.019633) (xy 109.424648 80.011722)
				(xy 109.424506 80.007134) (xy 109.4245 80.006772) (xy 109.4245 78.60969) (xy 109.424679 78.607652)
				(xy 109.438293 78.530679) (xy 109.443107 78.523132) (xy 109.451851 78.521199)
			)
		)
	)
	(zone
		(net 8)
		(net_name "/ETH5")
		(layer "B.Cu")
		(uuid "c4d05600-ddef-4c42-b3d8-f78fbdc9d453")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30006)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 109.129774 92.978833) (xy 109.019588 93.082007) (xy 108.921244 93.159575) (xy 108.841547 93.209885)
				(xy 108.765684 93.24624) (xy 108.614485 93.288291) (xy 108.41917 93.309926) (xy 108.234261 93.327795)
				(xy 108.003682 93.364411) (xy 108.149293 94.100707) (xy 108.885589 94.246318) (xy 108.929463 93.949597)
				(xy 108.940075 93.830866) (xy 108.959426 93.649335) (xy 108.976339 93.567356) (xy 109.002675 93.487065)
				(xy 109.041881 93.405336) (xy 109.097404 93.319043) (xy 109.172693 93.225058) (xy 109.271194 93.120256)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 109.137779 92.986838) (xy 109.263173 93.112235) (xy 109.2666 93.120508) (xy 109.263425 93.128521)
				(xy 109.172694 93.225056) (xy 109.172691 93.225059) (xy 109.097404 93.319042) (xy 109.041878 93.40534)
				(xy 109.002678 93.487056) (xy 109.002675 93.487064) (xy 108.976339 93.567353) (xy 108.959425 93.649342)
				(xy 108.940078 93.830831) (xy 108.929491 93.949273) (xy 108.929411 93.949942) (xy 108.887385 94.234168)
				(xy 108.882785 94.241851) (xy 108.8741 94.244031) (xy 108.873541 94.243935) (xy 108.15698 94.102227)
				(xy 108.149529 94.09726) (xy 108.147773 94.093021) (xy 108.006039 93.376329) (xy 108.007796 93.367549)
				(xy 108.015247 93.362582) (xy 108.01566 93.362508) (xy 108.23391 93.32785) (xy 108.234601 93.327762)
				(xy 108.41917 93.309926) (xy 108.614485 93.288291) (xy 108.765684 93.24624) (xy 108.841547 93.209885)
				(xy 108.921244 93.159575) (xy 109.019588 93.082007) (xy 109.12151 92.98657) (xy 109.12989 92.983417)
			)
		)
	)
	(zone
		(net 7)
		(net_name "/ETH8")
		(layer "B.Cu")
		(uuid "e3d8d518-acf3-4661-9c62-25e6f21fe7e0")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30001)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 105.425979 95.628939) (xy 105.334215 95.713788) (xy 105.249431 95.778448) (xy 105.175552 95.822633)
				(xy 105.105017 95.853638) (xy 104.967302 95.884406) (xy 104.80143 95.885044) (xy 104.733862 95.880543)
				(xy 104.496525 95.871549) (xy 104.35505 95.879967) (xy 104.193682 95.904411) (xy 104.339293 96.640707)
				(xy 104.963602 97.056678) (xy 105.035867 96.940021) (xy 105.091452 96.833297) (xy 105.167625 96.632636)
				(xy 105.214431 96.43267) (xy 105.248445 96.281182) (xy 105.30345 96.127523) (xy 105.345931 96.046494)
				(xy 105.402188 95.96086) (xy 105.475063 95.869266) (xy 105.5674 95.77036)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 105.433934 95.636894) (xy 105.559406 95.762366) (xy 105.562833 95.770639) (xy 105.559685 95.778623)
				(xy 105.475069 95.869258) (xy 105.402186 95.960862) (xy 105.345933 96.046489) (xy 105.345924 96.046504)
				(xy 105.303452 96.127518) (xy 105.303446 96.127532) (xy 105.248449 96.281165) (xy 105.248445 96.28118)
				(xy 105.214439 96.432634) (xy 105.214415 96.432738) (xy 105.167801 96.631882) (xy 105.167347 96.633367)
				(xy 105.091698 96.832648) (xy 105.091137 96.833901) (xy 105.036064 96.939642) (xy 105.035633 96.940398)
				(xy 104.969971 97.046396) (xy 104.962701 97.051625) (xy 104.953864 97.050181) (xy 104.953538 97.049972)
				(xy 104.34334 96.643403) (xy 104.338355 96.635964) (xy 104.338349 96.635936) (xy 104.337696 96.632636)
				(xy 104.196056 95.916415) (xy 104.197813 95.907635) (xy 104.205264 95.902668) (xy 104.205777 95.902578)
				(xy 104.354534 95.880045) (xy 104.355576 95.879935) (xy 104.495954 95.871582) (xy 104.49708 95.87157)
				(xy 104.733728 95.880537) (xy 104.734026 95.880553) (xy 104.80143 95.885044) (xy 104.967302 95.884406)
				(xy 105.105017 95.853638) (xy 105.175552 95.822633) (xy 105.249431 95.778448) (xy 105.334215 95.713788)
				(xy 105.334221 95.713782) (xy 105.334228 95.713777) (xy 105.390962 95.661316) (xy 105.417718 95.636576)
				(xy 105.426119 95.633476)
			)
		)
	)
	(zone
		(net 8)
		(net_name "/ETH5")
		(layer "B.Cu")
		(uuid "ee5faaec-0443-429d-91c1-318223d65f98")
		(name "$teardrop_padvia$")
		(hatch none 0.1)
		(priority 30004)
		(attr
			(teardrop
				(type padvia)
			)
		)
		(connect_pads yes
			(clearance 0)
		)
		(min_thickness 0.0254)
		(filled_areas_thickness no)
		(fill yes
			(thermal_gap 0.5)
			(thermal_bridge_width 0.5)
			(island_removal_mode 1)
			(island_area_min 10)
		)
		(polygon
			(pts
				(xy 111.302816 74.139209) (xy 111.207397 73.895721) (xy 111.14815 73.713118) (xy 111.092173 73.45134)
				(xy 111.07865 73.368288) (xy 111.009628 72.978928) (xy 110.224618 73.134077) (xy 110.068928 73.919628)
				(xy 110.272824 73.942754) (xy 110.490874 73.935391) (xy 110.555514 73.929602) (xy 110.730722 73.918663)
				(xy 110.808641 73.923999) (xy 110.880659 73.941773) (xy 110.947191 73.975909) (xy 111.008655 74.030333)
				(xy 111.065466 74.108969) (xy 111.11804 74.215743)
			)
		)
		(filled_polygon
			(layer "B.Cu")
			(pts
				(xy 111.006702 72.982999) (xy 111.011668 72.99045) (xy 111.01171 72.990677) (xy 111.07863 73.368175)
				(xy 111.078658 73.368337) (xy 111.092172 73.451334) (xy 111.14815 73.713118) (xy 111.207398 73.895723)
				(xy 111.207398 73.895726) (xy 111.298628 74.128523) (xy 111.298456 74.137476) (xy 111.292212 74.143601)
				(xy 111.12817 74.211547) (xy 111.119215 74.211547) (xy 111.113196 74.205906) (xy 111.082518 74.143601)
				(xy 111.065466 74.108969) (xy 111.008655 74.030333) (xy 110.947193 73.97591) (xy 110.947187 73.975907)
				(xy 110.880659 73.941773) (xy 110.856231 73.935744) (xy 110.808647 73.924) (xy 110.808643 73.923999)
				(xy 110.808641 73.923999) (xy 110.793656 73.922972) (xy 110.73072 73.918662) (xy 110.730719 73.918662)
				(xy 110.555507 73.929602) (xy 110.491197 73.935361) (xy 110.490549 73.935401) (xy 110.273682 73.942725)
				(xy 110.271969 73.942657) (xy 110.225795 73.93742) (xy 110.081556 73.92106) (xy 110.073722 73.916723)
				(xy 110.07125 73.908116) (xy 110.071394 73.907184) (xy 110.223095 73.14176) (xy 110.228065 73.134312)
				(xy 110.232302 73.132558) (xy 110.997922 72.981241)
			)
		)
	)
	(generated
		(uuid "7b7afa9e-e076-4346-8929-fdc9db5f1b0e")
		(type tuning_pattern)
		(name "Tuning Pattern")
		(layer "F.Cu")
		(base_line
			(pts
				(xy 107.4229 89.4271) (xy 109.3279 91.3321)
			)
		)
		(corner_radius_percent 80)
		(end
			(xy 109.3279 91.3321)
		)
		(initial_side "right")
		(last_diff_pair_gap 0.18)
		(last_netname "/ETH3")
		(last_status "tuned")
		(last_track_width 0.2)
		(last_tuning "25.7614 mm (tuned)")
		(max_amplitude 0.87)
		(min_amplitude 0.2)
		(min_spacing 0.41)
		(origin
			(xy 107.4229 89.4271)
		)
		(override_custom_rules no)
		(rounded yes)
		(single_sided no)
		(target_length 1000000)
		(target_length_max 1000000)
		(target_length_min 0)
		(target_skew 0)
		(target_skew_max 0.1)
		(target_skew_min -0.1)
		(tuning_mode "single")
		(members "0044d40f-1336-4018-897f-f767c31ef9ee" "15b411c7-ffbd-4ead-bf58-f9f9c6b35cb2"
			"2762318f-2d42-4a0d-9577-aa34abcf0d1c" "287071ee-1ee2-499c-a9ce-f8ecf42d3b0b"
			"2908833b-4ba6-4279-91a0-8e3768d41ad8" "29a7ed2f-8e4f-4cb7-82c9-1b82aa07d29c"
			"2bc0a353-443d-4045-92f7-8008b44d6876" "3bd8a843-541f-49a2-80ce-54e5adec7582"
			"3d1a5c3b-9c1c-4ff9-b509-0cd7ba345534" "43d0c6e6-db7b-45ce-b80a-75e47fc99d11"
			"450ede13-fc08-433a-a879-90ba3cb3c275" "559183c8-82a1-498e-9f0c-0c279546951a"
			"6c24ef7f-7479-488d-81ee-eaa183b09299" "9c62ffd7-2d59-4831-8a10-0b34bb66b7f3"
			"a09cebd6-3518-47f7-8983-a19fb2e66433" "a2dcb139-68dc-48c9-8390-fa2135db1e40"
			"a5c6f3b1-9b78-483d-a59a-da4a82b89d2b" "a8239e8f-f4ad-4bcd-a685-40b24630076d"
			"ad7c87b6-7075-4132-a3b8-14a1b031aa08" "ae2a428f-6241-4267-938d-dc7b1785dbab"
			"bd542de6-00d6-4569-a8a8-7b814e5434c0" "cbb60cd9-50b4-4299-b5a3-262396cc7801"
			"ea0192bc-0949-40f4-aa03-732e56c585c8" "f106b01f-947e-4b6d-b921-7b6d67ddc96c"
			"ffa78e4a-9ea6-435a-ba81-a0d93d71d9c7"
		)
	)
	(generated
		(uuid "ba24f430-d411-4644-b5d3-435bc627fe5f")
		(type tuning_pattern)
		(name "Tuning Pattern")
		(layer "F.Cu")
		(base_line
			(pts
				(xy 106.977893 87.847893) (xy 107.065 87.935) (xy 111.065 91.935)
			)
		)
		(corner_radius_percent 80)
		(end
			(xy 111.065 91.935)
		)
		(initial_side "left")
		(last_diff_pair_gap 0.18)
		(last_netname "/ETH1")
		(last_status "tuned")
		(last_track_width 0.2)
		(last_tuning "21.8432 mm (tuned)")
		(max_amplitude 1)
		(min_amplitude 0.2)
		(min_spacing 0.84)
		(origin
			(xy 106.977893 87.847893)
		)
		(override_custom_rules no)
		(rounded yes)
		(single_sided no)
		(target_length 1000000)
		(target_length_max 1000000)
		(target_length_min 0)
		(target_skew 0)
		(target_skew_max 0.1)
		(target_skew_min -0.1)
		(tuning_mode "single")
		(members "233b63ef-0432-464d-be60-e0fff5d13ac2" "24ac8024-d204-4326-b00b-005f6abc51fc"
			"33be4c92-56f3-41eb-816b-15f32d9d77e2" "3f33e3bc-9f81-4a07-86d5-c2781531a87b"
			"443a3d4a-6585-4196-a40e-7041425c4eac" "450e2d8f-0dd2-42b4-8f9f-39d4c2ccd201"
			"4e2764a4-0acf-4e47-855b-0e09e4b064ac" "5422b261-37a7-4aa3-8ee2-9fe0f509da50"
			"617fa0de-ebb0-436c-8263-15595d60ef9c" "75f31041-05b3-4f77-bf21-c5469b3b3203"
			"84b38016-7cc8-4fa3-8b7d-a5b057c522ba" "8f790694-a398-4b1e-bb57-b582fb2543be"
			"9ac48fe6-f7b1-44c0-98a7-4e04da66844b" "a2574c8e-f60c-47dc-ba1e-fdeaf4826972"
			"a951adfe-5ee2-47da-a8db-acf76f9336c4" "ab11df4e-0c3b-49e5-b3ae-859f74f2b246"
			"b6312bb9-ecae-4f9e-96e4-326e5c0f01a1" "b73de118-aa28-480d-b46e-9d60e59735a8"
			"bca99180-b19e-4329-afac-060f59b785f4" "cac28868-16bc-44b8-8510-56e0c858b8a5"
			"dc2f670d-15ea-4477-9882-6c8a74a5d2f3" "dfb03752-e664-48a2-9d08-a7133c0f8063"
			"e06b253f-14fb-4dc8-9851-561d427c4427" "e16beaad-139b-4905-8a28-40e8a90511db"
			"e20394a6-36ba-478e-8529-2641863adfaf" "e7e0aa8a-e407-46af-a998-0e98ace99086"
		)
	)
	(embedded_fonts no)
)