-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathio.kicad_sch
More file actions
2369 lines (2327 loc) · 84.9 KB
/
io.kicad_sch
File metadata and controls
2369 lines (2327 loc) · 84.9 KB
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 babe3d3d-37a5-4928-a6ca-1d646d3f9c9b)
(paper "A4")
(title_block
(title "Polykit X8 Control Board")
(date "2023-07-24")
(rev "v0.0.1")
(company "Jan Knipper")
(comment 1 "github.com/polykit")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(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" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:RotaryEncoder" (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 0 6.604 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "RotaryEncoder" (at 0 -6.604 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -3.81 4.064 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 6.604 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "rotary switch encoder" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Rotary encoder, dual channel, incremental quadrate outputs" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "RotaryEncoder*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "RotaryEncoder_0_1"
(rectangle (start -5.08 5.08) (end 5.08 -5.08)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center -3.81 0) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -0.381 0) (radius 1.905)
(stroke (width 0.254) (type default))
(fill (type none))
)
(arc (start -0.381 2.667) (mid -3.0988 -0.0635) (end -0.381 -2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.635 -1.778)
(xy -0.635 1.778)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.381 -1.778)
(xy -0.381 1.778)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.127 1.778)
(xy -0.127 -1.778)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -2.54)
(xy -3.81 -2.54)
(xy -3.81 -2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 2.54)
(xy -3.81 2.54)
(xy -3.81 2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 -3.048)
(xy -0.508 -2.794)
(xy 0.127 -2.413)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 2.921)
(xy -0.508 2.667)
(xy 0.127 2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 0)
(xy -3.81 0)
(xy -3.81 -1.016)
(xy -3.302 -2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -4.318 0)
(xy -3.81 0)
(xy -3.81 1.016)
(xy -3.302 2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "RotaryEncoder_1_1"
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "A" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 -2.54 0) (length 2.54)
(name "B" (effects (font (size 1.27 1.27))))
(number "B" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -7.62 0 0) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "C" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Diode:1N4148WS" (pin_numbers hide) (pin_names hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148WS" (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_SMD:D_SOD-323" (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.vishay.com/docs/85751/1n4148ws.pdf" (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" "75V 0.15A Fast switching Diode, SOD-323" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*SOD?323*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148WS_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "1N4148WS_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Interface_Expansion:MCP23017_SO" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -11.43 24.13 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MCP23017_SO" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-28W_7.5x17.9mm_P1.27mm" (at 5.08 -25.4 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001952C.pdf" (at 5.08 -27.94 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "ki_keywords" "I2C parallel port expander" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "16-bit I/O expander, I2C, interrupts, w pull-ups, SOIC-28" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*7.5x17.9mm*P1.27mm*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MCP23017_SO_0_1"
(rectangle (start -12.7 22.86) (end 12.7 -22.86)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MCP23017_SO_1_1"
(pin bidirectional line (at 17.78 20.32 180) (length 5.08)
(name "GPB0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -27.94 90) (length 5.08)
(name "VSS" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 15.24 0) (length 5.08) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 17.78 0) (length 5.08)
(name "SCK" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -17.78 20.32 0) (length 5.08)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at -12.7 12.7 0) (length 5.08) hide
(name "NC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -20.32 0) (length 5.08)
(name "A0" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -17.78 0) (length 5.08)
(name "A1" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -15.24 0) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -17.78 -2.54 0) (length 5.08)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at -17.78 5.08 0) (length 5.08)
(name "INTB" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 17.78 180) (length 5.08)
(name "GPB1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at -17.78 2.54 0) (length 5.08)
(name "INTA" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -2.54 180) (length 5.08)
(name "GPA0" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -5.08 180) (length 5.08)
(name "GPA1" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -7.62 180) (length 5.08)
(name "GPA2" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -10.16 180) (length 5.08)
(name "GPA3" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -12.7 180) (length 5.08)
(name "GPA4" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -15.24 180) (length 5.08)
(name "GPA5" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -17.78 180) (length 5.08)
(name "GPA6" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 -20.32 180) (length 5.08)
(name "GPA7" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 15.24 180) (length 5.08)
(name "GPB2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 12.7 180) (length 5.08)
(name "GPB3" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 10.16 180) (length 5.08)
(name "GPB4" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 7.62 180) (length 5.08)
(name "GPB5" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 5.08 180) (length 5.08)
(name "GPB6" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 17.78 2.54 180) (length 5.08)
(name "GPB7" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 27.94 270) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (at 0 3.556 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 \"+5V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (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))))
)
)
)
)
(junction (at 177.8 31.75) (diameter 0) (color 0 0 0 0)
(uuid 02fe8b42-6d24-4bc9-b834-92a680f23e41)
)
(junction (at 173.99 114.3) (diameter 0) (color 0 0 0 0)
(uuid 1464c543-2a12-4d5c-b990-0aeb119e554a)
)
(junction (at 127 66.04) (diameter 0) (color 0 0 0 0)
(uuid 1f38686e-fa0b-4f55-8007-d33c73393a4a)
)
(junction (at 154.94 31.75) (diameter 0) (color 0 0 0 0)
(uuid 20e70236-ffab-4d29-8ded-b24abf889420)
)
(junction (at 127 111.76) (diameter 0) (color 0 0 0 0)
(uuid 27df0073-05f8-4e0d-9fa0-e68a84f4930f)
)
(junction (at 185.42 132.08) (diameter 0) (color 0 0 0 0)
(uuid 2a1910db-c2ed-4f70-b888-16b778ed7b29)
)
(junction (at 166.37 31.75) (diameter 0) (color 0 0 0 0)
(uuid 3025fd60-327b-4093-8cfb-a790de1ff9f5)
)
(junction (at 135.89 57.15) (diameter 0) (color 0 0 0 0)
(uuid 36788958-7afb-49e7-96a8-1276ad4f6954)
)
(junction (at 143.51 68.58) (diameter 0) (color 0 0 0 0)
(uuid 39028fb4-545e-46a4-ad67-f958fa9883f7)
)
(junction (at 139.7 63.5) (diameter 0) (color 0 0 0 0)
(uuid 3acbcf71-eb63-422c-a82f-d0711debadc8)
)
(junction (at 151.13 31.75) (diameter 0) (color 0 0 0 0)
(uuid 4e46906b-b1be-41b8-8399-42dd7787d22a)
)
(junction (at 162.56 97.79) (diameter 0) (color 0 0 0 0)
(uuid 4e721401-2211-4cbe-acad-681980b8d385)
)
(junction (at 181.61 125.73) (diameter 0) (color 0 0 0 0)
(uuid 4f7fd2b5-283a-42c8-a834-a2ba9919ae3a)
)
(junction (at 185.42 31.75) (diameter 0) (color 0 0 0 0)
(uuid 5178ba8a-cf03-48cb-9a89-15346fd610ca)
)
(junction (at 132.08 52.07) (diameter 0) (color 0 0 0 0)
(uuid 5f5c90f1-2ffc-485d-beb8-3fcff54a29de)
)
(junction (at 162.56 31.75) (diameter 0) (color 0 0 0 0)
(uuid 6aba5696-8875-43e7-ad94-fbb6fd9cf41a)
)
(junction (at 158.75 31.75) (diameter 0) (color 0 0 0 0)
(uuid 7710a2d9-552b-41a7-b718-1c7c28ddd3c8)
)
(junction (at 158.75 91.44) (diameter 0) (color 0 0 0 0)
(uuid 85fb58c4-f21a-45a4-bac6-6c526e86c5bf)
)
(junction (at 127 134.62) (diameter 0) (color 0 0 0 0)
(uuid 86e6a991-39c5-4f74-9c04-747f77201598)
)
(junction (at 127 77.47) (diameter 0) (color 0 0 0 0)
(uuid 8bc7bed8-5426-417b-af66-6f5964edfc4c)
)
(junction (at 127 100.33) (diameter 0) (color 0 0 0 0)
(uuid 94d4a329-9757-4bbe-85a0-29cee602f740)
)
(junction (at 170.18 109.22) (diameter 0) (color 0 0 0 0)
(uuid 9c5068ec-5005-49f8-be5b-08478e4c63e4)
)
(junction (at 151.13 80.01) (diameter 0) (color 0 0 0 0)
(uuid 9ebfc409-d18b-459b-be1c-f1ad900da9d0)
)
(junction (at 166.37 102.87) (diameter 0) (color 0 0 0 0)
(uuid a27f7cbd-2ca8-4885-b07d-2875456ae6ad)
)
(junction (at 170.18 31.75) (diameter 0) (color 0 0 0 0)
(uuid a30258b7-ed59-45bf-a252-c139fc74fa9d)
)
(junction (at 147.32 74.93) (diameter 0) (color 0 0 0 0)
(uuid abf173ad-8464-4a5f-af2e-c63bfc80e716)
)
(junction (at 143.51 31.75) (diameter 0) (color 0 0 0 0)
(uuid abf97aca-8893-43cf-939c-0a73b16724a9)
)
(junction (at 173.99 31.75) (diameter 0) (color 0 0 0 0)
(uuid ba9af0fa-ad3e-468b-89c3-3ca386d8ca07)
)
(junction (at 181.61 31.75) (diameter 0) (color 0 0 0 0)
(uuid baf7369f-b830-42c1-a498-c5c893c86a33)
)
(junction (at 154.94 86.36) (diameter 0) (color 0 0 0 0)
(uuid be7753d3-e678-4758-8374-42b506d06513)
)
(junction (at 127 88.9) (diameter 0) (color 0 0 0 0)
(uuid c345f9dc-5376-473d-90ec-6186557ee093)
)
(junction (at 49.53 88.9) (diameter 0) (color 0 0 0 0)
(uuid c4c6d09b-7176-4da7-9111-c716b94973b7)
)
(junction (at 139.7 31.75) (diameter 0) (color 0 0 0 0)
(uuid c8afa9a7-269a-4014-904f-59a255560d9d)
)
(junction (at 177.8 120.65) (diameter 0) (color 0 0 0 0)
(uuid cada6ca1-18c9-4ad3-bf34-335868d8c63d)
)
(junction (at 127 123.19) (diameter 0) (color 0 0 0 0)
(uuid dbbcb0d6-e86e-4b02-ad52-8bff3d1e4228)
)
(junction (at 189.23 137.16) (diameter 0) (color 0 0 0 0)
(uuid e38c20a6-e307-4628-8151-201087421a33)
)
(junction (at 135.89 31.75) (diameter 0) (color 0 0 0 0)
(uuid e89e0735-8e39-42f9-b93b-7a5eb7600ba9)
)
(junction (at 147.32 31.75) (diameter 0) (color 0 0 0 0)
(uuid f7fac662-31a9-4000-8745-afd8f7c007b7)
)
(wire (pts (xy 177.8 31.75) (xy 177.8 35.56))
(stroke (width 0) (type default))
(uuid 04c01267-0398-4401-8141-31a4c681280e)
)
(wire (pts (xy 132.08 52.07) (xy 109.22 52.07))
(stroke (width 0) (type default))
(uuid 0542531c-3832-4b2c-a864-8a9637691bc6)
)
(wire (pts (xy 118.11 99.06) (xy 106.68 99.06))
(stroke (width 0) (type default))
(uuid 0658fe01-6b14-4336-b013-e1b3939f5422)
)
(wire (pts (xy 135.89 31.75) (xy 135.89 35.56))
(stroke (width 0) (type default))
(uuid 110b1603-14f7-42b0-9c35-e1084ae4c1ff)
)
(wire (pts (xy 119.38 96.52) (xy 106.68 96.52))
(stroke (width 0) (type default))
(uuid 113c006a-2f69-4b28-ba03-5746f1337970)
)
(wire (pts (xy 127 66.04) (xy 127 77.47))
(stroke (width 0) (type default))
(uuid 1284b334-f557-4da7-9437-bcec2169f3c9)
)
(wire (pts (xy 127 111.76) (xy 127 123.19))
(stroke (width 0) (type default))
(uuid 12ba46b6-e939-48ca-9fad-77e423e8e381)
)
(wire (pts (xy 45.72 73.66) (xy 71.12 73.66))
(stroke (width 0) (type default))
(uuid 12ba6369-cd51-43cc-a831-5710c2b7ced5)
)
(wire (pts (xy 189.23 43.18) (xy 189.23 137.16))
(stroke (width 0) (type default))
(uuid 1564e360-adde-4d5a-b37c-fddd0b7489eb)
)
(wire (pts (xy 154.94 86.36) (xy 116.84 86.36))
(stroke (width 0) (type default))
(uuid 16bf5c50-d7f8-4ea1-a394-86892e24627d)
)
(wire (pts (xy 185.42 31.75) (xy 185.42 35.56))
(stroke (width 0) (type default))
(uuid 187674ec-ebe2-4ec0-945b-d9b6f94f7a80)
)
(wire (pts (xy 119.38 97.79) (xy 162.56 97.79))
(stroke (width 0) (type default))
(uuid 1b666f4a-9a45-4b1c-b1f7-ff68f58ff040)
)
(wire (pts (xy 127 88.9) (xy 205.74 88.9))
(stroke (width 0) (type default))
(uuid 1ca61840-820b-4a05-9ea5-4f480825098a)
)
(wire (pts (xy 147.32 74.93) (xy 114.3 74.93))
(stroke (width 0) (type default))
(uuid 1f10a819-eab1-4226-b8a3-d7392a25eafe)
)
(wire (pts (xy 127 123.19) (xy 127 134.62))
(stroke (width 0) (type default))
(uuid 1fa461b1-5ba0-4dbf-88a5-52aa7d129c1d)
)
(wire (pts (xy 64.77 96.52) (xy 64.77 45.72))
(stroke (width 0) (type default))
(uuid 22675304-a289-4ee3-a44c-127b827d15d6)
)
(wire (pts (xy 111.76 78.74) (xy 106.68 78.74))
(stroke (width 0) (type default))
(uuid 255b9019-4e91-4ea2-85af-87c30c1aa3a2)
)
(wire (pts (xy 115.57 114.3) (xy 115.57 104.14))
(stroke (width 0) (type default))
(uuid 26a1b9ca-49f7-4631-836f-bb86218406c9)
)
(wire (pts (xy 173.99 31.75) (xy 173.99 35.56))
(stroke (width 0) (type default))
(uuid 294034cb-57db-475e-a99d-08f7dd4cc08a)
)
(wire (pts (xy 162.56 31.75) (xy 162.56 35.56))
(stroke (width 0) (type default))
(uuid 2945a978-78ce-414a-8660-398a10e466d3)
)
(wire (pts (xy 185.42 43.18) (xy 185.42 132.08))
(stroke (width 0) (type default))
(uuid 2a508b62-81e7-45a6-ab2a-c5eec9815cde)
)
(wire (pts (xy 114.3 83.82) (xy 106.68 83.82))
(stroke (width 0) (type default))
(uuid 2b0f746f-1416-454f-94d8-c3e2d8f7a86d)
)
(wire (pts (xy 189.23 31.75) (xy 189.23 35.56))
(stroke (width 0) (type default))
(uuid 2b334d9c-5d00-40e7-a75a-3bff67071947)
)
(wire (pts (xy 170.18 31.75) (xy 173.99 31.75))
(stroke (width 0) (type default))
(uuid 30d076e4-91a3-41fd-a584-43358e129818)
)
(wire (pts (xy 205.74 132.08) (xy 185.42 132.08))
(stroke (width 0) (type default))
(uuid 30fddfdc-62ba-4e0f-81eb-851c8ddfa608)
)
(wire (pts (xy 127 77.47) (xy 127 88.9))
(stroke (width 0) (type default))
(uuid 3312b11f-a990-4bc1-9b1c-4993f1dc5e33)
)
(wire (pts (xy 116.84 109.22) (xy 116.84 101.6))
(stroke (width 0) (type default))
(uuid 34832ce1-0c50-4acb-93f6-235ce353dab5)
)
(wire (pts (xy 147.32 31.75) (xy 147.32 35.56))
(stroke (width 0) (type default))
(uuid 348c0ecc-910c-4fa7-b60e-a1af6bebdcab)
)
(wire (pts (xy 139.7 31.75) (xy 139.7 35.56))
(stroke (width 0) (type default))
(uuid 3dd4ffc7-7fa3-48e2-ba24-d7d14ec7be08)
)
(wire (pts (xy 113.03 68.58) (xy 113.03 81.28))
(stroke (width 0) (type default))
(uuid 427a7f9c-6513-4718-908f-8b41c8500c38)
)
(wire (pts (xy 45.72 76.2) (xy 71.12 76.2))
(stroke (width 0) (type default))
(uuid 42c9848e-6f8b-4a30-8275-184ee926c8a8)
)
(wire (pts (xy 205.74 80.01) (xy 151.13 80.01))
(stroke (width 0) (type default))
(uuid 439eb6cd-910f-4dc7-ad75-20f920486573)
)
(wire (pts (xy 166.37 31.75) (xy 166.37 35.56))
(stroke (width 0) (type default))
(uuid 449af3ff-fef9-4700-8bf1-a1e17e85eb6f)
)
(wire (pts (xy 177.8 43.18) (xy 177.8 120.65))
(stroke (width 0) (type default))
(uuid 468ca7f5-c5dc-4506-a9e8-ba68f5d4c7f3)
)
(wire (pts (xy 116.84 88.9) (xy 106.68 88.9))
(stroke (width 0) (type default))
(uuid 47d29171-293f-4101-929a-9b12c8c62c66)
)
(wire (pts (xy 205.74 74.93) (xy 147.32 74.93))
(stroke (width 0) (type default))
(uuid 487dbf3a-0db0-46a2-bcf1-06b620e9e331)
)
(wire (pts (xy 127 134.62) (xy 205.74 134.62))
(stroke (width 0) (type default))
(uuid 4e9524c5-d751-447e-a99c-8562b772473a)
)
(wire (pts (xy 111.76 132.08) (xy 111.76 111.76))
(stroke (width 0) (type default))
(uuid 4fca9028-be3c-495f-9877-f669c381c83e)
)
(wire (pts (xy 205.74 68.58) (xy 143.51 68.58))
(stroke (width 0) (type default))
(uuid 5504d16f-aa25-40a1-8158-587214d156d6)
)
(wire (pts (xy 113.03 125.73) (xy 113.03 109.22))
(stroke (width 0) (type default))
(uuid 5666ec9f-96ce-4928-bbfd-8c970178ecb2)
)
(wire (pts (xy 151.13 43.18) (xy 151.13 80.01))
(stroke (width 0) (type default))
(uuid 5895c48c-bfc1-41f9-ae06-4bbf27b0679b)
)
(wire (pts (xy 205.74 52.07) (xy 132.08 52.07))
(stroke (width 0) (type default))
(uuid 59df3262-8ce4-4120-a883-18c799e593c3)
)
(wire (pts (xy 151.13 80.01) (xy 115.57 80.01))
(stroke (width 0) (type default))
(uuid 5f2a5009-a91b-4404-9ce7-0062fd17498e)
)
(wire (pts (xy 109.22 52.07) (xy 109.22 73.66))
(stroke (width 0) (type default))
(uuid 618c1d8a-d867-4117-a17c-574c9b80504b)
)
(wire (pts (xy 143.51 31.75) (xy 143.51 35.56))
(stroke (width 0) (type default))
(uuid 64934137-c3c8-401a-a5c1-2452f414ea65)
)
(wire (pts (xy 181.61 125.73) (xy 113.03 125.73))
(stroke (width 0) (type default))
(uuid 66767c5a-abdb-425a-b2a9-d9de74f535e3)
)
(wire (pts (xy 143.51 68.58) (xy 113.03 68.58))
(stroke (width 0) (type default))
(uuid 66d87d86-598f-4885-9e74-2e446cd8ff13)
)
(wire (pts (xy 158.75 31.75) (xy 162.56 31.75))
(stroke (width 0) (type default))
(uuid 67e1c210-8f68-4705-a997-c864d6118b5e)
)
(wire (pts (xy 59.69 88.9) (xy 71.12 88.9))
(stroke (width 0) (type default))
(uuid 6884301b-1966-4d81-b276-e9c3cca698f7)
)
(wire (pts (xy 173.99 31.75) (xy 177.8 31.75))
(stroke (width 0) (type default))
(uuid 69ba9493-ddb5-4d48-9f1a-7317fce77e0d)
)
(wire (pts (xy 135.89 31.75) (xy 139.7 31.75))
(stroke (width 0) (type default))
(uuid 6bd6edb5-5548-41dd-8af7-7630fd9b8070)
)
(wire (pts (xy 110.49 137.16) (xy 110.49 114.3))
(stroke (width 0) (type default))
(uuid 6db4a5b3-05c8-4799-9b83-8639d30b4e08)
)
(wire (pts (xy 154.94 31.75) (xy 158.75 31.75))
(stroke (width 0) (type default))
(uuid 6efcad09-18f8-406d-b4fc-5e97b6a734e6)
)
(wire (pts (xy 127 54.61) (xy 127 66.04))
(stroke (width 0) (type default))
(uuid 70de5ba3-febd-4062-bcc0-b98992b67ff4)
)
(wire (pts (xy 154.94 43.18) (xy 154.94 86.36))
(stroke (width 0) (type default))
(uuid 73f5ba57-a425-4b43-bb12-4f111f11d6f9)
)
(wire (pts (xy 205.74 54.61) (xy 127 54.61))
(stroke (width 0) (type default))
(uuid 75415601-eb6a-435d-9afb-1f965ad00a21)
)
(wire (pts (xy 119.38 97.79) (xy 119.38 96.52))
(stroke (width 0) (type default))
(uuid 778fbfdd-a2c6-4583-ad1b-83f5191f7dfe)
)
(wire (pts (xy 205.74 137.16) (xy 189.23 137.16))
(stroke (width 0) (type default))
(uuid 7adcc418-0093-45ec-b5de-62bc6bb748f3)
)
(wire (pts (xy 185.42 31.75) (xy 189.23 31.75))
(stroke (width 0) (type default))
(uuid 7e3cf492-4ad4-436e-93ed-8df7f7b818ab)
)
(wire (pts (xy 88.9 45.72) (xy 88.9 66.04))
(stroke (width 0) (type default))
(uuid 805a180a-54c5-42f7-a9bc-8495dc0a1956)
)
(wire (pts (xy 111.76 63.5) (xy 111.76 78.74))
(stroke (width 0) (type default))
(uuid 82681c3a-0948-43a2-9688-23f7810bc100)
)
(wire (pts (xy 185.42 132.08) (xy 111.76 132.08))
(stroke (width 0) (type default))
(uuid 85c50e59-618f-4956-bac6-a97240ef6167)
)
(wire (pts (xy 127 66.04) (xy 205.74 66.04))
(stroke (width 0) (type default))
(uuid 87139aa2-56f3-476d-a33e-253da7876e1b)
)
(wire (pts (xy 151.13 31.75) (xy 154.94 31.75))
(stroke (width 0) (type default))
(uuid 87a0342b-2c4e-40c3-9fda-6a14d0d7ebdd)
)
(wire (pts (xy 52.07 88.9) (xy 49.53 88.9))
(stroke (width 0) (type default))
(uuid 8824a761-9ade-4f5e-8468-1ca4317e2d90)
)
(wire (pts (xy 113.03 81.28) (xy 106.68 81.28))
(stroke (width 0) (type default))
(uuid 8e91de0c-606c-4fb9-b6cd-66e225dc401f)
)
(wire (pts (xy 115.57 86.36) (xy 106.68 86.36))
(stroke (width 0) (type default))
(uuid 8ec16fdd-156a-49aa-9d34-48c97918853b)
)
(wire (pts (xy 205.74 63.5) (xy 139.7 63.5))
(stroke (width 0) (type default))
(uuid 8f1f730e-f929-4d84-8a16-d90c9493790d)
)
(wire (pts (xy 127 88.9) (xy 127 100.33))
(stroke (width 0) (type default))
(uuid 94451d5c-4b66-4a7d-816a-06552bf9399f)
)
(wire (pts (xy 166.37 43.18) (xy 166.37 102.87))
(stroke (width 0) (type default))
(uuid 94d4030a-c878-4ca5-aeda-e8e475562a15)
)
(wire (pts (xy 118.11 102.87) (xy 118.11 99.06))
(stroke (width 0) (type default))
(uuid 96977f25-1350-4746-b2cc-9c91454fd1c8)
)
(wire (pts (xy 162.56 97.79) (xy 205.74 97.79))
(stroke (width 0) (type default))
(uuid 9955e17f-18c1-499d-973f-57353d67e973)
)
(wire (pts (xy 132.08 35.56) (xy 132.08 31.75))
(stroke (width 0) (type default))
(uuid 99cdb163-3e0e-49b2-9d93-0ef534acfd11)
)
(wire (pts (xy 115.57 104.14) (xy 106.68 104.14))
(stroke (width 0) (type default))
(uuid 9a114b60-207d-4862-b93a-14d677760d6e)
)
(wire (pts (xy 116.84 101.6) (xy 106.68 101.6))
(stroke (width 0) (type default))
(uuid 9fe81cea-49f9-4a2f-8ad2-0bb3d58308ad)
)
(wire (pts (xy 139.7 63.5) (xy 111.76 63.5))
(stroke (width 0) (type default))
(uuid a26889a4-6b95-4658-aa9d-8707bedd4009)
)
(wire (pts (xy 151.13 31.75) (xy 151.13 35.56))
(stroke (width 0) (type default))
(uuid a31082bd-a786-478b-bea6-56847c7a426a)
)
(wire (pts (xy 135.89 57.15) (xy 110.49 57.15))
(stroke (width 0) (type default))
(uuid a40717d4-c12a-489f-878d-13d386888643)
)
(wire (pts (xy 166.37 31.75) (xy 170.18 31.75))
(stroke (width 0) (type default))
(uuid a4aa5d20-e797-4cee-ae22-5ad35d82c653)
)
(wire (pts (xy 177.8 31.75) (xy 181.61 31.75))
(stroke (width 0) (type default))
(uuid a6e3743b-9eef-4552-be6c-b63cc848fd7e)
)
(wire (pts (xy 147.32 43.18) (xy 147.32 74.93))
(stroke (width 0) (type default))
(uuid abced27c-b871-4554-a969-ede2973ca431)
)
(wire (pts (xy 127 134.62) (xy 127 143.51))
(stroke (width 0) (type default))
(uuid ad665c14-f90d-428f-a81f-ff26843f2763)
)
(wire (pts (xy 181.61 43.18) (xy 181.61 125.73))
(stroke (width 0) (type default))
(uuid ad6bd844-49b7-409a-aa36-08b2cb12c82f)
)
(wire (pts (xy 205.74 102.87) (xy 166.37 102.87))
(stroke (width 0) (type default))
(uuid ad9618dd-1eb6-41b0-af56-40e4e3055d10)
)
(wire (pts (xy 49.53 88.9) (xy 45.72 88.9))
(stroke (width 0) (type default))
(uuid ae8bc302-558b-40b5-b449-97edc0ed9440)
)
(wire (pts (xy 114.3 106.68) (xy 106.68 106.68))
(stroke (width 0) (type default))
(uuid aed271f2-f6b5-4990-83b7-65dc0c5d1d76)
)
(wire (pts (xy 109.22 73.66) (xy 106.68 73.66))
(stroke (width 0) (type default))
(uuid b0a7dd25-7a60-45f4-8d5c-8dcba7530de5)