-
Notifications
You must be signed in to change notification settings - Fork 0
/
SNES-Userport-Adapter.kicad_pcb
5600 lines (5585 loc) · 210 KB
/
SNES-Userport-Adapter.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")
(title_block
(title "SNES Controller to CBM Userport Adapter")
(date "2023-10-22")
(rev "1.0")
(company "Patrick Dähne CC BY-NC-SA 4.0")
)
(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 true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 6)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "gerber-files")
)
)
(net 0 "")
(net 1 "VCC")
(net 2 "GND")
(net 3 "/Clock")
(net 4 "/Latch")
(net 5 "/Data")
(net 6 "unconnected-(J2-NC-Pad5)")
(net 7 "unconnected-(J2-NC-Pad6)")
(net 8 "/Audio")
(net 9 "unconnected-(J4-~{RESET}-Pad3)")
(net 10 "unconnected-(J4-CNT1-Pad4)")
(net 11 "unconnected-(J4-SP1-Pad5)")
(net 12 "unconnected-(J4-CNT2-Pad6)")
(net 13 "unconnected-(J4-SP2-Pad7)")
(net 14 "unconnected-(J4-~{PC2}-Pad8)")
(net 15 "unconnected-(J4-ATN-Pad9)")
(net 16 "unconnected-(J4-9VAC-Pad10)")
(net 17 "unconnected-(J4-9VAC-Pad11)")
(net 18 "unconnected-(J4-~{FLAG2}-PadB)")
(net 19 "unconnected-(J4-PB0-PadC)")
(net 20 "unconnected-(J4-PB1-PadD)")
(net 21 "unconnected-(J4-PB2-PadE)")
(net 22 "unconnected-(J4-PB4-PadH)")
(net 23 "unconnected-(J4-PB7-PadL)")
(net 24 "/VCC_Ctrl")
(net 25 "/Audio_Jack")
(footprint "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (layer "F.Cu")
(tstamp 298a6adf-c045-43d3-a6c7-69108a12b504)
(at 158.908 90.266 -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")
(property "Sheetfile" "SNES-Userport-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Resistor")
(property "ki_keywords" "R res resistor")
(path "/f7f7bfcd-7684-4474-a6ca-209d3e44c79f")
(attr through_hole)
(fp_text reference "R1" (at 5.08 -2.37 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ad7b5202-1a29-4859-9fb3-a5bf07bd9875)
)
(fp_text value "81Ω" (at 5.08 2.37 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 26a32208-9f52-4142-b185-c1194010ada9)
)
(fp_text user "${REFERENCE}" (at 5.08 0 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e01d5ff-eda7-4a10-9897-de1bac97c5af)
)
(fp_line (start 1.04 0) (end 1.81 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e63d79c3-b463-467b-ae2a-e5339c9285b2))
(fp_line (start 1.81 -1.37) (end 1.81 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a588f59-35df-482e-bcc5-87e6119e30ea))
(fp_line (start 1.81 1.37) (end 8.35 1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bf418194-dcfd-4e11-8eb3-d9de6d946b7b))
(fp_line (start 8.35 -1.37) (end 1.81 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5c1d576-6242-4038-91a6-f955ad345f06))
(fp_line (start 8.35 1.37) (end 8.35 -1.37)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7216eff0-94b0-420a-9fc3-80254c69a1b8))
(fp_line (start 9.12 0) (end 8.35 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72b07653-c9ea-4bc6-a43c-a3e612d12471))
(fp_line (start -1.05 -1.5) (end -1.05 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e547cfd-066e-443f-9a4b-8b4e50fb8d90))
(fp_line (start -1.05 1.5) (end 11.21 1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5f7515bd-a953-4cdb-894a-d9e2384af5af))
(fp_line (start 11.21 -1.5) (end -1.05 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bb63429f-49f7-4e26-a03b-5f7bef87babb))
(fp_line (start 11.21 1.5) (end 11.21 -1.5)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1434bd77-da8a-4a8a-8a68-3e28e47e13f2))
(fp_line (start 0 0) (end 1.93 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0863b825-b7c1-4bed-9f36-a9536e19aa2a))
(fp_line (start 1.93 -1.25) (end 1.93 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d734b3fc-b0f5-4d5e-827e-9f62e7f4cf58))
(fp_line (start 1.93 1.25) (end 8.23 1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1dd59971-af71-4414-b374-52432fbbe1ee))
(fp_line (start 8.23 -1.25) (end 1.93 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 953591a7-f3ea-4dd3-b3a3-c2603a5d5aed))
(fp_line (start 8.23 1.25) (end 8.23 -1.25)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac92b3bd-00cb-4dee-a2f5-c3b1acedacf1))
(fp_line (start 10.16 0) (end 8.23 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f00e3e85-7f43-47b4-849c-b90303cc4b22))
(pad "1" thru_hole circle (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 8 "/Audio") (pintype "passive") (tstamp b87be3e0-d55f-4f40-9adf-6d4f3e36eafa))
(pad "2" thru_hole oval (at 10.16 0 270) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 25 "/Audio_Jack") (pintype "passive") (tstamp 94b39f74-df8d-4ff6-aad4-914a156ccad4))
(model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Audio:Jack_3.5mm_Ledino_KB3SPRS_Horizontal" (layer "F.Cu")
(tstamp 477b322f-cff4-4844-a131-3b82f49a7ca1)
(at 171.1855 116.592 90)
(descr "https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf")
(tags "jack stereo TRS")
(property "Sheetfile" "SNES-Userport-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Audio Jack, 3 Poles (Stereo / TRS), Switched TR Poles (Normalling)")
(property "ki_keywords" "audio jack receptacle stereo headphones phones TRS connector")
(path "/a1b4e0cd-d71c-4897-9567-1d0233bbbd3f")
(attr through_hole)
(fp_text reference "J3" (at -3.5 2.3 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 52553b67-aa27-4b5d-a08c-1529321a9438)
)
(fp_text value "AudioJack3_SwitchTR" (at 2.3 -12.2 90) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fe8e377c-d0c2-4bb7-8ea0-6c7b4de70b20)
)
(fp_line (start -9.4 -7.7) (end -9.4 -1.5)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 9f71ac2c-eade-4454-8915-ec9ad54f71b0))
(fp_line (start -9.4 -1.5) (end -5.8 -1.5)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 42a0fd1e-8a5e-4bb0-b80f-f5a8120d93f9))
(fp_line (start -5.8 -10.8) (end 1.95 -10.8)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 343346aa-edbd-49f6-afc4-0a08d60df573))
(fp_line (start -5.8 -7.7) (end -9.4 -7.7)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 293720d4-c0b0-487e-8c11-da36cbd214a5))
(fp_line (start -5.8 1) (end -5.8 -10.8)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 66864335-661e-44a7-a7bd-29d473c60e9b))
(fp_line (start -2.25 1) (end -5.8 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d9fc8afa-c257-43c7-a44e-7a4cbc35c15b))
(fp_line (start -0.5 2.05) (end 0.5 2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09fdbf38-50ed-48f3-967e-1fea4b2b028c))
(fp_line (start 0 1.5) (end -0.5 2.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 522e14b9-262d-4b4a-81c1-3bd31628da58))
(fp_line (start 0.5 2.05) (end 0 1.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9adde1e-8d05-4833-a5df-1de87bada8d3))
(fp_line (start 6 1) (end 2.25 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c89949e1-5fa9-447f-b1aa-559ab0a9a1f9))
(fp_line (start 6.3 -10.8) (end 8.7 -10.8)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ca2159b4-1e36-4175-b5e0-51f0e22ebb3f))
(fp_line (start 8.7 -10.8) (end 8.7 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp acb363fc-99e2-4954-98ca-321b6fa5ddfb))
(fp_line (start 8.7 1) (end 8.6 1)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 78f6aafe-202d-4581-8f34-b05d4c32a755))
(fp_line (start -9.8 -11.4) (end -9.8 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7913ee79-5930-4ad9-b117-ad489143e8c9))
(fp_line (start -9.8 2) (end 9.1 2)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c7e33a26-cb92-4f6c-9602-f8872d72fb1a))
(fp_line (start 9.1 -11.4) (end -9.8 -11.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25e1bb33-31a1-4f29-b1d4-9f0694a23fdf))
(fp_line (start 9.1 2) (end 9.1 -11.4)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7f92dcec-3556-4e6f-8442-d77f49f40075))
(fp_line (start -9.3 -7.6) (end -9.3 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3694cda2-149f-4e03-981a-9dbde7237106))
(fp_line (start -9.3 -7.6) (end -5.7 -7.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5a960f4-f501-437d-923c-3c5ae3cb642f))
(fp_line (start -9.3 -1.6) (end -5.7 -1.6)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66696b2c-1ee3-422e-9c97-842864ca0cd4))
(fp_line (start -5.7 -10.7) (end -5.7 0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3c2baa65-c463-46be-a6d2-2f51c9f24b2b))
(fp_line (start -5.7 0.9) (end 8.6 0.9)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3554cd5f-bf6f-4585-b7a6-a3f21937f9fc))
(fp_line (start 8.6 -10.7) (end -5.7 -10.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71992707-0972-4605-ad53-12a068ab939b))
(fp_line (start 8.6 0.9) (end 8.6 -10.7)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13159fc6-0540-4029-871c-91aede571766))
(fp_circle (center 0.1 -1.75) (end 0.4 -1.55)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.Fab") (tstamp 0cb208c6-16cc-42fb-b11a-52b8c2a24d81))
(pad "R" thru_hole oval (at 4.1 -9.8 90) (size 4 2.2) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 25 "/Audio_Jack") (pintype "passive") (tstamp 8fe60970-e738-473f-914d-46d983d711d1))
(pad "RN" thru_hole oval (at 2.9 -7.1 90) (size 4 2.2) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 25 "/Audio_Jack") (pintype "passive") (tstamp f12370e2-cf44-4d91-b521-90ea718a6bb8))
(pad "S" thru_hole oval (at -3.9 -4.6 90) (size 2.2 4) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp cfbd27f1-10b7-4c2f-9864-ee986a1411e3))
(pad "T" thru_hole rect (at 0 0 90) (size 4 2.2) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 25 "/Audio_Jack") (pintype "passive") (tstamp 8c8b0ace-e8b5-4973-b3ed-34a38d7b5f2c))
(pad "TN" thru_hole oval (at 7.3 -0.5 180) (size 4 2.2) (drill 1.3) (layers "*.Cu" "*.Mask")
(net 25 "/Audio_Jack") (pintype "passive") (tstamp c5ebb4e4-8abe-4c4c-b9e8-84fed2258cb0))
(model "${KICAD6_3DMODEL_DIR}/Connector_Audio.3dshapes/Jack_3.5mm_Ledino_KB3SPRS_Horizontal.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "PinHeader-Flipped:PinHeader_1x03_P2.54mm_Horizontal" (layer "F.Cu")
(tstamp 57f718c3-2360-4ea3-a8bc-85bde5a3cee3)
(at 124.775 84.439 180)
(descr "Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row")
(tags "Through hole angled pin header THT 1x03 2.54mm single row")
(property "Sheetfile" "SNES-Userport-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/eb8ca23d-9789-479c-9c3f-46e89cdcf62f")
(attr through_hole)
(fp_text reference "J1" (at 1.073 -8.367) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a27ca9b-8aee-4b4a-8d0c-d59052921460)
)
(fp_text value "Conn_01x03_Pin" (at 4.385 -7.35) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b07c13d-946b-4975-9a21-b32fc3abbc4b)
)
(fp_text user "${REFERENCE}" (at 2.77 -2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c4f82c29-cd35-4a80-81d8-749683e23809)
)
(fp_line (start -1.27 0) (end -1.27 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 637c70a8-dbdf-4be5-ba78-59d26a19d1d3))
(fp_line (start -1.27 1.27) (end 0 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8fd862a6-ffbc-43c2-b266-eabba59bf2ec))
(fp_line (start 1.042929 -5.46) (end 1.44 -5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f8efbaa-3449-409a-80ef-dd3e10421741))
(fp_line (start 1.042929 -4.7) (end 1.44 -4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f0da344-cb6e-43f4-935b-867704801082))
(fp_line (start 1.042929 -2.92) (end 1.44 -2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0137416d-159b-4e2c-8640-9c9596ff0c9e))
(fp_line (start 1.042929 -2.16) (end 1.44 -2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95287c1a-9330-4142-bed4-9037e228c036))
(fp_line (start 1.11 -0.38) (end 1.44 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca721a6c-3180-4de6-8d34-fcf51191d205))
(fp_line (start 1.11 0.38) (end 1.44 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1b90000b-f07b-47a2-915f-a121a3fe7496))
(fp_line (start 1.44 -6.41) (end 4.1 -6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f25ae31-e45c-4fdf-aef6-6f42abf738d1))
(fp_line (start 1.44 -3.81) (end 4.1 -3.81)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3abe57cc-c5aa-4b48-817f-8a2f6e245368))
(fp_line (start 1.44 -1.27) (end 4.1 -1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27d47492-7f7f-4dca-b808-dc120091b51b))
(fp_line (start 1.44 1.33) (end 1.44 -6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a494c7b-6ee0-4d34-a5cc-8b7529a8e444))
(fp_line (start 4.1 -6.41) (end 4.1 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f2a1cf9-3e3f-4bf9-aa8c-906dbf8c73f4))
(fp_line (start 4.1 -4.7) (end 10.1 -4.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ee73e6e-4625-4dea-8d3e-e265fac1911b))
(fp_line (start 4.1 -2.16) (end 10.1 -2.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e483bf77-6a7e-466b-9d7e-6befdaf1c01a))
(fp_line (start 4.1 -0.28) (end 10.1 -0.28)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c45bc082-06f6-4d68-b86a-f34632b2bf34))
(fp_line (start 4.1 -0.16) (end 10.1 -0.16)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e723112-5b6b-4c67-b956-4b51e47ac89e))
(fp_line (start 4.1 -0.04) (end 10.1 -0.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae850813-3229-41dd-af91-6ccfaa6a7d22))
(fp_line (start 4.1 0.08) (end 10.1 0.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9b456d0-2e56-4f61-8284-445ca11757ba))
(fp_line (start 4.1 0.2) (end 10.1 0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2271bc05-9484-4a3e-adf8-7c853b2573fe))
(fp_line (start 4.1 0.32) (end 10.1 0.32)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35e0b6ae-de0b-48b4-b382-904338dbbb94))
(fp_line (start 4.1 0.38) (end 10.1 0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 49678a55-8cbe-4ab5-970e-ccc9bf491fbb))
(fp_line (start 4.1 1.33) (end 1.44 1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16fbea2e-112b-4288-9350-803df065f5f5))
(fp_line (start 10.1 -5.46) (end 4.1 -5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ee1693d-c53a-4d34-aec4-62d8c2f39e3c))
(fp_line (start 10.1 -4.7) (end 10.1 -5.46)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 99583c7d-2faf-485f-9537-fcfd82670566))
(fp_line (start 10.1 -2.92) (end 4.1 -2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7f9c8e14-aa11-4ee0-8c8d-e859dbed544c))
(fp_line (start 10.1 -2.16) (end 10.1 -2.92)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2dd8da8f-4286-45f3-b958-02be7654f2ac))
(fp_line (start 10.1 -0.38) (end 4.1 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d45537cf-125e-4f93-8eac-56f22223e9f3))
(fp_line (start 10.1 0.38) (end 10.1 -0.38)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f16a98d-b312-4f2c-976b-38c180157aab))
(fp_line (start -1.8 -6.85) (end 10.55 -6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f9f30e04-3e53-45cf-b007-ef213e368360))
(fp_line (start -1.8 1.8) (end -1.8 -6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6b441995-1ea1-45be-81cd-0482a65308b6))
(fp_line (start 10.55 -6.85) (end 10.55 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 51a4a787-ebc0-480b-a2d9-3071eb2d2db8))
(fp_line (start 10.55 1.8) (end -1.8 1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5c7ace38-29d2-4edf-97b2-d4a947af99a6))
(fp_line (start -0.32 -5.4) (end 1.5 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 081d4ec1-adf5-4236-8fd6-402cce11f324))
(fp_line (start -0.32 -4.76) (end -0.32 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 30563539-a81f-4c4b-9110-6f3631123b77))
(fp_line (start -0.32 -4.76) (end 1.5 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 078b628b-47f4-4852-820f-70c4e2c124dd))
(fp_line (start -0.32 -2.86) (end 1.5 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51d85b52-a5ac-4c1b-9fbc-8cbd80daead9))
(fp_line (start -0.32 -2.22) (end -0.32 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c19f8b6-dfa6-40f0-8241-b3dc605c33b4))
(fp_line (start -0.32 -2.22) (end 1.5 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cff9eba3-9838-4a88-82cc-b885b24a3083))
(fp_line (start -0.32 -0.32) (end 1.5 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 95efc4b1-79e2-46fb-a199-b3c6fbb49b5f))
(fp_line (start -0.32 0.32) (end -0.32 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1fab2d91-eece-4374-93ea-2388ee88c276))
(fp_line (start -0.32 0.32) (end 1.5 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 476fdad8-2379-4078-a2c2-365e7e755352))
(fp_line (start 1.5 -6.35) (end 1.5 0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 61159314-a0a8-4d39-b759-90d775e6655f))
(fp_line (start 1.5 0.635) (end 2.135 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39d31541-ad2a-405e-b7d4-0d869bc6e7b6))
(fp_line (start 2.135 1.27) (end 4.04 1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a1117a2c-2a3f-4ff4-8676-413d8a72976c))
(fp_line (start 4.04 -6.35) (end 1.5 -6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1d26e1d6-e0be-440e-9573-3f3db5c23d72))
(fp_line (start 4.04 -5.4) (end 10.04 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2eaeaae5-240e-4c77-a1a2-11e1834ca1b4))
(fp_line (start 4.04 -4.76) (end 10.04 -4.76)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbc96f40-f412-4574-baca-382392816162))
(fp_line (start 4.04 -2.86) (end 10.04 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8867e3c0-8f00-46b7-9325-5c1d7693fab9))
(fp_line (start 4.04 -2.22) (end 10.04 -2.22)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d83e8490-7819-4772-98bd-ced2c29c6391))
(fp_line (start 4.04 -0.32) (end 10.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 911eaf07-0979-407c-a25e-4fd913611cb8))
(fp_line (start 4.04 0.32) (end 10.04 0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cdc37cf-04a9-4d8f-8eb1-a6dd004ac9c9))
(fp_line (start 4.04 1.27) (end 4.04 -6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a6a1b81-c33e-41c9-98f2-fd0128fa8dd1))
(fp_line (start 10.04 -4.76) (end 10.04 -5.4)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c497307d-4a9d-48b8-9108-5daecefb9ec6))
(fp_line (start 10.04 -2.22) (end 10.04 -2.86)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ad21544-3c04-4598-ba95-f7a8279ab707))
(fp_line (start 10.04 0.32) (end 10.04 -0.32)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 096652c2-22c9-4564-a973-2db5041421fa))
(pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "VCC") (pinfunction "Pin_1") (pintype "passive") (tstamp 0e8fb462-18a7-438e-ae65-e5bfd4970d65))
(pad "2" thru_hole oval (at 0 -2.54 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 24 "/VCC_Ctrl") (pinfunction "Pin_2") (pintype "passive") (tstamp f7e62003-5cfc-47fa-95ba-da60be7638ba))
(pad "3" thru_hole oval (at 0 -5.08 180) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp d8ab6065-53d2-4bce-b842-37c047cf2c12))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Horizontal.wrl"
(offset (xyz 0 5.08 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Commodore:C64_Userport" (layer "F.Cu")
(tstamp 5a0667b9-f62a-4e6f-9b80-1e73c33d45e0)
(at 122.086 78.592 180)
(property "Sheetfile" "SNES-Userport-Adapter.kicad_sch")
(property "Sheetname" "")
(path "/4bce796b-636d-4def-9427-b6ccd5b1030f")
(attr smd)
(fp_text reference "J4" (at -10.16 -5.08 180 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3c25622-b3b8-4591-9ca3-fc2b06e34aa7)
)
(fp_text value "C64_Userport" (at -38.1 -5.08 180 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f16107c9-3357-41b7-94e3-a1139ec116ce)
)
(fp_text user "${REFERENCE}" (at -22.86 -5.08 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 91b65015-a9be-4894-9f26-e7c43e1ddab0)
)
(fp_line (start -47.28 3) (end 3.72 3)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 3944fad1-e9b0-4b4d-aa22-eddcd0b45644))
(pad "1" smd roundrect (at 0 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 58b558d0-952a-4369-90da-73183f6e6f4c))
(pad "2" smd roundrect (at -3.96 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 1 "VCC") (pinfunction "VCC") (pintype "passive") (tstamp f0f8c8ff-6042-41ef-9434-600e7ba3f2fa))
(pad "3" smd roundrect (at -7.92 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 9 "unconnected-(J4-~{RESET}-Pad3)") (pinfunction "~{RESET}") (pintype "bidirectional+no_connect") (tstamp 26212f01-010d-4dd4-bf3d-471769312e5e))
(pad "4" smd roundrect (at -11.88 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 10 "unconnected-(J4-CNT1-Pad4)") (pinfunction "CNT1") (pintype "bidirectional+no_connect") (tstamp ab9e2c29-bfad-43f4-9475-9f907c84155c))
(pad "5" smd roundrect (at -15.84 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 11 "unconnected-(J4-SP1-Pad5)") (pinfunction "SP1") (pintype "bidirectional+no_connect") (tstamp b8ad8d67-3be6-48ec-83db-426a90f1d2e4))
(pad "6" smd roundrect (at -19.8 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 12 "unconnected-(J4-CNT2-Pad6)") (pinfunction "CNT2") (pintype "bidirectional+no_connect") (tstamp 1eee00ac-bf45-45c9-8877-bad597211e36))
(pad "7" smd roundrect (at -23.76 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 13 "unconnected-(J4-SP2-Pad7)") (pinfunction "SP2") (pintype "bidirectional+no_connect") (tstamp c28b21e4-7599-418d-a1a7-0c19310550e4))
(pad "8" smd roundrect (at -27.72 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 14 "unconnected-(J4-~{PC2}-Pad8)") (pinfunction "~{PC2}") (pintype "bidirectional+no_connect") (tstamp d1c53a69-762b-488e-bced-4531935d5b55))
(pad "9" smd roundrect (at -31.68 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 15 "unconnected-(J4-ATN-Pad9)") (pinfunction "ATN") (pintype "bidirectional+no_connect") (tstamp 8bf6d454-de8a-4c83-814e-cf5069ef6432))
(pad "10" smd roundrect (at -35.64 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 16 "unconnected-(J4-9VAC-Pad10)") (pinfunction "9VAC") (pintype "passive+no_connect") (tstamp aec62838-a0b0-4a49-8848-792f88223049))
(pad "11" smd roundrect (at -39.6 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 17 "unconnected-(J4-9VAC-Pad11)") (pinfunction "9VAC") (pintype "passive+no_connect") (tstamp a7085a33-5dc6-4ca9-b384-bbb15afc2266))
(pad "12" smd roundrect (at -43.56 0 180) (size 2.5 6) (layers "F.Cu" "F.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 50bc80c4-f95f-484a-bf09-d6cdbc0d6747))
(pad "A" smd roundrect (at 0 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp d175983e-b01b-4a03-8f89-7a54a10055dc))
(pad "B" smd roundrect (at -3.96 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 18 "unconnected-(J4-~{FLAG2}-PadB)") (pinfunction "~{FLAG2}") (pintype "bidirectional+no_connect") (tstamp 3b9c32eb-01ab-4be8-9f2f-ab2610081e44))
(pad "C" smd roundrect (at -7.92 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 19 "unconnected-(J4-PB0-PadC)") (pinfunction "PB0") (pintype "bidirectional+no_connect") (tstamp 7e301d1f-50a5-4957-aeb2-139fee0ef2ae))
(pad "D" smd roundrect (at -11.88 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 20 "unconnected-(J4-PB1-PadD)") (pinfunction "PB1") (pintype "bidirectional+no_connect") (tstamp 6c76ed40-b327-4410-ab21-62d070d63a7c))
(pad "E" smd roundrect (at -15.84 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 21 "unconnected-(J4-PB2-PadE)") (pinfunction "PB2") (pintype "bidirectional+no_connect") (tstamp 4c36187d-6906-4b58-8c79-d518e9f9a921))
(pad "F" smd roundrect (at -19.8 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 3 "/Clock") (pinfunction "PB3") (pintype "bidirectional") (tstamp 110b9a44-e961-4e4e-8639-71c2759b9be0))
(pad "H" smd roundrect (at -23.76 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 22 "unconnected-(J4-PB4-PadH)") (pinfunction "PB4") (pintype "bidirectional+no_connect") (tstamp b0648078-c979-4597-b18b-231d354b27a0))
(pad "J" smd roundrect (at -27.72 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 4 "/Latch") (pinfunction "PB5") (pintype "bidirectional") (tstamp 8757231f-76bd-4bad-9c5a-ae6f8ba378c2))
(pad "K" smd roundrect (at -31.68 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 5 "/Data") (pinfunction "PB6") (pintype "bidirectional") (tstamp 28e18181-989b-4641-ad4a-02927798b1cd))
(pad "L" smd roundrect (at -35.64 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 23 "unconnected-(J4-PB7-PadL)") (pinfunction "PB7") (pintype "bidirectional+no_connect") (tstamp 579250b0-72b8-49f8-8d7f-477e7f4b11f3))
(pad "M" smd roundrect (at -39.6 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 8 "/Audio") (pinfunction "PA2") (pintype "bidirectional") (tstamp 687ee98f-3365-40f6-b597-46fb611eba6a))
(pad "N" smd roundrect (at -43.56 0 180) (size 2.5 6) (layers "B.Cu" "B.Mask") (roundrect_rratio 0.25)
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 0e89b2b5-23d0-41f2-a410-4344901e4087))
)
(footprint "MountingHole:MountingHole_5mm" (layer "F.Cu")
(tstamp 5d61135b-b952-4801-a9ba-88af4c0f3bfe)
(at 143.866 99.592 180)
(descr "Mounting Hole 5mm, no annular")
(tags "mounting hole 5mm no annular")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 -6) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7ee8c889-4a47-420a-9813-e73fa22027b9)
)
(fp_text value "MountingHole_5mm" (at 0 6) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 129044bc-2a23-4e91-84fa-8aeb74b9ab5c)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp dc420414-0f59-4271-b260-38cd6f0b7720)
)
(fp_circle (center 0 0) (end 5 0)
(stroke (width 0.15) (type solid)) (fill none) (layer "Cmts.User") (tstamp 6552714f-3d81-49fd-83c5-7c3028b630f7))
(fp_circle (center 0 0) (end 5.25 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 1eb71f68-9390-4341-aa3f-8ab80c519517))
(pad "" np_thru_hole circle (at 0 0 180) (size 5 5) (drill 5) (layers "*.Cu" "*.Mask") (tstamp b942a225-3e77-4182-85e2-eb461ff4a5c2))
)
(footprint "Nintendo:SNES_Controller_Socket" (layer "F.Cu")
(tstamp 72b7781a-5d14-48b7-8dba-4325aaca1df0)
(at 123.794 108.092)
(property "Sheetfile" "SNES-Userport-Adapter.kicad_sch")
(property "Sheetname" "")
(path "/7c089dd6-8685-46eb-8710-abc2e1d6a4c3")
(attr through_hole)
(fp_text reference "J2" (at -0.127 -4.699 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f09bb3af-736d-4762-a030-090f9cd2966b)
)
(fp_text value "SNES_Controller_Socket" (at -0.127 -6.477 unlocked) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6891bf98-413b-4092-b943-b38396decf33)
)
(fp_text user "${REFERENCE}" (at 16.3 -3.7 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3218454c-1467-4816-92cd-759cb15abfca)
)
(fp_line (start -6.25 4) (end -6.25 14.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 6e92c354-455c-4512-be04-f12cf3ab55f7))
(fp_line (start -6.25 4) (end 32.75 4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 00578daa-7091-4081-8d7f-b59e9503eaeb))
(fp_line (start -6.25 14.25) (end 32.75 14.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 473c9217-3390-4f17-9c20-84c5f2fcc8d2))
(fp_line (start -2.25 1) (end -2.25 4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 87181723-0b39-4344-873b-9efe32d62e16))
(fp_line (start -2.25 1) (end -1.5 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 10d2291b-a2e2-4e7a-a50d-5e318fa091c8))
(fp_line (start 1.5 1) (end 2.5 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 1c01b41e-4755-47c4-995e-8bdf0b200671))
(fp_line (start 5.5 1) (end 6.5 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 5bfcd471-e388-461c-8379-d4a097508009))
(fp_line (start 9.5 1) (end 10.5 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 98761859-c412-4201-b905-03f4573a9cc2))
(fp_line (start 13.5 1) (end 17 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 6bbed1e5-0e0c-4ac3-a338-0313add4a4a3))
(fp_line (start 20 1) (end 21 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 33d476e6-13d8-4ed3-a3ca-b253caa579ba))
(fp_line (start 24 1) (end 25 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 0bb8e206-2b68-47b3-a8d6-effb2b711622))
(fp_line (start 28 1) (end 28.75 1)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e411484d-333b-4a0b-9d2d-5e860d73b040))
(fp_line (start 28.75 1) (end 28.75 4)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d6eb8a5e-7b6a-4381-b042-476125462c72))
(fp_line (start 32.75 4) (end 32.75 14.25)
(stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 8eb8d4f0-9ca6-4dc6-be92-41c6da126cfb))
(fp_rect (start -9.25 -2.25) (end 35.75 15)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 85621600-1b7c-402c-8ca4-86713f1517e8))
(pad "1" thru_hole oval (at 0 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 24 "/VCC_Ctrl") (pinfunction "VCC") (pintype "passive") (tstamp 0d162ccc-e754-447f-87b6-eb92a026b3dd))
(pad "2" thru_hole oval (at 4 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 3 "/Clock") (pinfunction "Clock") (pintype "input") (tstamp d59867f1-228f-4d6a-9631-0e07f510c603))
(pad "3" thru_hole oval (at 8 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 4 "/Latch") (pinfunction "Latch") (pintype "input") (tstamp 813cee64-a219-466f-b32c-ed9f64ca0081))
(pad "4" thru_hole oval (at 12 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 5 "/Data") (pinfunction "Data") (pintype "output") (tstamp 5fbce055-b058-438a-8a80-d2800cbfd402))
(pad "5" thru_hole oval (at 18.5 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 6 "unconnected-(J2-NC-Pad5)") (pinfunction "NC") (pintype "no_connect") (tstamp 52aa3374-cc08-4943-bd5e-064262a52668))
(pad "6" thru_hole oval (at 22.5 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 7 "unconnected-(J2-NC-Pad6)") (pinfunction "NC") (pintype "no_connect") (tstamp 97ebde91-6535-4d4c-a715-0a543cb5edd0))
(pad "7" thru_hole oval (at 26.5 0) (size 2.5 3.5) (drill 1.5) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "passive") (tstamp 2f4c50b2-cf54-4a11-a950-4493414e8c0f))
)
(footprint "Jumper:SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm" (layer "B.Cu")
(tstamp ccd6c9ad-44db-4615-bab6-df81ed531f88)
(at 127.666 86.344 -90)
(descr "SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open")
(tags "solder jumper open")
(property "Sheetfile" "SNES-Userport-Adapter.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Solder Jumper, 2-pole, open")
(property "ki_keywords" "solder jumper SPST")
(path "/7d502127-be6b-493a-9e91-f9032e58afa2")
(attr exclude_from_pos_files)
(fp_text reference "JP1" (at 0 1.8 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d0e30388-0063-4ff2-9904-60781f87e518)
)
(fp_text value "SolderJumper_2_Open" (at 0 -1.9 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d3bff856-7cca-4872-b015-a400366449c8)
)
(fp_line (start -1.4 -0.3) (end -1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp ccfdd8fa-d5ea-43c8-8cb0-17eadc7100ab))
(fp_line (start -0.7 1) (end 0.7 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp c4997e53-f11b-42d8-b0b4-fcb1db57a2e6))
(fp_line (start 0.7 -1) (end -0.7 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp f5237241-ab15-4d8e-807a-c0443b53be74))
(fp_line (start 1.4 0.3) (end 1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 6d178fdf-99b8-46ee-9142-b68868ae918c))
(fp_arc (start -1.4 -0.3) (mid -1.194975 -0.794975) (end -0.7 -1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp a11f68d9-a433-43f8-9bcd-c6fb6cd8144f))
(fp_arc (start -0.7 1) (mid -1.194975 0.794975) (end -1.4 0.3)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 864d560d-6720-40d0-803c-8fa1a0122e6a))
(fp_arc (start 0.7 -1) (mid 1.194975 -0.794975) (end 1.4 -0.3)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp b89270cb-911a-407c-8408-ab4111ec5452))
(fp_arc (start 1.4 0.3) (mid 1.194975 0.794975) (end 0.7 1)
(stroke (width 0.12) (type solid)) (layer "B.SilkS") (tstamp 0dd1b0c7-20df-44a4-a5e5-57a42c7a0e91))
(fp_line (start -1.65 1.25) (end -1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp d96d4441-ffb9-48bc-ab1d-a21bdeff4177))
(fp_line (start -1.65 1.25) (end 1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp c4e12e6b-e65e-4b63-8c0d-9f99133a72b1))
(fp_line (start 1.65 -1.25) (end -1.65 -1.25)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp ab0ff141-1ad5-42f0-a979-5593064e7d14))
(fp_line (start 1.65 -1.25) (end 1.65 1.25)
(stroke (width 0.05) (type solid)) (layer "B.CrtYd") (tstamp 0e1f5ab3-b1fb-4bf3-96dc-bd4ed8c1bdd4))
(pad "1" smd custom (at -0.65 0 270) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 1 "VCC") (pinfunction "A") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0.5 -0.75)
(xy 0 -0.75)
(xy 0 0.75)
(xy 0.5 0.75)
)
(width 0) (fill yes))
) (tstamp 5ed25748-1d8d-4817-88df-e5b7861cf528))
(pad "2" smd custom (at 0.65 0 270) (size 1 0.5) (layers "B.Cu" "B.Mask")
(net 24 "/VCC_Ctrl") (pinfunction "B") (pintype "passive") (zone_connect 2) (thermal_bridge_angle 45)
(options (clearance outline) (anchor rect))
(primitives
(gr_circle (center 0 -0.25) (end 0.5 -0.25) (width 0) (fill yes))
(gr_circle (center 0 0.25) (end 0.5 0.25) (width 0) (fill yes))
(gr_poly
(pts
(xy 0 -0.75)
(xy -0.5 -0.75)
(xy -0.5 0.75)
(xy 0 0.75)
)
(width 0) (fill yes))
) (tstamp a4fe93ff-74e4-40ff-b58b-07d3bdee7501))
)
(gr_arc (start 115.366 91.592) (mid 114.658893 91.299107) (end 114.366 90.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 1f318a4b-dd41-4fc5-a778-1d3a764d2ff2))
(gr_arc (start 115.366 122.592) (mid 114.658893 122.299107) (end 114.366 121.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 2df6b512-9484-43af-8013-209ffe8e9176))
(gr_line (start 114.366 76.592) (end 114.366 90.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 475ac71b-8eea-475c-8b91-929c0e7af025))
(gr_arc (start 114.366 107.592) (mid 114.658893 106.884893) (end 115.366 106.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 4b5327c8-af87-4fc2-ae47-6412afa733f7))
(gr_line (start 114.366 107.592) (end 114.366 121.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 5f15aaf8-24eb-4296-b4d9-46a1d820c005))
(gr_arc (start 114.366 76.592) (mid 114.658893 75.884893) (end 115.366 75.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 62838e7e-38bd-4c04-8d06-817db1c660b5))
(gr_arc (start 173.366 121.592) (mid 173.073107 122.299107) (end 172.366 122.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6423d3ff-f50e-49df-9370-89d12fc68996))
(gr_arc (start 172.366 106.592) (mid 164.866 99.092) (end 172.366 91.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6533c8b9-1d2c-4b11-b6c8-cb5c1334a9c0))
(gr_line (start 173.366 76.592) (end 173.366 90.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 74fce4d9-0fbe-4352-9a01-e5f5f207a846))
(gr_arc (start 172.366 106.592) (mid 173.073107 106.884893) (end 173.366 107.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 8323186a-6c21-4cfa-9cad-a42fd87168f8))
(gr_line (start 172.366 122.592) (end 115.366 122.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a65bd35e-e289-44a5-8c8d-e4ebd8de55f8))
(gr_arc (start 115.366 91.592) (mid 122.866 99.092) (end 115.366 106.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp aafb004c-206b-463d-8481-bb62e9f101e1))
(gr_line (start 172.366 75.592) (end 169.366 75.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c5a9a19a-e423-4ce4-b674-0bcf59128492))
(gr_line (start 118.366 75.592) (end 115.366 75.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp d01cb395-9679-419e-93bf-7f204d8bd55d))
(gr_line (start 173.366 121.592) (end 173.366 107.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e5050737-e431-43f2-a992-ffd0a1d2cfa5))
(gr_arc (start 173.366 90.592) (mid 173.073107 91.299107) (end 172.366 91.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f81d7e99-91db-4f51-9f5f-0d5f30a0ee3f))
(gr_arc (start 172.366 75.592) (mid 173.073107 75.884893) (end 173.366 76.592)
(stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp fa89ce48-eda4-4653-a54a-95d9001b6ae1))
(gr_text "SNES Controller to CBM Userport Adapter Rev 1.0\nDesign by Patrick Dähne\nCC BY-NC-SA 4.0\nhttps://github.com/pdaehne/SNES-Userport-Adapter" (at 137.16 117.348) (layer "B.SilkS") (tstamp 0e4ee0c4-60f1-45f5-84ae-d26dc4451c7a)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "Bottom Side" (at 132.08 100.33) (layer "B.SilkS") (tstamp 10c088ed-1f83-469a-849c-016b5c2922a3)
(effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify bottom mirror))
)
(gr_text "Close Jumper for 5V Power\nSupply from Userport" (at 129.444 86.202) (layer "B.SilkS") (tstamp 90b7d26c-c81b-4d3a-96cb-4324bb8f16c1)
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
)
(gr_text "2" (at 122.078 86.979) (layer "F.SilkS") (tstamp 0d54c0e5-f8c1-47ed-9ed8-f8a55c7f4362)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "1" (at 122.078 84.439) (layer "F.SilkS") (tstamp 10f3d7f9-b15d-4619-b363-ea5b3e9e2259)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "SNES Controller" (at 138.08 104.744) (layer "F.SilkS") (tstamp 1bf1506b-f56f-4709-b0cc-107e0dac850c)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
)
(gr_text "C64, PET, Plus/4 or\nVIC-20 Userport" (at 158.146 85.948) (layer "F.SilkS") (tstamp 39369be9-6036-43e0-89fd-e41e1ef2a164)
(effects (font (size 1 1) (thickness 0.15)) (justify right bottom))
)
(gr_text "Userport 5V" (at 126.396 84.439) (layer "F.SilkS") (tstamp 669f09fe-74b8-4dbd-994f-65149470aecc)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text "(for PET Audio only)" (at 155.86 95.6 -90) (layer "F.SilkS") (tstamp 6c34f505-59c4-417e-9e55-04a470e539c3)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
)
(gr_text "Audio Out (for PET only)" (at 158.4 112.872 -90) (layer "F.SilkS") (tstamp 78b4c845-e121-421c-858b-97319f5211bd)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
)
(gr_text "3" (at 122.078 89.519) (layer "F.SilkS") (tstamp a9e1db58-af0f-40f6-9b5c-bb353e803cab)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text "50-500Ω" (at 160.686 95.346 -90) (layer "F.SilkS") (tstamp b536b311-6011-44d6-a174-cdaaf80ad897)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
)
(gr_text "GND" (at 126.396 89.519) (layer "F.SilkS") (tstamp ccd849f4-d13a-4579-87d4-55a11a698ffe)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text "Top Side" (at 132.08 100.33) (layer "F.SilkS") (tstamp d07d058b-55fd-4a42-810a-27d66b205911)
(effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify bottom))
)
(gr_text "External 5V" (at 126.396 86.979) (layer "F.SilkS") (tstamp eb080d7d-8575-4d30-ba71-f5ec66bbeb59)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text "External 5V Power Supply on Pins\n2-3 (for PET only, use Jumper on\nPins 1-2 for other Machines)" (at 135.794 96.108) (layer "F.SilkS") (tstamp f92d031b-9b3a-4434-9cd7-b65914f3188f)
(effects (font (size 1 1) (thickness 0.15)) (justify bottom))
)
(segment (start 126.046 81.98) (end 126.046 78.592) (width 0.4) (layer "F.Cu") (net 1) (tstamp 184de01d-a38f-4a7f-b9a8-818636f59afe))
(segment (start 124.775 84.439) (end 124.775 83.251) (width 0.4) (layer "F.Cu") (net 1) (tstamp cbb6cdb6-c813-4523-b57f-8b89ade94819))
(segment (start 124.775 83.251) (end 126.046 81.98) (width 0.4) (layer "F.Cu") (net 1) (tstamp f9f5570c-20b6-4a58-baf4-cc1f1b04fb48))
(segment (start 126.411 84.439) (end 127.666 85.694) (width 0.4) (layer "B.Cu") (net 1) (tstamp cb155cd2-f09f-42c7-8e3e-bb5c7eeadd84))
(segment (start 124.775 84.439) (end 126.411 84.439) (width 0.4) (layer "B.Cu") (net 1) (tstamp fa80324c-ce5b-42b4-9f62-d3d5cae94472))
(segment (start 150.272 112.618) (end 150.294 112.64) (width 0.4) (layer "B.Cu") (net 2) (tstamp 6ad7fa46-f6a8-4292-ab63-b9eb5837bd77))
(segment (start 141.886 89.635) (end 127.794 103.727) (width 0.25) (layer "B.Cu") (net 3) (tstamp 44596506-d909-422c-9399-15d8e9235725))
(segment (start 127.794 103.727) (end 127.794 108.092) (width 0.25) (layer "B.Cu") (net 3) (tstamp 8ebb7e24-4abf-4aaf-a52b-17887a1c4355))
(segment (start 141.886 78.592) (end 141.886 89.635) (width 0.25) (layer "B.Cu") (net 3) (tstamp c5a085a3-cf65-4e91-94e4-60bedf667215))
(segment (start 149.806 78.592) (end 149.806 84.001) (width 0.25) (layer "B.Cu") (net 4) (tstamp 06c23af2-fb5a-44d5-89ab-3635b4e1697c))
(segment (start 149.806 84.001) (end 131.794 102.013) (width 0.25) (layer "B.Cu") (net 4) (tstamp 51f1df8b-61b5-438b-83d9-8480fb9ca9d5))
(segment (start 131.794 102.013) (end 131.794 108.092) (width 0.25) (layer "B.Cu") (net 4) (tstamp 7b5e7d49-1f46-42e6-bc61-d98ab309a8f9))
(segment (start 135.794 100.426) (end 135.794 108.092) (width 0.25) (layer "B.Cu") (net 5) (tstamp 2db59d91-d70a-49fb-bb4a-3680b513e101))
(segment (start 153.766 82.454) (end 135.794 100.426) (width 0.25) (layer "B.Cu") (net 5) (tstamp 3c3c40fb-4a7d-42a5-a2fd-69c3868910e4))
(segment (start 153.766 78.592) (end 153.766 82.454) (width 0.25) (layer "B.Cu") (net 5) (tstamp 6a25ae0b-74b7-4231-9c56-d13698906035))
(segment (start 161.686 78.592) (end 161.686 84.186) (width 0.25) (layer "B.Cu") (net 8) (tstamp 081af780-a598-4528-9549-1f699e86ebb6))
(segment (start 158.908 86.964) (end 158.908 90.266) (width 0.25) (layer "B.Cu") (net 8) (tstamp 9e5a7ab3-19ed-450e-9c06-8244cbc6ccb7))
(segment (start 161.686 84.186) (end 158.908 86.964) (width 0.25) (layer "B.Cu") (net 8) (tstamp ff0ba5cb-a82a-4a9c-bfe5-184b7c9f5b49))
(segment (start 124.775 86.979) (end 127.651 86.979) (width 0.4) (layer "B.Cu") (net 24) (tstamp 6a3ffee7-5922-4764-a46d-a5ded11a68a5))
(segment (start 123.794 105.314) (end 123.794 108.092) (width 0.4) (layer "B.Cu") (net 24) (tstamp 755d1541-b245-4a54-b4a9-8d2208d6d31c))
(segment (start 127.666 101.442) (end 123.794 105.314) (width 0.4) (layer "B.Cu") (net 24) (tstamp 884c2988-cf05-40f8-94ea-75c536b2f46e))
(segment (start 127.666 86.994) (end 127.666 101.442) (width 0.4) (layer "B.Cu") (net 24) (tstamp d292ca52-18dd-49cb-8783-f8f2c4a34106))
(segment (start 161.3855 112.492) (end 161.3855 105.1895) (width 0.25) (layer "B.Cu") (net 25) (tstamp 0e17a7ab-1017-45e0-bbce-1db2e7ceabdb))
(segment (start 161.3855 105.1895) (end 161.321 105.125) (width 0.25) (layer "B.Cu") (net 25) (tstamp 141b57d6-3b5a-4928-8a4a-f5a04fbd1f95))
(segment (start 169.232 116.592) (end 171.1855 116.592) (width 0.25) (layer "B.Cu") (net 25) (tstamp 2d0ed677-ad3c-443e-be7b-716775a8d8fe))
(segment (start 171.1855 109.792) (end 170.6855 109.292) (width 0.25) (layer "B.Cu") (net 25) (tstamp 5a6bc2ec-2684-4748-8548-4b597fe9bbb0))
(segment (start 167.544 114.904) (end 169.232 116.592) (width 0.25) (layer "B.Cu") (net 25) (tstamp 5cc8dcae-54a0-4bd3-931d-91e87b248d9c))
(segment (start 167.544 114.904) (end 167.544 111.348) (width 0.25) (layer "B.Cu") (net 25) (tstamp 76072e87-2f65-4648-8f7f-0901bec4aaf2))
(segment (start 167.544 111.348) (end 161.321 105.125) (width 0.25) (layer "B.Cu") (net 25) (tstamp 8eca0238-2e0a-4f50-9d0d-7c34c077a70d))
(segment (start 158.908 100.426) (end 158.908 102.712) (width 0.25) (layer "B.Cu") (net 25) (tstamp 9411877d-dbe6-4b37-84cb-6135abd0cd48))
(segment (start 164.0855 113.692) (end 162.5855 113.692) (width 0.25) (layer "B.Cu") (net 25) (tstamp abd5b42f-8e04-44c5-9ca3-f22434dee92d))
(segment (start 171.1855 116.592) (end 171.1855 109.792) (width 0.25) (layer "B.Cu") (net 25) (tstamp bf3491de-43d3-4a08-aa0a-0d32ba971c19))
(segment (start 161.321 105.125) (end 158.908 102.712) (width 0.25) (layer "B.Cu") (net 25) (tstamp db9e9396-24bf-49f2-b947-74b813a9a006))
(segment (start 162.5855 113.692) (end 161.3855 112.492) (width 0.25) (layer "B.Cu") (net 25) (tstamp ddabb9cc-9870-48e3-8697-f2ae7f411881))
(zone (net 2) (net_name "GND") (layers "F&B.Cu") (tstamp cf4b7374-b031-4683-b2c2-0c991e2a81ba) (hatch edge 0.5)
(connect_pads (clearance 0.508))
(min_thickness 0.25) (filled_areas_thickness no)
(fill yes (thermal_gap 0.5) (thermal_bridge_width 0.5))
(polygon
(pts
(xy 113.95 122.778)
(xy 173.64 123.032)
(xy 173.64 75.534)
(xy 113.95 75.28)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 120.304321 75.862185)
(xy 120.350076 75.914989)
(xy 120.36002 75.984147)
(xy 120.358448 75.992858)
(xy 120.338875 76.082828)
(xy 120.336 76.131103)
(xy 120.336 78.342)
(xy 123.836 78.342)
(xy 123.836 76.131103)
(xy 123.833124 76.082828)
(xy 123.813552 75.992858)
(xy 123.818536 75.923167)
(xy 123.860407 75.867233)
(xy 123.925872 75.842816)
(xy 123.934718 75.8425)
(xy 124.188583 75.8425)
(xy 124.255622 75.862185)
(xy 124.301377 75.914989)
(xy 124.311321 75.984147)
(xy 124.309749 75.992858)
(xy 124.290398 76.081814)
(xy 124.290397 76.08182)
(xy 124.2875 76.13045)
(xy 124.2875 81.05355)
(xy 124.290397 81.10218)
(xy 124.290397 81.102184)
(xy 124.290398 81.102185)
(xy 124.336408 81.313695)
(xy 124.336411 81.313706)
(xy 124.421623 81.512695)
(xy 124.421625 81.512698)
(xy 124.421626 81.5127)
(xy 124.54296 81.691971)
(xy 124.696029 81.84504)
(xy 124.69603 81.845041)
(xy 124.696035 81.845045)
(xy 124.772968 81.897113)
(xy 124.859678 81.955801)
(xy 124.904163 82.009677)
(xy 124.912458 82.079052)
(xy 124.88193 82.141899)
(xy 124.877856 82.146171)
(xy 124.290479 82.733549)
(xy 124.287752 82.736116)
(xy 124.240787 82.777725)
(xy 124.240785 82.777727)
(xy 124.22324 82.803144)
(xy 124.205138 82.829368)
(xy 124.20292 82.832382)
(xy 124.164223 82.881777)
(xy 124.159962 82.891243)
(xy 124.148947 82.910774)
(xy 124.143048 82.91932)
(xy 124.143044 82.919328)
(xy 124.120794 82.977995)
(xy 124.119362 82.981453)
(xy 124.10769 83.007389)
(xy 124.062226 83.060444)
(xy 123.995297 83.080498)
(xy 123.994613 83.0805)
(xy 123.876345 83.0805)
(xy 123.815797 83.087011)
(xy 123.815795 83.087011)
(xy 123.678795 83.138111)
(xy 123.561739 83.225739)
(xy 123.474111 83.342795)
(xy 123.423011 83.479795)
(xy 123.423011 83.479797)
(xy 123.4165 83.540345)
(xy 123.4165 85.337654)
(xy 123.423011 85.398202)
(xy 123.423011 85.398204)
(xy 123.474111 85.535204)
(xy 123.561739 85.652261)
(xy 123.678796 85.739889)
(xy 123.730737 85.759262)
(xy 123.796595 85.783827)
(xy 123.852528 85.825699)
(xy 123.876944 85.891163)
(xy 123.862092 85.959436)
(xy 123.84449 85.983991)
(xy 123.699279 86.14173)
(xy 123.699276 86.141734)
(xy 123.57614 86.330207)
(xy 123.485703 86.536385)
(xy 123.430436 86.754628)
(xy 123.430434 86.75464)
(xy 123.411844 86.978994)
(xy 123.411844 86.979005)
(xy 123.430434 87.203359)
(xy 123.430436 87.203371)
(xy 123.485703 87.421614)
(xy 123.57614 87.627792)
(xy 123.699276 87.816265)
(xy 123.699284 87.816276)
(xy 123.851756 87.981902)
(xy 123.85176 87.981906)
(xy 124.029424 88.120189)
(xy 124.072693 88.143605)
(xy 124.072695 88.143606)
(xy 124.122286 88.192825)
(xy 124.137394 88.261042)
(xy 124.113224 88.326597)
(xy 124.084802 88.354236)
(xy 123.903922 88.48089)
(xy 123.90392 88.480891)
(xy 123.736891 88.64792)
(xy 123.736886 88.647926)
(xy 123.6014 88.84142)
(xy 123.601399 88.841422)
(xy 123.50157 89.055507)
(xy 123.501567 89.055513)
(xy 123.444364 89.268999)
(xy 123.444364 89.269)
(xy 124.341314 89.269)
(xy 124.315507 89.309156)
(xy 124.275 89.447111)
(xy 124.275 89.590889)
(xy 124.315507 89.728844)
(xy 124.341314 89.769)
(xy 123.444364 89.769)
(xy 123.501567 89.982486)
(xy 123.50157 89.982492)
(xy 123.601399 90.196578)
(xy 123.736894 90.390082)
(xy 123.903917 90.557105)
(xy 124.097421 90.6926)
(xy 124.311507 90.792429)
(xy 124.311516 90.792433)
(xy 124.525 90.849634)
(xy 124.525 89.954501)
(xy 124.632685 90.00368)
(xy 124.739237 90.019)
(xy 124.810763 90.019)
(xy 124.917315 90.00368)
(xy 125.025 89.954501)
(xy 125.025 90.849633)
(xy 125.238483 90.792433)
(xy 125.238492 90.792429)
(xy 125.452578 90.6926)
(xy 125.646082 90.557105)
(xy 125.813105 90.390082)
(xy 125.899989 90.266001)
(xy 157.594502 90.266001)
(xy 157.614456 90.494081)
(xy 157.614457 90.494089)
(xy 157.673714 90.715238)
(xy 157.673718 90.715249)
(xy 157.770475 90.922745)
(xy 157.770477 90.922749)
(xy 157.901802 91.1103)
(xy 158.0637 91.272198)
(xy 158.251251 91.403523)
(xy 158.360774 91.454594)
(xy 158.45875 91.500281)
(xy 158.458752 91.500281)
(xy 158.458757 91.500284)
(xy 158.679913 91.559543)
(xy 158.842832 91.573796)
(xy 158.907998 91.579498)
(xy 158.908 91.579498)
(xy 158.908002 91.579498)
(xy 158.965021 91.574509)
(xy 159.136087 91.559543)
(xy 159.357243 91.500284)
(xy 159.564749 91.403523)
(xy 159.7523 91.272198)
(xy 159.914198 91.1103)
(xy 160.045523 90.922749)
(xy 160.142284 90.715243)
(xy 160.201543 90.494087)
(xy 160.221498 90.266)
(xy 160.201543 90.037913)
(xy 160.142284 89.816757)
(xy 160.045523 89.609251)
(xy 159.914198 89.4217)
(xy 159.7523 89.259802)
(xy 159.564749 89.128477)
(xy 159.564745 89.128475)
(xy 159.357249 89.031718)
(xy 159.357238 89.031714)
(xy 159.136089 88.972457)
(xy 159.136081 88.972456)
(xy 158.908002 88.952502)
(xy 158.907998 88.952502)
(xy 158.679918 88.972456)
(xy 158.67991 88.972457)
(xy 158.458761 89.031714)
(xy 158.45875 89.031718)
(xy 158.251254 89.128475)
(xy 158.251252 89.128476)
(xy 158.251251 89.128477)
(xy 158.0637 89.259802)
(xy 158.063698 89.259803)
(xy 158.063695 89.259806)
(xy 157.901806 89.421695)
(xy 157.770476 89.609252)
(xy 157.770475 89.609254)
(xy 157.673718 89.81675)
(xy 157.673714 89.816761)
(xy 157.614457 90.03791)
(xy 157.614456 90.037918)
(xy 157.594502 90.265998)
(xy 157.594502 90.266001)
(xy 125.899989 90.266001)
(xy 125.9486 90.196578)
(xy 126.048429 89.982492)