-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyboard.kicad_sch
7517 lines (7369 loc) · 253 KB
/
keyboard.kicad_sch
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_sch (version 20230121) (generator eeschema)
(uuid 8753f267-ce81-4f2a-82e0-7caa9e03ee38)
(paper "A4")
(lib_symbols
(symbol "Device:D_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small" (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "D" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=K 2=A" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "keebio:ProMicro" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "ProMicro" (at 0 -19.05 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 26.67 -63.5 90)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 26.67 -63.5 90)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "ProMicro_0_1"
(rectangle (start -12.7 -16.51) (end 12.7 16.51)
(stroke (width 0) (type solid))
(fill (type none))
)
)
(symbol "ProMicro_1_1"
(pin input line (at -17.78 13.97 0) (length 5.08)
(name "TX0/PD3" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -8.89 0) (length 5.08)
(name "7/PE6" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -11.43 0) (length 5.08)
(name "8/PB4" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -13.97 0) (length 5.08)
(name "9/PB5" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -13.97 180) (length 5.08)
(name "10/PB6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -11.43 180) (length 5.08)
(name "16/PB2" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -8.89 180) (length 5.08)
(name "14/PB3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -6.35 180) (length 5.08)
(name "15/PB1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -3.81 180) (length 5.08)
(name "A0/PF7" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -1.27 180) (length 5.08)
(name "A1/PF6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 1.27 180) (length 5.08)
(name "A2/PF5" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 11.43 0) (length 5.08)
(name "RX1/PD2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 3.81 180) (length 5.08)
(name "A3/PF4" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 3.81 0) (length 5.08)
(name "2/PD1" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 1.27 0) (length 5.08)
(name "3/PD0" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -1.27 0) (length 5.08)
(name "4/PD4" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -3.81 0) (length 5.08)
(name "5/PC6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -6.35 0) (length 5.08)
(name "6/PD7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "keebio:TRRS" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 15.24 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "TRRS" (at 0 -2.54 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 3.81 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(property "Datasheet" "" (at 3.81 0 0)
(effects (font (size 1.524 1.524)) hide)
)
(symbol "TRRS_0_1"
(rectangle (start -3.81 0) (end -3.81 12.7)
(stroke (width 0) (type solid))
(fill (type none))
)
(rectangle (start -3.81 12.7) (end 5.08 12.7)
(stroke (width 0) (type solid))
(fill (type none))
)
(rectangle (start 5.08 0) (end -3.81 0)
(stroke (width 0) (type solid))
(fill (type none))
)
(rectangle (start 5.08 12.7) (end 5.08 0)
(stroke (width 0) (type solid))
(fill (type none))
)
)
(symbol "TRRS_1_1"
(pin input line (at -8.89 2.54 0) (length 5.08)
(name "SLEEVE" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 10.16 0) (length 5.08)
(name "TIP" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 7.62 0) (length 5.08)
(name "RING1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -8.89 5.08 0) (length 5.08)
(name "RING2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:VCC" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VCC" (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"VCC\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VCC_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "VCC_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VCC" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 115.57 46.99) (diameter 0) (color 0 0 0 0)
(uuid 00d0d078-bccd-4907-9bcb-a067088d587b)
)
(junction (at 73.66 63.5) (diameter 0) (color 0 0 0 0)
(uuid 00f4335f-a4fa-4e7d-9131-ce0754be8ea2)
)
(junction (at 58.42 127) (diameter 0) (color 0 0 0 0)
(uuid 01cd93ce-d5c3-438e-9c27-def712e56668)
)
(junction (at 111.76 100.33) (diameter 0) (color 0 0 0 0)
(uuid 046b1dad-6159-4ed8-8ffa-7b7c63569f0f)
)
(junction (at 115.57 80.01) (diameter 0) (color 0 0 0 0)
(uuid 05412fb3-c01d-4acc-b38b-068cd6cc7615)
)
(junction (at 52.07 100.33) (diameter 0) (color 0 0 0 0)
(uuid 092271f7-5981-4469-9982-20d342bd28db)
)
(junction (at 101.6 63.5) (diameter 0) (color 0 0 0 0)
(uuid 0a57f3b0-4640-4a49-9e96-b6d3d23ef7a5)
)
(junction (at 67.31 35.56) (diameter 0) (color 0 0 0 0)
(uuid 0d8f4a01-017b-4e0b-afea-d52319781089)
)
(junction (at 33.02 154.94) (diameter 0) (color 0 0 0 0)
(uuid 12eed3f7-10bd-4ade-84c1-aed6620625d6)
)
(junction (at 104.14 160.02) (diameter 0) (color 0 0 0 0)
(uuid 151bef28-4941-4fb8-8122-428c069881db)
)
(junction (at 111.76 52.07) (diameter 0) (color 0 0 0 0)
(uuid 1598dcfa-c671-434a-9124-4731f4b698a2)
)
(junction (at 67.31 68.58) (diameter 0) (color 0 0 0 0)
(uuid 1b4be08d-9500-4192-a952-4178f86d5317)
)
(junction (at 73.66 160.02) (diameter 0) (color 0 0 0 0)
(uuid 1c202c6e-7922-45c1-9bbf-e7a2a5c682c7)
)
(junction (at 36.83 52.07) (diameter 0) (color 0 0 0 0)
(uuid 1e523836-7d1c-47b0-a6d5-aac541ffd195)
)
(junction (at 97.79 52.07) (diameter 0) (color 0 0 0 0)
(uuid 213547e0-7a43-4e76-b6ab-b5884b6d5ee1)
)
(junction (at 58.42 191.77) (diameter 0) (color 0 0 0 0)
(uuid 21af12fa-dd90-4ee1-a038-fdb40c19f874)
)
(junction (at 58.42 143.51) (diameter 0) (color 0 0 0 0)
(uuid 252ec446-75e5-41f5-adb4-4a7a65e164d9)
)
(junction (at 48.26 154.94) (diameter 0) (color 0 0 0 0)
(uuid 27452ed4-0fad-43f6-bd1f-b81ddb9fd93c)
)
(junction (at 132.08 176.53) (diameter 0) (color 0 0 0 0)
(uuid 2d19f573-e8e6-451f-aa9b-1c3aaa011a15)
)
(junction (at 132.08 191.77) (diameter 0) (color 0 0 0 0)
(uuid 2ff22fc9-afe0-4090-8be1-89709c49ec96)
)
(junction (at 135.89 154.94) (diameter 0) (color 0 0 0 0)
(uuid 312f6bd7-bfd7-4ccb-90f0-5721e4fc4786)
)
(junction (at 80.01 121.92) (diameter 0) (color 0 0 0 0)
(uuid 414964a1-1a35-4376-9b02-4eb32fb38a63)
)
(junction (at 104.14 176.53) (diameter 0) (color 0 0 0 0)
(uuid 43592908-e9d9-426b-b0aa-4536644329c8)
)
(junction (at 97.79 35.56) (diameter 0) (color 0 0 0 0)
(uuid 4448b25e-89fe-4c09-abfa-e96019517d9a)
)
(junction (at 80.01 154.94) (diameter 0) (color 0 0 0 0)
(uuid 470bc78c-4a95-498c-811c-dd977a6033a1)
)
(junction (at 26.67 63.5) (diameter 0) (color 0 0 0 0)
(uuid 477a9b50-fc65-4647-b572-50cdb8c255ab)
)
(junction (at 57.15 46.99) (diameter 0) (color 0 0 0 0)
(uuid 4ab110f1-a6ef-4469-9ff0-10a9f1b9da6a)
)
(junction (at 118.11 143.51) (diameter 0) (color 0 0 0 0)
(uuid 4cf4e29a-d4f5-4ebe-8282-1dca231749c9)
)
(junction (at 26.67 80.01) (diameter 0) (color 0 0 0 0)
(uuid 4ef44d35-e562-4c63-bb24-83865ce2b7fa)
)
(junction (at 83.82 85.09) (diameter 0) (color 0 0 0 0)
(uuid 4f1e7299-9f17-454f-b3f6-97f30052da5e)
)
(junction (at 83.82 35.56) (diameter 0) (color 0 0 0 0)
(uuid 50efb147-0437-4056-b6cd-6421e8d5214e)
)
(junction (at 87.63 63.5) (diameter 0) (color 0 0 0 0)
(uuid 57a2551b-ae9d-44fc-9292-309635d4d92e)
)
(junction (at 36.83 68.58) (diameter 0) (color 0 0 0 0)
(uuid 57c0677e-2a61-4aa1-a055-23758b2f3a92)
)
(junction (at 118.11 127) (diameter 0) (color 0 0 0 0)
(uuid 5fcf7794-5997-42de-a6d0-72f361669995)
)
(junction (at 33.02 121.92) (diameter 0) (color 0 0 0 0)
(uuid 605a6686-b137-487b-982c-4f63a5277dde)
)
(junction (at 36.83 85.09) (diameter 0) (color 0 0 0 0)
(uuid 656afad2-d59c-45e3-8210-8f04e3fac594)
)
(junction (at 63.5 138.43) (diameter 0) (color 0 0 0 0)
(uuid 67fefb59-3f05-4e0d-bf2d-33f61c0c03b8)
)
(junction (at 121.92 138.43) (diameter 0) (color 0 0 0 0)
(uuid 69fbb260-31c5-4cc6-81b2-af18a1f87025)
)
(junction (at 111.76 35.56) (diameter 0) (color 0 0 0 0)
(uuid 6c5dae98-3291-4ad3-b5e5-59d0e3f155d8)
)
(junction (at 67.31 85.09) (diameter 0) (color 0 0 0 0)
(uuid 7074992c-7629-4199-bdf9-7b6154134ebb)
)
(junction (at 83.82 100.33) (diameter 0) (color 0 0 0 0)
(uuid 709ac536-79e8-4527-8e6c-7cd13c59e543)
)
(junction (at 83.82 68.58) (diameter 0) (color 0 0 0 0)
(uuid 70f5ee3e-69c7-4773-b16a-ead42aa7c425)
)
(junction (at 48.26 138.43) (diameter 0) (color 0 0 0 0)
(uuid 7288d701-58a7-4757-a2d5-2340b7e41bd8)
)
(junction (at 73.66 143.51) (diameter 0) (color 0 0 0 0)
(uuid 73c36a3e-96d2-4a77-b43a-bc902e4b0964)
)
(junction (at 26.67 46.99) (diameter 0) (color 0 0 0 0)
(uuid 73eef9a2-95ce-4170-bfb3-4bbca408da11)
)
(junction (at 87.63 30.48) (diameter 0) (color 0 0 0 0)
(uuid 74041318-b380-4a25-ad39-49a6f52b24ca)
)
(junction (at 67.31 52.07) (diameter 0) (color 0 0 0 0)
(uuid 7737a6ae-cd4c-4d72-a6fb-0786507ab7f4)
)
(junction (at 63.5 154.94) (diameter 0) (color 0 0 0 0)
(uuid 792fc4ef-6704-4e59-81fb-d68b3c81c12e)
)
(junction (at 73.66 176.53) (diameter 0) (color 0 0 0 0)
(uuid 7a3f19a3-1765-48b2-a28f-6ca47e090bca)
)
(junction (at 80.01 138.43) (diameter 0) (color 0 0 0 0)
(uuid 7c293da9-642f-4f64-88c2-5dc66aba3c07)
)
(junction (at 36.83 100.33) (diameter 0) (color 0 0 0 0)
(uuid 7ce68370-6905-43b6-9600-5627b92ddff3)
)
(junction (at 57.15 63.5) (diameter 0) (color 0 0 0 0)
(uuid 7e4aa259-9b01-4069-8ae2-0f2ed9cde7b1)
)
(junction (at 111.76 68.58) (diameter 0) (color 0 0 0 0)
(uuid 811749b5-c61d-46b7-8c28-5aef741ada90)
)
(junction (at 48.26 121.92) (diameter 0) (color 0 0 0 0)
(uuid 83d6d54c-7025-467c-823a-87732ab759f5)
)
(junction (at 93.98 121.92) (diameter 0) (color 0 0 0 0)
(uuid 85d1e45c-443e-4988-8661-52cb92d53c84)
)
(junction (at 104.14 143.51) (diameter 0) (color 0 0 0 0)
(uuid 87b8f932-8356-4741-a818-31013babb801)
)
(junction (at 90.17 127) (diameter 0) (color 0 0 0 0)
(uuid 8adb0547-382b-425f-bf48-9a75443856cb)
)
(junction (at 111.76 85.09) (diameter 0) (color 0 0 0 0)
(uuid 8b9dc7be-2a9c-47b3-8e64-fcd8b4ac02e0)
)
(junction (at 97.79 85.09) (diameter 0) (color 0 0 0 0)
(uuid 8ba5c45d-66d0-41bd-a5fe-2ab7069c2902)
)
(junction (at 90.17 176.53) (diameter 0) (color 0 0 0 0)
(uuid 8ef76110-d90b-4d1e-a6d3-6787df41ca7e)
)
(junction (at 121.92 171.45) (diameter 0) (color 0 0 0 0)
(uuid 9094b649-72c1-4793-9891-4e89a48b7bf2)
)
(junction (at 43.18 160.02) (diameter 0) (color 0 0 0 0)
(uuid 943d2ecd-ba29-4c50-a047-22c5defd4f93)
)
(junction (at 83.82 52.07) (diameter 0) (color 0 0 0 0)
(uuid 9719f9d6-da4e-4fcb-af85-33959d303d57)
)
(junction (at 121.92 121.92) (diameter 0) (color 0 0 0 0)
(uuid a00d590a-48e7-4f9f-ab75-0fb5471478fd)
)
(junction (at 90.17 143.51) (diameter 0) (color 0 0 0 0)
(uuid a114afb4-bc24-4d78-8a55-163ad1e34cb7)
)
(junction (at 118.11 160.02) (diameter 0) (color 0 0 0 0)
(uuid a1adf882-9bb0-4bae-b5b7-2042aef4e989)
)
(junction (at 43.18 143.51) (diameter 0) (color 0 0 0 0)
(uuid a7243e52-3dfa-43d0-b0b5-c18f4ae7ae17)
)
(junction (at 58.42 160.02) (diameter 0) (color 0 0 0 0)
(uuid a7b25251-05be-4eea-812d-7bac30b5455b)
)
(junction (at 118.11 176.53) (diameter 0) (color 0 0 0 0)
(uuid a9c17bfa-2503-43ad-945a-a9d3a3360d2c)
)
(junction (at 58.42 176.53) (diameter 0) (color 0 0 0 0)
(uuid aec49875-c343-4d22-9b2d-df04a8d3e190)
)
(junction (at 107.95 154.94) (diameter 0) (color 0 0 0 0)
(uuid b424d26f-7196-4826-b385-ec089286b0f0)
)
(junction (at 132.08 143.51) (diameter 0) (color 0 0 0 0)
(uuid b5485ce5-caa7-4948-8314-80962efa2003)
)
(junction (at 101.6 30.48) (diameter 0) (color 0 0 0 0)
(uuid b60c0695-3b27-449e-890f-b38c6afb2199)
)
(junction (at 80.01 171.45) (diameter 0) (color 0 0 0 0)
(uuid b7ed7b83-7e58-4579-afe9-34275fa5400b)
)
(junction (at 41.91 30.48) (diameter 0) (color 0 0 0 0)
(uuid b96e25b9-5c9e-4ec5-8fa0-309a9a9b53b4)
)
(junction (at 43.18 176.53) (diameter 0) (color 0 0 0 0)
(uuid b9ae7109-8625-43a2-82df-3ff48c0ffbc2)
)
(junction (at 101.6 46.99) (diameter 0) (color 0 0 0 0)
(uuid bb9fc71f-c25d-47b0-9b20-91108fac4fd9)
)
(junction (at 73.66 30.48) (diameter 0) (color 0 0 0 0)
(uuid c11b9a31-5c1c-4ecb-a40c-6d7a8a5d8463)
)
(junction (at 101.6 80.01) (diameter 0) (color 0 0 0 0)
(uuid c1fd0b4c-b7dc-41c9-a930-70c91bd1b903)
)
(junction (at 26.67 30.48) (diameter 0) (color 0 0 0 0)
(uuid c2e924a8-7320-487f-8089-ee07a8a4b4fe)
)
(junction (at 115.57 30.48) (diameter 0) (color 0 0 0 0)
(uuid c68cb011-5a5e-4f50-a5c7-48665928e845)
)
(junction (at 63.5 121.92) (diameter 0) (color 0 0 0 0)
(uuid c764003f-8721-4a28-90ed-7ac32d4bab45)
)
(junction (at 52.07 35.56) (diameter 0) (color 0 0 0 0)
(uuid c79893e9-2d6f-4ee0-83ca-4b23476517c0)
)
(junction (at 107.95 121.92) (diameter 0) (color 0 0 0 0)
(uuid caff5583-d1c0-4186-b36d-eb9f6473e6d7)
)
(junction (at 104.14 127) (diameter 0) (color 0 0 0 0)
(uuid cc3e99f4-b0e0-4240-8a53-3634f790eeb2)
)
(junction (at 33.02 138.43) (diameter 0) (color 0 0 0 0)
(uuid cf8dbe67-6cb0-46a2-8c51-f0d439b095e4)
)
(junction (at 73.66 127) (diameter 0) (color 0 0 0 0)
(uuid d15392d8-2cfe-4d9d-81e4-8326150afa15)
)
(junction (at 90.17 191.77) (diameter 0) (color 0 0 0 0)
(uuid d56d7821-192d-47a2-a49d-61f5a69bfa54)
)
(junction (at 135.89 138.43) (diameter 0) (color 0 0 0 0)
(uuid d5ea3f51-9df4-4205-a40a-5963e7abd02e)
)
(junction (at 43.18 127) (diameter 0) (color 0 0 0 0)
(uuid d642fe59-6666-4135-867f-c493c54e6811)
)
(junction (at 57.15 30.48) (diameter 0) (color 0 0 0 0)
(uuid d8d96c8c-042f-4f7a-a705-95e63d71ca58)
)
(junction (at 48.26 171.45) (diameter 0) (color 0 0 0 0)
(uuid d92ee3da-8743-4532-bd33-ff962c644902)
)
(junction (at 93.98 154.94) (diameter 0) (color 0 0 0 0)
(uuid db3ca33d-6aa7-4177-b0c3-00e388c31991)
)
(junction (at 93.98 138.43) (diameter 0) (color 0 0 0 0)
(uuid df3cd870-eccf-4db3-97e6-672c085911b8)
)
(junction (at 135.89 171.45) (diameter 0) (color 0 0 0 0)
(uuid e01e7c0d-f70f-49cb-940d-77e03016f207)
)
(junction (at 90.17 160.02) (diameter 0) (color 0 0 0 0)
(uuid e572bf51-54a8-4b4b-a956-9e07d9e30101)
)
(junction (at 87.63 46.99) (diameter 0) (color 0 0 0 0)
(uuid e6ab6947-8e89-4d92-b3be-19fbb4c59ab3)
)
(junction (at 73.66 46.99) (diameter 0) (color 0 0 0 0)
(uuid e6c9e18c-5708-4366-bf66-d32de6e3ee56)
)
(junction (at 115.57 63.5) (diameter 0) (color 0 0 0 0)
(uuid e7924fd1-a097-4532-a3a6-6e5ff5c3b72d)
)
(junction (at 97.79 68.58) (diameter 0) (color 0 0 0 0)
(uuid ed3fc2dd-c9df-460a-a6dc-77f66bc9b197)
)
(junction (at 125.73 100.33) (diameter 0) (color 0 0 0 0)
(uuid eda7184c-19ba-489b-bb1c-f1e933d11b92)
)
(junction (at 107.95 138.43) (diameter 0) (color 0 0 0 0)
(uuid f1d87856-8e67-4829-b34c-1cd68577647b)
)
(junction (at 73.66 80.01) (diameter 0) (color 0 0 0 0)
(uuid f5a071e4-c955-4ab6-a10e-1f6a3d519f91)
)
(junction (at 36.83 35.56) (diameter 0) (color 0 0 0 0)
(uuid f816d602-bbd1-4d27-bc1c-9471b50a23ef)
)
(no_connect (at 213.36 25.4) (uuid 01ebc431-7399-4258-92b5-84f45f6f3ca4))
(no_connect (at 177.8 104.14) (uuid 08b2b297-fbe2-47bb-b50b-6fb3a1dcbc49))
(no_connect (at 213.36 22.86) (uuid 1cbbd5d0-c9fd-487a-82da-f2750a930806))
(no_connect (at 213.36 35.56) (uuid 222a97e8-182f-44b7-a715-76affadac48b))
(no_connect (at 177.8 93.98) (uuid 2fea6f59-131c-477b-9302-479b36ac495e))
(no_connect (at 213.36 27.94) (uuid 578e06b2-7563-4647-8c97-2e6d3be1911c))
(no_connect (at 248.92 25.4) (uuid 6a0d4f77-5ffa-460f-ac5f-9396de84162e))
(no_connect (at 179.07 27.94) (uuid 6b867826-23ad-4238-abda-d0532d580074))
(no_connect (at 213.36 99.06) (uuid 776a305b-bdfc-41db-986f-b27661414294))
(no_connect (at 248.92 20.32) (uuid 882a53f0-e831-468c-95bb-6aa6bb8f0296))
(no_connect (at 177.8 99.06) (uuid 8d35eb66-15e1-4834-8529-d087663a946e))
(no_connect (at 186.69 137.16) (uuid 910925fd-72a5-42ca-970e-700d27b6a2aa))
(no_connect (at 213.36 30.48) (uuid 978dfca4-69ae-44db-a364-dd6187b30111))
(no_connect (at 248.92 48.26) (uuid b71bd1a2-610e-478c-9b2f-ba8a49672d3b))
(no_connect (at 177.8 109.22) (uuid c2aadff3-4d6d-403c-b45f-86f42b9cdd34))
(no_connect (at 213.36 93.98) (uuid c55a3414-4a92-4caa-a4c7-673dda53ff0b))
(no_connect (at 177.8 101.6) (uuid cd53edbe-5646-45e8-ac6b-d0ee2b3f6e3b))
(no_connect (at 177.8 96.52) (uuid fe51ee29-f54a-4b4a-900c-04aa6fac5f04))
(no_connect (at 213.36 20.32) (uuid ff66f874-9a5d-4dc7-92dd-4b4ca7958b04))
(wire (pts (xy 111.76 52.07) (xy 125.73 52.07))
(stroke (width 0) (type default))
(uuid 00de22da-af97-41cb-9c79-8c921a0218e8)
)
(wire (pts (xy 63.5 154.94) (xy 63.5 171.45))
(stroke (width 0) (type default))
(uuid 01d09dd4-489e-4966-aea0-2023decdebbc)
)
(wire (pts (xy 115.57 21.59) (xy 115.57 30.48))
(stroke (width 0) (type default))
(uuid 07234c9e-af7d-4b2d-a56c-3e0ca484682f)
)
(wire (pts (xy 132.08 176.53) (xy 146.05 176.53))
(stroke (width 0) (type default))
(uuid 0a2042ba-7b43-4a98-a79e-2e3b2e4d0613)
)
(wire (pts (xy 26.67 80.01) (xy 26.67 95.25))
(stroke (width 0) (type default))
(uuid 0d91d832-563c-49a1-b32e-8bb8f9c614ae)
)
(wire (pts (xy 115.57 30.48) (xy 115.57 46.99))
(stroke (width 0) (type default))
(uuid 0e59768c-626b-4bb1-8472-a77aa75cccc7)
)
(wire (pts (xy 87.63 21.59) (xy 87.63 30.48))
(stroke (width 0) (type default))
(uuid 0edaf92c-7d37-4238-a559-403b12d5da0a)
)
(wire (pts (xy 93.98 154.94) (xy 93.98 171.45))
(stroke (width 0) (type default))
(uuid 0faebc18-0528-40fc-901d-e851c3365691)
)
(wire (pts (xy 80.01 138.43) (xy 80.01 154.94))
(stroke (width 0) (type default))
(uuid 0ff2e6d6-d4d1-45a9-a952-82bd2aacba7f)
)
(wire (pts (xy 93.98 121.92) (xy 93.98 138.43))
(stroke (width 0) (type default))
(uuid 11f025a7-4de1-41fd-8f7c-9fb64890097f)
)
(wire (pts (xy 101.6 80.01) (xy 101.6 95.25))
(stroke (width 0) (type default))
(uuid 12d4aed6-caac-427a-87b5-e2411039f53b)
)
(wire (pts (xy 107.95 121.92) (xy 107.95 138.43))
(stroke (width 0) (type default))
(uuid 15135bfd-41a5-4742-a68d-e36d8241ca9f)
)
(wire (pts (xy 52.07 100.33) (xy 83.82 100.33))
(stroke (width 0) (type default))
(uuid 1d4e1f3d-1aad-471e-9f0d-1af46cb6b7d4)
)
(wire (pts (xy 73.66 46.99) (xy 73.66 63.5))
(stroke (width 0) (type default))
(uuid 1fba7ce9-c130-404f-aaf0-e4238143b532)
)
(wire (pts (xy 97.79 52.07) (xy 111.76 52.07))
(stroke (width 0) (type default))
(uuid 2217946e-cd08-4886-9c3d-7c34ca47e9d8)
)
(wire (pts (xy 97.79 68.58) (xy 111.76 68.58))
(stroke (width 0) (type default))
(uuid 2832fb18-74be-4ff0-ac6d-aa1d84bf4a84)
)
(wire (pts (xy 58.42 127) (xy 73.66 127))
(stroke (width 0) (type default))
(uuid 28d600c9-c501-427c-bde1-529965ed24d7)
)
(wire (pts (xy 63.5 121.92) (xy 63.5 138.43))
(stroke (width 0) (type default))
(uuid 29a6219d-00fb-42e5-adb9-094966bd52e0)
)
(wire (pts (xy 97.79 85.09) (xy 111.76 85.09))
(stroke (width 0) (type default))
(uuid 331bb0de-f50f-4709-aab0-8c310d86d0c5)
)
(wire (pts (xy 104.14 127) (xy 118.11 127))
(stroke (width 0) (type default))
(uuid 354012eb-37e1-4162-b59e-135f11965655)
)
(wire (pts (xy 29.21 191.77) (xy 58.42 191.77))
(stroke (width 0) (type default))
(uuid 35d0b143-3916-49af-9c3c-b2071d89ed7a)
)
(wire (pts (xy 73.66 80.01) (xy 73.66 95.25))
(stroke (width 0) (type default))
(uuid 36f28e4c-9afe-4a3c-9fec-1b9b53d8ffb1)
)
(wire (pts (xy 43.18 176.53) (xy 58.42 176.53))
(stroke (width 0) (type default))
(uuid 3c8ae5a9-0555-4df5-9f2f-d05ca964a86a)
)
(wire (pts (xy 48.26 138.43) (xy 48.26 154.94))
(stroke (width 0) (type default))
(uuid 3dc7e1be-1e5d-42bc-8803-3c20c83770d1)
)
(wire (pts (xy 26.67 63.5) (xy 26.67 80.01))
(stroke (width 0) (type default))
(uuid 3e11162b-ce2f-43ac-8cf5-d1ce893e3293)
)
(wire (pts (xy 73.66 160.02) (xy 90.17 160.02))
(stroke (width 0) (type default))
(uuid 3e8b9115-1d8c-4253-a45b-4c1ae122028a)
)
(wire (pts (xy 57.15 63.5) (xy 57.15 80.01))
(stroke (width 0) (type default))
(uuid 40866408-4394-427d-b3e3-82de39373ac5)
)
(wire (pts (xy 80.01 121.92) (xy 80.01 138.43))
(stroke (width 0) (type default))
(uuid 44530437-356f-4b25-8ba0-8b37326f98ac)
)
(wire (pts (xy 135.89 154.94) (xy 135.89 171.45))
(stroke (width 0) (type default))
(uuid 49bdc896-0a98-48df-874a-c1ec56ecd448)
)
(wire (pts (xy 90.17 176.53) (xy 104.14 176.53))
(stroke (width 0) (type default))
(uuid 4ac1b2ca-2809-4f60-84da-139c5ea70a2f)
)
(wire (pts (xy 107.95 138.43) (xy 107.95 154.94))
(stroke (width 0) (type default))
(uuid 4aca0adf-a87a-443d-ad8a-355f8326e0f4)
)
(wire (pts (xy 118.11 176.53) (xy 132.08 176.53))
(stroke (width 0) (type default))
(uuid 4d76ed5d-5c82-41df-af1e-00a923daad4b)
)
(wire (pts (xy 121.92 113.03) (xy 121.92 121.92))
(stroke (width 0) (type default))
(uuid 4e75157c-9865-4853-a364-c3521c797d55)
)
(wire (pts (xy 80.01 171.45) (xy 80.01 186.69))
(stroke (width 0) (type default))
(uuid 4ec1458f-a7f7-4745-b0a8-4d06290eb558)
)
(wire (pts (xy 73.66 143.51) (xy 90.17 143.51))
(stroke (width 0) (type default))
(uuid 4fbb9417-141b-4fdf-9b98-5a26d4eedc32)
)
(wire (pts (xy 57.15 46.99) (xy 57.15 63.5))
(stroke (width 0) (type default))
(uuid 502ddb7a-7f7d-4c8d-8cd8-793515504a08)
)
(wire (pts (xy 118.11 143.51) (xy 132.08 143.51))
(stroke (width 0) (type default))
(uuid 524634b9-3b3b-44b1-b6d1-9b060b219f53)
)
(wire (pts (xy 87.63 30.48) (xy 87.63 46.99))
(stroke (width 0) (type default))
(uuid 52d26108-239c-46ab-80f7-9467b76d2839)
)
(wire (pts (xy 93.98 113.03) (xy 93.98 121.92))
(stroke (width 0) (type default))
(uuid 532e993c-1142-4e9e-9e56-e9492e9248ad)
)
(wire (pts (xy 29.21 143.51) (xy 43.18 143.51))
(stroke (width 0) (type default))
(uuid 555e4fb6-f6bc-4541-8180-326d1b80b757)
)
(wire (pts (xy 135.89 138.43) (xy 135.89 154.94))
(stroke (width 0) (type default))
(uuid 55dd7e9a-32f5-42ca-acd5-4eb5495e84b5)
)
(wire (pts (xy 33.02 138.43) (xy 33.02 154.94))
(stroke (width 0) (type default))
(uuid 574ff1cf-1386-4d35-a731-b5a8f10eba9d)
)
(wire (pts (xy 73.66 63.5) (xy 73.66 80.01))
(stroke (width 0) (type default))
(uuid 5778cb69-ebe1-47e8-8aa5-079867846d24)
)
(wire (pts (xy 36.83 100.33) (xy 52.07 100.33))
(stroke (width 0) (type default))
(uuid 5d7c68b6-fa77-4ac7-8112-6c8698f09060)
)
(wire (pts (xy 90.17 127) (xy 104.14 127))
(stroke (width 0) (type default))
(uuid 5e292bde-c8f9-4b39-84b4-a2f3c76c4aa4)
)
(wire (pts (xy 87.63 63.5) (xy 87.63 80.01))
(stroke (width 0) (type default))
(uuid 5e7f3a60-2abc-4f44-b6ac-cd13f1dfba77)
)
(wire (pts (xy 83.82 35.56) (xy 97.79 35.56))
(stroke (width 0) (type default))
(uuid 5e9c3421-4ca9-4b17-95fd-1e1c91db81d1)
)
(wire (pts (xy 22.86 35.56) (xy 36.83 35.56))
(stroke (width 0) (type default))
(uuid 623acf72-5098-4fb9-9df3-818038349e03)
)
(wire (pts (xy 33.02 121.92) (xy 33.02 138.43))
(stroke (width 0) (type default))
(uuid 680407d3-8b14-4adb-bb95-d509a773a5fb)
)
(wire (pts (xy 43.18 143.51) (xy 58.42 143.51))
(stroke (width 0) (type default))
(uuid 6b157f91-6314-45bc-b5b1-206de047c8eb)
)
(wire (pts (xy 93.98 138.43) (xy 93.98 154.94))
(stroke (width 0) (type default))
(uuid 6cddeccc-c224-4065-abfb-f9e5b7ace952)
)
(wire (pts (xy 87.63 46.99) (xy 87.63 63.5))
(stroke (width 0) (type default))
(uuid 6ec01a40-ffdc-4276-81f0-5921ac166c4d)
)
(wire (pts (xy 104.14 176.53) (xy 118.11 176.53))
(stroke (width 0) (type default))
(uuid 708cffcd-b968-4a46-a338-a54e20ecf4e8)
)
(wire (pts (xy 26.67 30.48) (xy 26.67 46.99))
(stroke (width 0) (type default))
(uuid 70b9e166-07d0-445a-bf0e-3a0c42f703a7)
)
(wire (pts (xy 132.08 191.77) (xy 146.05 191.77))
(stroke (width 0) (type default))
(uuid 715d3152-d483-4a19-90d7-9176a8418c28)
)
(wire (pts (xy 125.73 100.33) (xy 139.7 100.33))
(stroke (width 0) (type default))
(uuid 71819f5e-de81-4544-99ec-ed3b0d5af65b)
)
(wire (pts (xy 41.91 30.48) (xy 41.91 95.25))
(stroke (width 0) (type default))
(uuid 718e09a7-14d9-4d62-afca-38beebfa181a)
)
(wire (pts (xy 121.92 121.92) (xy 121.92 138.43))
(stroke (width 0) (type default))
(uuid 76051fe9-2d9b-4586-85b2-6432d951f746)
)
(wire (pts (xy 176.53 22.86) (xy 179.07 22.86))
(stroke (width 0) (type default))
(uuid 7734fb33-c34b-4769-8686-9ce66a2cbbf3)
)
(wire (pts (xy 101.6 30.48) (xy 101.6 46.99))
(stroke (width 0) (type default))
(uuid 78a01f97-34db-4ab9-a8dd-13784556c2c7)
)
(wire (pts (xy 73.66 30.48) (xy 73.66 46.99))
(stroke (width 0) (type default))
(uuid 79bffefe-33a8-4c38-829b-091663d7dc10)
)
(wire (pts (xy 67.31 68.58) (xy 83.82 68.58))
(stroke (width 0) (type default))
(uuid 7b17ed9f-dc93-4867-9583-bef2ed5f813c)
)
(wire (pts (xy 101.6 21.59) (xy 101.6 30.48))
(stroke (width 0) (type default))
(uuid 7b448ebc-56eb-483b-81fe-b5e3879684ce)
)
(wire (pts (xy 48.26 121.92) (xy 48.26 138.43))
(stroke (width 0) (type default))
(uuid 7d5c5c00-cad0-4810-be09-5d235a1a47f9)
)
(wire (pts (xy 57.15 30.48) (xy 57.15 46.99))
(stroke (width 0) (type default))
(uuid 80bceedf-8134-46fd-adf3-1998b308aa48)
)
(wire (pts (xy 57.15 21.59) (xy 57.15 30.48))
(stroke (width 0) (type default))
(uuid 8179101c-2331-44ce-98e9-6c12ba01f17a)
)
(wire (pts (xy 107.95 113.03) (xy 107.95 121.92))
(stroke (width 0) (type default))
(uuid 83aa43ff-6f67-458a-877d-e08d2bfaaa68)
)
(wire (pts (xy 101.6 46.99) (xy 101.6 63.5))
(stroke (width 0) (type default))
(uuid 85ca12df-eab9-467c-b1bf-8c60b55d6faa)
)
(wire (pts (xy 58.42 176.53) (xy 73.66 176.53))
(stroke (width 0) (type default))
(uuid 86c468b8-9e73-4587-b18d-49877ad3ac73)
)
(wire (pts (xy 80.01 113.03) (xy 80.01 121.92))