-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathOpenC64Cart.kicad_pcb
2084 lines (2062 loc) · 181 KB
/
OpenC64Cart.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 4) (host pcbnew 4.0.7)
(general
(links 52)
(no_connects 0)
(area 55.174287 78.278666 134.85 147.480001)
(thickness 1.6)
(drawings 24)
(tracks 308)
(zones 0)
(modules 12)
(nets 33)
)
(page A4)
(title_block
(title "OpenC64Cart: C64 8K Lo/Hi-Rom Cartridge")
(date 2018-01-04)
(rev 2)
(company SukkoPera)
)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(44 Edge.Cuts user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.25)
(user_trace_width 0.8)
(trace_clearance 0.2)
(zone_clearance 0.2)
(zone_45_only no)
(trace_min 0.2)
(segment_width 0.2)
(edge_width 0.15)
(via_size 0.6)
(via_drill 0.4)
(via_min_size 0.4)
(via_min_drill 0.3)
(user_via 0.8 0.6)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 5.5 5.5)
(pad_drill 5.5)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(grid_origin 59.69 129.54)
(visible_elements FFFFFF7F)
(pcbplotparams
(layerselection 0x010f0_80000001)
(usegerberextensions false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15)
(hpglpenoverlay 2)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory gerbers/))
)
(net 0 "")
(net 1 GND)
(net 2 +5V)
(net 3 "Net-(P1-Pad1)")
(net 4 "Net-(P1-Pad2)")
(net 5 "Net-(P1-Pad3)")
(net 6 "Net-(U1-Pad21)")
(net 7 "Net-(U1-Pad20)")
(net 8 "Net-(U1-Pad19)")
(net 9 "Net-(U1-Pad18)")
(net 10 "Net-(U1-Pad17)")
(net 11 "Net-(U1-Pad16)")
(net 12 "Net-(U1-Pad15)")
(net 13 "Net-(U1-Pad14)")
(net 14 "Net-(U1-PadK)")
(net 15 "Net-(U1-PadL)")
(net 16 "Net-(U1-PadM)")
(net 17 "Net-(U1-PadU)")
(net 18 "Net-(U1-PadV)")
(net 19 "Net-(U1-PadW)")
(net 20 "Net-(U1-PadX)")
(net 21 "Net-(U1-PadY)")
(net 22 "Net-(U1-PadR)")
(net 23 "Net-(U1-PadS)")
(net 24 "Net-(U1-PadT)")
(net 25 "Net-(U1-PadP)")
(net 26 "Net-(U1-PadN)")
(net 27 "Net-(P2-Pad1)")
(net 28 "Net-(P3-Pad1)")
(net 29 "Net-(P4-Pad2)")
(net 30 "Net-(P5-Pad2)")
(net 31 "Net-(P6-Pad2)")
(net 32 "Net-(SW1-Pad3)")
(net_class Default "This is the default net class."
(clearance 0.2)
(trace_width 0.25)
(via_dia 0.6)
(via_drill 0.4)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net "Net-(P1-Pad1)")
(add_net "Net-(P1-Pad2)")
(add_net "Net-(P1-Pad3)")
(add_net "Net-(P2-Pad1)")
(add_net "Net-(P3-Pad1)")
(add_net "Net-(P4-Pad2)")
(add_net "Net-(P5-Pad2)")
(add_net "Net-(P6-Pad2)")
(add_net "Net-(SW1-Pad3)")
(add_net "Net-(U1-Pad14)")
(add_net "Net-(U1-Pad15)")
(add_net "Net-(U1-Pad16)")
(add_net "Net-(U1-Pad17)")
(add_net "Net-(U1-Pad18)")
(add_net "Net-(U1-Pad19)")
(add_net "Net-(U1-Pad20)")
(add_net "Net-(U1-Pad21)")
(add_net "Net-(U1-PadK)")
(add_net "Net-(U1-PadL)")
(add_net "Net-(U1-PadM)")
(add_net "Net-(U1-PadN)")
(add_net "Net-(U1-PadP)")
(add_net "Net-(U1-PadR)")
(add_net "Net-(U1-PadS)")
(add_net "Net-(U1-PadT)")
(add_net "Net-(U1-PadU)")
(add_net "Net-(U1-PadV)")
(add_net "Net-(U1-PadW)")
(add_net "Net-(U1-PadX)")
(add_net "Net-(U1-PadY)")
)
(net_class Power ""
(clearance 0.2)
(trace_width 0.8)
(via_dia 0.8)
(via_drill 0.6)
(uvia_dia 0.3)
(uvia_drill 0.1)
(add_net +5V)
(add_net GND)
)
(module w_pth_circuits:dil_28-600_socket (layer F.Cu) (tedit 59726F3E) (tstamp 59726CFB)
(at 89.154 106.934)
(descr "IC, DIL28 x 0,6\", with socket")
(tags DIL)
(path /59726871)
(fp_text reference U2 (at 0 -10.16) (layer F.SilkS) hide
(effects (font (size 1.524 1.143) (thickness 0.28575)))
)
(fp_text value 27512 (at 0 10.414) (layer F.SilkS) hide
(effects (font (size 1.524 1.143) (thickness 0.28575)))
)
(fp_line (start 18.796 7.112) (end 18.796 -7.112) (layer F.SilkS) (width 0.381))
(fp_line (start 17.78 -8.89) (end 17.78 8.89) (layer F.SilkS) (width 0.381))
(fp_line (start -17.78 8.89) (end -17.78 -8.89) (layer F.SilkS) (width 0.381))
(fp_line (start -18.796 -7.112) (end -18.796 7.112) (layer F.SilkS) (width 0.381))
(fp_line (start -1.27 -5.08) (end -1.27 5.08) (layer F.SilkS) (width 0.254))
(fp_line (start 1.27 5.08) (end 1.27 -5.08) (layer F.SilkS) (width 0.254))
(fp_line (start 14.732 -5.08) (end 14.732 5.08) (layer F.SilkS) (width 0.254))
(fp_line (start -14.732 -5.08) (end -14.732 5.08) (layer F.SilkS) (width 0.254))
(fp_line (start -17.78 -8.89) (end 17.78 -8.89) (layer F.SilkS) (width 0.381))
(fp_line (start 18.796 -7.112) (end -18.796 -7.112) (layer F.SilkS) (width 0.381))
(fp_line (start -17.78 8.89) (end 17.78 8.89) (layer F.SilkS) (width 0.381))
(fp_line (start 18.796 7.112) (end -18.796 7.112) (layer F.SilkS) (width 0.381))
(fp_line (start -14.732 5.08) (end 14.732 5.08) (layer F.SilkS) (width 0.254))
(fp_line (start 14.732 -5.08) (end -14.732 -5.08) (layer F.SilkS) (width 0.254))
(fp_line (start -17.78 -1.27) (end -17.78 1.27) (layer F.SilkS) (width 0.381))
(fp_arc (start -17.78 0) (end -17.78 -1.27) (angle 90) (layer F.SilkS) (width 0.254))
(fp_arc (start -17.78 0) (end -16.51 0) (angle 90) (layer F.SilkS) (width 0.254))
(fp_line (start -17.78 1.27) (end -18.796 1.27) (layer F.SilkS) (width 0.381))
(fp_line (start -17.78 -1.27) (end -18.796 -1.27) (layer F.SilkS) (width 0.381))
(pad 1 thru_hole oval (at -16.51 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 31 "Net-(P6-Pad2)"))
(pad 2 thru_hole oval (at -13.97 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 14 "Net-(U1-PadK)"))
(pad 3 thru_hole oval (at -11.43 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 22 "Net-(U1-PadR)"))
(pad 4 thru_hole oval (at -8.89 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 23 "Net-(U1-PadS)"))
(pad 5 thru_hole oval (at -6.35 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 24 "Net-(U1-PadT)"))
(pad 6 thru_hole oval (at -3.81 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 17 "Net-(U1-PadU)"))
(pad 7 thru_hole oval (at -1.27 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 18 "Net-(U1-PadV)"))
(pad 8 thru_hole oval (at 1.27 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 19 "Net-(U1-PadW)"))
(pad 9 thru_hole oval (at 3.81 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 20 "Net-(U1-PadX)"))
(pad 10 thru_hole oval (at 6.35 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 21 "Net-(U1-PadY)"))
(pad 11 thru_hole oval (at 8.89 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 6 "Net-(U1-Pad21)"))
(pad 12 thru_hole oval (at 11.43 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 7 "Net-(U1-Pad20)"))
(pad 13 thru_hole oval (at 13.97 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 8 "Net-(U1-Pad19)"))
(pad 14 thru_hole oval (at 16.51 7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 15 thru_hole oval (at 16.51 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 9 "Net-(U1-Pad18)"))
(pad 16 thru_hole oval (at 13.97 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 10 "Net-(U1-Pad17)"))
(pad 17 thru_hole oval (at 11.43 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 11 "Net-(U1-Pad16)"))
(pad 18 thru_hole oval (at 8.89 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 12 "Net-(U1-Pad15)"))
(pad 19 thru_hole oval (at 6.35 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 13 "Net-(U1-Pad14)"))
(pad 20 thru_hole oval (at 3.81 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 4 "Net-(P1-Pad2)"))
(pad 21 thru_hole oval (at 1.27 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 16 "Net-(U1-PadM)"))
(pad 22 thru_hole oval (at -1.27 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 4 "Net-(P1-Pad2)"))
(pad 23 thru_hole oval (at -3.81 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 15 "Net-(U1-PadL)"))
(pad 24 thru_hole oval (at -6.35 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 26 "Net-(U1-PadN)"))
(pad 25 thru_hole oval (at -8.89 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 25 "Net-(U1-PadP)"))
(pad 26 thru_hole oval (at -11.43 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 29 "Net-(P4-Pad2)"))
(pad 27 thru_hole oval (at -13.97 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 30 "Net-(P5-Pad2)"))
(pad 28 thru_hole oval (at -16.51 -7.62) (size 1.50114 2.19964) (drill 0.8001) (layers *.Cu *.Mask F.SilkS)
(net 2 +5V))
(model /home/sukko/Documents/kicad/lib/kicad_libs/modules/packages3d/walter/pth_circuits/dil_28-600_socket.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:C_0805+THT (layer F.Cu) (tedit 59F2594F) (tstamp 5971449A)
(at 68.834 106.8705 90)
(descr "Capacitor SMD 0805, hand soldering")
(tags "capacitor 0805")
(path /597140F9)
(attr smd)
(fp_text reference C1 (at 0 -1.75 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value C (at 0 1.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text user %R (at 0 -1.75 90) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
(fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
(fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
(fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
(fp_line (start -3.5 -1) (end 3.5 -1) (layer F.SilkS) (width 0.05))
(fp_line (start -3.5 -1) (end -3.5 1) (layer F.SilkS) (width 0.05))
(fp_line (start 3.5 1) (end 3.5 -1) (layer F.SilkS) (width 0.05))
(fp_line (start 3.5 1) (end -3.5 1) (layer F.SilkS) (width 0.05))
(pad 1 smd rect (at -1.25 0 90) (size 1.5 1.25) (layers F.Cu F.Mask)
(net 1 GND))
(pad 2 smd rect (at 1.25 0 90) (size 1.5 1.25) (layers F.Cu F.Mask)
(net 2 +5V))
(pad 1 thru_hole circle (at -2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 1 GND))
(pad 2 thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask)
(net 2 +5V))
(model Capacitors_SMD.3dshapes/C_0805.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model Capacitors_THT.3dshapes/C_Disc_D5.0mm_W2.5mm_P5.00mm.wrl
(at (xyz -0.1 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module w_logo:Logo_copper_OSHW_12x13mm (layer B.Cu) (tedit 0) (tstamp 5A47AF95)
(at 109.4994 88.1634 180)
(descr "Open Hardware Logo, 12x13mm")
(path /5A47B1EF)
(fp_text reference J98 (at 0 0 180) (layer B.SilkS) hide
(effects (font (size 0.5461 0.5461) (thickness 0.10922)) (justify mirror))
)
(fp_text value OSHW_LOGO (at 0 -0.9 180) (layer B.SilkS) hide
(effects (font (size 0.5461 0.5461) (thickness 0.10922)) (justify mirror))
)
(fp_line (start 5.21 -7.11) (end 5.31 -7.04) (layer B.Cu) (width 0.15))
(fp_line (start 5.03 -7.11) (end 5.21 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 4.93 -7.04) (end 5.03 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 4.88 -6.9) (end 4.93 -7.04) (layer B.Cu) (width 0.15))
(fp_line (start 4.88 -6.32) (end 4.88 -6.9) (layer B.Cu) (width 0.15))
(fp_line (start 4.94 -6.17) (end 4.88 -6.32) (layer B.Cu) (width 0.15))
(fp_line (start 5.04 -6.1) (end 4.94 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start 5.21 -6.1) (end 5.04 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 5.31 -6.19) (end 5.21 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 5.36 -6.32) (end 5.31 -6.19) (layer B.Cu) (width 0.15))
(fp_line (start 5.36 -6.59) (end 5.36 -6.32) (layer B.Cu) (width 0.15))
(fp_line (start 4.88 -6.59) (end 5.36 -6.59) (layer B.Cu) (width 0.15))
(fp_line (start 4.31 -6.11) (end 4.31 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 4.36 -6.25) (end 4.31 -6.42) (layer B.Cu) (width 0.15))
(fp_line (start 4.4 -6.19) (end 4.36 -6.25) (layer B.Cu) (width 0.15))
(fp_line (start 4.5 -6.11) (end 4.4 -6.19) (layer B.Cu) (width 0.15))
(fp_line (start 4.61 -6.11) (end 4.5 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start 2.26 -6.1) (end 2.45 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 2.45 -7.11) (end 2.64 -6.39) (layer B.Cu) (width 0.15))
(fp_line (start 2.64 -6.39) (end 2.83 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 2.83 -7.11) (end 3.03 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 1.88 -7.03) (end 1.79 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 1.79 -7.11) (end 1.6 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 1.6 -7.11) (end 1.53 -7.06) (layer B.Cu) (width 0.15))
(fp_line (start 1.53 -7.06) (end 1.46 -6.98) (layer B.Cu) (width 0.15))
(fp_line (start 1.46 -6.98) (end 1.4 -6.82) (layer B.Cu) (width 0.15))
(fp_line (start 1.4 -6.82) (end 1.4 -6.4) (layer B.Cu) (width 0.15))
(fp_line (start 1.4 -6.4) (end 1.45 -6.25) (layer B.Cu) (width 0.15))
(fp_line (start 1.45 -6.25) (end 1.52 -6.16) (layer B.Cu) (width 0.15))
(fp_line (start 1.52 -6.16) (end 1.6 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start 1.6 -6.11) (end 1.78 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start 1.78 -6.11) (end 1.88 -6.19) (layer B.Cu) (width 0.15))
(fp_line (start 1.88 -5.61) (end 1.88 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 1.13 -6.11) (end 1.02 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start 1.02 -6.11) (end 0.92 -6.19) (layer B.Cu) (width 0.15))
(fp_line (start 0.92 -6.19) (end 0.88 -6.25) (layer B.Cu) (width 0.15))
(fp_line (start 0.88 -6.25) (end 0.83 -6.42) (layer B.Cu) (width 0.15))
(fp_line (start 0.83 -6.11) (end 0.83 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 3.84 -6.32) (end 3.84 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 3.78 -6.17) (end 3.84 -6.32) (layer B.Cu) (width 0.15))
(fp_line (start 3.69 -6.1) (end 3.78 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start 3.51 -6.1) (end 3.69 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 3.4 -6.18) (end 3.51 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 3.36 -6.88) (end 3.4 -7.02) (layer B.Cu) (width 0.15))
(fp_line (start 3.36 -6.75) (end 3.36 -6.88) (layer B.Cu) (width 0.15))
(fp_line (start 3.41 -6.61) (end 3.36 -6.75) (layer B.Cu) (width 0.15))
(fp_line (start 3.51 -6.53) (end 3.41 -6.61) (layer B.Cu) (width 0.15))
(fp_line (start 3.75 -6.53) (end 3.51 -6.53) (layer B.Cu) (width 0.15))
(fp_line (start 3.84 -6.46) (end 3.75 -6.53) (layer B.Cu) (width 0.15))
(fp_line (start 3.74 -7.11) (end 3.84 -7.03) (layer B.Cu) (width 0.15))
(fp_line (start 3.51 -7.11) (end 3.74 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 3.4 -7.02) (end 3.51 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -0.08 -7.02) (end 0.03 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 0.03 -7.11) (end 0.26 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start 0.26 -7.11) (end 0.36 -7.03) (layer B.Cu) (width 0.15))
(fp_line (start 0.36 -6.46) (end 0.27 -6.53) (layer B.Cu) (width 0.15))
(fp_line (start 0.27 -6.53) (end 0.03 -6.53) (layer B.Cu) (width 0.15))
(fp_line (start 0.03 -6.53) (end -0.07 -6.61) (layer B.Cu) (width 0.15))
(fp_line (start -0.07 -6.61) (end -0.12 -6.75) (layer B.Cu) (width 0.15))
(fp_line (start -0.12 -6.75) (end -0.12 -6.88) (layer B.Cu) (width 0.15))
(fp_line (start -0.12 -6.88) (end -0.08 -7.02) (layer B.Cu) (width 0.15))
(fp_line (start -0.08 -6.18) (end 0.03 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 0.03 -6.1) (end 0.21 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start 0.21 -6.1) (end 0.3 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start 0.3 -6.17) (end 0.36 -6.32) (layer B.Cu) (width 0.15))
(fp_line (start 0.36 -6.32) (end 0.36 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -0.98 -7.11) (end -0.98 -5.61) (layer B.Cu) (width 0.15))
(fp_line (start -0.92 -6.17) (end -0.98 -6.24) (layer B.Cu) (width 0.15))
(fp_line (start -0.84 -6.11) (end -0.92 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start -0.7 -6.11) (end -0.84 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start -0.6 -6.18) (end -0.7 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start -0.55 -6.33) (end -0.6 -6.18) (layer B.Cu) (width 0.15))
(fp_line (start -0.55 -7.11) (end -0.55 -6.33) (layer B.Cu) (width 0.15))
(fp_line (start -2.21 -7.11) (end -2.21 -6.33) (layer B.Cu) (width 0.15))
(fp_line (start -2.21 -6.33) (end -2.26 -6.18) (layer B.Cu) (width 0.15))
(fp_line (start -2.26 -6.18) (end -2.36 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start -2.36 -6.11) (end -2.5 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start -2.5 -6.11) (end -2.58 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start -2.58 -6.17) (end -2.64 -6.24) (layer B.Cu) (width 0.15))
(fp_line (start -2.64 -6.11) (end -2.64 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -3.55 -6.59) (end -3.07 -6.59) (layer B.Cu) (width 0.15))
(fp_line (start -3.07 -6.59) (end -3.07 -6.32) (layer B.Cu) (width 0.15))
(fp_line (start -3.07 -6.32) (end -3.12 -6.19) (layer B.Cu) (width 0.15))
(fp_line (start -3.12 -6.19) (end -3.22 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start -3.22 -6.1) (end -3.39 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start -3.39 -6.1) (end -3.49 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start -3.49 -6.17) (end -3.55 -6.32) (layer B.Cu) (width 0.15))
(fp_line (start -3.55 -6.32) (end -3.55 -6.9) (layer B.Cu) (width 0.15))
(fp_line (start -3.55 -6.9) (end -3.5 -7.04) (layer B.Cu) (width 0.15))
(fp_line (start -3.5 -7.04) (end -3.4 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -3.4 -7.11) (end -3.22 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -3.22 -7.11) (end -3.12 -7.04) (layer B.Cu) (width 0.15))
(fp_line (start -4.41 -6.1) (end -4.41 -7.61) (layer B.Cu) (width 0.15))
(fp_line (start -4.3 -6.1) (end -4.12 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start -4.3 -7.1) (end -4.11 -7.1) (layer B.Cu) (width 0.15))
(fp_line (start -4.3 -6.1) (end -4.38 -6.16) (layer B.Cu) (width 0.15))
(fp_line (start -4.03 -6.17) (end -4.12 -6.1) (layer B.Cu) (width 0.15))
(fp_line (start -3.98 -6.24) (end -4.03 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start -3.93 -6.4) (end -3.98 -6.24) (layer B.Cu) (width 0.15))
(fp_line (start -3.93 -6.81) (end -3.93 -6.4) (layer B.Cu) (width 0.15))
(fp_line (start -3.98 -6.95) (end -3.93 -6.81) (layer B.Cu) (width 0.15))
(fp_line (start -4.02 -7.02) (end -3.98 -6.95) (layer B.Cu) (width 0.15))
(fp_line (start -4.12 -7.1) (end -4.02 -7.02) (layer B.Cu) (width 0.15))
(fp_line (start -4.4 -7.03) (end -4.3 -7.1) (layer B.Cu) (width 0.15))
(fp_line (start -5.36 -6.4) (end -5.36 -6.81) (layer B.Cu) (width 0.15))
(fp_line (start -5.36 -6.81) (end -5.31 -6.95) (layer B.Cu) (width 0.15))
(fp_line (start -5.31 -6.95) (end -5.26 -7.04) (layer B.Cu) (width 0.15))
(fp_line (start -5.26 -7.04) (end -5.16 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -5.16 -7.11) (end -5.02 -7.11) (layer B.Cu) (width 0.15))
(fp_line (start -5.02 -7.11) (end -4.92 -7.03) (layer B.Cu) (width 0.15))
(fp_line (start -4.92 -7.03) (end -4.88 -6.96) (layer B.Cu) (width 0.15))
(fp_line (start -4.88 -6.96) (end -4.83 -6.82) (layer B.Cu) (width 0.15))
(fp_line (start -4.83 -6.82) (end -4.83 -6.41) (layer B.Cu) (width 0.15))
(fp_line (start -4.83 -6.41) (end -4.88 -6.25) (layer B.Cu) (width 0.15))
(fp_line (start -4.88 -6.25) (end -4.93 -6.18) (layer B.Cu) (width 0.15))
(fp_line (start -4.93 -6.18) (end -5.02 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start -5.02 -6.11) (end -5.17 -6.11) (layer B.Cu) (width 0.15))
(fp_line (start -5.17 -6.11) (end -5.25 -6.17) (layer B.Cu) (width 0.15))
(fp_line (start -5.25 -6.17) (end -5.31 -6.25) (layer B.Cu) (width 0.15))
(fp_line (start -5.31 -6.25) (end -5.36 -6.4) (layer B.Cu) (width 0.15))
(fp_poly (pts (xy -3.63728 -5.38988) (xy -3.57378 -5.35686) (xy -3.43408 -5.26796) (xy -3.23342 -5.13842)
(xy -2.9972 -4.9784) (xy -2.75844 -4.81838) (xy -2.56286 -4.6863) (xy -2.4257 -4.59994)
(xy -2.36982 -4.56692) (xy -2.33934 -4.57708) (xy -2.22504 -4.63296) (xy -2.06248 -4.71932)
(xy -1.96596 -4.76758) (xy -1.8161 -4.83362) (xy -1.74244 -4.84632) (xy -1.72974 -4.826)
(xy -1.67386 -4.70916) (xy -1.5875 -4.51358) (xy -1.4732 -4.25196) (xy -1.34366 -3.9497)
(xy -1.2065 -3.6195) (xy -1.0668 -3.28422) (xy -0.93472 -2.96672) (xy -0.81534 -2.6797)
(xy -0.72136 -2.44602) (xy -0.6604 -2.28346) (xy -0.63754 -2.21234) (xy -0.64516 -2.1971)
(xy -0.71882 -2.12598) (xy -0.8509 -2.02692) (xy -1.13538 -1.79578) (xy -1.41478 -1.44526)
(xy -1.58496 -1.04902) (xy -1.64338 -0.60706) (xy -1.59512 -0.19812) (xy -1.43256 0.19558)
(xy -1.15824 0.54864) (xy -0.8255 0.8128) (xy -0.43688 0.9779) (xy 0 1.03378)
(xy 0.4191 0.98552) (xy 0.82042 0.82804) (xy 1.17348 0.5588) (xy 1.32334 0.38608)
(xy 1.52908 0.02794) (xy 1.64592 -0.35814) (xy 1.65862 -0.45466) (xy 1.64084 -0.8763)
(xy 1.51638 -1.28016) (xy 1.2954 -1.64084) (xy 0.98552 -1.93802) (xy 0.94742 -1.96596)
(xy 0.80264 -2.07264) (xy 0.70866 -2.1463) (xy 0.63246 -2.20726) (xy 1.1684 -3.50012)
(xy 1.25476 -3.70586) (xy 1.40208 -4.05638) (xy 1.53162 -4.36118) (xy 1.63576 -4.60502)
(xy 1.70688 -4.76504) (xy 1.73736 -4.83108) (xy 1.74244 -4.83362) (xy 1.78816 -4.84124)
(xy 1.88722 -4.80568) (xy 2.06756 -4.71932) (xy 2.18694 -4.65836) (xy 2.3241 -4.59232)
(xy 2.38506 -4.56692) (xy 2.4384 -4.59486) (xy 2.57048 -4.68122) (xy 2.76098 -4.81076)
(xy 2.99212 -4.9657) (xy 3.2131 -5.11556) (xy 3.4163 -5.25018) (xy 3.56362 -5.34416)
(xy 3.63474 -5.38226) (xy 3.6449 -5.38226) (xy 3.7084 -5.3467) (xy 3.82524 -5.25018)
(xy 4.0005 -5.08254) (xy 4.24942 -4.8387) (xy 4.28752 -4.8006) (xy 4.49326 -4.59232)
(xy 4.65836 -4.41706) (xy 4.77012 -4.2926) (xy 4.81076 -4.23672) (xy 4.81076 -4.23672)
(xy 4.77266 -4.1656) (xy 4.68122 -4.01828) (xy 4.5466 -3.81508) (xy 4.38404 -3.57378)
(xy 3.95478 -2.95402) (xy 4.191 -2.36728) (xy 4.26212 -2.18694) (xy 4.35356 -1.9685)
(xy 4.42214 -1.81356) (xy 4.4577 -1.74498) (xy 4.5212 -1.72212) (xy 4.68122 -1.68402)
(xy 4.9149 -1.63576) (xy 5.19176 -1.58496) (xy 5.45592 -1.5367) (xy 5.69468 -1.49098)
(xy 5.8674 -1.45796) (xy 5.94614 -1.44272) (xy 5.96392 -1.43002) (xy 5.97916 -1.39192)
(xy 5.98932 -1.31064) (xy 5.9944 -1.16586) (xy 5.99948 -0.93726) (xy 5.99948 -0.60706)
(xy 5.99948 -0.5715) (xy 5.9944 -0.25654) (xy 5.98932 -0.00508) (xy 5.9817 0.16002)
(xy 5.969 0.22606) (xy 5.969 0.22606) (xy 5.89534 0.24384) (xy 5.72516 0.2794)
(xy 5.4864 0.32766) (xy 5.20192 0.381) (xy 5.18414 0.38354) (xy 4.89966 0.43942)
(xy 4.66344 0.48768) (xy 4.4958 0.52578) (xy 4.42722 0.54864) (xy 4.41198 0.56896)
(xy 4.35356 0.68072) (xy 4.27228 0.85598) (xy 4.1783 1.06934) (xy 4.08686 1.29286)
(xy 4.00558 1.49352) (xy 3.95224 1.64338) (xy 3.937 1.71196) (xy 3.937 1.71196)
(xy 3.98018 1.78054) (xy 4.0767 1.92786) (xy 4.2164 2.13106) (xy 4.3815 2.37236)
(xy 4.3942 2.39268) (xy 4.55676 2.63144) (xy 4.68884 2.83464) (xy 4.77774 2.97942)
(xy 4.81076 3.04292) (xy 4.81076 3.048) (xy 4.75488 3.11912) (xy 4.63296 3.25628)
(xy 4.4577 3.43916) (xy 4.24942 3.64998) (xy 4.18084 3.71602) (xy 3.9497 3.94462)
(xy 3.78714 4.09194) (xy 3.68554 4.17322) (xy 3.63728 4.191) (xy 3.63474 4.18846)
(xy 3.56362 4.14528) (xy 3.41122 4.04622) (xy 3.20548 3.90652) (xy 2.96164 3.74142)
(xy 2.9464 3.73126) (xy 2.7051 3.5687) (xy 2.50698 3.43154) (xy 2.36474 3.33756)
(xy 2.30124 3.302) (xy 2.29108 3.302) (xy 2.19456 3.32994) (xy 2.02438 3.38836)
(xy 1.81356 3.46964) (xy 1.59258 3.55854) (xy 1.38938 3.6449) (xy 1.23952 3.71348)
(xy 1.1684 3.75412) (xy 1.16586 3.75666) (xy 1.14046 3.84302) (xy 1.09982 4.02336)
(xy 1.04648 4.26974) (xy 0.99314 4.56438) (xy 0.98298 4.6101) (xy 0.92964 4.89712)
(xy 0.88392 5.13334) (xy 0.84836 5.2959) (xy 0.83312 5.36448) (xy 0.79248 5.3721)
(xy 0.65278 5.38226) (xy 0.43942 5.38988) (xy 0.18034 5.39242) (xy -0.09144 5.38988)
(xy -0.3556 5.3848) (xy -0.58166 5.37718) (xy -0.74422 5.36448) (xy -0.8128 5.35178)
(xy -0.81534 5.3467) (xy -0.8382 5.2578) (xy -0.87884 5.08) (xy -0.92964 4.83108)
(xy -0.98552 4.53644) (xy -0.99568 4.4831) (xy -1.04902 4.19862) (xy -1.09728 3.96494)
(xy -1.13284 3.80492) (xy -1.15062 3.74142) (xy -1.17602 3.72872) (xy -1.29286 3.67538)
(xy -1.48336 3.59664) (xy -1.72212 3.50012) (xy -2.27076 3.27914) (xy -2.94386 3.74142)
(xy -3.00482 3.78206) (xy -3.24866 3.94716) (xy -3.44678 4.07924) (xy -3.58648 4.16814)
(xy -3.64236 4.20116) (xy -3.64744 4.19862) (xy -3.71602 4.1402) (xy -3.8481 4.01574)
(xy -4.03098 3.83794) (xy -4.2418 3.62712) (xy -4.39928 3.46964) (xy -4.5847 3.28168)
(xy -4.70154 3.15468) (xy -4.76758 3.0734) (xy -4.79044 3.0226) (xy -4.78282 2.98958)
(xy -4.73964 2.921) (xy -4.64058 2.77368) (xy -4.50342 2.56794) (xy -4.33832 2.33172)
(xy -4.2037 2.13106) (xy -4.05638 1.905) (xy -3.9624 1.74498) (xy -3.92938 1.66624)
(xy -3.937 1.63322) (xy -3.98526 1.50114) (xy -4.064 1.30048) (xy -4.1656 1.06426)
(xy -4.39928 0.53086) (xy -4.7498 0.46482) (xy -4.96062 0.42418) (xy -5.2578 0.36576)
(xy -5.54228 0.31242) (xy -5.98424 0.22606) (xy -5.99948 -1.39954) (xy -5.9309 -1.43002)
(xy -5.86486 -1.4478) (xy -5.7023 -1.48336) (xy -5.46862 -1.52908) (xy -5.19176 -1.58242)
(xy -4.95554 -1.6256) (xy -4.71932 -1.67132) (xy -4.54914 -1.70434) (xy -4.47294 -1.71958)
(xy -4.45516 -1.74498) (xy -4.3942 -1.86182) (xy -4.31038 -2.04216) (xy -4.2164 -2.26314)
(xy -4.12242 -2.4892) (xy -4.0386 -2.70002) (xy -3.98018 -2.86004) (xy -3.95732 -2.94386)
(xy -3.99034 -3.00482) (xy -4.07924 -3.14452) (xy -4.21132 -3.34264) (xy -4.37134 -3.57886)
(xy -4.5339 -3.81508) (xy -4.66852 -4.01574) (xy -4.76504 -4.16052) (xy -4.80314 -4.22656)
(xy -4.78282 -4.27228) (xy -4.68884 -4.38658) (xy -4.51104 -4.56946) (xy -4.24688 -4.83108)
(xy -4.2037 -4.87426) (xy -3.99288 -5.07492) (xy -3.81508 -5.24002) (xy -3.69316 -5.34924)
(xy -3.63728 -5.38988)) (layer B.Cu) (width 0.00254))
)
(module Connectors:1pin (layer F.Cu) (tedit 5A47B020) (tstamp 5A47AF9A)
(at 88.9 87.04)
(descr "module 1 pin (ou trou mecanique de percage)")
(tags DEV)
(path /5A47B067)
(fp_text reference J99 (at 0 -3.048) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value PEG_HOLE (at 0 3) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_circle (center 0 0) (end 2 0.8) (layer F.Fab) (width 0.1))
(fp_circle (center 0 0) (end 2.6 0) (layer F.CrtYd) (width 0.05))
(fp_circle (center 0 0) (end 0 -2.286) (layer F.SilkS) (width 0.12))
(pad "" np_thru_hole circle (at 0 0) (size 5.5 5.5) (drill 5.5) (layers *.Cu *.Mask))
)
(module OpenC64Cart:Pin_Header_Straight_1x03-NoSilkS (layer F.Cu) (tedit 59726341) (tstamp 5A47AF9B)
(at 97.028 83.312 90)
(descr "Through hole pin header")
(tags "pin header")
(path /59715C53)
(fp_text reference P1 (at 0 -2.794 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 6.85) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 3 "Net-(P1-Pad1)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 4 "Net-(P1-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 5 "Net-(P1-Pad3)"))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:Pin_Header_Straight_1x02-NoSilkS (layer F.Cu) (tedit 5972624A) (tstamp 5A47AFA1)
(at 97.028 88.392 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5971547B)
(fp_text reference P2 (at 0 -2.794 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X02 (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 27 "Net-(P2-Pad1)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:Pin_Header_Straight_1x02-NoSilkS (layer F.Cu) (tedit 5972624A) (tstamp 5A47AFA6)
(at 97.028 93.472 90)
(descr "Through hole pin header")
(tags "pin header")
(path /597157A2)
(fp_text reference P3 (at 0 -2.794 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X02 (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 4.3) (end 1.75 4.3) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 28 "Net-(P3-Pad1)"))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 2.032) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x02_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:Pin_Header_Straight_1x03-NoSilkS (layer F.Cu) (tedit 59726341) (tstamp 5A47AFAB)
(at 78.613 93.472 90)
(descr "Through hole pin header")
(tags "pin header")
(path /597272F6)
(fp_text reference P4 (at 0 -2.794 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 6.85) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 29 "Net-(P4-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:Pin_Header_Straight_1x03-NoSilkS (layer F.Cu) (tedit 59726341) (tstamp 5A47AFB1)
(at 78.613 88.392 90)
(descr "Through hole pin header")
(tags "pin header")
(path /5972743E)
(fp_text reference P5 (at 0 -2.794 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 6.85) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 30 "Net-(P5-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:Pin_Header_Straight_1x03-NoSilkS (layer F.Cu) (tedit 59726341) (tstamp 5A47AFB7)
(at 78.613 83.312 90)
(descr "Through hole pin header")
(tags "pin header")
(path /59727475)
(fp_text reference P6 (at 0 -2.794 90) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value CONN_01X03 (at 0 -3.1 90) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -1.75 -1.75) (end -1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start 1.75 -1.75) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 -1.75) (end 1.75 -1.75) (layer F.CrtYd) (width 0.05))
(fp_line (start -1.75 6.85) (end 1.75 6.85) (layer F.CrtYd) (width 0.05))
(pad 1 thru_hole rect (at 0 0 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 2 +5V))
(pad 2 thru_hole oval (at 0 2.54 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 31 "Net-(P6-Pad2)"))
(pad 3 thru_hole oval (at 0 5.08 90) (size 2.032 1.7272) (drill 1.016) (layers *.Cu *.Mask)
(net 1 GND))
(model Pin_Headers.3dshapes/Pin_Header_Straight_1x03_Pitch2.54mm.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:PCB_PUSH (layer F.Cu) (tedit 5A47B11B) (tstamp 5A47AFBD)
(at 69.2912 86.07044 270)
(descr "PCB pushbutton, Tyco FSM6x6 series")
(tags pushbutton)
(path /597269BF)
(fp_text reference SW1 (at 0 -5.08 270) (layer F.SilkS) hide
(effects (font (size 1.27 1.27) (thickness 0.3175)))
)
(fp_text value RESET (at -4.699 0 360) (layer F.SilkS)
(effects (font (size 1.27 1.27) (thickness 0.254)))
)
(fp_line (start -3.048 -3.048) (end 3.048 -3.048) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.048 -3.048) (end 3.048 3.048) (layer F.SilkS) (width 0.3048))
(fp_line (start 3.048 3.048) (end -3.048 3.048) (layer F.SilkS) (width 0.3048))
(fp_line (start -3.048 3.048) (end -3.048 -3.048) (layer F.SilkS) (width 0.3048))
(fp_circle (center 0 0) (end -0.762 0.254) (layer F.SilkS) (width 2.54))
(pad 1 thru_hole circle (at -2.25044 -3.2512 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 2 thru_hole circle (at -2.25044 3.2512 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 1 GND))
(pad 4 thru_hole circle (at 2.25044 -3.2512 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 32 "Net-(SW1-Pad3)"))
(pad 3 thru_hole circle (at 2.25044 3.2512 270) (size 1.99898 1.99898) (drill 1.00076) (layers *.Cu *.Mask F.SilkS)
(net 32 "Net-(SW1-Pad3)"))
(model ${P3D_WALTER}/switch/pcb_push.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module OpenC64Cart:C64-Cart locked (layer F.Cu) (tedit 5A47AD92) (tstamp 5A47AFC4)
(at 59.69 129.54)
(path /59713F4B)
(fp_text reference U1 (at 3.81 -9.018274) (layer F.SilkS) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value C64-Exp-Port (at 30.48 1.27) (layer F.Fab) hide
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 58.42 -35.56) (end 0 -35.56) (layer Dwgs.User) (width 0.15))
(fp_text user "Card will be inside C64 up to this point" (at 29.21 -36.576) (layer Dwgs.User)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start 58.42 0) (end 58.42 -35.56) (layer Dwgs.User) (width 0.15))
(fp_line (start 0 0) (end 58.42 0) (layer F.Fab) (width 0.15))
(fp_line (start 0 -35.56) (end 0 0) (layer Dwgs.User) (width 0.15))
(pad 1 smd rect (at 2.54 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 1 GND))
(pad 4 smd rect (at 10.16 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 5 smd rect (at 12.7 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 6 smd rect (at 15.24 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 7 smd rect (at 17.78 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 8 smd rect (at 20.32 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 27 "Net-(P2-Pad1)"))
(pad 9 smd rect (at 22.86 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 28 "Net-(P3-Pad1)"))
(pad 10 smd rect (at 25.4 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 11 smd rect (at 27.94 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 5 "Net-(P1-Pad3)"))
(pad 13 smd rect (at 33.02 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 14 smd rect (at 35.56 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 13 "Net-(U1-Pad14)"))
(pad 12 smd rect (at 30.48 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask))
(pad 2 smd rect (at 5.08 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 2 +5V))
(pad 3 smd rect (at 7.62 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 2 +5V))
(pad 15 smd rect (at 38.1 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 12 "Net-(U1-Pad15)"))
(pad 16 smd rect (at 40.64 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 11 "Net-(U1-Pad16)"))
(pad 17 smd rect (at 43.18 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 10 "Net-(U1-Pad17)"))
(pad 18 smd rect (at 45.72 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 9 "Net-(U1-Pad18)"))
(pad 19 smd rect (at 48.26 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 8 "Net-(U1-Pad19)"))
(pad 20 smd rect (at 50.8 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 7 "Net-(U1-Pad20)"))
(pad 21 smd rect (at 53.34 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 6 "Net-(U1-Pad21)"))
(pad 22 smd rect (at 55.88 -3.938274 180) (size 1.524 8) (layers F.Cu F.Mask)
(net 1 GND))
(pad F smd rect (at 15.24 -3.938274) (size 1.524 8) (layers B.Cu B.Mask))
(pad H smd rect (at 17.78 -3.938274) (size 1.524 8) (layers B.Cu B.Mask))
(pad J smd rect (at 20.32 -3.938274) (size 1.524 8) (layers B.Cu B.Mask))
(pad K smd rect (at 22.86 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 14 "Net-(U1-PadK)"))
(pad L smd rect (at 25.4 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 15 "Net-(U1-PadL)"))
(pad M smd rect (at 27.94 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 16 "Net-(U1-PadM)"))
(pad B smd rect (at 5.08 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 3 "Net-(P1-Pad1)"))
(pad C smd rect (at 7.62 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 32 "Net-(SW1-Pad3)"))
(pad D smd rect (at 10.16 -3.938274) (size 1.524 8) (layers B.Cu B.Mask))
(pad E smd rect (at 12.7 -3.938274) (size 1.524 8) (layers B.Cu B.Mask))
(pad A smd rect (at 2.54 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 1 GND))
(pad U smd rect (at 43.18 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 17 "Net-(U1-PadU)"))
(pad V smd rect (at 45.72 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 18 "Net-(U1-PadV)"))
(pad W smd rect (at 48.26 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 19 "Net-(U1-PadW)"))
(pad X smd rect (at 50.8 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 20 "Net-(U1-PadX)"))
(pad Y smd rect (at 53.34 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 21 "Net-(U1-PadY)"))
(pad Z smd rect (at 55.88 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 1 GND))
(pad R smd rect (at 35.56 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 22 "Net-(U1-PadR)"))
(pad S smd rect (at 38.1 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 23 "Net-(U1-PadS)"))
(pad T smd rect (at 40.64 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 24 "Net-(U1-PadT)"))
(pad P smd rect (at 33.02 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 25 "Net-(U1-PadP)"))
(pad N smd rect (at 30.48 -3.938274) (size 1.524 8) (layers B.Cu B.Mask)
(net 26 "Net-(U1-PadN)"))
(pad NoSo smd rect (at 29.21 -3.81 180) (size 58.42 8.3) (layers B.Mask))
(pad NoSo smd rect (at 29.21 -3.81 180) (size 58.42 8.3) (layers F.Mask))
)
(gr_arc (start 60.96 80.01) (end 59.69 80.01) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 116.84 80.01) (end 116.84 78.74) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 117.348 128.778) (end 118.11 128.778) (angle 90) (layer Edge.Cuts) (width 0.15))
(gr_arc (start 60.452 128.778) (end 60.452 129.54) (angle 90) (layer Edge.Cuts) (width 0.15))
(dimension 2.54 (width 0.3) (layer F.Fab)
(gr_text "2,540 mm" (at 60.96 146.13) (layer F.Fab)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 59.69 125.73) (xy 59.69 147.48)))
(feature2 (pts (xy 62.23 125.73) (xy 62.23 147.48)))
(crossbar (pts (xy 62.23 144.78) (xy 59.69 144.78)))
(arrow1a (pts (xy 59.69 144.78) (xy 60.816504 144.193579)))
(arrow1b (pts (xy 59.69 144.78) (xy 60.816504 145.366421)))
(arrow2a (pts (xy 62.23 144.78) (xy 61.103496 144.193579)))
(arrow2b (pts (xy 62.23 144.78) (xy 61.103496 145.366421)))
)
(dimension 2.54 (width 0.3) (layer F.Fab)
(gr_text "2,540 mm" (at 116.84 146.13) (layer F.Fab)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 118.11 125.476) (xy 118.11 147.48)))
(feature2 (pts (xy 115.57 125.476) (xy 115.57 147.48)))
(crossbar (pts (xy 115.57 144.78) (xy 118.11 144.78)))
(arrow1a (pts (xy 118.11 144.78) (xy 116.983496 145.366421)))
(arrow1b (pts (xy 118.11 144.78) (xy 116.983496 144.193579)))
(arrow2a (pts (xy 115.57 144.78) (xy 116.696504 145.366421)))
(arrow2b (pts (xy 115.57 144.78) (xy 116.696504 144.193579)))
)
(gr_text V2 (at 63.5 119.38) (layer B.SilkS) (tstamp 597327A7)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text ROM (at 105.156 83.439) (layer F.SilkS) (tstamp 59732585)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text A13 (at 75.946 93.472) (layer F.SilkS) (tstamp 597287C9)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text A14 (at 75.946 88.392) (layer F.SilkS) (tstamp 597287C5)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text A15 (at 75.946 83.312) (layer F.SilkS) (tstamp 5972878B)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text LO (at 83.693 81.026) (layer F.SilkS) (tstamp 5972874F)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text HI (at 78.5368 81.026) (layer F.SilkS) (tstamp 59728742)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text github.com/SukkoPera/OpenC64Cart (at 94.742 119.38) (layer B.SilkS)
(effects (font (size 1.5 1.5) (thickness 0.3)) (justify mirror))
)
(gr_text HI (at 97.028 81.026) (layer F.SilkS) (tstamp 597265B7)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text LO (at 102.108 81.026) (layer F.SilkS) (tstamp 597265B1)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text EXROM (at 103.6955 93.5482) (layer F.SilkS) (tstamp 59726587)
(effects (font (size 1 1) (thickness 0.15)))
)
(gr_text GAME (at 103.124072 88.4555) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(dimension 58.42 (width 0.3) (layer F.Fab)
(gr_text "58,420 mm" (at 88.9 138.51) (layer F.Fab)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 118.11 129.54) (xy 118.11 139.86)))
(feature2 (pts (xy 59.69 129.54) (xy 59.69 139.86)))
(crossbar (pts (xy 59.69 137.16) (xy 118.11 137.16)))
(arrow1a (pts (xy 118.11 137.16) (xy 116.983496 137.746421)))
(arrow1b (pts (xy 118.11 137.16) (xy 116.983496 136.573579)))
(arrow2a (pts (xy 59.69 137.16) (xy 60.816504 137.746421)))
(arrow2b (pts (xy 59.69 137.16) (xy 60.816504 136.573579)))
)
(dimension 50.8 (width 0.3) (layer F.Fab)
(gr_text "50,800 mm" (at 128.35 104.14 270) (layer F.Fab) (tstamp 59726DD5)
(effects (font (size 1.5 1.5) (thickness 0.3)))
)
(feature1 (pts (xy 118.11 129.54) (xy 129.7 129.54)))
(feature2 (pts (xy 118.11 78.74) (xy 129.7 78.74)))
(crossbar (pts (xy 127 78.74) (xy 127 129.54)))
(arrow1a (pts (xy 127 129.54) (xy 126.413579 128.413496)))
(arrow1b (pts (xy 127 129.54) (xy 127.586421 128.413496)))
(arrow2a (pts (xy 127 78.74) (xy 126.413579 79.866504)))
(arrow2b (pts (xy 127 78.74) (xy 127.586421 79.866504)))
)
(gr_line (start 59.69 128.778) (end 59.69 80.01) (layer Edge.Cuts) (width 0.15))
(gr_line (start 117.348 129.54) (end 60.452 129.54) (layer Edge.Cuts) (width 0.15))
(gr_line (start 118.11 80.01) (end 118.11 128.778) (layer Edge.Cuts) (width 0.15))
(gr_line (start 60.96 78.74) (end 116.84 78.74) (layer Edge.Cuts) (width 0.15))
(segment (start 116.84 86.995) (end 116.84 80.645) (width 0.8) (layer B.Cu) (net 1))
(via (at 116.84 80.645) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 116.84 93.345) (end 116.84 86.995) (width 0.8) (layer F.Cu) (net 1))
(via (at 116.84 86.995) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 116.84 99.695) (end 116.84 93.345) (width 0.8) (layer B.Cu) (net 1))
(via (at 116.84 93.345) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 60.96 86.995) (end 60.96 80.645) (width 0.8) (layer F.Cu) (net 1))
(via (at 60.96 80.645) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 60.96 93.345) (end 60.96 86.995) (width 0.8) (layer B.Cu) (net 1))
(via (at 60.96 86.995) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 60.96 99.695) (end 60.96 93.345) (width 0.8) (layer F.Cu) (net 1))
(via (at 60.96 93.345) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 116.84 118.745) (end 115.57 120.015) (width 0.8) (layer B.Cu) (net 1))
(segment (start 115.57 120.015) (end 115.57 125.601726) (width 0.8) (layer B.Cu) (net 1))
(segment (start 60.96 118.745) (end 62.23 120.015) (width 0.8) (layer B.Cu) (net 1))
(segment (start 62.23 120.015) (end 62.23 125.601726) (width 0.8) (layer B.Cu) (net 1))
(segment (start 116.84 106.68) (end 116.84 106.045) (width 0.8) (layer F.Cu) (net 1))
(segment (start 116.84 106.045) (end 116.84 99.695) (width 0.8) (layer B.Cu) (net 1))
(via (at 116.84 99.695) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 116.84 112.395) (end 116.84 106.68) (width 0.8) (layer F.Cu) (net 1))
(via (at 116.84 106.045) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(via (at 116.84 112.395) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 116.84 118.179315) (end 116.84 112.395) (width 0.8) (layer B.Cu) (net 1))
(segment (start 116.84 118.745) (end 116.84 118.179315) (width 0.8) (layer B.Cu) (net 1))
(segment (start 115.57 120.801726) (end 115.57 120.015) (width 0.8) (layer F.Cu) (net 1))
(segment (start 116.84 118.745) (end 115.57 120.015) (width 0.8) (layer F.Cu) (net 1))
(via (at 116.84 118.745) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 115.57 125.601726) (end 115.57 120.801726) (width 0.8) (layer F.Cu) (net 1))
(segment (start 60.96 106.045) (end 60.96 99.695) (width 0.8) (layer B.Cu) (net 1))
(via (at 60.96 99.695) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 60.96 112.395) (end 60.96 106.045) (width 0.8) (layer F.Cu) (net 1))
(via (at 60.96 106.045) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 60.96 118.745) (end 60.96 112.395) (width 0.8) (layer B.Cu) (net 1))
(via (at 60.96 112.395) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 62.23 120.015) (end 60.96 118.745) (width 0.8) (layer F.Cu) (net 1))
(via (at 60.96 118.745) (size 0.8) (drill 0.6) (layers F.Cu B.Cu) (net 1))
(segment (start 62.23 125.601726) (end 62.23 120.015) (width 0.8) (layer F.Cu) (net 1))
(segment (start 68.834 105.6205) (end 68.834 104.3705) (width 0.8) (layer F.Cu) (net 2))
(segment (start 64.77 118.11) (end 64.77 105.96) (width 0.8) (layer F.Cu) (net 2))
(segment (start 64.77 125.601726) (end 64.77 120.015) (width 0.8) (layer F.Cu) (net 2))
(segment (start 64.77 120.015) (end 64.77 118.11) (width 0.8) (layer F.Cu) (net 2))
(segment (start 67.31 125.601726) (end 67.31 120.801726) (width 0.8) (layer F.Cu) (net 2))
(segment (start 67.31 120.801726) (end 66.523274 120.015) (width 0.8) (layer F.Cu) (net 2))
(segment (start 66.523274 120.015) (end 64.77 120.015) (width 0.8) (layer F.Cu) (net 2))
(segment (start 68.58 104.3705) (end 71.6768 104.3705) (width 0.8) (layer F.Cu) (net 2))
(segment (start 71.6768 104.3705) (end 72.644 103.4033) (width 0.8) (layer F.Cu) (net 2))
(segment (start 64.77 105.96) (end 66.3595 104.3705) (width 0.8) (layer F.Cu) (net 2))
(segment (start 66.3595 104.3705) (end 68.58 104.3705) (width 0.8) (layer F.Cu) (net 2))
(segment (start 72.644 99.66325) (end 73.94575 100.965) (width 0.25) (layer F.Cu) (net 2))
(segment (start 73.94575 100.965) (end 75.8825 100.965) (width 0.25) (layer F.Cu) (net 2))
(segment (start 75.8825 100.965) (end 76.454 100.3935) (width 0.25) (layer F.Cu) (net 2))
(segment (start 78.105 95.504) (end 78.613 94.996) (width 0.25) (layer F.Cu) (net 2))
(segment (start 76.454 100.3935) (end 76.454 96.012) (width 0.25) (layer F.Cu) (net 2))
(segment (start 76.454 96.012) (end 76.962 95.504) (width 0.25) (layer F.Cu) (net 2))
(segment (start 76.962 95.504) (end 78.105 95.504) (width 0.25) (layer F.Cu) (net 2))
(segment (start 78.613 94.996) (end 78.613 93.472) (width 0.25) (layer F.Cu) (net 2))
(segment (start 72.644 99.314) (end 72.644 99.66325) (width 0.8) (layer F.Cu) (net 2))
(segment (start 78.613 88.392) (end 78.613 83.312) (width 0.254) (layer B.Cu) (net 2))
(segment (start 78.613 88.392) (end 78.613 93.472) (width 0.254) (layer B.Cu) (net 2))
(segment (start 72.644 101.21382) (end 72.644 99.314) (width 0.8) (layer F.Cu) (net 2))
(segment (start 72.644 103.4033) (end 72.644 101.21382) (width 0.8) (layer F.Cu) (net 2))
(segment (start 63.356609 119.236609) (end 63.356609 82.502891) (width 0.25) (layer F.Cu) (net 3))
(segment (start 63.356609 82.502891) (end 64.3255 81.534) (width 0.25) (layer F.Cu) (net 3))
(segment (start 64.3255 81.534) (end 96.52 81.534) (width 0.25) (layer F.Cu) (net 3))
(segment (start 96.52 81.534) (end 97.028 82.042) (width 0.25) (layer F.Cu) (net 3))
(segment (start 97.028 82.042) (end 97.028 83.312) (width 0.25) (layer F.Cu) (net 3))
(segment (start 63.356609 119.236609) (end 64.77 120.65) (width 0.25) (layer B.Cu) (net 3))
(segment (start 64.77 120.65) (end 64.77 125.601726) (width 0.25) (layer B.Cu) (net 3))
(via (at 63.356609 119.236609) (size 0.6) (drill 0.4) (layers F.Cu B.Cu) (net 3))
(segment (start 87.884 97.96418) (end 88.519 97.32918) (width 0.25) (layer F.Cu) (net 4))
(segment (start 92.329 97.32918) (end 92.964 97.96418) (width 0.25) (layer F.Cu) (net 4))
(segment (start 88.519 97.32918) (end 92.329 97.32918) (width 0.25) (layer F.Cu) (net 4))
(segment (start 92.964 99.314) (end 92.964 86.36) (width 0.25) (layer F.Cu) (net 4))
(segment (start 92.964 86.36) (end 93.599 85.725) (width 0.25) (layer F.Cu) (net 4))
(segment (start 93.599 85.725) (end 98.421 85.725) (width 0.25) (layer F.Cu) (net 4))
(segment (start 98.421 85.725) (end 99.568 84.578) (width 0.25) (layer F.Cu) (net 4))
(segment (start 99.568 84.578) (end 99.568 83.312) (width 0.25) (layer F.Cu) (net 4))
(segment (start 87.884 99.314) (end 87.884 97.96418) (width 0.25) (layer F.Cu) (net 4))
(segment (start 92.964 97.96418) (end 92.964 99.314) (width 0.25) (layer F.Cu) (net 4))
(segment (start 97.79 95.758) (end 95.758 97.79) (width 0.25) (layer B.Cu) (net 5))
(segment (start 95.758 97.79) (end 70.993 97.79) (width 0.25) (layer B.Cu) (net 5))
(segment (start 70.993 97.79) (end 70.485 98.298) (width 0.25) (layer B.Cu) (net 5))
(segment (start 102.108 94.742) (end 102.108 83.312) (width 0.25) (layer B.Cu) (net 5))
(segment (start 101.092 95.758) (end 102.108 94.742) (width 0.25) (layer B.Cu) (net 5))
(segment (start 101.092 95.758) (end 97.79 95.758) (width 0.25) (layer B.Cu) (net 5))