-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtest2.dsn
1015 lines (1015 loc) · 53.7 KB
/
test2.dsn
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
(pcb /home/russ/Dropbox/Lilypad/lilypad/lilypad.dsn
(parser
(string_quote ")
(space_in_quoted_tokens on)
(host_cad "KiCad's Pcbnew")
(host_version "(2013-jul-07)-stable")
)
(resolution um 10)
(unit um)
(structure
(layer F.Cu
(type signal)
(property
(index 0)
)
)
(layer B.Cu
(type signal)
(property
(index 1)
)
)
(boundary
(path pcb 0 68046.6 -81203.8 67741.8 -81203.8 67741.8 -126771 143561 -126771
143561 -81203.8 67945 -81203.8)
)
(plane GND (polygon F.Cu 0 67818 -81229.2 143535 -81203.8 143510 -126797 67741.8 -126771
67767.2 -81280))
(plane GND (polygon B.Cu 0 67767.2 -81229.2 143561 -81203.8 143561 -126771 67741.8 -126746
67767.2 -81203.8 67767.2 -81229.2))
(via "Via[0-1]_889:635_um" "Via[0-1]_889:0_um" "Via[0-1]_400:300_um" "Via[0-1]_600:400_um")
(rule
(width 254)
(clearance 254.1)
(clearance 254.1 (type default_smd))
(clearance 63.5 (type smd_smd))
)
)
(placement
(component coilcraft_smd_LPS6235
(place L3 129553 -116218 front 270 (PN INDUCTOR))
(place L2 105702 -116268 front 270 (PN INDUCTOR))
(place L1 85407.5 -115862 front 270 (PN INDUCTOR))
)
(component "SOT23-5_LED_DRV"
(place U4 135395 -115519 front 270 (PN AL8805))
(place U3 111544 -115570 front 270 (PN AL8805))
(place U2 91249.5 -115164 front 270 (PN AL8805))
)
(component SM0805
(place R5 138316 -115519 front 270 (PN R))
(place C17 141072 -111735 front 90 (PN C))
(place C15 136881 -122453 front 180 (PN C))
(place C16 141173 -114567 front 0 (PN C))
(place C14 117323 -114618 front 0 (PN C))
(place C12 113030 -122504 front 180 (PN C))
(place C13 117221 -111785 front 90 (PN C))
(place R4 114465 -115570 front 270 (PN R))
(place C2 122492 -99377.5 front 0 (PN C))
(place C3 138074 -100127 front 0 (PN C))
(place C4 89052.4 -88188.8 front 270 (PN C))
(place C5 116383 -98552 front 180 (PN C))
(place C6 121869 -85699.6 front 0 (PN C))
(place C1 126302 -99377.5 front 180 (PN C))
(place R1 116383 -100584 front 180 (PN R))
(place C7 90144.6 -104292 front 270 (PN C))
(place R3 133629 -100025 front 0 (PN R))
(place R2 94170.5 -115164 front 270 (PN R))
(place C10 96926.4 -111379 front 90 (PN C))
(place C9 92735.4 -122098 front 180 (PN C))
(place C11 97053.4 -114198 front 0 (PN C))
(place C8 96164.4 -103175 front 0 (PN C))
)
(component PIN_ARRAY_2X1
(place P8 137160 -124892 front 0 (PN CONN_2))
(place P7 113233 -124511 front 0 (PN CONN_2))
(place P3 93014.8 -124536 front 0 (PN CONN_2))
)
(component "DO-214AA(SMB)"
(place D7 136792 -111773 front 0 (PN ZENER))
(place D5 112865 -111392 front 0 (PN ZENER))
(place D1 92646.5 -111417 front 0 (PN ZENER))
)
(component "HC-18UV"
(place X1 124460 -103378 front 0 (PN CRYSTAL))
)
(component pin_array_6x1
(place P1 87757 -81661 front 0 (PN CONN_6))
(place P6 129413 -81762.6 front 0 (PN CONN_6))
)
(component "DIP-28__300_ELL"
(place IC1 118554 -92392.5 front 0 (PN "ATMEGA328-P"))
)
(component "LED-3MM"
(place D3 135103 -103530 front 180 (PN LED))
)
(component BARREL_JACK
(place J1 76174.6 -106883 front 0 (PN JACK_2P))
)
(component PIN_ARRAY_5x1
(place P2 141884 -88112.6 front 90 (PN CONN_5))
)
(component pin_array_8x1
(place P4 110414 -81635.6 front 0 (PN CONN_7))
(place P5 70866 -91744.8 front 270 (PN CONN_8))
)
(component SW_PUSH_SMALL
(place SW1 108001 -103200 front 0 (PN SW_PUSH))
)
(component "DO-214AALED"
(place D2 92608.4 -118923 front 180 (PN LED))
(place D6 112598 -119405 front 180 (PN LED))
(place D8 136550 -119202 front 180 (PN LED))
)
(component LM7805_VERT
(place U1 92633.8 -100025 front 90 (PN LM7805))
)
(component D4
(place D9 95148.4 -91236.8 front 90 (PN DIODE))
)
(component D5
(place D4 79349.6 -123901 front 0 (PN DIODE))
)
(component 1pin
(place P9 72999.6 -119736 front 0 (PN CONN_1))
(place P10 72898 -114249 front 0 (PN CONN_1))
)
(component stich
(place P11 83413.6 -121260 front 0 (PN CONN_1))
(place P12 85801.2 -110084 front 0 (PN CONN_1))
(place P13 102260 -110693 front 0 (PN CONN_1))
(place P14 78130.4 -83820 front 0 (PN CONN_1))
(place P15 80365.6 -96774 front 0 (PN CONN_1))
(place P16 100178 -119380 front 0 (PN CONN_1))
(place P17 74320.4 -90424 front 0 (PN CONN_1))
(place P18 76301.6 -97993.2 front 0 (PN CONN_1))
(place P19 118669 -102667 front 0 (PN CONN_1))
(place P20 88087.2 -109068 front 0 (PN CONN_1))
(place P21 84023.2 -99618.8 front 0 (PN CONN_1))
(place P22 131115 -101194 front 0 (PN CONN_1))
(place P23 85902.8 -120650 front 0 (PN CONN_1))
(place P24 78536.8 -94081.6 front 0 (PN CONN_1))
(place P25 98856.8 -100838 front 0 (PN CONN_1))
(place P26 123596 -118516 front 0 (PN CONN_1))
(place P27 139141 -83312 front 0 (PN CONN_1))
(place P28 136449 -85496.4 front 0 (PN CONN_1))
(place P29 91694 -89204.8 front 0 (PN CONN_1))
(place P30 131877 -110134 front 0 (PN CONN_1))
(place P31 80568.8 -102667 front 0 (PN CONN_1))
(place P32 88544.4 -115824 front 0 (PN CONN_1))
(place P33 97282 -88747.6 front 0 (PN CONN_1))
(place P34 119634 -119126 front 0 (PN CONN_1))
(place P35 94589.6 -109068 front 0 (PN CONN_1))
(place P36 108915 -116230 front 0 (PN CONN_1))
(place P37 121361 -93624.4 front 0 (PN CONN_1))
(place P38 126441 -111760 front 0 (PN CONN_1))
(place P39 89408 -96012 front 0 (PN CONN_1))
(place P40 132690 -116230 front 0 (PN CONN_1))
(place P41 120853 -109880 front 0 (PN CONN_1))
(place P42 111963 -93472 front 0 (PN CONN_1))
)
)
(library
(image coilcraft_smd_LPS6235
(outline (path signal 150 4013.2 3860.8 -4064 3860.8))
(outline (path signal 150 -4064 3860.8 -4064 3810))
(outline (path signal 150 -4064 -3962.4 4013.2 -3962.4))
(outline (path signal 150 4013.2 -3962.4 4013.2 -3708.4))
(outline (path signal 150 -4064 3860.8 -4064 -3962.4))
(outline (path signal 150 4013.2 -50.8 4013.2 -3810))
(outline (path signal 150 4013.2 -50.8 4013.2 3860.8))
(outline (path signal 150 3810 0 3623.53 -1177.35 3082.35 -2239.46 2239.46 -3082.35
1177.35 -3623.53 0 -3810 -1177.35 -3623.53 -2239.46 -3082.35
-3082.35 -2239.46 -3623.53 -1177.35 -3810 0 -3623.53 1177.35
-3082.35 2239.46 -2239.46 3082.35 -1177.35 3623.53 0 3810
1177.35 3623.53 2239.46 3082.35 3082.35 2239.46 3623.53 1177.35))
(pin Rect[T]Pad_2400x6600_um 1 -2000 0)
(pin Rect[T]Pad_2400x6600_um 2 2000 0)
)
(image "SOT23-5_LED_DRV"
(outline (path signal 127 1524 889 1524 -889))
(outline (path signal 127 1524 -889 -1524 -889))
(outline (path signal 127 -1524 -889 -1524 889))
(outline (path signal 127 -1524 889 1524 889))
(pin Rect[T]Pad_508x762_um SW -952.5 -1270)
(pin Rect[T]Pad_508x762_um CTRL 952.5 -1270)
(pin Rect[T]Pad_508x762_um VIN -952.5 1270)
(pin Rect[T]Pad_508x762_um GNDP 0 -1270)
(pin Rect[T]Pad_508x762_um SET 952.5 1270)
)
(image SM0805
(outline (path signal 99.06 -1524 -762 -1530.22 -801.245 -1548.26 -836.648 -1576.35 -864.745
-1611.76 -882.784 -1651 -889 -1690.24 -882.784 -1725.65 -864.745
-1753.74 -836.648 -1771.78 -801.245 -1778 -762 -1771.78 -722.755
-1753.74 -687.352 -1725.65 -659.255 -1690.24 -641.216 -1651 -635
-1611.76 -641.216 -1576.35 -659.255 -1548.26 -687.352 -1530.22 -722.755))
(outline (path signal 99.06 -508 -762 -1524 -762))
(outline (path signal 99.06 -1524 -762 -1524 762))
(outline (path signal 99.06 -1524 762 -508 762))
(outline (path signal 99.06 508 762 1524 762))
(outline (path signal 99.06 1524 762 1524 -762))
(outline (path signal 99.06 1524 -762 508 -762))
(pin Rect[T]Pad_889x1397_um 1 -952.5 0)
(pin Rect[T]Pad_889x1397_um 2 952.5 0)
)
(image PIN_ARRAY_2X1
(outline (path signal 152.4 -2540 -1270 -2540 1270))
(outline (path signal 152.4 -2540 1270 2540 1270))
(outline (path signal 152.4 2540 1270 2540 -1270))
(outline (path signal 152.4 2540 -1270 -2540 -1270))
(pin Rect[A]Pad_1524x1524_um 1 -1270 0)
(pin Round[A]Pad_1524_um 2 1270 0)
)
(image "DO-214AA(SMB)"
(outline (path signal 127 -762 0 -965.2 0))
(outline (path signal 127 -2286 1905 2286 1905))
(outline (path signal 127 2286 1905 2286 1270))
(outline (path signal 127 660.4 -1905 660.4 1905))
(outline (path signal 127 990.6 -1905 990.6 1905))
(outline (path signal 127 -2286 -1270 -2286 -1905))
(outline (path signal 127 -2286 -1905 2286 -1905))
(outline (path signal 127 2286 -1905 2286 -1270))
(outline (path signal 127 -2286 1270 -2286 1905))
(outline (path signal 127 -127 0 -762 474.98))
(outline (path signal 127 -762 474.98 -762 0))
(outline (path signal 127 -762 0 -762 -474.98))
(outline (path signal 127 -762 -474.98 -127 0))
(outline (path signal 127 -127 0 -127 317.5))
(outline (path signal 127 -127 317.5 -284.48 474.98))
(outline (path signal 127 -127 0 -127 -317.5))
(outline (path signal 127 -127 -317.5 30.48 -474.98))
(outline (path signal 127 -127 0 982.98 0))
(pin Rect[T]Pad_1800.86x2199.64_um 1 -2006.6 0)
(pin Rect[T]Pad_1800.86x2199.64_um 2 2006.6 0)
)
(image "HC-18UV"
(outline (path signal 152.4 -6985 1270 -5715 2540))
(outline (path signal 152.4 5715 2540 6985 1270))
(outline (path signal 152.4 6985 -1270 5715 -2540))
(outline (path signal 152.4 -6985 -1270 -5715 -2540))
(outline (path signal 152.4 -5715 2540 5715 2540))
(outline (path signal 152.4 -6985 1270 -6985 -1270))
(outline (path signal 152.4 -5715 -2540 5715 -2540))
(outline (path signal 152.4 6985 -1270 6985 1270))
(pin Round[A]Pad_1778_um 1 -2540 0)
(pin Round[A]Pad_1778_um 2 2540 0)
)
(image pin_array_6x1
(outline (path signal 150 -7620 -2540 -7620 0))
(outline (path signal 150 -7620 0 7620 0))
(outline (path signal 150 7620 0 7620 -2540))
(outline (path signal 150 7620 -2540 -7620 -2540))
(pin Rect[A]Pad_1524x1524_um 1 -6350 -1270)
(pin Round[A]Pad_1524_um 2 -3810 -1270)
(pin Round[A]Pad_1524_um 3 -1270 -1270)
(pin Round[A]Pad_1524_um 4 1270 -1270)
(pin Round[A]Pad_1524_um 5 3810 -1270)
(pin Round[A]Pad_1524_um 6 6350 -1270)
)
(image "DIP-28__300_ELL"
(outline (path signal 381 -19050 2540 19050 2540))
(outline (path signal 381 19050 2540 19050 -2540))
(outline (path signal 381 19050 -2540 -19050 -2540))
(outline (path signal 381 -19050 -2540 -19050 2540))
(outline (path signal 381 -19050 1270 -17780 1270))
(outline (path signal 381 -17780 1270 -17780 -1270))
(outline (path signal 381 -17780 -1270 -19050 -1270))
(pin Oval[A]Pad_1574.8x2286_um 2 -13970 -3810)
(pin Oval[A]Pad_1574.8x2286_um 3 -11430 -3810)
(pin Oval[A]Pad_1574.8x2286_um 4 -8890 -3810)
(pin Oval[A]Pad_1574.8x2286_um 5 -6350 -3810)
(pin Oval[A]Pad_1574.8x2286_um 6 -3810 -3810)
(pin Oval[A]Pad_1574.8x2286_um 7 -1270 -3810)
(pin Oval[A]Pad_1574.8x2286_um 8 1270 -3810)
(pin Oval[A]Pad_1574.8x2286_um 9 3810 -3810)
(pin Oval[A]Pad_1574.8x2286_um 10 6350 -3810)
(pin Oval[A]Pad_1574.8x2286_um 11 8890 -3810)
(pin Oval[A]Pad_1574.8x2286_um 12 11430 -3810)
(pin Oval[A]Pad_1574.8x2286_um 13 13970 -3810)
(pin Oval[A]Pad_1574.8x2286_um 14 16510 -3810)
(pin Rect[A]Pad_1574.8x2286_um 1 -16510 -3810)
(pin Oval[A]Pad_1574.8x2286_um 15 16510 3810)
(pin Oval[A]Pad_1574.8x2286_um 16 13970 3810)
(pin Oval[A]Pad_1574.8x2286_um 17 11430 3810)
(pin Oval[A]Pad_1574.8x2286_um 18 8890 3810)
(pin Oval[A]Pad_1574.8x2286_um 19 6350 3810)
(pin Oval[A]Pad_1574.8x2286_um 20 3810 3810)
(pin Oval[A]Pad_1574.8x2286_um 21 1270 3810)
(pin Oval[A]Pad_1574.8x2286_um 22 -1270 3810)
(pin Oval[A]Pad_1574.8x2286_um 23 -3810 3810)
(pin Oval[A]Pad_1574.8x2286_um 24 -6350 3810)
(pin Oval[A]Pad_1574.8x2286_um 25 -8890 3810)
(pin Oval[A]Pad_1574.8x2286_um 26 -11430 3810)
(pin Oval[A]Pad_1574.8x2286_um 27 -13970 3810)
(pin Oval[A]Pad_1574.8x2286_um 28 -16510 3810)
)
(image "LED-3MM"
(outline (path signal 254 1828.8 -1270 1828.8 1270))
(pin Round[A]Pad_1676.4_um 1 -1270 0)
(pin Round[A]Pad_1676.4_um 2 1270 0)
)
(image BARREL_JACK
(outline (path signal 381 -4000.5 4500.88 -4000.5 -4500.88))
(outline (path signal 381 -7500.62 4500.88 -7500.62 -4500.88))
(outline (path signal 381 -7500.62 -4500.88 7000.24 -4500.88))
(outline (path signal 381 7000.24 -4500.88 7000.24 4500.88))
(outline (path signal 381 7000.24 4500.88 -7500.62 4500.88))
(pin Rect[A]Pad_3500.12x3500.12_um 1 6200.14 0)
(pin Rect[A]Pad_3500.12x3500.12_um 2 200.66 0)
(pin Rect[A]Pad_3500.12x3500.12_um 3 3200.4 -4699)
)
(image PIN_ARRAY_5x1
(outline (path signal 304.8 -6350 1270 -6350 -1270))
(outline (path signal 304.8 6350 -1270 6350 1270))
(outline (path signal 304.8 -6350 1270 6350 1270))
(outline (path signal 304.8 6350 -1270 -6350 -1270))
(pin Rect[A]Pad_1524x1524_um 1 -5080 0)
(pin Round[A]Pad_1524_um 2 -2540 0)
(pin Round[A]Pad_1524_um 3 0 0)
(pin Round[A]Pad_1524_um 4 2540 0)
(pin Round[A]Pad_1524_um 5 5080 0)
)
(image pin_array_8x1
(outline (path signal 150 9906 -2286 10058.4 -2286))
(outline (path signal 150 10058.4 -2286 10058.4 -50.8))
(outline (path signal 150 10058.4 -50.8 -10007.6 -50.8))
(outline (path signal 150 -10007.6 -50.8 -10007.6 -2286))
(outline (path signal 150 -10007.6 -2286 -9804.4 -2286))
(outline (path signal 150 9906 -2286 -9906 -2286))
(pin Rect[A]Pad_1524x1524_um 1 -8890 -1270)
(pin Round[A]Pad_1524_um 2 -6350 -1270)
(pin Round[A]Pad_1524_um 3 -3810 -1270)
(pin Round[A]Pad_1524_um 4 -1270 -1270)
(pin Round[A]Pad_1524_um 5 1270 -1270)
(pin Round[A]Pad_1524_um 6 3810 -1270)
(pin Round[A]Pad_1524_um 7 6350 -1270)
(pin Round[A]Pad_1524_um 8 8890 -1270)
)
(image SW_PUSH_SMALL
(outline (path signal 127 2540 0 2415.68 -784.903 2054.9 -1492.97 1492.97 -2054.9
784.903 -2415.68 0 -2540 -784.903 -2415.68 -1492.97 -2054.9
-2054.9 -1492.97 -2415.68 -784.903 -2540 0 -2415.68 784.903
-2054.9 1492.97 -1492.97 2054.9 -784.903 2415.68 0 2540 784.903 2415.68
1492.97 2054.9 2054.9 1492.97 2415.68 784.903))
(outline (path signal 127 -3810 3810 3810 3810))
(outline (path signal 127 3810 3810 3810 -3810))
(outline (path signal 127 3810 -3810 -3810 -3810))
(outline (path signal 127 -3810 3810 -3810 -3810))
(pin Round[A]Pad_1397_um 1 3810 2540)
(pin Round[A]Pad_1397_um 2 3810 -2540)
(pin Round[A]Pad_1397_um 1@1 -3810 2540)
(pin Round[A]Pad_1397_um 2@1 -3810 -2540)
)
(image "DO-214AALED"
(outline (path signal 75 0 914.4 -152.4 863.6))
(outline (path signal 75 0 914.4 0 711.2))
(outline (path signal 75 0 914.4 -304.8 457.2))
(outline (path signal 75 -254 1168.4 -254 965.2))
(outline (path signal 75 -609.6 660.4 -254 1168.4))
(outline (path signal 75 -254 1168.4 -457.2 1117.6))
(outline (path signal 127 -762 0 -965.2 0))
(outline (path signal 127 -2286 1905 2286 1905))
(outline (path signal 127 2286 1905 2286 1270))
(outline (path signal 127 660.4 -1905 660.4 1905))
(outline (path signal 127 990.6 -1905 990.6 1905))
(outline (path signal 127 -2286 -1270 -2286 -1905))
(outline (path signal 127 -2286 -1905 2286 -1905))
(outline (path signal 127 2286 -1905 2286 -1270))
(outline (path signal 127 -2286 1270 -2286 1905))
(outline (path signal 127 -127 0 -762 474.98))
(outline (path signal 127 -762 474.98 -762 0))
(outline (path signal 127 -762 0 -762 -474.98))
(outline (path signal 127 -762 -474.98 -127 0))
(outline (path signal 127 -127 0 -127 317.5))
(outline (path signal 127 -127 0 -127 -317.5))
(outline (path signal 127 -127 0 982.98 0))
(pin Rect[T]Pad_1800.86x2199.64_um 1 -2006.6 0)
(pin Rect[T]Pad_1800.86x2199.64_um 2 2006.6 0)
)
(image LM7805_VERT
(outline (path signal 381 1905 5080 2540 5080))
(outline (path signal 381 2540 5080 2540 -5080))
(outline (path signal 381 2540 -5080 1905 -5080))
(outline (path signal 381 -1905 5080 1905 5080))
(outline (path signal 381 1905 5080 1905 -5080))
(outline (path signal 381 1905 -5080 -1905 -5080))
(outline (path signal 381 -1905 -5080 -1905 5080))
(pin Round[A]Pad_1778_um IN 0 2540)
(pin Round[A]Pad_1778_um GNDD 0 0)
(pin Rect[A]Pad_1778x1778_um OUTP 0 -2540)
)
(image D4
(outline (path signal 304.8 -3810 1270 3810 1270))
(outline (path signal 304.8 3810 1270 3810 -1270))
(outline (path signal 304.8 3810 -1270 -3810 -1270))
(outline (path signal 304.8 -3810 -1270 -3810 1270))
(outline (path signal 304.8 3175 1270 3175 -1270))
(outline (path signal 304.8 2540 -1270 2540 1270))
(outline (path signal 304.8 -3810 0 -5080 0))
(outline (path signal 304.8 3810 0 5080 0))
(pin Round[A]Pad_1778_um 1 -5080 0)
(pin Rect[A]Pad_1778x1778_um 2 5080 0)
)
(image D5
(outline (path signal 304.8 6350 0 5080 0))
(outline (path signal 304.8 5080 0 5080 1270))
(outline (path signal 304.8 5080 1270 -5080 1270))
(outline (path signal 304.8 -5080 1270 -5080 0))
(outline (path signal 304.8 -5080 0 -6350 0))
(outline (path signal 304.8 -5080 0 -5080 -1270))
(outline (path signal 304.8 -5080 -1270 5080 -1270))
(outline (path signal 304.8 5080 -1270 5080 0))
(outline (path signal 304.8 3810 1270 3810 -1270))
(outline (path signal 304.8 4064 1270 4064 -1270))
(pin Round[A]Pad_1778_um 1 -6350 0)
(pin Rect[A]Pad_1778x1778_um 2 6350 0)
)
(image 1pin
(outline (path signal 381 2286 0 2174.11 -706.412 1849.41 -1343.68 1343.68 -1849.41
706.412 -2174.11 0 -2286 -706.412 -2174.11 -1343.68 -1849.41
-1849.41 -1343.68 -2174.11 -706.412 -2286 0 -2174.11 706.412
-1849.41 1343.68 -1343.68 1849.41 -706.412 2174.11 0 2286
706.412 2174.11 1343.68 1849.41 1849.41 1343.68 2174.11 706.412))
(pin Round[A]Pad_4064_um 1 0 0)
)
(image stich
(pin Round[A]Pad_1000_um 1 0 0)
)
(padstack Round[A]Pad_1000_um
(shape (circle F.Cu 1000))
(shape (circle B.Cu 1000))
(attach off)
)
(padstack Round[A]Pad_1397_um
(shape (circle F.Cu 1397))
(shape (circle B.Cu 1397))
(attach off)
)
(padstack Round[A]Pad_1524_um
(shape (circle F.Cu 1524))
(shape (circle B.Cu 1524))
(attach off)
)
(padstack Round[A]Pad_1676.4_um
(shape (circle F.Cu 1676.4))
(shape (circle B.Cu 1676.4))
(attach off)
)
(padstack Round[A]Pad_1778_um
(shape (circle F.Cu 1778))
(shape (circle B.Cu 1778))
(attach off)
)
(padstack Round[A]Pad_4064_um
(shape (circle F.Cu 4064))
(shape (circle B.Cu 4064))
(attach off)
)
(padstack Oval[A]Pad_1574.8x2286_um
(shape (path F.Cu 1574.8 0 -355.6 0 355.6))
(shape (path B.Cu 1574.8 0 -355.6 0 355.6))
(attach off)
)
(padstack Rect[T]Pad_2400x6600_um
(shape (rect F.Cu -1200 -3300 1200 3300))
(attach off)
)
(padstack Rect[A]Pad_3500.12x3500.12_um
(shape (rect F.Cu -1750.06 -1750.06 1750.06 1750.06))
(shape (rect B.Cu -1750.06 -1750.06 1750.06 1750.06))
(attach off)
)
(padstack Rect[T]Pad_508x762_um
(shape (rect F.Cu -254 -381 254 381))
(attach off)
)
(padstack Rect[T]Pad_889x1397_um
(shape (rect F.Cu -444.5 -698.5 444.5 698.5))
(attach off)
)
(padstack Rect[A]Pad_1524x1524_um
(shape (rect F.Cu -762 -762 762 762))
(shape (rect B.Cu -762 -762 762 762))
(attach off)
)
(padstack Rect[A]Pad_1574.8x2286_um
(shape (rect F.Cu -787.4 -1143 787.4 1143))
(shape (rect B.Cu -787.4 -1143 787.4 1143))
(attach off)
)
(padstack Rect[A]Pad_1778x1778_um
(shape (rect F.Cu -889 -889 889 889))
(shape (rect B.Cu -889 -889 889 889))
(attach off)
)
(padstack Rect[T]Pad_1800.86x2199.64_um
(shape (rect F.Cu -900.43 -1099.82 900.43 1099.82))
(attach off)
)
(padstack "Via[0-1]_889:635_um"
(shape (circle F.Cu 889))
(shape (circle B.Cu 889))
(attach off)
)
(padstack "Via[0-1]_889:0_um"
(shape (circle F.Cu 889))
(shape (circle B.Cu 889))
(attach off)
)
(padstack "Via[0-1]_400:300_um"
(shape (circle F.Cu 400))
(shape (circle B.Cu 400))
(attach off)
)
(padstack "Via[0-1]_600:400_um"
(shape (circle F.Cu 600))
(shape (circle B.Cu 600))
(attach off)
)
)
(network
(net DTR
(pins C3-1 P1-1)
)
(net GND
(pins U4-GNDP C17-2 C16-2 C14-2 C13-2 U3-GNDP C2-2 C4-2 C5-2 C6-2 C1-2 P1-5
P1-6 IC1-8 IC1-22 U2-GNDP C7-2 C10-2 C11-2 D3-2 J1-1 J1-2 P2-1 SW1-2 SW1-2@1
U1-GNDD C8-2 P10-1 P11-1 P12-1 P13-1 P14-1 P15-1 P16-1 P17-1 P18-1 P19-1 P20-1
P21-1 P22-1 P23-1 P24-1 P25-1 P26-1 P27-1 P28-1 P29-1 P30-1 P31-1 P32-1 P33-1
P34-1 P35-1 P36-1 P37-1 P38-1 P39-1 P40-1 P41-1 P42-1)
)
(net "N-000001"
(pins D5-1 U3-SW L2-1)
)
(net "N-0000016"
(pins P7-2 C12-1 R4-2 U3-SET D6-1)
)
(net "N-0000017"
(pins L3-2 C15-2 P8-1 D8-2)
)
(net "N-0000018"
(pins P7-1 C12-2 L2-2 D6-2)
)
(net "N-0000019"
(pins J1-3 D4-1 P9-1)
)
(net "N-0000025"
(pins U1-OUTP D9-1 C8-1)
)
(net "N-0000028"
(pins X1-2 C1-1 IC1-10)
)
(net "N-0000031"
(pins C2-1 X1-1 IC1-9)
)
(net "N-0000032"
(pins R3-2 D3-1)
)
(net "N-0000034"
(pins L1-2 C9-2 P3-1 D2-2)
)
(net "N-0000035"
(pins L1-1 U2-SW D1-1)
)
(net "N-0000036"
(pins U2-SET R2-2 C9-1 P3-2 D2-1)
)
(net "N-000005"
(pins D5-2)
)
(net "N-000006"
(pins L3-1 U4-SW D7-1)
)
(net "N-000007"
(pins U4-SET R5-2 C15-1 P8-2 D8-1)
)
(net PB0
(pins IC1-14 P6-6)
)
(net PB1
(pins IC1-15 P6-5)
)
(net PB2
(pins IC1-16 P6-4)
)
(net PB3
(pins IC1-17 P2-3 P6-3)
)
(net PB4
(pins IC1-18 P2-4 P6-2)
)
(net PB5
(pins IC1-19 P2-5 P6-1)
)
(net PC0
(pins IC1-23 P4-7)
)
(net PC1
(pins IC1-24 P4-6)
)
(net PC2
(pins IC1-25 P4-5)
)
(net PC3
(pins IC1-26 P4-4)
)
(net PC4
(pins IC1-27 P4-3)
)
(net PC5
(pins IC1-28 P4-2)
)
(net PC6
(pins C3-2 R1-2 IC1-1 P2-2 P4-1 SW1-1 SW1-1@1)
)
(net PD0
(pins P1-2 IC1-2 P5-8)
)
(net PD1
(pins P1-3 IC1-3 P5-7)
)
(net PD2
(pins IC1-4 P5-6)
)
(net PD3
(pins IC1-5 P5-5)
)
(net PD4
(pins IC1-6 P5-4)
)
(net PD5
(pins IC1-11 U2-CTRL P5-3)
)
(net PD6
(pins U3-CTRL IC1-12 P5-2)
)
(net PD7
(pins U4-CTRL IC1-13 R3-1 P5-1)
)
(net VCC
(pins C4-1 C5-1 C6-1 R1-1 P1-4 IC1-7 IC1-20 IC1-21 D9-2)
)
(net VLED
(pins U4-VIN R5-1 C17-1 C16-1 D7-2 C14-1 C13-1 R4-1 U3-VIN U2-VIN C7-1 R2-1
C10-1 C11-1 D1-2 U1-IN D4-2)
)
(class kicad_default "" DTR GND "N-000001" "N-0000016" "N-0000017" "N-0000018"
"N-0000019" "N-0000025" "N-0000028" "N-0000031" "N-0000032" "N-0000034"
"N-0000035" "N-0000036" "N-000005" "N-000006" "N-000007" PB0 PB1 PB2
PB3 PB4 PB5 PC0 PC1 PC2 PC3 PC4 PC5 PC6 PD0 PD1 PD2 PD3 PD4 PD5 PD6
PD7 VCC VLED
(circuit
(use_via Via[0-1]_889:635_um)
)
(rule
(width 254)
(clearance 254.1)
)
)
)
(wiring
(wire (path F.Cu 500 137122 -100127 137122 -101460)(net DTR)(type protect))
(wire (path B.Cu 254 81407 -83997.8 81407 -82931)(net DTR)(type protect))
(wire (path B.Cu 254 83261.2 -85852 81407 -83997.8)(net DTR)(type protect))
(wire (path B.Cu 254 83261.2 -87630 83261.2 -85852)(net DTR)(type protect))
(wire (path B.Cu 254 81534 -89357.2 83261.2 -87630)(net DTR)(type protect))
(wire (path B.Cu 254 81534 -93421.2 81534 -89357.2)(net DTR)(type protect))
(wire (path B.Cu 254 81432.4 -93522.8 81534 -93421.2)(net DTR)(type protect))
(wire (path F.Cu 254 86055.2 -98145.6 81432.4 -93522.8)(net DTR)(type protect))
(wire (path F.Cu 254 99415.6 -98145.6 86055.2 -98145.6)(net DTR)(type protect))
(wire (path F.Cu 254 103378 -102108 99415.6 -98145.6)(net DTR)(type protect))
(wire (path F.Cu 254 107798 -102108 103378 -102108)(net DTR)(type protect))
(wire (path F.Cu 254 108407 -102108 107798 -102108)(net DTR)(type protect))
(wire (path B.Cu 254 108407 -104140 108407 -102108)(net DTR)(type protect))
(wire (path B.Cu 254 108560 -104292 108407 -104140)(net DTR)(type protect))
(wire (path F.Cu 254 112624 -104292 108560 -104292)(net DTR)(type protect))
(wire (path F.Cu 254 113589 -105258 112624 -104292)(net DTR)(type protect))
(wire (path F.Cu 254 113944 -105258 113589 -105258)(net DTR)(type protect))
(wire (path F.Cu 254 115367 -106680 113944 -105258)(net DTR)(type protect))
(wire (path F.Cu 254 138024 -106680 115367 -106680)(net DTR)(type protect))
(wire (path F.Cu 254 138684 -106020 138024 -106680)(net DTR)(type protect))
(wire (path F.Cu 500 138684 -103022 138684 -106020)(net DTR)(type protect))
(wire (path F.Cu 500 137122 -101460 138684 -103022)(net DTR)(type protect))
(wire (path F.Cu 254 80365.6 -96774 79375 -96774)(net GND)(type protect))
(wire (path F.Cu 254 77914.5 -98044 77914.5 -99377.5)(net GND)(type protect))
(wire (path F.Cu 254 77660.5 -97790 77914.5 -98044)(net GND)(type protect))
(wire (path B.Cu 254 77660.5 -97726.5 77660.5 -97790)(net GND)(type protect))
(wire (path B.Cu 254 78994 -96393 77660.5 -97726.5)(net GND)(type protect))
(wire (path F.Cu 254 79375 -96774 78994 -96393)(net GND)(type protect))
(wire (path F.Cu 254 104191 -105740 105842 -105740)(net GND)(type protect))
(wire (path B.Cu 254 106934 -104648 106744 -104648)(net GND)(type protect))
(wire (path B.Cu 254 106998 -104712 106934 -104648)(net GND)(type protect))
(wire (path F.Cu 254 108522 -106236 106998 -104712)(net GND)(type protect))
(wire (path B.Cu 254 106362 -106236 108522 -106236)(net GND)(type protect))
(wire (path B.Cu 254 105854 -105728 106362 -106236)(net GND)(type protect))
(wire (path F.Cu 254 105842 -105740 105854 -105728)(net GND)(type protect))
(wire (path F.Cu 500 109925 -114268 105702 -114268)(net "N-000001")(type protect))
(wire (path F.Cu 500 110274 -114618 109925 -114268)(net "N-000001")(type protect))
(wire (path F.Cu 500 110274 -112484 110274 -114618)(net "N-000001")(type protect))
(wire (path F.Cu 500 110934 -111824 110274 -112484)(net "N-000001")(type protect))
(wire (path F.Cu 500 114465 -116522 112814 -116522)(net "N-0000016")(type protect))
(wire (path F.Cu 500 113982 -120332 113982 -122504 114579 -123101)(net "N-0000016")(type protect))
(wire (path F.Cu 500 114859 -119456 113982 -120332)(net "N-0000016")(type protect))
(wire (path F.Cu 500 114579 -123101 114579 -124943)(net "N-0000016")(type protect))
(wire (path F.Cu 500 114859 -116916 114859 -119456)(net "N-0000016")(type protect))
(wire (path F.Cu 500 114465 -116522 114859 -116916)(net "N-0000016")(type protect))
(wire (path F.Cu 500 134696 -119405 133508 -118218 129553 -118218)(net "N-0000017")(type protect))
(wire (path F.Cu 500 135928 -122453 135890 -122492)(net "N-0000017")(type protect))
(wire (path F.Cu 500 134696 -119405 135928 -120637 135928 -122453)(net "N-0000017")(type protect))
(wire (path F.Cu 500 135890 -122492 135890 -124892)(net "N-0000017")(type protect))
(wire (path F.Cu 500 112039 -122542 112039 -124943)(net "N-0000018")(type protect))
(wire (path F.Cu 500 112078 -120688 112078 -122504)(net "N-0000018")(type protect))
(wire (path F.Cu 500 110846 -119456 112078 -120688)(net "N-0000018")(type protect))
(wire (path F.Cu 500 112078 -122504 112039 -122542)(net "N-0000018")(type protect))
(wire (path F.Cu 500 109658 -118268 105702 -118268)(net "N-0000018")(type protect))
(wire (path F.Cu 500 110846 -119456 109658 -118268)(net "N-0000018")(type protect))
(wire (path B.Cu 3000 72999.6 -123901 72999.6 -119736)(net "N-0000019")(type protect))
(wire (path F.Cu 1000 79375 -111582 79375 -120015 75438 -123952 73025 -123952)(net "N-0000019")(type protect))
(wire (path F.Cu 500 95173.8 -100025 95173.8 -103137 95211.9 -103175)(net "N-0000025")(type protect))
(wire (path B.Cu 1000 95148.4 -96316.8 95148.4 -99999.8 95173.8 -100025)(net "N-0000025")(type protect))
(wire (path F.Cu 500 127254 -99377.5 124904 -97028 124904 -96202.5)(net "N-0000028")(type protect))
(wire (path F.Cu 500 127254 -99377.5 127000 -99631.5 127000 -103378)(net "N-0000028")(type protect))
(wire (path F.Cu 500 121920 -103378 121539 -102997 121539 -99377.5 121463 -99301.3)(net "N-0000031")(type protect))
(wire (path F.Cu 500 121463 -97104.2 122364 -96202.5)(net "N-0000031")(type protect))
(wire (path F.Cu 500 121463 -99301.3 121463 -97104.2)(net "N-0000031")(type protect))
(wire (path F.Cu 500 136373 -103530 134582 -101740 134582 -100025)(net "N-0000032")(type protect))
(wire (path F.Cu 500 90551 -119050 89363.3 -117862 85407.5 -117862)(net "N-0000034")(type protect))
(wire (path F.Cu 500 91782.9 -122098 91744.8 -122136 91744.8 -124536)(net "N-0000034")(type protect))
(wire (path F.Cu 500 90551 -119050 91782.9 -120282 91782.9 -122098)(net "N-0000034")(type protect))
(wire (path F.Cu 500 90639.9 -111417 89979.5 -112078 89979.5 -114211 89630.5 -113862
85407.5 -113862)(net "N-0000035")(type protect))
(wire (path F.Cu 500 93687.9 -122098 94284.8 -122695 94284.8 -124536)(net "N-0000036")(type protect))
(wire (path F.Cu 500 94564.2 -119050 93687.9 -119926 93687.9 -122098)(net "N-0000036")(type protect))
(wire (path F.Cu 500 94170.5 -116116 94564.2 -116510 94564.2 -119050)(net "N-0000036")(type protect))
(wire (path F.Cu 500 94170.5 -116116 92519.5 -116116)(net "N-0000036")(type protect))
(wire (path F.Cu 500 114948 -111824 114465 -112306)(net "N-000005")(type protect))
(wire (path F.Cu 500 134785 -111773 134125 -112433 134125 -114567 133776 -114218
129553 -114218)(net "N-000006")(type protect))
(wire (path F.Cu 500 138316 -116472 138709 -116865 138709 -119405)(net "N-000007")(type protect))
(wire (path F.Cu 500 138430 -123050 138430 -124892)(net "N-000007")(type protect))
(wire (path F.Cu 500 138709 -119405 137833 -120282)(net "N-000007")(type protect))
(wire (path F.Cu 500 137833 -122453 138430 -123050)(net "N-000007")(type protect))
(wire (path F.Cu 500 137833 -120282 137833 -122453)(net "N-000007")(type protect))
(wire (path F.Cu 500 138316 -116472 136665 -116472)(net "N-000007")(type protect))
(wire (path B.Cu 254 135763 -83032.6 137592 -83032.6)(net PB0)(type protect))
(wire (path B.Cu 254 136563 -96202.5 135064 -96202.5)(net PB0)(type protect))
(wire (path B.Cu 254 137617 -95148.4 136563 -96202.5)(net PB0)(type protect))
(wire (path B.Cu 254 137617 -83058 137617 -95148.4)(net PB0)(type protect))
(wire (path B.Cu 254 137592 -83032.6 137617 -83058)(net PB0)(type protect))
(wire (path F.Cu 254 133223 -83032.6 133223 -84251.8)(net PB1)(type protect))
(wire (path F.Cu 254 135064 -86093.3 135064 -88582.5)(net PB1)(type protect))
(wire (path F.Cu 254 133223 -84251.8 135064 -86093.3)(net PB1)(type protect))
(wire (path F.Cu 254 130683 -83032.6 130683 -84404.2)(net PB2)(type protect))
(wire (path F.Cu 254 132232 -88290.4 132524 -88582.5)(net PB2)(type protect))
(wire (path F.Cu 254 132232 -85953.6 132232 -88290.4)(net PB2)(type protect))
(wire (path F.Cu 254 130683 -84404.2 132232 -85953.6)(net PB2)(type protect))
(wire (path F.Cu 254 141884 -88112.6 141605 -88112.6)(net PB3)(type protect))
(wire (path B.Cu 254 129984 -91224.1 129984 -88582.5)(net PB3)(type protect))
(wire (path B.Cu 254 130200 -91440 129984 -91224.1)(net PB3)(type protect))
(wire (path F.Cu 254 130200 -91897.2 130200 -91440)(net PB3)(type protect))
(wire (path F.Cu 254 131369 -93065.6 130200 -91897.2)(net PB3)(type protect))
(wire (path F.Cu 254 137922 -93065.6 131369 -93065.6)(net PB3)(type protect))
(wire (path F.Cu 254 140157 -90830.4 137922 -93065.6)(net PB3)(type protect))
(wire (path F.Cu 254 140157 -89560.4 140157 -90830.4)(net PB3)(type protect))
(wire (path F.Cu 254 141605 -88112.6 140157 -89560.4)(net PB3)(type protect))
(wire (path F.Cu 254 128143 -83032.6 128143 -83337.4)(net PB3)(type protect))
(wire (path F.Cu 254 129984 -85178.9 129984 -88582.5)(net PB3)(type protect))
(wire (path F.Cu 254 128143 -83337.4 129984 -85178.9)(net PB3)(type protect))
(wire (path B.Cu 254 127444 -88582.5 127444 -89344.5)(net PB4)(type protect))
(wire (path B.Cu 254 140335 -85572.6 141884 -85572.6)(net PB4)(type protect))
(wire (path B.Cu 254 139598 -86309.2 140335 -85572.6)(net PB4)(type protect))
(wire (path B.Cu 254 139598 -90322.4 139598 -86309.2)(net PB4)(type protect))
(wire (path B.Cu 254 138278 -91643.2 139598 -90322.4)(net PB4)(type protect))
(wire (path F.Cu 254 137008 -92354.4 138278 -91643.2)(net PB4)(type protect))
(wire (path B.Cu 254 137109 -92354.4 137008 -92354.4)(net PB4)(type protect))
(wire (path B.Cu 254 129845 -92354.4 137109 -92354.4)(net PB4)(type protect))
(wire (path B.Cu 254 127444 -89344.5 129845 -92354.4)(net PB4)(type protect))
(wire (path F.Cu 254 125603 -83032.6 125755 -83032.6)(net PB4)(type protect))
(wire (path F.Cu 254 127444 -84721.7 127444 -88582.5)(net PB4)(type protect))
(wire (path F.Cu 254 125755 -83032.6 127444 -84721.7)(net PB4)(type protect))
(wire (path F.Cu 254 124904 -88582.5 124904 -89446.1)(net PB5)(type protect))
(wire (path F.Cu 254 139090 -85826.6 141884 -83032.6)(net PB5)(type protect))
(wire (path F.Cu 254 139090 -90322.4 139090 -85826.6)(net PB5)(type protect))
(wire (path F.Cu 254 138735 -90678 139090 -90322.4)(net PB5)(type protect))
(wire (path F.Cu 254 126136 -90678 138735 -90678)(net PB5)(type protect))
(wire (path F.Cu 254 124904 -89446.1 126136 -90678)(net PB5)(type protect))
(wire (path F.Cu 254 123063 -83032.6 123063 -83083.4)(net PB5)(type protect))
(wire (path F.Cu 254 124904 -84924.9 124904 -88582.5)(net PB5)(type protect))
(wire (path F.Cu 254 123063 -83083.4 124904 -84924.9)(net PB5)(type protect))
(wire (path F.Cu 254 116764 -82905.6 116764 -83286.6)(net PC0)(type protect))
(wire (path F.Cu 254 114744 -85305.9 114744 -88582.5)(net PC0)(type protect))
(wire (path F.Cu 254 116764 -83286.6 114744 -85305.9)(net PC0)(type protect))
(wire (path F.Cu 254 114224 -82905.6 114224 -83794.6)(net PC1)(type protect))
(wire (path F.Cu 254 112204 -85813.9 112204 -88582.5)(net PC1)(type protect))
(wire (path F.Cu 254 114224 -83794.6 112204 -85813.9)(net PC1)(type protect))
(wire (path F.Cu 254 111684 -82905.6 111684 -83388.2)(net PC2)(type protect))
(wire (path F.Cu 254 109664 -85407.5 109664 -88582.5)(net PC2)(type protect))
(wire (path F.Cu 254 111684 -83388.2 109664 -85407.5)(net PC2)(type protect))
(wire (path F.Cu 254 109144 -82905.6 109144 -83235.8)(net PC3)(type protect))
(wire (path F.Cu 254 107124 -85255.1 107124 -88582.5)(net PC3)(type protect))
(wire (path F.Cu 254 109144 -83235.8 107124 -85255.1)(net PC3)(type protect))
(wire (path F.Cu 254 106604 -82905.6 106604 -83032.6)(net PC4)(type protect))
(wire (path F.Cu 254 104584 -85051.9 104584 -88582.5)(net PC4)(type protect))
(wire (path F.Cu 254 106604 -83032.6 104584 -85051.9)(net PC4)(type protect))
(wire (path F.Cu 254 104064 -82905.6 104064 -83439)(net PC5)(type protect))
(wire (path F.Cu 254 102006 -88544.4 102044 -88582.5)(net PC5)(type protect))
(wire (path F.Cu 254 102006 -85496.4 102006 -88544.4)(net PC5)(type protect))
(wire (path F.Cu 254 104064 -83439 102006 -85496.4)(net PC5)(type protect))
(wire (path F.Cu 500 111811 -100660 115354 -100660 115430 -100584)(net PC6)(type protect))
(wire (path B.Cu 254 104191 -100660 111811 -100660)(net PC6)(type protect))
(wire (path B.Cu 254 102044 -96202.5 102044 -98513.9 104191 -100660)(net PC6)(type protect))
(wire (path B.Cu 254 101524 -82905.6 100127 -82905.6)(net PC6)(type protect))
(wire (path B.Cu 254 99860.1 -96202.5 102044 -96202.5)(net PC6)(type protect))
(wire (path B.Cu 254 98907.6 -95250 99860.1 -96202.5)(net PC6)(type protect))
(wire (path B.Cu 254 98907.6 -84124.8 98907.6 -95250)(net PC6)(type protect))
(wire (path B.Cu 254 100127 -82905.6 98907.6 -84124.8)(net PC6)(type protect))
(wire (path F.Cu 500 141884 -90652.6 139027 -93510.1 139027 -100127)(net PC6)(type protect))
(wire (path B.Cu 254 86334.6 -93141.8 86334.6 -93192.6)(net PD0)(type protect))
(wire (path B.Cu 254 78892.4 -100635 69596 -100635)(net PD0)(type protect))
(wire (path B.Cu 254 86334.6 -93192.6 78892.4 -100635)(net PD0)(type protect))
(wire (path B.Cu 254 104584 -96202.5 104584 -95288.1)(net PD0)(type protect))
(wire (path B.Cu 254 83947 -90754.2 83947 -82931)(net PD0)(type protect))
(wire (path B.Cu 254 87426.8 -94234 86334.6 -93141.8 86207.6 -93014.8 83947 -90754.2)(net PD0)(type protect))
(wire (path B.Cu 254 93218 -94234 87426.8 -94234)(net PD0)(type protect))
(wire (path B.Cu 254 98044 -94234 93218 -94234)(net PD0)(type protect))
(wire (path F.Cu 254 99872.8 -94234 98044 -94234)(net PD0)(type protect))
(wire (path B.Cu 254 103530 -94234 99872.8 -94234)(net PD0)(type protect))
(wire (path B.Cu 254 104584 -95288.1 103530 -94234)(net PD0)(type protect))
(wire (path B.Cu 254 86487 -82931 86487 -86436.2)(net PD1)(type protect))
(wire (path B.Cu 254 69951.6 -98450.4 69596 -98094.8)(net PD1)(type protect))
(wire (path B.Cu 254 71424.8 -98450.4 69951.6 -98450.4)(net PD1)(type protect))
(wire (path B.Cu 254 74676 -95199.2 71424.8 -98450.4)(net PD1)(type protect))
(wire (path B.Cu 254 74676 -94132.4 74676 -95199.2)(net PD1)(type protect))
(wire (path B.Cu 254 82550 -86258.4 74676 -94132.4)(net PD1)(type protect))
(wire (path F.Cu 254 85191.6 -86258.4 82550 -86258.4)(net PD1)(type protect))
(wire (path F.Cu 254 85293.2 -86360 85191.6 -86258.4)(net PD1)(type protect))
(wire (path B.Cu 254 86410.8 -86360 85293.2 -86360)(net PD1)(type protect))
(wire (path B.Cu 254 86487 -86436.2 86410.8 -86360)(net PD1)(type protect))
(wire (path B.Cu 254 86487 -82931 86487 -90957.4)(net PD1)(type protect))
(wire (path B.Cu 254 107023 -96202.5 107124 -96202.5)(net PD1)(type protect))
(wire (path B.Cu 254 104242 -93421.2 107023 -96202.5)(net PD1)(type protect))
(wire (path B.Cu 254 99923.6 -93421.2 104242 -93421.2)(net PD1)(type protect))
(wire (path F.Cu 254 98094.8 -93421.2 99923.6 -93421.2)(net PD1)(type protect))
(wire (path B.Cu 254 88950.8 -93421.2 98094.8 -93421.2)(net PD1)(type protect))
(wire (path B.Cu 254 86487 -90957.4 88950.8 -93421.2)(net PD1)(type protect))
(wire (path F.Cu 254 109664 -96202.5 106223 -92760.8)(net PD2)(type protect))
(wire (path F.Cu 254 69646.8 -95504 69596 -95554.8)(net PD2)(type protect))
(wire (path F.Cu 254 75387.2 -95504 69646.8 -95504)(net PD2)(type protect))
(wire (path B.Cu 254 75539.6 -95351.6 75387.2 -95504)(net PD2)(type protect))
(wire (path B.Cu 254 81280 -95351.6 75539.6 -95351.6)(net PD2)(type protect))
(wire (path B.Cu 254 83566 -93065.6 81280 -95351.6)(net PD2)(type protect))
(wire (path F.Cu 254 83870.8 -92760.8 83566 -93065.6)(net PD2)(type protect))
(wire (path F.Cu 254 106223 -92760.8 83870.8 -92760.8)(net PD2)(type protect))
(wire (path F.Cu 254 112204 -96202.5 112204 -97040.7)(net PD3)(type protect))
(wire (path B.Cu 254 74472.8 -93014.8 69596 -93014.8)(net PD3)(type protect))
(wire (path B.Cu 254 74930 -92557.6 74472.8 -93014.8)(net PD3)(type protect))
(wire (path F.Cu 254 75285.6 -92913.2 74930 -92557.6)(net PD3)(type protect))
(wire (path F.Cu 254 81788 -92913.2 75285.6 -92913.2)(net PD3)(type protect))
(wire (path F.Cu 254 82245.2 -93370.4 81788 -92913.2)(net PD3)(type protect))
(wire (path F.Cu 254 82346.8 -93370.4 82245.2 -93370.4)(net PD3)(type protect))
(wire (path F.Cu 254 86614 -97637.6 82346.8 -93370.4)(net PD3)(type protect))
(wire (path F.Cu 254 99974.4 -97637.6 86614 -97637.6)(net PD3)(type protect))
(wire (path F.Cu 254 101498 -99161.6 99974.4 -97637.6)(net PD3)(type protect))
(wire (path F.Cu 254 110084 -99161.6 101498 -99161.6)(net PD3)(type protect))
(wire (path F.Cu 254 112204 -97040.7 110084 -99161.6)(net PD3)(type protect))
(wire (path F.Cu 254 114744 -96202.5 114744 -96786.7)(net PD4)(type protect))
(wire (path F.Cu 254 71882 -90474.8 69596 -90474.8)(net PD4)(type protect))
(wire (path F.Cu 254 89408 -108001 71882 -90474.8)(net PD4)(type protect))
(wire (path F.Cu 254 92659.2 -108001 89408 -108001)(net PD4)(type protect))
(wire (path F.Cu 254 95453.2 -105207 92659.2 -108001)(net PD4)(type protect))
(wire (path F.Cu 254 100330 -105207 95453.2 -105207)(net PD4)(type protect))
(wire (path F.Cu 254 102667 -102870 100330 -105207)(net PD4)(type protect))
(wire (path F.Cu 254 109372 -102870 102667 -102870)(net PD4)(type protect))
(wire (path F.Cu 254 109779 -102464 109372 -102870)(net PD4)(type protect))
(wire (path F.Cu 254 109779 -100533 109779 -102464)(net PD4)(type protect))
(wire (path F.Cu 254 111201 -99110.8 109779 -100533)(net PD4)(type protect))
(wire (path F.Cu 254 112420 -99110.8 111201 -99110.8)(net PD4)(type protect))
(wire (path F.Cu 254 114744 -96786.7 112420 -99110.8)(net PD4)(type protect))
(wire (path F.Cu 254 89979.5 -116116 91351.1 -116116)(net PD5)(type protect))
(wire (path F.Cu 254 128778 -97536 127444 -96202.5)(net PD5)(type protect))
(wire (path F.Cu 254 128778 -104343 128778 -97536)(net PD5)(type protect))
(wire (path F.Cu 254 127660 -105461 128778 -104343)(net PD5)(type protect))
(wire (path F.Cu 254 118567 -105461 127660 -105461)(net PD5)(type protect))
(wire (path F.Cu 254 116738 -103632 118567 -105461)(net PD5)(type protect))
(wire (path F.Cu 254 102768 -103632 116738 -103632)(net PD5)(type protect))
(wire (path F.Cu 254 100432 -105969 102768 -103632)(net PD5)(type protect))
(wire (path F.Cu 254 95808.8 -105969 100432 -105969)(net PD5)(type protect))
(wire (path F.Cu 254 92760.8 -109017 95808.8 -105969)(net PD5)(type protect))
(wire (path F.Cu 254 92760.8 -112166 92760.8 -109017)(net PD5)(type protect))
(wire (path F.Cu 254 91694 -113233 92760.8 -112166)(net PD5)(type protect))
(wire (path F.Cu 254 91694 -115773 91694 -113233)(net PD5)(type protect))
(wire (path F.Cu 254 91351.1 -116116 91694 -115773)(net PD5)(type protect))
(wire (path F.Cu 254 69596 -87934.8 74625.2 -87934.8)(net PD5)(type protect))
(wire (path F.Cu 254 127444 -95542.1 127444 -96202.5)(net PD5)(type protect))
(wire (path F.Cu 254 124054 -92151.2 127444 -95542.1)(net PD5)(type protect))
(wire (path F.Cu 254 78841.6 -92151.2 124054 -92151.2)(net PD5)(type protect))
(wire (path F.Cu 254 74625.2 -87934.8 78841.6 -92151.2)(net PD5)(type protect))
(wire (path F.Cu 254 110274 -116522 111163 -116522)(net PD6)(type protect))
(wire (path B.Cu 254 129997 -96215.2 129984 -96202.5)(net PD6)(type protect))
(wire (path B.Cu 254 129997 -109728 129997 -96215.2)(net PD6)(type protect))
(wire (path B.Cu 254 129235 -110490 129997 -109728)(net PD6)(type protect))
(wire (path B.Cu 254 125070 -110490 129235 -110490)(net PD6)(type protect))
(wire (path B.Cu 254 119583 -115976 125070 -110490)(net PD6)(type protect))
(wire (path F.Cu 254 115824 -115976 119583 -115976)(net PD6)(type protect))
(wire (path F.Cu 254 115418 -115570 115824 -115976)(net PD6)(type protect))
(wire (path F.Cu 254 112116 -115570 115418 -115570)(net PD6)(type protect))
(wire (path F.Cu 254 111163 -116522 112116 -115570)(net PD6)(type protect))
(wire (path F.Cu 254 69596 -85394.8 73761.6 -85394.8)(net PD6)(type protect))
(wire (path F.Cu 254 129984 -94322.9 129984 -96202.5)(net PD6)(type protect))
(wire (path F.Cu 254 128727 -93065.6 129984 -94322.9)(net PD6)(type protect))
(wire (path F.Cu 254 126035 -93065.6 128727 -93065.6)(net PD6)(type protect))
(wire (path F.Cu 254 124409 -91440 126035 -93065.6)(net PD6)(type protect))
(wire (path F.Cu 254 79806.8 -91440 124409 -91440)(net PD6)(type protect))
(wire (path F.Cu 254 73761.6 -85394.8 79806.8 -91440)(net PD6)(type protect))
(wire (path B.Cu 254 132283 -104445 132283 -102311)(net PD7)(type protect))
(wire (path F.Cu 254 134887 -116472 135484 -115875 135484 -114402 136703 -113182
136703 -109372)(net PD7)(type protect))
(wire (path B.Cu 254 136703 -109372 136703 -106578 136144 -106020 133858 -106020
132283 -104445)(net PD7)(type protect))
(wire (path F.Cu 254 134125 -116472 134887 -116472)(net PD7)(type protect))
(wire (path F.Cu 254 132677 -101841 132677 -100025)(net PD7)(type protect))
(wire (path F.Cu 254 132740 -101905 132677 -101841)(net PD7)(type protect))
(wire (path B.Cu 254 132690 -101905 132740 -101905)(net PD7)(type protect))
(wire (path B.Cu 254 132283 -102311 132690 -101905)(net PD7)(type protect))
(wire (path F.Cu 254 69596 -82854.8 72593.2 -82854.8)(net PD7)(type protect))
(wire (path F.Cu 254 132524 -95846.9 132524 -96202.5)(net PD7)(type protect))
(wire (path F.Cu 254 128829 -92151.2 132524 -95846.9)(net PD7)(type protect))
(wire (path F.Cu 254 126136 -92151.2 128829 -92151.2)(net PD7)(type protect))
(wire (path F.Cu 254 124816 -90830.4 126136 -92151.2)(net PD7)(type protect))
(wire (path F.Cu 254 80568.8 -90830.4 124816 -90830.4)(net PD7)(type protect))
(wire (path F.Cu 254 72593.2 -82854.8 80568.8 -90830.4)(net PD7)(type protect))
(wire (path F.Cu 500 132524 -96202.5 132677 -96354.9 132677 -100025)(net PD7)(type protect))
(wire (path B.Cu 500 122364 -88582.5 119824 -88582.5)(net VCC)(type protect))
(wire (path B.Cu 500 119278 -85852 119736 -85852)(net VCC)(type protect))
(wire (path B.Cu 500 119824 -85940.9 119824 -88582.5)(net VCC)(type protect))
(wire (path B.Cu 500 119736 -85852 119824 -85940.9)(net VCC)(type protect))
(wire (path F.Cu 254 89027 -82931 89027 -87210.9 89052.4 -87236.3)(net VCC)(type protect))
(wire (path F.Cu 500 117335 -98552 117335 -100584)(net VCC)(type protect))
(wire (path F.Cu 500 120917 -85699.6 120917 -87490.3 119824 -88582.5)(net VCC)(type protect))
(wire (path F.Cu 500 95148.4 -86156.8 100381 -86156.8)(net VCC)(type protect))
(wire (path B.Cu 500 118669 -85852 119278 -85852 119380 -85852)(net VCC)(type protect))
(wire (path B.Cu 500 116637 -85852 118669 -85852)(net VCC)(type protect))
(wire (path B.Cu 500 115113 -85852 116637 -85852)(net VCC)(type protect))
(wire (path B.Cu 500 100686 -85852 115113 -85852)(net VCC)(type protect))
(wire (path B.Cu 500 100381 -86156.8 100686 -85852)(net VCC)(type protect))
(wire (path B.Cu 1000 95148.4 -86156.8 90728.8 -86156.8)(net VCC)(type protect))
(wire (path B.Cu 1000 89027 -84455 89027 -82931)(net VCC)(type protect))
(wire (path B.Cu 1000 90728.8 -86156.8 89027 -84455)(net VCC)(type protect))
(wire (path B.Cu 254 119774 -89090.5 119824 -90284.3)(net VCC)(type protect))
(wire (path B.Cu 254 117284 -92824.3 117284 -96202.5)(net VCC)(type protect))
(wire (path B.Cu 254 119824 -90284.3 117284 -92824.3)(net VCC)(type protect))
(wire (path F.Cu 254 117335 -100584 117335 -96253.3 117284 -96202.5)(net VCC)(type protect))
(wire (path F.Cu 500 138798 -111773 138316 -112255)(net VLED)(type protect))
(wire (path F.Cu 1000 90144.6 -103340 90144.6 -100076 90093.8 -100025)(net VLED)(type protect))
(wire (path B.Cu 750 90093.8 -100025 90093.8 -102286)(net VLED)(type protect))
(wire (path F.Cu 1000 100178 -108052 100228 -108052)(net VLED)(type protect))
(wire (path F.Cu 1000 100076 -108153 100178 -108052)(net VLED)(type protect))
(wire (path B.Cu 1000 100025 -108102 100076 -108153)(net VLED)(type protect))
(wire (path B.Cu 1000 95910.4 -108102 100025 -108102)(net VLED)(type protect))
(wire (path B.Cu 750 90093.8 -102286 95910.4 -108102)(net VLED)(type protect))
(wire (path F.Cu 1000 123088 -108052 100228 -108052)(net VLED)(type protect))
(wire (path F.Cu 1000 99974.4 -108306 99974.4 -111760 99402.9 -112332 96926.4 -112332)(net VLED)(type protect))
(wire (path F.Cu 1000 100228 -108052 99974.4 -108306)(net VLED)(type protect))
(wire (path B.Cu 1000 85699.6 -123901 86004.4 -123901)(net VLED)(type protect))
(wire (path F.Cu 1000 96367.6 -114465 96100.9 -114198)(net VLED)(type protect))
(wire (path F.Cu 1000 96367.6 -116383 96367.6 -114465)(net VLED)(type protect))
(wire (path F.Cu 1000 97129.6 -117145 96367.6 -116383)(net VLED)(type protect))
(wire (path F.Cu 1000 97129.6 -120040 97129.6 -117145)(net VLED)(type protect))
(wire (path B.Cu 1000 95300.8 -121869 97129.6 -120040)(net VLED)(type protect))
(wire (path B.Cu 1000 88036.4 -121869 95300.8 -121869)(net VLED)(type protect))
(wire (path B.Cu 1000 86004.4 -123901 88036.4 -121869)(net VLED)(type protect))
(wire (path F.Cu 1000 141072 -112687 141973 -112687 142596 -112065 142596 -109372
141275 -108052 123088 -108052 122936 -108052 123038 -108153
123038 -108052)(net VLED)(type protect))
(wire (path F.Cu 1000 121044 -112738 117221 -112738)(net VLED)(type protect))
(wire (path F.Cu 1000 123038 -108052 123038 -110744 121044 -112738)(net VLED)(type protect))
(wire (path F.Cu 500 96926.4 -112332 96075.5 -113182 96075.5 -114211 94170.5 -114211)(net VLED)(type protect))
(wire (path F.Cu 500 94653.1 -111417 94170.5 -111900 94170.5 -114211 92519.5 -114211)(net VLED)(type protect))
(wire (path F.Cu 500 138316 -114567 136665 -114567)(net VLED)(type protect))
(wire (path F.Cu 500 141072 -112687 140221 -113538 140221 -114567 138316 -114567)(net VLED)(type protect))
(wire (path F.Cu 500 138316 -112255 138316 -114567)(net VLED)(type protect))
(wire (path F.Cu 500 114465 -112306 114465 -114618)(net VLED)(type protect))
(wire (path F.Cu 500 116370 -114618 114465 -114618)(net VLED)(type protect))
(wire (path F.Cu 500 116370 -113589 116370 -114618)(net VLED)(type protect))
(wire (path F.Cu 500 117221 -112738 116370 -113589)(net VLED)(type protect))
(wire (path F.Cu 500 114465 -114618 112814 -114618)(net VLED)(type protect))
(via "Via[0-1]_400:300_um" 81432.4 -93522.8 (net DTR)(type protect))
(via "Via[0-1]_400:300_um" 108407 -102108 (net DTR)(type protect))
(via "Via[0-1]_400:300_um" 108560 -104292 (net DTR)(type protect))
(via "Via[0-1]_889:635_um" 77914.5 -99377.5 (net GND)(type protect))
(via "Via[0-1]_889:635_um" 77660.5 -97790 (net GND)(type protect))
(via "Via[0-1]_889:635_um" 78994 -96393 (net GND)(type protect))
(via "Via[0-1]_889:635_um" 106998 -104712 (net GND)(type protect))
(via "Via[0-1]_889:635_um" 108522 -106236 (net GND)(type protect))
(via "Via[0-1]_889:635_um" 105854 -105728 (net GND)(type protect))
(via "Via[0-1]_400:300_um" 130200 -91440 (net PB3)(type protect))
(via "Via[0-1]_400:300_um" 138278 -91643.2 (net PB4)(type protect))
(via "Via[0-1]_400:300_um" 137008 -92354.4 (net PB4)(type protect))
(via "Via[0-1]_400:300_um" 98044 -94234 (net PD0)(type protect))
(via "Via[0-1]_400:300_um" 99872.8 -94234 (net PD0)(type protect))