-
Notifications
You must be signed in to change notification settings - Fork 5
/
C64 Power Saver.kicad_pcb-bak
1242 lines (1217 loc) · 88.8 KB
/
C64 Power Saver.kicad_pcb-bak
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
(kicad_pcb (version 4) (host pcbnew 4.0.7)
(general
(links 31)
(no_connects 0)
(area 61.654999 66.599999 128.811191 106.120001)
(thickness 1.6)
(drawings 11)
(tracks 135)
(zones 0)
(modules 16)
(nets 14)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.25)
(trace_clearance 0.2)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(user_via 0.6 0.4)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.524 1.524)
(pad_drill 0.762)
(pad_to_mask_clearance 0.2)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x011fc_80000001)
(usegerberextensions true)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory export/))
)
(net 0 "")
(net 1 "Net-(D1-Pad1)")
(net 2 "Net-(D1-Pad2)")
(net 3 "Net-(D2-Pad1)")
(net 4 "Net-(D2-Pad2)")
(net 5 GND)
(net 6 "Net-(D3-Pad2)")
(net 7 "Net-(D4-Pad2)")
(net 8 "Net-(Q1-Pad3)")
(net 9 5V_IN)
(net 10 5V_OUT)
(net 11 9VAC_2)
(net 12 9VAC_1)
(net 13 "Net-(BZ1-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net GND)
(add_net "Net-(BZ1-Pad1)")
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D3-Pad2)")
(add_net "Net-(D4-Pad2)")
(add_net "Net-(Q1-Pad3)")
)
(net_class Power ""
(clearance 0.2)
(trace_width 1)
(via_dia 1)
(via_drill 0.6)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net 5V_IN)
(add_net 5V_OUT)
(add_net 9VAC_1)
(add_net 9VAC_2)
(add_net "Net-(D2-Pad1)")
)
(module Diodes_THT:D_DO-35_SOD27_P10.16mm_Horizontal (layer F.Cu) (tedit 5BB0D0BB) (tstamp 5B8BF494)
(at 107.95 93.345)
(descr "D, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "D DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm")
(path /5B8BB63C)
(fp_text reference D2 (at 5.08 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4148 (at 5.334 -1.905) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 5.08 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.08 -1) (end 3.08 1) (layer F.Fab) (width 0.1))
(fp_line (start 3.08 1) (end 7.08 1) (layer F.Fab) (width 0.1))
(fp_line (start 7.08 1) (end 7.08 -1) (layer F.Fab) (width 0.1))
(fp_line (start 7.08 -1) (end 3.08 -1) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 3.08 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 7.08 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.68 -1) (end 3.68 1) (layer F.Fab) (width 0.1))
(fp_line (start 3.02 -1.06) (end 3.02 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 3.02 1.06) (end 7.14 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 7.14 1.06) (end 7.14 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 7.14 -1.06) (end 3.02 -1.06) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 3.02 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 7.14 0) (layer F.SilkS) (width 0.12))
(fp_line (start 3.68 -1.06) (end 3.68 1.06) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.35) (end -1.05 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.35) (end 11.25 1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.35) (end 11.25 -1.35) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.35) (end -1.05 -1.35) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(D2-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_DO-35_SOD27_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_D5.0mm (layer F.Cu) (tedit 5BB0CF41) (tstamp 5B8BF49A)
(at 123.19 101.6 90)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(path /5B8BBCE4)
(fp_text reference D3 (at 0 4.445 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value OK (at -3.175 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 1.27 0) (end -1.23 -1.469694) (angle 299.1) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end -1.29 -1.54483) (angle 148.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -1.29 1.54483) (angle -148.9) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer F.Fab) (width 0.1))
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer F.SilkS) (width 0.12))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 4.445 180) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 5 GND))
(pad 2 thru_hole circle (at 2.54 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 6 "Net-(D3-Pad2)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D5.0mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module LEDs:LED_D5.0mm (layer F.Cu) (tedit 5BB0CF48) (tstamp 5B8BF4A0)
(at 123.19 93.345 90)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(path /5B8BBC0B)
(fp_text reference D4 (at 0 4.445 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value BAD (at 5.715 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_arc (start 1.27 0) (end -1.23 -1.469694) (angle 299.1) (layer F.Fab) (width 0.1))
(fp_arc (start 1.27 0) (end -1.29 -1.54483) (angle 148.9) (layer F.SilkS) (width 0.12))
(fp_arc (start 1.27 0) (end -1.29 1.54483) (angle -148.9) (layer F.SilkS) (width 0.12))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.Fab) (width 0.1))
(fp_circle (center 1.27 0) (end 3.77 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer F.Fab) (width 0.1))
(fp_line (start -1.29 -1.545) (end -1.29 1.545) (layer F.SilkS) (width 0.12))
(fp_line (start -1.95 -3.25) (end -1.95 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.95 3.25) (end 4.5 3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.5 3.25) (end 4.5 -3.25) (layer F.CrtYd) (width 0.05))
(fp_line (start 4.5 -3.25) (end -1.95 -3.25) (layer F.CrtYd) (width 0.05))
(fp_text user %R (at 0 4.445 180) (layer F.Fab)
(effects (font (size 0.8 0.8) (thickness 0.2)))
)
(pad 1 thru_hole rect (at 0 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 5 GND))
(pad 2 thru_hole circle (at 2.54 0 90) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 7 "Net-(D4-Pad2)"))
(model ${KISYS3DMOD}/LEDs.3dshapes/LED_D5.0mm.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Fuse_Holders_and_Fuses:Fuseholder5x20_horiz_SemiClosed_Casing10x25mm (layer F.Cu) (tedit 5B8C07EE) (tstamp 5B8BF4A6)
(at 90.17 102.87 90)
(descr "Fuseholder, 5x20, Semi closed, horizontal, Casing 10x25mm,")
(tags "Fuseholder 5x20 Semi closed horizontal Casing 10x25mm Sicherungshalter halbgeschlossen ")
(path /5B8BCEC1)
(fp_text reference F1 (at 17.78 0 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1.5A (at 10.795 3.81 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 5 2.5) (end 5 4.9) (layer F.Fab) (width 0.1))
(fp_line (start 17 -2.5) (end 17 -4.9) (layer F.Fab) (width 0.1))
(fp_line (start 17 2.5) (end 17 4.95) (layer F.Fab) (width 0.1))
(fp_line (start 15.5 -2.5) (end 15.5 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 0) (end 15.5 0) (layer F.Fab) (width 0.1))
(fp_line (start 6.5 -2.5) (end 6.5 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 5 -4.9) (end 5 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start 1 -2.5) (end 1 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 1 2.5) (end 21 2.5) (layer F.Fab) (width 0.1))
(fp_line (start 21 2.5) (end 21 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start 21 -2.5) (end 1 -2.5) (layer F.Fab) (width 0.1))
(fp_line (start -0.9 -4.9) (end -0.9 4.9) (layer F.Fab) (width 0.1))
(fp_line (start -0.9 4.9) (end 22.9 4.9) (layer F.Fab) (width 0.1))
(fp_line (start 22.9 4.9) (end 22.9 -4.9) (layer F.Fab) (width 0.1))
(fp_line (start 22.9 -4.9) (end -0.9 -4.9) (layer F.Fab) (width 0.1))
(fp_line (start 5 -2.5) (end 5 -5) (layer F.SilkS) (width 0.12))
(fp_line (start 5 5) (end 5 2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 17 5) (end 17 2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 17 -5) (end 17 -2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 0) (end 15.5 0) (layer F.SilkS) (width 0.12))
(fp_line (start 6.5 -2.5) (end 6.5 2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 15.5 -2.5) (end 15.5 2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 21 -1.9) (end 21 -2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 1 1.9) (end 1 2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 1 2.5) (end 21 2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 21 2.5) (end 21 1.9) (layer F.SilkS) (width 0.12))
(fp_line (start 21 -2.5) (end 1 -2.5) (layer F.SilkS) (width 0.12))
(fp_line (start 1 -2.5) (end 1 -1.9) (layer F.SilkS) (width 0.12))
(fp_line (start 23 -1.9) (end 23 -5) (layer F.SilkS) (width 0.12))
(fp_line (start -1 1.9) (end -1 5) (layer F.SilkS) (width 0.12))
(fp_line (start -1 5) (end 23 5) (layer F.SilkS) (width 0.12))
(fp_line (start 23 5) (end 23 1.9) (layer F.SilkS) (width 0.12))
(fp_line (start 23 -5) (end -1 -5) (layer F.SilkS) (width 0.12))
(fp_line (start -1 -5) (end -1 -1.9) (layer F.SilkS) (width 0.12))
(fp_line (start -1.5 -5.15) (end 23.5 -5.15) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.5 -5.15) (end -1.5 5.2) (layer F.CrtYd) (width 0.05))
(fp_line (start 23.5 5.2) (end 23.5 -5.15) (layer F.CrtYd) (width 0.05))
(fp_line (start 23.5 5.2) (end -1.5 5.2) (layer F.CrtYd) (width 0.05))
(pad 2 thru_hole oval (at 22 0) (size 2.5 4) (drill 1.5) (layers *.Cu *.Mask)
(net 9 5V_IN))
(pad 1 thru_hole oval (at 0 0) (size 2.5 4) (drill 1.5) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad1)"))
)
(module Relays_THT:Relay_SPDT_SANYOU_SRD_Series_Form_C (layer F.Cu) (tedit 5BB0D15C) (tstamp 5B8BF4C7)
(at 81.915 97.155 180)
(descr "relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf")
(tags "relay Sanyu SRD form C")
(path /5B8BBEBA)
(fp_text reference K1 (at 17.145 0.635 180) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value SANYOU_SRD_Form_C (at 10.16 -0.635 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.4 1.2) (end -1.4 7.8) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 -7.8) (end -1.4 -1.2) (layer F.SilkS) (width 0.12))
(fp_line (start -1.4 -7.8) (end 18.4 -7.8) (layer F.SilkS) (width 0.12))
(fp_line (start 18.4 -7.8) (end 18.4 7.8) (layer F.SilkS) (width 0.12))
(fp_line (start 18.4 7.8) (end -1.4 7.8) (layer F.SilkS) (width 0.12))
(fp_text user 1 (at 0 -2.3 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.3 -7.7) (end 18.3 -7.7) (layer F.Fab) (width 0.12))
(fp_line (start 18.3 -7.7) (end 18.3 7.7) (layer F.Fab) (width 0.12))
(fp_line (start 18.3 7.7) (end -1.3 7.7) (layer F.Fab) (width 0.12))
(fp_line (start -1.3 7.7) (end -1.3 -7.7) (layer F.Fab) (width 0.12))
(fp_text user %R (at 17.145 0.635 180) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 18.55 -7.95) (end -1.55 -7.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 7.95) (end -1.55 -7.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 18.55 -7.95) (end 18.55 7.95) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.55 7.95) (end 18.55 7.95) (layer F.CrtYd) (width 0.05))
(fp_line (start 14.15 4.2) (end 14.15 1.75) (layer F.SilkS) (width 0.12))
(fp_line (start 14.15 -4.2) (end 14.15 -1.7) (layer F.SilkS) (width 0.12))
(fp_line (start 3.55 6.05) (end 6.05 6.05) (layer F.SilkS) (width 0.12))
(fp_line (start 2.65 0.05) (end 1.85 0.05) (layer F.SilkS) (width 0.12))
(fp_line (start 6.05 -5.95) (end 3.55 -5.95) (layer F.SilkS) (width 0.12))
(fp_line (start 9.45 0.05) (end 10.95 0.05) (layer F.SilkS) (width 0.12))
(fp_line (start 10.95 0.05) (end 15.55 -2.45) (layer F.SilkS) (width 0.12))
(fp_line (start 9.45 3.65) (end 2.65 3.65) (layer F.SilkS) (width 0.12))
(fp_line (start 9.45 0.05) (end 9.45 3.65) (layer F.SilkS) (width 0.12))
(fp_line (start 2.65 0.05) (end 2.65 3.65) (layer F.SilkS) (width 0.12))
(fp_line (start 6.05 -5.95) (end 6.05 -1.75) (layer F.SilkS) (width 0.12))
(fp_line (start 6.05 1.85) (end 6.05 6.05) (layer F.SilkS) (width 0.12))
(fp_line (start 8.05 1.85) (end 4.05 -1.75) (layer F.SilkS) (width 0.12))
(fp_line (start 4.05 1.85) (end 4.05 -1.75) (layer F.SilkS) (width 0.12))
(fp_line (start 4.05 -1.75) (end 8.05 -1.75) (layer F.SilkS) (width 0.12))
(fp_line (start 8.05 -1.75) (end 8.05 1.85) (layer F.SilkS) (width 0.12))
(fp_line (start 8.05 1.85) (end 4.05 1.85) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 1.95 6.05 270) (size 2.5 2.5) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(D2-Pad2)"))
(pad 3 thru_hole circle (at 14.15 6.05 270) (size 3 3) (drill 1.3) (layers *.Cu *.Mask)
(net 10 5V_OUT))
(pad 4 thru_hole circle (at 14.2 -6 270) (size 3 3) (drill 1.3) (layers *.Cu *.Mask)
(net 13 "Net-(BZ1-Pad1)"))
(pad 5 thru_hole circle (at 1.95 -5.95 270) (size 2.5 2.5) (drill 1) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad1)"))
(pad 1 thru_hole circle (at 0 0 270) (size 3 3) (drill 1.3) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad1)"))
(model ${KISYS3DMOD}/Relays_THT.3dshapes/Relay_SPDT_SANYOU_SRD_Series_Form_C.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5BB0D1B3) (tstamp 5B8BF4DB)
(at 97.79 102.87 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B8BB424)
(fp_text reference R1 (at 6.985 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 3.81 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5BC50DCA) (tstamp 5B8BF4E1)
(at 107.95 97.79)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B8BB45B)
(fp_text reference R2 (at 3.175 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 6.35 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad2)"))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 5 GND))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5BB0D1BB) (tstamp 5B8BF4E7)
(at 101.6 102.87 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B8BB4EB)
(fp_text reference R3 (at 6.985 0 180) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 2k2 (at 3.81 0 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(Q1-Pad3)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5B8C006D) (tstamp 5B8BF4ED)
(at 107.95 100.965)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B8BBB66)
(fp_text reference R4 (at 3.175 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 6.35 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 10 5V_OUT))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 6 "Net-(D3-Pad2)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Resistors_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal (layer F.Cu) (tedit 5B8C0073) (tstamp 5B8BF4F3)
(at 107.95 104.14)
(descr "Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf")
(tags "Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(path /5B8BBAE2)
(fp_text reference R5 (at 3.175 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 470 (at 6.35 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 1.93 -1.25) (end 1.93 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 1.93 1.25) (end 8.23 1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 1.25) (end 8.23 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 1.93 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 8.23 0) (layer F.Fab) (width 0.1))
(fp_line (start 1.87 -1.31) (end 1.87 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 1.87 1.31) (end 8.29 1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 1.31) (end 8.29 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 8.29 -1.31) (end 1.87 -1.31) (layer F.SilkS) (width 0.12))
(fp_line (start 0.98 0) (end 1.87 0) (layer F.SilkS) (width 0.12))
(fp_line (start 9.18 0) (end 8.29 0) (layer F.SilkS) (width 0.12))
(fp_line (start -1.05 -1.6) (end -1.05 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.05 1.6) (end 11.25 1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 1.6) (end 11.25 -1.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.25 -1.6) (end -1.05 -1.6) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 13 "Net-(BZ1-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 7 "Net-(D4-Pad2)"))
(model ${KISYS3DMOD}/Resistors_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module TO_SOT_Packages_THT:TO-92_Inline_Wide (layer F.Cu) (tedit 5BC50DBB) (tstamp 5BABDA30)
(at 97.155 83.82)
(descr "TO-92 leads in-line, wide, drill 0.8mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /5B8BB5F8)
(fp_text reference Q1 (at 6.985 0 270) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PN2222A (at 8.255 2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 6.985 0 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer F.SilkS) (width 0.12))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.01 -2.73) (end 6.09 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.01 -2.73) (end -1.01 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.09 2.01) (end 6.09 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer F.CrtYd) (width 0.05))
(fp_arc (start 2.54 0) (end 0.74 1.85) (angle 20) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.6) (angle -65) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.6) (angle 65) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_arc (start 2.54 0) (end 2.54 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 2.54 0) (end 4.34 1.85) (angle -20) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 2.54 0 90) (size 1.52 1.52) (drill 0.8) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad2)"))
(pad 3 thru_hole circle (at 5.08 0 90) (size 1.52 1.52) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(Q1-Pad3)"))
(pad 1 thru_hole rect (at 0 0 90) (size 1.52 1.52) (drill 0.8) (layers *.Cu *.Mask)
(net 5 GND))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-92_Inline_Wide.wrl
(at (xyz 0.1 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(module TO_SOT_Packages_THT:TO-92_Inline_Wide (layer F.Cu) (tedit 5BC50DAE) (tstamp 5BABDA36)
(at 102.235 88.265 180)
(descr "TO-92 leads in-line, wide, drill 0.8mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(path /5B8BB6EE)
(fp_text reference Q2 (at -1.905 0 450) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PN2222A (at 2.54 -1.905 180) (layer B.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text user %R (at -1.905 0 450) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 0.74 1.85) (end 4.34 1.85) (layer F.SilkS) (width 0.12))
(fp_line (start 0.8 1.75) (end 4.3 1.75) (layer F.Fab) (width 0.1))
(fp_line (start -1.01 -2.73) (end 6.09 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.01 -2.73) (end -1.01 2.01) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.09 2.01) (end 6.09 -2.73) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.09 2.01) (end -1.01 2.01) (layer F.CrtYd) (width 0.05))
(fp_arc (start 2.54 0) (end 0.74 1.85) (angle 20) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.6) (angle -65) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.6) (angle 65) (layer F.SilkS) (width 0.12))
(fp_arc (start 2.54 0) (end 2.54 -2.48) (angle 135) (layer F.Fab) (width 0.1))
(fp_arc (start 2.54 0) (end 2.54 -2.48) (angle -135) (layer F.Fab) (width 0.1))
(fp_arc (start 2.54 0) (end 4.34 1.85) (angle -20) (layer F.SilkS) (width 0.12))
(pad 2 thru_hole circle (at 2.54 0 270) (size 1.52 1.52) (drill 0.8) (layers *.Cu *.Mask)
(net 8 "Net-(Q1-Pad3)"))
(pad 3 thru_hole circle (at 5.08 0 270) (size 1.52 1.52) (drill 0.8) (layers *.Cu *.Mask)
(net 4 "Net-(D2-Pad2)"))
(pad 1 thru_hole rect (at 0 0 270) (size 1.52 1.52) (drill 0.8) (layers *.Cu *.Mask)
(net 5 GND))
(model ${KISYS3DMOD}/TO_SOT_Packages_THT.3dshapes/TO-92_Inline_Wide.wrl
(at (xyz 0.1 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 -90))
)
)
(module Diodes_THT:D_T-1_P10.16mm_Horizontal (layer F.Cu) (tedit 5BB0D0C2) (tstamp 5BB0D098)
(at 107.95 88.265)
(descr "D, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf")
(tags "D T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm")
(path /5B8BB527)
(fp_text reference D1 (at 5.08 0) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value 1N4732A (at 5.334 -2.159) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 5.08 0) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 3.48 -1.3) (end 3.48 1.3) (layer F.Fab) (width 0.1))
(fp_line (start 3.48 1.3) (end 6.68 1.3) (layer F.Fab) (width 0.1))
(fp_line (start 6.68 1.3) (end 6.68 -1.3) (layer F.Fab) (width 0.1))
(fp_line (start 6.68 -1.3) (end 3.48 -1.3) (layer F.Fab) (width 0.1))
(fp_line (start 0 0) (end 3.48 0) (layer F.Fab) (width 0.1))
(fp_line (start 10.16 0) (end 6.68 0) (layer F.Fab) (width 0.1))
(fp_line (start 3.96 -1.3) (end 3.96 1.3) (layer F.Fab) (width 0.1))
(fp_line (start 3.42 -1.36) (end 3.42 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 3.42 1.36) (end 6.74 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 6.74 1.36) (end 6.74 -1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 6.74 -1.36) (end 3.42 -1.36) (layer F.SilkS) (width 0.12))
(fp_line (start 1.18 0) (end 3.42 0) (layer F.SilkS) (width 0.12))
(fp_line (start 8.98 0) (end 6.74 0) (layer F.SilkS) (width 0.12))
(fp_line (start 3.96 -1.36) (end 3.96 1.36) (layer F.SilkS) (width 0.12))
(fp_line (start -1.25 -1.65) (end -1.25 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.25 1.65) (end 11.45 1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.45 1.65) (end 11.45 -1.65) (layer F.CrtYd) (width 0.05))
(fp_line (start 11.45 -1.65) (end -1.25 -1.65) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)"))
(pad 2 thru_hole oval (at 10.16 0) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad2)"))
(model ${KISYS3DMOD}/Diodes_THT.3dshapes/D_T-1_P10.16mm_Horizontal.wrl
(at (xyz 0 0 0))
(scale (xyz 0.393701 0.393701 0.393701))
(rotate (xyz 0 0 0))
)
)
(module Buzzers_Beepers:Buzzer_12x9.5RM7.6 (layer F.Cu) (tedit 5BB0D6D2) (tstamp 5BB0D3BB)
(at 100.33 78.105 90)
(descr "Generic Buzzer, D12mm height 9.5mm with RM7.6mm")
(tags buzzer)
(path /5BB0F527)
(fp_text reference BZ1 (at 3.81 -3.81 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value Buzzer (at 3.8 7.4 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user + (at -0.01 -2.54 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user + (at -0.01 -2.54 90) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 -3.81 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 3.8 0) (end 10.05 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 3.8 0) (end 9.8 0) (layer F.Fab) (width 0.1))
(fp_circle (center 3.8 0) (end 4.8 0) (layer F.Fab) (width 0.1))
(fp_circle (center 3.8 0) (end 9.9 0) (layer F.SilkS) (width 0.12))
(pad 1 thru_hole rect (at 0 0 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 13 "Net-(BZ1-Pad1)"))
(pad 2 thru_hole circle (at 7.6 0 90) (size 2 2) (drill 1) (layers *.Cu *.Mask)
(net 5 GND))
(model ${KISYS3DMOD}/Buzzers_Beepers.3dshapes/Buzzer_12x9.5RM7.6.wrl
(at (xyz 0.15 0 0))
(scale (xyz 4 4 4))
(rotate (xyz 0 0 0))
)
)
(module C64_PWR:OUTPUT_ZIP (layer F.Cu) (tedit 5BC50B8D) (tstamp 5BB0D168)
(at 111.125 74.295)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(path /5BB0E936)
(fp_text reference J1 (at 3.81 3.81) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value OUTPUT (at 8.89 3.81) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 3.81 3.81 180) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad 1 thru_hole oval (at -1.27 -1.905) (size 4 2.5) (drill 2) (layers *.Cu *.Mask)
(net 11 9VAC_2))
(pad 2 thru_hole oval (at -1.27 1.905) (size 4 2.5) (drill 2) (layers *.Cu *.Mask)
(net 12 9VAC_1))
(pad 3 thru_hole oval (at -1.27 5.715) (size 4 2.5) (drill 2) (layers *.Cu *.Mask)
(net 10 5V_OUT))
(pad 4 thru_hole oval (at -1.27 9.525) (size 4 2.5) (drill 2) (layers *.Cu *.Mask)
(net 5 GND))
(pad "" np_thru_hole oval (at 5.08 0) (size 5 3) (drill oval 4 2.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole oval (at 5.08 7.62) (size 5 3) (drill oval 4 2.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole oval (at 11.43 0) (size 5 3) (drill oval 4 2.5) (layers *.Cu *.Mask))
(pad "" np_thru_hole oval (at 11.43 7.62) (size 5 3) (drill oval 4 2.5) (layers *.Cu *.Mask))
(model ${KISYS3DMOD}/Pin_Headers.3dshapes/Pin_Header_Straight_1x04_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module C64_PWR:C64_PWR (layer F.Cu) (tedit 5BE44A65) (tstamp 5BB0C2DA)
(at 74.93 77.47 270)
(path /5B8CBE3E)
(fp_text reference J5 (at 0 6.5 270) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value DIN-7 (at 0 4.25 270) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user GND (at 2.54 -10.16 360) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user 5v (at -2.54 -10.16 360) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 10.5 11) (end 9.5 11) (layer F.SilkS) (width 0.15))
(fp_line (start 10.5 11) (end 10.5 12) (layer F.SilkS) (width 0.15))
(fp_line (start -10.5 12) (end -10.5 13) (layer F.SilkS) (width 0.15))
(fp_line (start -10.5 13) (end -9 13) (layer F.SilkS) (width 0.15))
(fp_line (start 9.5 11) (end 9 11) (layer F.SilkS) (width 0.15))
(fp_line (start 10.5 13) (end 9 13) (layer F.SilkS) (width 0.15))
(fp_line (start 10.5 12) (end 10.5 13) (layer F.SilkS) (width 0.15))
(fp_line (start -9 13) (end 9 13) (layer F.SilkS) (width 0.15))
(fp_line (start 9 10) (end 8 10) (layer F.SilkS) (width 0.15))
(fp_line (start 8 10) (end 8 11) (layer F.SilkS) (width 0.15))
(fp_line (start 8 11) (end 9 11) (layer F.SilkS) (width 0.15))
(fp_line (start -10.5 11) (end -10.5 12) (layer F.SilkS) (width 0.15))
(fp_line (start -9 10) (end -8 10) (layer F.SilkS) (width 0.15))
(fp_line (start -8 10) (end -8 11) (layer F.SilkS) (width 0.15))
(fp_line (start -8 11) (end -10.5 11) (layer F.SilkS) (width 0.15))
(fp_line (start 9 10) (end 9 -6.5) (layer F.SilkS) (width 0.15))
(fp_line (start -9 10) (end -9 -6.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 -4.5) (end -6 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 -4.5) (end -1.5 -6.5) (layer F.SilkS) (width 0.15))
(fp_line (start -1.5 -6.5) (end 1.5 -6.5) (layer F.SilkS) (width 0.15))
(fp_line (start 1.5 -6.5) (end 1.5 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 1.5 -4.5) (end 6 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start 9 -6.5) (end 6 -6.5) (layer F.SilkS) (width 0.15))
(fp_line (start 6 -6.5) (end 6 -4.5) (layer F.SilkS) (width 0.15))
(fp_line (start -9 -6.5) (end -6 -6.5) (layer F.SilkS) (width 0.15))
(fp_line (start -6 -6.5) (end -6 -4.5) (layer F.SilkS) (width 0.15))
(pad 2 thru_hole oval (at 2.54 -6.35 270) (size 2.5 4) (drill 2) (layers *.Cu *.Mask)
(net 5 GND))
(pad 5 thru_hole oval (at -2.54 -6.35 270) (size 2.5 4) (drill 2) (layers *.Cu *.Mask)
(net 9 5V_IN))
(pad 5 thru_hole oval (at -5 -2.5 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask)
(net 9 5V_IN))
(pad 4 thru_hole oval (at 5 -2.5 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask)
(net 9 5V_IN))
(pad 3 thru_hole oval (at -7.5 0 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask))
(pad 1 thru_hole oval (at 7.5 0 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask))
(pad "" np_thru_hole oval (at -5 10 270) (size 2 1.524) (drill oval 1.2 0.762) (layers *.Cu *.Mask))
(pad "" np_thru_hole oval (at 5 10 270) (size 2 1.524) (drill oval 1.2 0.762) (layers *.Cu *.Mask))
(pad 2 thru_hole oval (at 0 0 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask)
(net 5 GND))
(pad 6 thru_hole oval (at 7.5 -5 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask)
(net 11 9VAC_2))
(pad 7 thru_hole oval (at -7.5 -5 270) (size 1.524 2) (drill oval 0.762 1.3) (layers *.Cu *.Mask)
(net 12 9VAC_1))
)
(gr_text "Revision E" (at 125.095 71.12) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify right))
)
(gr_text github.com/tebl (at 123.825 67.945) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify left mirror))
)
(gr_line (start 125.095 66.675) (end 63.5 66.675) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 63.5 106.045) (end 125.095 106.045) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_line (start 126.365 67.945) (end 126.365 104.775) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_text "C64 Power Saver" (at 125.095 68.58) (layer F.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify right))
)
(gr_line (start 62.23 67.945) (end 62.23 104.775) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 63.5 104.775) (end 63.5 106.045) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 125.095 104.775) (end 126.365 104.775) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 125.095 67.945) (end 125.095 66.675) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 63.5 67.945) (end 62.23 67.945) (angle 90) (layer Edge.Cuts) (width 0.15))
(segment (start 97.79 92.71) (end 99.06 93.98) (width 0.25) (layer F.Cu) (net 1))
(segment (start 106.045 88.265) (end 107.95 88.265) (width 0.25) (layer F.Cu) (net 1) (tstamp 5BB0CCA9))
(segment (start 105.41 88.9) (end 106.045 88.265) (width 0.25) (layer F.Cu) (net 1) (tstamp 5BB0CCA8))
(segment (start 105.41 92.075) (end 105.41 88.9) (width 0.25) (layer F.Cu) (net 1) (tstamp 5BB0CCA6))
(segment (start 102.87 94.615) (end 105.41 92.075) (width 0.25) (layer F.Cu) (net 1) (tstamp 5BB0CCA5))
(segment (start 99.695 94.615) (end 102.87 94.615) (width 0.25) (layer F.Cu) (net 1) (tstamp 5BB0CCA4))
(segment (start 99.06 93.98) (end 99.695 94.615) (width 0.25) (layer F.Cu) (net 1) (tstamp 5BB0CCA3))
(segment (start 118.11 88.265) (end 118.11 88.9) (width 0.25) (layer F.Cu) (net 2))
(segment (start 118.11 88.9) (end 118.745 89.535) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD29))
(segment (start 119.38 89.535) (end 120.015 90.17) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD2B))
(segment (start 118.745 89.535) (end 119.38 89.535) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD2A))
(segment (start 99.695 83.82) (end 99.695 82.55) (width 0.25) (layer F.Cu) (net 2))
(segment (start 118.11 86.995) (end 118.11 88.265) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD21))
(segment (start 117.475 86.36) (end 118.11 86.995) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD20))
(segment (start 106.045 86.36) (end 117.475 86.36) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD1F))
(segment (start 105.41 85.725) (end 106.045 86.36) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD1E))
(segment (start 105.41 83.185) (end 105.41 85.725) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD1C))
(segment (start 103.505 81.28) (end 105.41 83.185) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD1A))
(segment (start 100.965 81.28) (end 103.505 81.28) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD18))
(segment (start 99.695 82.55) (end 100.965 81.28) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CD16))
(segment (start 116.84 95.885) (end 115.57 95.885) (width 0.25) (layer F.Cu) (net 2))
(segment (start 114.935 97.155) (end 114.3 97.79) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCC1))
(segment (start 114.935 96.52) (end 114.935 97.155) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCC0))
(segment (start 115.57 95.885) (end 114.935 96.52) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCBF))
(segment (start 120.015 94.615) (end 120.015 95.25) (width 0.25) (layer F.Cu) (net 2))
(segment (start 119.38 95.885) (end 118.745 95.885) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCBC))
(segment (start 120.015 95.25) (end 119.38 95.885) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCBB))
(segment (start 107.95 97.79) (end 114.3 97.79) (width 0.25) (layer F.Cu) (net 2))
(segment (start 120.015 94.615) (end 120.015 90.17) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCB5))
(segment (start 116.84 95.885) (end 118.745 95.885) (width 0.25) (layer F.Cu) (net 2) (tstamp 5BB0CCB1))
(segment (start 101.6 102.87) (end 101.6 95.885) (width 0.25) (layer F.Cu) (net 3))
(segment (start 101.6 95.885) (end 102.235 95.25) (width 0.25) (layer F.Cu) (net 3) (tstamp 5BB0CF0B))
(segment (start 97.79 102.87) (end 101.6 102.87) (width 0.25) (layer F.Cu) (net 3))
(segment (start 102.235 95.25) (end 106.045 95.25) (width 0.25) (layer F.Cu) (net 3) (tstamp 5BB0CF0E))
(segment (start 107.95 93.345) (end 106.045 95.25) (width 0.25) (layer F.Cu) (net 3))
(segment (start 97.79 102.87) (end 90.17 102.87) (width 0.25) (layer F.Cu) (net 3))
(segment (start 79.965 103.105) (end 79.965 99.105) (width 1) (layer F.Cu) (net 3))
(segment (start 79.965 99.105) (end 81.915 97.155) (width 1) (layer F.Cu) (net 3) (tstamp 5BB0C8E9))
(segment (start 90.17 102.87) (end 80.2 102.87) (width 1) (layer F.Cu) (net 3))
(segment (start 80.2 102.87) (end 79.965 103.105) (width 0.25) (layer F.Cu) (net 3) (tstamp 5BB0C8D1))
(segment (start 97.155 88.265) (end 97.155 90.805) (width 0.25) (layer F.Cu) (net 4))
(segment (start 80.265 90.805) (end 97.155 90.805) (width 0.25) (layer F.Cu) (net 4))
(segment (start 97.155 90.805) (end 102.87 90.805) (width 0.25) (layer F.Cu) (net 4) (tstamp 5BC51046))
(via (at 106.68 90.805) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 106.68 90.805) (end 116.84 90.805) (width 0.25) (layer F.Cu) (net 4) (tstamp 5BB0CD37))
(segment (start 116.84 90.805) (end 118.11 92.075) (width 0.25) (layer F.Cu) (net 4) (tstamp 5BB0CD38))
(segment (start 118.11 92.075) (end 118.11 93.345) (width 0.25) (layer F.Cu) (net 4) (tstamp 5BB0CD39))
(segment (start 102.87 90.805) (end 106.68 90.805) (width 0.25) (layer B.Cu) (net 4) (tstamp 5BC51039))
(via (at 102.87 90.805) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 4))
(segment (start 80.265 90.805) (end 79.965 91.105) (width 0.25) (layer F.Cu) (net 4) (tstamp 5BC51041))
(segment (start 118.11 100.965) (end 119.38 100.965) (width 0.25) (layer F.Cu) (net 6))
(segment (start 121.285 99.06) (end 123.19 99.06) (width 0.25) (layer F.Cu) (net 6) (tstamp 5BB0CED8))
(segment (start 119.38 100.965) (end 121.285 99.06) (width 0.25) (layer F.Cu) (net 6) (tstamp 5BB0CED6))
(segment (start 123.19 90.805) (end 121.92 90.805) (width 0.25) (layer F.Cu) (net 7))
(segment (start 116.205 102.235) (end 118.11 104.14) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEE6))
(segment (start 116.205 100.33) (end 116.205 102.235) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEE4))
(segment (start 117.475 99.06) (end 116.205 100.33) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEE2))
(segment (start 119.38 99.06) (end 117.475 99.06) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEE0))
(segment (start 121.285 97.155) (end 119.38 99.06) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEDE))
(segment (start 121.285 91.44) (end 121.285 97.155) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEDD))
(segment (start 121.92 90.805) (end 121.285 91.44) (width 0.25) (layer F.Cu) (net 7) (tstamp 5BB0CEDC))
(segment (start 99.695 88.265) (end 99.695 86.36) (width 0.25) (layer F.Cu) (net 8))
(segment (start 99.695 86.36) (end 102.235 83.82) (width 0.25) (layer F.Cu) (net 8) (tstamp 5BB0CA17))
(segment (start 101.6 92.71) (end 102.87 92.71) (width 0.25) (layer F.Cu) (net 8))
(segment (start 102.87 92.71) (end 104.14 91.44) (width 0.25) (layer F.Cu) (net 8) (tstamp 5BB0CC9B))
(segment (start 104.14 91.44) (end 104.14 85.725) (width 0.25) (layer F.Cu) (net 8) (tstamp 5BB0CC9D))
(segment (start 104.14 85.725) (end 102.235 83.82) (width 0.25) (layer F.Cu) (net 8) (tstamp 5BB0CC9F))
(segment (start 81.28 72.47) (end 81.28 74.93) (width 1) (layer F.Cu) (net 9))
(segment (start 77.43 82.47) (end 77.43 72.47) (width 1) (layer B.Cu) (net 9))
(segment (start 77.43 72.47) (end 81.28 72.47) (width 1) (layer F.Cu) (net 9))
(segment (start 81.28 72.47) (end 87.71 72.47) (width 1) (layer F.Cu) (net 9) (tstamp 5BE44BE2))
(segment (start 90.17 74.93) (end 90.17 80.87) (width 1) (layer F.Cu) (net 9) (tstamp 5BB0C8CE))
(segment (start 87.71 72.47) (end 90.17 74.93) (width 1) (layer F.Cu) (net 9) (tstamp 5BB0C8CD))
(segment (start 109.855 80.01) (end 107.315 80.01) (width 1) (layer F.Cu) (net 10))
(segment (start 102.235 74.93) (end 93.98 74.93) (width 1) (layer F.Cu) (net 10) (tstamp 5BC50FEF))
(segment (start 107.315 80.01) (end 102.235 74.93) (width 1) (layer F.Cu) (net 10) (tstamp 5BC50FEE))
(segment (start 93.345 93.345) (end 99.695 99.695) (width 0.25) (layer F.Cu) (net 10))
(segment (start 99.695 99.695) (end 100.33 99.695) (width 0.25) (layer F.Cu) (net 10) (tstamp 5BB0D6B3))
(segment (start 104.14 100.965) (end 102.87 99.695) (width 0.25) (layer F.Cu) (net 10))
(segment (start 68.58 93.345) (end 92.71 93.345) (width 0.25) (layer F.Cu) (net 10) (tstamp 5BB0CDEE))
(segment (start 107.95 100.965) (end 104.14 100.965) (width 0.25) (layer F.Cu) (net 10) (tstamp 5BB0CDFC))
(segment (start 68.58 93.345) (end 67.765 92.53) (width 0.25) (layer F.Cu) (net 10) (tstamp 5BB0CDEA))
(segment (start 93.345 93.345) (end 92.71 93.345) (width 0.25) (layer F.Cu) (net 10) (tstamp 5BB0D6B1))
(via (at 100.33 99.695) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 102.87 99.695) (end 100.33 99.695) (width 0.25) (layer B.Cu) (net 10) (tstamp 5BB0D6A7))
(via (at 102.87 99.695) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 10))
(segment (start 93.98 74.93) (end 92.71 76.2) (width 1) (layer F.Cu) (net 10))
(segment (start 68.58 87.63) (end 91.44 87.63) (width 1) (layer F.Cu) (net 10) (tstamp 5BB0C8E1))
(segment (start 91.44 87.63) (end 92.71 86.36) (width 1) (layer F.Cu) (net 10) (tstamp 5BB0C8E2))
(segment (start 67.765 88.445) (end 67.765 91.105) (width 1) (layer F.Cu) (net 10))
(segment (start 67.765 88.445) (end 68.58 87.63) (width 1) (layer F.Cu) (net 10) (tstamp 5BB0C8E0))
(segment (start 92.71 76.2) (end 92.71 86.36) (width 1) (layer F.Cu) (net 10) (tstamp 5BB0D49E))
(segment (start 67.765 91.105) (end 67.765 92.53) (width 0.25) (layer F.Cu) (net 10))
(segment (start 79.93 84.97) (end 83.94 84.97) (width 1) (layer F.Cu) (net 11))
(segment (start 105.41 67.945) (end 109.855 72.39) (width 1) (layer F.Cu) (net 11) (tstamp 5BC50FC6))
(segment (start 69.85 67.945) (end 94.615 67.945) (width 1) (layer F.Cu) (net 11))
(segment (start 69.85 67.945) (end 68.58 69.215) (width 1) (layer F.Cu) (net 11) (tstamp 5BB0D417))
(segment (start 68.58 69.215) (end 68.58 71.12) (width 1) (layer F.Cu) (net 11) (tstamp 5BB0D419))
(segment (start 68.58 71.12) (end 68.58 73.66) (width 1) (layer F.Cu) (net 11) (tstamp 5BB0C895))
(segment (start 94.615 67.945) (end 105.41 67.945) (width 1) (layer F.Cu) (net 11))
(segment (start 85.09 81.915) (end 85.09 78.74) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44BEA))
(segment (start 85.09 78.74) (end 83.82 77.47) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44BEB))
(segment (start 83.82 77.47) (end 78.74 77.47) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44BEC))
(segment (start 78.74 77.47) (end 76.2 74.93) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44BEE))
(segment (start 76.2 74.93) (end 69.85 74.93) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44BEF))
(segment (start 69.85 74.93) (end 68.58 73.66) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44BF0))
(segment (start 85.09 83.82) (end 85.09 81.915) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44E6C))
(segment (start 83.94 84.97) (end 85.09 83.82) (width 1) (layer F.Cu) (net 11) (tstamp 5BE44E6B))
(segment (start 98.425 73.025) (end 103.505 73.025) (width 1) (layer F.Cu) (net 12))
(segment (start 103.505 73.025) (end 104.775 74.295) (width 1) (layer F.Cu) (net 12) (tstamp 5BC50FEB))
(segment (start 93.98 69.97) (end 95.37 69.97) (width 1) (layer F.Cu) (net 12))
(segment (start 95.37 69.97) (end 98.425 73.025) (width 1) (layer F.Cu) (net 12) (tstamp 5BC50FD9))
(segment (start 92.71 69.97) (end 92.83 69.97) (width 1) (layer F.Cu) (net 12))
(segment (start 79.93 69.97) (end 92.71 69.97) (width 1) (layer F.Cu) (net 12))
(segment (start 92.83 69.97) (end 93.98 69.97) (width 1) (layer F.Cu) (net 12))
(segment (start 106.68 76.2) (end 109.855 76.2) (width 1) (layer F.Cu) (net 12) (tstamp 5BC50FC2))
(segment (start 104.775 74.295) (end 106.68 76.2) (width 1) (layer F.Cu) (net 12) (tstamp 5BC50FC1))
(segment (start 67.715 103.155) (end 76.89 93.98) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0CD5B))
(via (at 92.075 93.98) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 95.25 77.47) (end 93.98 78.74) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0D4AA))
(segment (start 93.98 78.74) (end 93.98 87.63) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0D4B0))
(segment (start 99.695 77.47) (end 95.25 77.47) (width 0.25) (layer F.Cu) (net 13))
(segment (start 93.98 90.17) (end 93.98 87.63) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0D4BF))
(via (at 93.98 90.17) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 93.98 92.075) (end 93.98 90.17) (width 0.25) (layer B.Cu) (net 13) (tstamp 5BB0D4B9))
(segment (start 93.98 92.075) (end 92.075 93.98) (width 0.25) (layer B.Cu) (net 13) (tstamp 5BB0D4B8))
(via (at 99.06 100.965) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 99.06 100.965) (end 92.075 93.98) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0CD58))
(segment (start 92.075 93.98) (end 76.89 93.98) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0CD59))
(segment (start 106.045 104.14) (end 107.95 104.14) (width 0.25) (layer F.Cu) (net 13))
(segment (start 104.775 104.14) (end 106.045 104.14) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0CE29))
(segment (start 102.235 101.6) (end 104.775 104.14) (width 0.25) (layer F.Cu) (net 13) (tstamp 5BB0CE28))
(via (at 102.235 101.6) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 13))
(segment (start 101.6 100.965) (end 102.235 101.6) (width 0.25) (layer B.Cu) (net 13) (tstamp 5BB0CE25))
(segment (start 99.06 100.965) (end 101.6 100.965) (width 0.25) (layer B.Cu) (net 13) (tstamp 5BB0CE24))
(zone (net 5) (net_name GND) (layer B.Cu) (tstamp 5BB0C544) (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254)
(fill yes (arc_segments 16) (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 126.365 67.945) (xy 126.365 104.775) (xy 125.095 106.045) (xy 63.5 106.045) (xy 62.23 104.775)
(xy 62.23 67.945) (xy 63.5 66.675) (xy 125.095 66.675)
)
)
(filled_polygon
(pts
(xy 125.303979 67.440478) (xy 125.481145 67.558856) (xy 125.599521 67.736019) (xy 125.655 68.014931) (xy 125.655 73.810273)
(xy 125.588901 73.477971) (xy 125.126091 72.785327) (xy 124.433447 72.322517) (xy 123.616418 72.16) (xy 121.493582 72.16)
(xy 120.676553 72.322517) (xy 119.983909 72.785327) (xy 119.521099 73.477971) (xy 119.38 74.187324) (xy 119.238901 73.477971)
(xy 118.776091 72.785327) (xy 118.083447 72.322517) (xy 117.266418 72.16) (xy 115.143582 72.16) (xy 114.326553 72.322517)
(xy 113.633909 72.785327) (xy 113.171099 73.477971) (xy 113.008582 74.295) (xy 113.171099 75.112029) (xy 113.633909 75.804673)
(xy 114.326553 76.267483) (xy 115.143582 76.43) (xy 117.266418 76.43) (xy 118.083447 76.267483) (xy 118.776091 75.804673)
(xy 119.238901 75.112029) (xy 119.38 74.402676) (xy 119.521099 75.112029) (xy 119.983909 75.804673) (xy 120.676553 76.267483)
(xy 121.493582 76.43) (xy 123.616418 76.43) (xy 124.433447 76.267483) (xy 125.126091 75.804673) (xy 125.588901 75.112029)
(xy 125.655 74.779727) (xy 125.655 81.430273) (xy 125.588901 81.097971) (xy 125.126091 80.405327) (xy 124.433447 79.942517)
(xy 123.616418 79.78) (xy 121.493582 79.78) (xy 120.676553 79.942517) (xy 119.983909 80.405327) (xy 119.521099 81.097971)
(xy 119.38 81.807324) (xy 119.238901 81.097971) (xy 118.776091 80.405327) (xy 118.083447 79.942517) (xy 117.266418 79.78)
(xy 115.143582 79.78) (xy 114.326553 79.942517) (xy 113.633909 80.405327) (xy 113.171099 81.097971) (xy 113.008582 81.915)
(xy 113.171099 82.732029) (xy 113.633909 83.424673) (xy 114.326553 83.887483) (xy 115.143582 84.05) (xy 117.266418 84.05)
(xy 118.083447 83.887483) (xy 118.776091 83.424673) (xy 119.238901 82.732029) (xy 119.38 82.022676) (xy 119.521099 82.732029)
(xy 119.983909 83.424673) (xy 120.676553 83.887483) (xy 121.493582 84.05) (xy 123.616418 84.05) (xy 124.433447 83.887483)
(xy 125.126091 83.424673) (xy 125.588901 82.732029) (xy 125.655 82.399727) (xy 125.655 104.705069) (xy 125.599521 104.983981)
(xy 125.481145 105.161144) (xy 125.303979 105.279522) (xy 125.02507 105.335) (xy 118.88297 105.335) (xy 119.152811 105.154698)
(xy 119.46388 104.689151) (xy 119.573113 104.14) (xy 119.46388 103.590849) (xy 119.152811 103.125302) (xy 118.687264 102.814233)
(xy 118.138113 102.705) (xy 118.081887 102.705) (xy 117.532736 102.814233) (xy 117.067189 103.125302) (xy 116.75612 103.590849)
(xy 116.646887 104.14) (xy 116.75612 104.689151) (xy 117.067189 105.154698) (xy 117.33703 105.335) (xy 108.784082 105.335)