-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathswitches.kicad_sch
4900 lines (4771 loc) · 192 KB
/
switches.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 20211123) (generator eeschema)
(uuid 78c7f110-a36f-4e74-99d7-0ca7148658b8)
(paper "A3")
(lib_symbols
(symbol "Diode:1N4148" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_THT:D_DO-35_SOD27_P7.62mm_Horizontal" (id 2) (at 0 -4.445 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/1N4148_1N4448.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "100V 0.15A standard switching diode, DO-35" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "D*DO?35*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "1N4148_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "1N4148_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 "Switch:SW_Push" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "SW_Push" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "SW_Push_0_1"
(circle (center -2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(circle (center 2.032 0) (radius 0.508)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 205.74 229.87) (diameter 0) (color 0 0 0 0)
(uuid 01bebdd9-5128-4545-be27-1169e13959eb)
)
(junction (at 383.54 153.67) (diameter 0) (color 0 0 0 0)
(uuid 101bcbe2-a107-4897-9b44-4eeb9cb49ff3)
)
(junction (at 125.73 92.71) (diameter 0) (color 0 0 0 0)
(uuid 1b5fa8d8-01da-41cf-8ad4-e2fca04465d8)
)
(junction (at 176.53 168.91) (diameter 0) (color 0 0 0 0)
(uuid 1c6ac8a4-4b33-4f18-8f0d-80c03b20ab82)
)
(junction (at 104.14 109.22) (diameter 0) (color 0 0 0 0)
(uuid 1e17110f-273a-4bcc-a397-b75184c69958)
)
(junction (at 100.33 168.91) (diameter 0) (color 0 0 0 0)
(uuid 1f6235dc-b3d7-4c44-96b0-dee673becade)
)
(junction (at 78.74 109.22) (diameter 0) (color 0 0 0 0)
(uuid 1f87b2ca-7b82-4166-8f53-dfa7adf0a9cb)
)
(junction (at 49.53 207.01) (diameter 0) (color 0 0 0 0)
(uuid 20e77499-cb1d-41cf-8979-a77052d19fd5)
)
(junction (at 180.34 147.32) (diameter 0) (color 0 0 0 0)
(uuid 22be43c2-320a-4da8-ab51-a7b72e11d045)
)
(junction (at 379.73 168.91) (diameter 0) (color 0 0 0 0)
(uuid 2765b38c-684f-4ba1-a83c-5bef5b6b689a)
)
(junction (at 176.53 54.61) (diameter 0) (color 0 0 0 0)
(uuid 2779a29e-7deb-4660-85c1-edeeba2287f0)
)
(junction (at 354.33 54.61) (diameter 0) (color 0 0 0 0)
(uuid 2f33371d-d572-49d1-87d5-1da06bd787b9)
)
(junction (at 205.74 71.12) (diameter 0) (color 0 0 0 0)
(uuid 2fb623e4-6001-45aa-b7f8-c5eb6140130c)
)
(junction (at 328.93 92.71) (diameter 0) (color 0 0 0 0)
(uuid 34e4a62a-f06b-4a62-838d-caa72b219925)
)
(junction (at 129.54 109.22) (diameter 0) (color 0 0 0 0)
(uuid 36c6e8e5-6478-40e6-93f2-13cb9eaa70c6)
)
(junction (at 154.94 71.12) (diameter 0) (color 0 0 0 0)
(uuid 398f6984-9deb-4e8f-9632-212ed2f03d92)
)
(junction (at 303.53 168.91) (diameter 0) (color 0 0 0 0)
(uuid 4417b1a9-5ac0-4366-9597-1e2abf2a9494)
)
(junction (at 332.74 109.22) (diameter 0) (color 0 0 0 0)
(uuid 449da372-817d-4e55-9fc2-7ef5fc8f202d)
)
(junction (at 180.34 71.12) (diameter 0) (color 0 0 0 0)
(uuid 45833c95-095e-4392-aae6-f22f2a3f981f)
)
(junction (at 201.93 207.01) (diameter 0) (color 0 0 0 0)
(uuid 48de9f2a-7b14-47b4-95fb-8594fa03c59c)
)
(junction (at 53.34 71.12) (diameter 0) (color 0 0 0 0)
(uuid 4a4bc72f-5f92-41f2-9748-d15efdb183ed)
)
(junction (at 256.54 185.42) (diameter 0) (color 0 0 0 0)
(uuid 4dd67fad-b17b-449d-8281-621a19d86e70)
)
(junction (at 303.53 207.01) (diameter 0) (color 0 0 0 0)
(uuid 5156ce8a-06a7-420f-8046-089f081f517e)
)
(junction (at 256.54 71.12) (diameter 0) (color 0 0 0 0)
(uuid 52d5898b-19db-4e05-8ab5-ea79fbd6aa26)
)
(junction (at 383.54 109.22) (diameter 0) (color 0 0 0 0)
(uuid 54d9f795-b21c-4a51-9035-e46bd11b864f)
)
(junction (at 379.73 92.71) (diameter 0) (color 0 0 0 0)
(uuid 56ab4ef9-a23d-418a-9a4e-d516802ed44e)
)
(junction (at 53.34 109.22) (diameter 0) (color 0 0 0 0)
(uuid 5724e3ad-0b6c-43ed-a840-67015d972eb9)
)
(junction (at 307.34 147.32) (diameter 0) (color 0 0 0 0)
(uuid 576a3ee0-2033-4e6e-bb4d-94f5d843fb57)
)
(junction (at 205.74 109.22) (diameter 0) (color 0 0 0 0)
(uuid 59a7ce0e-c8fb-4dcf-add7-ae33235b7534)
)
(junction (at 307.34 109.22) (diameter 0) (color 0 0 0 0)
(uuid 5d036a2a-f494-4150-a0be-940a096f23fd)
)
(junction (at 205.74 147.32) (diameter 0) (color 0 0 0 0)
(uuid 5dbe8239-d091-4335-b3f3-34d0dc160cfb)
)
(junction (at 227.33 92.71) (diameter 0) (color 0 0 0 0)
(uuid 60308b22-e4c1-4ecd-b54b-16b7ec4f37bd)
)
(junction (at 383.54 72.39) (diameter 0) (color 0 0 0 0)
(uuid 61dc151d-3256-48c0-bf3b-e5b47f6f2be1)
)
(junction (at 201.93 168.91) (diameter 0) (color 0 0 0 0)
(uuid 62a1d972-a709-45f6-9d50-a54c9bc280a2)
)
(junction (at 154.94 185.42) (diameter 0) (color 0 0 0 0)
(uuid 62fab375-2d2d-4f30-9988-0012ea803a6d)
)
(junction (at 227.33 54.61) (diameter 0) (color 0 0 0 0)
(uuid 648cf3c7-0a6d-4215-987e-fe3ca22a2e57)
)
(junction (at 252.73 54.61) (diameter 0) (color 0 0 0 0)
(uuid 6673d930-8705-447c-ac27-85c36c80a006)
)
(junction (at 278.13 54.61) (diameter 0) (color 0 0 0 0)
(uuid 680047ab-8b1f-4855-bf9b-3f1c820720a8)
)
(junction (at 129.54 147.32) (diameter 0) (color 0 0 0 0)
(uuid 68d4e6a4-91fb-4375-9b8e-1278e8e5ebb5)
)
(junction (at 49.53 168.91) (diameter 0) (color 0 0 0 0)
(uuid 6b2b662f-945d-4eec-b6e7-61cd0aa78191)
)
(junction (at 227.33 130.81) (diameter 0) (color 0 0 0 0)
(uuid 6b314602-7c94-4e93-8517-b5b8a6b0389f)
)
(junction (at 328.93 168.91) (diameter 0) (color 0 0 0 0)
(uuid 6bc3a079-ee45-4728-b41b-0b129903cfce)
)
(junction (at 100.33 54.61) (diameter 0) (color 0 0 0 0)
(uuid 6bcc658a-05f2-4a60-97c8-2db8a00da838)
)
(junction (at 303.53 92.71) (diameter 0) (color 0 0 0 0)
(uuid 6c590e35-8242-4e4a-ab82-ae8a98d78beb)
)
(junction (at 49.53 130.81) (diameter 0) (color 0 0 0 0)
(uuid 71301cbf-8e80-41d8-be27-ad6b0f86177f)
)
(junction (at 278.13 168.91) (diameter 0) (color 0 0 0 0)
(uuid 7311149a-d0df-4b29-8730-05f5931b92ce)
)
(junction (at 53.34 226.06) (diameter 0) (color 0 0 0 0)
(uuid 73bdee82-4ad3-4e76-9375-d3a938fbce02)
)
(junction (at 100.33 207.01) (diameter 0) (color 0 0 0 0)
(uuid 74828238-0ad2-4ab9-98ec-490a9376f575)
)
(junction (at 303.53 130.81) (diameter 0) (color 0 0 0 0)
(uuid 76048e8e-407c-4c91-8c24-5dc7efdfd946)
)
(junction (at 201.93 130.81) (diameter 0) (color 0 0 0 0)
(uuid 76b4927e-1a31-415d-9cdf-35fe92bd52a9)
)
(junction (at 74.93 207.01) (diameter 0) (color 0 0 0 0)
(uuid 76cf28f6-af06-4e36-85cd-04157895ab51)
)
(junction (at 383.54 191.77) (diameter 0) (color 0 0 0 0)
(uuid 7a3dec34-d273-47ce-9eec-03f715096af2)
)
(junction (at 227.33 168.91) (diameter 0) (color 0 0 0 0)
(uuid 7a74d2df-9b6c-49c8-94b6-53ec28d1fef6)
)
(junction (at 332.74 147.32) (diameter 0) (color 0 0 0 0)
(uuid 7c62c0d7-c2c4-445e-89d4-cb1bc152606a)
)
(junction (at 104.14 147.32) (diameter 0) (color 0 0 0 0)
(uuid 7e1fdd61-3dab-4bb8-8fc8-6b31f46fa818)
)
(junction (at 49.53 92.71) (diameter 0) (color 0 0 0 0)
(uuid 82379ccb-f245-4bdd-b2e2-a434f5a69c26)
)
(junction (at 332.74 185.42) (diameter 0) (color 0 0 0 0)
(uuid 8357418e-c61b-44a7-adb5-b600eed14b1b)
)
(junction (at 176.53 92.71) (diameter 0) (color 0 0 0 0)
(uuid 88dc66db-5dfc-4f2b-98fb-9ca162125919)
)
(junction (at 201.93 92.71) (diameter 0) (color 0 0 0 0)
(uuid 893b667f-8bc5-44b2-8a1a-26cd18ff607e)
)
(junction (at 151.13 92.71) (diameter 0) (color 0 0 0 0)
(uuid 896c777a-c7a4-4382-974f-b70b007a6140)
)
(junction (at 125.73 130.81) (diameter 0) (color 0 0 0 0)
(uuid 89cc961b-9573-4f75-8003-77dd1732091a)
)
(junction (at 252.73 130.81) (diameter 0) (color 0 0 0 0)
(uuid 8aa0a46e-d430-433e-9137-68ebfa8808db)
)
(junction (at 78.74 147.32) (diameter 0) (color 0 0 0 0)
(uuid 8b9e7da7-1988-4bd6-8797-5cd9ac8a6186)
)
(junction (at 104.14 226.06) (diameter 0) (color 0 0 0 0)
(uuid 8bafeef5-a98f-480f-aa49-0acf11fdddba)
)
(junction (at 49.53 54.61) (diameter 0) (color 0 0 0 0)
(uuid 8ec46c75-9dc8-4969-849e-1b5cd41e6313)
)
(junction (at 383.54 226.06) (diameter 0) (color 0 0 0 0)
(uuid 90e35701-d66e-43cf-b648-c6c2fbf496a7)
)
(junction (at 104.14 185.42) (diameter 0) (color 0 0 0 0)
(uuid 93a78fef-c6d8-4053-a440-1caab7ddce73)
)
(junction (at 303.53 54.61) (diameter 0) (color 0 0 0 0)
(uuid 93d03f7f-a121-4f70-97a1-5e464406bf47)
)
(junction (at 281.94 185.42) (diameter 0) (color 0 0 0 0)
(uuid 93e095d6-3456-4114-9ba0-89e10584b0b5)
)
(junction (at 328.93 54.61) (diameter 0) (color 0 0 0 0)
(uuid 94e1fa25-dcd1-43e9-81f0-e8bd5fc1e45f)
)
(junction (at 281.94 109.22) (diameter 0) (color 0 0 0 0)
(uuid 96ad61ad-1207-43ce-98f6-d31f73448ba5)
)
(junction (at 125.73 168.91) (diameter 0) (color 0 0 0 0)
(uuid 97762460-ea07-40d2-aee8-bf280eefc31f)
)
(junction (at 151.13 54.61) (diameter 0) (color 0 0 0 0)
(uuid 9a4b2802-1163-4a0a-a978-88ba468b4a2c)
)
(junction (at 231.14 185.42) (diameter 0) (color 0 0 0 0)
(uuid 9cee777d-417e-4cde-96bd-2e3219cf42b4)
)
(junction (at 379.73 207.01) (diameter 0) (color 0 0 0 0)
(uuid 9f93f28f-e06a-4bb0-9be9-58497740760d)
)
(junction (at 281.94 147.32) (diameter 0) (color 0 0 0 0)
(uuid a2d1a593-fdc8-4e24-bc41-52e42f81252e)
)
(junction (at 53.34 149.86) (diameter 0) (color 0 0 0 0)
(uuid a9ee7ff3-a049-4553-8abf-ee7254181def)
)
(junction (at 307.34 71.12) (diameter 0) (color 0 0 0 0)
(uuid adbab069-c20c-4a7b-9b64-62db8b699951)
)
(junction (at 104.14 71.12) (diameter 0) (color 0 0 0 0)
(uuid b0911b5c-b7d6-4e86-b141-76e1532832b6)
)
(junction (at 151.13 130.81) (diameter 0) (color 0 0 0 0)
(uuid b266a116-e114-491d-986a-da05bf432fd1)
)
(junction (at 154.94 147.32) (diameter 0) (color 0 0 0 0)
(uuid b3bb71f1-3b27-4011-9a3b-9459eb382186)
)
(junction (at 201.93 54.61) (diameter 0) (color 0 0 0 0)
(uuid b4bef20f-83d4-43ee-82cc-62787ad4f1d4)
)
(junction (at 129.54 71.12) (diameter 0) (color 0 0 0 0)
(uuid b96b5335-1eee-4af6-b726-f0888ee2205e)
)
(junction (at 358.14 109.22) (diameter 0) (color 0 0 0 0)
(uuid bad94db9-78c6-43fa-8bd0-6ca9ffd8f014)
)
(junction (at 180.34 185.42) (diameter 0) (color 0 0 0 0)
(uuid bbb0ff29-b9d8-4ec3-8954-c4fd8fe72fdc)
)
(junction (at 53.34 187.96) (diameter 0) (color 0 0 0 0)
(uuid bd07272c-6efb-4fbc-8878-d360be405d61)
)
(junction (at 125.73 54.61) (diameter 0) (color 0 0 0 0)
(uuid be5c342a-e41f-4253-a0f2-f8d7c5c65c84)
)
(junction (at 278.13 130.81) (diameter 0) (color 0 0 0 0)
(uuid c1cfbf15-a219-4df4-9f0f-f7cc7de85bb7)
)
(junction (at 78.74 71.12) (diameter 0) (color 0 0 0 0)
(uuid c227a04e-645d-47ca-ae57-598e6ae2ba32)
)
(junction (at 332.74 229.87) (diameter 0) (color 0 0 0 0)
(uuid c7ccae90-eb03-4e88-a020-175de1a9485f)
)
(junction (at 151.13 168.91) (diameter 0) (color 0 0 0 0)
(uuid cb65ca93-b4f1-4216-9c4e-7f8d51f5ee8e)
)
(junction (at 78.74 229.87) (diameter 0) (color 0 0 0 0)
(uuid ccd392da-1eb0-49b3-bbdc-da35b9b676b5)
)
(junction (at 379.73 130.81) (diameter 0) (color 0 0 0 0)
(uuid cd6a079c-4966-4204-8ec6-2c95c2edcff8)
)
(junction (at 328.93 130.81) (diameter 0) (color 0 0 0 0)
(uuid ce4ff362-7cbf-4e3a-a864-a5728c81b23e)
)
(junction (at 256.54 147.32) (diameter 0) (color 0 0 0 0)
(uuid d19ae056-e54f-4c63-b8f8-54dd0f57ef5a)
)
(junction (at 358.14 226.06) (diameter 0) (color 0 0 0 0)
(uuid d40b638e-99ef-4092-bd7c-64ed9d9ef9b0)
)
(junction (at 231.14 109.22) (diameter 0) (color 0 0 0 0)
(uuid d451a182-37d9-41e5-9bd3-c95917a82c5f)
)
(junction (at 74.93 54.61) (diameter 0) (color 0 0 0 0)
(uuid d4ab0621-d191-486d-abb8-f775fe5c1a3a)
)
(junction (at 354.33 92.71) (diameter 0) (color 0 0 0 0)
(uuid d8796c0d-f147-4de5-8cbf-556e8408fdb9)
)
(junction (at 176.53 130.81) (diameter 0) (color 0 0 0 0)
(uuid d8ccb23d-03cd-45b1-b535-c8016706ceb9)
)
(junction (at 354.33 207.01) (diameter 0) (color 0 0 0 0)
(uuid dbb9f067-ce42-4292-b3ef-3f5239ecb73f)
)
(junction (at 74.93 130.81) (diameter 0) (color 0 0 0 0)
(uuid de5bbdde-619a-49c2-8d05-c8d6bbad8a76)
)
(junction (at 74.93 92.71) (diameter 0) (color 0 0 0 0)
(uuid df3690aa-580a-46f4-9255-a643b6fd854d)
)
(junction (at 307.34 226.06) (diameter 0) (color 0 0 0 0)
(uuid e030ce45-5e8f-4a64-a6c4-28c7fe8c775a)
)
(junction (at 129.54 185.42) (diameter 0) (color 0 0 0 0)
(uuid e0bec10b-1663-4b0d-8dfb-cf24faddd619)
)
(junction (at 332.74 71.12) (diameter 0) (color 0 0 0 0)
(uuid e1a1b13c-6e7c-4147-8c64-1391efe0815f)
)
(junction (at 307.34 185.42) (diameter 0) (color 0 0 0 0)
(uuid e2d72262-fd8a-4285-84d2-4675381bdaf5)
)
(junction (at 100.33 92.71) (diameter 0) (color 0 0 0 0)
(uuid e4849e22-3324-4711-bbc4-baaeb9d96e1f)
)
(junction (at 278.13 92.71) (diameter 0) (color 0 0 0 0)
(uuid e4a59464-1373-4c63-b566-1c9e7aad5813)
)
(junction (at 256.54 109.22) (diameter 0) (color 0 0 0 0)
(uuid e54a3caf-1ca4-4bd1-be0d-299c0d58b098)
)
(junction (at 358.14 71.12) (diameter 0) (color 0 0 0 0)
(uuid edf2c1db-7c35-42cd-aa41-031d424b15f1)
)
(junction (at 379.73 54.61) (diameter 0) (color 0 0 0 0)
(uuid effd76ec-9054-4ca0-9014-38ba5f6eb7ca)
)
(junction (at 154.94 109.22) (diameter 0) (color 0 0 0 0)
(uuid f08b5f7d-f9ed-4656-8057-e6ff391762d6)
)
(junction (at 100.33 130.81) (diameter 0) (color 0 0 0 0)
(uuid f2f38c07-d47c-465b-8ede-e064ead71080)
)
(junction (at 252.73 92.71) (diameter 0) (color 0 0 0 0)
(uuid f418054d-b05f-43dd-85a3-5f2373d1b7a7)
)
(junction (at 231.14 147.32) (diameter 0) (color 0 0 0 0)
(uuid f41d1dfe-baa1-4e1b-b71d-3d2b2ef6de02)
)
(junction (at 252.73 168.91) (diameter 0) (color 0 0 0 0)
(uuid f4375944-c7b8-4c1d-bb5d-23a155354879)
)
(junction (at 281.94 71.12) (diameter 0) (color 0 0 0 0)
(uuid f5935ffb-89a3-4827-9ebb-a682c0be928c)
)
(junction (at 231.14 71.12) (diameter 0) (color 0 0 0 0)
(uuid f728d25f-ac40-4b51-bf52-a7b48d4e08f6)
)
(junction (at 180.34 109.22) (diameter 0) (color 0 0 0 0)
(uuid f8d7623b-f099-44c3-b0d8-cf09e63f5105)
)
(junction (at 205.74 185.42) (diameter 0) (color 0 0 0 0)
(uuid fcaee12e-21e8-4832-aab7-f9762eff5c10)
)
(junction (at 328.93 207.01) (diameter 0) (color 0 0 0 0)
(uuid fdc73e4e-0e34-41dd-9a2b-eddd25c537a5)
)
(wire (pts (xy 90.17 60.96) (xy 90.17 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 000247d5-32a4-4b11-a483-6f4e5cbaeb3a)
)
(wire (pts (xy 379.73 130.81) (xy 393.7 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00056f21-97b7-49c8-a19d-377ef209e808)
)
(wire (pts (xy 154.94 34.29) (xy 154.94 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00d04db9-482f-414b-add6-a3ae0b78e81e)
)
(wire (pts (xy 180.34 71.12) (xy 180.34 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01601afd-7338-4397-b19a-8fb4cef35fa7)
)
(wire (pts (xy 217.17 71.12) (xy 218.44 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 021af521-1e5e-4d9b-87b4-1cba05214f67)
)
(wire (pts (xy 293.37 60.96) (xy 293.37 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 022979e7-46d1-41ab-8cd6-fb6f870399db)
)
(wire (pts (xy 154.94 71.12) (xy 154.94 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02a75546-f0c1-4b1e-a9e1-9b6c814fbe88)
)
(wire (pts (xy 330.2 229.87) (xy 332.74 229.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03eb7b23-19ff-47ec-8ce7-d9d49cbcaf88)
)
(wire (pts (xy 228.6 185.42) (xy 231.14 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04380f3c-9eb6-4b1c-9a5f-43728a3bd90f)
)
(wire (pts (xy 381 109.22) (xy 383.54 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04605188-8ffc-48d9-9b3a-2e3c82120e16)
)
(wire (pts (xy 140.97 147.32) (xy 142.24 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04a350df-87d3-470f-974c-e57463ddea62)
)
(wire (pts (xy 354.33 92.71) (xy 354.33 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0539eeb5-4f14-4564-9cec-d8bcd513a845)
)
(wire (pts (xy 100.33 130.81) (xy 100.33 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0600ba15-b50d-402e-b18c-a873a788a25c)
)
(wire (pts (xy 383.54 72.39) (xy 383.54 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 060cb862-e92a-42c3-aeae-d6cd4d944202)
)
(wire (pts (xy 217.17 99.06) (xy 217.17 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 065b1268-3508-4a60-a5f6-ab715bf63ca7)
)
(wire (pts (xy 76.2 229.87) (xy 78.74 229.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06701544-2542-4ddb-853c-ab3a6bc3c657)
)
(wire (pts (xy 227.33 54.61) (xy 252.73 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 070563c6-e23e-41e7-a8d5-f1af827bdfba)
)
(wire (pts (xy 307.34 71.12) (xy 307.34 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 088f1e34-7711-4736-9919-5b21a5557844)
)
(wire (pts (xy 379.73 92.71) (xy 393.7 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08bfce67-a1f5-42b3-a42f-fedd7686706b)
)
(wire (pts (xy 125.73 168.91) (xy 125.73 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09ac0bd9-e169-4e58-bc6f-63386f6af22f)
)
(wire (pts (xy 370.84 213.36) (xy 365.76 213.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a10fdfe-94c7-405a-abbf-25222e5ea7ef)
)
(wire (pts (xy 203.2 147.32) (xy 205.74 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ab38c39-0644-43f6-8f47-e9cfd70c3aff)
)
(wire (pts (xy 270.51 60.96) (xy 267.97 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ad9a349-6253-425a-ad28-0ba8031c2c5b)
)
(wire (pts (xy 191.77 185.42) (xy 193.04 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b9608e7-6563-4e70-b545-22d89b30c712)
)
(wire (pts (xy 295.91 175.26) (xy 293.37 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c8a21d4-9c4e-4408-b6b3-5103a5123fd4)
)
(wire (pts (xy 118.11 60.96) (xy 115.57 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c9407b9-cacd-45f3-a33c-67c7779eacc2)
)
(wire (pts (xy 90.17 137.16) (xy 90.17 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d80ef9e-00df-4636-8094-1162326a0580)
)
(wire (pts (xy 330.2 109.22) (xy 332.74 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e072025-f588-4bcb-ac21-e2756414f961)
)
(wire (pts (xy 318.77 147.32) (xy 320.04 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e2464d8-ccf5-4182-b44e-0cc7947050d9)
)
(wire (pts (xy 76.2 147.32) (xy 78.74 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e64968c-8951-45da-b8dc-8bc3d14d470c)
)
(wire (pts (xy 304.8 185.42) (xy 307.34 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0f77a499-d57b-4fc7-a55f-2efb0e612239)
)
(wire (pts (xy 118.11 175.26) (xy 115.57 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fe52ae7-617a-4496-b2a8-24f6943ee30b)
)
(wire (pts (xy 100.33 207.01) (xy 201.93 207.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1026e4d1-e229-47b4-90e3-adf86be10245)
)
(wire (pts (xy 35.56 220.98) (xy 38.1 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10795f86-a7dd-4dfe-89cc-8ed685f34ed0)
)
(wire (pts (xy 252.73 130.81) (xy 278.13 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 113683c1-8161-43d3-940f-65b4416db877)
)
(wire (pts (xy 381 191.77) (xy 383.54 191.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1145546e-6eb4-4911-b2c9-0dacfeac957f)
)
(wire (pts (xy 203.2 71.12) (xy 205.74 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 116aa38f-4b87-4dab-be1e-18992c30387d)
)
(wire (pts (xy 231.14 109.22) (xy 231.14 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 125ff307-290a-4095-be2d-9eecac489e28)
)
(wire (pts (xy 245.11 175.26) (xy 242.57 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 135e5e7e-5554-4605-84d0-fa59b87b4b34)
)
(wire (pts (xy 115.57 109.22) (xy 116.84 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1384952e-d58a-4e87-9b63-f46b28fe975f)
)
(wire (pts (xy 242.57 99.06) (xy 242.57 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13a34302-a81c-451e-8e29-da99fd26e2ad)
)
(wire (pts (xy 293.37 99.06) (xy 293.37 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15d88ab4-a8de-43e5-a67a-f2cc1b9759a5)
)
(wire (pts (xy 321.31 137.16) (xy 318.77 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 16db26d7-670a-4d36-a7f1-a02ce5df801c)
)
(wire (pts (xy 252.73 168.91) (xy 278.13 168.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1711c485-ebd0-4236-a70d-8dd4405f48bb)
)
(wire (pts (xy 383.54 226.06) (xy 383.54 245.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 175c21e9-0e4f-4517-9b11-8edb054646e1)
)
(wire (pts (xy 49.53 207.01) (xy 74.93 207.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 176264ef-c557-49ee-bfa8-a0012c26a5be)
)
(wire (pts (xy 332.74 147.32) (xy 332.74 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 177b8623-675a-4f26-8111-eec9916152de)
)
(wire (pts (xy 307.34 147.32) (xy 307.34 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 177cdcbe-1b5d-4552-bcc8-2bb737f8758b)
)
(wire (pts (xy 191.77 147.32) (xy 193.04 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17bce4f2-e478-4137-8baf-b1ecf3b07893)
)
(wire (pts (xy 25.4 92.71) (xy 49.53 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 183695e6-433e-47e8-bc02-cd8d8619326a)
)
(wire (pts (xy 90.17 109.22) (xy 91.44 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18397a36-b0ec-4182-aa70-26885fb7b986)
)
(wire (pts (xy 278.13 54.61) (xy 303.53 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1882e62e-82c8-4fe2-bd62-ff0ef3ebbce6)
)
(wire (pts (xy 231.14 147.32) (xy 231.14 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18eb2472-f173-4a98-966e-7bfb9b99e187)
)
(wire (pts (xy 379.73 175.26) (xy 379.73 168.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19e07bcd-4f2b-4f4d-86dd-cae33c7b463e)
)
(wire (pts (xy 219.71 175.26) (xy 217.17 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19f759d2-8348-4074-b529-883a62dfb4bd)
)
(wire (pts (xy 53.34 149.86) (xy 53.34 187.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1aa58938-7b75-4833-8943-63d48f71562b)
)
(wire (pts (xy 330.2 185.42) (xy 332.74 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b4dafbe-9485-49de-bccc-f5784b31be07)
)
(wire (pts (xy 383.54 153.67) (xy 383.54 191.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b6f448a-cff8-454c-8635-1e3f2107fb60)
)
(wire (pts (xy 332.74 34.29) (xy 332.74 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c52311e-92e8-4d4e-beac-c41b442dceb9)
)
(wire (pts (xy 381 220.98) (xy 381 226.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dcffe6f-1f55-4fe6-83a8-419a7b6e1eb4)
)
(wire (pts (xy 379.73 92.71) (xy 379.73 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dd9e258-4da6-4cd8-be9b-ddebc196ee5a)
)
(wire (pts (xy 281.94 71.12) (xy 281.94 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e568654-2402-490c-936f-84e99ca4003c)
)
(wire (pts (xy 278.13 130.81) (xy 303.53 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 20ab9e4c-9352-49ec-a87b-0b7eb2613625)
)
(wire (pts (xy 267.97 71.12) (xy 269.24 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2104b05a-f0b3-4a31-8bed-009a5b8e94ee)
)
(wire (pts (xy 245.11 60.96) (xy 242.57 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 210c3149-267b-4a65-a60a-2f8733ea2b8a)
)
(wire (pts (xy 67.31 99.06) (xy 64.77 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 214c449c-721b-4a75-a2b6-273facb5b93a)
)
(wire (pts (xy 180.34 147.32) (xy 180.34 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 215dd50f-d448-4a63-b0d1-ba17cc4de90c)
)
(wire (pts (xy 176.53 168.91) (xy 201.93 168.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21f22051-e90b-476d-9333-3ce6be069aea)
)
(wire (pts (xy 194.31 99.06) (xy 191.77 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 220e0b19-306b-4663-8e25-d50f5c33e69e)
)
(wire (pts (xy 340.36 213.36) (xy 340.36 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2234d347-8c59-440c-a090-5d88e22024d1)
)
(wire (pts (xy 35.56 144.78) (xy 38.1 144.78))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 226d1fd4-6406-44a3-89b2-c80b4e252e1a)
)
(wire (pts (xy 193.04 213.36) (xy 185.42 213.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2296fd79-8802-44a1-a395-a251feb99600)
)
(wire (pts (xy 104.14 109.22) (xy 104.14 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2341c3f8-ffca-431c-89be-49d51f420ed3)
)
(wire (pts (xy 332.74 71.12) (xy 332.74 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23c1d04d-3878-4171-b181-ed57aa02378a)
)
(wire (pts (xy 143.51 60.96) (xy 140.97 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 23c26df2-a0e9-4a77-8e03-4d133ee84221)
)
(wire (pts (xy 378.46 220.98) (xy 381 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2468f297-0378-43c8-a807-34264c8b6cc2)
)
(wire (pts (xy 321.31 99.06) (xy 318.77 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2528b4b1-d2e7-49cb-ac3e-ef2f7dcdf03f)
)
(wire (pts (xy 168.91 60.96) (xy 166.37 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 254d524c-7b21-46f1-9a31-7f76613db475)
)
(wire (pts (xy 328.93 130.81) (xy 379.73 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25cbe526-ca8b-4268-9e01-12dca7ff3586)
)
(wire (pts (xy 318.77 137.16) (xy 318.77 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 25cf57a0-aae8-4489-b83b-2db60b24a186)
)
(wire (pts (xy 64.77 71.12) (xy 66.04 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 261a2015-9ec2-4fe5-9aa4-a826a84a450d)
)
(wire (pts (xy 372.11 99.06) (xy 369.57 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 262160c2-c995-48c0-a0c4-cece50b5a6b1)
)
(wire (pts (xy 129.54 185.42) (xy 129.54 245.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 262a7223-13c4-46d2-9858-ed65bcb073b9)
)
(wire (pts (xy 254 109.22) (xy 256.54 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26ac38b1-d244-4b0c-988f-7e105e5d977f)
)
(wire (pts (xy 176.53 54.61) (xy 201.93 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 26d941a9-727d-4a82-8db8-b3639933b3e7)
)
(wire (pts (xy 78.74 71.12) (xy 78.74 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 280eda2d-eb4d-4d4a-a331-d91cf66f0715)
)
(wire (pts (xy 383.54 34.29) (xy 383.54 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28e641f8-7123-409f-9c2e-fceab319899d)
)
(wire (pts (xy 217.17 60.96) (xy 217.17 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2d117e01-ebb9-414d-912a-1eb2e522d794)
)
(wire (pts (xy 307.34 226.06) (xy 307.34 245.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e0d0b56-5fd8-42e8-8682-3d598eaf7b82)
)
(wire (pts (xy 180.34 185.42) (xy 180.34 245.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e0f6e36-22e3-4364-8b53-e27c38319603)
)
(wire (pts (xy 303.53 92.71) (xy 328.93 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f3185d1-071b-4a22-ad84-d41d2d8aeb00)
)
(wire (pts (xy 383.54 109.22) (xy 383.54 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f4455d2-05bc-4170-b2a1-0ef7f5a377f3)
)
(wire (pts (xy 217.17 147.32) (xy 218.44 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2f8bcd79-a340-4058-b020-cfb712b89711)
)
(wire (pts (xy 231.14 71.12) (xy 231.14 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3023f5eb-12e1-4e8e-b81a-3cfdcf6df885)
)
(wire (pts (xy 252.73 54.61) (xy 278.13 54.61))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30d157f2-e86b-44f0-91ab-26a710216057)
)
(wire (pts (xy 252.73 130.81) (xy 252.73 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30fe90cc-e8e0-4836-9016-afc9928df857)
)
(wire (pts (xy 177.8 109.22) (xy 180.34 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 310c605b-9a65-4b30-8fdd-45c21ca19873)
)
(wire (pts (xy 245.11 137.16) (xy 242.57 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32458be8-a787-4b74-97cc-4cd304cabb4a)
)
(wire (pts (xy 217.17 175.26) (xy 217.17 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 327555c3-1a1e-4820-8247-0f9f0c3333e0)
)
(wire (pts (xy 104.14 34.29) (xy 104.14 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3312954a-63e4-4995-a364-3db268d2f10f)
)
(wire (pts (xy 74.93 54.61) (xy 74.93 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33c46541-8aef-4e72-b770-b2c210916129)
)
(wire (pts (xy 281.94 147.32) (xy 281.94 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33e48308-9b44-49c8-89d7-a89549cebecf)
)
(wire (pts (xy 140.97 109.22) (xy 142.24 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33f34446-2911-45e3-ba6b-786d99a9182e)
)
(wire (pts (xy 256.54 109.22) (xy 256.54 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34c4ccdf-9282-454f-b8d2-72f15189b903)
)
(wire (pts (xy 242.57 175.26) (xy 242.57 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34c7a264-56c1-4750-b2b4-e8740d4dc103)
)
(wire (pts (xy 198.12 219.71) (xy 203.2 219.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34ed38d4-f336-4c57-a4e8-84dcfab51ab7)
)
(wire (pts (xy 73.66 213.36) (xy 74.93 213.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 352d4f44-4c80-4522-8b83-9f140b90b0f1)
)
(wire (pts (xy 363.22 143.51) (xy 365.76 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 35b953df-65de-4f6a-8a11-b5f021ba280a)
)
(wire (pts (xy 353.06 220.98) (xy 355.6 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36345414-230d-48b9-ba0e-936110e7257b)
)
(wire (pts (xy 242.57 185.42) (xy 243.84 185.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36d3db3a-7abb-4741-86e2-b030050e4cd9)
)
(wire (pts (xy 278.13 92.71) (xy 303.53 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 37ff8818-1440-4fd1-8055-e0cc575b4219)
)
(wire (pts (xy 191.77 137.16) (xy 191.77 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39ae012c-555e-4c17-a625-c92b6c5e5309)
)
(wire (pts (xy 201.93 54.61) (xy 201.93 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39e58f15-cc64-4d53-9d03-71c06d6ca2e5)
)
(wire (pts (xy 41.91 60.96) (xy 39.37 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a8616fc-0569-4a1a-9dd1-50d8e0badba4)
)
(wire (pts (xy 180.34 34.29) (xy 180.34 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3aaf5dbe-061a-4f3d-b6d3-bad7612e355b)
)
(wire (pts (xy 99.06 213.36) (xy 100.33 213.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3abc85ae-27a4-4546-94a8-908850a3cf79)
)
(wire (pts (xy 242.57 109.22) (xy 243.84 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b70ea7e-5ebc-4602-877b-60d822abbb66)
)
(wire (pts (xy 289.56 220.98) (xy 292.1 220.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3bbd2e6f-1770-4f08-a894-eeea16c45fde)
)
(wire (pts (xy 345.44 213.36) (xy 340.36 213.36))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d6c32d9-cdd9-4fe4-acde-de912e8d78c7)
)
(wire (pts (xy 74.93 92.71) (xy 74.93 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f22b40c-6cc2-4485-9e89-3d85cfc0c09c)
)
(wire (pts (xy 201.93 168.91) (xy 201.93 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3f4c19e1-059e-4a14-9d2a-a95d9c5b906d)
)
(wire (pts (xy 231.14 185.42) (xy 231.14 245.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40201a83-d8af-464b-9718-d7364363cdb7)
)
(wire (pts (xy 227.33 168.91) (xy 227.33 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 40b574e3-6fe9-4be2-9001-94dec936bf59)
)
(wire (pts (xy 231.14 34.29) (xy 231.14 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4127ff65-c07e-456d-8e3a-3820092df5ae)
)
(wire (pts (xy 295.91 137.16) (xy 293.37 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 418f64e1-f4e5-4c4a-a9ca-ee876184760a)
)
(wire (pts (xy 281.94 109.22) (xy 281.94 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41aefd36-cc88-4305-b5b6-68fc8a37c306)
)
(wire (pts (xy 168.91 137.16) (xy 166.37 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41c2bcf4-a45f-4043-a2ab-be25e8e6ce39)
)
(wire (pts (xy 177.8 185.42) (xy 180.34 185.42))