-
Notifications
You must be signed in to change notification settings - Fork 5
/
triggers.kicad_sch
3579 lines (3496 loc) · 122 KB
/
triggers.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 43d030b0-c46c-4448-bc9e-987f12c7559d)
(paper "A4")
(title_block
(title "Polygonus")
(date "2024-11-14")
(rev "v1.6.1")
(comment 2 "rusefi.com/s/proteus")
)
(lib_symbols
(symbol "74xGxx:74LVC2G17" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -2.54 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LVC2G17" (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" "http://www.ti.com/lit/sg/scyt129e/scyt129e.pdf" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "Dual Buffer Schmitt LVC CMOS" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Dual Buffer Schmitt Triggered, Low-Voltage CMOS" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SG-* SOT*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LVC2G17_0_1"
(polyline
(pts
(xy -1.905 0.635)
(xy -1.27 0.635)
(xy -1.27 -0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.81 2.54)
(xy -3.81 -2.54)
(xy 2.54 0)
(xy -3.81 2.54)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 0.635)
(xy -1.905 0.635)
(xy -1.905 -0.635)
(xy -0.635 -0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin power_in line (at 0 -2.54 270) (length 0) hide
(name "GND" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 0 2.54 90) (length 0) hide
(name "VCC" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
)
(symbol "74LVC2G17_1_1"
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin output line (at 6.35 0 180) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
)
(symbol "74LVC2G17_2_1"
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin output line (at 6.35 0 180) (length 3.81)
(name "~" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
)
)
(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 "Power_Protection:SRV05-4" (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at -5.08 11.43 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "SRV05-4" (at 2.54 11.43 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 17.78 -11.43 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.onsemi.com/pub/Collateral/SRV05-4-D.PDF" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "ESD protection diodes" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "ESD Protection Diodes with Low Clamping Voltage, SOT-23-6" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOT?23*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SRV05-4_0_0"
(rectangle (start -5.715 6.477) (end 5.715 -6.604)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -3.175 -6.604)
(xy -3.175 6.477)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.175 6.477)
(xy 3.175 -6.604)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "SRV05-4_0_1"
(rectangle (start -7.62 10.16) (end 7.62 -10.16)
(stroke (width 0.254) (type default))
(fill (type background))
)
(circle (center -5.715 -2.54) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -3.175 -6.604) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -3.175 2.54) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center -3.175 6.477) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 0 -6.604) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy -7.747 2.54)
(xy -3.175 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -7.62 -2.54)
(xy -5.715 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -3.81)
(xy -6.35 -3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 5.08)
(xy -6.35 5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -3.81)
(xy -3.81 -3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 5.08)
(xy -3.81 5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 10.16)
(xy 0 -10.16)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -3.81)
(xy 2.54 -3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 5.08)
(xy 2.54 5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.35 -3.81)
(xy 5.08 -3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.35 5.08)
(xy 5.08 5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 -2.54)
(xy 3.175 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 2.54)
(xy 5.715 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 0.889)
(xy -0.635 0.889)
(xy -0.635 0.635)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 -5.08)
(xy -6.35 -5.08)
(xy -5.715 -3.81)
(xy -5.08 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -5.08 3.81)
(xy -6.35 3.81)
(xy -5.715 5.08)
(xy -5.08 3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -5.08)
(xy -3.81 -5.08)
(xy -3.175 -3.81)
(xy -2.54 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 3.81)
(xy -3.81 3.81)
(xy -3.175 5.08)
(xy -2.54 3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.381)
(xy -0.635 -0.381)
(xy 0 0.889)
(xy 0.635 -0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 -5.08)
(xy 2.54 -5.08)
(xy 3.175 -3.81)
(xy 3.81 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.81 3.81)
(xy 2.54 3.81)
(xy 3.175 5.08)
(xy 3.81 3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.35 -5.08)
(xy 5.08 -5.08)
(xy 5.715 -3.81)
(xy 6.35 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 6.35 3.81)
(xy 5.08 3.81)
(xy 5.715 5.08)
(xy 6.35 3.81)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 0 6.477) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 3.175 -6.604) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 3.175 -2.54) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 3.175 6.477) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 5.715 2.54) (radius 0.2794)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "SRV05-4_1_1"
(pin passive line (at -12.7 2.54 0) (length 5.08)
(name "IO1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -12.7 90) (length 2.54)
(name "VN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -12.7 -2.54 0) (length 5.08)
(name "IO2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 2.54 180) (length 5.08)
(name "IO3" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 12.7 270) (length 2.54)
(name "VP" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -2.54 180) (length 5.08)
(name "IO4" (effects (font (size 1.27 1.27))))
(number "6" (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" "power-flag" (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" "power-flag" (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 37.465 120.65) (diameter 0) (color 0 0 0 0)
(uuid 0ecfe0e1-844f-49ac-b5dc-cd55b19a7c78)
)
(junction (at 37.465 151.13) (diameter 0) (color 0 0 0 0)
(uuid 1d052412-811d-4384-b62d-b10970534fb5)
)
(junction (at 50.165 27.94) (diameter 0) (color 0 0 0 0)
(uuid 206ace7c-6dae-4c64-b30f-758119e57387)
)
(junction (at 50.165 90.17) (diameter 0) (color 0 0 0 0)
(uuid 407396c7-a5e2-4ecf-b616-5f9c7dafa52b)
)
(junction (at 37.465 181.61) (diameter 0) (color 0 0 0 0)
(uuid 4a333138-062a-4541-87e1-d6ef03b1e3dd)
)
(junction (at 212.725 29.1658) (diameter 0) (color 0 0 0 0)
(uuid 56311c4a-7d6c-4a89-acfc-9575bc9f9d69)
)
(junction (at 50.165 120.65) (diameter 0) (color 0 0 0 0)
(uuid 58b8f6af-04ea-4eb0-addd-d814725f2fe4)
)
(junction (at 37.465 59.055) (diameter 0) (color 0 0 0 0)
(uuid 58d7fa4b-9912-4b07-bc12-5c063b15dc64)
)
(junction (at 59.69 59.055) (diameter 0) (color 0 0 0 0)
(uuid 60a3f551-c43b-4672-8036-7db7184ccc5f)
)
(junction (at 50.165 181.61) (diameter 0) (color 0 0 0 0)
(uuid 633a5fce-b259-449f-9fbe-80229fc70017)
)
(junction (at 50.165 59.055) (diameter 0) (color 0 0 0 0)
(uuid 64272f01-95d4-4c13-ba7c-3f30a36f0035)
)
(junction (at 212.725 29.21) (diameter 0) (color 0 0 0 0)
(uuid 66a6fdc3-68fb-4b3c-addd-450b71be6a32)
)
(junction (at 59.69 181.61) (diameter 0) (color 0 0 0 0)
(uuid 84b10966-785e-4183-813b-cc78248412ae)
)
(junction (at 62.23 27.94) (diameter 0) (color 0 0 0 0)
(uuid 8803436b-9622-41df-9b66-cae94f4471d9)
)
(junction (at 255.27 64.77) (diameter 0) (color 0 0 0 0)
(uuid 9133b4b6-456d-4de0-85f9-4683af49e677)
)
(junction (at 210.185 91.44) (diameter 0) (color 0 0 0 0)
(uuid 9185af09-65f0-47a6-bc2e-3f40c0a2e83d)
)
(junction (at 237.49 29.21) (diameter 0) (color 0 0 0 0)
(uuid 934638ed-19cc-40ea-a066-aa320c9a2065)
)
(junction (at 224.79 59.69) (diameter 0) (color 0 0 0 0)
(uuid 9dfc9709-0c88-419a-99d7-56ce4664c0a1)
)
(junction (at 58.42 120.65) (diameter 0) (color 0 0 0 0)
(uuid 9f093f53-68a3-4c94-8baf-6fb782f8b40c)
)
(junction (at 113.03 167.005) (diameter 0) (color 0 0 0 0)
(uuid a2ef7f31-a8fc-48ff-a2ff-5ed1ad1ea2b5)
)
(junction (at 110.49 146.05) (diameter 0) (color 0 0 0 0)
(uuid a8be1598-5bfc-4026-af19-f1d4757d0b5e)
)
(junction (at 58.42 90.17) (diameter 0) (color 0 0 0 0)
(uuid b0bd7b6c-ac14-458c-bb0c-36050e2821ca)
)
(junction (at 58.42 151.13) (diameter 0) (color 0 0 0 0)
(uuid b255d157-a23f-4dc5-89da-fa7249e0fdfd)
)
(junction (at 222.885 91.44) (diameter 0) (color 0 0 0 0)
(uuid b4f8a513-7c50-4a47-873d-f19ff5f06493)
)
(junction (at 234.95 91.44) (diameter 0) (color 0 0 0 0)
(uuid d3b53464-9a54-4298-88ab-3752d7326b2f)
)
(junction (at 225.425 29.21) (diameter 0) (color 0 0 0 0)
(uuid d94f617e-a0c6-443f-9b6d-3f4e8bed94f8)
)
(junction (at 50.165 151.13) (diameter 0) (color 0 0 0 0)
(uuid e873deca-9d09-405a-95a4-80d6995b5991)
)
(junction (at 37.465 90.17) (diameter 0) (color 0 0 0 0)
(uuid f7aa75c5-0bfb-4814-b8eb-5f8a9a128aa9)
)
(junction (at 37.465 27.94) (diameter 0) (color 0 0 0 0)
(uuid ffadf13e-d327-4e72-a129-20b1a691d829)
)
(wire (pts (xy 58.42 120.65) (xy 68.58 120.65))
(stroke (width 0) (type default))
(uuid 023e5bef-3fff-4fea-9ef4-0636c40382e2)
)
(wire (pts (xy 37.465 118.11) (xy 37.465 120.65))
(stroke (width 0) (type default))
(uuid 029d749e-2289-4769-a0ce-e768bbda0cd0)
)
(wire (pts (xy 208.28 78.74) (xy 210.185 78.74))
(stroke (width 0) (type default))
(uuid 02b522e0-3877-48d8-8b34-ee9cac4940d4)
)
(wire (pts (xy 37.465 120.65) (xy 40.005 120.65))
(stroke (width 0) (type default))
(uuid 05b39569-aaa4-4273-9b2f-9e1c6ca4bf60)
)
(wire (pts (xy 212.725 29.1658) (xy 212.725 29.21))
(stroke (width 0) (type default))
(uuid 066729f3-809e-4c0b-a55b-1ace7352d8dc)
)
(wire (pts (xy 113.03 167.005) (xy 113.03 183.515))
(stroke (width 0) (type default))
(uuid 0961e070-f438-47f9-85dc-91f36536bc4a)
)
(wire (pts (xy 237.49 29.21) (xy 243.84 29.21))
(stroke (width 0) (type default))
(uuid 0981c238-29fc-4495-9527-6a0a2610ea4e)
)
(wire (pts (xy 225.425 29.21) (xy 222.885 29.21))
(stroke (width 0) (type default))
(uuid 0f4444c6-90da-4097-bce5-82acfe860a93)
)
(wire (pts (xy 50.165 90.17) (xy 47.625 90.17))
(stroke (width 0) (type default))
(uuid 0fa241a2-e684-4224-bccf-feed816795b0)
)
(wire (pts (xy 29.845 27.94) (xy 37.465 27.94))
(stroke (width 0) (type default))
(uuid 10e85d49-8c1d-4e38-920c-77246389daec)
)
(wire (pts (xy 59.69 60.96) (xy 59.69 59.055))
(stroke (width 0) (type default))
(uuid 12b89a5a-6279-47ee-a1cf-04b72381f897)
)
(wire (pts (xy 35.56 138.43) (xy 37.465 138.43))
(stroke (width 0) (type default))
(uuid 12fc5fae-2589-481a-9c5c-1325ed3bb3b8)
)
(wire (pts (xy 125.73 69.215) (xy 125.73 139.7))
(stroke (width 0) (type default))
(uuid 156104ba-c083-49b0-af73-bb1acb638292)
)
(wire (pts (xy 50.165 151.13) (xy 50.165 153.67))
(stroke (width 0) (type default))
(uuid 1641185a-e805-403b-b872-eb3450148cc8)
)
(wire (pts (xy 76.2 30.48) (xy 76.2 30.4364))
(stroke (width 0) (type default))
(uuid 1871d89c-2691-4c3a-9736-33070fe5f2d3)
)
(wire (pts (xy 222.885 91.44) (xy 234.95 91.44))
(stroke (width 0) (type default))
(uuid 18cdb055-562e-4ac4-8ad1-5e0df1713639)
)
(wire (pts (xy 143.51 161.925) (xy 140.335 161.925))
(stroke (width 0) (type default))
(uuid 1b4c6d83-61c2-45d1-944b-43645707493f)
)
(wire (pts (xy 35.56 168.91) (xy 37.465 168.91))
(stroke (width 0) (type default))
(uuid 1ba339fd-3eed-4093-adef-1f8b6939e3c2)
)
(wire (pts (xy 76.2 25.4) (xy 76.2 25.3564))
(stroke (width 0) (type default))
(uuid 1c181b44-931f-4609-bd0b-c61e59659237)
)
(wire (pts (xy 210.185 91.44) (xy 212.725 91.44))
(stroke (width 0) (type default))
(uuid 1cac499e-de21-4e49-b2b6-7f9cf91e9297)
)
(wire (pts (xy 210.185 88.9) (xy 210.185 91.44))
(stroke (width 0) (type default))
(uuid 1ccc8a4d-7413-4368-95a1-68b18fd852c8)
)
(wire (pts (xy 37.465 181.61) (xy 40.005 181.61))
(stroke (width 0) (type default))
(uuid 1cdb9155-c146-40d9-bead-b709bf7a6467)
)
(wire (pts (xy 29.845 120.65) (xy 37.465 120.65))
(stroke (width 0) (type default))
(uuid 1eea39a5-2762-4e3a-8c74-b0e5bc37cc89)
)
(wire (pts (xy 113.03 166.37) (xy 113.03 167.005))
(stroke (width 0) (type default))
(uuid 1ff97a55-a34e-459d-9866-1b14e84c4711)
)
(wire (pts (xy 110.49 109.22) (xy 58.42 109.22))
(stroke (width 0) (type default))
(uuid 21656ebd-9580-4ab6-a256-051e6971c27e)
)
(wire (pts (xy 82.55 27.94) (xy 82.55 27.8964))
(stroke (width 0) (type default))
(uuid 22e12909-837e-4fe9-bffb-dc1c82909606)
)
(wire (pts (xy 29.845 59.055) (xy 37.465 59.055))
(stroke (width 0) (type default))
(uuid 23b2684a-2e45-4486-8777-c94a6d847baf)
)
(wire (pts (xy 37.465 107.95) (xy 37.465 110.49))
(stroke (width 0) (type default))
(uuid 24b42847-745f-4b13-9d2d-3ca8b56bc9de)
)
(wire (pts (xy 37.465 87.63) (xy 37.465 90.17))
(stroke (width 0) (type default))
(uuid 27101d2b-1f80-4d40-be5b-78bdcb31c291)
)
(wire (pts (xy 50.165 59.055) (xy 47.625 59.055))
(stroke (width 0) (type default))
(uuid 27fc8656-6226-4381-8e8c-fcbb6b9cbbc0)
)
(wire (pts (xy 114.935 161.925) (xy 110.49 161.925))
(stroke (width 0) (type default))
(uuid 2ac84803-d989-4c21-b753-f05a1199b726)
)
(wire (pts (xy 160.02 74.295) (xy 155.575 74.295))
(stroke (width 0) (type default))
(uuid 2b9501c4-4e2c-4980-90ec-e0da3f376e7f)
)
(wire (pts (xy 255.27 64.77) (xy 255.27 81.28))
(stroke (width 0) (type default))
(uuid 2be9d93a-a453-4e83-ade0-fe951f4c14c6)
)
(wire (pts (xy 37.465 90.17) (xy 40.005 90.17))
(stroke (width 0) (type default))
(uuid 2dd9a5be-3aa9-4cf6-850b-b3df04cedb00)
)
(wire (pts (xy 37.465 153.67) (xy 37.465 151.13))
(stroke (width 0) (type default))
(uuid 331e4b06-587c-447e-bea7-ab3ccd3f7d67)
)
(wire (pts (xy 62.23 37.465) (xy 62.23 27.94))
(stroke (width 0) (type default))
(uuid 34a8a960-94f3-47db-8324-40b02a798738)
)
(wire (pts (xy 123.825 37.465) (xy 123.825 74.295))
(stroke (width 0) (type default))
(uuid 37b0f127-6313-484e-b3f5-a9c6311616ab)
)
(wire (pts (xy 212.725 29.21) (xy 215.265 29.21))
(stroke (width 0) (type default))
(uuid 37da7eaa-a952-4def-a1be-d160b14e844c)
)
(wire (pts (xy 50.165 181.61) (xy 47.625 181.61))
(stroke (width 0) (type default))
(uuid 3915f1cf-e224-42a7-8e50-b5aa000e1dd3)
)
(wire (pts (xy 62.23 25.4) (xy 62.23 27.94))
(stroke (width 0) (type default))
(uuid 3ba45f98-412f-4787-8a30-5bae6699e7ce)
)
(wire (pts (xy 50.165 27.94) (xy 62.23 27.94))
(stroke (width 0) (type default))
(uuid 3bad0292-560e-4959-9af2-db7bbf622092)
)
(wire (pts (xy 234.95 81.28) (xy 234.95 91.44))
(stroke (width 0) (type default))
(uuid 401c8d6a-5c5e-4773-823a-cb4a7970259b)
)
(wire (pts (xy 58.42 139.7) (xy 125.73 139.7))
(stroke (width 0) (type default))
(uuid 43cf3d92-809d-47c6-ba44-603f8370e4a9)
)
(wire (pts (xy 143.51 183.515) (xy 143.51 161.925))
(stroke (width 0) (type default))
(uuid 45e401c0-4853-4fed-ab9e-a6d42ad612dc)
)
(wire (pts (xy 58.42 90.17) (xy 68.58 90.17))
(stroke (width 0) (type default))
(uuid 474cba46-06ee-46b3-a288-4c9965154415)
)
(wire (pts (xy 160.02 69.215) (xy 155.575 69.215))
(stroke (width 0) (type default))
(uuid 4abebb2f-7587-44f5-a884-3af6e34725a7)
)
(wire (pts (xy 50.165 181.61) (xy 50.165 184.15))
(stroke (width 0) (type default))
(uuid 5289bc61-7716-4d1c-91dd-03b886b4760f)
)
(wire (pts (xy 82.55 27.8964) (xy 82.5717 27.8964))
(stroke (width 0) (type default))
(uuid 5337a33b-d88d-4077-b45b-d37963c04911)
)
(wire (pts (xy 29.845 90.17) (xy 37.465 90.17))
(stroke (width 0) (type default))
(uuid 582bf52d-f931-4c83-b941-f1087e1fcfee)
)
(wire (pts (xy 68.58 59.093) (xy 68.4657 59.093))
(stroke (width 0) (type default))
(uuid 5b7632d4-f1a7-4d1b-9749-e40532729742)
)
(wire (pts (xy 37.465 148.59) (xy 37.465 151.13))
(stroke (width 0) (type default))
(uuid 5d580eb5-0e83-488b-a0fd-a803c630f551)
)
(wire (pts (xy 35.56 15.24) (xy 37.465 15.24))
(stroke (width 0) (type default))
(uuid 5e5cd445-0654-433f-a688-b9a23b9e5558)
)
(wire (pts (xy 146.685 167.005) (xy 146.685 146.05))
(stroke (width 0) (type default))
(uuid 61d66391-d7cb-4d9e-b0ed-600d3698e782)
)
(wire (pts (xy 50.165 181.61) (xy 59.69 181.61))
(stroke (width 0) (type default))
(uuid 66aa1bc3-ffb7-43d4-88ae-6c86417d54bc)
)
(wire (pts (xy 59.69 60.96) (xy 68.58 60.96))
(stroke (width 0) (type default))
(uuid 66e53a4e-5ace-40cf-a159-5231008726e5)
)
(wire (pts (xy 212.725 16.51) (xy 212.725 19.05))
(stroke (width 0) (type default))
(uuid 67524be0-fdb6-4f1d-92aa-6e90f44371d7)
)
(wire (pts (xy 255.27 64.77) (xy 255.27 59.69))
(stroke (width 0) (type default))
(uuid 67b0c6cc-7410-47b5-9fcc-eb45196903b4)
)
(wire (pts (xy 59.69 181.61) (xy 68.58 181.61))
(stroke (width 0) (type default))
(uuid 67d9ccf1-52ed-4e76-b126-e4fdcdc954ff)
)
(wire (pts (xy 50.165 59.055) (xy 59.69 59.055))
(stroke (width 0) (type default))
(uuid 6828e5b1-9686-4f2b-afeb-e93e9ba5ac33)
)
(wire (pts (xy 237.49 29.21) (xy 237.49 44.45))
(stroke (width 0) (type default))
(uuid 68524e6d-25a3-4b1a-aabf-3ee4ff32914f)
)
(wire (pts (xy 125.73 69.215) (xy 130.175 69.215))
(stroke (width 0) (type default))
(uuid 6911bbdb-2077-4c5b-8c57-f196d180d921)
)
(wire (pts (xy 50.165 27.94) (xy 50.165 30.48))
(stroke (width 0) (type default))
(uuid 6bd7efd5-74f5-4b09-8bb7-5762073a2f78)
)
(wire (pts (xy 234.95 91.44) (xy 241.3 91.44))
(stroke (width 0) (type default))
(uuid 6e95c667-0fa5-4878-9662-9000fa500695)
)
(wire (pts (xy 35.56 77.47) (xy 37.465 77.47))
(stroke (width 0) (type default))
(uuid 70852beb-7102-4701-922b-9248dc6321b9)
)
(wire (pts (xy 113.03 167.005) (xy 114.935 167.005))
(stroke (width 0) (type default))
(uuid 72bde92d-8e9a-4655-98f3-2cff55f4d19c)
)
(wire (pts (xy 37.465 61.595) (xy 37.465 59.055))
(stroke (width 0) (type default))
(uuid 7594fd2b-c5d9-4333-9f70-e53128d27c5a)
)
(wire (pts (xy 37.465 151.13) (xy 40.005 151.13))
(stroke (width 0) (type default))
(uuid 774bd91e-6eb9-41ae-a7fd-20b88a031e1c)
)
(wire (pts (xy 110.49 146.05) (xy 110.49 161.925))
(stroke (width 0) (type default))
(uuid 778b4d23-1849-4932-b5cf-78afab24b2e2)
)
(wire (pts (xy 224.79 59.69) (xy 224.79 64.77))
(stroke (width 0) (type default))
(uuid 78cd24e6-0cff-479a-b8f9-918c31569393)
)
(wire (pts (xy 160.02 92.075) (xy 160.02 74.295))
(stroke (width 0) (type default))
(uuid 799c72fa-a68b-48b2-85dc-a6927c69d0ad)
)
(wire (pts (xy 82.4643 59.055) (xy 82.55 59.055))
(stroke (width 0) (type default))
(uuid 79de7523-b457-4a20-b406-372171f3ee17)
)
(wire (pts (xy 58.42 73.66) (xy 58.42 90.17))
(stroke (width 0) (type default))
(uuid 79ff7d08-c026-425f-9ef2-c423cbd4d714)
)
(wire (pts (xy 62.23 25.4) (xy 68.6017 25.4))
(stroke (width 0) (type default))
(uuid 7b7d296c-fb40-42d4-85b7-7958db5c1d84)
)
(wire (pts (xy 50.165 90.17) (xy 58.42 90.17))
(stroke (width 0) (type default))
(uuid 7f0c1ea5-31ba-4e3c-b23d-dc37801fb19b)
)
(wire (pts (xy 212.725 31.75) (xy 212.725 29.21))
(stroke (width 0) (type default))
(uuid 8029adca-e347-4e93-85db-e15991c7b6e4)
)
(wire (pts (xy 29.845 151.13) (xy 37.465 151.13))
(stroke (width 0) (type default))
(uuid 84a6c803-a4ac-48df-95fb-6930cca4e25e)
)
(wire (pts (xy 37.465 179.07) (xy 37.465 181.61))
(stroke (width 0) (type default))
(uuid 857af45d-9795-41a2-9845-b5953516cc70)
)
(wire (pts (xy 76.2 25.3564) (xy 76.2217 25.3564))
(stroke (width 0) (type default))
(uuid 87a6297d-05f1-466a-9692-4bc2d7c59ff3)
)