-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmatrix.kicad_sch
More file actions
3810 lines (3670 loc) · 151 KB
/
matrix.kicad_sch
File metadata and controls
3810 lines (3670 loc) · 151 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20210621) (generator eeschema)
(uuid 338fcb90-9d04-4283-b134-ed502c919dfb)
(paper "A3")
(title_block
(title "Arisutea RGB Keyboard")
(date "2021-06-19")
(rev "0.3")
(company "mattyams")
)
(lib_symbols
(symbol "arisutea-pcb:Device_D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (id 0) (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Device_D" (id 1) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Device_D_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254)) (fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254)) (fill (type none))
)
)
(symbol "Device_D_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "arisutea-pcb:Switch_SW_Keeb" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "SW" (id 0) (at 1.27 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Switch_SW_Keeb" (id 1) (at 0 -1.524 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 5.08 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Switch_SW_Keeb_0_1"
(circle (center -2.032 0) (radius 0.508) (stroke (width 0)) (fill (type none)))
(circle (center 2.032 0) (radius 0.508) (stroke (width 0)) (fill (type none)))
(polyline
(pts
(xy 0 1.27)
(xy 0 3.048)
)
(stroke (width 0)) (fill (type none))
)
(polyline
(pts
(xy 2.54 1.27)
(xy -2.54 1.27)
)
(stroke (width 0)) (fill (type none))
)
)
(symbol "Switch_SW_Keeb_1_1"
(pin passive line (at -5.08 0 0) (length 2.54)
(name "COL" (effects (font (size 0.635 0.635))))
(number "1" (effects (font (size 0.635 0.635))))
)
(pin passive line (at 5.08 0 180) (length 2.54)
(name "ROW" (effects (font (size 0.635 0.635))))
(number "2" (effects (font (size 0.635 0.635))))
)
)
)
)
(junction (at 92.71 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 92.71 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 92.71 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 92.71 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 102.87 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 102.87 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 102.87 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 102.87 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 102.87 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 118.11 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 118.11 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 118.11 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 128.27 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 128.27 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 128.27 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 128.27 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 134.62 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 134.62 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 134.62 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 134.62 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 144.78 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 144.78 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 144.78 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 144.78 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 144.78 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 151.13 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 151.13 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 151.13 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 161.29 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 161.29 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 161.29 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 161.29 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 167.64 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 167.64 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 167.64 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 167.64 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 177.8 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 177.8 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 177.8 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 177.8 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 177.8 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 184.15 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 184.15 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 184.15 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 184.15 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 194.31 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 194.31 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 194.31 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 194.31 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 194.31 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 200.66 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 200.66 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 200.66 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 210.82 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 210.82 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 210.82 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 210.82 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 217.17 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 217.17 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 217.17 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 217.17 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 227.33 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 227.33 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 227.33 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 227.33 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 227.33 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 233.68 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 233.68 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 233.68 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 243.84 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 243.84 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 243.84 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 243.84 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 250.19 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 250.19 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 250.19 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 250.19 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 260.35 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 260.35 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 260.35 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 260.35 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 260.35 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 266.7 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 266.7 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 266.7 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 276.86 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 276.86 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 276.86 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 276.86 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 283.21 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 283.21 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 283.21 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 293.37 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 293.37 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 293.37 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 293.37 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 299.72 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 299.72 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 299.72 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 309.88 102.87) (diameter 1.016) (color 0 0 0 0))
(junction (at 309.88 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 309.88 154.94) (diameter 1.016) (color 0 0 0 0))
(junction (at 309.88 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 316.23 93.98) (diameter 1.016) (color 0 0 0 0))
(junction (at 316.23 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 316.23 171.45) (diameter 1.016) (color 0 0 0 0))
(junction (at 326.39 128.27) (diameter 1.016) (color 0 0 0 0))
(junction (at 326.39 180.34) (diameter 1.016) (color 0 0 0 0))
(junction (at 326.39 205.74) (diameter 1.016) (color 0 0 0 0))
(junction (at 332.74 119.38) (diameter 1.016) (color 0 0 0 0))
(junction (at 332.74 146.05) (diameter 1.016) (color 0 0 0 0))
(junction (at 332.74 171.45) (diameter 1.016) (color 0 0 0 0))
(wire (pts (xy 86.36 102.87) (xy 102.87 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 38a96d86-a5d9-4c72-831a-169ceead12e9)
)
(wire (pts (xy 86.36 128.27) (xy 102.87 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 672b7367-da1f-4f08-bb94-97c2de70d121)
)
(wire (pts (xy 86.36 154.94) (xy 102.87 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 70de1025-c1c2-4b81-9e10-75394c32d9aa)
)
(wire (pts (xy 86.36 180.34) (xy 102.87 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f8f9e686-c7bf-4ddd-ba39-4bd3bdac364e)
)
(wire (pts (xy 86.36 205.74) (xy 102.87 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eb17de5f-a3ec-42e9-9cac-fdcc91a8a208)
)
(wire (pts (xy 92.71 72.39) (xy 92.71 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4eb66589-f7aa-4635-b55c-e5a34e79666c)
)
(wire (pts (xy 92.71 119.38) (xy 92.71 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 84953a13-226a-4e0a-a8e7-7c44c57b6775)
)
(wire (pts (xy 92.71 119.38) (xy 92.71 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1ebd210d-926c-4727-abe6-1c4f416bba41)
)
(wire (pts (xy 92.71 146.05) (xy 92.71 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ecfd4c85-b368-451e-af5b-b1cb440f4ae1)
)
(wire (pts (xy 92.71 171.45) (xy 92.71 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid df4e9eb8-fc9b-4231-b761-1232a6f88394)
)
(wire (pts (xy 102.87 101.6) (xy 102.87 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8b85892e-d81e-4ded-9b2c-936efef66175)
)
(wire (pts (xy 102.87 102.87) (xy 128.27 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4b2c8363-e1d2-4d10-986f-50a58c6ef276)
)
(wire (pts (xy 102.87 127) (xy 102.87 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fff33fdd-8cc8-441d-9856-45a4ec082bee)
)
(wire (pts (xy 102.87 128.27) (xy 128.27 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 23293d32-46a4-4946-a08b-b7a045e85894)
)
(wire (pts (xy 102.87 153.67) (xy 102.87 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7d5c7954-3a10-4f2d-bae7-41b4ff12e719)
)
(wire (pts (xy 102.87 154.94) (xy 128.27 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 955af227-39aa-4382-adeb-8bd150c32336)
)
(wire (pts (xy 102.87 179.07) (xy 102.87 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 34236bc7-75b8-45d9-8767-00a573613362)
)
(wire (pts (xy 102.87 180.34) (xy 128.27 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 364b7c51-3319-4c42-8342-38ebd797910a)
)
(wire (pts (xy 102.87 204.47) (xy 102.87 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f6091f98-1077-40c3-9c8d-53ac8a0e56ae)
)
(wire (pts (xy 102.87 205.74) (xy 144.78 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7480ef80-ca82-4193-9409-761f525ca6e9)
)
(wire (pts (xy 118.11 72.39) (xy 118.11 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 55209bd5-2c1f-4668-a64d-45e9ac03cf28)
)
(wire (pts (xy 118.11 93.98) (xy 118.11 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4248bcc0-2acc-4f04-b15c-2cd441a361ed)
)
(wire (pts (xy 118.11 119.38) (xy 118.11 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4d121adf-98d3-4255-8b28-261d68145265)
)
(wire (pts (xy 118.11 146.05) (xy 118.11 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 00f48a2d-0289-4a0a-a190-5ea7d9114513)
)
(wire (pts (xy 128.27 101.6) (xy 128.27 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5765b035-21b2-41ba-8319-cc4b371a0b15)
)
(wire (pts (xy 128.27 102.87) (xy 144.78 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 24f03059-7edd-438c-8d9c-313aa9512981)
)
(wire (pts (xy 128.27 127) (xy 128.27 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ff5b8029-04eb-42b7-b754-2bdc091d88ce)
)
(wire (pts (xy 128.27 128.27) (xy 144.78 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2a53a6eb-4449-45d9-9393-0273a2ea8343)
)
(wire (pts (xy 128.27 153.67) (xy 128.27 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a9da7c10-6843-424b-b9c3-44ad6021b71d)
)
(wire (pts (xy 128.27 154.94) (xy 144.78 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5798aa2b-6e9b-47cc-91a0-ecf528a60d18)
)
(wire (pts (xy 128.27 179.07) (xy 128.27 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c6d74737-426d-47fe-b45c-b2f1e1cb9928)
)
(wire (pts (xy 128.27 180.34) (xy 144.78 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b33d09a1-8075-46fa-b873-a5f3916d800e)
)
(wire (pts (xy 134.62 72.39) (xy 134.62 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0dd79c8d-0ad8-45ef-af5b-930278d2eda2)
)
(wire (pts (xy 134.62 119.38) (xy 134.62 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c522a15e-7c70-49bf-99da-187ef61f9365)
)
(wire (pts (xy 134.62 119.38) (xy 134.62 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8eba449b-17cf-4791-9738-0545e3d3c4a4)
)
(wire (pts (xy 134.62 146.05) (xy 134.62 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4858cd63-5dda-49bf-806d-a9285c61ce46)
)
(wire (pts (xy 134.62 171.45) (xy 134.62 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9d6771c9-d5ca-423b-acd8-69845df64f1c)
)
(wire (pts (xy 144.78 101.6) (xy 144.78 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 89c3b8b8-fab3-4457-99b4-4aa6580f84aa)
)
(wire (pts (xy 144.78 102.87) (xy 161.29 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0222a7de-cce3-42d2-8a2b-f8bad2c01295)
)
(wire (pts (xy 144.78 127) (xy 144.78 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ade5ea12-1a69-41d4-82bb-86e6096eb20b)
)
(wire (pts (xy 144.78 128.27) (xy 161.29 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fbcba1ab-f867-4f67-a77f-ad3686769b86)
)
(wire (pts (xy 144.78 153.67) (xy 144.78 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 74a1f077-cab2-42c6-b5b5-bf10a56b00d1)
)
(wire (pts (xy 144.78 154.94) (xy 161.29 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 43943cb9-f1c8-4d24-a125-99f85eed4fe8)
)
(wire (pts (xy 144.78 179.07) (xy 144.78 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5e94c891-735d-4070-8fdb-4f4eaf5cb632)
)
(wire (pts (xy 144.78 180.34) (xy 161.29 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 935c2042-8e21-4ead-9b00-ce09d41f3f69)
)
(wire (pts (xy 144.78 204.47) (xy 144.78 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae85ed5e-e3ff-45a2-9913-54e4a56e78a8)
)
(wire (pts (xy 144.78 205.74) (xy 177.8 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f8305081-31d5-4bf2-9e0c-1ae7445f005f)
)
(wire (pts (xy 151.13 72.39) (xy 151.13 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid acc404f8-4b88-429b-a9cf-f4c004abfef6)
)
(wire (pts (xy 151.13 93.98) (xy 151.13 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e25bf291-de44-4e68-8150-9a4e04a0e87e)
)
(wire (pts (xy 151.13 119.38) (xy 151.13 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4cfb562f-1f5a-463b-89e2-b5a3fd430979)
)
(wire (pts (xy 151.13 146.05) (xy 151.13 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cfe11a3a-f255-4d95-997b-53033bfdf3eb)
)
(wire (pts (xy 161.29 101.6) (xy 161.29 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 16df5c05-f4c8-4a5b-adbf-bbb07dd114b5)
)
(wire (pts (xy 161.29 102.87) (xy 177.8 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb8f126e-1a2d-4f74-8896-f5837648a0e1)
)
(wire (pts (xy 161.29 127) (xy 161.29 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3c3aec72-0b07-4e80-bad2-907cefb406e2)
)
(wire (pts (xy 161.29 128.27) (xy 177.8 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ecf46d8e-17db-4e29-9c10-d552118a620c)
)
(wire (pts (xy 161.29 153.67) (xy 161.29 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb180120-d823-45d8-acd8-f610341b1aec)
)
(wire (pts (xy 161.29 154.94) (xy 177.8 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 616a73ce-502c-41de-8fbd-3ade80ffb815)
)
(wire (pts (xy 161.29 179.07) (xy 161.29 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5868682c-20d1-43da-bd46-1e5e46fe50fd)
)
(wire (pts (xy 161.29 180.34) (xy 177.8 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d4ff81e6-728f-486c-9949-c520b6e22e45)
)
(wire (pts (xy 167.64 72.39) (xy 167.64 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d681c21d-f005-48f0-a93a-af10453de4bd)
)
(wire (pts (xy 167.64 119.38) (xy 167.64 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1589dce2-c309-4217-8d61-23476d3165cb)
)
(wire (pts (xy 167.64 119.38) (xy 167.64 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 61850f17-0d9f-4dd6-abe3-50980ed1e02e)
)
(wire (pts (xy 167.64 146.05) (xy 167.64 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2a881138-9af5-4cf5-b37b-4e9226298f44)
)
(wire (pts (xy 167.64 171.45) (xy 167.64 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7641f15c-6343-4951-a96a-c22fce681734)
)
(wire (pts (xy 177.8 101.6) (xy 177.8 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 24056c1f-3cf2-451c-a47c-685ab9d10073)
)
(wire (pts (xy 177.8 102.87) (xy 194.31 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid eda31244-1173-4042-8bd7-144d4f79bd6b)
)
(wire (pts (xy 177.8 127) (xy 177.8 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid af69feb0-0024-4555-9299-9c06c30945e3)
)
(wire (pts (xy 177.8 128.27) (xy 194.31 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f532eede-2a30-4942-98dd-7795738c706e)
)
(wire (pts (xy 177.8 153.67) (xy 177.8 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0ba46ab0-65b8-495c-bf11-bb5288520787)
)
(wire (pts (xy 177.8 154.94) (xy 194.31 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 89ab7197-5213-4f7e-8f3e-281291b1fed0)
)
(wire (pts (xy 177.8 179.07) (xy 177.8 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2db505da-e910-4b1e-a9b0-5ede951b5b55)
)
(wire (pts (xy 177.8 180.34) (xy 194.31 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 447f34e7-abbe-4f92-9442-d27ad0056a3e)
)
(wire (pts (xy 177.8 204.47) (xy 177.8 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 42948646-76b9-4158-944a-cc597220109b)
)
(wire (pts (xy 177.8 205.74) (xy 194.31 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid bb5ea233-78b6-436c-b01a-c9d9210ffbfa)
)
(wire (pts (xy 184.15 72.39) (xy 184.15 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b2eec7f0-c734-4f8c-b834-09a819490a53)
)
(wire (pts (xy 184.15 93.98) (xy 184.15 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1b1d3b47-3b00-45e4-bc9f-0d3e2a35a8a6)
)
(wire (pts (xy 184.15 119.38) (xy 184.15 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b3e10cee-1222-4cb5-beaa-1096ffe4f86a)
)
(wire (pts (xy 184.15 146.05) (xy 184.15 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 42588794-8886-4b05-9763-182bbe0bb16a)
)
(wire (pts (xy 184.15 171.45) (xy 184.15 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 13d45cac-f786-4194-acfd-ef328ef3fd77)
)
(wire (pts (xy 194.31 101.6) (xy 194.31 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 85ed3f59-bba5-4de2-a0d3-0faf38be0e6f)
)
(wire (pts (xy 194.31 102.87) (xy 210.82 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ac61199e-975f-4076-9389-b0d46b657ae3)
)
(wire (pts (xy 194.31 127) (xy 194.31 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5823f726-65a0-49b0-8d2b-08abc8295250)
)
(wire (pts (xy 194.31 128.27) (xy 210.82 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 36141542-86d5-43ee-8a96-a041ef83b165)
)
(wire (pts (xy 194.31 153.67) (xy 194.31 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a14aa66b-652d-442b-a8de-bfbad26d15b4)
)
(wire (pts (xy 194.31 154.94) (xy 210.82 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0811d9d5-e706-4b50-9e2b-464de0ee5919)
)
(wire (pts (xy 194.31 179.07) (xy 194.31 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6779149b-4d0f-454b-bec5-0bf9d2814f2a)
)
(wire (pts (xy 194.31 180.34) (xy 210.82 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d81b8324-1eca-4328-92c0-6a151427a2a1)
)
(wire (pts (xy 194.31 204.47) (xy 194.31 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5c7adba3-bcc0-4631-b5cd-d04c08bbb087)
)
(wire (pts (xy 194.31 205.74) (xy 227.33 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 861698bd-d779-4bb6-8a95-2df2657d06c6)
)
(wire (pts (xy 200.66 72.39) (xy 200.66 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fcfd7ddc-9056-42e1-ab98-4fa45bcc2ff2)
)
(wire (pts (xy 200.66 119.38) (xy 200.66 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 882d835d-b701-4d30-831f-6416c004abb0)
)
(wire (pts (xy 200.66 119.38) (xy 200.66 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid aefd566f-337f-47fb-9a4b-845ea6758e36)
)
(wire (pts (xy 200.66 146.05) (xy 200.66 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c2053bb0-6307-47c4-ab7f-d54de4a1d454)
)
(wire (pts (xy 210.82 101.6) (xy 210.82 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d39b2221-639b-4a6e-a9ae-078c8fdfc1c3)
)
(wire (pts (xy 210.82 102.87) (xy 227.33 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 4656b67c-bb34-4608-bc35-a3aa8e55a59d)
)
(wire (pts (xy 210.82 127) (xy 210.82 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c155412a-a14d-4944-b4c6-3c6f090447b4)
)
(wire (pts (xy 210.82 128.27) (xy 227.33 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d4d0ab58-692c-41d2-bbc9-61cd6e788e90)
)
(wire (pts (xy 210.82 153.67) (xy 210.82 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 468ad701-b090-45c8-bd45-36a4682520c8)
)
(wire (pts (xy 210.82 154.94) (xy 227.33 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 60eefbea-0c56-4516-b608-bdb1f07e449b)
)
(wire (pts (xy 210.82 179.07) (xy 210.82 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6ebe2be7-ee18-49ab-a7ff-06cee8bba732)
)
(wire (pts (xy 210.82 180.34) (xy 227.33 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7d2e93ac-1a1d-4800-84d1-2deadb8fed0c)
)
(wire (pts (xy 217.17 72.39) (xy 217.17 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 20ddb867-6aa9-4d40-bfae-b0faf576f26d)
)
(wire (pts (xy 217.17 93.98) (xy 217.17 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 732a06d8-9775-43aa-abb0-39642b3b53af)
)
(wire (pts (xy 217.17 119.38) (xy 217.17 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 94752791-f29c-4662-bf2a-2b895906c9d9)
)
(wire (pts (xy 217.17 146.05) (xy 217.17 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3fb22002-e5af-45c1-a623-cb094854b9ce)
)
(wire (pts (xy 217.17 171.45) (xy 217.17 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6ee14747-54df-46ec-9c24-a5800d2fe111)
)
(wire (pts (xy 227.33 101.6) (xy 227.33 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 71d231d6-901e-4eb4-9835-6136e981a54d)
)
(wire (pts (xy 227.33 102.87) (xy 243.84 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b2ea3f2a-4231-4b78-81ff-e718ae419524)
)
(wire (pts (xy 227.33 127) (xy 227.33 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 44efdfca-9500-4472-8803-74219510422a)
)
(wire (pts (xy 227.33 128.27) (xy 243.84 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 14a98a56-8eef-4790-8e0f-a1b591a8aadd)
)
(wire (pts (xy 227.33 153.67) (xy 227.33 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1893646a-4eb5-4730-bbd3-0f4324801433)
)
(wire (pts (xy 227.33 154.94) (xy 243.84 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5ac89294-39e3-464e-b82e-a0cb37543ad4)
)
(wire (pts (xy 227.33 179.07) (xy 227.33 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 74aba553-3b90-44fe-9b20-9d6afcd564d2)
)
(wire (pts (xy 227.33 180.34) (xy 243.84 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 17c6ee5b-b128-4f4a-90a2-dee43f331368)
)
(wire (pts (xy 227.33 204.47) (xy 227.33 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 319b4994-f98b-4ec9-9d9d-1984ebfa9397)
)
(wire (pts (xy 227.33 205.74) (xy 260.35 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5f94dd92-5cc5-4f39-ac89-5644fdb82a11)
)
(wire (pts (xy 233.68 72.39) (xy 233.68 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5bea90b1-8c34-4d8d-a1ea-7732931f621d)
)
(wire (pts (xy 233.68 119.38) (xy 233.68 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 986ced17-66a3-470a-b2b4-03a1f6313b88)
)
(wire (pts (xy 233.68 119.38) (xy 233.68 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5395333d-11ca-4ea7-abe3-52ef413eb186)
)
(wire (pts (xy 233.68 146.05) (xy 233.68 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3100f720-8ce3-4520-a5ec-aac84fcf4bf7)
)
(wire (pts (xy 243.84 101.6) (xy 243.84 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 31f9cd81-40c3-4715-8bd8-a333831a2c5a)
)
(wire (pts (xy 243.84 102.87) (xy 260.35 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 828f26da-bc17-4693-a33e-5bf8bb5a0c24)
)
(wire (pts (xy 243.84 127) (xy 243.84 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 230803e6-6dd7-4e69-93f0-4d9de80ff01f)
)
(wire (pts (xy 243.84 128.27) (xy 260.35 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 79418765-32a1-4526-a53c-f96b27e6cd30)
)
(wire (pts (xy 243.84 153.67) (xy 243.84 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid dfcd2c0b-c017-4006-b7ec-1b6778d09b6e)
)
(wire (pts (xy 243.84 154.94) (xy 260.35 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ef20a12a-9f6f-4106-a80a-48d83c7842dd)
)
(wire (pts (xy 243.84 179.07) (xy 243.84 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f49a1c31-0887-4fc6-a94d-7e21d78abd0b)
)
(wire (pts (xy 243.84 180.34) (xy 260.35 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 99d00f7d-732d-4916-a9bc-38a024dfa7e9)
)
(wire (pts (xy 250.19 72.39) (xy 250.19 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 23e54f3a-40d1-4f2c-b748-617476ba6585)
)
(wire (pts (xy 250.19 93.98) (xy 250.19 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 556c7ee5-6d7a-49d2-a482-0ca70315e918)
)
(wire (pts (xy 250.19 119.38) (xy 250.19 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 30be944a-0bcf-4f21-8827-f149b6fa4f3b)
)
(wire (pts (xy 250.19 146.05) (xy 250.19 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid cd0b45ab-9583-4f34-b287-7c2a3cf9a057)
)
(wire (pts (xy 250.19 171.45) (xy 250.19 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fb59ea86-a56c-464b-a9f4-8ccf52d833be)
)
(wire (pts (xy 260.35 101.6) (xy 260.35 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid df2b08bc-cefe-46cf-902b-ccf7744bd48a)
)
(wire (pts (xy 260.35 102.87) (xy 276.86 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 059bf79c-5f3b-419c-9ec4-c9201eda8c30)
)
(wire (pts (xy 260.35 127) (xy 260.35 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6037b12f-ff46-4f07-86a6-e3f1bfc5088f)
)
(wire (pts (xy 260.35 128.27) (xy 276.86 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 05120130-e2bf-4af6-a29e-02949153b4ab)
)
(wire (pts (xy 260.35 153.67) (xy 260.35 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ab6dd5b5-c0d4-463b-8e99-3bd94f256135)
)
(wire (pts (xy 260.35 154.94) (xy 276.86 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 7612ac2d-1199-409a-85b7-0d12813a397e)
)
(wire (pts (xy 260.35 179.07) (xy 260.35 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d45d86d8-2d2f-4d06-bbce-7d3629060c86)
)
(wire (pts (xy 260.35 180.34) (xy 276.86 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 23560704-b4b0-4635-ac55-4f4e6bcd797e)
)
(wire (pts (xy 260.35 204.47) (xy 260.35 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 428bd75c-47d6-4043-83d6-60632f4cbeb9)
)
(wire (pts (xy 260.35 205.74) (xy 309.88 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 3a6dd982-4b76-497f-865d-21cfc422b163)
)
(wire (pts (xy 266.7 72.39) (xy 266.7 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f92b5a70-fca8-414a-86bb-5fb0dcb9d913)
)
(wire (pts (xy 266.7 119.38) (xy 266.7 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 913f8d80-d02e-4a39-89cc-87a4c7d2acc9)
)
(wire (pts (xy 266.7 119.38) (xy 266.7 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0c8bdf6a-ef7a-4056-8ca1-13692c00de3e)
)
(wire (pts (xy 266.7 146.05) (xy 266.7 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c7fdaf7f-888c-44de-85d7-95e35127df01)
)
(wire (pts (xy 276.86 101.6) (xy 276.86 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 74b97fd0-26ef-4711-8aea-b60f1ee96339)
)
(wire (pts (xy 276.86 102.87) (xy 293.37 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2b1c9c86-77ec-4279-900e-1fde0615ef7c)
)
(wire (pts (xy 276.86 127) (xy 276.86 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1435066e-ee76-4927-ab94-d292488d7e55)
)
(wire (pts (xy 276.86 128.27) (xy 293.37 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9d8fb591-336f-4cfa-a5a6-234288613835)
)
(wire (pts (xy 276.86 153.67) (xy 276.86 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 1331bd54-39bb-43e6-a942-6e7139d2d00b)
)
(wire (pts (xy 276.86 154.94) (xy 293.37 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8731eac2-6294-48c5-b659-786f274caaf8)
)
(wire (pts (xy 276.86 179.07) (xy 276.86 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 367859dc-4614-4edf-9671-2583dea81c07)
)
(wire (pts (xy 276.86 180.34) (xy 293.37 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 08f070cd-5230-40df-8180-e9597bd1acb0)
)
(wire (pts (xy 283.21 72.39) (xy 283.21 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid b482d25e-fe3d-4fc4-92ad-8a74215bfd1a)
)
(wire (pts (xy 283.21 93.98) (xy 283.21 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ff6a7b19-02b9-4a58-a36d-aeb6adb38b2c)
)
(wire (pts (xy 283.21 119.38) (xy 283.21 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 20931a02-4435-4642-bffd-72f724f0dd8c)
)
(wire (pts (xy 283.21 146.05) (xy 283.21 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f28191c5-ead2-4dd1-bb6c-19f695d78007)
)
(wire (pts (xy 293.37 101.6) (xy 293.37 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ff4e6c6a-cc8d-4523-8d99-eeb3ba48f2f2)
)
(wire (pts (xy 293.37 102.87) (xy 309.88 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6af9ea03-8a32-4877-ada2-a6e93e013f31)
)
(wire (pts (xy 293.37 127) (xy 293.37 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 6b62745c-fbef-426c-a082-d1f180895b34)
)
(wire (pts (xy 293.37 128.27) (xy 309.88 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ccdce5f0-991c-4097-bd45-9eb8e54e4e70)
)
(wire (pts (xy 293.37 153.67) (xy 293.37 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid da0e93ec-f03f-4c9d-8206-c023b0365b16)
)
(wire (pts (xy 293.37 154.94) (xy 309.88 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d7e42f69-2b61-4b1c-941f-f34ae584c501)
)
(wire (pts (xy 293.37 179.07) (xy 293.37 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 5613064d-103d-478c-a626-10d3a189bb8e)
)
(wire (pts (xy 293.37 180.34) (xy 326.39 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ae784b1c-b7f4-4ee8-b56e-c68316908a34)
)
(wire (pts (xy 299.72 72.39) (xy 299.72 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 2ae9ffe8-a37b-4399-a328-f130d2f08e74)
)
(wire (pts (xy 299.72 119.38) (xy 299.72 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid fb056e92-70ba-45e6-a024-ab0e6710c736)
)
(wire (pts (xy 299.72 119.38) (xy 299.72 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c600ab36-c03d-46b7-9b42-d87ad44888b6)
)
(wire (pts (xy 299.72 146.05) (xy 299.72 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d451ef38-036f-49c8-907d-38c8ba81f703)
)
(wire (pts (xy 309.88 101.6) (xy 309.88 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid abe6c86c-af69-48b6-b943-c8d4822c4e29)
)
(wire (pts (xy 309.88 102.87) (xy 326.39 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e0ff6684-53ae-4727-b419-2a8b7a902e12)
)
(wire (pts (xy 309.88 127) (xy 309.88 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid a2babbf3-c055-4c00-a78d-f858ab3fd1e9)
)
(wire (pts (xy 309.88 128.27) (xy 326.39 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8d3a5518-2b15-43ab-988e-6a792c238f53)
)
(wire (pts (xy 309.88 153.67) (xy 309.88 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 72345324-100a-4bea-883f-674bfa64966e)
)
(wire (pts (xy 309.88 204.47) (xy 309.88 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ccd72c4f-3ee7-4582-9bc5-f23af678803b)
)
(wire (pts (xy 309.88 205.74) (xy 326.39 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 8ea78dc0-9656-4d3b-9968-e48a619c3e56)
)
(wire (pts (xy 316.23 72.39) (xy 316.23 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 44603b55-7494-4139-8953-b420bf1e7d67)
)
(wire (pts (xy 316.23 119.38) (xy 316.23 93.98))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 0b112390-892c-4585-af31-d86875193770)
)
(wire (pts (xy 316.23 119.38) (xy 316.23 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 77fbfcc8-672d-4d33-a60a-1ef5d1a7c3a5)
)
(wire (pts (xy 316.23 171.45) (xy 316.23 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid c88e0bb7-c27e-471d-a487-6194107ee485)
)
(wire (pts (xy 326.39 101.6) (xy 326.39 102.87))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 926f9dca-6be7-4422-bdeb-56d4572b31ad)
)
(wire (pts (xy 326.39 127) (xy 326.39 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid f01fedb9-d588-4ae2-9a0d-019532cc8a69)
)
(wire (pts (xy 326.39 179.07) (xy 326.39 180.34))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d3ef8821-bd55-4810-887b-875541245db6)
)
(wire (pts (xy 326.39 204.47) (xy 326.39 205.74))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid ab4b2dc8-248e-4048-9368-16f3a2783315)
)
(wire (pts (xy 332.74 72.39) (xy 332.74 119.38))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 13dc80fd-7ec1-4310-9630-447ca6430621)
)
(wire (pts (xy 332.74 119.38) (xy 332.74 146.05))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 55e0e017-78f3-4a46-98d4-5e43bc5e7463)
)
(wire (pts (xy 332.74 146.05) (xy 332.74 171.45))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 99198084-9ae3-4532-b304-c740478b4adc)
)
(wire (pts (xy 332.74 171.45) (xy 332.74 196.85))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 9032756d-b0a4-46e5-bbc5-933fdbc583b1)
)
(wire (pts (xy 342.9 127) (xy 342.9 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid e467632a-ad62-4c56-9134-0ae011e68cba)
)
(wire (pts (xy 342.9 128.27) (xy 326.39 128.27))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid 13fab15e-6642-49ef-80be-baed3056c4ee)
)
(wire (pts (xy 342.9 153.67) (xy 342.9 154.94))
(stroke (width 0) (type solid) (color 0 0 0 0))
(uuid d21bf531-0d75-4ea0-80c7-7995ebda19fb)