-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathled-ring-with-crossbar.kicad_sch
5164 lines (5033 loc) · 204 KB
/
led-ring-with-crossbar.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 4e66a44f-7fa6-4e16-bf9b-62ec864301a5)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x04_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04_Male" (id 1) (at 0 -7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_Male_1_1"
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 2.54 180) (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 0 180) (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 180) (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 -5.08 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(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 "LED:APA102" (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 5.08 5.715 0)
(effects (font (size 1.27 1.27)) (justify right bottom))
)
(property "Value" "APA102" (id 1) (at 1.27 -5.715 0)
(effects (font (size 1.27 1.27)) (justify left top))
)
(property "Footprint" "LED_SMD:LED_RGB_5050-6" (id 2) (at 1.27 -7.62 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "Datasheet" "http://www.led-color.com/upload/201506/APA102%20LED.pdf" (id 3) (at 2.54 -9.525 0)
(effects (font (size 1.27 1.27)) (justify left top) hide)
)
(property "ki_keywords" "RGB LED addressable 8bit pwm 5bit greyscale" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "RGB LED with integrated controller" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "LED*RGB*5050*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "APA102_0_0"
(text "RGB" (at 2.286 -4.191 0)
(effects (font (size 0.762 0.762)))
)
)
(symbol "APA102_0_1"
(polyline
(pts
(xy 1.27 -3.556)
(xy 1.778 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 1.778 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -3.556)
(xy 2.667 -3.556)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -2.54)
(xy 1.27 -3.556)
(xy 1.27 -3.048)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.524)
(xy 1.27 -2.54)
(xy 1.27 -2.032)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 3.683 -1.016)
(xy 3.683 -3.556)
(xy 3.683 -4.064)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 4.699 -1.524)
(xy 2.667 -1.524)
(xy 3.683 -3.556)
(xy 4.699 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 5.08 5.08) (end -5.08 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "APA102_1_1"
(pin input line (at -7.62 2.54 0) (length 2.54)
(name "DI" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 2.54)
(name "CI" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 0 180) (length 2.54)
(name "CO" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output line (at 7.62 2.54 180) (length 2.54)
(name "DO" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (id 0) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (id 1) (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_0_1"
(circle (center 0 0) (radius 1.27)
(stroke (width 1.27) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (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) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(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" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (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" (id 5) (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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (id 1) (at 0 3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
)
(junction (at 124.46 49.53) (diameter 0) (color 0 0 0 0)
(uuid 00f3ea8b-8a54-4e56-84ff-d98f6c00496c)
)
(junction (at 148.59 129.54) (diameter 0) (color 0 0 0 0)
(uuid 01f82238-6335-48fe-8b0a-6853e227345a)
)
(junction (at 80.01 140.97) (diameter 0) (color 0 0 0 0)
(uuid 02538207-54a8-4266-8d51-23871852b2ff)
)
(junction (at 140.97 49.53) (diameter 0) (color 0 0 0 0)
(uuid 0520f61d-4522-4301-a3fa-8ed0bf060f69)
)
(junction (at 173.99 41.91) (diameter 0) (color 0 0 0 0)
(uuid 0554bea0-89b2-4e25-9ea3-4c73921c94cb)
)
(junction (at 157.48 83.82) (diameter 0) (color 0 0 0 0)
(uuid 05f2859d-2820-4e84-b395-696011feb13b)
)
(junction (at 87.63 151.13) (diameter 0) (color 0 0 0 0)
(uuid 0b4c0f05-c855-4742-bad2-dbf645d5842b)
)
(junction (at 25.4 41.91) (diameter 0) (color 0 0 0 0)
(uuid 0ba17a9b-d889-426c-b4fe-048bed6b6be8)
)
(junction (at 223.52 49.53) (diameter 0) (color 0 0 0 0)
(uuid 0ceb97d6-1b0f-4b71-921e-b0955c30c998)
)
(junction (at 156.21 118.11) (diameter 0) (color 0 0 0 0)
(uuid 0fc5db66-6188-4c1f-bb14-0868bef113eb)
)
(junction (at 240.03 49.53) (diameter 0) (color 0 0 0 0)
(uuid 12a24e86-2c38-4685-bba9-fff8dddb4cb0)
)
(junction (at 240.03 41.91) (diameter 0) (color 0 0 0 0)
(uuid 13ac70df-e9b9-44e5-96e6-20f0b0dc6a3a)
)
(junction (at 140.97 118.11) (diameter 0) (color 0 0 0 0)
(uuid 14094ad2-b562-4efa-8c6f-51d7a3134345)
)
(junction (at 72.39 128.27) (diameter 0) (color 0 0 0 0)
(uuid 15fe8f3d-6077-4e0e-81d0-8ec3f4538981)
)
(junction (at 223.52 67.31) (diameter 0) (color 0 0 0 0)
(uuid 1bdd5841-68b7-42e2-9447-cbdb608d8a08)
)
(junction (at 64.77 140.97) (diameter 0) (color 0 0 0 0)
(uuid 1c9f6fea-1796-4a2d-80b3-ae22ce51c8f5)
)
(junction (at 80.01 139.7) (diameter 0) (color 0 0 0 0)
(uuid 1cb22080-0f59-4c18-a6e6-8685ef44ec53)
)
(junction (at 140.97 101.6) (diameter 0) (color 0 0 0 0)
(uuid 1e48966e-d29d-4521-8939-ec8ac570431d)
)
(junction (at 156.21 139.7) (diameter 0) (color 0 0 0 0)
(uuid 212bf70c-2324-47d9-8700-59771063baeb)
)
(junction (at 49.53 151.13) (diameter 0) (color 0 0 0 0)
(uuid 21492bcd-343a-4b2b-b55a-b4586c11bdeb)
)
(junction (at 157.48 41.91) (diameter 0) (color 0 0 0 0)
(uuid 22962957-1efd-404d-83db-5b233b6c15b0)
)
(junction (at 124.46 101.6) (diameter 0) (color 0 0 0 0)
(uuid 24b72b0d-63b8-4e06-89d0-e94dcf39a600)
)
(junction (at 102.87 151.13) (diameter 0) (color 0 0 0 0)
(uuid 2518d4ea-25cc-4e57-a0d6-8482034e7318)
)
(junction (at 190.5 41.91) (diameter 0) (color 0 0 0 0)
(uuid 29126f72-63f7-4275-8b12-6b96a71c6f17)
)
(junction (at 74.93 41.91) (diameter 0) (color 0 0 0 0)
(uuid 29cbb0bc-f66b-4d11-80e7-5bb270e42496)
)
(junction (at 125.73 129.54) (diameter 0) (color 0 0 0 0)
(uuid 2f291a4b-4ecb-4692-9ad2-324f9784c0d4)
)
(junction (at 58.42 101.6) (diameter 0) (color 0 0 0 0)
(uuid 3172f2e2-18d2-4a80-ae30-5707b3409798)
)
(junction (at 110.49 129.54) (diameter 0) (color 0 0 0 0)
(uuid 319639ae-c2c5-486d-93b1-d03bb1b64252)
)
(junction (at 72.39 139.7) (diameter 0) (color 0 0 0 0)
(uuid 31f91ec8-56e4-4e08-9ccd-012652772211)
)
(junction (at 110.49 139.7) (diameter 0) (color 0 0 0 0)
(uuid 34c0bee6-7425-4435-8857-d1fe8dfb6d89)
)
(junction (at 125.73 139.7) (diameter 0) (color 0 0 0 0)
(uuid 363945f6-fbef-42be-99cf-4a8a48434d92)
)
(junction (at 133.35 139.7) (diameter 0) (color 0 0 0 0)
(uuid 386ad9e3-71fa-420f-8722-88548b024fc5)
)
(junction (at 57.15 139.7) (diameter 0) (color 0 0 0 0)
(uuid 3e57b728-64e6-4470-8f27-a43c0dd85050)
)
(junction (at 58.42 41.91) (diameter 0) (color 0 0 0 0)
(uuid 3ed2c840-383d-4cbd-bc3b-c4ea4c97b333)
)
(junction (at 207.01 49.53) (diameter 0) (color 0 0 0 0)
(uuid 3f43d730-2a73-49fe-9672-32428e7f5b49)
)
(junction (at 74.93 67.31) (diameter 0) (color 0 0 0 0)
(uuid 42d3f9d6-2a47-41a8-b942-295fcb83bcd8)
)
(junction (at 223.52 24.13) (diameter 0) (color 0 0 0 0)
(uuid 42ff012d-5eb7-42b9-bb45-415cf26799c6)
)
(junction (at 118.11 128.27) (diameter 0) (color 0 0 0 0)
(uuid 443bc73a-8dc0-4e2f-a292-a5eff00efa5b)
)
(junction (at 58.42 49.53) (diameter 0) (color 0 0 0 0)
(uuid 479331ff-c540-41f4-84e6-b48d65171e59)
)
(junction (at 140.97 129.54) (diameter 0) (color 0 0 0 0)
(uuid 4bbde53d-6894-4e18-9480-84a6a26d5f6b)
)
(junction (at 223.52 41.91) (diameter 0) (color 0 0 0 0)
(uuid 4cc0e615-05a0-4f42-a208-4011ba8ef841)
)
(junction (at 74.93 49.53) (diameter 0) (color 0 0 0 0)
(uuid 4d586a18-26c5-441e-a9ff-8125ee516126)
)
(junction (at 41.91 101.6) (diameter 0) (color 0 0 0 0)
(uuid 51c4dc0a-5b9f-4edf-a83f-4a12881e42ef)
)
(junction (at 95.25 129.54) (diameter 0) (color 0 0 0 0)
(uuid 52a8f1be-73ca-41a8-bc24-2320706b0ec1)
)
(junction (at 156.21 128.27) (diameter 0) (color 0 0 0 0)
(uuid 59cb2966-1e9c-4b3b-b3c8-7499378d8dde)
)
(junction (at 140.97 139.7) (diameter 0) (color 0 0 0 0)
(uuid 5d49e9a6-41dd-4072-adde-ef1036c1979b)
)
(junction (at 64.77 139.7) (diameter 0) (color 0 0 0 0)
(uuid 5e7c3a32-8dda-4e6a-9838-c94d1f165575)
)
(junction (at 95.25 140.97) (diameter 0) (color 0 0 0 0)
(uuid 5f38bdb2-3657-474e-8e86-d6bb0b298110)
)
(junction (at 87.63 139.7) (diameter 0) (color 0 0 0 0)
(uuid 616287d9-a51f-498c-8b91-be46a0aa3a7f)
)
(junction (at 190.5 67.31) (diameter 0) (color 0 0 0 0)
(uuid 61fe4c73-be59-4519-98f1-a634322a841d)
)
(junction (at 118.11 129.54) (diameter 0) (color 0 0 0 0)
(uuid 62a1f3d4-027d-4ecf-a37a-6fcf4263e9d2)
)
(junction (at 110.49 118.11) (diameter 0) (color 0 0 0 0)
(uuid 62e8c4d4-266c-4e53-8981-1028251d724c)
)
(junction (at 256.54 41.91) (diameter 0) (color 0 0 0 0)
(uuid 631c7be5-8dc2-4df4-ab73-737bb928e763)
)
(junction (at 133.35 128.27) (diameter 0) (color 0 0 0 0)
(uuid 633292d3-80c5-4986-be82-ce926e9f09f4)
)
(junction (at 256.54 67.31) (diameter 0) (color 0 0 0 0)
(uuid 66218487-e316-4467-9eba-79d4626ab24e)
)
(junction (at 91.44 101.6) (diameter 0) (color 0 0 0 0)
(uuid 67621f9e-0a6a-4778-ad69-04dcf300659c)
)
(junction (at 157.48 67.31) (diameter 0) (color 0 0 0 0)
(uuid 70e4263f-d95a-4431-b3f3-cfc800c82056)
)
(junction (at 110.49 151.13) (diameter 0) (color 0 0 0 0)
(uuid 71af7b65-0e6b-402e-b1a4-b66be507b4dc)
)
(junction (at 41.91 41.91) (diameter 0) (color 0 0 0 0)
(uuid 7233cb6b-d8fd-4fcd-9b4f-8b0ed19b1b12)
)
(junction (at 240.03 24.13) (diameter 0) (color 0 0 0 0)
(uuid 72508b1f-1505-46cb-9d37-2081c5a12aca)
)
(junction (at 25.4 49.53) (diameter 0) (color 0 0 0 0)
(uuid 72b36951-3ec7-4569-9c88-cf9b4afe1cae)
)
(junction (at 72.39 140.97) (diameter 0) (color 0 0 0 0)
(uuid 73fbe87f-3928-49c2-bf87-839d907c6aef)
)
(junction (at 133.35 118.11) (diameter 0) (color 0 0 0 0)
(uuid 74f5ec08-7600-4a0b-a9e4-aae29f9ea08a)
)
(junction (at 207.01 67.31) (diameter 0) (color 0 0 0 0)
(uuid 78b44915-d68e-4488-a873-34767153ef98)
)
(junction (at 58.42 83.82) (diameter 0) (color 0 0 0 0)
(uuid 78cbdd6c-4878-4cc5-9a58-0e506478e37d)
)
(junction (at 157.48 49.53) (diameter 0) (color 0 0 0 0)
(uuid 795e68e2-c9ba-45cf-9bff-89b8fae05b5a)
)
(junction (at 95.25 128.27) (diameter 0) (color 0 0 0 0)
(uuid 7c411b3e-aca2-424f-b644-2d21c9d80fa7)
)
(junction (at 118.11 139.7) (diameter 0) (color 0 0 0 0)
(uuid 7c5f3091-7791-43b3-8d50-43f6a72274c9)
)
(junction (at 41.91 24.13) (diameter 0) (color 0 0 0 0)
(uuid 7e023245-2c2b-4e2b-bfb9-5d35176e88f2)
)
(junction (at 102.87 139.7) (diameter 0) (color 0 0 0 0)
(uuid 7f2b3ce3-2f20-426d-b769-e0329b6a8111)
)
(junction (at 148.59 139.7) (diameter 0) (color 0 0 0 0)
(uuid 7f9683c1-2203-43df-8fa1-719a0dc360df)
)
(junction (at 256.54 24.13) (diameter 0) (color 0 0 0 0)
(uuid 802c2dc3-ca9f-491e-9d66-7893e89ac34c)
)
(junction (at 110.49 128.27) (diameter 0) (color 0 0 0 0)
(uuid 810ed4ff-ffe2-4032-9af6-fb5ada3bae5b)
)
(junction (at 64.77 128.27) (diameter 0) (color 0 0 0 0)
(uuid 82be7aae-5d06-4178-8c3e-98760c41b054)
)
(junction (at 157.48 101.6) (diameter 0) (color 0 0 0 0)
(uuid 844d7d7a-b386-45a8-aaf6-bf41bbcb43b5)
)
(junction (at 72.39 129.54) (diameter 0) (color 0 0 0 0)
(uuid 89a8e170-a222-41c0-b545-c9f4c5604011)
)
(junction (at 49.53 139.7) (diameter 0) (color 0 0 0 0)
(uuid 8aeae536-fd36-430e-be47-1a856eced2fc)
)
(junction (at 240.03 67.31) (diameter 0) (color 0 0 0 0)
(uuid 8b290a17-6328-4178-9131-29524d345539)
)
(junction (at 148.59 128.27) (diameter 0) (color 0 0 0 0)
(uuid 8b7bbefd-8f78-41f8-809c-2534a5de3b39)
)
(junction (at 49.53 129.54) (diameter 0) (color 0 0 0 0)
(uuid 8bd46048-cab7-4adf-af9a-bc2710c1894c)
)
(junction (at 87.63 118.11) (diameter 0) (color 0 0 0 0)
(uuid 8c0807a7-765b-4fa5-baaa-e09a2b610e6b)
)
(junction (at 91.44 83.82) (diameter 0) (color 0 0 0 0)
(uuid 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(junction (at 102.87 140.97) (diameter 0) (color 0 0 0 0)
(uuid 8f12311d-6f4c-4d28-a5bc-d6cb462bade7)
)
(junction (at 91.44 67.31) (diameter 0) (color 0 0 0 0)
(uuid 8fc062a7-114d-48eb-a8f8-71128838f380)
)
(junction (at 124.46 41.91) (diameter 0) (color 0 0 0 0)
(uuid 91fc5800-6029-46b1-848d-ca0091f97267)
)
(junction (at 49.53 118.11) (diameter 0) (color 0 0 0 0)
(uuid 92848721-49b5-4e4c-b042-6fd51e1d562f)
)
(junction (at 64.77 129.54) (diameter 0) (color 0 0 0 0)
(uuid 96db52e2-6336-4f5e-846e-528c594d0509)
)
(junction (at 110.49 140.97) (diameter 0) (color 0 0 0 0)
(uuid 98970bf0-1168-4b4e-a1c9-3b0c8d7eaacf)
)
(junction (at 74.93 101.6) (diameter 0) (color 0 0 0 0)
(uuid 98e81e80-1f85-4152-be3f-99785ea97751)
)
(junction (at 41.91 49.53) (diameter 0) (color 0 0 0 0)
(uuid 997c2f12-73ba-4c01-9ee0-42e37cbab790)
)
(junction (at 41.91 83.82) (diameter 0) (color 0 0 0 0)
(uuid 9ccf03e8-755a-4cd9-96fc-30e1d08fa253)
)
(junction (at 125.73 128.27) (diameter 0) (color 0 0 0 0)
(uuid a25b7e01-1754-4cc9-8a14-3d9c461e5af5)
)
(junction (at 57.15 128.27) (diameter 0) (color 0 0 0 0)
(uuid a6b7df29-bcf8-46a9-b623-7eaac47f5110)
)
(junction (at 124.46 24.13) (diameter 0) (color 0 0 0 0)
(uuid a7531a95-7ca1-4f34-955e-18120cec99e6)
)
(junction (at 140.97 83.82) (diameter 0) (color 0 0 0 0)
(uuid a8219a78-6b33-4efa-a789-6a67ce8f7a50)
)
(junction (at 25.4 67.31) (diameter 0) (color 0 0 0 0)
(uuid a917c6d9-225d-4c90-bf25-fe8eff8abd3f)
)
(junction (at 57.15 151.13) (diameter 0) (color 0 0 0 0)
(uuid aa047297-22f8-4de0-a969-0b3451b8e164)
)
(junction (at 91.44 24.13) (diameter 0) (color 0 0 0 0)
(uuid aca4de92-9c41-4c2b-9afa-540d02dafa1c)
)
(junction (at 80.01 118.11) (diameter 0) (color 0 0 0 0)
(uuid b0906e10-2fbc-4309-a8b4-6fc4cd1a5490)
)
(junction (at 107.95 49.53) (diameter 0) (color 0 0 0 0)
(uuid b52d6ff3-fef1-496e-8dd5-ebb89b6bce6a)
)
(junction (at 107.95 101.6) (diameter 0) (color 0 0 0 0)
(uuid b59f18ce-2e34-4b6e-b14d-8d73b8268179)
)
(junction (at 25.4 83.82) (diameter 0) (color 0 0 0 0)
(uuid b78cb2c1-ae4b-4d9b-acd8-d7fe342342f2)
)
(junction (at 64.77 151.13) (diameter 0) (color 0 0 0 0)
(uuid b7d06af4-a5b1-447f-9b1a-8b44eb1cc204)
)
(junction (at 140.97 128.27) (diameter 0) (color 0 0 0 0)
(uuid b854a395-bfc6-4140-9640-75d4f9296771)
)
(junction (at 256.54 49.53) (diameter 0) (color 0 0 0 0)
(uuid b8b961e9-8a60-45fc-999a-a7a3baff4e0d)
)
(junction (at 49.53 128.27) (diameter 0) (color 0 0 0 0)
(uuid bc3b3f93-69e0-44a5-b919-319b81d13095)
)
(junction (at 140.97 41.91) (diameter 0) (color 0 0 0 0)
(uuid bd085057-7c0e-463a-982b-968a2dc1f0f8)
)
(junction (at 102.87 118.11) (diameter 0) (color 0 0 0 0)
(uuid bd793ae5-cde5-43f6-8def-1f95f35b1be6)
)
(junction (at 57.15 118.11) (diameter 0) (color 0 0 0 0)
(uuid bd9595a1-04f3-4fda-8f1b-e65ad874edd3)
)
(junction (at 25.4 24.13) (diameter 0) (color 0 0 0 0)
(uuid bdf40d30-88ff-4479-bad1-69529464b61b)
)
(junction (at 57.15 140.97) (diameter 0) (color 0 0 0 0)
(uuid be6b17f9-34f5-44e9-a4c7-725d2e274a9d)
)
(junction (at 72.39 151.13) (diameter 0) (color 0 0 0 0)
(uuid befdfbe5-f3e5-423b-a34e-7bba3f218536)
)
(junction (at 80.01 128.27) (diameter 0) (color 0 0 0 0)
(uuid c094494a-f6f7-43fc-a007-4951484ddf3a)
)
(junction (at 74.93 83.82) (diameter 0) (color 0 0 0 0)
(uuid c1d83899-e380-49f9-a87d-8e78bc089ebf)
)
(junction (at 91.44 41.91) (diameter 0) (color 0 0 0 0)
(uuid c2dd13db-24b6-40f1-b75b-b9ab893d92ea)
)
(junction (at 107.95 24.13) (diameter 0) (color 0 0 0 0)
(uuid c43663ee-9a0d-4f27-a292-89ba89964065)
)
(junction (at 87.63 128.27) (diameter 0) (color 0 0 0 0)
(uuid c701ee8e-1214-4781-a973-17bef7b6e3eb)
)
(junction (at 102.87 129.54) (diameter 0) (color 0 0 0 0)
(uuid c71f56c1-5b7c-4373-9716-fffac482104c)
)
(junction (at 173.99 24.13) (diameter 0) (color 0 0 0 0)
(uuid c7af8405-da2e-4a34-b9b8-518f342f8995)
)
(junction (at 64.77 118.11) (diameter 0) (color 0 0 0 0)
(uuid c9667181-b3c7-4b01-b8b4-baa29a9aea63)
)
(junction (at 107.95 83.82) (diameter 0) (color 0 0 0 0)
(uuid ccc4cc25-ac17-45ef-825c-e079951ffb21)
)
(junction (at 72.39 118.11) (diameter 0) (color 0 0 0 0)
(uuid d0fb0864-e79b-4bdc-8e8e-eed0cabe6d56)
)
(junction (at 124.46 83.82) (diameter 0) (color 0 0 0 0)
(uuid d1a9be32-38ba-44e6-bc35-f031541ab1fe)
)
(junction (at 107.95 41.91) (diameter 0) (color 0 0 0 0)
(uuid d1cd5391-31d2-459f-8adb-4ae3f304a833)
)
(junction (at 125.73 118.11) (diameter 0) (color 0 0 0 0)
(uuid d38aa458-d7c4-47af-ba08-2b6be506a3fd)
)
(junction (at 80.01 129.54) (diameter 0) (color 0 0 0 0)
(uuid d68e5ddb-039c-483f-88a3-1b0b7964b482)
)
(junction (at 124.46 67.31) (diameter 0) (color 0 0 0 0)
(uuid d69a5fdf-de15-4ec9-94f6-f9ee2f4b69fa)
)
(junction (at 140.97 67.31) (diameter 0) (color 0 0 0 0)
(uuid d95c6650-fcd9-4184-97fe-fde43ea5c0cd)
)
(junction (at 157.48 24.13) (diameter 0) (color 0 0 0 0)
(uuid da25bf79-0abb-4fac-a221-ca5c574dfc29)
)
(junction (at 45.72 129.54) (diameter 0) (color 0 0 0 0)
(uuid db1ed10a-ef86-43bf-93dc-9be76327f6d2)
)
(junction (at 133.35 129.54) (diameter 0) (color 0 0 0 0)
(uuid dbe92a0d-89cb-4d3f-9497-c2c1d93a3018)
)
(junction (at 58.42 67.31) (diameter 0) (color 0 0 0 0)
(uuid dd1edfbb-5fb6-42cd-b740-fd54ab3ef1f1)
)
(junction (at 95.25 151.13) (diameter 0) (color 0 0 0 0)
(uuid de370984-7922-4327-a0ba-7cd613995df4)
)
(junction (at 58.42 24.13) (diameter 0) (color 0 0 0 0)
(uuid df68c26a-03b5-4466-aecf-ba34b7dce6b7)
)
(junction (at 156.21 129.54) (diameter 0) (color 0 0 0 0)
(uuid e11ae5a5-aa10-4f10-b346-f16e33c7899a)
)
(junction (at 207.01 41.91) (diameter 0) (color 0 0 0 0)
(uuid e2fac877-439c-4da0-af2e-5fdc70f85d42)
)
(junction (at 87.63 129.54) (diameter 0) (color 0 0 0 0)
(uuid e300709f-6c72-488d-a598-efcbd6d3af54)
)
(junction (at 140.97 24.13) (diameter 0) (color 0 0 0 0)
(uuid e32ee344-1030-4498-9cac-bfbf7540faf4)
)
(junction (at 102.87 128.27) (diameter 0) (color 0 0 0 0)
(uuid e5e5220d-5b7e-47da-a902-b997ec8d4d58)
)
(junction (at 49.53 140.97) (diameter 0) (color 0 0 0 0)
(uuid e70d061b-28f0-4421-ad15-0598604086e8)
)
(junction (at 91.44 49.53) (diameter 0) (color 0 0 0 0)
(uuid e7369115-d491-4ef3-be3d-f5298992c3e8)
)
(junction (at 118.11 118.11) (diameter 0) (color 0 0 0 0)
(uuid e7d81bce-286e-41e4-9181-3511e9c0455e)
)
(junction (at 190.5 49.53) (diameter 0) (color 0 0 0 0)
(uuid e7e08b48-3d04-49da-8349-6de530a20c67)
)
(junction (at 95.25 139.7) (diameter 0) (color 0 0 0 0)
(uuid e87738fc-e372-4c48-9de9-398fd8b4874c)
)
(junction (at 74.93 24.13) (diameter 0) (color 0 0 0 0)
(uuid e8c50f1b-c316-4110-9cce-5c24c65a1eaa)
)
(junction (at 87.63 140.97) (diameter 0) (color 0 0 0 0)
(uuid eaa0d51a-ee4e-4d3a-a801-bddb7027e94c)
)
(junction (at 107.95 67.31) (diameter 0) (color 0 0 0 0)
(uuid eae14f5f-515c-4a6f-ad0e-e8ef233d14bf)
)
(junction (at 41.91 67.31) (diameter 0) (color 0 0 0 0)
(uuid f5dba25f-5f9b-4770-84f9-c038fb119360)
)
(junction (at 207.01 24.13) (diameter 0) (color 0 0 0 0)
(uuid f66398f1-1ae7-4d4d-939f-958c174c6bce)
)
(junction (at 148.59 118.11) (diameter 0) (color 0 0 0 0)
(uuid f6983918-fe05-46ea-b355-bc522ec53440)
)
(junction (at 80.01 151.13) (diameter 0) (color 0 0 0 0)
(uuid f699494a-77d6-4c73-bd50-29c1c1c5b879)
)
(junction (at 95.25 118.11) (diameter 0) (color 0 0 0 0)
(uuid f7447e92-4293-41c4-be3f-69b30aad1f17)
)
(junction (at 190.5 24.13) (diameter 0) (color 0 0 0 0)
(uuid f78e02cd-9600-4173-be8d-67e530b5d19f)
)
(junction (at 25.4 101.6) (diameter 0) (color 0 0 0 0)
(uuid f9b1563b-384a-447c-9f47-736504e995c8)
)
(junction (at 173.99 67.31) (diameter 0) (color 0 0 0 0)
(uuid f9c81c26-f253-4227-a69f-53e64841cfbe)
)
(junction (at 44.45 139.7) (diameter 0) (color 0 0 0 0)
(uuid fa20e708-ec85-4e0b-8402-f74a2724f920)
)
(junction (at 173.99 49.53) (diameter 0) (color 0 0 0 0)
(uuid fd3499d5-6fd2-49a4-bdb0-109cee899fde)
)
(junction (at 57.15 129.54) (diameter 0) (color 0 0 0 0)
(uuid fdc60c06-30fa-4dfb-96b4-809b755999e1)
)
(wire (pts (xy 25.4 100.33) (xy 25.4 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0088d107-13d8-496c-8da6-7bbeb9d096b0)
)
(wire (pts (xy 223.52 67.31) (xy 240.03 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 008da5b9-6f95-4113-b7d0-d93ac62efd33)
)
(wire (pts (xy 107.95 49.53) (xy 91.44 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 009b5465-0a65-4237-93e7-eb65321eeb18)
)
(wire (pts (xy 173.99 67.31) (xy 173.99 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 00e38d63-5436-49db-81f5-697421f168fc)
)
(wire (pts (xy 133.35 128.27) (xy 140.97 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 014d13cd-26ad-4d0e-86ad-a43b541cab14)
)
(polyline (pts (xy 34.29 153.67) (xy 171.45 153.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 015f5586-ba76-4a98-9114-f5cd2c67134d)
)
(wire (pts (xy 173.99 24.13) (xy 173.99 25.4))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 026ac84e-b8b2-4dd2-b675-8323c24fd778)
)
(wire (pts (xy 45.72 129.54) (xy 49.53 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02f8904b-a7b2-49dd-b392-764e7e29fb51)
)
(polyline (pts (xy 109.22 161.29) (xy 109.22 175.26))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03c7f780-fc1b-487a-b30d-567d6c09fdc8)
)
(wire (pts (xy 41.91 101.6) (xy 58.42 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03d88a85-11fd-47aa-954c-c318bb15294a)
)
(wire (pts (xy 24.13 83.82) (xy 25.4 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 03f57fb4-32a3-4bc6-85b9-fd8ece4a9592)
)
(wire (pts (xy 223.52 66.04) (xy 223.52 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04cf2f2c-74bf-400d-b4f6-201720df00ed)
)
(wire (pts (xy 72.39 151.13) (xy 64.77 151.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05d3e08e-e1f9-46cf-93d0-836d1306d03a)
)
(wire (pts (xy 46.99 163.83) (xy 45.72 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 065b9982-55f2-4822-977e-07e8a06e7b35)
)
(wire (pts (xy 33.02 33.02) (xy 34.29 33.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 076046ab-4b56-4060-b8d9-0d80806d0277)
)
(wire (pts (xy 173.99 101.6) (xy 173.99 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07d160b6-23e1-4aa0-95cb-440482e6fc15)
)
(wire (pts (xy 116.84 58.42) (xy 115.57 58.42))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 088f77ba-fca9-42b3-876e-a6937267f957)
)
(wire (pts (xy 182.88 30.48) (xy 181.61 30.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(wire (pts (xy 100.33 55.88) (xy 99.06 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0b21a65d-d20b-411e-920a-75c343ac5136)
)
(wire (pts (xy 157.48 24.13) (xy 173.99 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bcafe80-ffba-4f1e-ae51-95a595b006db)
)
(wire (pts (xy 110.49 128.27) (xy 118.11 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cbeb329-a88d-4a47-a5c2-a1d693de2f8c)
)
(wire (pts (xy 133.35 139.7) (xy 140.97 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0cc9bf07-55b9-458f-b8aa-41b2f51fa940)
)
(wire (pts (xy 80.01 118.11) (xy 87.63 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ce8d3ab-2662-4158-8a2a-18b782908fc5)
)