-
Notifications
You must be signed in to change notification settings - Fork 0
/
DragonNTSC.kicad_pcb
19675 lines (19639 loc) · 803 KB
/
DragonNTSC.kicad_pcb
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 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "Net-(IC1-Q0)")
(net 4 "DO0")
(net 5 "DO1")
(net 6 "Net-(IC1-Q1)")
(net 7 "Net-(IC1-Q2)")
(net 8 "DO2")
(net 9 "DO3")
(net 10 "Net-(IC1-Q3)")
(net 11 "~{RAS0}")
(net 12 "Net-(IC1-Q4)")
(net 13 "DO4")
(net 14 "DO5")
(net 15 "Net-(IC1-Q5)")
(net 16 "Net-(IC1-Q6)")
(net 17 "DO6")
(net 18 "DO7")
(net 19 "Net-(IC1-Q7)")
(net 20 "CHB")
(net 21 "phiB")
(net 22 "phiA")
(net 23 "~{FS}")
(net 24 "unconnected-(IC2-DA5-Pad13)")
(net 25 "unconnected-(IC2-DA6-Pad14)")
(net 26 "unconnected-(IC2-DA7-Pad15)")
(net 27 "unconnected-(IC2-DA8-Pad16)")
(net 28 "unconnected-(IC2-DA9-Pad18)")
(net 29 "unconnected-(IC2-DA10-Pad19)")
(net 30 "unconnected-(IC2-DA11-Pad20)")
(net 31 "unconnected-(IC2-DA12-Pad21)")
(net 32 "DA0")
(net 33 "unconnected-(IC2-DA1-Pad23)")
(net 34 "unconnected-(IC2-DA2-Pad24)")
(net 35 "unconnected-(IC2-DA3-Pad25)")
(net 36 "unconnected-(IC2-DA4-Pad26)")
(net 37 "GM2")
(net 38 "LUM")
(net 39 "GM1")
(net 40 "GM0")
(net 41 "VCLK")
(net 42 "~{A}{slash}G")
(net 43 "unconnected-(IC2-~{RP}-Pad36)")
(net 44 "~{HS}")
(net 45 "CSS")
(net 46 "unconnected-(IC3-CLK-Pad1)")
(net 47 "unconnected-(IC3-DCadj-Pad3)")
(net 48 "Net-(IC3-ChrIn)")
(net 49 "VID OUT")
(net 50 "BIAS")
(net 51 "unconnected-(J1-Pin_3-Pad3)")
(net 52 "-5V")
(net 53 "Net-(IC3-ChrMod)")
(net 54 "Net-(C3-Pad2)")
(net 55 "Net-(D1-K)")
(net 56 "Net-(D1-A)")
(net 57 "Composite")
(net 58 "Net-(Q1-C)")
(net 59 "Net-(Q2-E)")
(net 60 "unconnected-(RV1-Pad2)")
(net 61 "unconnected-(J2-Pin_21-Pad21)")
(net 62 "Net-(IC4-CV)")
(net 63 "Net-(IC4-DIS)")
(net 64 "Net-(D2-A)")
(net 65 "Net-(IC4-Q)")
(net 66 "Net-(Q3-C)")
(footprint "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (layer "F.Cu")
(tstamp 092cd735-d76a-4d6c-9df7-40f57cd1caf6)
(at 176.8602 100.3808)
(descr "Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf")
(tags "Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "100V 0.15A standard switching diode, DO-35")
(property "ki_keywords" "diode")
(path "/72ba0278-4ddc-4388-bb47-68faa67d4a57")
(attr through_hole)
(fp_text reference "D1" (at 3.81 -2.12) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5bb29d8-7cf9-41f5-8f03-18b34019b3d8)
)
(fp_text value "1N3064" (at 3.81 2.12) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2385919e-5e4a-4ce3-9ff5-e6686b7a8945)
)
(fp_text user "K" (at 0 -1.8) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a01b9b40-65d5-4293-9a93-6a2be41a9649)
)
(fp_text user "K" (at 0 -1.8) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d835390c-a5e9-401b-9e1a-55e8c773f386)
)
(fp_text user "${REFERENCE}" (at 4.11 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp dd85d899-f6f5-4eee-9dfd-967ed2110995)
)
(fp_line (start 1.04 0) (end 1.69 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8742ce56-b74a-436f-9765-66a032a902ee))
(fp_line (start 1.69 -1.12) (end 1.69 1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99073324-e399-49e1-a202-b79b7b1571c1))
(fp_line (start 1.69 1.12) (end 5.93 1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ed957617-e08c-4673-9f35-1ee00afd94fa))
(fp_line (start 2.29 -1.12) (end 2.29 1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 547416a8-ccc8-4ec7-8154-639987555a5b))
(fp_line (start 2.41 -1.12) (end 2.41 1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8a0b4374-785b-4483-9ed0-f22f66822607))
(fp_line (start 2.53 -1.12) (end 2.53 1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ee62b1d-e6c9-4f8e-9675-2f485030060e))
(fp_line (start 5.93 -1.12) (end 1.69 -1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a059d1ff-04f0-48d5-af02-db365fa22588))
(fp_line (start 5.93 1.12) (end 5.93 -1.12)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 378c201b-e2e9-4fd9-a1b5-6ea30dbfc106))
(fp_line (start 6.58 0) (end 5.93 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3d12988b-f2b4-4a98-a800-398e118ee1eb))
(fp_line (start -1.05 -1.25) (end -1.05 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1405d32c-afc6-4a78-a4db-dc01c80604cb))
(fp_line (start -1.05 1.25) (end 8.67 1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9030045d-f83b-46ab-ae4c-ffbc51192670))
(fp_line (start 8.67 -1.25) (end -1.05 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 762f0471-dfe6-4a22-9446-0cdda56a3ecd))
(fp_line (start 8.67 1.25) (end 8.67 -1.25)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 070b5cbf-44c8-4709-be9d-ac077e7f7b99))
(fp_line (start 0 0) (end 1.81 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ad9ff481-6dd6-477a-adb9-c2fbe95c8e45))
(fp_line (start 1.81 -1) (end 1.81 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6f3db9d-d691-4146-a04c-58c3989f5cdf))
(fp_line (start 1.81 1) (end 5.81 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e4602a0e-76d3-484f-b4d1-dbb384a63730))
(fp_line (start 2.31 -1) (end 2.31 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f083ff61-e643-4778-a1fc-6c7494245681))
(fp_line (start 2.41 -1) (end 2.41 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b545dc9c-62e1-4e59-8c91-68d227664cb9))
(fp_line (start 2.51 -1) (end 2.51 1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 54f0ac2a-d7e1-4020-a50a-18a4c9ea92d3))
(fp_line (start 5.81 -1) (end 1.81 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6259771e-e8fd-4005-8e47-f1661665356a))
(fp_line (start 5.81 1) (end 5.81 -1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7bcfba5-65d2-4557-963b-8f02ced9260d))
(fp_line (start 7.62 0) (end 5.81 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0aba188-5a22-4637-bd06-c8a06f3a2814))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 55 "Net-(D1-K)") (pinfunction "K") (pintype "passive") (tstamp ce7a1e98-070c-47e6-9727-55d2704e7737))
(pad "2" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 56 "Net-(D1-A)") (pinfunction "A") (pintype "passive") (tstamp cf51e33d-1f6a-44cf-937e-29b982ad08ba))
(model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-35_SOD27_P7.62mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 09fcb7f1-a28e-48fb-b61f-8f3b99f85d76)
(at 195.1264 120.2436 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/efb92894-19b0-4263-a26c-e0ca3265e935")
(attr through_hole)
(fp_text reference "R5" (at 4.6192 -0.0254) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a1784c3c-9636-4d51-9ba2-46293351cbf9)
)
(fp_text value "470R" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a2db212b-2447-4e25-bb83-14250483adec)
)
(fp_text user "${REFERENCE}" (at 1.27 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2c4ba8f7-46a6-4ae8-b3d5-1406ad3c05e9)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a327d96-4f56-4355-b006-e453b4398a75))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 34e98e8c-82c3-423b-8885-6689ed5860f7))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1b6aef26-db37-4595-9a29-aa723e5efb50))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 4a78a745-5a49-4d03-803d-591a6e1081a4))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5003e168-d568-44bd-a260-4695212239c2))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 37d36514-4809-4b9b-9128-e683211b405c))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dffdff00-14ef-4f5a-b426-8d4fcba1e031))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 01157a21-5338-42f0-9223-fb44f261b435))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 9ca8f471-7528-436c-91c4-094841d79da9))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 59 "Net-(Q2-E)") (pintype "passive") (tstamp 0da201b0-1371-4d7d-8084-8ebcf0eb8fed))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu")
(tstamp 0aea0bc5-5075-426b-b8d8-5ccbf36738a5)
(at 131.064 107.7722 90)
(descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Manufacturer part#" "A 08-LC-TT")
(property "Manufacturer2 part#" "NE555P")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "digikey")
(property "Vendor part#" "AE9986-ND")
(property "Vendor2 part#" "296-NE555P-ND")
(property "ki_description" "Precision Timers, 555 compatible, PDIP-8")
(property "ki_keywords" "single timer 555")
(path "/dc5aa1cf-4acd-4667-9b74-765e02b96d51")
(attr through_hole)
(fp_text reference "IC4" (at 0.7112 -2.3876 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2acacf9d-e586-4747-9378-eab954026bd1)
)
(fp_text value "NE555P" (at 3.81 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b152dc81-b542-441c-a3e4-d62bea52b303)
)
(fp_text user "${REFERENCE}" (at 5.0038 3.7592 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b808ae77-6ed2-4777-9649-b11839905c34)
)
(fp_line (start 1.16 -1.33) (end 1.16 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e516fcd-ad87-4470-8826-2c1b3a3cfe56))
(fp_line (start 1.16 8.95) (end 6.46 8.95)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a83ec24-3946-4e21-b529-957b08be5e7f))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45c00085-66fc-4ad9-ae17-1534da4f6e40))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b02ac13-77b6-4e6f-b5b9-b00ff871dd3c))
(fp_line (start 6.46 8.95) (end 6.46 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9c7f8e35-b85e-4cfd-b647-4f007c9aed6a))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49138e80-c70a-4f78-bd09-118bd1a4dd39))
(fp_line (start -1.1 -1.55) (end -1.1 9.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a7ccd623-d1f5-44e6-a5a3-9eca6d6ebd4e))
(fp_line (start -1.1 9.15) (end 8.7 9.15)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e42cb0c5-b5b6-42a5-86fd-67fb6e9338d4))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f0e33a47-0155-4fc9-837d-4b12f2d9b9e8))
(fp_line (start 8.7 9.15) (end 8.7 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5a7670c-90af-4ac5-9eb7-52eae5093918))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7fcdc4b7-ba12-4fde-89a5-f3b9df41cea7))
(fp_line (start 0.635 8.89) (end 0.635 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 883ebcee-14a6-4b86-9704-94959b6b58e0))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 40c262b6-dcf6-40d6-9a7d-5f9f78188386))
(fp_line (start 6.985 -1.27) (end 6.985 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b1d3b3f-ecfb-4938-87cf-2f10d1a12c62))
(fp_line (start 6.985 8.89) (end 0.635 8.89)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1e8760c-95c2-467e-a8fe-48375d3f6156))
(pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4240d82e-8f17-498a-9aad-0077b881ebfb))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 44 "~{HS}") (pinfunction "TR") (pintype "input") (tstamp 15d6026a-b2e7-46e4-b342-30a90a303d1d))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 65 "Net-(IC4-Q)") (pinfunction "Q") (pintype "output") (tstamp a3d9559e-2f14-475f-b3ab-30f965833d44))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 40 "GM0") (pinfunction "R") (pintype "input") (tstamp 8c5a149a-4990-40f9-9a0d-3796cafbc06f))
(pad "5" thru_hole oval (at 7.62 7.62 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 62 "Net-(IC4-CV)") (pinfunction "CV") (pintype "input") (tstamp a6042c2d-134a-4d1a-83f2-30c61ad3e86b))
(pad "6" thru_hole oval (at 7.62 5.08 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 63 "Net-(IC4-DIS)") (pinfunction "THR") (pintype "input") (tstamp e05b5961-4ed3-4724-9ecd-4bf993906e9c))
(pad "7" thru_hole oval (at 7.62 2.54 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 63 "Net-(IC4-DIS)") (pinfunction "DIS") (pintype "input") (tstamp 97df47bf-a50e-415a-bc12-ec9680f62edd))
(pad "8" thru_hole oval (at 7.62 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp dae6c475-c7e2-4061-bf37-3b708272281c))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_THT:TO-92_Inline" (layer "F.Cu")
(tstamp 0f0e583a-0df4-43db-aefd-effaf2cb808c)
(at 153.4116 100.4062 -90)
(descr "TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf)")
(tags "to-92 sc-43 sc-43a sot54 PA33 transistor")
(property "Manufacturer part#" "PN2222A PBFREE")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "digikey")
(property "Vendor part#" "1514-PN2222APBFREE-ND")
(property "ki_description" "NPN transistor, emitter/collector/base")
(property "ki_keywords" "transistor NPN")
(path "/2d92f1ad-007c-4c79-b427-fa084fe09442")
(attr through_hole)
(fp_text reference "Q3" (at -0.8128 -3.4588 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0399eeb5-9e7d-47f0-a777-3a4d0c4a6fe9)
)
(fp_text value "2N3904" (at 1.27 2.79 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd698def-6fe1-4322-9b39-0907793d6bf7)
)
(fp_text user "${REFERENCE}" (at 1.27 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f5fa6aac-fe34-49e3-b3b8-a163a6638be2)
)
(fp_line (start -0.53 1.85) (end 3.07 1.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fac34fd8-f74c-47b2-9be2-a927427d6c24))
(fp_arc (start -0.568478 1.838478) (mid -1.132087 -0.994977) (end 1.27 -2.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24a36486-ad85-4b6e-93a3-597f9c37f783))
(fp_arc (start 1.27 -2.6) (mid 3.672087 -0.994977) (end 3.108478 1.838478)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 87da997c-60f5-4e0f-aaab-97308b1a20cb))
(fp_line (start -1.46 -2.73) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0f8f09d8-6566-4aaf-9402-4091167b3ae2))
(fp_line (start -1.46 -2.73) (end 4 -2.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38c4f879-53bf-4023-a436-ceba3400aef7))
(fp_line (start 4 2.01) (end -1.46 2.01)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp be10c8b6-1ae8-48b8-a334-9ae430b7ddbb))
(fp_line (start 4 2.01) (end 4 -2.73)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eaa0e9e7-c111-419b-a915-0b82be57ea1f))
(fp_line (start -0.5 1.75) (end 3 1.75)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0989b71e-669c-44a7-86b8-abdbd48bf57b))
(fp_arc (start -0.483625 1.753625) (mid -1.021221 -0.949055) (end 1.27 -2.48)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2fc97d94-469c-4965-a60f-f99dabdc832a))
(fp_arc (start 1.27 -2.48) (mid 3.561221 -0.949055) (end 3.023625 1.753625)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f13ceff2-576f-4454-96ad-bbf717d81c7f))
(pad "1" thru_hole rect (at 0 0 270) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "E") (pintype "passive") (tstamp 217c1ca9-49cb-468a-9e26-966eb8fd8d76))
(pad "2" thru_hole oval (at 1.27 0 270) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 66 "Net-(Q3-C)") (pinfunction "C") (pintype "passive") (tstamp a61fb004-caac-458b-bd44-63afbc7878d0))
(pad "3" thru_hole oval (at 2.54 0 270) (size 1.05 1.5) (drill 0.75) (layers "*.Cu" "*.Mask")
(net 64 "Net-(D2-A)") (pinfunction "B") (pintype "passive") (tstamp ecf08af7-b1b1-4c6d-a92b-21553120f392))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92_Inline.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 11abc53c-f9f3-42f2-a85e-900fc17f862c)
(at 127.7112 102.264 90)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Manufacturer part#" "CF14JT9K10")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "digikey")
(property "Vendor part#" "CF14JT9K10CT-ND")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/ff783865-5883-474a-b044-a080cd88dc69")
(attr through_hole)
(fp_text reference "R9" (at 3.0516 -2.4638 90) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e10c4b21-8d19-4772-a66b-d2b2a98f5761)
)
(fp_text value "9.1k" (at 1.27 2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ba7828ea-01d8-493a-94dd-4e941f7459df)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fefa854f-37a7-4f05-8d01-37f0d9bd63c8)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 988a4d24-7f9c-4063-8182-50cfd4536083))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp ccdb0c54-4342-479a-9908-1046050dd5d5))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e9b85f3-64f4-4df9-9429-5d27015abee7))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c11c8072-23e8-4e10-833d-8be7084fadf1))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 121350b4-9ca0-47a3-b317-ece82470ae61))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c4a38bd1-fa67-4011-9c89-2b5c62358702))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp caceed1f-7580-454f-8d32-1803d84cd664))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 27621e48-ae63-4a11-b261-330b625e40cb))
(pad "1" thru_hole circle (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 63 "Net-(IC4-DIS)") (pintype "passive") (tstamp 0db1f5c0-ffc8-46f9-8546-3c539b19091c))
(pad "2" thru_hole oval (at 2.54 0 90) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pintype "passive") (tstamp 6aa39585-9a93-490e-a431-ae836edacab1))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu")
(tstamp 11ef83d3-4c10-4d37-b9a4-3995f4aa76f4)
(at 169.545 111.7804)
(descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)")
(tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(path "/139a3465-13fc-4996-a6a9-4cddb57f157c")
(attr through_hole)
(fp_text reference "IC3" (at 3.81 -2.33) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8df940a-12fa-4d0f-b2be-5741329d9ce7)
)
(fp_text value "MC1372" (at 3.81 17.57) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 094f50bd-073b-42f4-866d-dc1043eb3cd8)
)
(fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 634cf01d-816d-4dc7-a0cf-1c1729498ee3)
)
(fp_line (start 1.16 -1.33) (end 1.16 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a84e0779-1043-469f-853e-7125c4f34da6))
(fp_line (start 1.16 16.57) (end 6.46 16.57)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df54a708-cebc-4b89-b1ac-8f52fae90adc))
(fp_line (start 2.81 -1.33) (end 1.16 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 801c4ee5-a44e-4095-a720-840c9756963a))
(fp_line (start 6.46 -1.33) (end 4.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa73a2b4-a6b5-4c76-bc35-4230b47b6af1))
(fp_line (start 6.46 16.57) (end 6.46 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 38f88360-0149-4cc1-a955-bc94b166bb47))
(fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6f949e7-b828-4dd9-9e12-e665ff62e1f7))
(fp_line (start -1.1 -1.55) (end -1.1 16.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1ad895ea-121e-467c-9e24-9fdceb3232e4))
(fp_line (start -1.1 16.8) (end 8.7 16.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 23996b63-2171-4da8-8155-01a9294a2961))
(fp_line (start 8.7 -1.55) (end -1.1 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 57bdb795-677c-44be-a39b-048c7420487f))
(fp_line (start 8.7 16.8) (end 8.7 -1.55)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70240b6f-f55f-423a-92e4-d87520155fe4))
(fp_line (start 0.635 -0.27) (end 1.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23815a3a-54d6-419f-96a8-dfa810deb7e0))
(fp_line (start 0.635 16.51) (end 0.635 -0.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e4a027f-75cf-4b89-bd97-7ed7ceaf06d7))
(fp_line (start 1.635 -1.27) (end 6.985 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66aafcf4-5655-47b1-95f6-acd5e9bc555f))
(fp_line (start 6.985 -1.27) (end 6.985 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4497fd92-1cd0-482f-b89a-ddbafb598824))
(fp_line (start 6.985 16.51) (end 0.635 16.51)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0cdf1d6b-59cc-4082-9c77-1f2ed121cf42))
(pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 46 "unconnected-(IC3-CLK-Pad1)") (pinfunction "CLK") (pintype "output+no_connect") (tstamp b7085924-f167-4990-9264-addb28060eab))
(pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 41 "VCLK") (pinfunction "OSC") (pintype "input") (tstamp 03ebc48e-02f4-434a-986d-ac2577b01393))
(pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 47 "unconnected-(IC3-DCadj-Pad3)") (pinfunction "DCadj") (pintype "input+no_connect") (tstamp 1924d13e-a45e-4ef1-8ad9-c664e60ba1ec))
(pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 52efb242-df4b-407a-b619-5fdb9a91b589))
(pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 21 "phiB") (pinfunction "COLb") (pintype "input") (tstamp 3404e014-d8f4-45cf-a7e2-7c2272ddac0c))
(pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 20 "CHB") (pinfunction "COLref") (pintype "input") (tstamp 08c674b9-c919-44af-a6cf-710c9e520bdc))
(pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 22 "phiA") (pinfunction "COLa") (pintype "input") (tstamp 57593d33-f297-4cee-86b7-92ffc5c5d57e))
(pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 53 "Net-(IC3-ChrMod)") (pinfunction "ChrMod") (pintype "output") (tstamp e1776e22-bf77-4c23-82f3-5d64c8c841c7))
(pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 38 "LUM") (pinfunction "Y") (pintype "input") (tstamp d2ba8b01-6461-4f49-9a44-818ae98e714a))
(pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 48 "Net-(IC3-ChrIn)") (pinfunction "ChrIn") (pintype "input") (tstamp 59062d24-398f-4789-a1dd-82c96def6d6f))
(pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VCC") (pintype "passive") (tstamp 4a753773-f1d1-4709-93ee-5cf515809909))
(pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 57 "Composite") (pinfunction "ModRf") (pintype "output") (tstamp 7c4ae8f0-e7f1-4f92-95f0-19c6d7d57d13))
(pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 55 "Net-(D1-K)") (pinfunction "RFTank1") (pintype "passive") (tstamp 7d05c525-4799-4024-bc5a-32a1a54fe84b))
(pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 56 "Net-(D1-A)") (pinfunction "RFTank2") (pintype "passive") (tstamp 22a589ff-4124-42ff-af42-9abe9e635ebb))
(model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 17f1b6b2-9bb1-48e2-834d-a97ea266f667)
(at 154.813 107.0356 180)
(descr "Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 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 Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm")
(property "Manufacturer part#" "Stackpole Electronics Inc")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "digikey")
(property "Vendor part#" "CF14JT4K70CT-ND ")
(property "ki_description" "Resistor, small symbol")
(property "ki_keywords" "R resistor")
(path "/8b1c04dc-522c-4f4c-bbd8-ba67b251fb00")
(attr through_hole)
(fp_text reference "R8" (at -2.54 -0.3048) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6bda3ad6-bcb0-4f3a-92b5-861f7594c77f)
)
(fp_text value "4.7K" (at 1.27 2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d79ab05-272d-4c56-a97e-610b0f80ce05)
)
(fp_text user "${REFERENCE}" (at 1.27 -2.37) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96b0b919-9e36-4fe4-857b-2866a98d8f06)
)
(fp_line (start 1.37 0) (end 1.44 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96746aa3-5687-423a-911c-7229157df6e5))
(fp_circle (center 0 0) (end 1.37 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 692f4535-83fc-4d4a-91a5-288edf95d84f))
(fp_line (start -1.5 -1.5) (end -1.5 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01338787-4e18-4a9b-89f0-9a8abea15765))
(fp_line (start -1.5 1.5) (end 3.59 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d2078d20-5655-476c-99d5-2e4b6350f58b))
(fp_line (start 3.59 -1.5) (end -1.5 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 025bcab8-1cdd-46d5-bfc2-ef8ded8cd7ba))
(fp_line (start 3.59 1.5) (end 3.59 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 505213b8-1337-483c-8955-a93b28cc94a4))
(fp_line (start 0 0) (end 2.54 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19910a3d-0d64-4f05-ba42-b497ae4e5631))
(fp_circle (center 0 0) (end 1.25 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 51e639fd-8f3b-48de-aea4-fcbe90221f14))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 64 "Net-(D2-A)") (pintype "passive") (tstamp 74dd37c5-492e-457c-bbf9-4b4302efd53b))
(pad "2" thru_hole oval (at 2.54 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 65 "Net-(IC4-Q)") (pintype "passive") (tstamp cdd35dc0-a334-4fcb-8b55-120993c3b06a))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:C_Rect_L4.0mm_W2.5mm_P2.50mm" (layer "F.Cu")
(tstamp 28eaa8a7-dc48-4cc0-a96a-69fc183749df)
(at 142.3616 104.013)
(descr "C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor")
(tags "C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor")
(property "Manufacturer part#" "C315C102K1R5TA7301")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "digikey")
(property "Vendor part#" "399-13913-1-ND")
(property "ki_description" "Unpolarized capacitor, small symbol")
(property "ki_keywords" "capacitor cap")
(path "/470d655b-0991-4612-a003-0900548dd2a0")
(attr through_hole)
(fp_text reference "C7" (at -1.2392 -1.8034) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b7c7397c-798d-411d-9c5e-e5b05547450a)
)
(fp_text value ".001uF" (at 1.25 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 75391603-15e8-455a-94be-0f504824c0d5)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp e4149df7-53e2-4fb8-b370-b1157d3758dc)
)
(fp_line (start -0.87 -1.37) (end -0.87 -0.665)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11c533fc-1368-49b3-9617-b42c8fb8a51f))
(fp_line (start -0.87 -1.37) (end 3.37 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c310255a-3da5-4c26-90b2-e680530e524b))
(fp_line (start -0.87 0.665) (end -0.87 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e5b952d-55a3-4011-a708-437c11d54f4d))
(fp_line (start -0.87 1.37) (end 3.37 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e81c767d-d280-4488-98f7-50f2ad126c60))
(fp_line (start 3.37 -1.37) (end 3.37 -0.665)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43df8918-82f4-41d0-86ec-9f0b549f67b6))
(fp_line (start 3.37 0.665) (end 3.37 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8a031cc-6866-4f40-9d47-3c7cb79ddb1d))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0560b841-7fe0-4f7d-80cd-0f0a9427c95e))
(fp_line (start -1.05 1.5) (end 3.55 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cf3c9e1f-cfb6-4dff-ac8d-e97b9458bde7))
(fp_line (start 3.55 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a68791ba-a232-4afc-8282-447780dd2da5))
(fp_line (start 3.55 1.5) (end 3.55 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f622cda-f660-48d4-8f19-c53b8d5d74dc))
(fp_line (start -0.75 -1.25) (end -0.75 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 56acba3d-302a-49a7-b71c-c0c9bf702dab))
(fp_line (start -0.75 1.25) (end 3.25 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d4cf7709-be1d-475c-a75c-a734cea71250))
(fp_line (start 3.25 -1.25) (end -0.75 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a605c913-12fe-46ad-845d-d885d522ab72))
(fp_line (start 3.25 1.25) (end 3.25 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95631603-b9f7-4b5c-827c-50852e9316a1))
(pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 63 "Net-(IC4-DIS)") (pintype "passive") (tstamp f4a2d257-2482-4399-8ccf-9551c23b3cca))
(pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 9de8e6f3-0125-446c-81d6-1ed7a960d51c))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L4.0mm_W2.5mm_P2.50mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D6.3mm_P2.50mm" (layer "F.Cu")
(tstamp 2f8fe378-e8d5-41f2-8bf8-1a3dfc939101)
(at 120.6296 104.0511 180)
(descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor")
(property "DigiKey" "732-8598-1-ND")
(property "Sheetfile" "DragonNTSC.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor, small symbol")
(property "ki_keywords" "cap capacitor")
(path "/9afdd6fd-9f32-4059-8572-00f107d2c48d")
(attr through_hole)
(fp_text reference "C1" (at 1.25 -4.4) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c7d3fbb-6e69-44dd-87b7-4ebb9716cc9f)
)
(fp_text value "100uF" (at 1.25 4.4) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1eabd773-999b-47b9-952b-6b6442f19820)
)
(fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 345eb346-777a-411c-833b-4908687f0f67)
)
(fp_line (start -2.250241 -1.839) (end -1.620241 -1.839)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4aa95f4-a647-48f3-a8d2-a9f05f159b6a))
(fp_line (start -1.935241 -2.154) (end -1.935241 -1.524)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b090c49a-7f34-4878-b6c6-019eefe61184))
(fp_line (start 1.25 -3.23) (end 1.25 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 207d3743-1c43-4c8e-86a0-8b269e10d6da))
(fp_line (start 1.29 -3.23) (end 1.29 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7603eeb-9160-42f6-82c6-9e0232b860e3))
(fp_line (start 1.33 -3.23) (end 1.33 3.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp af3f0b99-5e4e-472b-964f-ac95e31f4fa8))
(fp_line (start 1.37 -3.228) (end 1.37 3.228)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 825c9817-eba6-4f92-affa-578e7a49a204))
(fp_line (start 1.41 -3.227) (end 1.41 3.227)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28d90fa5-6071-47cf-8174-060f44493141))
(fp_line (start 1.45 -3.224) (end 1.45 3.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6850233-1356-4f04-bc60-4e38521e9b21))
(fp_line (start 1.49 -3.222) (end 1.49 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58d04fa2-4677-4a88-a1ab-50df5eef9331))
(fp_line (start 1.49 1.04) (end 1.49 3.222)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d88a3161-46af-451e-a40c-86f01fe4df32))
(fp_line (start 1.53 -3.218) (end 1.53 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f5ce7917-4695-46ee-b1e5-2d0785c3f19d))
(fp_line (start 1.53 1.04) (end 1.53 3.218)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72a58c5f-0c0b-41e5-8c4d-c8a3342ae3e4))
(fp_line (start 1.57 -3.215) (end 1.57 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e398c955-03c3-4f8a-8c80-99e01920e362))
(fp_line (start 1.57 1.04) (end 1.57 3.215)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13658dfa-73ad-4e25-a145-5d2bddc60e8f))
(fp_line (start 1.61 -3.211) (end 1.61 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d340740-aabe-4f24-9074-238892265507))
(fp_line (start 1.61 1.04) (end 1.61 3.211)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bff766ef-119d-40bc-8aa9-2b9126467d78))
(fp_line (start 1.65 -3.206) (end 1.65 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a42d117d-6e6d-4314-b8cb-e2b3f301cda0))
(fp_line (start 1.65 1.04) (end 1.65 3.206)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp afc3bd51-f87f-4543-b58b-7940f1e93aa6))
(fp_line (start 1.69 -3.201) (end 1.69 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5018bf1-fe5c-4035-9e0c-1a72cf1231a7))
(fp_line (start 1.69 1.04) (end 1.69 3.201)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ed2f5cd-a4f2-4604-bc37-f21542c36a4c))
(fp_line (start 1.73 -3.195) (end 1.73 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 756ae692-2c92-4e6a-8787-8929a7b14f2f))
(fp_line (start 1.73 1.04) (end 1.73 3.195)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d89a08a-96ad-42ef-be55-d1e41b1e95b8))
(fp_line (start 1.77 -3.189) (end 1.77 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6239a938-b073-4ca5-a2ec-06f0e86e25e4))
(fp_line (start 1.77 1.04) (end 1.77 3.189)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e782fee-db6e-466f-a03d-0d20c1def584))
(fp_line (start 1.81 -3.182) (end 1.81 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea248690-7151-4c5b-81bc-39c7d4dff2a9))
(fp_line (start 1.81 1.04) (end 1.81 3.182)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f93c1ff-0ffc-4e8d-8f85-948872212da6))
(fp_line (start 1.85 -3.175) (end 1.85 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9278a8f-1161-44c1-acdb-edc63c5bd848))
(fp_line (start 1.85 1.04) (end 1.85 3.175)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 754ca087-5516-43df-bcd2-9f1506c36802))
(fp_line (start 1.89 -3.167) (end 1.89 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f9aac99-5b5e-44eb-93f6-c3bf085db891))
(fp_line (start 1.89 1.04) (end 1.89 3.167)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 20d489c3-cbc2-44cb-a98c-f2b32b21c060))
(fp_line (start 1.93 -3.159) (end 1.93 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29075172-b18c-432e-a00c-6986e68cced6))
(fp_line (start 1.93 1.04) (end 1.93 3.159)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 213b9c08-98c8-4c4b-935b-b6f49fc0db45))
(fp_line (start 1.971 -3.15) (end 1.971 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e37ede0-b5db-437a-ba80-3ba61f1e5ff8))
(fp_line (start 1.971 1.04) (end 1.971 3.15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5501f832-d4ec-4068-aff1-ddcade9baf80))
(fp_line (start 2.011 -3.141) (end 2.011 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e5de708-b3c0-436b-a507-e92c8b4502f3))
(fp_line (start 2.011 1.04) (end 2.011 3.141)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 609d5cf7-bb9c-44e4-b25a-c21685bfd0f5))
(fp_line (start 2.051 -3.131) (end 2.051 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a02ef929-bc77-4864-858c-b4e58bda0c34))
(fp_line (start 2.051 1.04) (end 2.051 3.131)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bfa272a-c844-4b5d-93c6-71fdf317abe8))
(fp_line (start 2.091 -3.121) (end 2.091 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3615edc8-968b-427b-9ef4-d5693d460d55))
(fp_line (start 2.091 1.04) (end 2.091 3.121)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa55215f-8fd5-432e-abf4-aae87ac94d6b))
(fp_line (start 2.131 -3.11) (end 2.131 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96026466-eee3-4673-96a0-fb43981afbe9))
(fp_line (start 2.131 1.04) (end 2.131 3.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fccb398-2554-4590-8692-944d0e74dfa6))
(fp_line (start 2.171 -3.098) (end 2.171 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d1db941-d586-4406-9ec3-f5c664718742))
(fp_line (start 2.171 1.04) (end 2.171 3.098)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cd50ecc-d50f-4939-ae23-cb1a3e35b765))
(fp_line (start 2.211 -3.086) (end 2.211 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c02e2c84-dfc2-4fe2-ac09-52f22cb3917f))
(fp_line (start 2.211 1.04) (end 2.211 3.086)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2de88bb-2ba0-4888-8486-1a8324be5dc5))
(fp_line (start 2.251 -3.074) (end 2.251 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9eaa831-c42b-4c86-81a9-683b295d96cd))
(fp_line (start 2.251 1.04) (end 2.251 3.074)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e61f698a-e3f7-4919-bcb4-bac0913d0504))
(fp_line (start 2.291 -3.061) (end 2.291 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00df2133-9a18-41ff-80ae-e1aa633cd015))
(fp_line (start 2.291 1.04) (end 2.291 3.061)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6695eaaa-3c22-4246-8b4a-6028857879a3))
(fp_line (start 2.331 -3.047) (end 2.331 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1284eb5e-3d7a-4092-8d94-df3733148169))
(fp_line (start 2.331 1.04) (end 2.331 3.047)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a40397c8-915c-4e03-add0-62cb4221758b))
(fp_line (start 2.371 -3.033) (end 2.371 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aabf65bf-319e-4672-a7ec-b27d9032e237))
(fp_line (start 2.371 1.04) (end 2.371 3.033)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ae31c5b-bb3f-4c32-88d8-9111620590b3))
(fp_line (start 2.411 -3.018) (end 2.411 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 96ddf0ec-48ed-4b0e-ae6b-ac3abc8ca9dd))
(fp_line (start 2.411 1.04) (end 2.411 3.018)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9144b578-5855-4cdb-8716-893cff577b0e))
(fp_line (start 2.451 -3.002) (end 2.451 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32627ffc-7b59-4324-8653-3ec7ea4e63d4))
(fp_line (start 2.451 1.04) (end 2.451 3.002)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01e2902b-e600-415b-8ed3-cba02d931fe9))
(fp_line (start 2.491 -2.986) (end 2.491 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ada4107-4d3a-4f39-9789-48c8d82a5d4a))
(fp_line (start 2.491 1.04) (end 2.491 2.986)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8190eedd-fcf7-4e7b-9384-97a23f05d9d4))
(fp_line (start 2.531 -2.97) (end 2.531 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3016c04f-871f-4bc7-8eb0-42fd5a9e7ff3))
(fp_line (start 2.531 1.04) (end 2.531 2.97)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2adcb395-49fb-4937-95d3-fa7618c19f30))
(fp_line (start 2.571 -2.952) (end 2.571 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4842b6a8-81e5-4960-9cac-e5f908b17083))
(fp_line (start 2.571 1.04) (end 2.571 2.952)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp baf6f209-f531-4ae1-aef4-352f776b2ad9))
(fp_line (start 2.611 -2.934) (end 2.611 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77153567-20cc-4701-925a-0f4b97a90bcb))
(fp_line (start 2.611 1.04) (end 2.611 2.934)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 817da932-28e3-4abd-a524-012c679de642))
(fp_line (start 2.651 -2.916) (end 2.651 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05df051b-d488-4e95-93a6-a6e5d2d40e90))
(fp_line (start 2.651 1.04) (end 2.651 2.916)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dc86b81-233d-4cbe-9a26-84929a9eb87b))
(fp_line (start 2.691 -2.896) (end 2.691 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bce9aec0-aa70-4dfc-a218-306232680672))
(fp_line (start 2.691 1.04) (end 2.691 2.896)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2020b47f-02e7-4dba-8d4e-febb9ad27dc7))
(fp_line (start 2.731 -2.876) (end 2.731 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42f28546-2705-4cb0-af27-bbb77b61ab36))
(fp_line (start 2.731 1.04) (end 2.731 2.876)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c6f6e11e-f86b-43b1-bdd2-c9d187c41f99))
(fp_line (start 2.771 -2.856) (end 2.771 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ffc2db6d-bea9-4579-b0ce-ce9d2a8485f1))
(fp_line (start 2.771 1.04) (end 2.771 2.856)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc8ed55f-e69e-46fe-b50d-ca922670b0e0))
(fp_line (start 2.811 -2.834) (end 2.811 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a4c45685-cae0-4421-9368-0266cc7ae8da))
(fp_line (start 2.811 1.04) (end 2.811 2.834)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a28c1b4-c172-4e77-aabc-110a2f965c1a))
(fp_line (start 2.851 -2.812) (end 2.851 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 744c16cf-93d6-4567-9ecc-c925acda616d))
(fp_line (start 2.851 1.04) (end 2.851 2.812)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dde82c31-f2c7-4eca-806e-bfe82feff9ce))
(fp_line (start 2.891 -2.79) (end 2.891 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a7377ebd-abff-47ec-b20c-4309bccecf65))
(fp_line (start 2.891 1.04) (end 2.891 2.79)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 632eeab0-590a-42d6-9f25-0c0a6b6a8d5c))
(fp_line (start 2.931 -2.766) (end 2.931 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ee28e00-f55c-4bd1-bc79-773441d79e7f))
(fp_line (start 2.931 1.04) (end 2.931 2.766)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3a04c3a-87d7-42f0-a5f3-64ec1b9e962d))
(fp_line (start 2.971 -2.742) (end 2.971 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 32e6e9ca-18f6-4014-a66c-d7747b2fc2ca))
(fp_line (start 2.971 1.04) (end 2.971 2.742)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca941aa2-e8d8-4004-9b98-51e422ad4808))
(fp_line (start 3.011 -2.716) (end 3.011 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 374393e2-eacd-4b5b-9a20-cdf24ac62e97))
(fp_line (start 3.011 1.04) (end 3.011 2.716)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a894881-0382-4a1d-ba09-a5cc90197cd4))
(fp_line (start 3.051 -2.69) (end 3.051 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e43cdb55-b918-48eb-b6a0-a2642ded2aa1))
(fp_line (start 3.051 1.04) (end 3.051 2.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 743d0a0e-58ff-4fcd-a1fd-280abfed5112))
(fp_line (start 3.091 -2.664) (end 3.091 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f80941b6-0cb5-49ce-8558-009b86c050a1))
(fp_line (start 3.091 1.04) (end 3.091 2.664)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 06bdfb8e-9159-454b-81fe-81b460c88b59))
(fp_line (start 3.131 -2.636) (end 3.131 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 697b207b-a8d9-4f35-bab8-a41b137db6a8))
(fp_line (start 3.131 1.04) (end 3.131 2.636)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1f5c14d0-97a1-4db7-9617-319d3f0cf3f9))
(fp_line (start 3.171 -2.607) (end 3.171 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 644af656-c45f-4e06-8ce4-f9a98397242f))
(fp_line (start 3.171 1.04) (end 3.171 2.607)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3e1fa51-b760-41db-b9c3-a6f8c7e19902))
(fp_line (start 3.211 -2.578) (end 3.211 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2ce59cd9-f24b-46cf-81dd-39fa4e0eb147))
(fp_line (start 3.211 1.04) (end 3.211 2.578)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9fb3378e-e41a-436f-93ee-134bd0634fa4))
(fp_line (start 3.251 -2.548) (end 3.251 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 086c057e-dbcf-4c0c-a4a8-60d8cb219b28))
(fp_line (start 3.251 1.04) (end 3.251 2.548)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 177875b5-edf5-4d5a-8b72-de01e5ca7abe))
(fp_line (start 3.291 -2.516) (end 3.291 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51d10fcc-e5b7-4429-ac3f-098f084bb9c4))
(fp_line (start 3.291 1.04) (end 3.291 2.516)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0c4c6e58-ee25-42e8-bf50-e32bc992d403))
(fp_line (start 3.331 -2.484) (end 3.331 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27250c7a-cb01-4301-8661-2625dc935e4d))
(fp_line (start 3.331 1.04) (end 3.331 2.484)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62c8f54e-4451-493d-bd8a-5c76649ad18d))
(fp_line (start 3.371 -2.45) (end 3.371 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp faf4e797-ea9c-43fa-8ceb-4f9b0ce93bb9))
(fp_line (start 3.371 1.04) (end 3.371 2.45)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp caa1e46b-d7d6-43ea-906d-d6b09c40e7da))
(fp_line (start 3.411 -2.416) (end 3.411 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 942eee6a-d2b5-4078-9311-952f4d34880c))
(fp_line (start 3.411 1.04) (end 3.411 2.416)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 331fe5ee-6f3b-4217-9c00-e924105e551c))
(fp_line (start 3.451 -2.38) (end 3.451 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1c765129-8405-49bf-b811-bf9aace13fbc))
(fp_line (start 3.451 1.04) (end 3.451 2.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8466035a-6788-4ca6-ad38-f732e84b7854))
(fp_line (start 3.491 -2.343) (end 3.491 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5190f4da-a821-4ec7-bc0d-936e3c6c6a2a))
(fp_line (start 3.491 1.04) (end 3.491 2.343)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f3cda45d-4d11-4ec8-8b4e-9321a1ef0723))
(fp_line (start 3.531 -2.305) (end 3.531 -1.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0de1de6-6a03-4f06-9eb2-e3794fb51466))
(fp_line (start 3.531 1.04) (end 3.531 2.305)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8415e699-ed8b-40ba-b5d2-b03bb68f7f33))
(fp_line (start 3.571 -2.265) (end 3.571 2.265)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b77fff43-a80f-41e1-9d73-0a5a54516d57))
(fp_line (start 3.611 -2.224) (end 3.611 2.224)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4cbd1ffd-9d44-4ec1-b32a-f0e1dce8968a))
(fp_line (start 3.651 -2.182) (end 3.651 2.182)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 46e74626-9a3c-4bcb-b27c-1fe9a89f78fe))
(fp_line (start 3.691 -2.137) (end 3.691 2.137)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 62550058-70fa-4422-905f-895af7f3aff7))
(fp_line (start 3.731 -2.092) (end 3.731 2.092)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c286f7c8-d544-43d6-92fd-fc1788f39899))
(fp_line (start 3.771 -2.044) (end 3.771 2.044)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90fc17e9-44e4-4060-be86-5ff9d4295b3a))
(fp_line (start 3.811 -1.995) (end 3.811 1.995)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7695fa83-ea70-4cf3-91e6-6933a1294a63))
(fp_line (start 3.851 -1.944) (end 3.851 1.944)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8cb0924f-5ceb-4707-8545-08681aa32af4))
(fp_line (start 3.891 -1.89) (end 3.891 1.89)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f2581d1-7d20-4907-9b37-cce5bb7b1ff8))
(fp_line (start 3.931 -1.834) (end 3.931 1.834)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0af1a99-8450-416e-a36b-89ecafa17230))
(fp_line (start 3.971 -1.776) (end 3.971 1.776)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b42b64aa-c7c8-4d9c-867d-cbeb18686791))
(fp_line (start 4.011 -1.714) (end 4.011 1.714)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81697a77-ac4a-4ed7-8549-9b64611fedd0))
(fp_line (start 4.051 -1.65) (end 4.051 1.65)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42659c68-8a2b-4921-8684-8c8be0213511))
(fp_line (start 4.091 -1.581) (end 4.091 1.581)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70f461ad-5c9f-46e9-80cf-e2cbcdf54832))
(fp_line (start 4.131 -1.509) (end 4.131 1.509)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 63ad77d1-ca36-4bc9-986d-401a11400fe6))
(fp_line (start 4.171 -1.432) (end 4.171 1.432)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 59028073-b481-47c7-8822-087f6c8bf0ac))
(fp_line (start 4.211 -1.35) (end 4.211 1.35)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc2f4b72-d3c8-4162-9605-ea05f6214a4e))
(fp_line (start 4.251 -1.262) (end 4.251 1.262)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33bbb445-9eb9-4a71-a783-fa1942b8fdd2))
(fp_line (start 4.291 -1.165) (end 4.291 1.165)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6be1a81b-952e-4b19-bb78-c055461ab3b1))
(fp_line (start 4.331 -1.059) (end 4.331 1.059)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2158fe2b-cd0d-41b6-959d-e425868c519a))
(fp_line (start 4.371 -0.94) (end 4.371 0.94)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3e0ccefc-8abf-48d2-9283-3d8e0ecf9863))
(fp_line (start 4.411 -0.802) (end 4.411 0.802)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8128ea4-cb31-462e-95cc-3b8b42560798))
(fp_line (start 4.451 -0.633) (end 4.451 0.633)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c10f61d6-8374-4f70-baae-580e4ca363ae))
(fp_line (start 4.491 -0.402) (end 4.491 0.402)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1580f15d-1d31-47c8-98c3-177e3f5a7923))
(fp_circle (center 1.25 0) (end 4.52 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp cc13967e-eb4f-433d-a9c1-1351f1d7566c))
(fp_circle (center 1.25 0) (end 4.65 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f99d4d45-3ae0-4ec6-b81d-9daa29c2b071))
(fp_line (start -1.443972 -1.3735) (end -0.813972 -1.3735)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3eb5843b-d1c5-409c-ab39-b4b1c8576037))
(fp_line (start -1.128972 -1.6885) (end -1.128972 -1.0585)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2dcaf95c-4921-473e-9ca2-5a4b95a7fd1a))
(fp_circle (center 1.25 0) (end 4.4 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp e4c2e25f-94ee-4757-8e64-7437cb5f9fcb))
(pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pintype "passive") (tstamp 8589d961-37c3-408b-9463-f2154735ca25))
(pad "2" thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")