-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_autosave-DCDC5V20A.kicad_sch
2497 lines (2437 loc) · 83 KB
/
_autosave-DCDC5V20A.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid 770bc356-cb02-4cfc-94ed-0b9b2799b6d0)
(paper "A4")
(lib_symbols
(symbol "Connector:Conn_01x02_Socket" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x02_Socket" (at 0 -5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x02, script generated" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x02_Socket_1_1"
(arc (start 0 -2.032) (mid -0.5058 -2.54) (end 0 -3.048)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -2.54)
(xy -0.508 -2.54)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 0)
(xy -0.508 0)
)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(arc (start 0 0.508) (mid -0.5058 0) (end 0 -0.508)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:L" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "L" (at -1.27 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "L" (at 1.905 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "inductor choke coil reactor magnetic" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "L_0_1"
(arc (start 0 -2.54) (mid 0.6323 -1.905) (end 0 -1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 -1.27) (mid 0.6323 -0.635) (end 0 0)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 0) (mid 0.6323 0.635) (end 0 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 0 1.27) (mid 0.6323 1.905) (end 0 2.54)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "L_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Mechanical:MountingHole" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole" (at 0 3.175 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole without connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*" (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))
(fill (type none))
)
)
)
(symbol "Simulation_SPICE:NMOS" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "NMOS" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://ngspice.sourceforge.io/docs/ngspice-manual.pdf" (at 0 -12.7 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "NMOS" (at 0 -17.145 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Type" "VDMOS" (at 0 -19.05 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=D 2=G 3=S" (at 0 -15.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor NMOS N-MOS N-MOSFET simulation" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "N-MOSFET transistor, drain/source/gate" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "NMOS_0_1"
(polyline
(pts
(xy 0.254 0)
(xy -2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.27)
(xy 0.762 -2.286)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.286)
(xy 0.762 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.54)
(xy 2.54 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.54)
(xy 2.54 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.778)
(xy 3.302 -1.778)
(xy 3.302 1.778)
(xy 0.762 1.778)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 0)
(xy 2.032 0.381)
(xy 2.032 -0.381)
(xy 1.016 0)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.794 0.508)
(xy 2.921 0.381)
(xy 3.683 0.381)
(xy 3.81 0.254)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 3.302 0.381)
(xy 2.921 -0.254)
(xy 3.683 -0.254)
(xy 3.302 0.381)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.651 0) (radius 2.794)
(stroke (width 0.254) (type default))
(fill (type none))
)
(circle (center 2.54 -1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 2.54 1.778) (radius 0.254)
(stroke (width 0) (type default))
(fill (type outline))
)
)
(symbol "NMOS_1_1"
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "D" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -5.08 0 0) (length 2.54)
(name "G" (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 "S" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Techbeard:LM25145RGYR" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 15.24 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "" (at -3.81 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -3.81 6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -3.81 6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "LM25145RGYR_0_1"
(rectangle (start -8.89 13.97) (end 7.62 -13.97)
(stroke (width 0) (type default))
(fill (type background))
)
)
(symbol "LM25145RGYR_1_1"
(pin input line (at -11.43 6.35 0) (length 2.54)
(name "EN/UVLO" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -6.35 0) (length 2.54)
(name "PGOOD" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 3.81 180) (length 2.54)
(name "ILIM" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -6.35 180) (length 2.54)
(name "PGND" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 1.27 180) (length 2.54)
(name "LO" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -3.81 0) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -11.43 180) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -12.7 0) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 8.89 180) (length 2.54)
(name "BST" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 11.43 180) (length 2.54)
(name "HO" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 6.35 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 3.81 0) (length 2.54)
(name "RT" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 11.43 0) (length 2.54)
(name "Vin" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -12.7 180) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 1.27 0) (length 2.54)
(name "SS/TRK" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -3.81 180) (length 2.54)
(name "COMP" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -1.27 180) (length 2.54)
(name "FB" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -8.89 180) (length 2.54)
(name "AGND" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -8.89 0) (length 2.54)
(name "SYNCOUT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -1.27 0) (length 2.54)
(name "SYNCIN" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -11.43 0) (length 2.54)
(name "NC" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 231.14 73.66) (diameter 0) (color 0 0 0 0)
(uuid 00dc89fe-4cb7-4796-aa4d-266c78092b1e)
)
(junction (at 217.17 73.66) (diameter 0) (color 0 0 0 0)
(uuid 1126b6ed-3b47-4da9-8e11-09ec28296914)
)
(junction (at 210.82 73.66) (diameter 0) (color 0 0 0 0)
(uuid 1456470c-a7af-444a-b321-b54fabddac26)
)
(junction (at 76.2 46.99) (diameter 0) (color 0 0 0 0)
(uuid 14ef7117-0a70-4f9e-a98e-e6aa04fb0f03)
)
(junction (at 210.82 92.71) (diameter 0) (color 0 0 0 0)
(uuid 213af097-5e15-4209-a4ab-bb93ab0491bc)
)
(junction (at 250.19 73.66) (diameter 0) (color 0 0 0 0)
(uuid 2308a0c6-cc78-4e6f-947d-20c3fb33a7f1)
)
(junction (at 205.74 92.71) (diameter 0) (color 0 0 0 0)
(uuid 26356a19-32e2-474f-bdfa-65366a71dcc7)
)
(junction (at 260.35 73.66) (diameter 0) (color 0 0 0 0)
(uuid 295e81c9-ca6d-4a7e-a8e7-aee98da173e4)
)
(junction (at 66.04 46.99) (diameter 0) (color 0 0 0 0)
(uuid 2d49af61-c906-404a-80b4-ad9474364753)
)
(junction (at 55.88 46.99) (diameter 0) (color 0 0 0 0)
(uuid 2dd1279b-da49-473e-a42c-a0e85ca881b0)
)
(junction (at 92.71 73.66) (diameter 0) (color 0 0 0 0)
(uuid 3947a099-6ba3-47de-9eac-257e2560f834)
)
(junction (at 240.03 73.66) (diameter 0) (color 0 0 0 0)
(uuid 3bb933a9-a8bb-4194-b18d-7f5cbb176d56)
)
(junction (at 158.75 92.71) (diameter 0) (color 0 0 0 0)
(uuid 3fef280c-4a3c-4c88-87f4-cf5c87d4d9be)
)
(junction (at 172.72 73.66) (diameter 0) (color 0 0 0 0)
(uuid 49967664-1e9d-4f53-8e30-a5494c13e61d)
)
(junction (at 270.51 73.66) (diameter 0) (color 0 0 0 0)
(uuid 5df8e776-1576-4692-8f95-0ced2e152f32)
)
(junction (at 158.75 88.9) (diameter 0) (color 0 0 0 0)
(uuid 6d76c786-5bff-4aae-b872-8d6a56ad7921)
)
(junction (at 184.15 73.66) (diameter 0) (color 0 0 0 0)
(uuid 767f3df4-e86e-46e4-9170-dc61b5e87a75)
)
(junction (at 92.71 46.99) (diameter 0) (color 0 0 0 0)
(uuid 7f4bada6-b134-4d34-9756-b2acaf587d34)
)
(junction (at 184.15 76.2) (diameter 0) (color 0 0 0 0)
(uuid 923f826b-f8e9-4cc6-8117-7af3b825d20a)
)
(junction (at 113.03 46.99) (diameter 0) (color 0 0 0 0)
(uuid 9e831921-e2c0-44c1-81dc-7fa850ad3795)
)
(junction (at 119.38 86.36) (diameter 0) (color 0 0 0 0)
(uuid a323c629-1897-4c5e-817e-ab2f6d120929)
)
(junction (at 113.03 59.69) (diameter 0) (color 0 0 0 0)
(uuid a9bd1760-8fb6-4ee2-b2ce-90801bd1669f)
)
(junction (at 119.38 83.82) (diameter 0) (color 0 0 0 0)
(uuid ae9e8525-75ee-4019-a389-89f4d72729ec)
)
(junction (at 195.58 104.14) (diameter 0) (color 0 0 0 0)
(uuid d5dd6a64-78d8-46c5-9b09-5523d8ae8d0e)
)
(junction (at 45.72 46.99) (diameter 0) (color 0 0 0 0)
(uuid dbe22396-7690-4db0-8182-fd26452fa517)
)
(junction (at 158.75 91.44) (diameter 0) (color 0 0 0 0)
(uuid e1eede13-5da7-4f3e-b17c-52a69ff61ef7)
)
(junction (at 175.26 102.87) (diameter 0) (color 0 0 0 0)
(uuid ef17cbac-c5b6-43fa-b4dd-9d2b71fd827e)
)
(wire (pts (xy 154.94 78.74) (xy 170.18 78.74))
(stroke (width 0) (type default))
(uuid 01014acc-1f9a-4468-8d1d-938494be1744)
)
(wire (pts (xy 55.88 46.99) (xy 55.88 48.26))
(stroke (width 0) (type default))
(uuid 05695930-48bb-42ac-80de-0c7dfd9b1eca)
)
(wire (pts (xy 157.48 68.58) (xy 157.48 63.5))
(stroke (width 0) (type default))
(uuid 05cb5d91-d7b6-46d0-82eb-474ecb0797a1)
)
(wire (pts (xy 260.35 76.2) (xy 260.35 73.66))
(stroke (width 0) (type default))
(uuid 05e8c555-a560-4e4b-ae3b-2006dabddd3d)
)
(wire (pts (xy 157.48 63.5) (xy 176.53 63.5))
(stroke (width 0) (type default))
(uuid 06e96a1a-af7f-4333-afee-8feb8059ade0)
)
(wire (pts (xy 184.15 73.66) (xy 172.72 73.66))
(stroke (width 0) (type default))
(uuid 0c1d4d89-836c-4057-9324-89ff1892f82f)
)
(wire (pts (xy 231.14 73.66) (xy 217.17 73.66))
(stroke (width 0) (type default))
(uuid 0ef48019-2bdb-4dbe-97ee-11f3388d77f9)
)
(wire (pts (xy 181.61 107.95) (xy 175.26 107.95))
(stroke (width 0) (type default))
(uuid 148b8496-55d0-4c2f-a2a5-a209149668b4)
)
(wire (pts (xy 210.82 73.66) (xy 210.82 76.2))
(stroke (width 0) (type default))
(uuid 14ac8534-f1c3-4edb-90f5-f37069a802d5)
)
(wire (pts (xy 274.32 76.2) (xy 274.32 78.74))
(stroke (width 0) (type default))
(uuid 16e50628-2993-40e7-952e-9f6bcab4547f)
)
(wire (pts (xy 175.26 99.06) (xy 176.53 99.06))
(stroke (width 0) (type default))
(uuid 17535639-8499-4df0-9faf-fc0bf9393b96)
)
(wire (pts (xy 184.15 46.99) (xy 113.03 46.99))
(stroke (width 0) (type default))
(uuid 17b9b365-1191-46dc-bdf8-732e0528ca4b)
)
(wire (pts (xy 133.35 73.66) (xy 92.71 73.66))
(stroke (width 0) (type default))
(uuid 1bbbe3af-43f3-43db-bc98-d856d1a93488)
)
(wire (pts (xy 66.04 46.99) (xy 66.04 48.26))
(stroke (width 0) (type default))
(uuid 1dbfed9e-96a3-4988-8724-1c83b64227e8)
)
(wire (pts (xy 154.94 91.44) (xy 158.75 91.44))
(stroke (width 0) (type default))
(uuid 1dd9b3c6-427f-4dc9-b0a2-75d0242a6314)
)
(wire (pts (xy 129.54 81.28) (xy 133.35 81.28))
(stroke (width 0) (type default))
(uuid 2523ba76-bc62-4ca5-bd57-01694f2c32e7)
)
(wire (pts (xy 154.94 86.36) (xy 158.75 86.36))
(stroke (width 0) (type default))
(uuid 2c32cd9f-40ed-48ba-9520-28192b1f783d)
)
(wire (pts (xy 158.75 92.71) (xy 158.75 97.79))
(stroke (width 0) (type default))
(uuid 2e345f69-6876-4556-a6f5-163154c72b6b)
)
(wire (pts (xy 45.72 46.99) (xy 45.72 48.26))
(stroke (width 0) (type default))
(uuid 2f39a175-ac6a-4967-85eb-5c3132c0bfac)
)
(wire (pts (xy 210.82 104.14) (xy 210.82 105.41))
(stroke (width 0) (type default))
(uuid 2f3deae4-3875-4e26-a28e-aea484240ddb)
)
(wire (pts (xy 154.94 71.12) (xy 161.29 71.12))
(stroke (width 0) (type default))
(uuid 2f5a299d-b1c8-4453-b68f-de514bd00c1f)
)
(wire (pts (xy 100.33 76.2) (xy 100.33 90.17))
(stroke (width 0) (type default))
(uuid 308255b3-9092-40a7-8b01-4753ec11199c)
)
(wire (pts (xy 260.35 73.66) (xy 250.19 73.66))
(stroke (width 0) (type default))
(uuid 32084506-a8da-475f-9f7b-99a319cfae82)
)
(wire (pts (xy 217.17 91.44) (xy 217.17 92.71))
(stroke (width 0) (type default))
(uuid 3821f2c1-aaee-4f78-a32f-cb6b4055e106)
)
(wire (pts (xy 161.29 68.58) (xy 162.56 68.58))
(stroke (width 0) (type default))
(uuid 38e57ec1-c461-4d86-a47e-a00a722d341b)
)
(wire (pts (xy 133.35 78.74) (xy 107.95 78.74))
(stroke (width 0) (type default))
(uuid 397b4689-c989-45fa-a613-0f00b21df666)
)
(wire (pts (xy 170.18 78.74) (xy 170.18 82.55))
(stroke (width 0) (type default))
(uuid 3eb3e515-5198-485f-bba2-4a6cdd4690d8)
)
(wire (pts (xy 217.17 73.66) (xy 210.82 73.66))
(stroke (width 0) (type default))
(uuid 3f7ff276-3b66-4748-a525-3cf459ee4d32)
)
(wire (pts (xy 170.18 82.55) (xy 176.53 82.55))
(stroke (width 0) (type default))
(uuid 3fd0e24f-190d-4da7-ba65-aa4628b649e4)
)
(wire (pts (xy 180.34 76.2) (xy 184.15 76.2))
(stroke (width 0) (type default))
(uuid 4306b309-ae4e-439e-b157-a36172d384e9)
)
(wire (pts (xy 270.51 76.2) (xy 270.51 73.66))
(stroke (width 0) (type default))
(uuid 43980aa8-6e37-4aa6-ba07-4eb87a7b8e80)
)
(wire (pts (xy 170.18 68.58) (xy 172.72 68.58))
(stroke (width 0) (type default))
(uuid 4533ca25-b2e7-4a6e-8db1-0fbb9addb810)
)
(wire (pts (xy 158.75 86.36) (xy 158.75 88.9))
(stroke (width 0) (type default))
(uuid 456ea132-0a48-424e-bae8-7365ca3965d4)
)
(wire (pts (xy 55.88 46.99) (xy 66.04 46.99))
(stroke (width 0) (type default))
(uuid 48a7f3eb-933d-413d-ada3-8842af903de6)
)
(wire (pts (xy 172.72 68.58) (xy 172.72 73.66))
(stroke (width 0) (type default))
(uuid 48ebfc9a-e1e1-4ac1-9b58-e94e41be44dd)
)
(wire (pts (xy 158.75 91.44) (xy 158.75 92.71))
(stroke (width 0) (type default))
(uuid 49fb5288-7008-4ec3-a410-096b58bf2c2b)
)
(wire (pts (xy 76.2 46.99) (xy 92.71 46.99))
(stroke (width 0) (type default))
(uuid 4ca2ccf2-ff7c-49e7-ba69-b2503f21942d)
)
(wire (pts (xy 250.19 73.66) (xy 240.03 73.66))
(stroke (width 0) (type default))
(uuid 4f9290b7-73bb-4189-97ee-ceda2de59130)
)
(wire (pts (xy 119.38 83.82) (xy 119.38 81.28))
(stroke (width 0) (type default))
(uuid 50432194-e99f-43d3-8ed0-10c8cd0de0d4)
)
(wire (pts (xy 184.15 99.06) (xy 186.69 99.06))
(stroke (width 0) (type default))
(uuid 53ec6594-31b0-4edb-ace7-776d4cf3fff4)
)
(wire (pts (xy 124.46 59.69) (xy 113.03 59.69))
(stroke (width 0) (type default))
(uuid 548c8ee3-2b09-4cce-98ef-9de982bfd603)
)
(wire (pts (xy 92.71 73.66) (xy 92.71 90.17))
(stroke (width 0) (type default))
(uuid 555f038c-29c4-4f4c-9ea9-1e6a202438d4)
)
(wire (pts (xy 167.64 81.28) (xy 167.64 92.71))
(stroke (width 0) (type default))
(uuid 58ebcb74-fa0d-4bce-bd3a-abe17dc87724)
)
(wire (pts (xy 124.46 68.58) (xy 133.35 68.58))
(stroke (width 0) (type default))
(uuid 5b17e7cb-d21c-4b53-810b-3264b5935806)
)
(wire (pts (xy 201.93 73.66) (xy 210.82 73.66))
(stroke (width 0) (type default))
(uuid 5b1df148-3e7d-42f1-bd28-472adcecf3c9)
)
(wire (pts (xy 113.03 58.42) (xy 113.03 59.69))
(stroke (width 0) (type default))
(uuid 5c1ee783-1c9d-4012-91d4-1f67bc3fb82d)
)
(wire (pts (xy 195.58 107.95) (xy 189.23 107.95))
(stroke (width 0) (type default))
(uuid 6644e0b0-0981-4033-afc5-06b15d63c538)
)
(wire (pts (xy 31.75 46.99) (xy 45.72 46.99))
(stroke (width 0) (type default))
(uuid 6b763bbf-ac61-408c-b3b9-65884ae9ecfc)
)
(wire (pts (xy 195.58 104.14) (xy 195.58 107.95))
(stroke (width 0) (type default))
(uuid 6beff6e6-fff7-4dfb-bcbb-55a204f0c8ad)
)
(wire (pts (xy 175.26 102.87) (xy 175.26 99.06))
(stroke (width 0) (type default))
(uuid 6bfbdbfd-6c23-480c-b240-698e6fcb855a)
)
(wire (pts (xy 113.03 46.99) (xy 113.03 50.8))
(stroke (width 0) (type default))
(uuid 6ca76775-1e31-4418-b8e9-3a6bc34587dc)
)
(wire (pts (xy 210.82 96.52) (xy 210.82 92.71))
(stroke (width 0) (type default))
(uuid 6e825d2a-7a2f-4afe-a348-1e9a2bbf414d)
)
(wire (pts (xy 124.46 68.58) (xy 124.46 59.69))
(stroke (width 0) (type default))
(uuid 70b32a29-2857-4dfc-810c-3d271197ed23)
)
(wire (pts (xy 184.15 76.2) (xy 184.15 77.47))
(stroke (width 0) (type default))
(uuid 7218a806-8b4c-414a-962c-69bcd609da71)
)
(wire (pts (xy 167.64 92.71) (xy 205.74 92.71))
(stroke (width 0) (type default))
(uuid 726b3f70-3308-4316-a317-75c278c05ac4)
)
(wire (pts (xy 165.1 83.82) (xy 165.1 102.87))
(stroke (width 0) (type default))
(uuid 734ee8e1-e71e-49ff-a003-0c917cf169b1)
)
(wire (pts (xy 129.54 86.36) (xy 133.35 86.36))
(stroke (width 0) (type default))
(uuid 7b4ecd5b-4145-4c2a-b60c-d3fb55a3c592)
)
(wire (pts (xy 154.94 92.71) (xy 158.75 92.71))
(stroke (width 0) (type default))
(uuid 7cc62f87-40f4-4135-98c7-1982756b5c92)
)
(wire (pts (xy 194.31 73.66) (xy 184.15 73.66))
(stroke (width 0) (type default))
(uuid 7cd7c4ff-2ca6-40a5-b16a-93efcc6469e3)
)
(wire (pts (xy 231.14 73.66) (xy 231.14 76.2))
(stroke (width 0) (type default))
(uuid 7e8ab1ec-2e85-4cb0-94f6-4a03c6806117)
)
(wire (pts (xy 66.04 46.99) (xy 76.2 46.99))
(stroke (width 0) (type default))
(uuid 7eb5f145-38b4-4315-9154-5baadee22af4)
)
(wire (pts (xy 195.58 104.14) (xy 205.74 104.14))
(stroke (width 0) (type default))
(uuid 7ebeb31a-bab3-4353-b664-eca2ad2b9616)
)
(wire (pts (xy 34.29 49.53) (xy 34.29 52.07))
(stroke (width 0) (type default))
(uuid 7f25ee4b-25fb-4976-acbe-5f0bc95ec740)
)
(wire (pts (xy 175.26 107.95) (xy 175.26 102.87))
(stroke (width 0) (type default))
(uuid 8ddc04a1-d863-4f52-9c98-d7d60ce4d76f)
)
(wire (pts (xy 154.94 81.28) (xy 167.64 81.28))
(stroke (width 0) (type default))
(uuid 8edddb40-68a1-4f57-8f9a-81f4231eee8f)
)
(wire (pts (xy 205.74 104.14) (xy 205.74 92.71))
(stroke (width 0) (type default))
(uuid 8f046bec-3029-4c8e-847c-2c6fd87c416e)
)
(wire (pts (xy 184.15 68.58) (xy 184.15 73.66))
(stroke (width 0) (type default))
(uuid 8f5702c9-f634-40d0-9805-599a82293534)
)
(wire (pts (xy 217.17 74.93) (xy 217.17 73.66))
(stroke (width 0) (type default))
(uuid 9198a2e7-4947-4a25-aaec-428d050ab316)
)
(wire (pts (xy 240.03 73.66) (xy 231.14 73.66))
(stroke (width 0) (type default))
(uuid 9231eb4c-7e92-4c70-a56b-4c8e08b78dab)
)
(wire (pts (xy 165.1 102.87) (xy 175.26 102.87))
(stroke (width 0) (type default))
(uuid 92f0dc2d-f871-4702-9f9d-de16d9d077c5)
)
(wire (pts (xy 133.35 83.82) (xy 119.38 83.82))
(stroke (width 0) (type default))
(uuid 97118ec1-7f03-4716-bb35-8d5867a8bf1d)
)
(wire (pts (xy 250.19 73.66) (xy 250.19 76.2))
(stroke (width 0) (type default))
(uuid 973f847c-cf79-44bc-922c-1bc18191dc5e)
)
(wire (pts (xy 76.2 48.26) (xy 76.2 46.99))
(stroke (width 0) (type default))
(uuid 989c027f-2dbc-4253-9179-fe0c15eed4e8)
)
(wire (pts (xy 154.94 88.9) (xy 158.75 88.9))
(stroke (width 0) (type default))
(uuid 99322e30-05d3-4983-8f82-3bbca334a9f9)
)
(wire (pts (xy 172.72 73.66) (xy 154.94 73.66))
(stroke (width 0) (type default))
(uuid a25fc85d-fbf6-4924-a564-b27c64d48ee0)
)
(wire (pts (xy 195.58 99.06) (xy 195.58 104.14))
(stroke (width 0) (type default))
(uuid a2a03acd-cb63-4b36-88bc-bcf6af212647)
)
(wire (pts (xy 157.48 68.58) (xy 154.94 68.58))
(stroke (width 0) (type default))
(uuid a62a86a6-7ece-4784-bf0a-f49ea38ff052)
)
(wire (pts (xy 217.17 82.55) (xy 217.17 83.82))
(stroke (width 0) (type default))
(uuid acb77c94-ded4-4b85-9ce6-15390463f21c)
)
(wire (pts (xy 121.92 86.36) (xy 119.38 86.36))
(stroke (width 0) (type default))
(uuid ae478c63-5a2f-43c6-8a15-73a1519daa48)
)
(wire (pts (xy 119.38 81.28) (xy 121.92 81.28))
(stroke (width 0) (type default))
(uuid af457815-9f11-4ba6-a56e-86e90296d43e)
)
(wire (pts (xy 158.75 88.9) (xy 158.75 91.44))
(stroke (width 0) (type default))
(uuid b2f4357d-f8f2-40d6-bd2d-1faa6dbda5d9)
)
(wire (pts (xy 205.74 92.71) (xy 210.82 92.71))
(stroke (width 0) (type default))
(uuid b6aa15b7-49a6-48e7-a580-b4906debb5f4)
)
(wire (pts (xy 92.71 50.8) (xy 92.71 46.99))
(stroke (width 0) (type default))
(uuid b9070cc1-97b8-45e4-a4b4-bad90d5f1850)
)
(wire (pts (xy 194.31 99.06) (xy 195.58 99.06))
(stroke (width 0) (type default))
(uuid ba7f9e4e-11d2-42db-b42d-4cebe6291b76)
)
(wire (pts (xy 31.75 49.53) (xy 34.29 49.53))
(stroke (width 0) (type default))
(uuid c0640f2a-9cf9-4ceb-9ef1-da027fd8ed6f)
)
(wire (pts (xy 119.38 86.36) (xy 119.38 90.17))
(stroke (width 0) (type default))
(uuid c2275868-a9c4-454d-9319-48dddf1d5a69)
)
(wire (pts (xy 184.15 76.2) (xy 184.15 73.66))
(stroke (width 0) (type default))
(uuid c368ead9-db77-42aa-a841-2828fab5db92)
)
(wire (pts (xy 276.86 76.2) (xy 274.32 76.2))
(stroke (width 0) (type default))
(uuid c7b90aac-de44-48ff-b304-f140ff18fdd8)
)
(wire (pts (xy 92.71 46.99) (xy 113.03 46.99))
(stroke (width 0) (type default))
(uuid cdcda006-99bb-4593-b372-208d5ef540df)
)
(wire (pts (xy 92.71 58.42) (xy 92.71 73.66))
(stroke (width 0) (type default))
(uuid cdf70aeb-5217-460f-a939-6e8ae59c75ab)
)
(wire (pts (xy 210.82 83.82) (xy 210.82 92.71))
(stroke (width 0) (type default))
(uuid d5af108d-2baf-42b5-b004-4cd4e429e541)
)
(wire (pts (xy 184.15 58.42) (xy 184.15 46.99))
(stroke (width 0) (type default))
(uuid db6da907-7c74-4e56-820d-7b51648a57a8)
)
(wire (pts (xy 270.51 73.66) (xy 276.86 73.66))
(stroke (width 0) (type default))
(uuid de7d0cb9-0559-4032-9c0f-206a9c441d80)
)
(wire (pts (xy 240.03 73.66) (xy 240.03 76.2))
(stroke (width 0) (type default))
(uuid dffe28db-f970-4faf-81c5-05de40e6865d)
)
(wire (pts (xy 119.38 86.36) (xy 119.38 83.82))
(stroke (width 0) (type default))
(uuid e13a913a-ff45-4c08-8bc1-686726dc56b8)