-
Notifications
You must be signed in to change notification settings - Fork 1
/
piano.kicad_pcb
1607 lines (1561 loc) · 94.7 KB
/
piano.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 20171130) (host pcbnew "(5.0.0)")
(general
(thickness 1.6)
(drawings 130)
(tracks 226)
(zones 0)
(modules 38)
(nets 32)
)
(page A4)
(layers
(0 F.Cu signal)
(31 B.Cu signal)
(32 B.Adhes user)
(33 F.Adhes user)
(34 B.Paste user)
(35 F.Paste user)
(36 B.SilkS user)
(37 F.SilkS user)
(38 B.Mask user)
(39 F.Mask user)
(40 Dwgs.User user)
(41 Cmts.User user)
(42 Eco1.User user)
(43 Eco2.User user)
(44 Edge.Cuts user)
(45 Margin user)
(46 B.CrtYd user)
(47 F.CrtYd user)
(48 B.Fab user)
(49 F.Fab user)
)
(setup
(last_trace_width 0.4)
(trace_clearance 0.4)
(zone_clearance 0.508)
(zone_45_only no)
(trace_min 0.4)
(segment_width 0.2)
(edge_width 0.1)
(via_size 0.8)
(via_drill 0.5)
(via_min_size 0.4)
(via_min_drill 0.3)
(uvia_size 0.3)
(uvia_drill 0.1)
(uvias_allowed no)
(uvia_min_size 0.2)
(uvia_min_drill 0.1)
(pcb_text_width 0.3)
(pcb_text_size 1.5 1.5)
(mod_edge_width 0.15)
(mod_text_size 1 1)
(mod_text_width 0.15)
(pad_size 1.5 1.5)
(pad_drill 0.6)
(pad_to_mask_clearance 0)
(aux_axis_origin 0 0)
(visible_elements 7FFFFFFF)
(pcbplotparams
(layerselection 0x010fc_ffffffff)
(usegerberextensions true)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(excludeedgelayer true)
(linewidth 0.100000)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(padsonsilk false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory ""))
)
(net 0 "")
(net 1 "Net-(D1-Pad2)")
(net 2 "Net-(D1-Pad1)")
(net 3 "Net-(D2-Pad2)")
(net 4 "Net-(D3-Pad2)")
(net 5 "Net-(D4-Pad2)")
(net 6 "Net-(D5-Pad2)")
(net 7 "Net-(D5-Pad1)")
(net 8 "Net-(D6-Pad2)")
(net 9 "Net-(D7-Pad2)")
(net 10 "Net-(D8-Pad2)")
(net 11 "Net-(D9-Pad2)")
(net 12 "Net-(D10-Pad1)")
(net 13 "Net-(D10-Pad2)")
(net 14 "Net-(D11-Pad2)")
(net 15 "Net-(D12-Pad2)")
(net 16 "Net-(D13-Pad1)")
(net 17 "Net-(D13-Pad2)")
(net 18 "Net-(D14-Pad2)")
(net 19 "Net-(D15-Pad2)")
(net 20 "Net-(K1-Pad1)")
(net 21 "Net-(K10-Pad1)")
(net 22 "Net-(K11-Pad1)")
(net 23 "Net-(K12-Pad1)")
(net 24 "Net-(MH1-Pad1)")
(net 25 "Net-(MH2-Pad1)")
(net 26 "Net-(MH3-Pad1)")
(net 27 "Net-(MH4-Pad1)")
(net 28 "Net-(MH5-Pad1)")
(net 29 "Net-(MH6-Pad1)")
(net 30 "Net-(MH7-Pad1)")
(net 31 "Net-(MH8-Pad1)")
(net_class Default "This is the default net class."
(clearance 0.4)
(trace_width 0.4)
(via_dia 0.8)
(via_drill 0.5)
(uvia_dia 0.3)
(uvia_drill 0.1)
(diff_pair_gap 0.25)
(diff_pair_width 0.4)
(add_net "Net-(D1-Pad1)")
(add_net "Net-(D1-Pad2)")
(add_net "Net-(D10-Pad1)")
(add_net "Net-(D10-Pad2)")
(add_net "Net-(D11-Pad2)")
(add_net "Net-(D12-Pad2)")
(add_net "Net-(D13-Pad1)")
(add_net "Net-(D13-Pad2)")
(add_net "Net-(D14-Pad2)")
(add_net "Net-(D15-Pad2)")
(add_net "Net-(D2-Pad2)")
(add_net "Net-(D3-Pad2)")
(add_net "Net-(D4-Pad2)")
(add_net "Net-(D5-Pad1)")
(add_net "Net-(D5-Pad2)")
(add_net "Net-(D6-Pad2)")
(add_net "Net-(D7-Pad2)")
(add_net "Net-(D8-Pad2)")
(add_net "Net-(D9-Pad2)")
(add_net "Net-(K1-Pad1)")
(add_net "Net-(K10-Pad1)")
(add_net "Net-(K11-Pad1)")
(add_net "Net-(K12-Pad1)")
(add_net "Net-(MH1-Pad1)")
(add_net "Net-(MH2-Pad1)")
(add_net "Net-(MH3-Pad1)")
(add_net "Net-(MH4-Pad1)")
(add_net "Net-(MH5-Pad1)")
(add_net "Net-(MH6-Pad1)")
(add_net "Net-(MH7-Pad1)")
(add_net "Net-(MH8-Pad1)")
)
(module keyswitchMx:SW_Cherry_MX1A_1.00u_PCB (layer F.Cu) (tedit 5BC6D066) (tstamp 5C076005)
(at 44.58 127.32)
(descr "Cherry MX keyswitch, MX1A, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "cherry mx keyswitch MX1A 1.00u PCB")
(path /5BFA6713)
(fp_text reference K1 (at 0 -7.874) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value KEYSW (at 0 7.874) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -6.985 6.985) (end -6.985 -6.985) (layer F.SilkS) (width 0.12))
(fp_line (start 6.985 6.985) (end -6.985 6.985) (layer F.SilkS) (width 0.12))
(fp_line (start 6.985 -6.985) (end 6.985 6.985) (layer F.SilkS) (width 0.12))
(fp_line (start -6.985 -6.985) (end 6.985 -6.985) (layer F.SilkS) (width 0.12))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -6.6 -6.6) (end 6.6 -6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.6 -6.6) (end 6.6 6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.6 6.6) (end -6.6 6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.6 6.6) (end -6.6 -6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer F.Fab) (width 0.15))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer F.Fab) (width 0.15))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer F.Fab) (width 0.15))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer F.Fab) (width 0.15))
(fp_text user %R (at 0 -7.874) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 5.08 0) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad2)"))
(pad 1 thru_hole circle (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 20 "Net-(K1-Pad1)"))
(model ${KISYS3DMOD}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX1A_1.00u_PCB.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module keyswitchMx:SW_Cherry_MX1A_1.00u_PCB (layer F.Cu) (tedit 5BC6D066) (tstamp 5C076023)
(at 44.55 147.38)
(descr "Cherry MX keyswitch, MX1A, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf")
(tags "cherry mx keyswitch MX1A 1.00u PCB")
(path /5BFA695E)
(fp_text reference K2 (at 0 -7.874) (layer F.SilkS)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_text value KEYSW (at 0 7.874) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -6.985 6.985) (end -6.985 -6.985) (layer F.SilkS) (width 0.12))
(fp_line (start 6.985 6.985) (end -6.985 6.985) (layer F.SilkS) (width 0.12))
(fp_line (start 6.985 -6.985) (end 6.985 6.985) (layer F.SilkS) (width 0.12))
(fp_line (start -6.985 -6.985) (end 6.985 -6.985) (layer F.SilkS) (width 0.12))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer Dwgs.User) (width 0.15))
(fp_line (start -6.6 -6.6) (end 6.6 -6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.6 -6.6) (end 6.6 6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start 6.6 6.6) (end -6.6 6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.6 6.6) (end -6.6 -6.6) (layer F.CrtYd) (width 0.05))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer F.Fab) (width 0.15))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer F.Fab) (width 0.15))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer F.Fab) (width 0.15))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer F.Fab) (width 0.15))
(fp_text user %R (at 0 -7.874) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(pad "" np_thru_hole circle (at 5.08 0) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.7 1.7) (drill 1.7) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 0 0) (size 4 4) (drill 4) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -3.81 -2.54) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 3 "Net-(D2-Pad2)"))
(pad 1 thru_hole circle (at 2.54 -5.08) (size 2.2 2.2) (drill 1.5) (layers *.Cu *.Mask)
(net 21 "Net-(K10-Pad1)"))
(model ${KISYS3DMOD}/Button_Switch_Keyboard.3dshapes/SW_Cherry_MX1A_1.00u_PCB.wrl
(at (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F31)
(at 44.14 132.19 180)
(path /5BFA67CE)
(attr smd)
(fp_text reference D1 (at 0 -1.925 180) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 180) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 180) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 1 "Net-(D1-Pad2)"))
(pad 1 smd rect (at -1.7 0 180) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 2 "Net-(D1-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F3E)
(at 44.9 151.52 180)
(path /5BFA6964)
(attr smd)
(fp_text reference D2 (at 0 -1.925 180) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 180) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 180) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 2 "Net-(D1-Pad1)"))
(pad 2 smd rect (at 1.7 0 180) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 3 "Net-(D2-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F4B)
(at 56.03 149.55 270)
(path /5BFA6A04)
(attr smd)
(fp_text reference D3 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 4 "Net-(D3-Pad2)"))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 2 "Net-(D1-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F58)
(at 74.4 120.26 90)
(path /5BFA6A10)
(attr smd)
(fp_text reference D4 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 2 "Net-(D1-Pad1)"))
(pad 2 smd rect (at 1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 5 "Net-(D4-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F65)
(at 81.07 149.52 270)
(path /5BFA6DC1)
(attr smd)
(fp_text reference D5 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 6 "Net-(D5-Pad2)"))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 7 "Net-(D5-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F72)
(at 106.38 120.51 90)
(path /5BFA6DCD)
(attr smd)
(fp_text reference D6 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 7 "Net-(D5-Pad1)"))
(pad 2 smd rect (at 1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 8 "Net-(D6-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F7F)
(at 109.33 149.68 270)
(path /5BFA6DD9)
(attr smd)
(fp_text reference D7 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 9 "Net-(D7-Pad2)"))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 7 "Net-(D5-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F8C)
(at 137.37 149.55 270)
(path /5BFA6DE5)
(attr smd)
(fp_text reference D8 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 7 "Net-(D5-Pad1)"))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 10 "Net-(D8-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075F99)
(at 158.37 120.49 90)
(path /5BFA7A40)
(attr smd)
(fp_text reference D9 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 11 "Net-(D9-Pad2)"))
(pad 1 smd rect (at -1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 12 "Net-(D10-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075FA6)
(at 165.6 149.55 270)
(path /5BFA7A4C)
(attr smd)
(fp_text reference D10 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 12 "Net-(D10-Pad1)"))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 13 "Net-(D10-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075FB3)
(at 188.32 120.2 90)
(path /5BFA7A58)
(attr smd)
(fp_text reference D11 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 12 "Net-(D10-Pad1)"))
(pad 2 smd rect (at 1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 14 "Net-(D11-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075FC0)
(at 193.53 149.55 270)
(path /5BFA7A64)
(attr smd)
(fp_text reference D12 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 15 "Net-(D12-Pad2)"))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 12 "Net-(D10-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075FCD)
(at 218.31 120.28 90)
(path /5BFA7A78)
(attr smd)
(fp_text reference D13 (at 0 -1.925 90) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 90) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(pad 1 smd rect (at -1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 16 "Net-(D13-Pad1)"))
(pad 2 smd rect (at 1.7 0 90) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 17 "Net-(D13-Pad2)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075FDA)
(at 221.58 149.55 270)
(path /5BFA7A84)
(attr smd)
(fp_text reference D14 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 18 "Net-(D14-Pad2)"))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 16 "Net-(D13-Pad1)"))
)
(module keyboard_parts:D_SOD123 (layer B.Cu) (tedit 561B69D3) (tstamp 5C075FE7)
(at 245.65 149.67 270)
(path /5BFA7A90)
(attr smd)
(fp_text reference D15 (at 0 -1.925 270) (layer B.SilkS)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_text value D (at 0 1.925 270) (layer B.SilkS) hide
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(fp_line (start -3.075 -1.2) (end -3.075 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.8 1.2) (end -2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -2.925 1.2) (end -2.925 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 1.2) (end 2.8 1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 1.2) (end 2.8 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start 2.8 -1.2) (end -3.2 -1.2) (layer B.SilkS) (width 0.2))
(fp_line (start -3.2 -1.2) (end -3.2 1.2) (layer B.SilkS) (width 0.2))
(pad 2 smd rect (at 1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 19 "Net-(D15-Pad2)"))
(pad 1 smd rect (at -1.7 0 270) (size 1.2 1.4) (layers B.Cu B.Paste B.Mask)
(net 16 "Net-(D13-Pad1)"))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C076041)
(at 67.33 147.45)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA69FE)
(fp_text reference K3 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 22 "Net-(K11-Pad1)"))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 4 "Net-(D3-Pad2)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C07605F)
(at 79.31 106.98)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA6A0A)
(fp_text reference K4 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 23 "Net-(K12-Pad1)"))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 5 "Net-(D4-Pad2)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C07607D)
(at 95.34 147.44)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA6DBB)
(fp_text reference K5 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 20 "Net-(K1-Pad1)"))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 6 "Net-(D5-Pad2)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C07609B)
(at 111.33 106.96)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA6DC7)
(fp_text reference K6 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 21 "Net-(K10-Pad1)"))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 8 "Net-(D6-Pad2)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C0760B9)
(at 123.35 147.45)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA6DD3)
(fp_text reference K7 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 22 "Net-(K11-Pad1)"))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 9 "Net-(D7-Pad2)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C0760D7)
(at 151.32 147.45)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA6DDF)
(fp_text reference K8 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 23 "Net-(K12-Pad1)"))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 10 "Net-(D8-Pad2)"))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C0760F5)
(at 163.35 106.95)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA7A3A)
(fp_text reference K9 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 11 "Net-(D9-Pad2)"))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 20 "Net-(K1-Pad1)"))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C076113)
(at 179.33 147.45)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA7A46)
(fp_text reference K10 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 13 "Net-(D10-Pad2)"))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 21 "Net-(K10-Pad1)"))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C076131)
(at 193.34 106.96)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA7A52)
(fp_text reference K11 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))
(pad 2 thru_hole circle (at -5 3.8) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 14 "Net-(D11-Pad2)"))
(pad 1 thru_hole circle (at 0 5.9) (size 2.032 2.032) (drill 1.27) (layers *.Cu *.Mask)
(net 22 "Net-(K11-Pad1)"))
(pad "" np_thru_hole circle (at 5.22 -4.2) (size 0.9906 0.9906) (drill 0.9906) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at 5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
(pad "" np_thru_hole circle (at -5.5 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask))
)
(module yeee:PG1350 (layer F.Cu) (tedit 5A97C28D) (tstamp 5C07614F)
(at 207.34 147.45)
(descr "Kailh \"Choc\" PG1350 keyswitch")
(tags kailh,choc)
(path /5BFA7A5E)
(fp_text reference K12 (at 0 8.3) (layer B.SilkS)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(fp_text value KEYSW (at 0 -8.7) (layer F.Fab)
(effects (font (size 1 1) (thickness 0.15)))
)
(fp_line (start -2.6 -3.1) (end 2.6 -3.1) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -3.1) (end 2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start 2.6 -6.3) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -2.6 -3.1) (end -2.6 -6.3) (layer Eco2.User) (width 0.15))
(fp_line (start -7 -6) (end -7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 -7) (end -6 -7) (layer B.SilkS) (width 0.15))
(fp_line (start -6 7) (end -7 7) (layer B.SilkS) (width 0.15))
(fp_line (start -7 7) (end -7 6) (layer B.SilkS) (width 0.15))
(fp_line (start 7 6) (end 7 7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 7) (end 6 7) (layer B.SilkS) (width 0.15))
(fp_line (start 6 -7) (end 7 -7) (layer B.SilkS) (width 0.15))
(fp_line (start 7 -7) (end 7 -6) (layer B.SilkS) (width 0.15))
(fp_line (start -6.9 6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start 6.9 -6.9) (end 6.9 6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -6.9 6.9) (end -6.9 -6.9) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 -7.5) (end 7.5 -7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 -7.5) (end 7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start 7.5 7.5) (end -7.5 7.5) (layer Eco2.User) (width 0.15))
(fp_line (start -7.5 7.5) (end -7.5 -7.5) (layer Eco2.User) (width 0.15))
(pad "" np_thru_hole circle (at 0 0) (size 3.429 3.429) (drill 3.429) (layers *.Cu *.Mask))