-
Notifications
You must be signed in to change notification settings - Fork 364
Expand file tree
/
Copy pathREF02.kicad_sch
More file actions
2522 lines (2450 loc) · 96.2 KB
/
Copy pathREF02.kicad_sch
File metadata and controls
2522 lines (2450 loc) · 96.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid b74b24ec-d8e8-4978-8e28-29e0550e1fe0)
(paper "A4")
(lib_symbols
(symbol "LTspice_sym:current" (pin_names (offset 0.0254)) (in_bom yes) (on_board yes)
(property "Reference" "I" (id 0) (at 1.905 0 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "current" (id 1) (at 1.905 -6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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 "Field5" "I" (id 4) (at 1.905 -6.35 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(symbol "current_0_0"
(circle (center 0 -3.175) (radius 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -0.3048 -3.4798)
(xy 0.3048 -3.4798)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -6.35)
(xy 0 -5.715)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -4.445)
(xy -0.3048 -3.4798)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -4.445)
(xy 0.3048 -3.4798)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 -1.905)
(xy 0 -3.4798)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 -0.635)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "current_1_1"
(pin unspecified line (at 0 0 0) (length 0)
(name "+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin unspecified line (at 0 -6.35 0) (length 0)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eSim_Devices:capacitor" (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" "capacitor" (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 0.762 0.762)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_fp_filters" "C_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "capacitor_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 "capacitor_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "eSim_Devices:eSim_Diode" (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" "eSim_Diode" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_fp_filters" "TO-???* *SingleDiode *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "eSim_Diode_0_0"
(text "A" (at -2.54 1.27 0)
(effects (font (size 1.524 1.524)))
)
(text "K" (at 2.54 1.27 0)
(effects (font (size 1.524 1.524)))
)
)
(symbol "eSim_Diode_0_1"
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.27)
(xy 1.27 0)
(xy -1.27 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "eSim_Diode_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "A" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "K" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
)
)
(symbol "eSim_Devices:eSim_NPN" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at -2.54 1.27 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "eSim_NPN" (id 1) (at -1.27 3.81 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 5.08 2.54 0)
(effects (font (size 0.7366 0.7366)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "eSim_NPN_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.778)
(xy 1.778 -1.27)
(xy 2.286 -2.286)
(xy 1.27 -1.778)
(xy 1.27 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "eSim_NPN_1_1"
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eSim_Devices:eSim_PNP" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (id 0) (at -2.54 1.27 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "eSim_PNP" (id 1) (at -1.27 3.81 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 5.08 2.54 0)
(effects (font (size 0.7366 0.7366)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "eSim_PNP_0_1"
(polyline
(pts
(xy 0.635 0.635)
(xy 2.54 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 -0.635)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0.635 1.905)
(xy 0.635 -1.905)
(xy 0.635 -1.905)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 2.286 -1.778)
(xy 1.778 -2.286)
(xy 1.27 -1.27)
(xy 2.286 -1.778)
(xy 2.286 -1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "eSim_PNP_1_1"
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 5.715)
(name "B" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eSim_Devices:resistor" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 1.27 3.302 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "resistor" (id 1) (at 1.27 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 1.27 -0.508 0)
(effects (font (size 0.762 0.762)))
)
(property "Datasheet" "" (id 3) (at 1.27 1.27 90)
(effects (font (size 0.762 0.762)))
)
(property "ki_fp_filters" "R_* Resistor_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "resistor_0_1"
(rectangle (start 3.81 0.254) (end -1.27 2.286)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "resistor_1_1"
(pin passive line (at -2.54 1.27 0) (length 1.27)
(name "~" (effects (font (size 1.524 1.524))))
(number "1" (effects (font (size 1.524 1.524))))
)
(pin passive line (at 5.08 1.27 180) (length 1.27)
(name "~" (effects (font (size 1.524 1.524))))
(number "2" (effects (font (size 1.524 1.524))))
)
)
)
(symbol "eSim_Plot:plot_v1" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 12.7 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "plot_v1" (id 1) (at 5.08 8.89 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "plot_v1_0_1"
(circle (center 0 12.7) (radius 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "plot_v1_1_1"
(pin input line (at 0 5.08 90) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "~" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "eSim_Power:eSim_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" "eSim_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)
)
(symbol "eSim_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 "eSim_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 "eSim_Sources:DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "v" (id 0) (at -5.08 2.54 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "DC" (id 1) (at -5.08 -1.27 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "R1" (id 2) (at -7.62 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "ki_fp_filters" "1_pin" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DC_0_1"
(circle (center 0 0) (radius 3.81)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "DC_1_1"
(pin power_out line (at 0 11.43 270) (length 7.62)
(name "+" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_out line (at 0 -11.43 90) (length 7.62)
(name "-" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 116.84 41.91) (diameter 0) (color 0 0 0 0)
(uuid 00bd3f18-79d2-4a1a-92d4-0fd272d10c70)
)
(junction (at 41.91 115.57) (diameter 0) (color 0 0 0 0)
(uuid 0740ca62-7727-4747-add2-eb4c523bce3e)
)
(junction (at 134.62 170.18) (diameter 0) (color 0 0 0 0)
(uuid 0f2ca269-a675-432c-bd11-19bafe85aa67)
)
(junction (at 95.25 170.18) (diameter 0) (color 0 0 0 0)
(uuid 0f46b52b-be92-4f8b-a4a6-92a58233d36d)
)
(junction (at 134.62 54.61) (diameter 0) (color 0 0 0 0)
(uuid 1232f498-f4f0-4068-b0c2-5b28736fc49c)
)
(junction (at 144.78 130.81) (diameter 0) (color 0 0 0 0)
(uuid 23a7eb0c-0847-4fbc-9f59-8bf4a505698d)
)
(junction (at 153.67 170.18) (diameter 0) (color 0 0 0 0)
(uuid 272637ea-21fe-42a5-bdae-d91c08593c71)
)
(junction (at 204.47 124.46) (diameter 0) (color 0 0 0 0)
(uuid 27724754-eb93-462b-b09c-5e0afe6c530d)
)
(junction (at 134.62 19.05) (diameter 0) (color 0 0 0 0)
(uuid 347c051a-e54b-4863-b9cf-f7f7541f2c91)
)
(junction (at 40.64 130.81) (diameter 0) (color 0 0 0 0)
(uuid 3b3ac1c3-29f8-4c35-bb39-7b268f99543d)
)
(junction (at 41.91 107.95) (diameter 0) (color 0 0 0 0)
(uuid 40ed6f59-ce89-49e3-aed2-9c348388332c)
)
(junction (at 99.06 97.79) (diameter 0) (color 0 0 0 0)
(uuid 44b17d3f-8e2b-48d7-ae64-bcf3ee9610c7)
)
(junction (at 95.25 157.48) (diameter 0) (color 0 0 0 0)
(uuid 46ebed09-dab2-45be-99cc-b07538c4148c)
)
(junction (at 106.68 55.88) (diameter 0) (color 0 0 0 0)
(uuid 50cb36ca-a90c-4a9c-b6f7-58c1f1567296)
)
(junction (at 134.62 43.18) (diameter 0) (color 0 0 0 0)
(uuid 512a7f18-fd00-47f2-b365-4e2449fa3d21)
)
(junction (at 153.67 19.05) (diameter 0) (color 0 0 0 0)
(uuid 5a9b6500-9e37-412e-94a0-7a650d03e14b)
)
(junction (at 113.03 120.65) (diameter 0) (color 0 0 0 0)
(uuid 631a2525-985d-4579-ad57-76b6c415438c)
)
(junction (at 55.88 97.79) (diameter 0) (color 0 0 0 0)
(uuid 69e7bfb8-5871-4569-a9e3-f9e71beeae0d)
)
(junction (at 166.37 19.05) (diameter 0) (color 0 0 0 0)
(uuid 6dde7b4e-a8e6-4895-827d-0e06a8e69fcd)
)
(junction (at 95.25 143.51) (diameter 0) (color 0 0 0 0)
(uuid 7a5ec37d-db91-4252-953e-51cafafe773f)
)
(junction (at 204.47 67.31) (diameter 0) (color 0 0 0 0)
(uuid 7c6374ed-2b75-4659-bc83-f7a275a2a8c3)
)
(junction (at 134.62 44.45) (diameter 0) (color 0 0 0 0)
(uuid 7ede9b59-1a12-4fb7-addd-c8694c01bb83)
)
(junction (at 44.45 124.46) (diameter 0) (color 0 0 0 0)
(uuid 8100e013-9c9a-4ce8-83ea-f9d4174195d0)
)
(junction (at 166.37 120.65) (diameter 0) (color 0 0 0 0)
(uuid 83990eaa-9eb2-4469-8316-49683320408a)
)
(junction (at 232.41 19.05) (diameter 0) (color 0 0 0 0)
(uuid 8778f75c-3aa0-420c-854b-6bb5fc4698c6)
)
(junction (at 125.73 19.05) (diameter 0) (color 0 0 0 0)
(uuid 902f9bc9-e79d-435d-a5f7-a4c0924e6cae)
)
(junction (at 157.48 137.16) (diameter 0) (color 0 0 0 0)
(uuid 9587c127-fb57-4e35-9a4b-22fff6a99198)
)
(junction (at 190.5 29.21) (diameter 0) (color 0 0 0 0)
(uuid 960c0b5c-6356-4f91-a6d7-3fe753d8129e)
)
(junction (at 144.78 35.56) (diameter 0) (color 0 0 0 0)
(uuid 961d91ba-ee2f-42ee-bc64-e1356b839988)
)
(junction (at 153.67 41.91) (diameter 0) (color 0 0 0 0)
(uuid 98d03e11-e32f-4968-a933-4658c45ee266)
)
(junction (at 166.37 170.18) (diameter 0) (color 0 0 0 0)
(uuid 98d4dd8b-1857-4c09-8756-f27bda21204a)
)
(junction (at 124.46 107.95) (diameter 0) (color 0 0 0 0)
(uuid 9bc888e1-7b38-402c-8247-21da7aba2405)
)
(junction (at 113.03 170.18) (diameter 0) (color 0 0 0 0)
(uuid 9c8e8d8a-d872-435d-a86d-cf14826ad4e5)
)
(junction (at 40.64 133.35) (diameter 0) (color 0 0 0 0)
(uuid 9ecc33b6-0a17-4846-8637-52fd39fa686c)
)
(junction (at 204.47 19.05) (diameter 0) (color 0 0 0 0)
(uuid a097c725-3640-4ba8-acdf-1d9adb01cf77)
)
(junction (at 181.61 19.05) (diameter 0) (color 0 0 0 0)
(uuid a922a23b-3d47-43dc-8245-9cbe92dc54a5)
)
(junction (at 95.25 97.79) (diameter 0) (color 0 0 0 0)
(uuid aa8820ff-1e3e-4729-9d5c-7c4ee1ccb011)
)
(junction (at 204.47 29.21) (diameter 0) (color 0 0 0 0)
(uuid b3dc106b-174f-4451-b335-6238aa3f462a)
)
(junction (at 118.11 73.66) (diameter 0) (color 0 0 0 0)
(uuid b5aa1774-c92a-474a-82f0-9c099f059313)
)
(junction (at 40.64 129.54) (diameter 0) (color 0 0 0 0)
(uuid b92dd1df-c354-4f36-9ac7-582e7e614508)
)
(junction (at 86.36 124.46) (diameter 0) (color 0 0 0 0)
(uuid b9d2b63b-0768-43fe-8a16-5f137fd57bbb)
)
(junction (at 204.47 109.22) (diameter 0) (color 0 0 0 0)
(uuid bdb7026f-2ce8-4767-9673-459e862f41e1)
)
(junction (at 204.47 80.01) (diameter 0) (color 0 0 0 0)
(uuid c40c703b-8f50-4258-9e72-9482ced81e0c)
)
(junction (at 212.09 19.05) (diameter 0) (color 0 0 0 0)
(uuid c9e2b13a-b1f7-490a-9a6c-e57466327817)
)
(junction (at 134.62 29.21) (diameter 0) (color 0 0 0 0)
(uuid cbbc86bc-2339-4ae0-9459-9eb8bcac45e5)
)
(junction (at 87.63 124.46) (diameter 0) (color 0 0 0 0)
(uuid d9e0c8c9-c4b2-42e8-bc06-8df2c26daf1c)
)
(junction (at 170.18 170.18) (diameter 0) (color 0 0 0 0)
(uuid ddd1d200-d3cb-4352-bde6-1207736acf73)
)
(junction (at 95.25 115.57) (diameter 0) (color 0 0 0 0)
(uuid f034995f-b925-434f-85bc-9fd859227663)
)
(junction (at 125.73 49.53) (diameter 0) (color 0 0 0 0)
(uuid f78e344f-b123-499d-8532-c0ef2852e4d9)
)
(junction (at 209.55 67.31) (diameter 0) (color 0 0 0 0)
(uuid fac6798f-014d-4e25-bdbe-a0a6c4e28916)
)
(junction (at 124.46 73.66) (diameter 0) (color 0 0 0 0)
(uuid fbfdc40f-3a53-40ad-bc1f-0e567283f093)
)
(no_connect (at 220.98 109.22) (uuid e497c1b6-0023-4f38-b2c4-6f33a74595eb))
(no_connect (at 22.86 133.35) (uuid e8666b2b-9021-417f-a90b-46cd1c95fe29))
(wire (pts (xy 116.84 49.53) (xy 125.73 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01028fea-ad22-4299-a2db-4010174e6391)
)
(wire (pts (xy 134.62 20.32) (xy 134.62 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01b57dbc-6175-42d1-9dbd-01ddeb5fd384)
)
(wire (pts (xy 212.09 34.29) (xy 212.09 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 036445a3-def9-4e47-9c32-3b437deb6c0a)
)
(wire (pts (xy 209.55 78.74) (xy 209.55 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 04fc18b9-b5f5-40bb-be52-8ca17b233af9)
)
(wire (pts (xy 95.25 143.51) (xy 95.25 147.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05e04b77-0f82-48ca-ae50-5becd9a61be9)
)
(polyline (pts (xy 207.01 180.34) (xy 20.32 180.34))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06989218-5adb-4fe2-8de8-464e590ed9dd)
)
(wire (pts (xy 53.34 115.57) (xy 41.91 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 069ed273-652b-49d2-917e-6b8f612d4957)
)
(wire (pts (xy 153.67 19.05) (xy 166.37 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07a2086b-6e64-424d-8f69-61f2e6fa3bec)
)
(wire (pts (xy 166.37 102.87) (xy 166.37 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0892a874-e723-4204-ab38-be1f59f29236)
)
(wire (pts (xy 40.64 143.51) (xy 95.25 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 08b21d6e-4f8d-418d-83ee-12ab4322c263)
)
(wire (pts (xy 99.06 100.33) (xy 99.06 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0961789b-b840-4f72-a68b-a65f8d6a50f7)
)
(wire (pts (xy 95.25 115.57) (xy 95.25 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09671941-84c2-43dc-b952-bc1bfc500525)
)
(wire (pts (xy 190.5 139.7) (xy 190.5 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bf40709-e83c-4afe-b7eb-a59e3d6a3b57)
)
(wire (pts (xy 153.67 135.89) (xy 153.67 149.86))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0c48ca16-25ce-43a7-9a83-45066113ab2e)
)
(wire (pts (xy 41.91 99.06) (xy 41.91 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d12522c-f1dc-48e0-99b7-ca0d59a60501)
)
(wire (pts (xy 134.62 27.94) (xy 134.62 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d70a4cc-af40-408b-b221-dfa46e0b052e)
)
(wire (pts (xy 144.78 35.56) (xy 144.78 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0ffd9adb-3bcd-461c-9dfd-1117eed95e2e)
)
(wire (pts (xy 55.88 80.01) (xy 204.47 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10b22c0c-8db5-416c-a192-65f4e9ef0a5b)
)
(wire (pts (xy 125.73 31.75) (xy 125.73 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 116b40a2-90e3-446f-af6b-99108aa2aaaa)
)
(wire (pts (xy 120.65 130.81) (xy 144.78 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 151d2826-2006-4604-b26e-5083ee0e46b8)
)
(polyline (pts (xy 207.01 16.51) (xy 207.01 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1816420a-e973-4075-8d3b-d9900be674d5)
)
(wire (pts (xy 153.67 30.48) (xy 153.67 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18303118-46f3-467c-99e9-41a73c5a03cd)
)
(wire (pts (xy 86.36 157.48) (xy 95.25 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 19d2b309-f64b-4590-b60f-7dbd5382c9b2)
)
(wire (pts (xy 134.62 54.61) (xy 134.62 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cf19b7c-d221-49af-9301-e887c89f7712)
)
(wire (pts (xy 113.03 170.18) (xy 95.25 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dddd384-604e-47a9-aae0-d80583041247)
)
(wire (pts (xy 138.43 44.45) (xy 134.62 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dfadffd-ab7a-4aa2-85e4-de9dd8e5009d)
)
(wire (pts (xy 106.68 105.41) (xy 106.68 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1fd6caff-80bc-4e8a-9aa3-8b6d51023f09)
)
(wire (pts (xy 116.84 41.91) (xy 118.11 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2057b663-473b-4200-9738-7605ea36b6a7)
)
(polyline (pts (xy 20.32 16.51) (xy 33.02 16.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2195901e-b1b9-4dbd-9000-41a469a01fe8)
)
(wire (pts (xy 86.36 167.64) (xy 86.36 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 21e8fa61-0f48-4d41-bc74-1a98b99c40dd)
)
(wire (pts (xy 44.45 124.46) (xy 45.72 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 227ddda4-c619-41e2-8a99-2f861127a0ad)
)
(wire (pts (xy 204.47 29.21) (xy 204.47 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24089081-28de-4283-b104-922fcdc8eb33)
)
(wire (pts (xy 134.62 43.18) (xy 182.88 43.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2764105c-89d9-4407-bb0d-961b6b696761)
)
(wire (pts (xy 144.78 137.16) (xy 144.78 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 279acd19-f0b5-4939-805f-dae71a04f9ef)
)
(wire (pts (xy 95.25 157.48) (xy 95.25 160.02))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28c5833c-638d-436f-b33a-13a8894060a1)
)
(wire (pts (xy 95.25 154.94) (xy 95.25 157.48))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29f561db-5430-4d19-8ec3-f3b868b048ab)
)
(wire (pts (xy 55.88 97.79) (xy 95.25 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2a573b09-7188-423f-98be-48936e50e6ed)
)
(wire (pts (xy 204.47 67.31) (xy 204.47 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2caca6f6-ba3f-4a11-9569-a1f86c0bc080)
)
(wire (pts (xy 125.73 49.53) (xy 125.73 50.8))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 305322e0-02a0-458f-9bec-062fa580905f)
)
(wire (pts (xy 22.86 133.35) (xy 40.64 133.35))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30e86c33-8584-4cdb-bb3c-df0d44399524)
)
(wire (pts (xy 209.55 67.31) (xy 223.52 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 33e02eca-f851-45c5-bea6-c9b40f87a12f)
)
(wire (pts (xy 153.67 157.48) (xy 153.67 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 36422c8f-252f-4f96-8624-141c054e6e9a)
)
(wire (pts (xy 116.84 109.22) (xy 116.84 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38ddc834-beeb-4478-a3e0-6e2682846564)
)
(wire (pts (xy 106.68 24.13) (xy 106.68 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3929d368-d7a5-45a4-94a9-4c9c3e5358c6)
)
(wire (pts (xy 125.73 46.99) (xy 125.73 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a5a118d-ab05-438a-8b65-4829194888c5)
)
(wire (pts (xy 86.36 124.46) (xy 86.36 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a5dfb89-e247-4b3e-b917-77ddd0eb2e85)
)
(wire (pts (xy 34.29 115.57) (xy 34.29 119.38))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b06113b-f765-4306-a28f-0f781c828dfe)
)
(polyline (pts (xy 207.01 99.06) (xy 223.52 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 409cdb87-50c6-4bd8-a773-fcd73731acea)
)
(wire (pts (xy 157.48 120.65) (xy 166.37 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 41a0d145-b661-4542-b74e-481e8e1d3ded)
)
(wire (pts (xy 106.68 120.65) (xy 113.03 120.65))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4229b865-6b7c-41c6-b6fc-4cc1939e73f6)
)
(wire (pts (xy 204.47 19.05) (xy 212.09 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42862d4a-9736-40b4-91f3-bee3188323c0)
)
(polyline (pts (xy 20.32 180.34) (xy 20.32 16.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4466e8e0-6bbf-4d8e-a471-39bd79e388d2)
)
(wire (pts (xy 41.91 106.68) (xy 41.91 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4568ce55-9700-4ac7-9e1a-3e28bfb901f6)
)
(wire (pts (xy 87.63 121.92) (xy 87.63 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4597c0e0-f81d-4904-afaf-cae49728aca3)
)
(wire (pts (xy 95.25 97.79) (xy 95.25 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 461639e3-91bb-455f-b55e-23c944f564b6)
)
(wire (pts (xy 106.68 19.05) (xy 125.73 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 468f5e8e-a3e2-4f66-9ba1-6821eca641ab)
)
(wire (pts (xy 134.62 63.5) (xy 134.62 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 469bba02-7dbd-42a5-8d55-90ba60bb29b5)
)
(wire (pts (xy 186.69 29.21) (xy 190.5 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 477e3d29-fc5a-43eb-9a2c-f95baf3da908)
)
(wire (pts (xy 153.67 40.64) (xy 153.67 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4813ca18-293d-4587-bd2d-2dd6d05ebb10)
)
(wire (pts (xy 144.78 130.81) (xy 146.05 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48216958-afba-428e-a069-991d5ca76891)
)
(wire (pts (xy 158.75 137.16) (xy 157.48 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 486611de-dcd1-4c32-8edc-1cacecaafeb3)
)
(wire (pts (xy 125.73 19.05) (xy 125.73 24.13))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48adb1d3-5f36-4277-b811-b2f8a6971213)
)
(wire (pts (xy 86.36 124.46) (xy 87.63 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fc6d174-0556-42bc-ba57-6089cfdb9aa9)
)
(wire (pts (xy 95.25 129.54) (xy 95.25 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 504a366d-a04e-427e-bec4-80a9c0b38467)
)
(wire (pts (xy 181.61 19.05) (xy 181.61 21.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 506835b8-f0ad-4474-8f2c-b636b7fcecdf)
)
(wire (pts (xy 158.75 130.81) (xy 158.75 137.16))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 516269d1-0337-4da8-855c-f03421117c1f)
)
(wire (pts (xy 204.47 163.83) (xy 184.15 163.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 517dafc3-a8ba-493c-99b4-11451bdd8dac)
)
(wire (pts (xy 44.45 124.46) (xy 44.45 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 540a65dd-2d45-4aee-8cea-f67ea986f657)
)
(wire (pts (xy 190.5 29.21) (xy 190.5 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5479ac1e-59a7-46c5-81aa-7583ec365e11)
)
(wire (pts (xy 190.5 29.21) (xy 204.47 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54f885bf-a5a6-414b-85d3-7b398dd4e4bb)
)
(wire (pts (xy 127 73.66) (xy 124.46 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55b1729d-6785-42ed-a4ff-222457965891)
)
(wire (pts (xy 95.25 115.57) (xy 99.06 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 55f6d532-358e-40d3-bd96-53a701d3a8c1)
)
(wire (pts (xy 95.25 97.79) (xy 99.06 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 56f62590-3162-43d1-9d74-d71ad919d548)
)
(wire (pts (xy 99.06 93.98) (xy 110.49 93.98))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58106207-5cb7-4be4-adc1-ffd77630d84c)
)
(wire (pts (xy 190.5 124.46) (xy 204.47 124.46))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 599c81cb-02a8-4905-9ef6-5604e7966c00)
)
(wire (pts (xy 184.15 170.18) (xy 170.18 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a7d095f-5c07-4dce-975b-fb72bf7ff9ae)
)
(wire (pts (xy 106.68 31.75) (xy 106.68 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 634488ed-ebff-406d-8599-c48d6c52f31d)
)
(wire (pts (xy 44.45 114.3) (xy 77.47 114.3))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63e4c441-a8be-4f47-8538-7f71fec9ab69)
)
(wire (pts (xy 118.11 109.22) (xy 116.84 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64275ac3-37ef-47a3-8d45-50881bbf4b7d)
)
(wire (pts (xy 34.29 129.54) (xy 40.64 129.54))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 64a4eb1f-3c1c-44e9-91c8-bad1d1a62055)
)
(wire (pts (xy 166.37 135.89) (xy 166.37 148.59))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69c57b37-1a50-4fff-92a5-415dd2f638cc)
)
(wire (pts (xy 40.64 129.54) (xy 40.64 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69c7d668-dd3a-42cc-b2a0-96033f849e60)
)
(wire (pts (xy 144.78 35.56) (xy 146.05 35.56))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6bfc9706-328f-4083-b54f-66e2409c9862)
)
(wire (pts (xy 106.68 46.99) (xy 106.68 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c645673-e56b-4407-9c4c-22a88133d5c3)
)
(wire (pts (xy 125.73 60.96) (xy 118.11 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6cca500a-59b6-49e3-9cb2-a995e3ec72c0)
)
(wire (pts (xy 181.61 19.05) (xy 204.47 19.05))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d00710a-2f0c-4b5e-9cbb-e13c78c33dea)
)
(wire (pts (xy 41.91 107.95) (xy 41.91 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6dbf4293-b6a0-4533-86d9-22d9f5894210)
)
(wire (pts (xy 153.67 170.18) (xy 134.62 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71635bf8-3429-479d-b341-c5ca6746449d)
)
(wire (pts (xy 55.88 93.98) (xy 55.88 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 71bdf2e5-2a43-4147-a822-8ee3ea4d4104)
)
(wire (pts (xy 124.46 73.66) (xy 118.11 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 730ba04b-db28-432c-aec7-30d1ae473495)
)
(wire (pts (xy 204.47 19.05) (xy 204.47 20.32))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75e9562c-6196-440e-8125-ee346f40be93)
)
(wire (pts (xy 144.78 41.91) (xy 153.67 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 761972d7-d257-4dce-b070-4de4f728cb3d)
)
(wire (pts (xy 184.15 163.83) (xy 184.15 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 76318d3b-8698-473d-8e68-acd3b662800b)
)
(wire (pts (xy 118.11 105.41) (xy 118.11 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7639d4bd-c583-4b51-9c97-cda8bfccb88e)
)
(wire (pts (xy 113.03 157.48) (xy 113.03 170.18))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77b9d13b-af41-4558-a9ff-1063578d58a4)
)
(wire (pts (xy 153.67 19.05) (xy 134.62 19.05))