-
Notifications
You must be signed in to change notification settings - Fork 0
/
tiny-touch.net
1120 lines (1120 loc) · 43.8 KB
/
tiny-touch.net
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
(export (version D)
(design
(source /Users/brandenbyers/PCBs/Projects/tiny-oh/tiny-oh.sch)
(date "Tuesday, December 17, 2019 at 10:04:50 PM")
(tool "Eeschema (5.1.2-1)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source tiny-oh.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MX1)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B0A))
(comp (ref MX2)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B10))
(comp (ref MX3)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B16))
(comp (ref MX4)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B1C))
(comp (ref MX5)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B22))
(comp (ref MX6)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B28))
(comp (ref MX7)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B2E))
(comp (ref MX8)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B34))
(comp (ref MX9)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B3A))
(comp (ref MX10)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E010B40))
(comp (ref D1)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0390F3))
(comp (ref D2)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03A53F))
(comp (ref D3)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03AF6C))
(comp (ref D4)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03B84F))
(comp (ref D5)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03C7DB))
(comp (ref D6)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03CFAB))
(comp (ref D7)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03DC6C))
(comp (ref D8)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03E3CE))
(comp (ref D9)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03EA8B))
(comp (ref D10)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E03EFFE))
(comp (ref MX11)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E060479))
(comp (ref MX12)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E06047F))
(comp (ref MX13)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E060485))
(comp (ref MX14)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E06048B))
(comp (ref MX15)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E060491))
(comp (ref MX16)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E060497))
(comp (ref MX17)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E06049D))
(comp (ref MX18)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604A3))
(comp (ref MX19)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604A9))
(comp (ref MX20)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604AF))
(comp (ref D11)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604B5))
(comp (ref D12)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604BB))
(comp (ref D13)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604C1))
(comp (ref D14)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604C7))
(comp (ref D15)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604CD))
(comp (ref D16)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604D3))
(comp (ref D17)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604D9))
(comp (ref D18)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604DF))
(comp (ref D19)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604E5))
(comp (ref D20)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0604EB))
(comp (ref MX21)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E073034))
(comp (ref MX22)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E07303A))
(comp (ref MX23)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E073040))
(comp (ref MX24)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E073046))
(comp (ref MX25)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E07304C))
(comp (ref MX26)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E073052))
(comp (ref MX27)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E073058))
(comp (ref MX28)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E07305E))
(comp (ref MX29)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E073064))
(comp (ref MX30)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E07306A))
(comp (ref D21)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E073070))
(comp (ref D22)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E073076))
(comp (ref D23)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E07307C))
(comp (ref D24)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E073082))
(comp (ref D25)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E073088))
(comp (ref D26)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E07308E))
(comp (ref D27)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E073094))
(comp (ref D28)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E07309A))
(comp (ref D29)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0730A0))
(comp (ref D30)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0730A6))
(comp (ref MX31)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B19))
(comp (ref MX32)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B1F))
(comp (ref MX33)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B25))
(comp (ref MX34)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B2B))
(comp (ref MX35)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B31))
(comp (ref MX36)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B37))
(comp (ref MX37)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B3D))
(comp (ref MX38)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B43))
(comp (ref MX39)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B49))
(comp (ref D31)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B55))
(comp (ref D32)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B5B))
(comp (ref D33)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B61))
(comp (ref D34)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B67))
(comp (ref D35)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B6D))
(comp (ref D36)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B73))
(comp (ref D37)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B79))
(comp (ref D38)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B7F))
(comp (ref D39)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E099B85))
(comp (ref MX40)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE851))
(comp (ref MX41)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE857))
(comp (ref MX42)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE85D))
(comp (ref MX43)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE863))
(comp (ref MX44)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE869))
(comp (ref MX45)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE86F))
(comp (ref MX46)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE875))
(comp (ref MX47)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE87B))
(comp (ref MX48)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE881))
(comp (ref D40)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE887))
(comp (ref D41)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE88D))
(comp (ref D42)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE893))
(comp (ref D43)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE899))
(comp (ref D44)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE89F))
(comp (ref D45)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE8A5))
(comp (ref D46)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE8AB))
(comp (ref D47)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE8B1))
(comp (ref D48)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0AE8B7))
(comp (ref MX49)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C7383))
(comp (ref MX50)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C7389))
(comp (ref MX51)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C738F))
(comp (ref MX52)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C7395))
(comp (ref MX53)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C739B))
(comp (ref MX54)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73A1))
(comp (ref MX55)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73A7))
(comp (ref MX56)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73AD))
(comp (ref MX57)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73B3))
(comp (ref MX58)
(value MX-NoLED)
(footprint tiny-oh:bare_pcb_switch_3)
(libsource (lib MX_Alps_Hybrid) (part MX-NoLED) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73B9))
(comp (ref D49)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73BF))
(comp (ref D50)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73C5))
(comp (ref D51)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73CB))
(comp (ref D52)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73D1))
(comp (ref D53)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73D7))
(comp (ref D54)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73DD))
(comp (ref D55)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73E3))
(comp (ref D56)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73E9))
(comp (ref D57)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73EF))
(comp (ref D58)
(value 1N4148)
(footprint Keebio-Parts:MD_Diode)
(datasheet https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(libsource (lib Diode) (part 1N4148) (description "100V 0.15A standard switching diode, DO-35"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C73F5)))
(libparts
(libpart (lib Diode) (part 1N4148)
(aliases
(alias 1N4448)
(alias 1N4149)
(alias 1N4151)
(alias 1N914)
(alias BA243)
(alias BA244)
(alias BA282)
(alias BA283)
(alias BAV17)
(alias BAV18)
(alias BAV19)
(alias BAV20)
(alias BAV21)
(alias BAW75)
(alias BAW76)
(alias BAY93))
(description "100V 0.15A standard switching diode, DO-35")
(docs https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf)
(footprints
(fp D*DO?35*))
(fields
(field (name Reference) D)
(field (name Value) 1N4148)
(field (name Footprint) Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib MX_Alps_Hybrid) (part MX-NoLED)
(fields
(field (name Reference) MX)
(field (name Value) MX-NoLED))
(pins
(pin (num 1) (name COL) (type passive))
(pin (num 2) (name ROW) (type passive)))))
(libraries
(library (logical Diode)
(uri "/Library/Application Support/kicad/library/Diode.lib"))
(library (logical MX_Alps_Hybrid)
(uri "/Users/brandenbyers/PCBs/Libraries/MX_Alps_Hybrid/Schematic Library/MX_Alps_Hybrid.lib")))
(nets
(net (code 1) (name "Net-(D1-Pad2)")
(node (ref MX1) (pin 2))
(node (ref D1) (pin 2)))
(net (code 2) (name "Net-(D2-Pad2)")
(node (ref MX2) (pin 2))
(node (ref D2) (pin 2)))
(net (code 3) (name "Net-(D3-Pad2)")
(node (ref MX3) (pin 2))
(node (ref D3) (pin 2)))
(net (code 4) (name "Net-(D4-Pad2)")
(node (ref D4) (pin 2))
(node (ref MX4) (pin 2)))
(net (code 5) (name "Net-(D5-Pad2)")
(node (ref D5) (pin 2))
(node (ref MX5) (pin 2)))
(net (code 6) (name "Net-(D6-Pad2)")
(node (ref D6) (pin 2))
(node (ref MX6) (pin 2)))
(net (code 7) (name "Net-(D7-Pad2)")
(node (ref D7) (pin 2))
(node (ref MX7) (pin 2)))
(net (code 8) (name "Net-(D8-Pad2)")
(node (ref MX8) (pin 2))
(node (ref D8) (pin 2)))
(net (code 9) (name "Net-(D9-Pad2)")
(node (ref D9) (pin 2))
(node (ref MX9) (pin 2)))
(net (code 10) (name "Net-(D10-Pad2)")
(node (ref D10) (pin 2))
(node (ref MX10) (pin 2)))
(net (code 11) (name "Net-(D1-Pad1)")
(node (ref D1) (pin 1))
(node (ref D2) (pin 1))
(node (ref D3) (pin 1))
(node (ref D4) (pin 1))
(node (ref D5) (pin 1))
(node (ref D6) (pin 1))
(node (ref D7) (pin 1))
(node (ref D8) (pin 1))
(node (ref D9) (pin 1))
(node (ref D10) (pin 1)))
(net (code 12) (name "Net-(D11-Pad2)")
(node (ref D11) (pin 2))
(node (ref MX11) (pin 2)))
(net (code 13) (name "Net-(D12-Pad2)")
(node (ref D12) (pin 2))
(node (ref MX12) (pin 2)))
(net (code 14) (name "Net-(D13-Pad2)")
(node (ref D13) (pin 2))
(node (ref MX13) (pin 2)))
(net (code 15) (name "Net-(D14-Pad2)")
(node (ref MX14) (pin 2))
(node (ref D14) (pin 2)))
(net (code 16) (name "Net-(D15-Pad2)")
(node (ref MX15) (pin 2))
(node (ref D15) (pin 2)))
(net (code 17) (name "Net-(D16-Pad2)")
(node (ref D16) (pin 2))
(node (ref MX16) (pin 2)))
(net (code 18) (name "Net-(D17-Pad2)")
(node (ref D17) (pin 2))
(node (ref MX17) (pin 2)))
(net (code 19) (name "Net-(D18-Pad2)")
(node (ref MX18) (pin 2))
(node (ref D18) (pin 2)))
(net (code 20) (name "Net-(D19-Pad2)")
(node (ref MX19) (pin 2))
(node (ref D19) (pin 2)))
(net (code 21) (name "Net-(D20-Pad2)")
(node (ref MX20) (pin 2))
(node (ref D20) (pin 2)))
(net (code 22) (name "Net-(D11-Pad1)")
(node (ref D12) (pin 1))
(node (ref D11) (pin 1))
(node (ref D13) (pin 1))
(node (ref D14) (pin 1))
(node (ref D15) (pin 1))
(node (ref D16) (pin 1))
(node (ref D17) (pin 1))
(node (ref D18) (pin 1))
(node (ref D20) (pin 1))
(node (ref D19) (pin 1)))
(net (code 23) (name "Net-(D21-Pad2)")
(node (ref D21) (pin 2))
(node (ref MX21) (pin 2)))
(net (code 24) (name "Net-(D22-Pad2)")
(node (ref D22) (pin 2))
(node (ref MX22) (pin 2)))
(net (code 25) (name "Net-(D23-Pad2)")
(node (ref MX23) (pin 2))
(node (ref D23) (pin 2)))
(net (code 26) (name "Net-(D24-Pad2)")
(node (ref MX24) (pin 2))
(node (ref D24) (pin 2)))
(net (code 27) (name "Net-(D25-Pad2)")
(node (ref MX25) (pin 2))
(node (ref D25) (pin 2)))
(net (code 28) (name "Net-(D26-Pad2)")
(node (ref MX26) (pin 2))
(node (ref D26) (pin 2)))
(net (code 29) (name "Net-(D27-Pad2)")
(node (ref MX27) (pin 2))
(node (ref D27) (pin 2)))
(net (code 30) (name "Net-(D28-Pad2)")
(node (ref MX28) (pin 2))
(node (ref D28) (pin 2)))
(net (code 31) (name "Net-(D29-Pad2)")
(node (ref MX29) (pin 2))
(node (ref D29) (pin 2)))
(net (code 32) (name "Net-(D30-Pad2)")
(node (ref MX30) (pin 2))
(node (ref D30) (pin 2)))
(net (code 33) (name "Net-(D21-Pad1)")
(node (ref D30) (pin 1))
(node (ref D29) (pin 1))
(node (ref D28) (pin 1))
(node (ref D27) (pin 1))
(node (ref D21) (pin 1))
(node (ref D26) (pin 1))
(node (ref D22) (pin 1))
(node (ref D25) (pin 1))
(node (ref D23) (pin 1))
(node (ref D24) (pin 1)))
(net (code 34) (name "Net-(D31-Pad2)")
(node (ref D31) (pin 2))
(node (ref MX31) (pin 2)))
(net (code 35) (name "Net-(D32-Pad2)")
(node (ref D32) (pin 2))
(node (ref MX32) (pin 2)))
(net (code 36) (name "Net-(D33-Pad2)")
(node (ref D33) (pin 2))
(node (ref MX33) (pin 2)))
(net (code 37) (name "Net-(D34-Pad2)")
(node (ref MX34) (pin 2))
(node (ref D34) (pin 2)))
(net (code 38) (name "Net-(D35-Pad2)")
(node (ref D35) (pin 2))
(node (ref MX35) (pin 2)))
(net (code 39) (name "Net-(D36-Pad2)")
(node (ref MX36) (pin 2))
(node (ref D36) (pin 2)))
(net (code 40) (name "Net-(D37-Pad2)")
(node (ref MX37) (pin 2))
(node (ref D37) (pin 2)))
(net (code 41) (name "Net-(D38-Pad2)")
(node (ref MX38) (pin 2))
(node (ref D38) (pin 2)))
(net (code 42) (name "Net-(D39-Pad2)")
(node (ref MX39) (pin 2))
(node (ref D39) (pin 2)))
(net (code 43) (name "Net-(D31-Pad1)")
(node (ref D39) (pin 1))
(node (ref D38) (pin 1))
(node (ref D37) (pin 1))
(node (ref D36) (pin 1))
(node (ref D35) (pin 1))
(node (ref D34) (pin 1))
(node (ref D33) (pin 1))
(node (ref D32) (pin 1))
(node (ref D31) (pin 1)))
(net (code 44) (name "Net-(D40-Pad2)")
(node (ref MX40) (pin 2))
(node (ref D40) (pin 2)))
(net (code 45) (name "Net-(D41-Pad2)")
(node (ref MX41) (pin 2))
(node (ref D41) (pin 2)))
(net (code 46) (name "Net-(D42-Pad2)")
(node (ref D42) (pin 2))
(node (ref MX42) (pin 2)))
(net (code 47) (name "Net-(D43-Pad2)")
(node (ref D43) (pin 2))
(node (ref MX43) (pin 2)))
(net (code 48) (name "Net-(D44-Pad2)")
(node (ref D44) (pin 2))
(node (ref MX44) (pin 2)))
(net (code 49) (name "Net-(D45-Pad2)")
(node (ref MX45) (pin 2))
(node (ref D45) (pin 2)))
(net (code 50) (name "Net-(D46-Pad2)")
(node (ref D46) (pin 2))
(node (ref MX46) (pin 2)))
(net (code 51) (name "Net-(D47-Pad2)")
(node (ref D47) (pin 2))
(node (ref MX47) (pin 2)))
(net (code 52) (name "Net-(D48-Pad2)")
(node (ref D48) (pin 2))