-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmult.kicad_pcb
15853 lines (15803 loc) · 622 KB
/
mult.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 "A4")
(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 "")
(net 1 "+12V")
(net 2 "GND")
(net 3 "-12V")
(net 4 "Net-(D1-COM)")
(net 5 "Net-(D2-COM)")
(net 6 "/FACE")
(net 7 "Net-(J1-Pin_1)")
(net 8 "Net-(J1-Pin_10)")
(net 9 "/IN0")
(net 10 "unconnected-(J2-PadTN)")
(net 11 "/OUT0")
(net 12 "unconnected-(J3-PadTN)")
(net 13 "/OUT1")
(net 14 "unconnected-(J4-PadTN)")
(net 15 "/OUT2")
(net 16 "unconnected-(J5-PadTN)")
(net 17 "/IN1")
(net 18 "/OUT3")
(net 19 "unconnected-(J7-PadTN)")
(net 20 "/OUT4")
(net 21 "unconnected-(J8-PadTN)")
(net 22 "/OUT5")
(net 23 "unconnected-(J9-PadTN)")
(net 24 "Net-(U1B--)")
(net 25 "Net-(U1C--)")
(net 26 "Net-(U1D--)")
(net 27 "Net-(U2B--)")
(net 28 "/GND'")
(net 29 "/IN0'")
(net 30 "/IN1'")
(net 31 "/OUT0'")
(net 32 "/OUT1'")
(net 33 "/OUT2'")
(net 34 "/OUT3'")
(net 35 "/OUT4'")
(net 36 "/OUT5'")
(net 37 "Net-(U1A--)")
(net 38 "Net-(U2A--)")
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp 0e25fb8f-2716-4055-a003-c0c9a4d810ab)
(at 125.73 107.844 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/e73900c9-1ea7-4790-86fb-bf883878c6b3")
(attr through_hole)
(fp_text reference "J7" (at 5.842 -4.424 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2fe85b89-1d61-4fd7-a9b9-6108ae5b8693)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b1ae6c5-8a02-4fc7-8175-262ea6014347)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d5abdfdd-490c-4aa3-9fe5-33a67154d735)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1636c590-3dc8-4409-8c6f-2782e5b74c34))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bcb2efa5-2e1f-4585-a3aa-182f5562cb44))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b15c9a40-95fd-4148-9555-d49f6cf71223))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 4ffb2e3b-40d5-4bc6-97f4-e850ca088afe))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fafd82ca-29dd-461b-99d3-bffa0a1e8f49))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5217c28d-6162-4a92-9eea-8f9d7bf56180))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8a963e75-f623-4774-a5e5-bd3f1074133a))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8b680eea-e257-4218-a39e-825b4be5f8e3))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp b43ebe6e-a2a9-468a-9000-037c147c45a1))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp d4f5b3f8-7d56-4833-8131-b35d15e46fab))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 18 "/OUT3") (pintype "passive") (tstamp a8ddfabf-3962-4317-bff6-bff4d000bea9))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 19 "unconnected-(J7-PadTN)") (pintype "passive+no_connect") (tstamp 0dc0f81f-c797-441b-b661-964396382cb3))
)
(footprint "Eurorack:Mech-AudioJack-Hole-Output" (layer "F.Cu")
(tstamp 10e1f1d4-e29c-422f-aaa0-86ec9387d7b4)
(at 125.73 141.459 180)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/eb5171ca-7f95-4e0a-b0ba-2b514b96e2e2")
(attr through_hole exclude_from_bom)
(fp_text reference "H10" (at -3.302 -4.064 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a4ba609-67d8-48a5-99da-d418ff161d8b)
)
(fp_text value "out 2" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp 6a619d97-63ec-47f9-a36f-399d1f9b98c3)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 949e632d-958d-482c-b063-c12ba957cb1b)
)
(fp_arc (start 3.81 -3.81) (mid 0 5.388154) (end -3.81 -3.81)
(stroke (width 2.7) (type solid)) (layer "F.SilkS") (tstamp f8fa53e7-86c1-44ed-8d6a-72a36d131f78))
(fp_circle (center 0 0) (end 4.65 0)
(stroke (width 1.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp ec33b5b5-1a98-4d75-9375-ed871f13cbcc))
(pad "1" thru_hole circle (at 0 0 270) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 052b2729-00b4-4bfc-b9e2-2e63b2fc37b1))
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp 1ca1f745-b96d-44ef-b6f2-ef8b7ba226fd)
(at 149.86 107.844 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/580f2a10-e8dc-44ab-a393-00f173d66670")
(attr through_hole)
(fp_text reference "J9" (at 5.842 -4.424 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38a5fb46-69ea-444d-8426-09c809c1be9f)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6a8d2e21-ed08-45eb-a7e4-c8e67e5a47a7)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56a26fbc-ea54-45d8-9046-2d1d6d9d9ec2)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fc9eeec2-4e48-4e99-bc0f-4ab74f60a44a))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 364b09b5-4c3d-4c39-9297-b69b098d901f))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 696f330e-b272-47af-b07c-3c7b79c9c781))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d6b64c1b-f758-44af-979b-91107658f0a3))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7477f302-5c03-4104-bb25-8aa347a845fa))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 55889117-c8b0-42d8-b2dc-31a93f58d4fa))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7e31b10e-01bd-4f53-9b5d-a1d1e4b79961))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 171b8bab-7323-47f8-9028-d880f3dd9848))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp c5524013-9cc1-41fb-97bf-be4c3a69e316))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 1ca36ffe-a4f0-42f8-8a1c-8711d707321c))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 22 "/OUT5") (pintype "passive") (tstamp d23795fb-d68f-4f4c-81a7-389fcff8d8e7))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 23 "unconnected-(J9-PadTN)") (pintype "passive+no_connect") (tstamp 24ca037f-f499-4f51-94be-957e44107a48))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 2a6142b0-7a68-46a4-8226-aa2f87e7d26b)
(at 106.68 74.168)
(descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x03 2.54mm single row")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/6445256b-b38f-4a30-b560-a74ccd731046")
(attr through_hole)
(fp_text reference "J13" (at 0 -2.77) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2da98f29-3f42-4a47-8759-a9eb1ac3a76d)
)
(fp_text value "Conn_01x03_Socket" (at 0 7.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bdb70c97-b206-40d8-b426-33cdd4e75872)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 06d22c18-0c55-4fef-b58b-ba8ba4830ffa)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc6b7f99-1cda-42cf-854b-5569dd2e7611))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f6217fd-edad-4d15-a47f-d19dee6fb9ed))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3b8d223-23ab-4709-ae6c-bcfc5fb5d521))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aaf817af-b91c-4d3b-9d35-6d4a1e237f80))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11853072-3e6e-4a6a-b875-c61546536ccc))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6e330c2-754d-40b9-b7a0-d73e2880a9a4))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a0267cb3-1c1b-4530-bb4e-bb5492641c4f))
(fp_line (start -1.8 6.85) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2de977cb-7ad9-43e4-b630-eb6dcf8890eb))
(fp_line (start 1.75 -1.8) (end 1.75 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1d9bca3-262d-40fa-a6d5-bd2784b5b111))
(fp_line (start 1.75 6.85) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a890787b-0a0d-4461-b9e8-033b8114df16))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4c32a22-3a0a-4b24-ba7b-7f08c9551a9e))
(fp_line (start -1.27 6.35) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e1676c19-e560-4e55-bd36-7ce7277aea0d))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74a78400-16ca-4006-844e-18ce2351966d))
(fp_line (start 1.27 -0.635) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53a07973-8377-4600-9fec-4f64b2e02687))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d2eeaada-aa2e-4707-a8ff-00dde3f7cb73))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 5ebcb53e-348b-48e2-9230-68d32b1ccf0e))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 29 "/IN0'") (pinfunction "Pin_2") (pintype "passive") (tstamp 0cf925d9-890f-42ef-b788-e1a845938f3e))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 30 "/IN1'") (pinfunction "Pin_3") (pintype "passive") (tstamp 53a06aa9-65ab-4b9f-a041-9e8ae45624d5))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp 3bd9fe39-00b8-4f2e-b896-53b25672fd0d)
(at 125.73 96.668 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/2525782d-2e24-45f7-8edf-0298e5f7fb60")
(attr through_hole)
(fp_text reference "J3" (at 5.842 4.466 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3f5e8526-f804-4e6b-a0cf-f6662bee118f)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b9d92608-fe11-41a6-9cd4-adac37007c02)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 77bb624f-6b47-4e05-ba5b-a417c8bc7f8d)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b8cdfcfc-8343-4ba1-8fba-1eb81adf8d45))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 6edffe19-93f4-4a20-9c8d-5e1cb82c9c7d))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 1f1d8524-6712-4bb1-b552-f0682792639d))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 986d12b2-7747-4a71-88b7-f511f3042980))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fd598b51-ce1d-4107-a275-6aff59505dcc))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b3fc6fcb-8a91-4fec-84f8-aeb74c2e800d))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 27680fc3-4ec8-42db-a2d1-50408171fa04))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fefd0bf5-4091-487f-8409-4efe02670c5e))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 762511a7-abdb-4777-a573-28cab418f5eb))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 461431f7-3f74-4796-8b0f-ab77625ef271))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 11 "/OUT0") (pintype "passive") (tstamp 450f822c-ea8e-418c-8046-4792a61517f3))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 12 "unconnected-(J3-PadTN)") (pintype "passive+no_connect") (tstamp b60c99bb-e000-4f10-8862-832cae23f242))
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp 3c6ddce5-8275-4dcd-8554-1882005faf54)
(at 137.795 96.668 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/c811e64b-dded-4d6d-8246-ebcbb17e437d")
(attr through_hole)
(fp_text reference "J4" (at 5.842 4.466 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7f95556a-9f27-4f62-b2e8-6bddc6c983e9)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a547eec2-582d-49c8-ac66-c7d2a219f1e5)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 17b0c7b5-a59b-40cd-b717-7f4b651a96ca)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b016574f-db3f-4b30-8c3e-a4589b45ca23))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 774ca58d-2887-490a-9347-aad59ac183d6))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 20ca0393-6118-4f06-92ec-766d4b0c3b30))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7e6d2f82-b62e-4693-b893-1e079b8a1c66))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp c3a66156-981b-4ab0-a935-8643bc994fa5))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8e87b528-c6cd-4a62-9625-3d29e02093d4))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 52e82eb3-0af4-4826-9c7f-cc2c0c32f4fc))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 69304699-ba8d-4b05-82c3-9c62c605c9ae))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp e9f4e6d5-a046-432b-8466-fb54bcbdb183))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 419d6c27-3336-47e4-a8eb-3a8739c4336e))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 13 "/OUT1") (pintype "passive") (tstamp 1c953f19-63d5-4aa4-83cd-b2b76d2a1f3b))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 14 "unconnected-(J4-PadTN)") (pintype "passive+no_connect") (tstamp 96786376-4954-48e8-8031-3de92dc47648))
)
(footprint "Eurorack:Mech-MountingHole" (layer "F.Cu")
(tstamp 402cfebf-4be0-460d-8510-69c957883c63)
(at 109.305 119.3)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/556e95d4-301b-43d6-afcc-a4fa21657dff")
(attr through_hole exclude_from_bom)
(fp_text reference "H1" (at 0 -2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eea30123-236a-443d-ad44-18b7f98d3199)
)
(fp_text value "mount0" (at 0 2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3614190a-67ae-4fcf-a6b1-60cecc2ff325)
)
(pad "1" thru_hole oval (at 0 0 90) (size 3.5 7.8) (drill oval 3.2 7.5) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "output") (tstamp 237e0cc8-a967-497d-8d83-cf02c20dfa09))
)
(footprint "Eurorack:Mech-MountingHole" (layer "F.Cu")
(tstamp 50db725c-1b68-48f4-a29e-5bd9e08dfbd8)
(at 109.305 152.95)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/a5449a60-d287-4525-a107-02edb0637d85")
(attr through_hole exclude_from_bom)
(fp_text reference "H4" (at 0 -2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 552c3632-e280-4f8c-84db-47362f034c93)
)
(fp_text value "mount3" (at 0 2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp b50e5233-a4de-4412-a3b2-bedd158e8318)
)
(pad "1" thru_hole oval (at 0 0 90) (size 3.5 7.8) (drill oval 3.2 7.5) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 40e7abc0-3f82-4fa1-b61a-85597952e030))
)
(footprint "Eurorack:Mech-AudioJack-Hole-Output" (layer "F.Cu")
(tstamp 78e61ee3-0d1c-49d3-b08d-0befec99da02)
(at 149.86 141.459 180)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/b4e68842-157d-4293-9a31-0cd844811227")
(attr through_hole exclude_from_bom)
(fp_text reference "H12" (at -3.302 -4.064 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 134e871c-b986-4c27-a243-263f0c29215c)
)
(fp_text value "out 2" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp 4563092e-4305-417d-a2ff-29fd5e68765b)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp fba983b3-895a-4f00-983e-87dfb6c5ee24)
)
(fp_arc (start 3.81 -3.81) (mid 0 5.388154) (end -3.81 -3.81)
(stroke (width 2.7) (type solid)) (layer "F.SilkS") (tstamp 883d4b32-4bce-4eba-a007-2ad106c7824e))
(fp_circle (center 0 0) (end 4.65 0)
(stroke (width 1.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp f18db1d1-3d4d-412a-96f9-c9a44af734ea))
(pad "1" thru_hole circle (at 0 0 270) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 1f331ddf-28b0-40d1-bea4-7bf0fe917e4c))
)
(footprint "Eurorack:Mech-AudioJack-Hole-Output" (layer "F.Cu")
(tstamp 7f2a4e3f-5a3c-4998-b22c-a0e255a0964d)
(at 149.86 130.283)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/d61f97f0-8f39-4571-98b9-66f7d665d1f5")
(attr through_hole exclude_from_bom)
(fp_text reference "H9" (at -3.302 -4.064 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3eb07e10-13a2-4647-bae5-61388925ee48)
)
(fp_text value "out 1" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp a041aa8f-de1a-43a9-ae50-b4165c6f4292)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 889fad4d-2770-4e70-99a4-9176299682b0)
)
(fp_arc (start 3.81 -3.81) (mid 0 5.388154) (end -3.81 -3.81)
(stroke (width 2.7) (type solid)) (layer "F.SilkS") (tstamp 68607318-b8e9-4bc1-9d9d-bcadd8954f03))
(fp_circle (center 0 0) (end 4.65 0)
(stroke (width 1.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 70656097-b75a-4f91-8813-9bc8d199db9e))
(pad "1" thru_hole circle (at 0 0 90) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 9709b46f-1dc0-478e-a4a8-788f97fc2811))
)
(footprint "Eurorack:Mech-AudioJack-Hole" (layer "F.Cu")
(tstamp 7f4c1637-14cd-4e0f-92c7-7d9f5ad2b4e0)
(at 113.665 141.457)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/38050b55-dc59-4951-892c-1228fcdbd80a")
(attr through_hole exclude_from_bom)
(fp_text reference "H6" (at -3.302 -4.064 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc0d08ad-408e-491a-9ba8-0c846180657b)
)
(fp_text value "in 2" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp 1750ed4c-8c2d-4d2d-be0d-b94efc5e0715)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6e5108e3-2ede-4d66-94e3-0dcf7ee9e3e1)
)
(pad "1" thru_hole circle (at 0 0 90) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp b338e208-d33c-4c90-818b-6a1294fae2cb))
)
(footprint "Eurorack:Mech-AudioJack-Hole" (layer "F.Cu")
(tstamp 82b8d4a9-c4c9-4d91-ac28-2842951a7eb8)
(at 113.665 130.283)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/e4b3b15b-4321-43a9-8754-53e6b206e363")
(attr through_hole exclude_from_bom)
(fp_text reference "H5" (at -3.302 -4.064 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 01762d4c-ae06-42af-8f9f-58b0f9077a18)
)
(fp_text value "in 1" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp c6049e20-f012-4bed-9e3a-f3cd7fe23bec)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3e074161-b38c-482e-b3ca-b365d5b68451)
)
(pad "1" thru_hole circle (at 0 0 90) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 83f792c3-17f7-4e39-a26c-84415f684411))
)
(footprint "Eurorack:Mech-MountingHole" (layer "F.Cu")
(tstamp 86ed69d3-4c75-4786-87b6-560675f474f8)
(at 154.855 119.3)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/adc761c1-767f-4f9c-b1e7-2ce97ee3d9ec")
(attr through_hole exclude_from_bom)
(fp_text reference "H2" (at 0 -2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc5c5090-6a52-4632-8b1a-f53f82205a76)
)
(fp_text value "mount1" (at 0 2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 38017e34-d484-4762-8154-bb641d0d3d0c)
)
(pad "1" thru_hole oval (at 0 0 90) (size 3.5 7.8) (drill oval 3.2 7.5) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 83d870c0-fecc-4fe9-ab12-1b1ec5349f09))
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp 89b16b84-8c24-4acf-806f-487f921dcf1a)
(at 113.665 96.668 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/363da21b-4b77-4e8f-afd7-6ca7dd82ed26")
(attr through_hole)
(fp_text reference "J2" (at 5.842 4.466 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e8dd950e-9279-43f7-8984-9c7104c52113)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c7e087e6-0377-4023-95df-0debf5fd0359)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d0b409e-4732-4a23-a31e-1ceef029e169)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5723ca82-5c3e-4978-8a3d-4f0c6c98312c))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp b1a8a4dd-1a3c-47a6-8203-92cd91b6f9ba))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 42fb6376-4d09-42fe-afbe-af5c9773e71e))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f4aa78f3-fa7b-4c94-84ff-4297ec065b27))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 0c861178-8b3e-4be5-8c55-9424b655f58c))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 8daded1d-ce54-4d2a-9c4c-51101c293c1f))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 98b4d48a-c874-4258-8db9-8fa3aa06103e))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp fb3c0120-09da-4ba8-8c4a-a3a855d60192))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 3416345d-633d-409d-ac44-06698c0b2250))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 5ccf704a-f81f-4938-abe7-a172511621a1))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 9 "/IN0") (pintype "passive") (tstamp 5db55a3b-c120-4c4b-914e-bbf3f14efc13))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 10 "unconnected-(J2-PadTN)") (pintype "passive+no_connect") (tstamp e686799e-8d9a-4002-90cd-3f944d216f3b))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp 91f3456e-2144-4455-8959-b0390864942a)
(at 157.48 68.58)
(descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x03 2.54mm single row")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/213cea20-04bf-42b7-b4d3-3defa7e92877")
(attr through_hole)
(fp_text reference "J14" (at 0 7.366) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d00aab5a-d2b3-4d78-a44f-049cadeb2464)
)
(fp_text value "Conn_01x03_Socket" (at 0 7.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4e787d0a-08ec-4e8f-bece-6d1e2298dcda)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5fc6deb6-ce74-4254-abeb-118c11ed50bc)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76876b1d-04a7-42f7-8e58-f153a1c26dcd))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a269af37-941f-473c-a60c-86e6cbdd6d94))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1ad4e109-dcdc-4852-a03e-87bf11444d11))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbf0eb6d-1d4d-419b-a4b2-426646c7c096))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6491ffb-9782-49ed-befb-36bdc7efe3c5))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 69210d75-8112-4456-ac8c-1480d8a9381b))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5e64f92c-e7a8-41a5-9cb2-f50b521d94a7))
(fp_line (start -1.8 6.85) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d88e5630-af28-46b2-8688-c65c31c79bd1))
(fp_line (start 1.75 -1.8) (end 1.75 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 495c5d03-7a84-445c-b781-a93043282a76))
(fp_line (start 1.75 6.85) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1321b493-466c-4aba-8d9d-0e87492fc0dd))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 35a44fef-1bde-4337-9c89-353c449e514d))
(fp_line (start -1.27 6.35) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18f249a3-a7cc-443b-a3fe-d13dcefcea85))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6062e190-cd99-4b74-8f07-16d2ae2a1d12))
(fp_line (start 1.27 -0.635) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ea93d08-c168-444c-a210-e576ea8e30d5))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 74b0d371-f4d7-47cf-8afe-9a1e9220560a))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 31 "/OUT0'") (pinfunction "Pin_1") (pintype "passive") (tstamp 6a0f63bd-d2b2-45a2-a4a1-064ceaf6399a))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 32 "/OUT1'") (pinfunction "Pin_2") (pintype "passive") (tstamp 7c2ea551-9b7c-4cf2-bd07-429c2ab772a5))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 33 "/OUT2'") (pinfunction "Pin_3") (pintype "passive") (tstamp b1a9bda6-37b3-460b-9d07-3e4d7d0d1522))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp 9d4fcad0-2a06-4b8f-96e6-46639384f1a5)
(at 149.86 96.668 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/4c4d653b-baab-4d4a-91b9-45dc8447d4d1")
(attr through_hole)
(fp_text reference "J5" (at 5.842 4.466 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1af71fa4-5ed5-4403-a253-00dfe4711e55)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8fe32d93-65b1-47e5-9b73-299538c31cd4)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 46201e1c-f7a3-486f-b0c8-dc6799827e4e)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp f87c3e68-b709-4c33-9670-48c3b173af4b))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 56d7d891-c279-4d70-98bd-0145d6083d51))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp d1611fae-e308-4d76-aea7-cae075ac3b4a))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp ad4924ed-fede-4a21-8b0d-b4ea1d713b98))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 162e5054-4fbc-41e4-92af-3abbd628f794))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5a29e483-7eb7-4fa3-a1d4-710c80a8a978))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 7cfb5dd9-ba25-451c-8077-55ef4b98efba))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp bc2d4b5e-dcc1-48b4-a767-77d7f50fa7d2))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp b58b4e30-cd55-4b47-a1b6-3c32c9f206c4))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 19ae180d-1a72-4072-a292-63b878bb20ff))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 15 "/OUT2") (pintype "passive") (tstamp bf3b75da-ea2b-4e8f-98ab-9cf1e1279915))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 16 "unconnected-(J5-PadTN)") (pintype "passive+no_connect") (tstamp 91e6db67-4035-4284-887d-60bc4e5fb128))
)
(footprint "Eurorack:Mech-AudioJack-Hole-Output" (layer "F.Cu")
(tstamp ad883002-5694-4251-b4bb-01c44fba4371)
(at 137.795 141.459 180)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/53ca87b5-4518-4baa-8a6c-32c769a382d1")
(attr through_hole exclude_from_bom)
(fp_text reference "H11" (at -3.302 -4.064 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 61e1c360-f6d7-48b0-b271-f552da6f0211)
)
(fp_text value "out 2" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp 0c16b26d-28ee-4421-b7a6-74206d9f3480)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6f03dc3f-4edf-4cc1-bb97-b0455ffef904)
)
(fp_arc (start 3.81 -3.81) (mid 0 5.388154) (end -3.81 -3.81)
(stroke (width 2.7) (type solid)) (layer "F.SilkS") (tstamp 19598a91-db80-4859-9242-502583aa8f02))
(fp_circle (center 0 0) (end 4.65 0)
(stroke (width 1.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp c580348a-ece4-4191-9111-068baf680aa9))
(pad "1" thru_hole circle (at 0 0 270) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 5dc1557c-ec6f-473b-91dc-0a70e850c571))
)
(footprint "Eurorack:Mech-AudioJack-Hole-Output" (layer "F.Cu")
(tstamp b00493b5-5383-4cbb-bc62-c4faac85377e)
(at 125.73 130.283)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/c5fa0208-b752-42d0-80ea-45f7564d2076")
(attr through_hole exclude_from_bom)
(fp_text reference "H7" (at -3.302 -4.064 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7b476c1b-333a-43d9-840b-6d737055add8)
)
(fp_text value "out 1" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp a0a50507-a6cc-496e-b062-f1bbfc86fa73)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 56823e74-c25c-4c85-95f6-c1cfafa4bbeb)
)
(fp_arc (start 3.81 -3.81) (mid 0 5.388154) (end -3.81 -3.81)
(stroke (width 2.7) (type solid)) (layer "F.SilkS") (tstamp fd1a80ce-7a70-45c5-bbfb-a180320fffae))
(fp_circle (center 0 0) (end 4.65 0)
(stroke (width 1.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp ddcf33ea-ce55-4317-9016-de378161213c))
(pad "1" thru_hole circle (at 0 0 90) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 7acd6931-dda0-4041-ac29-6b397aff34ee))
)
(footprint "Connector_PinSocket_2.54mm:PinSocket_1x03_P2.54mm_Vertical" (layer "F.Cu")
(tstamp b0698773-32bf-4cdd-a203-a52f45453ac1)
(at 157.48 81.28)
(descr "Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated")
(tags "Through hole socket strip THT 1x03 2.54mm single row")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Generic connector, single row, 01x03, script generated")
(property "ki_keywords" "connector")
(path "/0f5f8e50-18c3-4e5b-8fdd-11dc1fe427d1")
(attr through_hole)
(fp_text reference "J15" (at 0 -2.286) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3b33493a-fe1d-45e5-85ff-0a8ffd1d6ee7)
)
(fp_text value "Conn_01x03_Socket" (at 0 7.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7052e00a-50d4-4fd1-b670-050a04643216)
)
(fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bed68fba-2af0-43b1-8793-f7579bc6e43e)
)
(fp_line (start -1.33 1.27) (end -1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6fa9026f-4fbe-4022-be14-f5cf0753000e))
(fp_line (start -1.33 1.27) (end 1.33 1.27)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 262f7765-c705-45d5-9827-d1702f095b48))
(fp_line (start -1.33 6.41) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 995675f3-574f-4de9-9635-e478b78596b5))
(fp_line (start 0 -1.33) (end 1.33 -1.33)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3fcdec2e-7d63-450c-9983-0ab9cc2a7a64))
(fp_line (start 1.33 -1.33) (end 1.33 0)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d5bedc70-8816-4396-80f2-4f7d52cac06c))
(fp_line (start 1.33 1.27) (end 1.33 6.41)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bbc6e9bc-4073-4ce4-88d6-383199636bb3))
(fp_line (start -1.8 -1.8) (end 1.75 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp aac41bbb-ac60-4463-a958-36bf92de0607))
(fp_line (start -1.8 6.85) (end -1.8 -1.8)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2c7ec2dd-3ca3-476c-8e95-ff14808ae488))
(fp_line (start 1.75 -1.8) (end 1.75 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca5943c8-1fff-4403-8321-bdb8692cf86b))
(fp_line (start 1.75 6.85) (end -1.8 6.85)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0295766f-2039-4687-88b0-4c5f084ca23d))
(fp_line (start -1.27 -1.27) (end 0.635 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2bc3d81f-5d83-41c6-bb16-758b026d17c5))
(fp_line (start -1.27 6.35) (end -1.27 -1.27)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e8fdfe4-f23a-4e6b-ba4d-1cc618a5237e))
(fp_line (start 0.635 -1.27) (end 1.27 -0.635)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 51db0c63-8779-4baf-9fa1-9e9bdf31c7c0))
(fp_line (start 1.27 -0.635) (end 1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38dc0d23-1f3a-4468-96d6-902cdb2d9504))
(fp_line (start 1.27 6.35) (end -1.27 6.35)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3a935b9f-7b87-47d6-860c-7188b9cd596b))
(pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 34 "/OUT3'") (pinfunction "Pin_1") (pintype "passive") (tstamp b484e330-5062-494a-8e23-f9ee22b66bea))
(pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 35 "/OUT4'") (pinfunction "Pin_2") (pintype "passive") (tstamp 5f9f5d18-5727-47c5-85af-055458dba5a8))
(pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers "*.Cu" "*.Mask")
(net 36 "/OUT5'") (pinfunction "Pin_3") (pintype "passive") (tstamp b3ce0807-12e6-4589-80cd-d040756263bc))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_1x03_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Eurorack:Mech-AudioJack-Hole-Output" (layer "F.Cu")
(tstamp b346a5f5-1611-4dd4-805a-a9aceabf9c84)
(at 137.795 130.283)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/5dc4b6e5-3a19-436d-8f68-dd506df4e0f7")
(attr through_hole exclude_from_bom)
(fp_text reference "H8" (at -3.302 -4.064 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8cd4081f-a441-4e1b-8656-b18bde617ac9)
)
(fp_text value "out 1" (at 0 -6.858 unlocked) (layer "F.SilkS") hide
(effects (font (size 3 3) (thickness 0.45)))
(tstamp d1987ff9-e481-40b0-8326-1fb2935b5081)
)
(fp_text user "${REFERENCE}" (at 0 -5.08 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 51c1d8ed-d50f-413b-8fd1-31b1fe0f4e3e)
)
(fp_arc (start 3.81 -3.81) (mid 0 5.388154) (end -3.81 -3.81)
(stroke (width 2.7) (type solid)) (layer "F.SilkS") (tstamp 3e3475e1-0e83-4cf3-a9f8-24149d48afcb))
(fp_circle (center 0 0) (end 4.65 0)
(stroke (width 1.2) (type solid)) (fill none) (layer "F.SilkS") (tstamp 813ecada-226f-4b03-ae96-ee05f179f2e9))
(pad "1" thru_hole circle (at 0 0 90) (size 8 8) (drill 6.4) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 282c4a4f-ce08-46b9-9e01-a12b1129d957))
)
(footprint "Eurorack:Mech-MountingHole" (layer "F.Cu")
(tstamp be67d356-5861-4f1b-aaf2-1ed22eb1f7a0)
(at 155.08 152.95)
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "exclude_from_bom" "")
(property "ki_description" "Mounting Hole with connection")
(property "ki_keywords" "mounting hole")
(path "/754700c5-e801-454a-bb66-5f7dde2e225c")
(attr through_hole exclude_from_bom)
(fp_text reference "H3" (at 0 -2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp da1e4d94-d35c-4440-8779-9e61bb95e6b3)
)
(fp_text value "mount2" (at 0 2.54 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e65285b0-2400-48b4-a94d-bb5026077ad8)
)
(pad "1" thru_hole oval (at 0 0 90) (size 3.5 7.8) (drill oval 3.2 7.5) (layers "*.Cu" "*.Mask")
(net 6 "/FACE") (pinfunction "1") (pintype "input") (tstamp 19f391eb-c2bc-4eed-9f1f-025c5911bd41))
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp d8ad92e6-422e-423b-8f8e-56b2e5e5e2e2)
(at 113.665 107.842 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/0f936928-ecf6-4699-a127-4426733cdadc")
(attr through_hole)
(fp_text reference "J6" (at 5.842 -4.426 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d75169cd-9f05-4007-8aee-3659e81ee418)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1d15254f-0730-40fa-87e4-2ce7c5e7a883)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1de2f9ed-f96e-47ca-b75b-fe3f7fae75e5)
)
(fp_line (start -4.9 -5.2) (end -1.8 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 849a2132-4d6c-4a89-afae-9669e3507e17))
(fp_line (start -4.9 -1.5) (end -4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp a7f30057-f266-482d-be02-b149eac68bd8))
(fp_line (start -4.9 5.2) (end -4.9 2.6)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp de89879d-f547-4170-b402-e0bb2b2ba8b1))
(fp_line (start 1.8 -5.2) (end 4.9 -5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 25e88b0b-390e-4629-a8ab-4cf0c1f63804))
(fp_line (start 4.9 -5.2) (end 4.9 -0.9)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 675a9b71-178e-4e72-b515-889a16d5c5b3))
(fp_line (start 4.9 2.1) (end 4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 5a48c389-6904-440f-b7aa-1785cbef9d72))
(fp_line (start 4.9 5.2) (end -4.9 5.2)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 43d42937-01ea-4e96-a948-883a18e6ab6a))
(fp_arc (start -1.9 2.9) (mid 0.026753 -3.466884) (end 1.855019 2.928977)
(stroke (width 0.15) (type solid)) (layer "F.SilkS") (tstamp 276727c1-45a6-4bb6-9534-7d78b00017a0))
(pad "S" thru_hole oval (at -4.7 0.6 180) (size 2.25 3.75) (drill oval 1.45 2.95) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp 3188308d-2f6f-4e72-8aa6-d35a4bbb5803))
(pad "S" thru_hole oval (at 4.7 0.6 180) (size 2.25 2.7) (drill oval 1.45 1.9) (layers "*.Cu" "*.Mask")
(net 28 "/GND'") (pintype "passive") (tstamp d6ff4f19-45bb-4d4d-9886-ab88aaaf303f))
(pad "T" thru_hole oval (at 0 -4.8 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 17 "/IN1") (pintype "passive") (tstamp fc43d5db-16d7-4198-b627-1bcbc7100d53))
(pad "TN" thru_hole oval (at 0 3.3 180) (size 3.5 1.5) (drill oval 2.7 0.7) (layers "*.Cu" "*.Mask")
(net 9 "/IN0") (pintype "passive") (tstamp 96e38000-1855-4b8f-8678-81ecefbb9ad9))
)
(footprint "Eurorack:AudioJack2_Tayda_A-2566" (layer "F.Cu")
(tstamp e1373aba-d95a-497b-853d-817fb54167fc)
(at 137.795 107.844 180)
(property "PartNum" "A-2566")
(property "Sheetfile" "mult.kicad_sch")
(property "Sheetname" "")
(property "Vendor" "Tayda")
(property "ki_description" "Audio Jack, 2 Poles (Mono / TS), Switched T Pole (Normalling)")
(property "ki_keywords" "audio jack receptacle mono headphones phone TS connector")
(path "/3b80af9e-6667-42aa-a104-ffbec4a0d75b")
(attr through_hole)
(fp_text reference "J8" (at 5.842 -4.424 unlocked) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f4249aa8-06e5-45d5-90bc-0f5c1701cbe0)
)
(fp_text value "AudioJack2_SwitchT" (at 0 1 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6413317d-803d-48ee-b292-09428fa3ee9b)
)
(fp_text user "${REFERENCE}" (at 0 2.5 180 unlocked) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c6d89d34-73f2-459c-9b22-a1889e815f3f)