-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.kicad_sch
5292 lines (5140 loc) · 184 KB
/
matrix.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 2b21a88c-dcce-4c32-b74d-cb04a08504d3)
(paper "USLetter")
(lib_symbols
(symbol "Device:D_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at -1.27 2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "D_Small" (at -3.81 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Device" "D" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Sim.Pins" "1=K 2=A" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode, small symbol" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_Small_0_1"
(polyline
(pts
(xy -0.762 -1.016)
(xy -0.762 1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.762 0)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 -1.016)
(xy -0.762 0)
(xy 0.762 1.016)
(xy 0.762 -1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_Small_1_1"
(pin passive line (at -2.54 0 0) (length 1.778)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.778)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "marbastlib-mx:MX_SW_solder" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "MX" (at 3.048 1.016 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MX_SW_solder" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "PCM_marbastlib-mx:SW_MX_1u" (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" "switch normally-open pushbutton push-button" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, normally open, two pins, 45° tilted" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MX_SW_solder_0_1"
(circle (center -1.1684 1.1684) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -0.508 2.54)
(xy 2.54 -0.508)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.016 1.016)
(xy 2.032 2.032)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 2.54)
(xy -1.524 1.524)
(xy -1.524 1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.524 -1.524)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
(xy 2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.143 -1.1938) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -2.54 2.54 0) (length 0)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -2.54 180) (length 0)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "marbastlib-mx:MX_stab" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "S" (at -5.08 6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "MX_stab" (at -5.08 3.81 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "PCM_marbastlib-mx:STAB_MX_P_6.25u" (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" "cherry mx stabilizer stab" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Cherry MX-style stabilizer" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MX_stab_0_1"
(rectangle (start -5.08 -1.524) (end -2.54 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -5.08 1.27) (end -2.54 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.826 2.794) (end -2.794 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.064 -2.286) (end -3.556 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.064 -1.778) (end 4.064 -2.286)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start -4.064 1.27) (end -3.556 2.794)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.54 -1.524) (end 5.08 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.54 1.27) (end 5.08 -2.54)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 2.794 2.794) (end 4.826 1.27)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 3.556 1.27) (end 4.064 2.794)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 4.064 -2.286) (end 3.556 -1.016)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
)
(junction (at 148.59 66.04) (diameter 0) (color 0 0 0 0)
(uuid 03857761-0b9c-4886-896d-95a51eb512b6)
)
(junction (at 148.59 48.26) (diameter 0) (color 0 0 0 0)
(uuid 062e111b-7313-43a2-b51b-66bf2096dbd0)
)
(junction (at 110.49 48.26) (diameter 0) (color 0 0 0 0)
(uuid 06d288e3-a872-46b3-8692-472336bb6218)
)
(junction (at 212.09 43.18) (diameter 0) (color 0 0 0 0)
(uuid 098b8d02-67f9-48a7-8aab-8c93c5d49da6)
)
(junction (at 135.89 66.04) (diameter 0) (color 0 0 0 0)
(uuid 09b797f0-0dff-43b0-a30e-5046812ba01c)
)
(junction (at 186.69 66.04) (diameter 0) (color 0 0 0 0)
(uuid 0a5fcb0a-d929-4d9c-9b3b-4bf5f553e751)
)
(junction (at 130.81 73.66) (diameter 0) (color 0 0 0 0)
(uuid 0bbf3b33-3fb7-4eab-9992-130fcfd2bcfa)
)
(junction (at 72.39 66.04) (diameter 0) (color 0 0 0 0)
(uuid 0bf43c16-46da-42e3-b259-933e38e9a39d)
)
(junction (at 161.29 48.26) (diameter 0) (color 0 0 0 0)
(uuid 0ef88170-a626-446c-ad9b-331a9358663a)
)
(junction (at 92.71 38.1) (diameter 0) (color 0 0 0 0)
(uuid 118ffeb6-f532-463c-bf06-e4a2e6ea8b44)
)
(junction (at 168.91 91.44) (diameter 0) (color 0 0 0 0)
(uuid 16345450-fea1-4127-b00b-76ae7e03154f)
)
(junction (at 80.01 38.1) (diameter 0) (color 0 0 0 0)
(uuid 182a710b-de8b-435c-8631-40a9a17f51a3)
)
(junction (at 41.91 91.44) (diameter 0) (color 0 0 0 0)
(uuid 1a6d74a7-d559-4ce8-9d0e-f272a08f270a)
)
(junction (at 59.69 114.3) (diameter 0) (color 0 0 0 0)
(uuid 1fad24ca-397f-434b-bcc2-759cba4ff354)
)
(junction (at 110.49 101.6) (diameter 0) (color 0 0 0 0)
(uuid 1fd0f554-2bcb-4e49-bed6-98be43d31c83)
)
(junction (at 148.59 83.82) (diameter 0) (color 0 0 0 0)
(uuid 206d975f-d670-4cc5-9927-652151f2e0a1)
)
(junction (at 207.01 36.83) (diameter 0) (color 0 0 0 0)
(uuid 21d81c7b-8985-4fa3-ae66-937974d7fa2b)
)
(junction (at 46.99 66.04) (diameter 0) (color 0 0 0 0)
(uuid 249b2552-8638-40eb-ab3a-9ad6f0d3c08d)
)
(junction (at 181.61 91.44) (diameter 0) (color 0 0 0 0)
(uuid 2527725d-fefd-4267-a9ee-98a574e0a603)
)
(junction (at 181.61 73.66) (diameter 0) (color 0 0 0 0)
(uuid 2589e75f-f3b8-4c31-ba94-b680665aa701)
)
(junction (at 186.69 119.38) (diameter 0) (color 0 0 0 0)
(uuid 25958da5-6b90-4692-9282-8f54c7fdf503)
)
(junction (at 118.11 109.22) (diameter 0) (color 0 0 0 0)
(uuid 26f76945-24df-4384-970c-49cef4277925)
)
(junction (at 67.31 38.1) (diameter 0) (color 0 0 0 0)
(uuid 2bb5e5d8-9092-479a-bc09-9339f85a1f6d)
)
(junction (at 41.91 38.1) (diameter 0) (color 0 0 0 0)
(uuid 2cd60c9d-7782-4fb4-92ed-1970549d69b5)
)
(junction (at 54.61 38.1) (diameter 0) (color 0 0 0 0)
(uuid 2db8dfc5-fd1f-4554-aa36-d3aefde00267)
)
(junction (at 59.69 83.82) (diameter 0) (color 0 0 0 0)
(uuid 2ede9b36-4524-4ca2-ad43-6d1729f6a2e3)
)
(junction (at 168.91 55.88) (diameter 0) (color 0 0 0 0)
(uuid 31c8871c-cb92-45c5-ad86-f8511bb7f5f9)
)
(junction (at 72.39 119.38) (diameter 0) (color 0 0 0 0)
(uuid 33812d77-487b-41d6-8802-0f08c2396ebd)
)
(junction (at 118.11 38.1) (diameter 0) (color 0 0 0 0)
(uuid 37f9e847-3566-4055-84fb-13519b071e16)
)
(junction (at 130.81 38.1) (diameter 0) (color 0 0 0 0)
(uuid 39b1f931-e65c-4409-98f0-d311c28d57a8)
)
(junction (at 156.21 55.88) (diameter 0) (color 0 0 0 0)
(uuid 3b09278f-6dfa-4b10-b031-cb6046369faf)
)
(junction (at 59.69 101.6) (diameter 0) (color 0 0 0 0)
(uuid 3cd69276-5f5b-4bf2-9230-f2da909b01d4)
)
(junction (at 173.99 66.04) (diameter 0) (color 0 0 0 0)
(uuid 3dca4135-0ec3-4184-b6e9-46603edb816b)
)
(junction (at 92.71 73.66) (diameter 0) (color 0 0 0 0)
(uuid 3ea0efb4-918d-4c5a-85e3-ea82f8acdd17)
)
(junction (at 67.31 109.22) (diameter 0) (color 0 0 0 0)
(uuid 3f3759d6-cef6-46e5-a4c0-111fd3b08b35)
)
(junction (at 194.31 109.22) (diameter 0) (color 0 0 0 0)
(uuid 400fc78d-0215-4d84-9dcc-0be674491482)
)
(junction (at 59.69 48.26) (diameter 0) (color 0 0 0 0)
(uuid 42e09733-a770-4dd7-9211-03ddd44a2f0d)
)
(junction (at 123.19 66.04) (diameter 0) (color 0 0 0 0)
(uuid 4603bb03-9e2f-4f94-957e-fef646c90f56)
)
(junction (at 41.91 55.88) (diameter 0) (color 0 0 0 0)
(uuid 48432c29-7e76-460e-941a-029576959833)
)
(junction (at 161.29 83.82) (diameter 0) (color 0 0 0 0)
(uuid 4b657fde-1199-438d-aa1f-7a0aeb6fdb51)
)
(junction (at 207.01 55.88) (diameter 0) (color 0 0 0 0)
(uuid 4ebf0638-05f6-468c-bc90-e771d7dbd2f1)
)
(junction (at 186.69 83.82) (diameter 0) (color 0 0 0 0)
(uuid 4f3a872f-aad7-4ab4-9ea0-d4eb1754a39d)
)
(junction (at 123.19 101.6) (diameter 0) (color 0 0 0 0)
(uuid 51898809-c102-4965-9160-cfeab78d6ce4)
)
(junction (at 54.61 109.22) (diameter 0) (color 0 0 0 0)
(uuid 58808484-3fee-4583-9290-7d376548e81b)
)
(junction (at 118.11 91.44) (diameter 0) (color 0 0 0 0)
(uuid 5b9db89b-1d71-4a40-939b-c721af70099b)
)
(junction (at 123.19 48.26) (diameter 0) (color 0 0 0 0)
(uuid 5d780441-225d-4f89-9aa1-239b2989a84a)
)
(junction (at 97.79 66.04) (diameter 0) (color 0 0 0 0)
(uuid 5da27f49-ddf7-4231-9186-24fec25797ff)
)
(junction (at 46.99 101.6) (diameter 0) (color 0 0 0 0)
(uuid 612766a4-1494-4d51-8025-a7e217ea5987)
)
(junction (at 41.91 90.17) (diameter 0) (color 0 0 0 0)
(uuid 61368a0b-752b-4096-82f1-673ca94e5022)
)
(junction (at 135.89 101.6) (diameter 0) (color 0 0 0 0)
(uuid 65cce0df-61c9-4e8e-95c5-1a0f84f4c472)
)
(junction (at 186.69 114.3) (diameter 0) (color 0 0 0 0)
(uuid 68a541f4-8314-49d0-be12-3687bcb10c25)
)
(junction (at 143.51 55.88) (diameter 0) (color 0 0 0 0)
(uuid 694646c9-6dfc-4e62-8f5c-bdfc398d90c4)
)
(junction (at 105.41 73.66) (diameter 0) (color 0 0 0 0)
(uuid 6e6beda3-c318-4f89-9aea-cf50243e8b7e)
)
(junction (at 173.99 101.6) (diameter 0) (color 0 0 0 0)
(uuid 6f7bfb13-4f65-4e60-b24a-69c2cd4713fe)
)
(junction (at 105.41 38.1) (diameter 0) (color 0 0 0 0)
(uuid 731373cd-40f8-4eda-b7f4-02eb8caf6d95)
)
(junction (at 97.79 101.6) (diameter 0) (color 0 0 0 0)
(uuid 7493de13-7f59-4777-9dfe-a175c191425c)
)
(junction (at 67.31 55.88) (diameter 0) (color 0 0 0 0)
(uuid 7dce5ca1-946a-4685-8d33-2c07361072c4)
)
(junction (at 181.61 55.88) (diameter 0) (color 0 0 0 0)
(uuid 7e8f13eb-839c-4609-9d06-9456c9fccdf3)
)
(junction (at 125.73 132.08) (diameter 0) (color 0 0 0 0)
(uuid 7ecd1f9a-1a98-4f8a-9d71-a9a1dd2e8aac)
)
(junction (at 168.91 73.66) (diameter 0) (color 0 0 0 0)
(uuid 7edea334-8ca0-480d-a640-5a2410e1a737)
)
(junction (at 54.61 55.88) (diameter 0) (color 0 0 0 0)
(uuid 7ee4dc1e-9da9-469c-a1c2-f07f635380c6)
)
(junction (at 135.89 48.26) (diameter 0) (color 0 0 0 0)
(uuid 81634049-4bf1-48c1-bef2-6f0c2eba4e12)
)
(junction (at 118.11 55.88) (diameter 0) (color 0 0 0 0)
(uuid 86650a62-c359-4100-9f5d-c864bb3e917f)
)
(junction (at 161.29 66.04) (diameter 0) (color 0 0 0 0)
(uuid 87469b29-0759-4b18-ac32-3b0b43bd3d22)
)
(junction (at 148.59 101.6) (diameter 0) (color 0 0 0 0)
(uuid 8ba0ba30-865e-4403-b7ee-6b0055a17786)
)
(junction (at 85.09 66.04) (diameter 0) (color 0 0 0 0)
(uuid 8bf7e359-ed1e-42bb-bcd6-ad0eceef70aa)
)
(junction (at 80.01 55.88) (diameter 0) (color 0 0 0 0)
(uuid 8eef3129-b80d-4f4a-aeae-53d0ee36e990)
)
(junction (at 186.69 48.26) (diameter 0) (color 0 0 0 0)
(uuid 913cfe7b-7bf5-4353-9804-4202d983f679)
)
(junction (at 143.51 38.1) (diameter 0) (color 0 0 0 0)
(uuid 92220106-26a2-4ccf-8b13-7e101fc81761)
)
(junction (at 67.31 73.66) (diameter 0) (color 0 0 0 0)
(uuid 935d6ae3-a069-4537-a03c-185802d0e04c)
)
(junction (at 156.21 73.66) (diameter 0) (color 0 0 0 0)
(uuid 9502756f-d1fd-4902-8a47-a5bc5e8a508c)
)
(junction (at 143.51 73.66) (diameter 0) (color 0 0 0 0)
(uuid 96a3580f-5121-4226-b6cd-4159ba8c5057)
)
(junction (at 110.49 66.04) (diameter 0) (color 0 0 0 0)
(uuid 97938d60-cccd-434e-8030-20af2d74cdf1)
)
(junction (at 59.69 119.38) (diameter 0) (color 0 0 0 0)
(uuid a00fd159-7ebb-4435-8f2c-8b474913776b)
)
(junction (at 41.91 109.22) (diameter 0) (color 0 0 0 0)
(uuid a2dcdfa4-0e35-4498-8a4e-eb8c1fdc29d8)
)
(junction (at 207.01 91.44) (diameter 0) (color 0 0 0 0)
(uuid a4082f7c-bbb7-4c56-a2c6-3a80c75a530d)
)
(junction (at 72.39 48.26) (diameter 0) (color 0 0 0 0)
(uuid a90ecc30-cddf-4ff7-b249-e3236cccf354)
)
(junction (at 54.61 73.66) (diameter 0) (color 0 0 0 0)
(uuid aa1285c6-84fc-4f03-a691-7b8ee05c5640)
)
(junction (at 54.61 91.44) (diameter 0) (color 0 0 0 0)
(uuid aac4d14c-6497-4426-adfe-762d9284eb6e)
)
(junction (at 207.01 109.22) (diameter 0) (color 0 0 0 0)
(uuid acd1fcf7-e922-4382-8a64-b41f06611447)
)
(junction (at 168.91 38.1) (diameter 0) (color 0 0 0 0)
(uuid ada94bbe-95eb-409d-b9cc-817b5d3d1ae8)
)
(junction (at 97.79 83.82) (diameter 0) (color 0 0 0 0)
(uuid b1097c0f-fd62-4c95-a573-bbc30740ee02)
)
(junction (at 199.39 48.26) (diameter 0) (color 0 0 0 0)
(uuid b10ec5e8-352a-484d-a5b5-7d3eeabc61bd)
)
(junction (at 199.39 66.04) (diameter 0) (color 0 0 0 0)
(uuid b15eb1e4-68cf-4265-8cb7-708697764539)
)
(junction (at 212.09 114.3) (diameter 0) (color 0 0 0 0)
(uuid b3027009-6ced-43e9-9d21-41a7fb0b843d)
)
(junction (at 85.09 101.6) (diameter 0) (color 0 0 0 0)
(uuid b33d7ff1-01b8-49b4-af06-4cd21e8d7eff)
)
(junction (at 46.99 119.38) (diameter 0) (color 0 0 0 0)
(uuid b37b4ebe-6aec-4c38-859e-3a04c812a9fb)
)
(junction (at 181.61 109.22) (diameter 0) (color 0 0 0 0)
(uuid b63e71be-d8f7-4409-b783-82d356c6d99c)
)
(junction (at 97.79 48.26) (diameter 0) (color 0 0 0 0)
(uuid b78b7090-eb71-4462-a6e4-e7ed45562247)
)
(junction (at 199.39 83.82) (diameter 0) (color 0 0 0 0)
(uuid b88a5e75-fa67-4105-80bc-9f93e9d1fab8)
)
(junction (at 123.19 114.3) (diameter 0) (color 0 0 0 0)
(uuid bc4d631a-600f-4355-b0d3-9b08fa6c925c)
)
(junction (at 67.31 91.44) (diameter 0) (color 0 0 0 0)
(uuid be3b22cd-92dc-438e-8974-6e8b203e1bfb)
)
(junction (at 199.39 119.38) (diameter 0) (color 0 0 0 0)
(uuid beacf3fa-9f8b-422a-9ae0-1cea2baa5164)
)
(junction (at 72.39 101.6) (diameter 0) (color 0 0 0 0)
(uuid c42890fe-68c9-4bfe-813f-1cae79a37dd2)
)
(junction (at 105.41 55.88) (diameter 0) (color 0 0 0 0)
(uuid c64debdd-3514-497f-820b-d862a9153a0e)
)
(junction (at 59.69 66.04) (diameter 0) (color 0 0 0 0)
(uuid c680d1b9-9365-4e2c-9523-3552338e13a7)
)
(junction (at 194.31 91.44) (diameter 0) (color 0 0 0 0)
(uuid c6aed092-60ba-49b8-857a-2c7e0b6e598e)
)
(junction (at 186.69 101.6) (diameter 0) (color 0 0 0 0)
(uuid c7d0c69e-b6c1-4a3f-b52f-41d7f536b067)
)
(junction (at 130.81 55.88) (diameter 0) (color 0 0 0 0)
(uuid cbc78999-3497-4d14-bcc5-ef85f15e1ed5)
)
(junction (at 161.29 101.6) (diameter 0) (color 0 0 0 0)
(uuid ce450520-f0d1-49ad-87fc-c87b27c60727)
)
(junction (at 207.01 38.1) (diameter 0) (color 0 0 0 0)
(uuid d01e4ddf-4b9d-4279-8efb-b06b85df52c9)
)
(junction (at 194.31 55.88) (diameter 0) (color 0 0 0 0)
(uuid d101fa8f-78d5-4f08-826c-2876edbfb25b)
)
(junction (at 199.39 101.6) (diameter 0) (color 0 0 0 0)
(uuid d1349daa-a31f-4eb1-adfe-f510c9841ba6)
)
(junction (at 194.31 38.1) (diameter 0) (color 0 0 0 0)
(uuid d1c39759-a903-408e-9ce5-206b1f79a6d1)
)
(junction (at 199.39 114.3) (diameter 0) (color 0 0 0 0)
(uuid d2bafc8d-274c-4010-b13b-cb04b1a23439)
)
(junction (at 46.99 114.3) (diameter 0) (color 0 0 0 0)
(uuid d423d0e0-c378-4bf7-9648-781bebb8428b)
)
(junction (at 181.61 38.1) (diameter 0) (color 0 0 0 0)
(uuid d51b07d3-b0b8-4b27-a7f5-c17f8934a0a5)
)
(junction (at 189.23 132.08) (diameter 0) (color 0 0 0 0)
(uuid d54c9840-3725-4901-913f-2205112e42dc)
)
(junction (at 118.11 127) (diameter 0) (color 0 0 0 0)
(uuid d5697ba1-52b5-4192-9e5b-7c9484a03d97)
)
(junction (at 173.99 48.26) (diameter 0) (color 0 0 0 0)
(uuid da6ab068-9f54-495c-ae7b-eb9afb90c780)
)
(junction (at 156.21 38.1) (diameter 0) (color 0 0 0 0)
(uuid dab2a49d-d68f-4945-b911-c5bdf99344dd)
)
(junction (at 194.31 73.66) (diameter 0) (color 0 0 0 0)
(uuid db8c6570-8de8-4b26-9193-c859869e5123)
)
(junction (at 207.01 73.66) (diameter 0) (color 0 0 0 0)
(uuid de5eabc2-d131-48c2-9185-ea7af79c45da)
)
(junction (at 199.39 96.52) (diameter 0) (color 0 0 0 0)
(uuid deaf728c-cdba-4779-af7c-de9b9c45c9c8)
)
(junction (at 181.61 127) (diameter 0) (color 0 0 0 0)
(uuid e0511602-d737-4a99-a4a5-2f49a80dbfa7)
)
(junction (at 123.19 83.82) (diameter 0) (color 0 0 0 0)
(uuid e0785d10-6686-4a3b-879e-621a021fadff)
)
(junction (at 72.39 83.82) (diameter 0) (color 0 0 0 0)
(uuid e1688809-32af-476a-a7c5-90d3159274c1)
)
(junction (at 135.89 83.82) (diameter 0) (color 0 0 0 0)
(uuid e355f98f-6012-4111-b0e7-a1bfb2ea3ba1)
)
(junction (at 194.31 90.17) (diameter 0) (color 0 0 0 0)
(uuid e3bf5785-d718-40a0-981a-a245988c7c99)
)
(junction (at 46.99 48.26) (diameter 0) (color 0 0 0 0)
(uuid e932177e-91b5-4ab5-9f88-58a00ae1c031)
)
(junction (at 85.09 48.26) (diameter 0) (color 0 0 0 0)
(uuid f00a9fe1-c778-470f-882a-f07761c528ff)
)
(junction (at 80.01 73.66) (diameter 0) (color 0 0 0 0)
(uuid f10b1a88-7a56-4bc0-b795-749ff9c12b41)
)
(junction (at 173.99 114.3) (diameter 0) (color 0 0 0 0)
(uuid f234e8ca-0d99-43df-9cae-f191521f79ba)
)
(junction (at 72.39 114.3) (diameter 0) (color 0 0 0 0)
(uuid f47d1ef7-e358-4c1a-b596-cd8c1cbea4cc)
)
(junction (at 110.49 83.82) (diameter 0) (color 0 0 0 0)
(uuid f5b37194-3e53-4f6e-8d24-35386a164c0f)
)
(junction (at 118.11 73.66) (diameter 0) (color 0 0 0 0)
(uuid f6afb34c-d9d1-4c0f-9224-79f92cc96e4a)
)
(junction (at 173.99 119.38) (diameter 0) (color 0 0 0 0)
(uuid f6e59379-7034-4a5f-919c-b96f2d7a93ec)
)
(junction (at 92.71 55.88) (diameter 0) (color 0 0 0 0)
(uuid f8f84388-188c-4fd2-bf2f-7786153fd567)
)
(junction (at 173.99 83.82) (diameter 0) (color 0 0 0 0)
(uuid fae98d0b-12d5-45c7-9cac-66fcf8a606e4)
)
(junction (at 123.19 119.38) (diameter 0) (color 0 0 0 0)
(uuid fbdf3420-0f68-4311-9d9c-9a0642caeb25)
)
(junction (at 85.09 83.82) (diameter 0) (color 0 0 0 0)
(uuid fc903672-d078-414c-a37a-f506e6c6253e)
)
(junction (at 168.91 109.22) (diameter 0) (color 0 0 0 0)
(uuid fd0d94f2-1b9d-41a6-be24-352b78ffe903)
)
(junction (at 46.99 96.52) (diameter 0) (color 0 0 0 0)
(uuid ff42c86f-4bea-406e-8918-8828c3e741b5)
)
(wire (pts (xy 36.83 97.79) (xy 36.83 96.52))
(stroke (width 0) (type default))
(uuid 030beb9e-aa02-4bfe-b801-d65368fd0342)
)
(wire (pts (xy 110.49 101.6) (xy 123.19 101.6))
(stroke (width 0) (type default))
(uuid 0332fac7-7721-4d4f-8105-4311df55a4f9)
)
(wire (pts (xy 33.02 101.6) (xy 46.99 101.6))
(stroke (width 0) (type default))
(uuid 062cbffa-e561-4794-b0b5-a40f20ac0f28)
)
(wire (pts (xy 148.59 66.04) (xy 161.29 66.04))
(stroke (width 0) (type default))
(uuid 0d6faf6c-952b-4ece-9b31-fc1a45022b81)
)
(wire (pts (xy 194.31 55.88) (xy 194.31 73.66))
(stroke (width 0) (type default))
(uuid 0e72d421-66b2-483c-8c72-d3a56c1615e1)
)
(wire (pts (xy 214.63 132.08) (xy 214.63 115.57))
(stroke (width 0) (type default))
(uuid 0eab1853-560b-4975-b569-e1d72a172fb2)
)
(wire (pts (xy 41.91 55.88) (xy 41.91 90.17))
(stroke (width 0) (type default))
(uuid 12dff405-f68f-4f58-9be7-bfba073c4dd7)
)
(wire (pts (xy 156.21 29.21) (xy 156.21 38.1))
(stroke (width 0) (type default))
(uuid 12e6db5a-2d06-4904-ae59-d8e17475b70c)
)
(wire (pts (xy 36.83 97.79) (xy 46.99 97.79))
(stroke (width 0) (type default))
(uuid 12f9fbe5-a975-486c-920d-08c1226aea9f)
)
(wire (pts (xy 118.11 38.1) (xy 118.11 55.88))
(stroke (width 0) (type default))
(uuid 14651ab7-95c5-4432-ae42-5ca9b43bdab2)
)
(wire (pts (xy 67.31 55.88) (xy 67.31 73.66))
(stroke (width 0) (type default))
(uuid 14f71846-02de-4464-be2a-adc117bcaad8)
)
(wire (pts (xy 181.61 91.44) (xy 181.61 109.22))
(stroke (width 0) (type default))
(uuid 15ff3ad4-bb4a-431d-94d4-31da0a808668)
)
(wire (pts (xy 59.69 101.6) (xy 72.39 101.6))
(stroke (width 0) (type default))
(uuid 16429640-4dad-4078-8298-690894046e06)
)
(wire (pts (xy 123.19 83.82) (xy 135.89 83.82))
(stroke (width 0) (type default))
(uuid 18991790-f4e8-4bae-96c9-19376837b6e8)
)
(wire (pts (xy 212.09 44.45) (xy 212.09 43.18))
(stroke (width 0) (type default))
(uuid 1a7fb67e-d424-4183-ba55-63fa2cfde824)
)
(wire (pts (xy 194.31 29.21) (xy 194.31 38.1))
(stroke (width 0) (type default))
(uuid 1aeddbff-1391-49aa-b48c-9b45a5c0cb77)
)
(wire (pts (xy 194.31 91.44) (xy 194.31 109.22))
(stroke (width 0) (type default))
(uuid 1bd3ea70-b65b-4ab8-a1a8-548d330c31fc)
)
(wire (pts (xy 46.99 66.04) (xy 59.69 66.04))
(stroke (width 0) (type default))
(uuid 1c9dfe72-cc26-4f5b-9c95-71f0a85fe6a5)
)
(wire (pts (xy 97.79 101.6) (xy 110.49 101.6))
(stroke (width 0) (type default))
(uuid 1dc6024f-2436-48e5-b11c-b663499ca973)
)
(wire (pts (xy 123.19 119.38) (xy 173.99 119.38))
(stroke (width 0) (type default))
(uuid 1f054fc4-1a40-4801-ac9f-901cd20db4e3)
)
(wire (pts (xy 54.61 55.88) (xy 54.61 73.66))
(stroke (width 0) (type default))
(uuid 1f2f2b2f-f987-462f-972e-c76bab955e49)
)
(wire (pts (xy 67.31 73.66) (xy 67.31 91.44))
(stroke (width 0) (type default))
(uuid 21d85a73-f3c3-4f3b-950f-93bbb937b844)
)
(wire (pts (xy 41.91 91.44) (xy 41.91 109.22))
(stroke (width 0) (type default))
(uuid 21dda72f-aaf6-46f0-8181-b2f6a45fdb8b)
)
(wire (pts (xy 207.01 36.83) (xy 207.01 38.1))
(stroke (width 0) (type default))
(uuid 24b05431-c05f-49ab-8723-4a919387082e)
)
(wire (pts (xy 173.99 48.26) (xy 186.69 48.26))
(stroke (width 0) (type default))
(uuid 266d0bb4-39c0-4fa4-bd8a-ef73536f8df4)
)
(wire (pts (xy 49.53 132.08) (xy 49.53 115.57))
(stroke (width 0) (type default))
(uuid 2728438e-14bb-40c2-b3b2-03ad5632a694)
)
(wire (pts (xy 105.41 38.1) (xy 105.41 55.88))
(stroke (width 0) (type default))
(uuid 2aceb989-4acc-4909-b4ed-6bb3464f7121)
)
(wire (pts (xy 201.93 115.57) (xy 199.39 115.57))
(stroke (width 0) (type default))
(uuid 2d397809-39d7-49a7-8766-4d7b62784159)
)
(wire (pts (xy 72.39 83.82) (xy 85.09 83.82))
(stroke (width 0) (type default))
(uuid 2f470785-abd7-436c-a774-be313cb855c1)
)
(wire (pts (xy 80.01 55.88) (xy 80.01 73.66))
(stroke (width 0) (type default))
(uuid 30454931-eada-46d0-95e1-40a3ffdad3e4)
)
(wire (pts (xy 143.51 29.21) (xy 143.51 38.1))
(stroke (width 0) (type default))
(uuid 32fdc7d3-2b0f-4345-811d-3b68fd57b9dc)
)
(wire (pts (xy 67.31 109.22) (xy 67.31 127))
(stroke (width 0) (type default))
(uuid 332d01fb-1bb2-46d5-ae6d-738b89f0d04f)
)
(wire (pts (xy 168.91 29.21) (xy 168.91 38.1))
(stroke (width 0) (type default))
(uuid 388731c6-dba2-4468-b9e5-c3e0cab3b33c)
)
(wire (pts (xy 199.39 115.57) (xy 199.39 114.3))
(stroke (width 0) (type default))
(uuid 3c4d145d-fafa-46f0-83f1-b382ba292986)
)
(wire (pts (xy 156.21 38.1) (xy 156.21 55.88))
(stroke (width 0) (type default))
(uuid 3d67b26a-ac17-4ad2-8d05-2cd978090367)
)
(wire (pts (xy 130.81 73.66) (xy 130.81 91.44))
(stroke (width 0) (type default))
(uuid 3e6a941c-8940-436e-970f-091b29987899)
)
(wire (pts (xy 143.51 55.88) (xy 143.51 73.66))
(stroke (width 0) (type default))
(uuid 4011afb0-7d97-4d23-9021-936a1f589f35)
)
(wire (pts (xy 33.02 83.82) (xy 59.69 83.82))
(stroke (width 0) (type default))
(uuid 41f4961e-c4d4-44b3-a8c9-10c8367af8a0)
)
(wire (pts (xy 156.21 55.88) (xy 156.21 73.66))
(stroke (width 0) (type default))
(uuid 4236ec13-a22e-47f5-a3db-15d8cb591aca)
)
(wire (pts (xy 59.69 83.82) (xy 72.39 83.82))
(stroke (width 0) (type default))
(uuid 43a716d5-d917-4bac-b817-f51874aaf80a)
)
(wire (pts (xy 168.91 55.88) (xy 168.91 73.66))
(stroke (width 0) (type default))
(uuid 44e49ac1-f4f5-4774-940b-ec28f1bb44e4)
)
(wire (pts (xy 181.61 109.22) (xy 181.61 127))
(stroke (width 0) (type default))
(uuid 450c67b6-3ebf-4f9e-a013-f0ab18ba9b80)
)
(wire (pts (xy 148.59 101.6) (xy 161.29 101.6))
(stroke (width 0) (type default))
(uuid 464c1b9f-af6d-482d-942e-f45f97e76ffa)
)
(wire (pts (xy 181.61 38.1) (xy 181.61 55.88))
(stroke (width 0) (type default))
(uuid 476b19ae-98cd-4aea-9287-353345fe0026)
)
(wire (pts (xy 110.49 48.26) (xy 123.19 48.26))
(stroke (width 0) (type default))
(uuid 47f90b7a-923d-46e8-b59b-ddbce4f99c3d)
)
(wire (pts (xy 148.59 48.26) (xy 161.29 48.26))
(stroke (width 0) (type default))
(uuid 4a88e0a1-9dad-479f-9e21-4765d7680e6e)
)
(wire (pts (xy 199.39 101.6) (xy 212.09 101.6))
(stroke (width 0) (type default))
(uuid 4e4fe5cd-f4b6-47d1-8bd1-dd1c75602481)
)
(wire (pts (xy 161.29 66.04) (xy 173.99 66.04))
(stroke (width 0) (type default))
(uuid 4e56d990-5f15-41fd-bf66-d1de906e75d2)
)
(wire (pts (xy 130.81 29.21) (xy 130.81 38.1))
(stroke (width 0) (type default))
(uuid 51311ef5-cdfc-4986-a56c-070acdbb42d5)
)
(wire (pts (xy 46.99 115.57) (xy 46.99 114.3))
(stroke (width 0) (type default))
(uuid 51f17150-edf2-491e-9b02-7f6c659e3b2e)
)
(wire (pts (xy 156.21 73.66) (xy 156.21 91.44))
(stroke (width 0) (type default))
(uuid 529036bf-8547-41f6-bb7c-89bca5baa1e9)
)
(wire (pts (xy 207.01 73.66) (xy 207.01 91.44))
(stroke (width 0) (type default))
(uuid 529a2e33-0eca-45cc-9508-57b9eec6f684)
)
(wire (pts (xy 110.49 83.82) (xy 123.19 83.82))
(stroke (width 0) (type default))
(uuid 550ebb55-93cd-4623-9921-ab4831f41ed8)
)
(wire (pts (xy 186.69 132.08) (xy 189.23 132.08))
(stroke (width 0) (type default))
(uuid 55c56ed6-80c1-4459-99fb-cc4f99978fb0)
)
(wire (pts (xy 168.91 38.1) (xy 168.91 55.88))
(stroke (width 0) (type default))
(uuid 55de0bf0-0bc9-46f9-a04f-4c46805e1167)
)
(wire (pts (xy 123.19 66.04) (xy 135.89 66.04))
(stroke (width 0) (type default))
(uuid 56e5c96e-2132-4af6-98f5-0aa0f543791d)
)
(wire (pts (xy 49.53 115.57) (xy 46.99 115.57))
(stroke (width 0) (type default))
(uuid 5721a5d7-1c0d-49b8-8795-f476c9a9630c)
)
(wire (pts (xy 59.69 132.08) (xy 62.23 132.08))
(stroke (width 0) (type default))
(uuid 5755cf6d-6678-4b4f-a40e-ddd65bce75de)
)
(wire (pts (xy 92.71 55.88) (xy 92.71 73.66))
(stroke (width 0) (type default))
(uuid 5805b423-5680-46fb-81fc-ab027b0659f5)
)
(wire (pts (xy 135.89 48.26) (xy 148.59 48.26))
(stroke (width 0) (type default))
(uuid 5bbdaf8e-0a39-4183-a82b-a1b72177b121)
)
(wire (pts (xy 181.61 127) (xy 181.61 139.7))
(stroke (width 0) (type default))
(uuid 5d720569-e12b-4de3-a0cf-149f1878b5f6)
)
(wire (pts (xy 59.69 115.57) (xy 62.23 115.57))
(stroke (width 0) (type default))
(uuid 5f05b282-ae0b-4778-8ff0-63dbf1d4b43e)
)
(wire (pts (xy 199.39 97.79) (xy 229.87 97.79))
(stroke (width 0) (type default))
(uuid 62ee74c6-356e-41ef-ab9c-c881057d991d)
)
(wire (pts (xy 207.01 38.1) (xy 207.01 55.88))
(stroke (width 0) (type default))
(uuid 63a54f87-2967-466f-a778-901883135a8b)
)
(wire (pts (xy 168.91 109.22) (xy 168.91 139.7))
(stroke (width 0) (type default))
(uuid 65081ef8-64fe-4b44-81b7-6166398098d7)
)
(wire (pts (xy 41.91 109.22) (xy 41.91 127))
(stroke (width 0) (type default))
(uuid 6842960d-2eb2-4fb2-8076-f0cf0c6be538)
)
(wire (pts (xy 228.6 44.45) (xy 228.6 43.18))
(stroke (width 0) (type default))
(uuid 68a7a7fd-bbb7-455d-8593-06f85484ef81)
)
(wire (pts (xy 62.23 132.08) (xy 62.23 115.57))
(stroke (width 0) (type default))
(uuid 68e907f0-deaa-44bb-b784-0527e42259c4)
)
(wire (pts (xy 189.23 132.08) (xy 189.23 115.57))
(stroke (width 0) (type default))
(uuid 6ace4ccc-41c2-465d-9043-ca2614567f0f)
)
(wire (pts (xy 143.51 73.66) (xy 143.51 91.44))
(stroke (width 0) (type default))
(uuid 6ba49493-a91a-464a-bfbd-fab65dd7e77e)
)
(wire (pts (xy 41.91 38.1) (xy 41.91 55.88))
(stroke (width 0) (type default))
(uuid 6f5a2057-ffde-4744-837a-62401afa2a2a)
)
(wire (pts (xy 148.59 83.82) (xy 161.29 83.82))
(stroke (width 0) (type default))
(uuid 76f067ee-7287-4db5-be7b-57bc7dd09c56)
)
(wire (pts (xy 181.61 29.21) (xy 181.61 38.1))
(stroke (width 0) (type default))
(uuid 77739f07-37a0-45d2-baec-2e49612be1dc)
)
(wire (pts (xy 67.31 91.44) (xy 67.31 109.22))
(stroke (width 0) (type default))
(uuid 780801cb-083a-4b74-aeb0-71edce2debc9)
)
(wire (pts (xy 176.53 144.78) (xy 176.53 115.57))
(stroke (width 0) (type default))
(uuid 781d1e9e-3267-4f50-a001-959dfccbf253)
)
(wire (pts (xy 207.01 91.44) (xy 207.01 109.22))
(stroke (width 0) (type default))
(uuid 784a5148-20af-45b9-949a-253af2833a4a)
)
(wire (pts (xy 173.99 119.38) (xy 186.69 119.38))
(stroke (width 0) (type default))
(uuid 78de06a5-13f2-45ee-8810-200d3651bb70)
)
(wire (pts (xy 199.39 119.38) (xy 212.09 119.38))
(stroke (width 0) (type default))
(uuid 79cd25ca-851f-47da-9f13-28f24ca2cb6d)
)
(wire (pts (xy 54.61 73.66) (xy 54.61 91.44))
(stroke (width 0) (type default))
(uuid 7cbf7ba8-41f1-4651-b045-7c67de71d9a7)
)
(wire (pts (xy 199.39 83.82) (xy 212.09 83.82))
(stroke (width 0) (type default))
(uuid 7fb26a4e-8533-4a94-860c-cec89d242bb5)
)
(wire (pts (xy 173.99 83.82) (xy 186.69 83.82))
(stroke (width 0) (type default))
(uuid 81645ad9-54ed-44d4-9de3-a0f0d99b8312)
)
(wire (pts (xy 80.01 38.1) (xy 80.01 55.88))
(stroke (width 0) (type default))
(uuid 83931af8-e237-4820-a6cb-8d72d20a5690)
)
(wire (pts (xy 201.93 132.08) (xy 201.93 115.57))
(stroke (width 0) (type default))
(uuid 84271918-7535-4c87-abc0-85540e03f68d)
)
(wire (pts (xy 54.61 38.1) (xy 54.61 55.88))
(stroke (width 0) (type default))
(uuid 84861e08-8356-43f1-9b93-7d5548ebb279)
)
(wire (pts (xy 118.11 29.21) (xy 118.11 38.1))
(stroke (width 0) (type default))
(uuid 848d7ab4-6fb3-4c9b-992c-0f78557a83a2)
)
(wire (pts (xy 110.49 66.04) (xy 123.19 66.04))
(stroke (width 0) (type default))
(uuid 857eff9c-c6d0-474c-be48-54343d1dafd9)
)
(wire (pts (xy 123.19 48.26) (xy 135.89 48.26))
(stroke (width 0) (type default))
(uuid 8697786b-37c4-47a4-bbb1-6c2b5e4eb328)
)
(wire (pts (xy 118.11 109.22) (xy 118.11 127))
(stroke (width 0) (type default))
(uuid 872ba5ab-3618-4a9c-9674-1a17529ea2bf)
)
(wire (pts (xy 207.01 109.22) (xy 207.01 127))
(stroke (width 0) (type default))
(uuid 88e27b28-c24a-4d65-bb3d-ddb423c43040)
)
(wire (pts (xy 92.71 38.1) (xy 92.71 55.88))
(stroke (width 0) (type default))
(uuid 89f40ba2-5946-4b32-b6d3-a8aa7579feb0)
)
(wire (pts (xy 118.11 55.88) (xy 118.11 73.66))
(stroke (width 0) (type default))
(uuid 8a4b32a0-3ef1-4973-be90-7e89a8971524)
)
(wire (pts (xy 80.01 73.66) (xy 80.01 91.44))
(stroke (width 0) (type default))
(uuid 8b5839b3-2e49-461d-8ae9-fe1e7aecb17f)
)
(wire (pts (xy 97.79 83.82) (xy 110.49 83.82))
(stroke (width 0) (type default))
(uuid 8f365b30-5b2b-45b4-920f-89d265150a4f)
)
(wire (pts (xy 80.01 29.21) (xy 80.01 38.1))
(stroke (width 0) (type default))
(uuid 8fc73485-fdd1-4f66-a51b-57335259332d)
)
(wire (pts (xy 59.69 115.57) (xy 59.69 114.3))
(stroke (width 0) (type default))
(uuid 9026de82-260c-4dbb-bda8-b7d3c0be38b8)
)
(wire (pts (xy 92.71 73.66) (xy 92.71 91.44))
(stroke (width 0) (type default))
(uuid 90b57e03-d7ff-42f2-9769-99ccff716acd)
)
(wire (pts (xy 223.52 36.83) (xy 223.52 38.1))