-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotors.kicad_sch
4860 lines (4785 loc) · 179 KB
/
motors.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 56f6bf63-efea-4cf8-8ccc-01675be55fcb)
(paper "A4")
(lib_symbols
(symbol "Connector_Generic:Conn_01x06" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x06" (at 0 -10.16 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x06_1_1"
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 6.35) (end 1.27 -8.89)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x08" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 10.16 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x08" (at 0 -12.7 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x08, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x08_1_1"
(rectangle (start -1.27 -10.033) (end 0 -10.287)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 7.747) (end 0 7.493)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 8.89) (end 1.27 -11.43)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 7.62 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 5.08 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -7.62 0) (length 3.81)
(name "Pin_7" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -10.16 0) (length 3.81)
(name "Pin_8" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Immortals:MotorDriver" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at 0 12.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Immortals:MotorDriver-SMT" (at 0 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MPN" "61032021821 + NPPC101KFXC-RC" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "MotorDriver_1_1"
(rectangle (start -2.54 11.43) (end 20.32 -13.97)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin power_in line (at 24.13 10.16 180) (length 3.81)
(name "3.3V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 0 0) (length 3.81)
(name "HALL_V" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 24.13 -2.54 180) (length 3.81)
(name "SPI_SCK" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 -2.54 0) (length 3.81)
(name "HALL_WY" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 24.13 -5.08 180) (length 3.81)
(name "SPI_MOSI" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 -5.08 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 24.13 -7.62 180) (length 3.81)
(name "SPI_MISO" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 -7.62 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 24.13 -10.16 180) (length 3.81)
(name "~{CS_DRV}" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 -10.16 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin output line (at 24.13 -12.7 180) (length 3.81)
(name "DRV_FAULT" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 10.16 0) (length 3.81)
(name "ENC_A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 -12.7 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 24.13 7.62 180) (length 3.81)
(name "5V" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 7.62 0) (length 3.81)
(name "ENC_B" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 24.13 5.08 180) (length 3.81)
(name "CTRL_STATUS" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 5.08 0) (length 3.81)
(name "ENC_C" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 24.13 2.54 180) (length 3.81)
(name "CTRL_EN" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -6.35 2.54 0) (length 3.81)
(name "HALL_UX" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at 24.13 0 180) (length 3.81)
(name "~{CS_CTRL}" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "MotorDriver_2_1"
(rectangle (start -2.54 11.43) (end 3.81 -13.97)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin power_in line (at -6.35 10.16 0) (length 3.81)
(name "24V" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 7.62 0) (length 3.81)
(name "24V" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 5.08 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -6.35 2.54 0) (length 3.81)
(name "GND" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin output line (at -6.35 0 0) (length 3.81)
(name "U" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin output line (at -6.35 -2.54 0) (length 3.81)
(name "U" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin output line (at -6.35 -5.08 0) (length 3.81)
(name "V" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin output line (at -6.35 -7.62 0) (length 3.81)
(name "V" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
(pin output line (at -6.35 -10.16 0) (length 3.81)
(name "W" (effects (font (size 1.27 1.27))))
(number "29" (effects (font (size 1.27 1.27))))
)
(pin output line (at -6.35 -12.7 0) (length 3.81)
(name "W" (effects (font (size 1.27 1.27))))
(number "30" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+24V" (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" "+24V" (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 \"+24V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+24V_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 "+24V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+24V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+3.3V" (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" "+3.3V" (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 \"+3.3V\"" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+3.3V_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 "+3.3V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "1" (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 41.91 170.18) (diameter 0) (color 0 0 0 0)
(uuid 05b50902-ac97-47ad-9321-afdb3b87bd9b)
)
(junction (at 41.91 44.45) (diameter 0) (color 0 0 0 0)
(uuid 09aae74b-f9b1-4d9f-be8e-8e431337ad05)
)
(junction (at 41.91 130.81) (diameter 0) (color 0 0 0 0)
(uuid 0a0f2a21-29b4-4b21-b94d-0ceab4476039)
)
(junction (at 41.91 49.53) (diameter 0) (color 0 0 0 0)
(uuid 18a53642-3891-4133-8a30-efd90e9e264b)
)
(junction (at 203.2 31.75) (diameter 0) (color 0 0 0 0)
(uuid 1e075eb4-7748-41ce-b604-a839961abb82)
)
(junction (at 41.91 133.35) (diameter 0) (color 0 0 0 0)
(uuid 23b7f16c-6ba3-4e4b-9816-d6a291f9ed69)
)
(junction (at 138.43 44.45) (diameter 0) (color 0 0 0 0)
(uuid 23da56f5-fef9-4629-bf61-3cbecdb0dd7c)
)
(junction (at 41.91 86.36) (diameter 0) (color 0 0 0 0)
(uuid 2c43ed10-8173-4151-a3f2-e6fc33471315)
)
(junction (at 106.68 68.58) (diameter 0) (color 0 0 0 0)
(uuid 3a17af8b-131b-45b9-8b8a-65780b87f342)
)
(junction (at 106.68 26.67) (diameter 0) (color 0 0 0 0)
(uuid 3ed6ccf7-09e9-4a43-9f6f-6eb7edd0af1e)
)
(junction (at 106.68 41.91) (diameter 0) (color 0 0 0 0)
(uuid 42fc1813-9a0a-41b4-84d3-dd724b0d8839)
)
(junction (at 41.91 91.44) (diameter 0) (color 0 0 0 0)
(uuid 43a43f96-f0da-4fe6-a1bc-fa984a4f4018)
)
(junction (at 203.2 46.99) (diameter 0) (color 0 0 0 0)
(uuid 4f1fa982-44b9-4980-ac5d-e19c52dc94ab)
)
(junction (at 106.68 125.73) (diameter 0) (color 0 0 0 0)
(uuid 52e65b41-cce8-4a5e-a5a1-1d67b19b2fff)
)
(junction (at 106.68 130.81) (diameter 0) (color 0 0 0 0)
(uuid 55a9f5fc-9f8c-4d6f-9375-6fcaf8e38560)
)
(junction (at 106.68 172.72) (diameter 0) (color 0 0 0 0)
(uuid 59574433-bcbe-4028-a808-d4b02e87fc95)
)
(junction (at 106.68 78.74) (diameter 0) (color 0 0 0 0)
(uuid 5d57dacd-4979-45fb-8985-e6353bf379c7)
)
(junction (at 41.91 175.26) (diameter 0) (color 0 0 0 0)
(uuid 5dd707f0-91d6-4537-bc51-19977dcfa11a)
)
(junction (at 203.2 41.91) (diameter 0) (color 0 0 0 0)
(uuid 6908e338-fcb0-4192-a53d-b2298e5d5807)
)
(junction (at 138.43 49.53) (diameter 0) (color 0 0 0 0)
(uuid 6c09e801-fa9e-4ef3-9d12-52e647b5a36d)
)
(junction (at 138.43 46.99) (diameter 0) (color 0 0 0 0)
(uuid 7b2531cb-9d57-4520-92e9-8623b1f4edd4)
)
(junction (at 41.91 46.99) (diameter 0) (color 0 0 0 0)
(uuid 82188a96-63b2-432c-849f-923dde9a3c4e)
)
(junction (at 106.68 31.75) (diameter 0) (color 0 0 0 0)
(uuid 84f2ebb5-7978-443c-bb10-a33ca4917bbf)
)
(junction (at 106.68 83.82) (diameter 0) (color 0 0 0 0)
(uuid 952b839e-b0cd-4739-8108-d095661607ee)
)
(junction (at 41.91 88.9) (diameter 0) (color 0 0 0 0)
(uuid 9ba327c5-0a04-4e90-a9ec-715abf2938db)
)
(junction (at 106.68 120.65) (diameter 0) (color 0 0 0 0)
(uuid 9cf05b1b-7ae8-4a48-b623-898b4d84990d)
)
(junction (at 106.68 46.99) (diameter 0) (color 0 0 0 0)
(uuid a29e2944-c715-47d7-a26f-4ad3b592269f)
)
(junction (at 203.2 36.83) (diameter 0) (color 0 0 0 0)
(uuid a80a739d-46ee-4e13-853d-ddbabc0e284a)
)
(junction (at 41.91 172.72) (diameter 0) (color 0 0 0 0)
(uuid b6a3fdbc-e542-4d43-bd43-d8dc29b3f32e)
)
(junction (at 41.91 128.27) (diameter 0) (color 0 0 0 0)
(uuid c0d14fea-fe9e-461d-a90a-1edee2d21190)
)
(junction (at 106.68 36.83) (diameter 0) (color 0 0 0 0)
(uuid c14f455a-cf50-4b3e-b9d3-6071d14b6841)
)
(junction (at 106.68 88.9) (diameter 0) (color 0 0 0 0)
(uuid cad482b5-8c40-4ec9-8408-8069c09d92be)
)
(junction (at 106.68 110.49) (diameter 0) (color 0 0 0 0)
(uuid ce836895-17e2-4984-9bf5-d03ec28a1361)
)
(junction (at 106.68 73.66) (diameter 0) (color 0 0 0 0)
(uuid dc6ca17d-a314-4ba1-b7d1-aafcb2980826)
)
(junction (at 203.2 26.67) (diameter 0) (color 0 0 0 0)
(uuid ddfde2a2-4764-487a-860c-ac2e34fcea4c)
)
(junction (at 106.68 157.48) (diameter 0) (color 0 0 0 0)
(uuid e33a7f60-dc34-4c2c-8fb2-6cd131f41587)
)
(junction (at 106.68 152.4) (diameter 0) (color 0 0 0 0)
(uuid e7a76bb2-9cc7-4e75-b3e8-abd537d6fbee)
)
(junction (at 106.68 167.64) (diameter 0) (color 0 0 0 0)
(uuid ebd36e28-23bf-40d0-8acf-355021d193a1)
)
(junction (at 106.68 162.56) (diameter 0) (color 0 0 0 0)
(uuid fbd5146c-67d9-454b-8f1b-1a545d69d12f)
)
(junction (at 106.68 115.57) (diameter 0) (color 0 0 0 0)
(uuid fe409de2-bf65-4253-8b15-26659974a166)
)
(no_connect (at 199.39 137.16) (uuid 0cd2a34f-f6e3-4d83-bce3-ac92dba010d9))
(no_connect (at 199.39 68.58) (uuid 19cbf140-fd8e-4a19-9659-080fc72781ef))
(no_connect (at 257.81 68.58) (uuid 1fcf6ac8-b975-4d50-9908-0f9e59c3747a))
(no_connect (at 199.39 102.87) (uuid 9114d73a-07a9-459a-9f76-392b5b405ddb))
(no_connect (at 257.81 102.87) (uuid b69837ba-a00c-47e6-a6ba-99babfbcb483))
(wire (pts (xy 124.46 39.37) (xy 139.7 39.37))
(stroke (width 0) (type default))
(uuid 0000e98d-f856-49f1-af2f-bcb305b74426)
)
(wire (pts (xy 137.16 49.53) (xy 138.43 49.53))
(stroke (width 0) (type default))
(uuid 00c7eb7d-c6fa-4cee-9900-ff0fd33884e4)
)
(wire (pts (xy 41.91 88.9) (xy 41.91 91.44))
(stroke (width 0) (type default))
(uuid 00d2c8c4-e934-4982-a76b-4c1fe101cd94)
)
(wire (pts (xy 139.7 41.91) (xy 138.43 41.91))
(stroke (width 0) (type default))
(uuid 01ed0226-a235-4a65-9c5d-293e2215e149)
)
(wire (pts (xy 222.25 115.57) (xy 233.68 115.57))
(stroke (width 0) (type default))
(uuid 01facd6d-1e74-4256-9cfc-38eb038bf92c)
)
(wire (pts (xy 189.23 71.12) (xy 199.39 71.12))
(stroke (width 0) (type default))
(uuid 028924d7-e4b7-4b89-81e3-174706a7909c)
)
(wire (pts (xy 41.91 172.72) (xy 41.91 175.26))
(stroke (width 0) (type default))
(uuid 02f684e9-a2c3-44dc-8ca6-3c67f46f12eb)
)
(wire (pts (xy 27.94 76.2) (xy 43.18 76.2))
(stroke (width 0) (type default))
(uuid 0454e318-3a46-4589-a27d-13c4275d01d9)
)
(wire (pts (xy 189.23 110.49) (xy 199.39 110.49))
(stroke (width 0) (type default))
(uuid 04712974-57fe-43c8-af29-46898488e4ec)
)
(wire (pts (xy 160.02 102.87) (xy 175.26 102.87))
(stroke (width 0) (type default))
(uuid 05709c64-120f-439d-b7c3-4bb6607c6b00)
)
(wire (pts (xy 106.68 88.9) (xy 107.95 88.9))
(stroke (width 0) (type default))
(uuid 07f4578e-a999-4ef5-a49a-f2173dde48b1)
)
(wire (pts (xy 106.68 29.21) (xy 106.68 26.67))
(stroke (width 0) (type default))
(uuid 0a02db72-d602-4298-924b-83d605fb56ca)
)
(wire (pts (xy 203.2 49.53) (xy 203.2 46.99))
(stroke (width 0) (type default))
(uuid 0b739d4f-a0e2-4da6-9899-b7bc799b59a1)
)
(wire (pts (xy 107.95 86.36) (xy 106.68 86.36))
(stroke (width 0) (type default))
(uuid 0eff6e6e-9dde-432a-ad79-f5c0d80f045b)
)
(wire (pts (xy 41.91 83.82) (xy 41.91 86.36))
(stroke (width 0) (type default))
(uuid 1018e6f0-82a8-4da6-b1a9-6f8d8525c9f1)
)
(wire (pts (xy 106.68 125.73) (xy 107.95 125.73))
(stroke (width 0) (type default))
(uuid 10dd9e48-4ce3-4fe6-84c6-80ea594de6d9)
)
(wire (pts (xy 41.91 46.99) (xy 43.18 46.99))
(stroke (width 0) (type default))
(uuid 115770c5-83c7-46e1-926c-2accc6f73bca)
)
(wire (pts (xy 107.95 49.53) (xy 106.68 49.53))
(stroke (width 0) (type default))
(uuid 11e1af8f-c8ce-4ed6-b8d5-f30a23b21bc7)
)
(wire (pts (xy 95.25 83.82) (xy 106.68 83.82))
(stroke (width 0) (type default))
(uuid 1258fc76-ece7-4360-97ec-7cfafe455c38)
)
(wire (pts (xy 41.91 128.27) (xy 41.91 130.81))
(stroke (width 0) (type default))
(uuid 12c3690e-80e6-449e-babe-0ffe8e0f9ecc)
)
(wire (pts (xy 106.68 68.58) (xy 107.95 68.58))
(stroke (width 0) (type default))
(uuid 1320eed1-67b8-4237-ac92-be3f0875c186)
)
(wire (pts (xy 222.25 86.36) (xy 233.68 86.36))
(stroke (width 0) (type default))
(uuid 152bb47b-ebdc-41e1-a81f-fee62a23d94d)
)
(wire (pts (xy 106.68 162.56) (xy 107.95 162.56))
(stroke (width 0) (type default))
(uuid 16fc01aa-3f9e-4031-bb6b-ff04d3a06603)
)
(wire (pts (xy 189.23 113.03) (xy 199.39 113.03))
(stroke (width 0) (type default))
(uuid 18c243cf-c939-438d-a75a-7368cc457af1)
)
(wire (pts (xy 107.95 175.26) (xy 106.68 175.26))
(stroke (width 0) (type default))
(uuid 195e9554-1ab3-47b9-a5ff-64f8f0b59ef7)
)
(wire (pts (xy 170.18 46.99) (xy 171.45 46.99))
(stroke (width 0) (type default))
(uuid 19862d29-71bb-4a28-944f-8cfa02966c9c)
)
(wire (pts (xy 73.66 172.72) (xy 74.93 172.72))
(stroke (width 0) (type default))
(uuid 1a4d699a-979b-4084-afa3-502a774b1895)
)
(wire (pts (xy 73.66 73.66) (xy 74.93 73.66))
(stroke (width 0) (type default))
(uuid 1c323e85-e34c-4668-9b68-50719b244a5e)
)
(wire (pts (xy 106.68 128.27) (xy 106.68 125.73))
(stroke (width 0) (type default))
(uuid 1e075ef4-06fa-4083-8a74-eb3bedf00718)
)
(wire (pts (xy 163.83 86.36) (xy 175.26 86.36))
(stroke (width 0) (type default))
(uuid 1e93c568-3665-4193-a1c5-01c5fcd093ab)
)
(wire (pts (xy 95.25 88.9) (xy 106.68 88.9))
(stroke (width 0) (type default))
(uuid 1eb8edac-bd4c-4730-886a-003b6494fd5b)
)
(wire (pts (xy 40.64 133.35) (xy 41.91 133.35))
(stroke (width 0) (type default))
(uuid 1f098653-ca26-4887-bcca-1b08624c8fa6)
)
(wire (pts (xy 107.95 81.28) (xy 106.68 81.28))
(stroke (width 0) (type default))
(uuid 200e58f9-3eb0-45d3-85ab-b8711b8ecd15)
)
(wire (pts (xy 27.94 29.21) (xy 43.18 29.21))
(stroke (width 0) (type default))
(uuid 2253f4a1-c905-4d79-b493-3e3328427161)
)
(wire (pts (xy 27.94 36.83) (xy 43.18 36.83))
(stroke (width 0) (type default))
(uuid 237c1185-ecbf-480e-b18a-bcdb511c51d8)
)
(wire (pts (xy 247.65 78.74) (xy 257.81 78.74))
(stroke (width 0) (type default))
(uuid 241036d7-ccd4-41b3-9d29-7d5aa0d15a07)
)
(wire (pts (xy 27.94 34.29) (xy 43.18 34.29))
(stroke (width 0) (type default))
(uuid 25c96cf7-f9dd-451b-b277-043732034e2d)
)
(wire (pts (xy 189.23 105.41) (xy 199.39 105.41))
(stroke (width 0) (type default))
(uuid 26f2d25b-cc0e-462d-8a60-9d59fbc93fac)
)
(wire (pts (xy 107.95 160.02) (xy 106.68 160.02))
(stroke (width 0) (type default))
(uuid 27357226-d416-47a9-8c5b-6effc02822b2)
)
(wire (pts (xy 224.79 76.2) (xy 233.68 76.2))
(stroke (width 0) (type default))
(uuid 27c20329-b4e3-4bda-9998-35b3fdd2efbe)
)
(wire (pts (xy 191.77 41.91) (xy 203.2 41.91))
(stroke (width 0) (type default))
(uuid 27da9ce6-1bb4-4c9d-96b7-b5278cf2c45a)
)
(wire (pts (xy 41.91 46.99) (xy 41.91 49.53))
(stroke (width 0) (type default))
(uuid 27e30306-3835-43ed-b473-468f545e7e20)
)
(wire (pts (xy 107.95 118.11) (xy 106.68 118.11))
(stroke (width 0) (type default))
(uuid 28601f03-17aa-483a-9e75-eee1e07d8f9b)
)
(wire (pts (xy 247.65 71.12) (xy 257.81 71.12))
(stroke (width 0) (type default))
(uuid 29876a5b-aba2-4a96-ba4f-302c44a159bd)
)
(wire (pts (xy 106.68 36.83) (xy 107.95 36.83))
(stroke (width 0) (type default))
(uuid 29e30e94-b4a7-4fd6-a433-d145d16c3e6f)
)
(wire (pts (xy 43.18 86.36) (xy 41.91 86.36))
(stroke (width 0) (type default))
(uuid 2a53fe8c-d420-4ecd-9f4c-23cdb2ca5561)
)
(wire (pts (xy 218.44 73.66) (xy 233.68 73.66))
(stroke (width 0) (type default))
(uuid 2bf768c1-eb98-4596-8f1c-1283bb354be9)
)
(wire (pts (xy 27.94 152.4) (xy 43.18 152.4))
(stroke (width 0) (type default))
(uuid 2e05bb7c-ac8e-4f85-99af-d6dee2a88443)
)
(wire (pts (xy 106.68 83.82) (xy 107.95 83.82))
(stroke (width 0) (type default))
(uuid 2f0405b7-302e-48d2-b399-319bfb1e5915)
)
(wire (pts (xy 247.65 110.49) (xy 257.81 110.49))
(stroke (width 0) (type default))
(uuid 2f0de915-961b-4ce9-a0c5-18b97aa132fd)
)
(wire (pts (xy 203.2 34.29) (xy 203.2 31.75))
(stroke (width 0) (type default))
(uuid 2f225bf1-0b3b-4ae3-b705-74585ac82d51)
)
(wire (pts (xy 41.91 44.45) (xy 41.91 46.99))
(stroke (width 0) (type default))
(uuid 2f3e6c6d-00e9-4b39-9fdf-f3e7f7bd4036)
)
(wire (pts (xy 160.02 68.58) (xy 175.26 68.58))
(stroke (width 0) (type default))
(uuid 2f6bc943-a1f9-4920-b659-f14bb35d59e7)
)
(wire (pts (xy 73.66 170.18) (xy 90.17 170.18))
(stroke (width 0) (type default))
(uuid 320e21da-83b0-4010-9066-e175a7c0fb30)
)
(wire (pts (xy 105.41 31.75) (xy 106.68 31.75))
(stroke (width 0) (type default))
(uuid 34c88df1-a1e3-4e6b-9f12-c8f1ea81842d)
)
(wire (pts (xy 107.95 123.19) (xy 106.68 123.19))
(stroke (width 0) (type default))
(uuid 34d8a09c-d805-469e-a3b3-cfef1040d996)
)
(wire (pts (xy 106.68 49.53) (xy 106.68 46.99))
(stroke (width 0) (type default))
(uuid 35924e5c-1986-446e-abc0-ddafc69f7b5b)
)
(wire (pts (xy 106.68 41.91) (xy 107.95 41.91))
(stroke (width 0) (type default))
(uuid 35bd4ca0-d357-4352-bf94-81103b806145)
)
(wire (pts (xy 73.66 91.44) (xy 74.93 91.44))
(stroke (width 0) (type default))
(uuid 37f429cf-0b0c-4933-a06e-9252890b9b6c)
)
(wire (pts (xy 189.23 107.95) (xy 199.39 107.95))
(stroke (width 0) (type default))
(uuid 3892815d-7527-4b46-935c-6ded53a1d4f3)
)
(wire (pts (xy 203.2 39.37) (xy 203.2 36.83))
(stroke (width 0) (type default))
(uuid 3a79a9d4-b833-4918-a9e9-0251c780f365)
)
(wire (pts (xy 247.65 73.66) (xy 257.81 73.66))
(stroke (width 0) (type default))
(uuid 3bc19b41-e763-4632-9943-6d48cec54a8a)
)
(wire (pts (xy 27.94 31.75) (xy 43.18 31.75))
(stroke (width 0) (type default))
(uuid 3c2ffd20-4816-4def-af2e-f5fa46e73ab8)
)
(wire (pts (xy 177.8 29.21) (xy 177.8 26.67))
(stroke (width 0) (type default))
(uuid 3d3530c6-e5e1-4d86-a33e-4611e9a1df53)
)
(wire (pts (xy 106.68 31.75) (xy 107.95 31.75))
(stroke (width 0) (type default))
(uuid 3e27bc01-9e7b-4547-b476-d65453222526)
)
(wire (pts (xy 218.44 105.41) (xy 233.68 105.41))
(stroke (width 0) (type default))
(uuid 3eb867e7-59c0-450c-9e9d-60a1842423b4)
)
(wire (pts (xy 73.66 118.11) (xy 74.93 118.11))
(stroke (width 0) (type default))
(uuid 3ed12d81-1d45-45e6-9c1b-f8a261e5295c)
)
(wire (pts (xy 222.25 120.65) (xy 233.68 120.65))
(stroke (width 0) (type default))
(uuid 3ed598a5-cbe6-47a8-82cf-6c6d16562f1e)
)
(wire (pts (xy 166.37 110.49) (xy 175.26 110.49))
(stroke (width 0) (type default))
(uuid 3f1a3dcb-90f4-4f86-b182-fb1ece112661)
)
(wire (pts (xy 257.81 81.28) (xy 247.65 81.28))
(stroke (width 0) (type default))
(uuid 3fa40f8b-9d7d-4538-86ec-08411f31f209)
)
(wire (pts (xy 81.28 71.12) (xy 81.28 68.58))
(stroke (width 0) (type default))
(uuid 3fbb7570-8db5-4712-b998-bb7b05612341)
)
(wire (pts (xy 138.43 46.99) (xy 138.43 49.53))
(stroke (width 0) (type default))
(uuid 40775d86-7297-4002-bd91-38a41c78c606)
)
(wire (pts (xy 191.77 46.99) (xy 203.2 46.99))
(stroke (width 0) (type default))
(uuid 422d43ad-7f6e-47e1-9dc2-c461b1e00552)
)
(wire (pts (xy 95.25 172.72) (xy 106.68 172.72))
(stroke (width 0) (type default))
(uuid 424c6cad-8235-4ec8-85b6-a7cff9887569)
)
(wire (pts (xy 73.66 160.02) (xy 74.93 160.02))
(stroke (width 0) (type default))
(uuid 439a859a-05e2-406d-80f7-12ead452aaa0)
)
(wire (pts (xy 73.66 39.37) (xy 90.17 39.37))
(stroke (width 0) (type default))
(uuid 4498a109-3928-4881-b542-ff7ea045538c)
)
(wire (pts (xy 41.91 175.26) (xy 43.18 175.26))
(stroke (width 0) (type default))
(uuid 45b698c0-73cc-48f5-b263-76040bc52e0b)
)
(wire (pts (xy 27.94 71.12) (xy 43.18 71.12))
(stroke (width 0) (type default))
(uuid 467e8d17-8ed0-415d-953a-8e229e96d2a5)
)
(wire (pts (xy 40.64 49.53) (xy 41.91 49.53))
(stroke (width 0) (type default))
(uuid 471019cb-8971-4bbd-a526-44f0a52fec3a)
)
(wire (pts (xy 247.65 113.03) (xy 257.81 113.03))
(stroke (width 0) (type default))
(uuid 4888d8c9-b3dd-4b31-8477-73ba77e88e74)
)
(wire (pts (xy 160.02 105.41) (xy 175.26 105.41))
(stroke (width 0) (type default))
(uuid 4b753d79-21b6-41dc-aa77-4e9ffd60ffb2)
)
(wire (pts (xy 191.77 36.83) (xy 203.2 36.83))
(stroke (width 0) (type default))
(uuid 4c3fc8bd-4150-4477-8ee1-14bb739351dd)
)
(wire (pts (xy 73.66 115.57) (xy 74.93 115.57))
(stroke (width 0) (type default))
(uuid 4da60325-e433-4a7d-ae0e-914e69840169)
)
(wire (pts (xy 107.95 91.44) (xy 106.68 91.44))
(stroke (width 0) (type default))
(uuid 4dc82ec4-cc7a-4c0a-8eb8-bec3f10b927b)
)
(wire (pts (xy 170.18 41.91) (xy 186.69 41.91))
(stroke (width 0) (type default))
(uuid 503eb798-0f51-42c9-b65e-6723b40e42ce)
)
(wire (pts (xy 41.91 88.9) (xy 43.18 88.9))
(stroke (width 0) (type default))
(uuid 504d5b36-c1bb-4476-ba3d-2695e7b7c323)
)
(wire (pts (xy 41.91 133.35) (xy 43.18 133.35))
(stroke (width 0) (type default))