-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPCIe.kicad_sch
2198 lines (2151 loc) · 90.1 KB
/
PCIe.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 a0943e33-5217-4cb2-9cb6-2c232f98dc8e)
(paper "A4")
(title_block
(title "Compute Module 4 IO Board - PCIe")
(rev "1")
(company "© 2020-2022 Raspberry Pi Ltd (formerly Raspberry Pi (Trading) Ltd.)")
(comment 1 "www.raspberrypi.com")
)
(lib_symbols
(symbol "CM4IO:AP64351" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 8.89 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AP64351" (id 1) (at 1.27 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias" (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 "AP64351_0_1"
(rectangle (start -5.08 5.08) (end 6.35 -7.62)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "AP64351_1_1"
(pin passive line (at -7.62 2.54 0) (length 2.54)
(name "BST" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -7.62 0 0) (length 2.54)
(name "VIN" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -2.54 0) (length 2.54)
(name "EN" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 -5.08 0) (length 2.54)
(name "SS" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 8.89 -5.08 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 8.89 -2.54 180) (length 2.54)
(name "COMP" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 8.89 0 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin output line (at 8.89 2.54 180) (length 2.54)
(name "SW" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -10.16 90) (length 2.54)
(name "EP" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "CM4IO:PCIe-x1" (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at -13.97 36.83 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "PCIe-x1" (id 1) (at -5.08 -13.97 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 "PCIe-x1_0_0"
(pin passive line (at 10.16 33.02 180) (length 5.08)
(name "nPRSNT1" (effects (font (size 1.27 1.27))))
(number "A1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 10.16 180) (length 5.08)
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "A10" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 7.62 180) (length 5.08)
(name "nPERST" (effects (font (size 1.27 1.27))))
(number "A11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 5.08 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 2.54 180) (length 5.08)
(name "REFCLK+" (effects (font (size 1.27 1.27))))
(number "A13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 0 180) (length 5.08)
(name "REFCLK-" (effects (font (size 1.27 1.27))))
(number "A14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 -2.54 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 -5.08 180) (length 5.08)
(name "PERP0" (effects (font (size 1.27 1.27))))
(number "A16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 -7.62 180) (length 5.08)
(name "PERN0" (effects (font (size 1.27 1.27))))
(number "A17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 -10.16 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 30.48 180) (length 5.08)
(name "+12V" (effects (font (size 1.27 1.27))))
(number "A2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 27.94 180) (length 5.08)
(name "+12V" (effects (font (size 1.27 1.27))))
(number "A3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 25.4 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "A4" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 22.86 180) (length 5.08)
(name "TCK" (effects (font (size 1.27 1.27))))
(number "A5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 20.32 180) (length 5.08)
(name "TDI" (effects (font (size 1.27 1.27))))
(number "A6" (effects (font (size 1.27 1.27))))
)
(pin output line (at 10.16 17.78 180) (length 5.08)
(name "TD0" (effects (font (size 1.27 1.27))))
(number "A7" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 15.24 180) (length 5.08)
(name "TMS" (effects (font (size 1.27 1.27))))
(number "A8" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 10.16 12.7 180) (length 5.08)
(name "+3.3V" (effects (font (size 1.27 1.27))))
(number "A9" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 33.02 0) (length 5.08)
(name "+12v" (effects (font (size 1.27 1.27))))
(number "B1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 10.16 0) (length 5.08)
(name "+3.3vAUX" (effects (font (size 1.27 1.27))))
(number "B10" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -19.05 7.62 0) (length 5.08)
(name "nWAKE" (effects (font (size 1.27 1.27))))
(number "B11" (effects (font (size 1.27 1.27))))
)
(pin open_collector line (at -19.05 5.08 0) (length 5.08)
(name "nCLKREQ" (effects (font (size 1.27 1.27))))
(number "B12" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 2.54 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -19.05 0 0) (length 5.08)
(name "PETP0" (effects (font (size 1.27 1.27))))
(number "B14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -19.05 -2.54 0) (length 5.08)
(name "PETN0" (effects (font (size 1.27 1.27))))
(number "B15" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 -5.08 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B16" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -19.05 -7.62 0) (length 5.08)
(name "nPRSNT2" (effects (font (size 1.27 1.27))))
(number "B17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 -10.16 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 30.48 0) (length 5.08)
(name "+12v" (effects (font (size 1.27 1.27))))
(number "B2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 27.94 0) (length 5.08)
(name "+12v" (effects (font (size 1.27 1.27))))
(number "B3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 25.4 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -19.05 22.86 0) (length 5.08)
(name "SMCLK" (effects (font (size 1.27 1.27))))
(number "B5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -19.05 20.32 0) (length 5.08)
(name "SMDAT" (effects (font (size 1.27 1.27))))
(number "B6" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 17.78 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "B7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -19.05 15.24 0) (length 5.08)
(name "+3.3v" (effects (font (size 1.27 1.27))))
(number "B8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -19.05 12.7 0) (length 5.08)
(name "nTRST" (effects (font (size 1.27 1.27))))
(number "B9" (effects (font (size 1.27 1.27))))
)
)
(symbol "PCIe-x1_0_1"
(rectangle (start -13.97 35.56) (end 5.08 -12.7)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "Connector:TestPoint" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "TP" (id 0) (at 0 6.858 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "TestPoint" (id 1) (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 5.08 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "test point tp" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "test point" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Pin* Test*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "TestPoint_0_1"
(circle (center 0 3.302) (radius 0.762)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "TestPoint_1_1"
(pin passive line (at 0 0 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (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 "Device:CP" (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" "CP" (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" "Polarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "CP_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(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" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power: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 "pspice:INDUCTOR" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "L" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "INDUCTOR" (id 1) (at 0 -1.27 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" "simulation" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Inductor symbol for simulation only" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "INDUCTOR_0_1"
(arc (start -2.54 0) (mid -3.81 1.27) (end -5.08 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 0 0) (mid -1.27 1.27) (end -2.54 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 2.54 0) (mid 1.27 1.27) (end 0 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(arc (start 5.08 0) (mid 3.81 1.27) (end 2.54 0)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "INDUCTOR_1_1"
(pin input line (at -6.35 0 0) (length 1.27)
(name "1" (effects (font (size 0.762 0.762))))
(number "1" (effects (font (size 0.762 0.762))))
)
(pin input line (at 6.35 0 180) (length 1.27)
(name "2" (effects (font (size 0.762 0.762))))
(number "2" (effects (font (size 0.762 0.762))))
)
)
)
)
(junction (at 157.734 152.654) (diameter 1.016) (color 0 0 0 0)
(uuid 02103ae5-54fb-4b80-a4c2-6096261b830e)
)
(junction (at 162.56 60.96) (diameter 1.016) (color 0 0 0 0)
(uuid 043d2135-ee0b-4418-abd9-474991e268c8)
)
(junction (at 163.449 152.654) (diameter 1.016) (color 0 0 0 0)
(uuid 18e9f180-adaa-4063-b433-8c7af5ab470b)
)
(junction (at 162.56 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid 1e275933-5be0-491f-88b9-c7c31ea8dbc6)
)
(junction (at 130.81 76.2) (diameter 1.016) (color 0 0 0 0)
(uuid 1e747565-f7ad-415f-b1ff-c794f09a92cc)
)
(junction (at 228.854 124.714) (diameter 1.016) (color 0 0 0 0)
(uuid 20d20a6c-03cf-4a4c-8a77-7b10171706e4)
)
(junction (at 145.034 152.654) (diameter 1.016) (color 0 0 0 0)
(uuid 2410cb12-10cd-45ed-a4e0-13df7fd75755)
)
(junction (at 114.808 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid 2aa993cf-8d94-4933-945f-a8ecf80ac0d1)
)
(junction (at 127.254 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid 2cb074dd-6c48-4e02-bb35-805b51be3a4d)
)
(junction (at 218.694 117.094) (diameter 1.016) (color 0 0 0 0)
(uuid 3c27dc86-1701-4cfb-9ebf-f044da440656)
)
(junction (at 165.1 50.8) (diameter 1.016) (color 0 0 0 0)
(uuid 42770697-efd8-47a4-998a-d1be32b61634)
)
(junction (at 91.44 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid 42a0b0eb-418d-4a6c-b34a-c60d1edfa6b1)
)
(junction (at 130.81 63.5) (diameter 1.016) (color 0 0 0 0)
(uuid 456f3608-87cf-433a-aedd-b2464bdf3711)
)
(junction (at 183.134 136.144) (diameter 1.016) (color 0 0 0 0)
(uuid 46088382-79ac-4353-aa89-fc04c12ff305)
)
(junction (at 114.808 138.684) (diameter 1.016) (color 0 0 0 0)
(uuid 4bbfefb7-b361-4f0e-bef5-16e1f34225fb)
)
(junction (at 78.232 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid 5032b52d-fb14-4fb1-916e-c43f68350d75)
)
(junction (at 146.304 152.654) (diameter 1.016) (color 0 0 0 0)
(uuid 55dcd4b1-3ec3-494e-849b-67d739100f19)
)
(junction (at 65.786 138.684) (diameter 1.016) (color 0 0 0 0)
(uuid 59b21f1a-4908-44f3-b1d8-8559abe21d1e)
)
(junction (at 103.124 138.684) (diameter 1.016) (color 0 0 0 0)
(uuid 614a403a-474a-4306-b606-97f15c564ef8)
)
(junction (at 65.786 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid 6620ece5-b552-42e3-b4a7-a863bb396ec1)
)
(junction (at 228.854 117.094) (diameter 1.016) (color 0 0 0 0)
(uuid 6dc2201e-16f3-4f96-8313-5f06f3f5c55a)
)
(junction (at 208.534 124.714) (diameter 1.016) (color 0 0 0 0)
(uuid 703f336d-49ef-4e14-8ab0-abbb7a306402)
)
(junction (at 155.194 117.094) (diameter 1.016) (color 0 0 0 0)
(uuid 71721ead-7191-497d-a00f-8fb300e9f5c2)
)
(junction (at 172.974 152.654) (diameter 1.016) (color 0 0 0 0)
(uuid 732f4616-9686-45b7-995e-72519f23bdcd)
)
(junction (at 132.08 33.02) (diameter 1.016) (color 0 0 0 0)
(uuid 7ad4f157-8206-4a71-b933-a1f876b6f131)
)
(junction (at 218.694 124.714) (diameter 1.016) (color 0 0 0 0)
(uuid 7ed990c4-589c-4cbf-bb60-54f487a656d0)
)
(junction (at 103.124 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid 86071cfe-1543-479d-bd7a-9553562bc5e9)
)
(junction (at 132.08 35.56) (diameter 1.016) (color 0 0 0 0)
(uuid 89cd789a-84c0-474b-9887-eaaa1a706f44)
)
(junction (at 162.56 68.58) (diameter 1.016) (color 0 0 0 0)
(uuid 919646d5-113f-4e62-80f4-2ec58c8b72a8)
)
(junction (at 78.232 138.684) (diameter 1.016) (color 0 0 0 0)
(uuid 948e17a4-3323-4e8b-8f06-cbf9d51cce76)
)
(junction (at 183.134 133.604) (diameter 1.016) (color 0 0 0 0)
(uuid 95b30749-aec6-48f0-8358-fd329add7197)
)
(junction (at 208.534 117.094) (diameter 1.016) (color 0 0 0 0)
(uuid 9a9a81d4-4b02-4e51-b077-4c33c37c3f03)
)
(junction (at 129.54 50.8) (diameter 1.016) (color 0 0 0 0)
(uuid a103e322-082e-4ef6-b79f-47cebf258ece)
)
(junction (at 183.134 117.094) (diameter 1.016) (color 0 0 0 0)
(uuid abe00674-f224-458e-b299-3c29db445920)
)
(junction (at 165.1 43.18) (diameter 1.016) (color 0 0 0 0)
(uuid ac3af095-2965-4605-bd85-c6fa579f63d9)
)
(junction (at 91.44 138.684) (diameter 1.016) (color 0 0 0 0)
(uuid ad8e30e7-0cff-47ce-9ecc-a330acae07ee)
)
(junction (at 134.239 131.064) (diameter 1.016) (color 0 0 0 0)
(uuid b0e002dd-b1fa-41a7-b5d3-8a6b1ac4a333)
)
(junction (at 129.54 53.34) (diameter 1.016) (color 0 0 0 0)
(uuid b2325eae-af62-4e68-9662-6f6e3d96e8a5)
)
(junction (at 165.1 53.34) (diameter 1.016) (color 0 0 0 0)
(uuid b8e5fc14-76d4-4e5d-851b-fd5f4482d6c8)
)
(junction (at 165.1 45.72) (diameter 1.016) (color 0 0 0 0)
(uuid d28e5e59-d0f8-4887-a713-d142448c8207)
)
(junction (at 163.449 133.604) (diameter 1.016) (color 0 0 0 0)
(uuid d627ad9d-77b8-4964-bd3a-daf6ffeefcc1)
)
(junction (at 161.29 35.56) (diameter 1.016) (color 0 0 0 0)
(uuid d8004053-a96a-4db9-be88-aefe8064c65c)
)
(junction (at 183.134 123.444) (diameter 1.016) (color 0 0 0 0)
(uuid dd84530f-c5fe-45e5-8faf-e2719fcb14cd)
)
(junction (at 130.81 71.12) (diameter 1.016) (color 0 0 0 0)
(uuid e3425811-e111-437c-8bf3-b2d34027d572)
)
(junction (at 237.744 117.094) (diameter 1.016) (color 0 0 0 0)
(uuid ef7e2720-82b6-4019-98b0-a817c76185f2)
)
(junction (at 130.81 48.26) (diameter 1.016) (color 0 0 0 0)
(uuid f62776f2-b1bc-4eb1-b10e-80f3fbeb02b2)
)
(no_connect (at 132.08 73.66) (uuid 173c0ec0-a585-41ac-b74a-281413a04c6b))
(no_connect (at 132.08 43.18) (uuid 3a86913b-d325-469d-99bf-10362833b6d6))
(no_connect (at 161.29 33.02) (uuid 99921c9c-f70f-424f-91b9-ff64e00621a6))
(no_connect (at 161.29 48.26) (uuid aea808cc-4bf1-43cf-a5ab-50c99cef3fb0))
(no_connect (at 132.08 45.72) (uuid cf2b32de-2b9d-4f88-bf8d-de5c55282622))
(no_connect (at 132.08 58.42) (uuid e1e708ba-caba-4519-94a2-17f6e949ea23))
(wire (pts (xy 91.44 138.684) (xy 103.124 138.684))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 01baf5d7-8575-49fa-b750-4bb78f7ed398)
)
(wire (pts (xy 161.29 38.1) (xy 161.29 35.56))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 022b0300-c8f8-48b2-9d2c-ae80ff824354)
)
(wire (pts (xy 127.254 131.064) (xy 134.239 131.064))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 02eeeaf0-02f1-49a3-b288-95e452374a4f)
)
(wire (pts (xy 163.449 133.604) (xy 163.449 141.224))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 03180fc3-312d-4869-989b-36a0aa8fbbab)
)
(wire (pts (xy 132.969 117.094) (xy 134.239 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 06d89049-bb08-4c35-aa48-22c05c01103e)
)
(wire (pts (xy 183.134 123.444) (xy 193.294 123.444))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0a523061-715f-43ef-b1dd-3d745a3e7e1d)
)
(wire (pts (xy 161.29 43.18) (xy 165.1 43.18))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0d587a0a-c67c-4fed-9eec-791a57f2bb2e)
)
(wire (pts (xy 132.08 38.1) (xy 132.08 35.56))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0e1e548c-ec74-46cb-aa6e-5e8839149d3f)
)
(wire (pts (xy 183.134 136.144) (xy 183.134 143.764))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0e86af0a-1fe7-477d-99bc-1729cff58217)
)
(wire (pts (xy 163.449 152.654) (xy 172.974 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 116d155f-066d-4394-8897-f470a7ea739b)
)
(wire (pts (xy 136.779 136.144) (xy 136.779 141.224))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 12a70400-b291-4d8b-93c0-ccb9a5f9af47)
)
(wire (pts (xy 161.29 63.5) (xy 175.26 63.5))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 135e3642-358a-4af8-829a-e9d8d5db6f15)
)
(wire (pts (xy 130.81 63.5) (xy 130.81 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1699bc09-f09e-4839-81f2-9ca65ce464d7)
)
(wire (pts (xy 132.969 118.999) (xy 132.969 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 16fca551-3571-4517-ab94-7c1b9d1a3ce1)
)
(wire (pts (xy 130.81 76.2) (xy 130.81 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 186cf002-bafb-4518-a4f7-985d13883de2)
)
(wire (pts (xy 183.134 117.094) (xy 208.534 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 19cf3f75-846d-40c4-99e9-986cfa896c10)
)
(wire (pts (xy 134.239 133.604) (xy 138.684 133.604))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1be57cee-9843-43f2-b029-ce77e4d23583)
)
(wire (pts (xy 130.81 71.12) (xy 130.81 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 206bfdd0-417d-49a5-beaa-7015cee73d7c)
)
(wire (pts (xy 132.08 71.12) (xy 130.81 71.12))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 21fe163d-5c16-42b5-8408-6e6165b7b3e7)
)
(wire (pts (xy 180.594 117.094) (xy 183.134 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 22ce5f01-00e9-4ddd-a65e-815d60dce969)
)
(polyline (pts (xy 93.98 95.25) (xy 93.98 20.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 241ce13e-c8b1-478b-8ebc-cce2a81df2bb)
)
(wire (pts (xy 193.294 133.604) (xy 193.294 132.334))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 24f4ca8a-b89e-4b56-bcc7-8bd43bb3d11a)
)
(wire (pts (xy 162.56 76.2) (xy 162.56 80.01))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2da0c218-f525-488e-ae52-b37371a9c8c4)
)
(wire (pts (xy 155.194 133.604) (xy 163.449 133.604))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2fca283b-07ad-4fe4-8cca-34dc149535e1)
)
(wire (pts (xy 136.779 148.844) (xy 136.779 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 30834466-df1e-45cc-9752-de058ac1c411)
)
(wire (pts (xy 52.324 138.684) (xy 52.324 142.494))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 30aad354-f659-4962-8ba3-32f351d490c0)
)
(wire (pts (xy 183.134 133.604) (xy 193.294 133.604))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3324d408-a5b9-4560-951d-d219dc33ad00)
)
(wire (pts (xy 161.29 55.88) (xy 165.1 55.88))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 340a1653-d3fe-441a-a00c-6fadb8816e05)
)
(wire (pts (xy 193.294 123.444) (xy 193.294 124.714))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 359d092c-c359-42b7-9d21-55f013d66e0d)
)
(wire (pts (xy 129.54 53.34) (xy 129.54 55.88))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 365f8d25-a297-4f89-a07e-59a6a6975ec7)
)
(wire (pts (xy 161.29 66.04) (xy 175.26 66.04))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 378e526d-5a27-490c-9809-30a858151ca1)
)
(wire (pts (xy 162.56 60.96) (xy 162.56 68.58))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 398ac0ce-a6d7-46e9-b0d2-f38a583f93bc)
)
(wire (pts (xy 161.29 45.72) (xy 165.1 45.72))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3ada789a-8253-4c52-ac20-d30b9efe4f49)
)
(wire (pts (xy 218.694 117.094) (xy 228.854 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3be24049-710e-4c21-b592-150779e27859)
)
(wire (pts (xy 161.29 35.56) (xy 171.45 35.56))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 40ca69cc-5122-41ab-a4ee-b5af8c1d68be)
)
(wire (pts (xy 129.54 50.8) (xy 132.08 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4206ccdf-4d5e-4a49-85ca-882972e6150d)
)
(wire (pts (xy 162.56 76.2) (xy 161.29 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4274c955-0ff2-4ffd-b308-32c7740d7229)
)
(wire (pts (xy 161.29 73.66) (xy 175.26 73.66))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 46331abf-ef2b-44f7-8e7b-2addf2a04973)
)
(wire (pts (xy 155.194 117.094) (xy 167.894 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4713d2a5-700c-4223-8e8c-bc814fca4fb1)
)
(wire (pts (xy 162.56 68.58) (xy 162.56 76.2))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4b680c6f-6bf5-42bc-954e-399a8095278c)
)
(wire (pts (xy 114.808 131.064) (xy 127.254 131.064))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4cea73b9-aa6a-4e61-a258-be68f53395e5)
)
(wire (pts (xy 218.694 124.714) (xy 208.534 124.714))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4e171e27-0952-4a5f-bd26-afc8662a6d9a)
)
(wire (pts (xy 65.786 138.684) (xy 78.232 138.684))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4f5a593d-b109-4ea1-9106-1a00245b0fa7)
)
(wire (pts (xy 78.232 131.064) (xy 91.44 131.064))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5338c7e8-2840-4211-817d-a6a02bfa9066)
)
(wire (pts (xy 161.29 60.96) (xy 162.56 60.96))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5341f75f-445e-45d6-8d7c-693459db4b8f)
)
(wire (pts (xy 172.974 152.654) (xy 183.134 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5760e242-d884-4525-b413-5cdf8762836e)
)
(wire (pts (xy 157.734 131.064) (xy 157.734 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 57e60628-6d13-49e5-8e0f-1cf31bada668)
)
(wire (pts (xy 155.194 117.094) (xy 155.194 128.524))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 59ef6ce2-45ac-469c-a048-8dda8c329f97)
)
(wire (pts (xy 183.134 133.604) (xy 183.134 136.144))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5d2142a2-f5ce-4a20-b509-6fc8dca8fa51)
)
(wire (pts (xy 132.08 60.96) (xy 116.84 60.96))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 60441d93-ceb3-4109-933b-3234e6fc19fa)
)
(wire (pts (xy 183.134 132.334) (xy 183.134 133.604))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6335d0a4-3503-455f-8a16-33bc2cc40641)
)
(polyline (pts (xy 265.43 101.6) (xy 265.43 161.29))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 64b46f63-6e09-4261-974e-314eb1064777)
)
(polyline (pts (xy 93.98 20.32) (xy 205.74 20.32))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 64e4ea00-3ecf-4df6-ac5f-77cf4ced88fb)
)
(wire (pts (xy 183.134 117.094) (xy 183.134 123.444))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65778b97-4bd1-4830-a540-c2ec5320ce4e)
)
(wire (pts (xy 237.744 117.094) (xy 253.9492 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 659c7120-8885-4090-b510-a594ad335b4b)
)
(wire (pts (xy 129.54 55.88) (xy 132.08 55.88))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 65d3983e-1c45-41bc-a3b4-bd022070289f)
)
(wire (pts (xy 165.1 55.88) (xy 165.1 53.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 69f84cd4-9488-4b2f-b15f-3d9e11632cf3)
)
(wire (pts (xy 132.08 35.56) (xy 132.08 33.02))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6bcf9f76-ef05-4af0-a533-4c772475fd58)
)
(wire (pts (xy 163.449 148.844) (xy 163.449 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6d63f474-3068-4498-806c-b83853047f41)
)
(polyline (pts (xy 46.99 101.6) (xy 265.43 101.6))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 708692df-f1ed-4dfd-8869-70b93a8004bc)
)
(wire (pts (xy 157.734 152.654) (xy 163.449 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 711e8266-1663-4d18-8cd6-839cb071c47e)
)
(wire (pts (xy 183.134 123.444) (xy 183.134 124.714))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7290aba7-9701-4a7f-9efd-a4c38f1a6ef8)
)
(wire (pts (xy 134.239 131.064) (xy 134.239 133.604))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7629cb9f-5c7a-4585-8c5f-2f63280a0e51)
)
(wire (pts (xy 130.81 40.64) (xy 130.81 48.26))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 76d5873b-ee9f-4286-852b-3e416f5e58d4)
)
(wire (pts (xy 130.81 48.26) (xy 130.81 63.5))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 792685e9-fe40-4fbf-a788-175ee65815ee)
)
(wire (pts (xy 129.54 53.34) (xy 132.08 53.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7d1243ca-b23d-40f1-a05b-8212e796f3b7)
)
(wire (pts (xy 132.08 63.5) (xy 130.81 63.5))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8302248e-97db-45f0-9e4e-d0367b746f41)
)
(wire (pts (xy 132.969 128.524) (xy 138.684 128.524))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 86e8ff80-aa78-4d5e-beaa-330ad4719b0a)
)
(wire (pts (xy 163.449 133.604) (xy 172.974 133.604))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8ebf6100-3981-45dc-a269-6504480f2134)
)
(wire (pts (xy 145.034 152.654) (xy 146.304 152.654))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8ee03db8-8ad7-4bb8-92b9-76bda4b0907f)
)
(wire (pts (xy 65.786 131.064) (xy 78.232 131.064))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 908f0efd-a885-4394-a6f7-105887c97de7)
)
(wire (pts (xy 228.854 117.094) (xy 237.744 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 90eccc84-68e3-440b-b8e7-b46a28e3379b)
)
(wire (pts (xy 138.684 136.144) (xy 136.779 136.144))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 922e7e97-b300-4efc-863d-349e61465157)
)
(wire (pts (xy 118.11 50.8) (xy 129.54 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 94c92652-21ac-42f1-b571-6f41123e5974)
)
(wire (pts (xy 132.969 126.619) (xy 132.969 128.524))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 96eb5ece-27d8-4ab5-afe7-8640e2051015)
)
(wire (pts (xy 161.29 40.64) (xy 162.56 40.64))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 999751fc-78d3-4f80-b9fe-ca01ec165983)
)
(wire (pts (xy 63.119 131.064) (xy 65.786 131.064))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 99fdad4b-67df-4338-ab02-f49dc004d666)
)
(wire (pts (xy 114.808 138.684) (xy 127.254 138.684))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9c3666ff-48f7-42fc-87ea-b19fd9bff60f)
)
(wire (pts (xy 117.475 33.02) (xy 132.08 33.02))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a109695a-7a5a-4ff1-81f1-c62e064d8fdd)
)
(polyline (pts (xy 46.99 101.6) (xy 46.99 161.29))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a120ec1a-c3ea-4c4e-ad75-54278c183a82)
)
(wire (pts (xy 208.534 117.094) (xy 218.694 117.094))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a3fe4351-40c5-439f-b2ce-943ba00790a3)
)
(wire (pts (xy 161.29 50.8) (xy 165.1 50.8))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a4ccff6b-8aca-4df0-a4d8-195b1f165632)
)
(wire (pts (xy 132.08 40.64) (xy 130.81 40.64))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a623f881-bf21-4f21-bf99-f5c7db3a5968)
)
(wire (pts (xy 165.1 43.18) (xy 165.1 45.72))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a659890f-c262-401d-95e1-315d3cf4375a)
)
(wire (pts (xy 237.744 124.714) (xy 228.854 124.714))
(stroke (width 0) (type solid) (color 0 0 0 0))