-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvhf_uhf_IQ_Modulator_V3.dsn
1328 lines (1328 loc) · 67.8 KB
/
vhf_uhf_IQ_Modulator_V3.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/anton/Documents/kicad/IQ_Modulator/vhf_uhf_IQ_Modulator_V3.dsn
(parser
(string_quote ")
(space_in_quoted_tokens on)
(host_cad "KiCad's Pcbnew")
(host_version "4.0.7-e2-6376~61~ubuntu18.04.1")
)
(resolution um 10)
(unit um)
(structure
(layer F.Cu
(type signal)
(property
(index 0)
)
)
(layer B.Cu
(type signal)
(property
(index 1)
)
)
(boundary
(rect pcb 148051 -54021.7 194776 -114845)
)
(via "Via[0-1]_600:400_um" "Via[0-1]_650:450_um" "Via[0-1]_600:300_um")
(rule
(width 250)
(clearance 200.1)
(clearance 200.1 (type default_smd))
(clearance 50 (type smd_smd))
)
)
(placement
(component "Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow"
(place C1 176530 -92075 front 0 (PN "1uF 16V"))
(place C2 175260 -71120 front 90 (PN "1uF 16V"))
(place C3 175260 -60960 front 90 (PN "1uF 16V"))
(place C13 158750 -78105 front 90 (PN "1uF 16V"))
(place C15 177419 -65849.5 front 90 (PN "1uF 16V"))
(place C17 172720 -75565 front 0 (PN "1uF 16V"))
(place C20 161925 -73025 front 180 (PN "1uF 16V"))
)
(component Capacitors_SMD:C_0805_HandSoldering
(place C4 168910 -88900 front 180 (PN 3.3pF))
(place C5 156210 -68580 front 270 (PN "10uF 16V"))
(place C6 161290 -68580 front 270 (PN 2200pF))
(place C7 156210 -72390 front 180 (PN 2200pF))
(place C8 156210 -63500 front 90 (PN "10uF 16V"))
(place C9 155004 -90170 front 90 (PN 1nF))
(place C10 153035 -90170 front 270 (PN "4.7uF 16V"))
(place C11 161290 -63500 front 90 (PN 2200pF))
(place C12 165735 -66040 front 270 (PN 2200pF))
(place C14 179832 -65849.5 front 270 (PN 1nF))
(place C16 163830 -101600 front 180 (PN 100pF))
(place C18 184150 -78105 front 90 (PN 27pF))
(place C19 163830 -93345 front 180 (PN 220pF))
(place C21 159385 -99060 front 0 (PN 100pF))
(place C22 182245 -95885 front 180 (PN 33pF))
(place C23 154305 -86360 front 180 (PN "10uF 16V"))
(place C24 174562 -65849.5 front 270 (PN 15pF))
(place C25 154305 -83820 front 180 (PN "10uF 16V"))
(place C26 172720 -92075 front 270 (PN 220pF))
(place C27 187960 -90805 front 270 (PN 100nF))
(place C28 180340 -90805 front 90 (PN "10uF 16V"))
(place C29 155575 -97155 front 90 (PN 33pF))
(place C30 163195 -97155 front 90 (PN 33pF))
(place C31 171450 -97155 front 90 (PN 33pF))
(place L1 176530 -88900 front 180 (PN 33nF))
(place L3 178435 -75565 front 180 (PN 22nF))
(place L5 168910 -90805 front 0 (PN 33nF))
)
(component Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm
(place J1 156845 -59055 front 90 (PN CONN_01X03))
(place J3 154305 -80645 front 180 (PN "Audio-Jack-3"))
)
(component Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm
(place J2 165100 -82550 front 0 (PN TEST_1P))
)
(component Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm
(place J4 187325 -81280 front 180 (PN CONN_01X04))
)
(component Connectors_Molex:Molex_SMA_Jack_Edge_Mount
(place J5 179070 -100330 front 90 (PN "SMA Edge FM"))
)
(component Inductors_SMD:L_0805_HandSoldering
(place L2 163830 -90805 front 180 (PN 33nH))
(place L4 168910 -93345 front 0 (PN 33nH))
(place L6 153035 -95250 front 90 (PN 56nH))
(place L7 159385 -95885 front 180 (PN 110nH))
(place L8 167005 -95885 front 180 (PN 110nH))
(place L9 175895 -95885 front 180 (PN 56nH))
)
(component "TO_SOT_Packages_SMD:SOT-23"
(place Q1 159385 -86995 front 0 (PN "BC817-40"))
(place Q2 179705 -80645 front 180 (PN "BC817-40"))
(place Q3 179070 -71120 front 270 (PN "BC817-40"))
)
(component Resistors_SMD:R_0805_HandSoldering
(place R1 163830 -86995 front 0 (PN 10k))
(place R2 158750 -68580 front 270 (PN 1K))
(place R3 163830 -68580 front 90 (PN 1K))
(place R4 159385 -83185 front 0 (PN 1k8))
(place R5 158750 -63500 front 90 (PN 1K))
(place R6 163830 -63500 front 270 (PN 1K))
(place R7 179070 -85090 front 270 (PN 6k8))
(place R8 187960 -85725 front 90 (PN 6k8))
(place R9 167005 -75565 front 180 (PN 0))
(place R10 158750 -101600 front 0 (PN 2k2))
(place R11 161290 -78105 front 270 (PN OC))
(place R12 165100 -78740 front 0 (PN 0))
(place R13 182245 -65976.5 front 270 (PN 10k))
(place R14 182245 -71120 front 90 (PN 6k8))
(place R15 184150 -91440 front 0 (PN 6k5))
(place R16 183515 -83820 front 0 (PN 6k5))
)
(component Potentiometer_SMD:Potentiometer_Bourns_3314G_Vertical
(place RV1 168910 -71120 front 270 (PN 4k7))
(place RV2 168910 -60960 front 270 (PN 4k7))
)
(component "Housings_VQFN:VQFN-16_3x3mm"
(place U1 169545 -66040 front 90 (PN TRF3701))
)
(component "QFN-12-1EP_3x3mm:QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm"
(place U2 158750 -92075 front 0 (PN MMZ09332BT1))
)
(component Oscillators:Oscillator_SMD_SI570_SI571_HandSoldering
(place U3 172720 -82550 front 90 (PN Si570))
)
(component "orangepi-zero:orangepi-zero"
(place U4 148501 -105004 front 0 (PN "Orange Pi zero"))
)
(component "TO_SOT_Packages_SMD:SOT-23-6_Handsoldering"
(place U5 183515 -87630 front 90 (PN "MCP3421A0T-E/CH"))
)
)
(library
(image "Capacitors_Tantalum_SMD:CP_Tantalum_Case-R_EIA-2012-12_Reflow"
(outline (path signal 50 -2350 1300 -2350 -1300))
(outline (path signal 50 -2350 -1300 2350 -1300))
(outline (path signal 50 2350 -1300 2350 1300))
(outline (path signal 50 2350 1300 -2350 1300))
(outline (path signal 100 -1000 650 -1000 -650))
(outline (path signal 100 -1000 -650 1000 -650))
(outline (path signal 100 1000 -650 1000 650))
(outline (path signal 100 1000 650 -1000 650))
(outline (path signal 100 -800 650 -800 -650))
(outline (path signal 100 -700 650 -700 -650))
(outline (path signal 120 -2250 1150 1000 1150))
(outline (path signal 120 -2250 -1150 1000 -1150))
(outline (path signal 120 -2250 1150 -2250 -1150))
(pin Rect[T]Pad_1550x1800_um 1 -1175 0)
(pin Rect[T]Pad_1550x1800_um 2 1175 0)
)
(image Capacitors_SMD:C_0805_HandSoldering
(outline (path signal 100 -1000 -620 -1000 620))
(outline (path signal 100 1000 -620 -1000 -620))
(outline (path signal 100 1000 620 1000 -620))
(outline (path signal 100 -1000 620 1000 620))
(outline (path signal 120 500 850 -500 850))
(outline (path signal 120 -500 -850 500 -850))
(outline (path signal 50 -2250 880 2250 880))
(outline (path signal 50 -2250 880 -2250 -870))
(outline (path signal 50 2250 -870 2250 880))
(outline (path signal 50 2250 -870 -2250 -870))
(pin Rect[T]Pad_1500x1250_um 1 -1250 0)
(pin Rect[T]Pad_1500x1250_um 2 1250 0)
)
(image Pin_Headers:Pin_Header_Straight_1x03_Pitch2.54mm
(outline (path signal 100 -1270 1270 -1270 -6350))
(outline (path signal 100 -1270 -6350 1270 -6350))
(outline (path signal 100 1270 -6350 1270 1270))
(outline (path signal 100 1270 1270 -1270 1270))
(outline (path signal 120 -1390 -1270 -1390 -6470))
(outline (path signal 120 -1390 -6470 1390 -6470))
(outline (path signal 120 1390 -6470 1390 -1270))
(outline (path signal 120 1390 -1270 -1390 -1270))
(outline (path signal 120 -1390 0 -1390 1390))
(outline (path signal 120 -1390 1390 0 1390))
(outline (path signal 50 -1600 1600 -1600 -6600))
(outline (path signal 50 -1600 -6600 1600 -6600))
(outline (path signal 50 1600 -6600 1600 1600))
(outline (path signal 50 1600 1600 -1600 1600))
(pin Rect[A]Pad_1700x1700_um 1 0 0)
(pin Oval[A]Pad_1700x1700_um 2 0 -2540)
(pin Oval[A]Pad_1700x1700_um 3 0 -5080)
)
(image Pin_Headers:Pin_Header_Straight_1x01_Pitch2.54mm
(outline (path signal 100 -1270 1270 -1270 -1270))
(outline (path signal 100 -1270 -1270 1270 -1270))
(outline (path signal 100 1270 -1270 1270 1270))
(outline (path signal 100 1270 1270 -1270 1270))
(outline (path signal 120 -1390 -1270 -1390 -1390))
(outline (path signal 120 -1390 -1390 1390 -1390))
(outline (path signal 120 1390 -1390 1390 -1270))
(outline (path signal 120 1390 -1270 -1390 -1270))
(outline (path signal 120 -1390 0 -1390 1390))
(outline (path signal 120 -1390 1390 0 1390))
(outline (path signal 50 -1600 1600 -1600 -1600))
(outline (path signal 50 -1600 -1600 1600 -1600))
(outline (path signal 50 1600 -1600 1600 1600))
(outline (path signal 50 1600 1600 -1600 1600))
(pin Rect[A]Pad_1700x1700_um 1 0 0)
)
(image Pin_Headers:Pin_Header_Straight_1x04_Pitch2.54mm
(outline (path signal 100 -1270 1270 -1270 -8890))
(outline (path signal 100 -1270 -8890 1270 -8890))
(outline (path signal 100 1270 -8890 1270 1270))
(outline (path signal 100 1270 1270 -1270 1270))
(outline (path signal 120 -1390 -1270 -1390 -9010))
(outline (path signal 120 -1390 -9010 1390 -9010))
(outline (path signal 120 1390 -9010 1390 -1270))
(outline (path signal 120 1390 -1270 -1390 -1270))
(outline (path signal 120 -1390 0 -1390 1390))
(outline (path signal 120 -1390 1390 0 1390))
(outline (path signal 50 -1600 1600 -1600 -9200))
(outline (path signal 50 -1600 -9200 1600 -9200))
(outline (path signal 50 1600 -9200 1600 1600))
(outline (path signal 50 1600 1600 -1600 1600))
(pin Rect[A]Pad_1700x1700_um 1 0 0)
(pin Oval[A]Pad_1700x1700_um 2 0 -2540)
(pin Oval[A]Pad_1700x1700_um 3 0 -5080)
(pin Oval[A]Pad_1700x1700_um 4 0 -7620)
)
(image Connectors_Molex:Molex_SMA_Jack_Edge_Mount
(outline (path signal 100 -4760 380 490 380))
(outline (path signal 100 -4760 -380 490 -380))
(outline (path signal 100 490 380 490 -380))
(outline (path signal 100 490 -3750 490 -4760))
(outline (path signal 100 490 4760 490 3750))
(outline (path signal 50 -14290 6090 -14290 -6090))
(outline (path signal 50 -14290 -6090 2710 -6090))
(outline (path signal 50 2710 6090 2710 -6090))
(outline (path signal 50 -14290 6090 2710 6090))
(outline (path signal 50 -14290 6090 -14290 -6090))
(outline (path signal 50 -14290 -6090 2710 -6090))
(outline (path signal 50 2710 6090 2710 -6090))
(outline (path signal 50 2710 6090 -14290 6090))
(outline (path signal 100 -4760 3750 490 3750))
(outline (path signal 100 -4760 -3750 490 -3750))
(outline (path signal 100 -13790 2650 -5910 2650))
(outline (path signal 100 -13790 2650 -13790 -2650))
(outline (path signal 100 -13790 -2650 -5910 -2650))
(outline (path signal 100 -4760 3750 -4760 -3750))
(outline (path signal 100 490 4760 -5910 4760))
(outline (path signal 100 -5910 4760 -5910 -4760))
(outline (path signal 100 -5910 -4760 490 -4760))
(pin Rect[T]Pad_5080x2290_um 1 -1720 0)
(pin Rect[T]Pad_5080x2420_um 2 -1720 4380)
(pin Rect[T]Pad_5080x2420_um 2@1 -1720 -4380)
(pin Rect[B]Pad_5080x2420_um 2@2 -1720 4380)
(pin Rect[B]Pad_5080x2420_um 2@3 -1720 -4380)
(pin Round[A]Pad_970_um 2@4 1720 4380)
(pin Round[A]Pad_970_um 2@5 1720 -4380)
(pin Rect[T]Pad_890x460_um 2@6 1270 4380)
(pin Rect[T]Pad_890x460_um 2@7 1270 -4380)
(pin Rect[B]Pad_890x460_um 2@8 1270 4380)
(pin Rect[B]Pad_890x460_um 2@9 1270 -4380)
)
(image Inductors_SMD:L_0805_HandSoldering
(outline (path signal 100 -1000 -620 -1000 620))
(outline (path signal 100 1000 -620 -1000 -620))
(outline (path signal 100 1000 620 1000 -620))
(outline (path signal 100 -1000 620 1000 620))
(outline (path signal 50 -2400 1000 2400 1000))
(outline (path signal 50 -2400 -1000 2400 -1000))
(outline (path signal 50 -2400 1000 -2400 -1000))
(outline (path signal 50 2400 1000 2400 -1000))
(outline (path signal 120 600 -880 -600 -880))
(outline (path signal 120 -600 880 600 880))
(pin Rect[T]Pad_1500x1300_um 1 -1350 0)
(pin Rect[T]Pad_1500x1300_um 2 1350 0)
)
(image "TO_SOT_Packages_SMD:SOT-23"
(outline (path signal 100 -700 950 -700 -1500))
(outline (path signal 100 -150 1520 700 1520))
(outline (path signal 100 -700 950 -150 1520))
(outline (path signal 100 700 1520 700 -1520))
(outline (path signal 100 -700 -1520 700 -1520))
(outline (path signal 120 760 -1580 760 -650))
(outline (path signal 120 760 1580 760 650))
(outline (path signal 50 -1700 1750 1700 1750))
(outline (path signal 50 1700 1750 1700 -1750))
(outline (path signal 50 1700 -1750 -1700 -1750))
(outline (path signal 50 -1700 -1750 -1700 1750))
(outline (path signal 120 760 1580 -1400 1580))
(outline (path signal 120 760 -1580 -700 -1580))
(pin Rect[T]Pad_900x800_um 1 -1000 950)
(pin Rect[T]Pad_900x800_um 2 -1000 -950)
(pin Rect[T]Pad_900x800_um 3 1000 0)
)
(image Resistors_SMD:R_0805_HandSoldering
(outline (path signal 100 -1000 -620 -1000 620))
(outline (path signal 100 1000 -620 -1000 -620))
(outline (path signal 100 1000 620 1000 -620))
(outline (path signal 100 -1000 620 1000 620))
(outline (path signal 120 600 -880 -600 -880))
(outline (path signal 120 -600 880 600 880))
(outline (path signal 50 -2350 900 2350 900))
(outline (path signal 50 -2350 900 -2350 -900))
(outline (path signal 50 2350 -900 2350 900))
(outline (path signal 50 2350 -900 -2350 -900))
(pin Rect[T]Pad_1500x1300_um 1 -1350 0)
(pin Rect[T]Pad_1500x1300_um 2 1350 0)
)
(image Potentiometer_SMD:Potentiometer_Bourns_3314G_Vertical
(outline (path signal 100 1000 0 951.057 -309.017 809.017 -587.785 587.785 -809.017
309.017 -951.057 0 -1000 -309.017 -951.057 -587.785 -809.017
-809.017 -587.785 -951.057 -309.017 -1000 0 -951.057 309.017
-809.017 587.785 -587.785 809.017 -309.017 951.057 0 1000
309.017 951.057 587.785 809.017 809.017 587.785 951.057 309.017))
(outline (path signal 100 -2250 2250 -2250 -2250))
(outline (path signal 100 -2250 -2250 2250 -2250))
(outline (path signal 100 2250 -2250 2250 2250))
(outline (path signal 100 2250 2250 -2250 2250))
(outline (path signal 100 0 -990 1 989))
(outline (path signal 100 0 -990 1 989))
(outline (path signal 120 2040 2370 2370 2370))
(outline (path signal 120 -2370 2370 -2039 2370))
(outline (path signal 120 -259 2370 260 2370))
(outline (path signal 120 -2370 -2370 -1240 -2370))
(outline (path signal 120 1240 -2370 2370 -2370))
(outline (path signal 120 -2370 2370 -2370 -2370))
(outline (path signal 120 2370 2370 2370 -2370))
(outline (path signal 50 -2500 3650 -2500 -3650))
(outline (path signal 50 -2500 -3650 2500 -3650))
(outline (path signal 50 2500 -3650 2500 3650))
(outline (path signal 50 2500 3650 -2500 3650))
(pin Rect[T]Pad_1300x1300_um 1 1150 2750)
(pin Rect[T]Pad_2000x1300_um 2 0 -2750)
(pin Rect[T]Pad_1300x1300_um 3 -1150 2750)
)
(image "Housings_VQFN:VQFN-16_3x3mm"
(outline (path signal 100 -1600 1300 -1800 1300))
(outline (path signal 100 -1000 1600 -1300 1600))
(outline (path signal 100 -1300 1600 -1600 1300))
(outline (path signal 100 -1500 1200 -1500 -1500))
(outline (path signal 100 -1200 1500 1500 1500))
(outline (path signal 100 -1500 1200 -1200 1500))
(outline (path signal 50 -1930 -1930 1930 -1930))
(outline (path signal 50 -1930 1930 -1930 -1930))
(outline (path signal 50 1930 1930 1930 -1930))
(outline (path signal 50 -1930 1930 1930 1930))
(outline (path signal 100 1600 1600 1600 1300))
(outline (path signal 100 1600 1600 1300 1600))
(outline (path signal 100 -1600 -1600 -1600 -1300))
(outline (path signal 100 -1600 -1600 -1300 -1600))
(outline (path signal 100 1600 -1600 1300 -1600))
(outline (path signal 100 1600 -1600 1600 -1300))
(outline (path signal 100 1500 -1500 -1500 -1500))
(outline (path signal 100 1500 -1500 1500 1500))
(pin Rect[T]Pad_305x813_um 14 500 1275)
(pin Rect[T]Pad_813x305_um 9 1275 -1000)
(pin Rect[T]Pad_305x813_um 6 -500 -1275)
(pin Rect[T]Pad_813x305_um 1 -1275 1000)
(pin Rect[T]Pad_813x305_um 2 -1275 500)
(pin Rect[T]Pad_813x305_um 3 -1275 0)
(pin Rect[T]Pad_813x305_um 4 -1275 -500)
(pin Rect[T]Pad_813x305_um 5 -1275 -1000)
(pin Rect[T]Pad_305x813_um 7 0 -1275)
(pin Rect[T]Pad_305x813_um 8 500 -1275)
(pin Rect[T]Pad_813x305_um 10 1275 -500)
(pin Rect[T]Pad_813x305_um 11 1275 0)
(pin Rect[T]Pad_813x305_um 12 1275 500)
(pin Rect[T]Pad_813x305_um 13 1275 1000)
(pin Rect[T]Pad_305x813_um 15 0 1275)
(pin Rect[T]Pad_305x813_um 16 -500 1275)
)
(image "QFN-12-1EP_3x3mm:QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm"
(outline (path signal 150 -500 1500 1500 1500))
(outline (path signal 150 1500 1500 1500 -1500))
(outline (path signal 150 1500 -1500 -1500 -1500))
(outline (path signal 150 -1500 -1500 -1500 500))
(outline (path signal 150 -1500 500 -500 1500))
(outline (path signal 50 -2000 2000 -2000 -2000))
(outline (path signal 50 2000 2000 2000 -2000))
(outline (path signal 50 -2000 2000 2000 2000))
(outline (path signal 50 -2000 -2000 2000 -2000))
(outline (path signal 150 1625 1625 1625 850))
(outline (path signal 150 -1625 -1625 -1625 -850))
(outline (path signal 150 1625 -1625 1625 -850))
(outline (path signal 150 -1625 1625 -850 1625))
(outline (path signal 150 -1625 -1625 -850 -1625))
(outline (path signal 150 1625 -1625 850 -1625))
(outline (path signal 150 1625 1625 850 1625))
(pin Rect[T]Pad_700x250_um 1 -1400 500)
(pin Rect[T]Pad_700x250_um 2 -1400 0)
(pin Rect[T]Pad_700x250_um 3 -1400 -500)
(pin Rect[T]Pad_700x250_um (rotate 90) 4 -500 -1400)
(pin Rect[T]Pad_700x250_um (rotate 90) 5 0 -1400)
(pin Rect[T]Pad_700x250_um (rotate 90) 6 500 -1400)
(pin Rect[T]Pad_700x250_um 7 1400 -500)
(pin Rect[T]Pad_700x250_um 8 1400 0)
(pin Rect[T]Pad_700x250_um 9 1400 500)
(pin Rect[T]Pad_700x250_um (rotate 90) 10 500 1400)
(pin Rect[T]Pad_700x250_um (rotate 90) 11 0 1400)
(pin Rect[T]Pad_700x250_um (rotate 90) 12 -500 1400)
(pin Rect[]Pad_670x670_um @1 -412.5 -412.5)
(pin Rect[T]Pad_1650x1650_um 13 0 0)
(pin Rect[]Pad_670x670_um @2 412.5 -412.5)
(pin Rect[]Pad_670x670_um @3 -412.5 412.5)
(pin Rect[]Pad_670x670_um @4 412.5 412.5)
)
(image Oscillators:Oscillator_SMD_SI570_SI571_HandSoldering
(outline (path signal 50 4900 -4500 -4900 -4500))
(outline (path signal 50 -4900 -4500 -4900 4500))
(outline (path signal 50 -4900 4500 4900 4500))
(outline (path signal 50 4900 4500 4900 -4500))
(outline (path signal 120 -3600 -2600 -3500 -2600))
(outline (path signal 120 3600 -2500 3600 -2600))
(outline (path signal 120 3600 -2600 3500 -2600))
(outline (path signal 120 3600 2500 3600 2600))
(outline (path signal 120 3600 2600 3500 2600))
(outline (path signal 120 -3600 2500 -3600 2600))
(outline (path signal 120 -3600 2600 -3500 2600))
(outline (path signal 120 -3600 2500 -3600 800))
(outline (path signal 120 3600 800 3600 2500))
(outline (path signal 120 3600 -2500 3600 -800))
(outline (path signal 120 -3600 -800 -3600 -3200))
(outline (path signal 100 -3500 -1100 -2100 -2500))
(outline (path signal 100 3500 -2500 3500 2500))
(outline (path signal 100 3500 2500 -3500 2500))
(outline (path signal 100 -3500 2500 -3500 -2500))
(outline (path signal 100 -3500 -2500 3500 -2500))
(pin Rect[T]Pad_1700x3150_um 1 -2500 -2600)
(pin Rect[T]Pad_1700x3150_um 2 0 -2600)
(pin Rect[T]Pad_1700x3150_um 3 2500 -2600)
(pin Rect[T]Pad_1700x3150_um 4 2500 2600)
(pin Rect[T]Pad_1700x3150_um 5 0 2600)
(pin Rect[T]Pad_1700x3150_um 6 -2500 2600)
(pin Rect[T]Pad_2500x1300_um 7 -3350 0)
(pin Rect[T]Pad_2550x1300_um 8 3350 0)
)
(image "orangepi-zero:orangepi-zero"
(outline (path signal 150 0 48000 46000 48000))
(outline (path signal 150 46000 48000 46000 0))
(outline (path signal 150 46000 0 0 0))
(outline (path signal 150 0 0 0 48000))
(pin Round[A]Pad_4000_um @1 43000 45000)
(pin Round[A]Pad_1524_um 1 1540 39100)
(pin Round[A]Pad_1524_um 2 1540 36560)
(pin Round[A]Pad_1524_um 3 1540 34020)
(pin Round[A]Pad_1524_um 4 1540 31480)
(pin Round[A]Pad_1524_um 5 1540 28940)
(pin Round[A]Pad_1524_um 6 1540 26400)
(pin Round[A]Pad_1524_um 7 1540 23860)
(pin Round[A]Pad_1524_um 8 1540 21320)
(pin Round[A]Pad_1524_um 9 1540 18780)
(pin Round[A]Pad_1524_um 10 1540 16240)
(pin Round[A]Pad_1524_um 11 1540 13700)
(pin Round[A]Pad_1524_um 12 1540 11160)
(pin Round[A]Pad_1524_um 13 1540 8620)
(pin Round[A]Pad_1524_um 101 44720 8620)
(pin Round[A]Pad_1524_um 102 42180 8620)
(pin Round[A]Pad_1524_um 103 44720 11160)
(pin Round[A]Pad_1524_um 104 42180 11160)
(pin Round[A]Pad_1524_um 105 44720 13700)
(pin Round[A]Pad_1524_um 106 42180 13700)
(pin Round[A]Pad_1524_um 107 44720 16240)
(pin Round[A]Pad_1524_um 108 42180 16240)
(pin Round[A]Pad_1524_um 109 44720 18780)
(pin Round[A]Pad_1524_um 110 42180 18780)
(pin Round[A]Pad_1524_um 111 44720 21320)
(pin Round[A]Pad_1524_um 112 42180 21320)
(pin Round[A]Pad_1524_um 113 44720 23860)
(pin Round[A]Pad_1524_um 114 42180 23860)
(pin Round[A]Pad_1524_um 115 44720 26400)
(pin Round[A]Pad_1524_um 116 42180 26400)
(pin Round[A]Pad_1524_um 117 44720 28940)
(pin Round[A]Pad_1524_um 118 42180 28940)
(pin Round[A]Pad_1524_um 119 44720 31480)
(pin Round[A]Pad_1524_um 120 42180 31480)
(pin Round[A]Pad_1524_um 121 44720 34020)
(pin Round[A]Pad_1524_um 122 42180 34020)
(pin Round[A]Pad_1524_um 123 44720 36560)
(pin Round[A]Pad_1524_um 124 42180 36560)
(pin Round[A]Pad_1524_um 125 44720 39100)
(pin Round[A]Pad_1524_um 126 42180 39100)
(pin Round[A]Pad_1524_um 201 36560 45680)
(pin Round[A]Pad_1524_um 202 36560 43140)
(pin Round[A]Pad_1524_um 203 36560 40600)
(pin Round[A]Pad_4000_um @2 3000 45000)
(pin Round[A]Pad_4000_um @3 3000 3000)
(pin Round[A]Pad_4000_um @4 43000 3000)
)
(image "TO_SOT_Packages_SMD:SOT-23-6_Handsoldering"
(outline (path signal 120 -900 -1610 900 -1610))
(outline (path signal 120 900 1610 -2050 1610))
(outline (path signal 50 -2400 -1800 -2400 1800))
(outline (path signal 50 2400 -1800 -2400 -1800))
(outline (path signal 50 2400 1800 2400 -1800))
(outline (path signal 50 -2400 1800 2400 1800))
(outline (path signal 100 -900 900 -250 1550))
(outline (path signal 100 900 1550 -250 1550))
(outline (path signal 100 -900 900 -900 -1550))
(outline (path signal 100 900 -1550 -900 -1550))
(outline (path signal 100 900 1550 900 -1550))
(pin Rect[T]Pad_1560x650_um 1 -1350 950)
(pin Rect[T]Pad_1560x650_um 2 -1350 0)
(pin Rect[T]Pad_1560x650_um 3 -1350 -950)
(pin Rect[T]Pad_1560x650_um 4 1350 -950)
(pin Rect[T]Pad_1560x650_um 6 1350 950)
(pin Rect[T]Pad_1560x650_um 5 1350 0)
)
(padstack Rect[]Pad_670x670_um
(attach off)
)
(padstack Round[A]Pad_1524_um
(shape (circle F.Cu 1524))
(shape (circle B.Cu 1524))
(attach off)
)
(padstack Round[A]Pad_4000_um
(shape (circle F.Cu 4000))
(shape (circle B.Cu 4000))
(attach off)
)
(padstack Round[A]Pad_970_um
(shape (circle F.Cu 970))
(shape (circle B.Cu 970))
(attach off)
)
(padstack Oval[A]Pad_1700x1700_um
(shape (path F.Cu 1700 0 0 0 0))
(shape (path B.Cu 1700 0 0 0 0))
(attach off)
)
(padstack Rect[B]Pad_5080x2420_um
(shape (rect B.Cu -2540 -1210 2540 1210))
(attach off)
)
(padstack Rect[B]Pad_890x460_um
(shape (rect B.Cu -445 -230 445 230))
(attach off)
)
(padstack Rect[T]Pad_2000x1300_um
(shape (rect F.Cu -1000 -650 1000 650))
(attach off)
)
(padstack Rect[T]Pad_2500x1300_um
(shape (rect F.Cu -1250 -650 1250 650))
(attach off)
)
(padstack Rect[T]Pad_2550x1300_um
(shape (rect F.Cu -1275 -650 1275 650))
(attach off)
)
(padstack Rect[T]Pad_305x813_um
(shape (rect F.Cu -152.5 -406.5 152.5 406.5))
(attach off)
)
(padstack Rect[T]Pad_5080x2290_um
(shape (rect F.Cu -2540 -1145 2540 1145))
(attach off)
)
(padstack Rect[T]Pad_5080x2420_um
(shape (rect F.Cu -2540 -1210 2540 1210))
(attach off)
)
(padstack Rect[T]Pad_700x250_um
(shape (rect F.Cu -350 -125 350 125))
(attach off)
)
(padstack Rect[T]Pad_813x305_um
(shape (rect F.Cu -406.5 -152.5 406.5 152.5))
(attach off)
)
(padstack Rect[T]Pad_890x460_um
(shape (rect F.Cu -445 -230 445 230))
(attach off)
)
(padstack Rect[T]Pad_900x800_um
(shape (rect F.Cu -450 -400 450 400))
(attach off)
)
(padstack Rect[T]Pad_1300x1300_um
(shape (rect F.Cu -650 -650 650 650))
(attach off)
)
(padstack Rect[T]Pad_1500x1250_um
(shape (rect F.Cu -750 -625 750 625))
(attach off)
)
(padstack Rect[T]Pad_1500x1300_um
(shape (rect F.Cu -750 -650 750 650))
(attach off)
)
(padstack Rect[T]Pad_1550x1800_um
(shape (rect F.Cu -775 -900 775 900))
(attach off)
)
(padstack Rect[T]Pad_1560x650_um
(shape (rect F.Cu -780 -325 780 325))
(attach off)
)
(padstack Rect[T]Pad_1650x1650_um
(shape (rect F.Cu -825 -825 825 825))
(attach off)
)
(padstack Rect[T]Pad_1700x3150_um
(shape (rect F.Cu -850 -1575 850 1575))
(attach off)
)
(padstack Rect[A]Pad_1700x1700_um
(shape (rect F.Cu -850 -850 850 850))
(shape (rect B.Cu -850 -850 850 850))
(attach off)
)
(padstack "Via[0-1]_600:400_um"
(shape (circle F.Cu 600))
(shape (circle B.Cu 600))
(attach off)
)
(padstack "Via[0-1]_650:450_um"
(shape (circle F.Cu 650))
(shape (circle B.Cu 650))
(attach off)
)
(padstack "Via[0-1]_600:300_um"
(shape (circle F.Cu 600))
(shape (circle B.Cu 600))
(attach off)
)
)
(network
(net +5V
(pins C1-1 C2-1 C3-1 C9-2 C10-1 C13-1 C14-2 C15-1 C16-2 C20-1 C27-2 C28-1 J1-1
J4-1 L1-1 L2-1 R1-2 R4-2 R10-2 R13-1 R15-1 R16-1 RV1-1 RV2-1 U1-6 U1-10 U2-2
U4-1 U4-102 U4-104 U5-5)
)
(net GND
(pins C1-2 C2-2 C3-2 C4-1 C6-2 C7-2 C9-1 C10-2 C11-2 C12-2 C13-2 C14-1 C15-2
C16-1 C17-2 C18-1 C20-2 C21-1 C22-1 C24-1 C27-1 C28-2 C29-1 C30-1 C31-1 J1-3
J3-3 J4-4 J5-2 J5-2@1 J5-2@2 J5-2@3 J5-2@4 J5-2@5 J5-2@6 J5-2@7 J5-2@8 J5-2@9
L5-2 Q1-2 Q2-2 Q3-2 R11-1 RV1-3 RV2-3 U1-9 U1-1 U1-2 U1-3 U1-5 U1-11 U1-12
U3-3 U4-2 U4-106 U4-109 U4-114 U4-120 U4-125 U4-201 U5-2 U5-6)
)
(net "Net-(C4-Pad2)"
(pins C4-2 L1-2 U2-11)
)
(net "Net-(C5-Pad1)"
(pins C5-1 U4-8)
)
(net "Net-(C5-Pad2)"
(pins C5-2 R2-2)
)
(net "Net-(C6-Pad1)"
(pins C6-1 R2-1 R3-2)
)
(net "Net-(C7-Pad1)"
(pins C7-1 R3-1 U1-14)
)
(net "Net-(C8-Pad1)"
(pins C8-1 U4-7)
)
(net "Net-(C8-Pad2)"
(pins C8-2 R5-2)
)
(net "Net-(C11-Pad1)"
(pins C11-1 R5-1 R6-2)
)
(net "Net-(C12-Pad1)"
(pins C12-1 R6-1 U1-13)
)
(net +3V3
(pins C17-1 J1-2 R7-2 U3-6 U4-101 U4-117)
)
(net "Net-(C18-Pad2)"
(pins C18-2 L3-1)
)
(net "Net-(C19-Pad1)"
(pins C19-1 L4-1 L5-1)
)
(net "Net-(C19-Pad2)"
(pins C19-2 L2-2 U2-7 U2-8 U2-9)
)
(net PDet
(pins C21-2 U2-6 U5-1)
)
(net "Net-(C22-Pad2)"
(pins C22-2 C26-2 L4-2)
)
(net "Net-(C23-Pad1)"
(pins C23-1 J3-2)
)
(net "Net-(C23-Pad2)"
(pins C23-2 U4-11)
)
(net "Net-(C24-Pad2)"
(pins C24-2 L3-2 U1-8)
)
(net "Net-(C25-Pad1)"
(pins C25-1 J3-1)
)
(net "Net-(C25-Pad2)"
(pins C25-2 U4-12)
)
(net "Net-(C26-Pad1)"
(pins C26-1 L6-2)
)
(net "Net-(C29-Pad2)"
(pins C29-2 L6-1 L7-2)
)
(net "Net-(C30-Pad2)"
(pins C30-2 L7-1 L8-2)
)
(net "Net-(C31-Pad2)"
(pins C31-2 L8-1 L9-2)
)
(net "Net-(J2-Pad1)"
(pins J2-1 U3-5)
)
(net "Net-(J4-Pad2)"
(pins J4-2 U4-116)
)
(net "Net-(J4-Pad3)"
(pins J4-3 U4-118)
)
(net "Net-(J5-Pad1)"
(pins J5-1 L9-1)
)
(net PA01
(pins Q1-1 U4-111)
)
(net "Net-(Q1-Pad3)"
(pins Q1-3 R1-1 U2-10)
)
(net "Net-(Q2-Pad1)"
(pins Q2-1 R8-2)
)
(net "Net-(Q2-Pad3)"
(pins Q2-3 R7-1 U3-2)
)
(net "Net-(Q3-Pad1)"
(pins Q3-1 R14-2)
)
(net "Net-(Q3-Pad3)"
(pins Q3-3 R13-2 U1-7)
)
(net "Net-(R4-Pad1)"
(pins R4-1 U2-12)
)
(net PA06
(pins R8-1 U4-107)
)
(net "Net-(R9-Pad1)"
(pins R9-1 U1-4)
)
(net "Net-(R11-Pad2)"
(pins R9-2 R11-2 R12-1)
)
(net "Net-(R10-Pad1)"
(pins R10-1 U2-1)
)
(net "Net-(R12-Pad2)"
(pins R12-2 U3-4)
)
(net PA07
(pins R14-1 U4-112)
)
(net SLC
(pins R15-2 U3-8 U4-105 U5-3)
)
(net SDA
(pins R16-2 U3-7 U4-103 U5-4)
)
(net "Net-(RV1-Pad2)"
(pins RV1-2 U1-16)
)
(net "Net-(RV2-Pad2)"
(pins RV2-2 U1-15)
)
(net "Net-(U2-Pad3)"
(pins U2-3)
)
(net "Net-(U2-Pad5)"
(pins U2-5)
)
(net "Net-(U3-Pad1)"
(pins U3-1)
)
(net "Net-(U4-Pad3)"
(pins U4-3)
)
(net "Net-(U4-Pad4)"
(pins U4-4)
)
(net "Net-(U4-Pad5)"
(pins U4-5)
)
(net "Net-(U4-Pad6)"
(pins U4-6)
)
(net "Net-(U4-Pad9)"
(pins U4-9)
)
(net "Net-(U4-Pad10)"
(pins U4-10)
)
(net "Net-(U4-Pad13)"
(pins U4-13)
)
(net "Net-(U4-Pad108)"
(pins U4-108)
)
(net "Net-(U4-Pad110)"
(pins U4-110)
)
(net "Net-(U4-Pad113)"
(pins U4-113)
)
(net "Net-(U4-Pad115)"
(pins U4-115)
)
(net "Net-(U4-Pad119)"
(pins U4-119)
)
(net "Net-(U4-Pad121)"
(pins U4-121)
)
(net "Net-(U4-Pad122)"
(pins U4-122)
)
(net "Net-(U4-Pad123)"
(pins U4-123)
)
(net "Net-(U4-Pad124)"
(pins U4-124)
)
(net "Net-(U4-Pad126)"
(pins U4-126)
)
(net "Net-(U4-Pad202)"
(pins U4-202)
)
(net "Net-(U4-Pad203)"
(pins U4-203)
)
(class kicad_default "" "Net-(C11-Pad1)" "Net-(C12-Pad1)" "Net-(C19-Pad1)"
"Net-(C22-Pad2)" "Net-(C23-Pad1)" "Net-(C23-Pad2)" "Net-(C25-Pad1)"
"Net-(C25-Pad2)" "Net-(C26-Pad1)" "Net-(C4-Pad2)" "Net-(C5-Pad1)" "Net-(C5-Pad2)"
"Net-(C6-Pad1)" "Net-(C7-Pad1)" "Net-(C8-Pad1)" "Net-(C8-Pad2)" "Net-(J2-Pad1)"
"Net-(J4-Pad2)" "Net-(J4-Pad3)" "Net-(Q1-Pad3)" "Net-(Q2-Pad1)" "Net-(Q2-Pad3)"
"Net-(Q3-Pad1)" "Net-(R10-Pad1)" "Net-(R4-Pad1)" "Net-(RV1-Pad2)" "Net-(RV2-Pad2)"
"Net-(U2-Pad5)" "Net-(U3-Pad1)" "Net-(U4-Pad10)" "Net-(U4-Pad108)" "Net-(U4-Pad110)"
"Net-(U4-Pad113)" "Net-(U4-Pad115)" "Net-(U4-Pad119)" "Net-(U4-Pad121)"
"Net-(U4-Pad122)" "Net-(U4-Pad123)" "Net-(U4-Pad124)" "Net-(U4-Pad126)"
"Net-(U4-Pad13)" "Net-(U4-Pad202)" "Net-(U4-Pad203)" "Net-(U4-Pad3)"
"Net-(U4-Pad4)" "Net-(U4-Pad5)" "Net-(U4-Pad6)" "Net-(U4-Pad9)" PA01
PA06 PA07 PDet SDA SLC
(circuit
(use_via Via[0-1]_600:400_um)
)
(rule
(width 250)
(clearance 200.1)
)
)
(class +3V3 +3V3
(circuit
(use_via Via[0-1]_650:450_um)
)
(rule
(width 300)
(clearance 200.1)
)
)
(class +5V
(circuit
(use_via Via[0-1]_650:450_um)
)
(rule
(width 300)
(clearance 200.1)
)
)
(class "+5V Small" +5V
(circuit
(use_via Via[0-1]_600:400_um)
)
(rule
(width 250)
(clearance 100.1)
)
)
(class GND
(circuit
(use_via Via[0-1]_650:450_um)
)
(rule
(width 300)
(clearance 200.1)
)
)
(class "GND Small" GND
(circuit
(use_via Via[0-1]_600:400_um)
)
(rule
(width 300)
(clearance 100.1)
)
)
(class RF "Net-(C18-Pad2)" "Net-(C19-Pad2)" "Net-(C29-Pad2)" "Net-(C30-Pad2)"
"Net-(C31-Pad2)" "Net-(J5-Pad1)" "Net-(R11-Pad2)" "Net-(R12-Pad2)" "Net-(U2-Pad3)"
(circuit
(use_via Via[0-1]_650:450_um)
)
(rule
(width 360)
(clearance 120.1)
)
)
(class "RF Small" "Net-(C24-Pad2)" "Net-(Q3-Pad3)" "Net-(R9-Pad1)"
(circuit
(use_via Via[0-1]_600:300_um)
)
(rule
(width 300)
(clearance 100.1)
)
)
)
(wiring
(wire (path F.Cu 250 165180 -90805 165180 -90948.5 166243 -92011.5)(net +5V)(type protect))
(wire (path F.Cu 250 174117 -92075 175355 -92075)(net +5V)(type protect))
(wire (path B.Cu 250 166306 -92075 174117 -92075)(net +5V)(type protect))
(wire (path B.Cu 250 166243 -92011.5 166306 -92075)(net +5V)(type protect))
(wire (path F.Cu 250 175355 -92075 175355 -92487.5 176340 -93472)(net +5V)(type protect))
(wire (path F.Cu 250 180340 -93027.5 180340 -92055)(net +5V)(type protect))
(wire (path F.Cu 250 179896 -93472 180340 -93027.5)(net +5V)(type protect))
(wire (path F.Cu 250 176340 -93472 179896 -93472)(net +5V)(type protect))
(wire (path B.Cu 250 173228 -68262.5 171894 -66929)(net +5V)(type protect))
(wire (path F.Cu 250 171660 -63075 171660 -62110)(net +5V)(type protect))
(wire (path F.Cu 250 172022 -63436.5 171660 -63075)(net +5V)(type protect))
(wire (path B.Cu 250 171894 -63563.5 172022 -63436.5)(net +5V)(type protect))
(wire (path B.Cu 250 171894 -66929 171894 -63563.5)(net +5V)(type protect))
(wire (path F.Cu 250 171660 -72270 172078 -72270 173228 -71120)(net +5V)(type protect))
(wire (path F.Cu 250 171514 -66548 170828 -66548)(net +5V)(type protect))
(wire (path F.Cu 250 173228 -68262.5 171514 -66548)(net +5V)(type protect))
(wire (path B.Cu 250 173228 -71120 173228 -68262.5)(net +5V)(type protect))
(wire (path F.Cu 250 170828 -66548 170820 -66540)(net +5V)(type protect))
(wire (path F.Cu 250 182245 -64626.5 182245 -63246)(net +5V)(type protect))
(wire (path F.Cu 250 181134 -62135 175260 -62135)(net +5V)(type protect))
(wire (path F.Cu 250 182245 -63246 181134 -62135)(net +5V)(type protect))
(wire (path F.Cu 250 160100 -101600 160100 -102536)(net +5V)(type protect))
(wire (path F.Cu 250 156528 -93726 156528 -92075)(net +5V)(type protect))
(wire (path F.Cu 250 156400 -93853 156528 -93726)(net +5V)(type protect))
(wire (path B.Cu 250 156400 -102870 156400 -93853)(net +5V)(type protect))
(wire (path B.Cu 250 156591 -103060 156400 -102870)(net +5V)(type protect))
(wire (path F.Cu 250 159576 -103060 156591 -103060)(net +5V)(type protect))
(wire (path F.Cu 250 160100 -102536 159576 -103060)(net +5V)(type protect))
(wire (path F.Cu 250 155004 -88920 155786 -88920 156274 -89408 156274 -91884.5
156464 -92075 156528 -92075 157350 -92075)(net +5V)(type protect))
(wire (path F.Cu 250 183515 -86280 183515 -85217)(net +5V)(type protect))
(wire (path F.Cu 250 183070 -83820 182165 -83820)(net +5V)(type protect))
(wire (path F.Cu 250 183515 -84264.5 183070 -83820)(net +5V)(type protect))
(wire (path F.Cu 250 183515 -85217 183515 -84264.5)(net +5V)(type protect))
(wire (path F.Cu 250 155575 -88920 155575 -88900 156718 -87757)(net +5V)(type protect))
(wire (path F.Cu 250 160735 -84916 160735 -83185)(net +5V)(type protect))
(wire (path F.Cu 250 160782 -84963 160735 -84916)(net +5V)(type protect))
(wire (path B.Cu 250 159512 -84963 160782 -84963)(net +5V)(type protect))
(wire (path B.Cu 250 156718 -87757 159512 -84963)(net +5V)(type protect))
(wire (path F.Cu 250 170045 -64765 170045 -63725 171660 -62110)(net +5V)(type protect))
(wire (path F.Cu 300 179832 -67099.5 179832 -67039.5 182245 -64626.5)(net +5V)(type protect))
(wire (path F.Cu 300 177419 -67024.5 179757 -67024.5 179832 -67099.5)(net +5V)(type protect))
(wire (path F.Cu 300 175800 -72295 175260 -72295)(net +5V)(type protect))
(wire (path F.Cu 300 182800 -91440 182800 -92630)(net +5V)(type protect))
(wire (path F.Cu 300 186690 -92710 187345 -92055)(net +5V)(type protect))
(wire (path B.Cu 300 182880 -92710 186690 -92710)(net +5V)(type protect))
(wire (path F.Cu 300 182800 -92630 182880 -92710)(net +5V)(type protect))
(wire (path F.Cu 300 187345 -92055 187960 -92055)(net +5V)(type protect))
(wire (path F.Cu 300 190681 -93843.6 189749 -93843.6 187960 -92055)(net +5V)(type protect))
(wire (path F.Cu 300 190681 -96383.6 190681 -93843.6)(net +5V)(type protect))
(wire (path F.Cu 300 171660 -62110 170695 -62110 166370 -57785 158115 -57785
156845 -59055)(net +5V)(type protect))
(wire (path F.Cu 300 175260 -62135 171685 -62135 171660 -62110)(net +5V)(type protect))
(wire (path F.Cu 300 158750 -79280 158845 -79280 160020 -78105)(net +5V)(type protect))
(wire (path F.Cu 300 163100 -76930 163100 -73025)(net +5V)(type protect))
(wire (path F.Cu 300 161925 -78105 163100 -76930)(net +5V)(type protect))
(wire (path F.Cu 300 160020 -78105 161925 -78105)(net +5V)(type protect))
(wire (path F.Cu 300 165180 -86995 165180 -86440 161925 -83185 160735 -83185)(net +5V)(type protect))
(wire (path F.Cu 300 182165 -83820 182165 -82630)(net +5V)(type protect))
(wire (path F.Cu 300 183515 -81280 187325 -81280)(net +5V)(type protect))
(wire (path F.Cu 300 182165 -82630 183515 -81280)(net +5V)(type protect))
(wire (path F.Cu 300 171660 -72270 170935 -72270)(net +5V)(type protect))
(wire (path F.Cu 300 170180 -73025 163100 -73025)(net +5V)(type protect))
(wire (path F.Cu 300 170935 -72270 170180 -73025)(net +5V)(type protect))
(wire (path F.Cu 300 175355 -92075 175355 -91980 177780 -89555 177780 -88900)(net +5V)(type protect))
(wire (path F.Cu 300 153035 -88920 155575 -88920)(net +5V)(type protect))
(wire (path F.Cu 300 165180 -86995 165180 -90805)(net +5V)(type protect))
(wire (path F.Cu 300 182800 -91440 180955 -91440 180340 -92055)(net +5V)(type protect))
(wire (path F.Cu 300 160100 -101600 162580 -101600)(net +5V)(type protect))
(wire (path F.Cu 300 150041 -65903.6 150041 -65858.9 154940 -60960)(net +5V)(type protect))
(wire (path F.Cu 300 155575 -59055 156845 -59055)(net +5V)(type protect))
(wire (path F.Cu 300 154940 -59690 155575 -59055)(net +5V)(type protect))
(wire (path F.Cu 300 154940 -60960 154940 -59690)(net +5V)(type protect))
(wire (path F.Cu 300 171660 -72270 175235 -72270 175260 -72295)(net +5V)(type protect))
(wire (path F.Cu 300 158750 -79280 158750 -81200 160735 -83185)(net +5V)(type protect))
(wire (path F.Cu 300 170545 -64765 174396 -64765 174562 -64599.5)(net GND)(type protect))