-
Notifications
You must be signed in to change notification settings - Fork 0
/
mfk60_middle_plate.kicad_pcb
3689 lines (3602 loc) · 217 KB
/
mfk60_middle_plate.kicad_pcb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "User" 419.989 210.007)
(title_block
(title "mfk60 Middle Plate")
(date "2024-01-13")
(rev "1")
(company "@niw")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 0793d22c-65b7-427b-90ef-95279d961f3a)
(at 239.3125 110.725)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/b5286bfd-2547-4e77-b188-b88632113879")
(attr smd board_only)
(fp_text reference "SW60" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eb49fbe3-4704-4c39-8dde-53c9600cee48)
)
(fp_text value "COL9_ROW5" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 82bb4a99-5682-4add-9481-6e0653ec9452)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp adbb98fe-c877-415f-805e-636381083084)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2837ae45-9bd0-4050-99a6-6a2e9ff8115b)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 70ed3010-b019-4e24-ae76-2d88587aaa9d))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 760c86dc-466e-4ddc-b20d-909fd0ec0de6))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7ac891c9-148c-4f06-a8c0-62da837df325))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 28e64c7d-6443-4040-81c0-5ab494d32825))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 139e4cb6-294e-4a57-9e9c-b5579c64c6d4))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5349c7a4-775f-4a90-8948-f15ecaca755a))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6ed332ec-db71-487e-9340-0b5f69bf5e86))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 39a0d974-42cc-4bb0-9ba5-03a788ee743a))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7a9f6810-32c5-4568-9097-606229f5b11d))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 85d6da69-a266-4192-85f7-315e63968148))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 08304b6e-7138-4b88-b3c9-46a2d6633354)
(at 196.45 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/d7e498e4-2715-4a1d-b1ff-1b75ea43bddb")
(attr smd board_only)
(fp_text reference "SW36" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ebcd6732-b188-4d10-89db-253bd0158402)
)
(fp_text value "COL8_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 36867658-2d88-4e67-88a4-6950881546ab)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 75aab047-997d-4169-a7a6-5155d7f7ef3d)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b84a605-b553-4356-a4f7-b1e8552636f4)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 20756823-84c0-46de-891b-2abe2dce06a8))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp e3970b88-4025-4bac-87e3-ffdd5d303c83))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 76274478-0082-43ea-883d-64e217878809))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4b1e5976-e452-418e-9e18-ee0d4c7ebee7))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2e542443-6305-42fc-bf41-8b597d77c1b0))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7f91e017-df16-41ef-bcb1-b0fe3045210d))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 80d53c1e-804e-4a5b-986b-2ad8b9521452))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2004379a-ce66-47b0-9008-7422a9d54f9e))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6578248c-2e73-4ccc-ab7a-2303fd5ee527))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 92423f42-57b4-473c-a78a-cdce580dda3f))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate_Stabilizer_2U" (layer "F.Cu")
(tstamp 08ca797e-f13f-4013-a432-d3272490c68b)
(at 46.43125 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/2e680c6a-ea72-440f-a57c-5cf17fe14613")
(attr smd board_only)
(fp_text reference "SW42" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e9bf7f2-9523-4234-b660-d925c2362b6b)
)
(fp_text value "COL1_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3470a8f1-0d81-4978-b4dd-623bd7a78520)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7b5c018b-106e-4d6c-9e03-4fb4d201720b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6945be50-edd5-4d21-923c-dd1e85b39e1f)
)
(fp_rect (start -19.05 -9.525) (end 19.05 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp daabe7f8-c81d-4c1a-81eb-3cf9bcf68780))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp ba0775e3-5e32-47a2-8e22-09f526cf16e9))
(fp_line (start -15.5 6.7) (end -15.5 -10.2)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 744f0101-16ea-4e6a-b6de-f4ee1f17e5b5))
(fp_line (start -15.2 -10.5) (end 15.2 -10.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f721dc58-45bf-49cd-823c-32f900704514))
(fp_line (start 15.2 7) (end -15.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 49929c8c-2475-41b6-992c-af4947dc23f3))
(fp_line (start 15.5 -10.2) (end 15.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp aec8d9e8-9423-47d7-ada2-478a027339e2))
(fp_arc (start -15.5 -10.2) (mid -15.412132 -10.412132) (end -15.2 -10.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 50ad81f6-7f25-4cb5-ade9-7e0723500933))
(fp_arc (start -15.2 7) (mid -15.412132 6.912132) (end -15.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a4b31e11-6d3a-47ea-a943-7857faa3d850))
(fp_arc (start 15.2 -10.5) (mid 15.412132 -10.412132) (end 15.5 -10.2)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 77e957f0-d00f-45d0-9e36-d07731292867))
(fp_arc (start 15.5 6.7) (mid 15.412132 6.912132) (end 15.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp afcb6f51-dfd7-4e13-8d24-367a62f25c11))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 09d935ab-458a-4e15-aa94-bee099483dc0)
(at 210.7375 53.575)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/cdd929aa-756d-4b90-9869-ee642a751c56")
(attr smd board_only)
(fp_text reference "SW23" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e52d79c-9197-4a83-9403-2d2a96258731)
)
(fp_text value "COL9_ROW2" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0d7454a0-df7b-49ab-9c41-458671f7b8b9)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 06c285a1-c916-4d6f-99e9-f3c693e7333b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d97a72f8-a5b4-4557-ba38-716704f7ce6b)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 0ed2967c-debd-43b8-bba6-afd6a654a116))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp a6a55ac3-6dc6-4344-bf7c-39479c6a6e30))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp daadf206-3ae9-489e-8ddc-6223cd302ea8))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c2a97a45-120a-4062-a8f1-04a583bb544a))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 41b583fd-05be-4f7d-911d-0c5c3772b68a))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 908347eb-6564-4e32-992e-e2b5b632d524))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c6ea439d-3b66-443c-903b-e8643a9af181))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 04deccef-9384-40b9-b206-4d89d4c7d078))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d6be1b4e-3079-4693-b5c6-01135e6f29f3))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 83e42b17-af8a-4e71-92ea-8cf849e0a6e5))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 0eb75901-ddc7-4442-8ced-c899499db050)
(at 34.525 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/3f893b63-ae80-43d8-a356-bfd3dc791034")
(attr smd board_only)
(fp_text reference "SW1" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7c59d267-8de8-4c79-9cf7-2c207a5a2a90)
)
(fp_text value "COL1_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a1e8baf-2252-439f-8f48-32296d8ad609)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 53090672-d2ed-415c-9fb8-e49dc9d4c24b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 543e5028-3514-451a-b0f1-4c6f9a884f1b)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp e404b5e8-498c-481a-b6f8-f2962bc64ff7))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 6db129ca-192f-4550-adc9-76fe05bd00c7))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9ca991d5-c2c5-4985-a7bf-1cee53b9557b))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4a158f4b-ca6d-42b8-b58f-947d03062f54))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp bf4d3989-1735-4c68-96e3-c301d20f3820))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 70c55458-8a04-43be-b141-d0d92a989525))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 269c6c83-cad9-498e-a7d8-eb97850bcd94))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ab4e315c-b2ea-4047-ac60-6e9b1ded7737))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ec11ebe5-105f-4385-86d6-602e42dd74a5))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8841722c-3046-4ef4-8abb-b05a01a01a50))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 10dc46e6-5145-4462-9849-985bb4802245)
(at 182.1625 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/32063f35-f38c-4d8c-8184-0b476f0c87e3")
(attr smd board_only)
(fp_text reference "SW8" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca3f6955-52f4-46f1-be7b-755cfeff8e84)
)
(fp_text value "COL8_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f946a82d-ff1d-4c9d-bae6-660dab7c0e9e)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 503b0e42-5002-440e-b25d-f5e7d6a304e9)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 236cdec4-9191-42ff-a02d-8df3979e8ca6)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 10c02d71-9a7f-4f38-b8f5-005f2d58f48e))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 92e3ccb4-e036-452f-91ba-561391a0fd78))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp df25c585-000c-4155-88af-74f55fb206b7))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8a683a1d-e208-438f-b01c-e610b431db69))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp dd478114-2a4d-4b12-aace-334866fbc7ce))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4359f9f4-1bee-4c5c-98b3-7351367a9459))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e12b9f28-f146-470b-90ba-9d399a8c8f89))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6dda22db-37af-4898-b48a-edfb23cc5720))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0212a2fe-d88c-45ff-96c4-0d202aec84b9))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e475916b-8782-494b-bcb5-f1f8afe364e9))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate_Stabilizer_2U" (layer "F.Cu")
(tstamp 15163d85-c6f7-4337-b511-0e091ed697f6)
(at 303.60625 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/4814b0dd-acb2-4dd5-9d96-203e5ae95374")
(attr smd board_only)
(fp_text reference "SW41" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c77c982-e34c-4d37-8a5e-1f09c41ad522)
)
(fp_text value "COL13_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 71604187-61b8-4c68-93b5-504071bfd002)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp d13e6291-cf54-4074-a4f6-6a6d20589871)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4fc257d5-d57e-4c2e-9afc-06fddaae5dd9)
)
(fp_rect (start -19.05 -9.525) (end 19.05 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp f4daabfa-0781-4551-aed0-d001ca3b1e2f))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp ce108b02-6ced-4693-bc62-7a50df8e7998))
(fp_line (start -15.5 6.7) (end -15.5 -10.2)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 24ebe89f-38bc-4f5a-b935-4fbc528564ed))
(fp_line (start -15.2 -10.5) (end 15.2 -10.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9469f762-1a76-4339-9b78-1939432999d8))
(fp_line (start 15.2 7) (end -15.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 054368fe-0e76-444e-b575-05e9e57fefcd))
(fp_line (start 15.5 -10.2) (end 15.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp be7a92a6-a432-4389-a407-9b81bf3bf463))
(fp_arc (start -15.5 -10.2) (mid -15.412132 -10.412132) (end -15.2 -10.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2fc208ae-0c57-4ec9-821b-17729d1d5bd9))
(fp_arc (start -15.2 7) (mid -15.412132 6.912132) (end -15.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0b2d4784-f051-417a-923e-2fb50fc670f3))
(fp_arc (start 15.2 -10.5) (mid 15.412132 -10.412132) (end 15.5 -10.2)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp dcb907bc-fa16-477a-9e84-9582c47c6bac))
(fp_arc (start 15.5 6.7) (mid 15.412132 6.912132) (end 15.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7675ce9e-93c7-4a56-ac4a-f88d88194196))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 16e2a0b7-1132-4965-b567-49195400d162)
(at 186.925 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/c2c5002f-9313-47d1-9c3a-162a34cc7a1f")
(attr smd board_only)
(fp_text reference "SW48" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 16c7b9ba-c173-484d-9f10-15ff185afe09)
)
(fp_text value "COL7_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 90966e29-3762-41a8-9ebc-7ef9beea83ee)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1a709c78-2293-41c7-84fa-37a6c3793916)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bbb36690-5491-4228-9441-4d3ac0c0d68d)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 6022adfd-547b-4204-840c-5ccaaf23d6c5))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 7594e200-b410-4133-b4b7-8516a7282daf))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 91c0f53a-92d6-48ce-997b-d4a876e7abc7))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 69bb4662-e184-4125-a87c-2d4edcebbbaf))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4cfea071-ea49-4e69-bf63-a31c9a11bbd9))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ba45af3a-9a49-45ce-a337-e56284f5fae5))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c82fbef6-9c39-4bf8-9642-52755b080230))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c3a5c7cf-50c8-4489-9bfc-9e53dfb67d1f))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp c21a5192-7c8c-4f5d-967a-5f0d3f0cb664))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ec7f1c23-e2cf-40b2-803b-8ab90bb39024))
)
(footprint "kikit:Tab" (layer "F.Cu")
(tstamp 172ec51c-d4fb-4ea0-badc-8decbaf7e46b)
(at 191.6875 25 -90)
(descr "A symbol representing annotation for tab placement")
(property "Sheetfile" "mfk60_right.kicad_sch")
(property "Sheetname" "Righ")
(property "exclude_from_bom" "")
(property "ki_description" "KiKit tab annotations")
(property "ki_keywords" "KiKit")
(path "/9b5d010c-c128-4221-9df0-679e0e88f90c/6b55207e-b868-4ac8-b423-35223127e41d")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "T4" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e0fcb69a-0964-436e-8e1e-7c3097a57373)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp af49a129-d2be-48a1-b9ff-a0f40398d974)
)
(fp_text user "KIKIT: width: 6mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8c0a80da-48a6-44d5-97cc-91f10a12f10d)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp c871f389-6a75-41ac-90c9-45c3f309c824))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 1c04eb8a-e715-4b24-b9b0-00bd39a831a2))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp ca5e98a8-5ea5-4812-8b61-17baa44929f1))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp a87ab08f-b710-4fbf-a1c9-dee353b568da))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 1bebb899-5d8a-4d3d-83cd-c7ac16f87e01)
(at 205.975 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/2df42347-a5bc-4d3c-873b-581dde4a409f")
(attr smd board_only)
(fp_text reference "SW49" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b840af9d-00d6-4f2a-82b7-d0742e550feb)
)
(fp_text value "COL8_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ba21127-72de-4f0d-837c-73a6b40f3788)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6a62c70e-88f6-4bd0-a1f0-efa41005ad3c)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c80274d4-4116-415e-af4a-1a75f0ed3d88)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 56fa3e8a-73c3-4c5e-be3b-f584ddf8c3b5))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp fd7f0542-7727-47e2-8d18-3e8dd5db0c7e))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 325c29f3-44e3-414b-8656-035e50309b7a))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3d68e1a2-8890-474d-8414-480ae227e2e5))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 49d084fc-6adb-47d1-92e4-69d287d2978d))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp aeb075c4-a956-4eee-b9db-687668d2156f))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 2e725aa8-c601-4c50-9528-a5dca7b23899))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 803e60a9-2b76-4820-951a-7b94b13ebd81))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 66362c9a-1a4a-4825-a94b-599b94a5a69d))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp dc32e292-eb5e-40c2-a92e-0dd56c3c3b2b))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 27f21240-de14-4aaf-b630-cb356ae12539)
(at 72.625 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/646f186b-ac5f-4169-b683-49f77df0c29f")
(attr smd board_only)
(fp_text reference "SW3" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55cd9ce0-a27d-4834-8caf-bad6a36bfc4d)
)
(fp_text value "COL3_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9b32cfb0-ffea-49d7-a3c0-f619336ba678)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 704c8397-e133-469b-9e68-ae6e7e7a55a7)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d3184e6-e586-493e-8a19-76955f538585)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 8b9a3081-be2e-4dcf-802d-f1bb2c60bdd3))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 35e4e6c2-1694-449b-b531-f29508c7496b))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e0308f62-f08f-40df-b6b1-92a6335971f3))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ba37f391-e728-410e-a305-0f71e6a4dd03))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9184a38d-ba20-4980-b4ae-68bf4d2bd1c8))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp efab1715-ec2a-4f80-b817-e0fae208cd3f))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9041585c-3852-45a8-b37d-b049f9a22702))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 7532056b-2b14-4f47-994e-6ef2ddd64cb8))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp f822d15c-8a33-4099-85ee-f39cb5a3d475))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 646d82f7-2349-44d0-8059-3d7b75eaf773))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 2c535852-cf57-4ade-8e8f-194d0c6a9ead)
(at 105.9625 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/9f83f860-eb9c-4674-a4f9-d94f97986496")
(attr smd board_only)
(fp_text reference "SW32" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a633af5c-8bf7-4c9e-8fff-df84f877ca00)
)
(fp_text value "COL4_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp aeccf183-fca7-4814-b265-6d1936d32e92)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 3dc697ea-f10f-49ec-ba6c-c78d0705f7e6)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c157efa5-7cbf-49ae-883a-ba12f00f24e8)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp da7ffcd6-5291-4fa5-b3aa-cb849cc13cda))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 73dfdd6b-4b6b-4180-bccf-cc20695c9ab7))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 01bcc0a2-984e-43da-a713-d5a8f4f73a7a))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d21d60cd-d463-43af-9f94-e500d22a13cc))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5c44c03b-c3fe-4182-a440-2ceb1c1aba6e))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp b711b802-e2a1-4ada-a3ef-2329d57c6e9e))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp db0cd385-d60e-4720-bd44-ff4e2debae37))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3b0703f8-cef3-4668-96d0-8cd943935f07))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp a866957b-53a2-42c1-9ba3-db6efb7b4d39))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0a9f5a45-4277-41d5-9f92-6795b5f7e2fb))
)
(footprint "kikit:Tab" (layer "F.Cu")
(tstamp 2c747acd-c66e-4168-9590-e9d12eff2d4f)
(at 63.1 120.25 90)
(descr "A symbol representing annotation for tab placement")
(property "Sheetfile" "mfk60_left.kicad_sch")
(property "Sheetname" "Left")
(property "exclude_from_bom" "")
(property "ki_description" "KiKit tab annotations")
(property "ki_keywords" "KiKit")
(path "/ee6749c5-8347-4034-bc31-139d7c495021/57e21fd3-08b2-4b37-920f-3d292808716e")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "T2" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c0ae1bf-9d57-4cd3-8a54-80c19c0763bc)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp 0a998778-5c0c-4667-aab7-a111773c274f)
)
(fp_text user "KIKIT: width: 6mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 366a9d16-adc9-41cb-9bae-6a7a98657e29)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 03702382-7850-43f8-8cc7-66445a766a88))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 7df67ca9-e163-4a46-8dac-a9025b51c978))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp a324d2cc-d219-4905-a815-a8329177acb6))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 13b4e3a4-af40-40d8-acd2-762180cb53b1))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 2c9ed644-9408-4241-bf00-14f556af11e8)
(at 215.5 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/4c628624-a134-4cb6-acfb-da8c72d2f7c8")
(attr smd board_only)
(fp_text reference "SW37" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc75c9e7-9b73-46fe-9c34-a3e2e952a7b1)
)
(fp_text value "COL9_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a5f2021-9ded-4d64-9091-782d84382423)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 1f988485-41f1-43da-9a86-fe0f6b3f005a)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 815f0ff0-4f49-421e-8efb-21528f49f99c)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 0241e987-20f1-480d-8407-f1d36d87ab02))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 8d1b78f2-8db6-4105-9cb1-70281f6b4895))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 95677167-09ab-4e61-85cd-558645b75f17))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 33b1e478-4f96-4897-b3a0-7ad49c13e419))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8da27a14-5180-4686-b1ca-23e7945e73e4))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 29181a8a-cb2d-4ca4-90b6-d05c57b5f400))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 4e675bfe-7f10-4468-aec9-f12a01ee0a44))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6c46b50e-bf07-4ce8-bcc6-e6ac80795ee1))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 298f109b-bdd2-4389-ab30-32c85f69e35f))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 17b8140e-7fbd-4b83-ba2a-8f8889c79dd6))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 30bd9349-7bbc-46e8-a2c6-fd70478686b4)
(at 129.775 34.525)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/d9abf34e-0850-4456-ac77-99868cfbf7f7")
(attr smd board_only)
(fp_text reference "SW6" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9c34f69a-a9c7-42d3-ad71-ea547d527d18)
)
(fp_text value "COL6_ROW1" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6be877b9-36e0-4092-9639-8e41d44349c2)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5b7f78ca-1dc6-431a-a5f4-47d6f30da3a9)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fec68ebb-f0b2-4a08-8d96-587d77e9ca39)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp a3443b2a-1997-4b44-8a0a-a4cb4cf01f9d))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 7f222400-c8ed-4f4c-813d-071927b7ac1f))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 3b6839a5-5821-4045-9f42-8b1c5d9e4888))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 26f22c4a-ce69-4f02-b41f-5496f522c318))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp be79d56b-90c9-4018-878e-3c5506cad66d))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5a224d77-6fd3-429a-bc72-b1593e7de021))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 46e19e98-0ab7-451d-bc4f-8c31c8c64454))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 9ed068e1-bd48-4df8-8a57-d64ebe9f79f5))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp e9b9e276-12d7-439a-a708-7a5d0dd19421))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ff37612e-65f0-4f33-8b67-91a4823edca0))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate_Stabilizer_2U" (layer "F.Cu")
(tstamp 3173e857-0b34-4582-8e42-8f22fddae31c)
(at 122.63125 110.725)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/fa1dc2c5-7ed1-42b6-af47-dd32b39be85f")
(attr smd board_only)
(fp_text reference "SW57" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 084e5780-95dd-42b1-88a9-0eb818777dd6)
)
(fp_text value "COL3_ROW5" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8e9b6c6d-499e-4f6c-96fc-73d807a6d5bc)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp ed95603b-a9bd-4e5b-a4d0-86502f68e4a5)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a270e136-bc21-45af-8783-831abb1180ef)
)
(fp_rect (start -19.05 -9.525) (end 19.05 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 6e570c82-17c2-4c77-85e3-8c2a57cb8262))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 88d471f5-efee-4249-aa2e-8952c14a15bf))
(fp_line (start -15.5 6.7) (end -15.5 -10.2)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d58b06a1-ac7b-4b10-8690-6773e2dd52ff))
(fp_line (start -15.2 -10.5) (end 15.2 -10.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 80ddbcd0-a9dc-443e-bedc-338067c72127))
(fp_line (start 15.2 7) (end -15.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp d01d74fc-4e95-481a-a9ad-c1e29af6852f))
(fp_line (start 15.5 -10.2) (end 15.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5bc41030-7226-4199-adce-37582e9d8628))
(fp_arc (start -15.5 -10.2) (mid -15.412132 -10.412132) (end -15.2 -10.5)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 0c77c429-38ff-4453-bfea-86427781ef4b))
(fp_arc (start -15.2 7) (mid -15.412132 6.912132) (end -15.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 82a494e9-176b-4ed2-929e-ea378ce2ef25))
(fp_arc (start 15.2 -10.5) (mid 15.412132 -10.412132) (end 15.5 -10.2)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 19245ca7-fd1f-4ebc-8a68-861c42f6d7e8))
(fp_arc (start 15.5 6.7) (mid 15.412132 6.912132) (end 15.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 32563494-3eed-4e00-96b4-d88bdf7c0ad2))
)
(footprint "kikit:Tab" (layer "F.Cu")
(tstamp 31c7d426-886e-4445-b512-7dd76a63e80a)
(at 125.0125 120.25 90)
(descr "A symbol representing annotation for tab placement")
(property "Sheetfile" "mfk60_left.kicad_sch")
(property "Sheetname" "Left")
(property "exclude_from_bom" "")
(property "ki_description" "KiKit tab annotations")
(property "ki_keywords" "KiKit")
(path "/ee6749c5-8347-4034-bc31-139d7c495021/66974201-4677-4b85-af46-26a0a0605c61")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "T3" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b3df45e5-b837-49d7-bfb4-61824d3968b2)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp 97f3ff17-9e71-4fd1-85cd-0d70b7794748)
)
(fp_text user "KIKIT: width: 6mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3acf3a49-6e99-48c3-9818-cbbeeaa652fd)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp fb51a0aa-b9f2-40aa-b673-a07255a665d6))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp e27cfcaa-d77f-49f5-a4f4-cd04f2d54650))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp c87222a0-92c4-49ef-9e37-40f8993709af))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 2c54f5dc-1687-4946-a397-ea6b09be29b9))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 31eb438d-5bea-4293-b5b8-1b9fabc78b14)
(at 248.8375 53.575)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/f8a0547a-3bf6-4f76-b57f-8932ff03f824")
(attr smd board_only)
(fp_text reference "SW25" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 63185178-c2e8-4a5a-b62a-2ebdbdcca0e2)
)
(fp_text value "COL11_ROW2" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 35a293db-7b19-480f-9262-b3f6cf87b1fa)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 7c8e51ab-cb9b-4c02-9cd8-4bdb6365db6c)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 181902f9-ba20-43d2-8c42-b6a1c39f7358)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp a15b628b-944d-4af5-8a48-eb779090f35d))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp b1da451c-29a7-491a-aab6-d380a5c370c9))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp cc3e0b82-d3a6-4176-a8e1-50efbe0294e5))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 6d11c2d5-97aa-4770-a3b4-61b6c77f1dc4))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 8f813e72-fd37-4421-a02b-6ed67f3cd7ec))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 587efaa1-e9da-414c-af89-fa85918cac78))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 78c5e8e8-8c87-4938-9850-5f2c29aa4917))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 390bdc60-f703-4841-8f63-0b9c7c6a761e))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp efaa2831-2ea3-4b30-8be9-72165209e51a))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ee66558f-3e21-43c6-916d-93de0e38dc93))
)
(footprint "kikit:Tab" (layer "F.Cu")
(tstamp 389eb57e-1251-401a-8020-a3d2c75c8956)
(at 267.8875 120.25 90)
(descr "A symbol representing annotation for tab placement")
(property "Sheetfile" "mfk60_right.kicad_sch")
(property "Sheetname" "Righ")
(property "exclude_from_bom" "")
(property "ki_description" "KiKit tab annotations")
(property "ki_keywords" "KiKit")
(path "/9b5d010c-c128-4221-9df0-679e0e88f90c/353d960a-7c7e-4a03-a715-dd481ae0815e")
(attr board_only exclude_from_pos_files exclude_from_bom)
(fp_text reference "T7" (at 0 -2 90) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3423b9ed-be54-4db5-878c-00d4e0302d42)
)
(fp_text value "Tab" (at -2.75 -1 90) (layer "Dwgs.User")
(effects (font (size 1.2 1.2) (thickness 0.2)))
(tstamp aabc66ad-829e-4bf6-a6b8-14d5fa348fa9)
)
(fp_text user "KIKIT: width: 6mm" (at -5.5 0) (layer "Dwgs.User")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ca566fb1-af90-4669-8219-50c471a59be5)
)
(fp_line (start 0.25 0) (end -2.75 0)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp ab1b8698-9df7-4d2e-912e-284c95d5046e))
(fp_line (start 0.25 0) (end -0.75 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 99c0edc0-91ef-4085-8612-2b3c59b18b6b))
(fp_line (start 0.25 0) (end -0.75 1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 342f27d2-c54f-46a3-82b0-caae7a107d44))
(fp_line (start 0.25 1) (end 0.25 -1)
(stroke (width 0.3) (type solid)) (layer "Dwgs.User") (tstamp 43abcd70-9e90-4482-9fe6-5560f6658518))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 404e3b4d-9257-4111-b8bd-743f2792ec2b)
(at 289.31875 91.675)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/418d0d38-a912-4c55-83af-df5e185db688")
(attr smd board_only)
(fp_text reference "SW53" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21e472a0-529e-4019-b594-da0b287dd200)
)
(fp_text value "COL12_ROW4" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e054ed20-0149-4595-bddd-3383f11c14f1)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4f846b65-caad-49fc-bec9-514123956861)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cf8e73bd-0d77-402f-922e-370ded6ef775)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 8d13add3-80e1-463e-9f51-808192a8d261))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp f702f8ea-e97d-40d9-93c5-98af36206b57))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp ab303378-e040-4a75-8b83-2674a54a1ffb))
(fp_line (start -7.2 -7) (end 7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 85a23aab-363d-4c3b-8ac3-b9c0c93df5a1))
(fp_line (start 7.2 7) (end -7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 5976a2a5-0d33-4625-b264-c268021fb2db))
(fp_line (start 7.5 -6.7) (end 7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp cf1809d9-b338-4b57-bc5f-c2fbc20399d0))
(fp_arc (start -7.5 -6.7) (mid -7.412132 -6.912132) (end -7.2 -7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 43322dc6-bf16-44aa-8da1-6fa23b14724b))
(fp_arc (start -7.2 7) (mid -7.412132 6.912132) (end -7.5 6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp df1bf9ac-11f6-4ec9-ac08-01689253525e))
(fp_arc (start 7.2 -7) (mid 7.412132 -6.912132) (end 7.5 -6.7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 598aacc0-f415-45e6-86e9-74d6ca12f02d))
(fp_arc (start 7.5 6.7) (mid 7.412132 6.912132) (end 7.2 7)
(stroke (width 0.15) (type default)) (layer "Edge.Cuts") (tstamp 12cf7b12-885f-4e7f-a502-611e270566af))
)
(footprint "Gateron_Low_Profile:Gateron_Low_Profile_Middle_Plate" (layer "F.Cu")
(tstamp 4e369d83-7b70-4384-98c8-28e8b5182383)
(at 86.9125 72.625)
(property "Sheetfile" "mfk60_matrix.kicad_sch")
(property "Sheetname" "Matrix")
(property "ki_description" "Push button switch, generic, two pins")
(property "ki_keywords" "switch normally-open pushbutton push-button")
(path "/2809b42f-6b40-4f20-9f56-56e870a192dd/bae153f3-d92f-45c7-bb1f-4231f0957e07")
(attr smd board_only)
(fp_text reference "SW31" (at 0 -0.5 unlocked) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 466284ff-d2b1-40ab-9c7d-793dae831f15)
)
(fp_text value "COL3_ROW3" (at 0 1 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e96ea49c-f318-4bd9-a01c-c9a07e5a16f3)
)
(fp_text user "${VALUE}" (at 0 8.5) (layer "B.Fab")
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 6f2a4f75-aae6-4c07-a20a-24d7df45e6f3)
)
(fp_text user "${REFERENCE}" (at 0 2.5 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 33ebc4dc-e1a5-4657-80a8-b8659b18e8a2)
)
(fp_rect (start -9.525 -9.525) (end 9.525 9.525)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 51b5e90e-7ffb-45d1-a260-e6594053d57f))
(fp_rect (start -7 -7) (end 7 7)
(stroke (width 0.12) (type default)) (fill none) (layer "Dwgs.User") (tstamp 2c528874-e535-4e82-a5ae-3b7b742817a9))
(fp_line (start -7.5 6.7) (end -7.5 -6.7)