forked from evyd13/plain60-flex-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plain60-flex-edition.kicad_pcb
16651 lines (16468 loc) · 945 KB
/
plain60-flex-edition.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 20200916) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (color "Green") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (color "Green") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(grid_origin 204.479287 74.200061)
(pcbplotparams
(layerselection 0x110fc_ffffffff)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(svguseinch false)
(svgprecision 6)
(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)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./gerbers")
)
)
(net 0 "")
(net 1 "GND")
(net 2 "VCC")
(net 3 "row0")
(net 4 "Net-(D1-Pad2)")
(net 5 "Net-(D2-Pad2)")
(net 6 "Net-(D3-Pad2)")
(net 7 "Net-(D4-Pad2)")
(net 8 "Net-(D5-Pad2)")
(net 9 "Net-(D6-Pad2)")
(net 10 "Net-(D7-Pad2)")
(net 11 "Net-(D8-Pad2)")
(net 12 "Net-(D9-Pad2)")
(net 13 "Net-(D10-Pad2)")
(net 14 "Net-(D11-Pad2)")
(net 15 "Net-(D12-Pad2)")
(net 16 "Net-(D13-Pad2)")
(net 17 "Net-(D14-Pad2)")
(net 18 "Net-(D15-Pad2)")
(net 19 "Net-(D16-Pad2)")
(net 20 "row1")
(net 21 "Net-(D17-Pad2)")
(net 22 "Net-(D18-Pad2)")
(net 23 "Net-(D19-Pad2)")
(net 24 "Net-(D20-Pad2)")
(net 25 "Net-(D21-Pad2)")
(net 26 "Net-(D22-Pad2)")
(net 27 "Net-(D23-Pad2)")
(net 28 "Net-(D24-Pad2)")
(net 29 "Net-(D25-Pad2)")
(net 30 "Net-(D26-Pad2)")
(net 31 "Net-(D27-Pad2)")
(net 32 "Net-(D28-Pad2)")
(net 33 "Net-(D29-Pad2)")
(net 34 "row2")
(net 35 "Net-(D31-Pad2)")
(net 36 "Net-(D32-Pad2)")
(net 37 "Net-(D33-Pad2)")
(net 38 "Net-(D34-Pad2)")
(net 39 "Net-(D35-Pad2)")
(net 40 "Net-(D36-Pad2)")
(net 41 "Net-(D37-Pad2)")
(net 42 "Net-(D38-Pad2)")
(net 43 "Net-(D39-Pad2)")
(net 44 "Net-(D40-Pad2)")
(net 45 "Net-(D41-Pad2)")
(net 46 "Net-(D42-Pad2)")
(net 47 "Net-(D43-Pad2)")
(net 48 "Net-(D44-Pad2)")
(net 49 "row3")
(net 50 "Net-(D46-Pad2)")
(net 51 "Net-(D47-Pad2)")
(net 52 "Net-(D48-Pad2)")
(net 53 "Net-(D49-Pad2)")
(net 54 "Net-(D50-Pad2)")
(net 55 "Net-(D51-Pad2)")
(net 56 "Net-(D52-Pad2)")
(net 57 "Net-(D53-Pad2)")
(net 58 "Net-(D54-Pad2)")
(net 59 "Net-(D55-Pad2)")
(net 60 "Net-(D56-Pad2)")
(net 61 "Net-(D57-Pad2)")
(net 62 "Net-(D58-Pad2)")
(net 63 "Net-(D59-Pad2)")
(net 64 "Net-(D61-Pad2)")
(net 65 "row4")
(net 66 "Net-(D62-Pad2)")
(net 67 "Net-(D63-Pad2)")
(net 68 "Net-(D67-Pad2)")
(net 69 "Net-(D71-Pad2)")
(net 70 "Net-(D72-Pad2)")
(net 71 "Net-(D73-Pad2)")
(net 72 "Net-(D74-Pad2)")
(net 73 "Net-(J1-Pad4)")
(net 74 "Net-(J1-Pad10)")
(net 75 "col0")
(net 76 "col1")
(net 77 "col2")
(net 78 "col3")
(net 79 "col4")
(net 80 "col5")
(net 81 "col6")
(net 82 "col7")
(net 83 "col8")
(net 84 "col9")
(net 85 "col10")
(net 86 "col11")
(net 87 "col12")
(net 88 "col13")
(net 89 "col14")
(net 90 "D-")
(net 91 "D+")
(net 92 "RST")
(net 93 "Net-(R6-Pad2)")
(net 94 "MISO")
(net 95 "SCK")
(net 96 "MOSI")
(net 97 "Net-(H1-Pad1)")
(net 98 "VBUS")
(net 99 "Net-(R1-Pad1)")
(net 100 "Net-(R1-Pad2)")
(net 101 "Net-(R2-Pad2)")
(net 102 "Net-(R2-Pad1)")
(net 103 "Net-(U1-Pad16)")
(net 104 "Net-(U1-Pad17)")
(net 105 "Net-(LS1-Pad1)")
(net 106 "Net-(C1-Pad1)")
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286614)
(at 76.2 28.575)
(path "/00000000-0000-0000-0000-00005c51ab35")
(attr through_hole)
(fp_text reference "K19" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 178700b1-b97f-43ae-9025-56a23ed6df6c)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 506a1dbe-b36d-44b6-bb4f-f79a0ac5080e)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 283cb86b-f9bb-4c3c-88fc-cf1d8a31e8c6)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 23a9b4a6-05e3-4b8e-b93a-771d4d48d0b5))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 53cfa90e-95d0-4d6e-a65c-f80d69b1c143))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp e41c893e-db81-4796-862c-fa974f996404))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f0628d1b-1025-4043-9d14-c897d2aeeb3b))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 612486cc-670c-4512-8038-5188d9324e8f))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 9361044b-cede-4821-9b51-b07dbb67a6a2))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 9e71bed5-8fdc-4b42-adee-97a86ecd949f))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp d7ad0b9d-c9e0-41e4-9394-99ad0c020ce3))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 78 "col3") (tstamp 5a7631f9-e40e-4c11-bb93-e1d43e0196d8))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 23 "Net-(D19-Pad2)") (tstamp 6a2699b1-0f4d-420c-92e1-ce914a8d303b))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 7a74ce39-cfd6-41ad-8be0-f665cb8274a7))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp ac8e456e-7a85-42b3-bafb-fb3566a52953))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp bfc14e9a-7f87-4ce1-8aec-5dd9eac46543))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286647)
(at 95.25 28.575)
(path "/00000000-0000-0000-0000-00005c51ab43")
(attr through_hole)
(fp_text reference "K20" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 5864947c-85bf-425a-92f2-efcff13a375c)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp e2037e0e-e81c-4083-a34a-10ebdd428a28)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 5c3cb964-c2d5-4882-8aae-d8b67844f128)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 9fb3c8f7-1b8a-4edd-83ca-192508bb498f))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp a56cc7bd-5219-4221-9519-3404d8a6321c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp d22af689-7ea8-4f8e-bb4a-ded35b6e1474))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp ee50dd80-e521-4203-b8ab-100ad4515556))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 94a087ce-824c-40bb-a040-deac6b36acff))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 988ab4b7-6463-4dcc-b9b0-0c16e5fc1f10))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp ba6a592d-a199-4bd1-aa5e-1137f096c010))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp d288374a-89f6-42ea-9762-1339f43c334d))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 79 "col4") (tstamp c994fe9d-e171-4251-9937-7c56898ecd09))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 24 "Net-(D20-Pad2)") (tstamp f6827715-e005-4ae6-ba7f-bcb5ba7c76d4))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 09bc66e5-5fb0-4e80-bf87-28a21d2277f4))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 4df5bd3c-65e2-4c95-a3cc-65a24c16aed1))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp da7981d1-15cc-4f37-8ed5-c0280996fdbc))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c28667a)
(at 152.4 28.575)
(path "/00000000-0000-0000-0000-00005c51ab6d")
(attr through_hole)
(fp_text reference "K23" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp c2ad3bed-7a0c-4d9d-bbed-dadf57cead17)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 0afe9b27-8713-4b6d-8075-2033639df21e)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp ee537f63-fa12-446f-9b90-141741f59a0a)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 2b606ad5-1e57-41cf-9adb-b764c4cbb5c4))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 4ee4e3d3-f1cd-41bf-a0fd-680914b9b6ce))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 858e3e7c-cb43-40a4-9c07-1efc7f198f47))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp a7b8c4ea-2932-41e6-959d-4a062eb763aa))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 1d582c3a-c217-462e-87b8-3f2117028102))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 2ab2b89c-0635-4e0c-bf62-b37c426bb9cc))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 8279571a-eb9a-4d36-8a94-c6e4e8b4c017))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp bb63821f-8870-43f4-9dda-208d8dc7fe13))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 82 "col7") (tstamp e1e635ba-127f-4ca2-90cb-bf71219022c5))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 27 "Net-(D23-Pad2)") (tstamp e0edd902-4ac2-4b78-8fbc-22af7e9aeb31))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 12486cb7-05df-4c19-af69-3b39d82f9170))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp b3c280a6-49c9-41e2-88fc-48506158e92e))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp d28917fc-3f0b-45f7-a346-b5a26c00b25e))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2866ad)
(at 171.45 28.575)
(path "/00000000-0000-0000-0000-00005c51ab7b")
(attr through_hole)
(fp_text reference "K24" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp eee89bb2-83f9-4015-b6aa-f300d0d7c2f5)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp e09b41c9-ca4c-47a5-9d56-b2d7906a0db2)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 00e75dcb-1afc-4fb4-b142-d354db1e6275)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 100c28d1-7e2b-4110-b94c-9ab6c6b3621d))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 742d37c5-c3f2-47c9-8ab3-08080a95d7f8))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 8efa50ce-188b-4c62-9e9d-d1e9ca53b1a2))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp e3e7f8d4-9b65-40ad-8172-91b2ebc5360a))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 47f655ec-5080-478a-9f70-b4c212169860))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 53e631a2-1f06-460b-ae82-3f614dc79439))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp a0fd5b32-8524-4e4f-8878-e0085897e0a2))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp e45b75e8-86d5-48c1-9a7d-7ab199b8eea8))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 83 "col8") (tstamp 2483b0ca-b819-494f-a92a-a3dd3959eea9))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 28 "Net-(D24-Pad2)") (tstamp 93078ed6-3683-46b2-9ed3-8f74ff3b20bb))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp c9a19b40-3838-4bbc-9dab-3ace192a779c))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp d26493c3-a131-42e4-a7d4-3d8006618413))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp dd4dcece-2407-490e-b3e4-3f8f7391bcfd))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2866e0)
(at 38.1 28.575)
(path "/00000000-0000-0000-0000-00005c51ab19")
(attr through_hole)
(fp_text reference "K17" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 0a3be6a6-564f-4ffa-91ed-4297d4f23bc4)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp b7fd82ac-0e4d-4c17-bb50-9fdcac9bbcf3)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp f632e113-4b4a-4a41-9630-0e185c1d9d70)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 172d187b-6f83-41c9-850c-f2b0351ec98b))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 188076fd-b84f-4b1c-8bb2-f8eadadcfe18))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 7d7542ef-c0c1-4f89-b1af-1342a2cc801a))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp a885a745-4e1e-48d0-bd1c-58bc12970c42))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 3f92c7b5-28fd-473e-b2e0-0ca4b7224c7b))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 61bddf2e-8058-4764-b4f7-5f74e83d588e))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 826e42ac-421d-4cfd-b8d6-b8ba8d0f1ee2))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp fd53ea45-02c6-4ed8-abd5-dd671bf9ac3f))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 21 "Net-(D17-Pad2)") (tstamp f1e970f7-126b-4433-88dc-5dee57767e50))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 76 "col1") (tstamp ac6fa772-fe0a-4f6a-b821-88c87824a82b))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 6f94cb3c-43bc-4ac7-a03f-0c4b5926a9ec))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 7106a2e0-8b61-44fd-9605-1ee7695c60bb))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp f5c8d2ba-f5fe-458e-ad86-dedb09ebd831))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286713)
(at 133.35 28.575)
(path "/00000000-0000-0000-0000-00005c51ab5f")
(attr through_hole)
(fp_text reference "K22" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 9f17b54e-8b92-4ab7-95a0-488e9d0a64dd)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 5796ec8f-7077-4df0-bbde-32e91d2cdb2c)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp d74fc9a1-5ab8-4a3a-b57f-ef11b8316572)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 1201983c-7c20-4b60-981a-8ee4fdab38c2))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 15b2ab97-b73c-416c-ae5e-fc94cb5e9216))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 193fba42-be90-4c27-ad33-5f43b0a3d393))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 231d1dd5-367d-41e0-9717-3664f9a651fb))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 4a6483ce-c566-456f-a037-4841e166ba1e))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 55d8fd70-42be-469a-9d6e-26ec44337488))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 6c1ace64-226c-434b-b3f0-2605088be12e))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 8f969cca-4ba4-492c-b259-c32ec36df735))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 81 "col6") (tstamp ce8e6e77-91c0-4b5b-b565-d1157d65c072))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 26 "Net-(D22-Pad2)") (tstamp 93c4edf7-e126-455e-b888-117723b35273))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp bf840cc9-a8ff-4299-97c9-bc551b4bd97a))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp cdf24558-dbd3-4261-81cb-857e602e4fd1))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp ec1f1c16-96d4-43c3-b6f2-26d0a8ace5fb))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286746)
(at 114.3 28.575)
(path "/00000000-0000-0000-0000-00005c51ab51")
(attr through_hole)
(fp_text reference "K21" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 8fac118c-e072-477c-aac3-6b1d60004c3c)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 816bf036-a3b1-470d-a338-b8b4d6e9c67e)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 6f331f2b-0be2-40c3-9b44-6c3671c02322)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 7a1eea9c-df1f-4304-a24e-32ae779d3e7d))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 98374302-14f0-44a2-a5fa-0ec0e634bb2e))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 9e619c95-4652-427e-8c7a-f89ad17f96c5))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp cdbc080f-badf-4ef8-a320-1843661ca745))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 68b305d0-0c8b-4663-9151-b157a278ed5f))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 6948cab8-c499-49af-8569-4b1eb09f1ceb))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 99cd1613-6539-458f-a1d0-39d754e28c1f))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp c02f7c99-783b-4c9a-b70e-fd258665d3c4))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 80 "col5") (tstamp 25ed4e9a-0288-4f41-ab9a-c0f1bf689f4f))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 25 "Net-(D21-Pad2)") (tstamp 82726e51-8081-40bc-b365-72cba82a66e2))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 357a4b4e-970e-479f-8bdb-a30390e9b1f2))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 4bd8e4d9-ef34-425f-b37d-31168146e4dc))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 63fc934e-b48c-463d-ba4b-b114cae5f749))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286779)
(at 57.15 28.575)
(path "/00000000-0000-0000-0000-00005c51ab27")
(attr through_hole)
(fp_text reference "K18" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 8b6a8d82-8c28-49aa-ac97-4a0fafe64e7e)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 1a89ac36-7130-4b4e-9426-bcf43fdd639b)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp d5d7a99c-2e5d-4003-b817-a6c7c1e157d4)
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 0d62958a-fbc4-433e-9daf-5423f09a3121))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 1354daa6-f94f-4083-89a3-013c54d7352c))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp b064f617-6c66-4d25-a5f0-a92bd5290185))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f14c6861-a8c3-40a7-82a4-6c3888ded9d8))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 4ccdf16f-c405-4426-9281-1a05a8b75db0))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 5b504749-9be9-4415-a3be-e3658f5278dd))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 7887f96c-53f9-4811-b487-17eb817cf864))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp e93a597c-1ab2-4693-b6b4-2a0a80addf97))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 77 "col2") (tstamp ae84148d-de30-4999-a117-4fde3aa8cd4d))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 22 "Net-(D18-Pad2)") (tstamp 78ecfaf6-4375-4268-8a72-5e9af123de05))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 00c939c8-14e5-462e-9328-81189dad621e))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 69b5547d-8323-4d92-8832-06aeecb7cc08))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 805e63b4-474f-45c5-8356-c458a548c3ff))
)
(module "Keeb_switches:CHERRY_PLATE_150H" (layer "F.Cu") (tedit 5C55FF41) (tstamp 00000000-0000-0000-0000-00005c2867ac)
(at 14.2875 28.575)
(path "/00000000-0000-0000-0000-00005c51ab0b")
(attr through_hole)
(fp_text reference "K16" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp b60ddab9-fca5-48ff-9526-6406b988a1d7)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 0be8488b-7c0f-4ce9-90bb-3fcad72a5937)
)
(fp_text user "1.50u" (at -10.4775 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp cdf41a24-b15b-4325-bed5-9ddcbfe4de7e)
)
(fp_line (start -14.2875 9.525) (end -14.2875 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 4f789d0f-b58b-4f8b-80b8-daaed833fe38))
(fp_line (start 14.2875 -9.525) (end 14.2875 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 6a600278-367e-4f66-bf95-f176bcd54fd7))
(fp_line (start -14.2875 -9.525) (end 14.2875 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 89ebc2be-d609-4159-9763-5c877de56df7))
(fp_line (start 14.2875 9.525) (end -14.2875 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp bb62f951-69e6-4419-b0e3-eb506fa86f9d))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 2701cee1-4654-4741-91c7-c232d84347c3))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 9b748c2e-2676-46c6-9a03-fb6e010ff7d5))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp a58826d0-401a-4930-9d58-725282b70fe1))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp feb6e1a5-bd2b-4114-bdba-42952c48409d))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 75 "col0") (tstamp 7d35dc0f-3975-4a2c-b4d5-169e2f800ee0))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 19 "Net-(D16-Pad2)") (tstamp 38776e70-ba39-45e1-9729-cb5725913ede))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 19c69b07-4a1d-4947-8940-bc5cfb81d3ff))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 50d94f94-d5e9-4cd6-840a-b3f00dec01a8))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 7f0b50a1-a021-4a03-826e-e47dfc2a410c))
)
(module "Keeb_switches:CHERRY_PCB_200H" (layer "F.Cu") (tedit 5C55FE51) (tstamp 00000000-0000-0000-0000-00005c2867e3)
(at 266.7 9.525)
(path "/00000000-0000-0000-0000-00005c4ebde8")
(attr through_hole)
(fp_text reference "K15" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp d794898d-9c1f-4b67-a73f-65ed79a1e359)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 607c81ab-f2b2-4f67-8529-53bc6e55fafa)
)
(fp_text user "2.00u" (at -15.24 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 9dd4e318-1537-4a54-b48d-1ef67a83f213)
)
(fp_line (start -19.05008 9.52504) (end -19.05008 -9.52504) (layer "Dwgs.User") (width 0.1524) (tstamp 889e29cf-25b1-4a2e-ad44-a3a2c8f1150b))
(fp_line (start -19.05008 -9.52504) (end 19.05008 -9.52504) (layer "Dwgs.User") (width 0.1524) (tstamp 8a9960ab-9a0a-4106-ba5e-ef7d4bc95859))
(fp_line (start 19.05008 9.52504) (end -19.05008 9.52504) (layer "Dwgs.User") (width 0.1524) (tstamp b4a9d5e4-e309-41a9-aaca-b93de4a05003))
(fp_line (start 19.05008 -9.52504) (end 19.05008 9.52504) (layer "Dwgs.User") (width 0.1524) (tstamp b95b6c59-4af2-43e0-a9d4-c9e7877ecb88))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 01696f34-5e0f-4f52-be13-9705ea46dd51))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 6a03d265-7be7-4bdb-ae67-d666e5168b89))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp a43594ae-b966-4152-98cc-0ccdfa2d212a))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp bf0b000e-1747-4147-8163-1d0429df9a38))
(pad "" np_thru_hole circle (at -11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 24f5bf06-744e-4c82-bad6-805ed79b020b))
(pad "" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 3333d02c-bac6-4a2b-86d1-eddfcf655730))
(pad "" np_thru_hole circle (at 11.938 -6.985) (size 3.048 3.048) (drill 3.048) (layers *.Cu *.Mask) (tstamp 4d19760d-d606-4277-9406-92cf67a99cd8))
(pad "" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 5a71ed46-d16e-4b64-a445-c33a9d3f0fa6))
(pad "" np_thru_hole circle (at 11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 8d14f3bc-7b3c-46f4-b278-6e72c3acf099))
(pad "" np_thru_hole circle (at -11.938 8.255) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 8ffdaaf7-eeb8-4903-a36c-2fb1471a6897))
(pad "" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp edfd755f-b3d0-4a7a-8d3a-0127a3b188fb))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 89 "col14") (tstamp 8508318f-307d-4094-8e31-a54f839528ff))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 18 "Net-(D15-Pad2)") (tstamp 5ce5ddd2-ffd5-42e7-81cc-fc77775946ea))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c28681e)
(at 142.875 9.525)
(path "/00000000-0000-0000-0000-00005c4e2e87")
(attr through_hole)
(fp_text reference "K8" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp b8f51de5-aae0-4c69-a81e-c67b63d03a02)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 26000060-4f29-4654-aca0-ff57c3ff96fe)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp a55f54a0-80e5-4489-a69c-b214de52c6e3)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 8e655073-6b39-43e6-be01-e94118827f13))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 8eb4ba36-aa36-4006-9ed1-c522ebdbb9a0))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 94bcd94c-f24d-417c-9309-618da9d8ecb1))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp bafd7d51-5f75-41db-8bd3-edc7b5b43cb3))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 5a2cd242-0d16-41f1-a82c-bc375e4f3ef0))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 5e5e4ee3-a1ae-40ba-b4de-fcbd1786cf86))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 7de65caa-a057-4e19-bc66-25af7f971d20))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp e3adc9a3-697e-4ff6-a430-1415f834be56))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 82 "col7") (tstamp fc459abb-2701-4ec6-8bb5-abdeaf78391a))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 11 "Net-(D8-Pad2)") (tstamp b23e655d-671f-4307-ade3-e84769a81c9f))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 624f87fe-86af-4e2a-ab51-66dd07030563))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp b6d31de2-7419-4e3a-a6ea-dca54868e147))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp c45cb392-c80f-4343-a125-7b2b43a319fb))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286851)
(at 180.975 9.525)
(path "/00000000-0000-0000-0000-00005c4e2ea3")
(attr through_hole)
(fp_text reference "K10" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp a70ed681-9e4c-48aa-a82a-911f3065e3ba)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 4033e466-d2a9-4d4c-a177-bfd5e45bd27b)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 7706b881-2fa8-433f-93ed-3dc0e052ab5d)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 52a48815-79f6-4ead-9592-3142d250527a))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp cf993665-1b3a-4526-b4ee-8287456d95ba))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f14a5a58-649b-4fb1-b891-530c9700bfd2))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f3533259-e177-4d06-9c9d-d99b97b581d7))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 45781396-30cc-4055-9809-02e999317bae))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 73e1908e-6884-4e80-b1bc-486fb2091c8e))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp c2c2ac2a-a40a-4b70-b09a-cfa6540890c8))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp eafd4b15-c6c5-440b-875f-ee26bba10e15))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 84 "col9") (tstamp 2f00d628-7175-40c7-98e0-55fc42314e12))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 13 "Net-(D10-Pad2)") (tstamp 270edc02-a8d6-4cbc-b0e7-1a1aa1c183b7))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 1c843c24-8880-4978-bb23-7360487976fc))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 422ecf68-2d96-41be-9a98-e90d58e3731e))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 7d2baa4c-6b46-42f6-ab86-f0f94542ffb8))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286884)
(at 257.175 9.525)
(path "/00000000-0000-0000-0000-00005c4ebdda")
(attr through_hole)
(fp_text reference "K14" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 7b0f121f-3da5-45a2-895c-2b6f3a086209)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 5d6b6c50-20b9-4d64-b828-9ce12db7b713)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 789c441c-e010-4add-860f-a8aacec88d90)
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 4cf6dcb8-16c9-4a0a-b724-d60832ed6788))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp a0231c31-aa3c-4133-b159-1f4f065a272a))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f180f9a0-5650-418d-b658-3e021bddc6d6))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f2c7d2cd-3568-4069-b5e0-e74c4c41b69d))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 17867c8c-476e-4798-9ac8-fdbaf1e37559))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 197582d7-05a6-484a-bb9b-b04c59b6e463))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 576932c7-7b60-44ea-8e04-7a19d433107e))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp ab186bac-2dbc-4404-9603-b12abd9b48b3))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 88 "col13") (tstamp c95d8d4a-b199-446c-be6f-5221bc3ad3bd))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 17 "Net-(D14-Pad2)") (tstamp 79199ca7-8bdf-4463-b95f-78d813d6467d))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 15fa51a4-eae3-4ab3-a3c9-847bd44c956b))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 80d8712b-d9dc-4ad9-ac21-4f95e62670e3))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp b712a7fb-3224-4b5d-ba1a-75038e187562))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2868b7)
(at 85.725 9.525)
(path "/00000000-0000-0000-0000-00005c4d6ad6")
(attr through_hole)
(fp_text reference "K5" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 173ccbf2-fade-4013-be4b-eaeea8d2b4af)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 3a083ce6-8a35-42c1-a606-ce255327d2d2)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp bf51988c-68f6-41fe-b818-38449d17a505)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 259b0186-7abc-48a4-93fb-c34757049539))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 9f9a95f2-bb1c-4ec3-8cbd-74750f55a6ce))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp e0ba29e2-b374-456a-b9ae-b801c116a15e))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp ff18092a-e468-42d3-ad2a-e4b42a5665c1))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 0b844bc8-0bba-4b93-ae9f-85cd85ff4e32))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 794cb95c-ac3b-4e79-b0a6-4f8ab7907baa))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 816d3613-a198-4b76-9446-4604da364941))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp ad18ca7d-71aa-483c-bc37-3eb334d60b47))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 79 "col4") (tstamp 36ffba86-e799-4895-93f3-512051ca05c4))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 8 "Net-(D5-Pad2)") (tstamp 04e17315-2394-4c55-a6cc-709e14a278ec))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 007441ed-4c89-4c42-a83e-53f67043fc93))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 8a0f8eec-81b1-4522-b555-7a695805f3c4))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp e4ebdb8c-0ffc-4275-b3ec-c8b3881987b4))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2868ea)
(at 238.125 9.525)
(path "/00000000-0000-0000-0000-00005c4ebdcc")
(attr through_hole)
(fp_text reference "K13" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp cb091e7d-9273-4a23-a277-a20caced1486)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 7b85a710-5037-4101-9c53-0d5caffb30d5)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp e3acbbb7-bb5b-4d36-abe9-08178a3b6b3a)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 28428a4a-c914-4413-a9a6-db5d4c8ddac1))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp afa5cf50-b27d-4fea-bdb8-4a7c4d8b3f9b))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f8f01779-6be0-4c46-98e0-f28bc37258f3))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp fcec297a-851d-4960-a9e0-50c5c0dbaa23))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 499b7272-f665-4e1b-8be2-0d77f4b264cb))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 53812b44-8ee6-4fa6-b9f4-6b08884967f1))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp b35bf4af-7e5c-4c5f-b67a-ded70badac76))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp d72f49b7-8be4-4e48-8204-72bb30f9edc4))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 87 "col12") (tstamp 92903bfb-31aa-4a9b-b118-140afeb18636))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 16 "Net-(D13-Pad2)") (tstamp b5bb4553-6bc3-4867-a479-c76f9b6453ac))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 63530f13-ee7a-4b59-9230-a721148f9050))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 6a383a50-4c28-476f-9d0b-2b2af8bccfb7))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 70bcd20e-e5b7-4eb9-822b-d0a5d51b557f))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c28691d)
(at 219.075 9.525)
(path "/00000000-0000-0000-0000-00005c4ebdbe")
(attr through_hole)
(fp_text reference "K12" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 73109119-a9b7-467b-a60f-d8f8d725905c)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp b43615d7-6811-4b90-8aef-bde8b32c94d1)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 39baf3d9-327b-4212-886f-69dd74d260d5)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 425b52a2-8ae5-4676-a034-ce1aa4c48333))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 5b540d9d-e554-4caa-9342-6cc6ef4450b7))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 6884c762-a945-4637-a5b8-c7add8a27bf3))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 716ca3be-fe30-4ef6-bea0-279eadfabc63))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 24789152-6b49-47eb-936c-eff623d01ad5))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 684db695-4db3-4809-ac0e-4b7ff4ffeb59))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 9b4cae9a-3c2b-4a7d-b5a2-952d51ada1cd))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp c5df4e6c-6b46-400b-9921-f4504b6fd4ad))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 86 "col11") (tstamp 23b107e0-76de-4e35-b454-1564428ed049))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 15 "Net-(D12-Pad2)") (tstamp 3ce8cdd6-70d2-4a4d-bf25-781da9f4ba26))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 48f99d0e-a489-404a-a8bc-6289180cc46a))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 572cf7b8-b608-41d6-a7b6-8aea071e83db))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp ae6af789-0ad6-41d9-8f87-88cb49d3d2f4))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286950)
(at 200.025 9.525)
(path "/00000000-0000-0000-0000-00005c4ebdb0")
(attr through_hole)
(fp_text reference "K11" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 8bd76dc4-5fb3-4637-8d56-f33208888c56)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 6562eeb8-840e-49a7-8258-24fb370eb191)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 17474067-e940-49f9-bbad-4caadc216e51)
)
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 27cf895e-bc44-41dc-9c60-eb1f15063409))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 6136fe2d-ce5b-4db2-b031-6595ced405d0))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 85af0405-0de0-40dc-8345-c8f8751cc264))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 8d21b878-6e22-4079-bb37-e045b456cf37))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 2b2278e3-e527-4eea-9ce6-305e70c7cdcc))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 72b6fd77-ceef-4c00-a33f-0208e81a1e68))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 7960ea0d-d819-4718-8253-8a67dcb02f2c))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp c310edb5-5a46-4653-904a-ab4c74abd91b))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 85 "col10") (tstamp 84f61179-585f-4e85-b711-057bb131b684))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 14 "Net-(D11-Pad2)") (tstamp 1956cb8f-8ae3-4e50-8744-9a952b161ae5))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 38dcc7c9-076e-4847-a0ff-71afa1dfb40d))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp d852c50d-f5dc-4986-a4a0-cf01ac03c469))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp ff3e7d9f-2eb7-437d-82a0-86296dcfbed1))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286983)
(at 161.925 9.525)
(path "/00000000-0000-0000-0000-00005c4e2e95")
(attr through_hole)
(fp_text reference "K9" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp f6c04996-8cb9-452b-9792-4b21671d26e5)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp afebab81-c000-4689-a126-4cc8c3c18b80)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 2b04f260-65ab-415b-9447-510709e7a810)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 88321bf0-3408-44c6-a7dd-69015341dce8))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp cb2a9a88-80a1-4ca5-a151-b3b42ed3675c))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp da13c9fc-875a-4440-bcdc-709bda863d70))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp f69eb8cc-434d-4ca9-9250-ae25dad060b6))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 15118cb2-71b7-41b4-8d46-3825ae7d7aab))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 67adcc7e-b24a-4465-ab0f-076c0254139e))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 8a4f3bb9-04c8-4070-8541-eba8c28d2514))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 98861a9d-1ab9-4ce5-928f-c1a0d306eb4e))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 83 "col8") (tstamp 70c615ac-2e5c-4163-857c-80f1405ef060))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 12 "Net-(D9-Pad2)") (tstamp 3dc1129e-e7a3-4862-a12c-1ed7d4d88071))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9b4ff3b6-f257-4225-bda6-e8b370341cbb))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 9d9f766b-d585-4985-8af8-90f8fc63234b))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp dce02d62-aab2-47df-9b8f-d0e9a502161c))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2869b6)
(at 123.825 9.525)
(path "/00000000-0000-0000-0000-00005c4e2e79")
(attr through_hole)
(fp_text reference "K7" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 31c1e9e5-62a6-4a35-85e2-0b8d805e3935)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 4669eeeb-0cd3-4d40-bea4-7f88570fc82e)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp dd52f79e-6f2c-4235-bf84-f46c77f12f17)
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 01d2be6b-35e2-4533-8686-6b0ac88a8ed4))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 5d915774-4fbe-4a74-a0a0-adbe54c89c9a))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 6b83efb4-bf29-414e-a3c2-bd92e382eaae))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp c347b36a-5530-4530-87d1-5acd449ee49e))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 5360be8a-8fc5-45ab-9d3f-a302078ce327))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 85ce5f36-08cb-4e7b-953e-7f2b9bc66120))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp cd520e7e-3772-4a12-b81b-b472a55c39b2))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp d73e368c-0f67-4ddb-845c-f21794040f76))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 81 "col6") (tstamp 93e23b01-b198-4994-a720-9e2d68d1ecc7))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 10 "Net-(D7-Pad2)") (tstamp 9a3d67d9-c27a-4b06-a2cb-7031553f1af5))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp c4b02132-ced5-488d-b070-32a88bae5ac0))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp d36c5539-d3f4-4872-af5e-e401ee4f10d2))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp ef1cf430-f7c0-4113-94a5-964d1b35a52d))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2869e9)
(at 104.775 9.525)
(path "/00000000-0000-0000-0000-00005c4e2e6b")
(attr through_hole)
(fp_text reference "K6" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 7fa4a112-ec2b-43cc-90e9-4bc739475513)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 7ee22ebc-da97-4c23-936f-01c84ad7a8c1)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp d8186b92-bd8d-47d3-9692-726de7dbbae9)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 819d0711-c7f6-4257-998d-e2b3700ae5a3))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 8f9b6baa-a9a2-4d3e-bd9c-d92d961f50d8))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp d515eab8-63a7-4b65-9426-c6966978b536))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp e7af52d9-88a2-490a-a080-39386b2886d8))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 20954e0a-7607-42a3-92d2-31d19e9dd702))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 530be435-4cf9-4278-95ef-f06c60b4e49a))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 919f5bd1-fd81-4164-9dc3-1c4d6583d2c8))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp c723bc44-0213-4a59-83bd-cd65a3b802af))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 80 "col5") (tstamp 98685100-cd05-426e-a135-1a0429790fcf))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 9 "Net-(D6-Pad2)") (tstamp 426d77d7-2496-48c9-83c3-cd4e72aa86b9))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 20df5e1b-8b31-429b-83b9-55e9e2fa2a82))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 633731f4-d08c-40aa-9f59-057ef3446eea))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp a5384230-fd8a-4460-ac5f-7756aea4ea13))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286a1c)
(at 66.675 9.525)
(path "/00000000-0000-0000-0000-00005c4d3033")
(attr through_hole)
(fp_text reference "K4" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp a7214a09-ae8d-4b7d-b920-4e9c8a34e53a)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 8355ddec-256b-4871-9eae-cc095988953d)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 6d13ca17-f88c-426a-8040-849c25b9c5b8)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 67350df7-7ea7-4d2a-baf8-5d3ca6bd7983))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 7e036409-eba7-46ca-a431-3e556d3830d2))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp dafa4c62-58fb-41c2-9cd1-36df8b64ee1e))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp dda3fca3-4789-44a2-80b3-a1dbc1519446))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 11e09a3c-28b2-430b-9ef7-6723102f931b))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 688d2324-d9ce-4e98-a411-63b6659ad822))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp ddad1234-80e7-4de3-9040-8f82c1ffc373))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp e7269be1-35bf-48d2-a884-623dec5cec5d))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 78 "col3") (tstamp 4efe040a-34b5-4615-9c6a-7e122b441361))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 7 "Net-(D4-Pad2)") (tstamp 27a31311-8ba9-4310-9c0f-2f678bf14654))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 059a1a59-0f89-49de-991a-a70c4bd56867))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 8530b291-9ac0-4257-bae4-afc4cf177d87))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp f58d7462-0c70-4036-86d1-b107b5dc6619))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286a4f)
(at 28.575 9.525)
(path "/00000000-0000-0000-0000-00005c4cc744")
(attr through_hole)
(fp_text reference "K2" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 5544763b-e557-4ef7-87ac-4fe58e1fed72)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 7e23d053-c9cc-4dca-9ea4-53ae0be2f3bf)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 5c8c66b5-71e8-4950-a212-81b5fe31ed9e)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 1f50f493-4645-4335-84bf-4017475063b9))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 44390410-d832-4a5a-abe7-4424c7b13f31))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 77a030e3-07be-48db-ae65-afe609feb85a))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 870ba115-0418-4c4b-a59f-deb0ea10b2fb))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 22ae2430-dccd-4514-b2ac-041292a23504))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 4a3bb35c-8a81-48fd-8359-97af4f2dc6a6))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 8c2f9fc2-7d77-4798-9dca-686b6458a497))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp f8830875-e69f-48a2-88ff-6b8354b84170))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 5 "Net-(D2-Pad2)") (tstamp 1814194c-1924-4c79-b7b0-27fb8fdb59b5))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 76 "col1") (tstamp 76641532-f79d-494c-a887-c44dfc7dcf28))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 294dee24-c650-46be-bb44-44349e37b5dd))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp a6e466c8-0942-494c-b476-15ef87539a06))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp c585e094-24f0-4104-a7b5-bba82c81ff1d))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c286a82)
(at 9.525 9.525)
(path "/00000000-0000-0000-0000-00005c3f9b1f")
(attr through_hole)
(fp_text reference "K1" (at 0 3.175 90) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 9f16b3ae-571a-4a73-b120-a550d9e1c45c)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp ce35169c-402c-493f-ac1d-6870a7718111)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp ce77dec2-3cce-44c2-907b-d954d456244b)
)
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 2ad16f9d-3eb8-492f-b324-c6c46bf28918))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 654c4421-364e-40b8-808a-7f2d00f39a70))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 86332a98-a438-429f-ba42-6fa674e7513c))
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp b23f8c16-4b1b-4ca1-b524-88996ee83bff))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 04c2a2ca-03cc-4320-9a58-f551e5a9cb4a))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 47fa275f-b50b-4750-be7c-6b5739c5ed6b))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp dc6948aa-74bb-4b0c-bfc5-0bc26f0cf6d8))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp de6adb26-49d1-4827-bc33-d72deab0f03e))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 4 "Net-(D1-Pad2)") (tstamp 8fb67411-e74e-4b13-adae-0cfd0a931c24))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 75 "col0") (tstamp 743838d8-65a8-4806-9ad0-ead0bcf525b3))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 1af410ba-4578-498f-b6b5-9d142b887457))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 43aa8ef4-cdab-46a2-8824-ed2fa2cea439))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 47e036d4-c0c7-46b4-bca0-93a954490910))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c2873a0)
(at 47.625 9.525)
(path "/00000000-0000-0000-0000-00005c4d0021")
(attr through_hole)
(fp_text reference "K3" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 9719e9d1-2f31-444e-ad96-6286a9e7b989)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 01741014-f940-4323-80cc-805ffc0e5033)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 783ecf0b-1c48-4fd3-b16b-f82566437f42)
)
(fp_line (start 9.525 9.525) (end -9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 22fc01ed-a7ea-4669-9f84-b35ec5e76e5b))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 79672432-95c7-4e7b-99cc-11b1ceb6c2a1))
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 8784f37e-8fe3-46da-b892-c41c017d4b99))
(fp_line (start -9.525 -9.525) (end 9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp c1238672-bee1-43c8-921e-e6199e2075b8))
(fp_line (start 6.35 -6.35) (end 6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp 2ab9cee0-e4e7-401c-a56a-0cbe158fb0c7))
(fp_line (start -6.35 -6.35) (end 6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp 4d6a2d2a-852d-4e45-a998-670b9ea88160))
(fp_line (start 6.35 6.35) (end -6.35 6.35) (layer "Cmts.User") (width 0.1524) (tstamp a62e378c-e68e-4931-b818-9e6f9b4c4f6e))
(fp_line (start -6.35 6.35) (end -6.35 -6.35) (layer "Cmts.User") (width 0.1524) (tstamp d753704d-befe-4de3-8930-63f8fd0887cb))
(pad "1" thru_hole circle (at 2.54 -5.08) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 6 "Net-(D3-Pad2)") (tstamp 025e0985-f672-42ee-be6d-281e28b2a945))
(pad "2" thru_hole circle (at -3.81 -2.54) (size 2.286 2.286) (drill 1.4986) (layers *.Cu *.Mask)
(net 77 "col2") (tstamp 36d251a1-5515-4145-a202-174228463b85))
(pad "HOLE" np_thru_hole circle (at 0 0) (size 3.9878 3.9878) (drill 3.9878) (layers *.Cu *.Mask) (tstamp 12fcd04c-b8fe-48d4-b461-b5e3bc780f2a))
(pad "HOLE" np_thru_hole circle (at -5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp 4404254d-d871-47fa-92b0-c47368bcb65d))
(pad "HOLE" np_thru_hole circle (at 5.08 0) (size 1.7018 1.7018) (drill 1.7018) (layers *.Cu *.Mask) (tstamp fcc40c7a-4467-4402-883c-204e82fbad1d))
)
(module "Keeb_switches:CHERRY_PLATE_100H" (layer "F.Cu") (tedit 5C55FF26) (tstamp 00000000-0000-0000-0000-00005c287b89)
(at 38.1 85.725)
(path "/00000000-0000-0000-0000-00005c833459")
(attr through_hole)
(fp_text reference "K62-1" (at 0 3.175) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 26f06e30-7361-4343-b4fe-1ab971649f29)
)
(fp_text value "KEYSW" (at 0 5.08) (layer "F.SilkS") hide
(effects (font (size 1.27 1.524) (thickness 0.2032)))
(tstamp 0f29d3e5-5347-4bd9-8b10-6598bd8602b2)
)
(fp_text user "1.00u" (at -5.715 8.255) (layer "Dwgs.User")
(effects (font (size 1.524 1.524) (thickness 0.3048)))
(tstamp 12f10ab8-4d36-45f2-83f8-381134798454)
)
(fp_line (start 9.525 -9.525) (end 9.525 9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 4d8c2aac-5246-4d71-9ac0-3144e112b036))
(fp_line (start -9.525 9.525) (end -9.525 -9.525) (layer "Dwgs.User") (width 0.1524) (tstamp 75eb82aa-22a4-49d3-92f7-cf380bbb4e56))