-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVideo+Sound.kicad_sch
2604 lines (2545 loc) · 114 KB
/
Video+Sound.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 11f8c08e-d693-4a7f-87ef-046098a846f9)
(paper "A4")
(lib_symbols
(symbol "Aslak:DIN_41612_3x32_MIDI020_CARD" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 5.08 31.75 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Aslak_DIN_41612_3x32_MIDI020_CARD" (id 1) (at -3.81 31.75 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "DIN_41612_3x32_MIDI020_CARD_0_1"
(rectangle (start -6.35 30.48) (end 7.62 -53.34)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "DIN_41612_3x32_MIDI020_CARD_1_1"
(pin bidirectional line (at -11.43 27.94 0) (length 5.08)
(name "D16" (effects (font (size 1.27 1.27))))
(number "a1" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 5.08 0) (length 5.08)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "a10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 2.54 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "a11" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 0 0) (length 5.08)
(name "A0" (effects (font (size 1.27 1.27))))
(number "a12" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -2.54 0) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "a13" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -5.08 0) (length 5.08)
(name "A4" (effects (font (size 1.27 1.27))))
(number "a14" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -7.62 0) (length 5.08)
(name "A6" (effects (font (size 1.27 1.27))))
(number "a15" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -10.16 0) (length 5.08)
(name "A8" (effects (font (size 1.27 1.27))))
(number "a16" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -12.7 0) (length 5.08)
(name "A10" (effects (font (size 1.27 1.27))))
(number "a17" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -15.24 0) (length 5.08)
(name "A12" (effects (font (size 1.27 1.27))))
(number "a18" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -17.78 0) (length 5.08)
(name "A14" (effects (font (size 1.27 1.27))))
(number "a19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 25.4 0) (length 5.08)
(name "D18" (effects (font (size 1.27 1.27))))
(number "a2" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -20.32 0) (length 5.08)
(name "A16" (effects (font (size 1.27 1.27))))
(number "a20" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -22.86 0) (length 5.08)
(name "A18" (effects (font (size 1.27 1.27))))
(number "a21" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -25.4 0) (length 5.08)
(name "A20" (effects (font (size 1.27 1.27))))
(number "a22" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -27.94 0) (length 5.08)
(name "A22" (effects (font (size 1.27 1.27))))
(number "a23" (effects (font (size 1.27 1.27))))
)
(pin output clock (at -11.43 -30.48 0) (length 5.08)
(name "MASTERCLK" (effects (font (size 0.7874 0.7874))))
(number "a24" (effects (font (size 1.27 1.27))))
)
(pin output clock (at -11.43 -33.02 0) (length 5.08)
(name "MPUCLK" (effects (font (size 0.7874 0.7874))))
(number "a25" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -35.56 0) (length 5.08)
(name "~{RESET}" (effects (font (size 1.27 1.27))))
(number "a26" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -38.1 0) (length 5.08)
(name "~{INT}" (effects (font (size 1.27 1.27))))
(number "a27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -40.64 0) (length 5.08)
(name "~{BERR}" (effects (font (size 1.27 1.27))))
(number "a28" (effects (font (size 1.27 1.27))))
)
(pin input line (at -11.43 -43.18 0) (length 5.08)
(name "~{WAIT}" (effects (font (size 1.27 1.27))))
(number "a29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 22.86 0) (length 5.08)
(name "D20" (effects (font (size 1.27 1.27))))
(number "a3" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -45.72 0) (length 5.08)
(name "~{LCS}" (effects (font (size 1.27 1.27))))
(number "a30" (effects (font (size 1.27 1.27))))
)
(pin output line (at -11.43 -48.26 0) (length 5.08)
(name "~{UCS}" (effects (font (size 1.27 1.27))))
(number "a31" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -11.43 -50.8 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "a32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 20.32 0) (length 5.08)
(name "D22" (effects (font (size 1.27 1.27))))
(number "a4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 17.78 0) (length 5.08)
(name "D24" (effects (font (size 1.27 1.27))))
(number "a5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 15.24 0) (length 5.08)
(name "D26" (effects (font (size 1.27 1.27))))
(number "a6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 12.7 0) (length 5.08)
(name "D28" (effects (font (size 1.27 1.27))))
(number "a7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -11.43 10.16 0) (length 5.08)
(name "D30" (effects (font (size 1.27 1.27))))
(number "a8" (effects (font (size 1.27 1.27))))
)
(pin bidirectional clock (at -11.43 7.62 0) (length 5.08)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "a9" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 27.94 180) (length 5.08)
(name "D17" (effects (font (size 1.27 1.27))))
(number "c1" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 5.08 180) (length 5.08)
(name "~{AS}" (effects (font (size 1.27 1.27))))
(number "c10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 2.54 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "c11" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 0 180) (length 5.08)
(name "A1" (effects (font (size 1.27 1.27))))
(number "c12" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -2.54 180) (length 5.08)
(name "A3" (effects (font (size 1.27 1.27))))
(number "c13" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -5.08 180) (length 5.08)
(name "A5" (effects (font (size 1.27 1.27))))
(number "c14" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -7.62 180) (length 5.08)
(name "A7" (effects (font (size 1.27 1.27))))
(number "c15" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -10.16 180) (length 5.08)
(name "A9" (effects (font (size 1.27 1.27))))
(number "c16" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -12.7 180) (length 5.08)
(name "A11" (effects (font (size 1.27 1.27))))
(number "c17" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -15.24 180) (length 5.08)
(name "A13" (effects (font (size 1.27 1.27))))
(number "c18" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -17.78 180) (length 5.08)
(name "A15" (effects (font (size 1.27 1.27))))
(number "c19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 25.4 180) (length 5.08)
(name "D19" (effects (font (size 1.27 1.27))))
(number "c2" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -20.32 180) (length 5.08)
(name "A17" (effects (font (size 1.27 1.27))))
(number "c20" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -22.86 180) (length 5.08)
(name "A19" (effects (font (size 1.27 1.27))))
(number "c21" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -25.4 180) (length 5.08)
(name "A21" (effects (font (size 1.27 1.27))))
(number "c22" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -27.94 180) (length 5.08)
(name "A23" (effects (font (size 1.27 1.27))))
(number "c23" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -30.48 180) (length 5.08)
(name "~{READ}" (effects (font (size 1.27 1.27))))
(number "c24" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -33.02 180) (length 5.08)
(name "~{WRITE}" (effects (font (size 1.27 1.27))))
(number "c25" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -35.56 180) (length 5.08)
(name "R~{W}" (effects (font (size 1.27 1.27))))
(number "c26" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -38.1 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "c27" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -40.64 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "c28" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 -43.18 180) (length 5.08)
(name "~{IACKX}" (effects (font (size 1.27 1.27))))
(number "c29" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 22.86 180) (length 5.08)
(name "D21" (effects (font (size 1.27 1.27))))
(number "c3" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -45.72 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "c30" (effects (font (size 1.27 1.27))))
)
(pin no_connect line (at 12.7 -48.26 180) (length 5.08)
(name "~" (effects (font (size 1.27 1.27))))
(number "c31" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 12.7 -50.8 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "c32" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 20.32 180) (length 5.08)
(name "D23" (effects (font (size 1.27 1.27))))
(number "c4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 17.78 180) (length 5.08)
(name "D25" (effects (font (size 1.27 1.27))))
(number "c5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 15.24 180) (length 5.08)
(name "D27" (effects (font (size 1.27 1.27))))
(number "c6" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 12.7 180) (length 5.08)
(name "D29" (effects (font (size 1.27 1.27))))
(number "c7" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 12.7 10.16 180) (length 5.08)
(name "D31" (effects (font (size 1.27 1.27))))
(number "c8" (effects (font (size 1.27 1.27))))
)
(pin output line (at 12.7 7.62 180) (length 5.08)
(name "~{DS}" (effects (font (size 1.27 1.27))))
(number "c9" (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: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 "Memory_EEPROM:AT24CS64-SSHM" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "AT24CS64-SSHM" (id 1) (at 2.54 -6.35 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8870-SEEPROM-AT24CS64-Datasheet.pdf" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "I2C Serial EEPROM Nonvolatile Memory" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "I2C Serial EEPROM, 64Kb (8192x8) with Unique Serial Number, SO8" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "AT24CS64-SSHM_1_1"
(rectangle (start -7.62 5.08) (end 7.62 -5.08)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -10.16 2.54 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 0 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -10.16 -2.54 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -7.62 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at 10.16 2.54 180) (length 2.54)
(name "SDA" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 0 180) (length 2.54)
(name "SCL" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 10.16 -2.54 180) (length 2.54)
(name "WP" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 7.62 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5VD" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5VD" (id 1) (at 0 3.556 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 \"+5VD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5VD_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5VD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5VD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GNDD" (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" "GNDD" (id 1) (at 0 -3.175 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 \"GNDD\" , digital ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GNDD_0_1"
(rectangle (start -1.27 -1.524) (end 1.27 -2.032)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type outline))
)
(polyline
(pts
(xy 0 0)
(xy 0 -1.524)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GNDD_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GNDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 121.92 62.23) (diameter 0) (color 0 0 0 0)
(uuid 11825dd3-1b8d-44f8-acfc-c84d3e968d01)
)
(junction (at 121.92 87.63) (diameter 0) (color 0 0 0 0)
(uuid 626fa979-e904-4aac-8a35-8b1916d60189)
)
(junction (at 134.62 62.23) (diameter 0) (color 0 0 0 0)
(uuid 6ac5a6e3-c417-4482-b776-e6e976372e5a)
)
(junction (at 142.24 77.47) (diameter 0) (color 0 0 0 0)
(uuid 8d4443f6-a5a6-439b-9ad7-249e6f6604c8)
)
(junction (at 107.95 77.47) (diameter 0) (color 0 0 0 0)
(uuid aa667db8-0cb6-4dd8-abd3-e3590b775a8a)
)
(junction (at 134.62 74.93) (diameter 0) (color 0 0 0 0)
(uuid ade8a091-3703-4f54-aaaa-c64a38f369ff)
)
(junction (at 107.95 80.01) (diameter 0) (color 0 0 0 0)
(uuid ae0e1c87-b5b6-4dd7-a3f7-eb51b49b77a5)
)
(no_connect (at 58.42 85.09) (uuid 01a0093f-b2c7-421c-8662-919fe517c2cd))
(no_connect (at 58.42 128.27) (uuid 5ea69c56-4064-422b-9db7-fed465072c1a))
(no_connect (at 58.42 82.55) (uuid 8c7a880d-84c9-4b82-bfee-cac6d6372d3e))
(no_connect (at 58.42 133.35) (uuid 8fbaf024-beea-4286-9ed5-4a5ef4578e48))
(no_connect (at 58.42 130.81) (uuid ae609d52-a21a-4fe9-8439-7287cd27b4af))
(no_connect (at 58.42 125.73) (uuid ed42422e-7feb-4358-baf2-a255bb905e75))
(bus_entry (at 27.94 115.57) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07b983ec-c651-4ae7-8987-4af852a751df)
)
(bus_entry (at 64.77 64.77) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a553bd0-e5b3-4755-a61b-c730feddb294)
)
(bus_entry (at 64.77 72.39) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13bd2963-34ff-428b-8894-e9ac306aea8a)
)
(bus_entry (at 64.77 77.47) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 159f99a0-fc69-471c-a10e-4f981c303aee)
)
(bus_entry (at 64.77 95.25) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1bc8e364-ffd1-4245-a5a0-46b1efb8d0e8)
)
(bus_entry (at 64.77 74.93) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2339a1f7-16e2-4784-9826-79fb081f6f36)
)
(bus_entry (at 64.77 110.49) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 28d64384-50f5-466b-979c-d278763ac8a4)
)
(bus_entry (at 64.77 67.31) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2abca4b6-db71-4a9c-aa6d-f1c8ef8df41a)
)
(bus_entry (at 64.77 115.57) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 304ba977-e24e-406d-affd-1badec36304e)
)
(bus_entry (at 64.77 87.63) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 314e512b-b2fe-42b2-99de-04ebeadb8601)
)
(bus_entry (at 27.94 95.25) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34e8da77-dca8-4b28-bba1-3cf3bf060adc)
)
(bus_entry (at 27.94 87.63) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3fffbe10-0841-41f5-88cf-d6845296813e)
)
(bus_entry (at 27.94 100.33) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44671bab-1c36-4740-889f-9b678449f2d2)
)
(bus_entry (at 64.77 100.33) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d5b5fc6-afe1-4634-a6d2-9b7ffb3c2285)
)
(bus_entry (at 27.94 59.69) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57c8e5f0-98e1-4764-aacb-dea56e99a50a)
)
(bus_entry (at 27.94 69.85) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5eded4a5-eb61-43eb-aa45-219d9eddf3bf)
)
(bus_entry (at 27.94 62.23) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b45122f-f192-4611-b95b-91d6990d45c5)
)
(bus_entry (at 27.94 113.03) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7b76cf36-44af-481a-a159-7f89de9fbd5b)
)
(bus_entry (at 27.94 74.93) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8764adbf-3378-4aca-be52-7989cfa1e814)
)
(bus_entry (at 64.77 113.03) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8773cc39-68ed-4a6d-a76c-8f6f59de5fd3)
)
(bus_entry (at 27.94 72.39) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8968f20e-6d6b-4af6-a50d-d97db4805aab)
)
(bus_entry (at 64.77 59.69) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 951dc06d-b3a7-4e69-8166-35759e7d5285)
)
(bus_entry (at 27.94 110.49) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98ce7f69-6166-43df-ac00-b09c54b1137c)
)
(bus_entry (at 27.94 64.77) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98f13ddd-13ce-4ee9-88e1-c78fea041209)
)
(bus_entry (at 64.77 107.95) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a26fddff-cc62-4e36-a391-63be35584166)
)
(bus_entry (at 64.77 97.79) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a28b5711-5781-4395-8b0d-71bc54cd57ec)
)
(bus_entry (at 27.94 90.17) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a54467c3-a40f-40cf-af3d-b10cbc886d4b)
)
(bus_entry (at 27.94 92.71) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a895ad48-6066-468c-a8e9-f2af5d0c4eff)
)
(bus_entry (at 64.77 115.57) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b45931e5-1c06-425e-a408-00d106383714)
)
(bus_entry (at 27.94 102.87) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b99eb4e9-3612-475a-9ccd-6d02a4f35169)
)
(bus_entry (at 64.77 105.41) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2e644b8-e79c-4470-a995-fa0f99a679f7)
)
(bus_entry (at 64.77 62.23) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c7164de7-2327-431c-84e3-124eff4b4eb7)
)
(bus_entry (at 64.77 69.85) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c820f10e-92ff-4092-9b28-60eab0c4c53f)
)
(bus_entry (at 27.94 105.41) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cc958739-10f8-4001-a533-6e217c33a0e0)
)
(bus_entry (at 27.94 115.57) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid cf1e96d1-ff80-43ee-8409-f8774608c99c)
)
(bus_entry (at 64.77 102.87) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d745a4a3-41be-49f7-869d-a1cdc6411e5f)
)
(bus_entry (at 64.77 92.71) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d7a101e0-93f9-4752-a65e-c838e54e658f)
)
(bus_entry (at 64.77 90.17) (size -2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid deff9f4a-b036-4340-8c31-f0e56c99776f)
)
(bus_entry (at 27.94 77.47) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e8bad016-aa96-4634-b607-8376fe0080a4)
)
(bus_entry (at 27.94 97.79) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f250662d-8bc8-4d6d-8e62-52b40e208013)
)
(bus_entry (at 27.94 67.31) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f6ad5fd1-8cb1-4c49-a2de-5ebdc5ea5772)
)
(bus_entry (at 27.94 107.95) (size 2.54 2.54)
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid feb0078d-dd42-4c9c-a2a1-760ccbd3b445)
)
(wire (pts (xy 58.42 140.97) (xy 68.58 140.97))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 01297f07-8dea-4282-b0c6-5ddd984f11b7)
)
(wire (pts (xy 58.42 97.79) (xy 62.23 97.79))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0167bd4f-18bf-4299-a146-10577f79d798)
)
(bus (pts (xy 27.94 69.85) (xy 27.94 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 025af800-1200-42b0-a4e6-155e62281ee9)
)
(bus (pts (xy 27.94 67.31) (xy 27.94 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02f1cbb1-a82f-4ba3-a1bb-a67638565eb9)
)
(wire (pts (xy 107.95 87.63) (xy 121.92 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0601ec56-0c73-4155-839c-655efb0fdf88)
)
(wire (pts (xy 58.42 102.87) (xy 62.23 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 07b7382f-ab50-499c-8c96-c814b60f1bd7)
)
(bus (pts (xy 27.94 110.49) (xy 27.94 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0df399ef-a3d3-4053-a718-9dee30d70d4d)
)
(wire (pts (xy 58.42 105.41) (xy 62.23 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0e40fcc1-324a-49d3-83ca-ee3c5bafb3e3)
)
(wire (pts (xy 34.29 85.09) (xy 30.48 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0fda42ae-fc8b-4284-8f59-7694972bc928)
)
(bus (pts (xy 64.77 72.39) (xy 64.77 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13be6b43-94b6-4eda-a50a-962a33dc7b56)
)
(wire (pts (xy 34.29 130.81) (xy 30.48 130.81))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13e4e8d6-b800-46f0-8ff2-74057a69f353)
)
(bus (pts (xy 64.77 69.85) (xy 64.77 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1444540b-97ed-4b25-a555-f06a9d69baf6)
)
(bus (pts (xy 64.77 100.33) (xy 64.77 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17fab233-c6da-4d9d-bf29-161a35c3849e)
)
(wire (pts (xy 186.69 110.49) (xy 186.69 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 18497d52-50ec-46c7-a7f4-038935f87cad)
)
(bus (pts (xy 27.94 55.88) (xy 27.94 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 187879f5-db63-48de-9c28-c888ed5628d9)
)
(bus (pts (xy 27.94 59.69) (xy 27.94 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 196b15fb-a826-4fdd-903b-7b20b6f5795f)
)
(bus (pts (xy 64.77 110.49) (xy 64.77 113.03))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1cf44aac-3df5-4b11-9406-4a8d4ecdd08b)
)
(bus (pts (xy 64.77 90.17) (xy 64.77 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d6ca14e-89f4-4dc3-8dd0-b7f3288bc647)
)
(wire (pts (xy 34.29 118.11) (xy 30.48 118.11))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1d6f712c-3aa4-4784-8b84-5dac5f3bba45)
)
(bus (pts (xy 27.94 92.71) (xy 27.94 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e946c91-edd4-44d5-b60c-b51c6f72d8d0)
)
(bus (pts (xy 27.94 90.17) (xy 27.94 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 305b2463-e67a-46d3-ad16-0d6b9254e9f0)
)
(wire (pts (xy 34.29 72.39) (xy 30.48 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 32388acd-2e77-4e47-ac25-78f9e03c1360)
)
(wire (pts (xy 27.94 87.63) (xy 34.29 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 38f136eb-7c5c-4aa8-bc3f-283137b310af)
)
(wire (pts (xy 121.92 69.85) (xy 121.92 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 39285214-70c8-4f50-a2ed-9d4e9e62bb1d)
)
(wire (pts (xy 58.42 92.71) (xy 62.23 92.71))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3c94a0ee-c2c4-44ba-9a60-663b1e22734b)
)
(wire (pts (xy 27.94 140.97) (xy 27.94 143.51))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3de32d43-2577-4a31-9d10-454565ff4989)
)
(bus (pts (xy 64.77 92.71) (xy 64.77 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3e218e62-b276-46d7-90c9-c84bb04c197b)
)
(bus (pts (xy 64.77 107.95) (xy 64.77 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 444b47b5-6e42-459b-9811-b528b1f27b61)
)
(wire (pts (xy 58.42 100.33) (xy 62.23 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 45ec3281-00b5-41f0-a020-07d0e9404f19)
)
(wire (pts (xy 34.29 64.77) (xy 30.48 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 462a657a-fdbd-46f4-9e28-c3eeb131b6a4)
)
(wire (pts (xy 34.29 128.27) (xy 30.48 128.27))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47e5847a-9007-42c3-9772-518c1a2c6445)
)
(wire (pts (xy 132.08 80.01) (xy 134.62 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47e5a6eb-e24f-4d55-94f3-5916b80bf471)
)
(wire (pts (xy 34.29 67.31) (xy 30.48 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4966baf0-7a3a-4696-9a43-d894246e93dd)
)
(wire (pts (xy 24.13 87.63) (xy 24.13 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 496892e5-48b3-459e-888b-45b69b0773e1)
)
(bus (pts (xy 27.94 72.39) (xy 27.94 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e12207c-4d5e-4818-8889-7945236684f4)
)
(bus (pts (xy 27.94 87.63) (xy 27.94 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f1488aa-df5c-4cb2-b201-390452ca9a8c)
)
(wire (pts (xy 68.58 140.97) (xy 68.58 138.43))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 50402cea-04a0-4e7c-b542-7b80f40ba770)
)
(wire (pts (xy 107.95 77.47) (xy 107.95 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 529e113f-e6ac-436f-ba6a-51a524df8d1f)
)
(wire (pts (xy 58.42 87.63) (xy 64.77 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5424168c-464c-4850-81c5-b9f2670a24e4)
)
(bus (pts (xy 64.77 115.57) (xy 68.58 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 553ecfbb-2243-4932-8538-f749be09a6aa)
)
(wire (pts (xy 58.42 123.19) (xy 62.23 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5654acd4-4400-4fa6-b1e3-20ab72075a95)
)
(bus (pts (xy 64.77 77.47) (xy 68.58 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5a2e54b4-0b37-49d6-a79a-83199e9b8c1a)
)
(wire (pts (xy 34.29 69.85) (xy 30.48 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5aca2923-4bda-481c-856a-63ab62eb4995)
)
(wire (pts (xy 68.58 87.63) (xy 68.58 85.09))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5af1fc84-82df-4133-a289-4c0788805d2a)
)
(wire (pts (xy 24.13 87.63) (xy 27.94 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5d6d4f89-f19a-46da-a1d2-5c377bf93965)
)
(bus (pts (xy 27.94 105.41) (xy 27.94 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5e5fc619-8021-4f5d-b5b7-fac106853a2c)
)
(wire (pts (xy 34.29 115.57) (xy 30.48 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5ed567b9-a308-449b-a1cf-c28285c4cd59)
)
(wire (pts (xy 34.29 74.93) (xy 30.48 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5f810fe7-58a5-49ef-ba1d-b1836626e313)
)
(bus (pts (xy 64.77 102.87) (xy 64.77 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 608fd4e3-f46a-483a-9c4a-0df155a1a3da)
)
(wire (pts (xy 121.92 62.23) (xy 121.92 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61aafd90-892b-4d30-87d4-258d58d1de43)
)
(wire (pts (xy 121.92 62.23) (xy 134.62 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61bf4d40-8787-4d7b-b38d-b576e0560fe7)
)
(wire (pts (xy 34.29 102.87) (xy 30.48 102.87))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 61ee619f-6a0f-46d9-88e2-1f71c1b99404)
)
(bus (pts (xy 27.94 86.36) (xy 27.94 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63816071-450f-44fa-92e2-8c59da590d2f)
)
(wire (pts (xy 58.42 72.39) (xy 62.23 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6789ae67-c2fd-4d68-9ca5-8b953208cdd2)
)
(wire (pts (xy 121.92 87.63) (xy 121.92 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 681731d5-9b6a-4691-8070-98c669a165ad)
)
(wire (pts (xy 142.24 72.39) (xy 142.24 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 68baf3c0-2abe-4384-a89e-d9f14356c1c8)
)
(bus (pts (xy 27.94 113.03) (xy 27.94 115.57))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 69e497ed-d9f6-43ac-b7bf-4dd637c6c514)
)
(wire (pts (xy 34.29 82.55) (xy 30.48 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a822ab0-f088-4875-a7e2-fcd533c2c6e6)
)
(wire (pts (xy 34.29 123.19) (xy 30.48 123.19))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6d4826ef-6da4-4201-8b68-6d1610595d20)
)
(wire (pts (xy 34.29 100.33) (xy 30.48 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6da6693b-3b5c-4301-98d0-2d4f514adb5b)
)
(wire (pts (xy 64.77 87.63) (xy 68.58 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6ed2c12c-94a8-4840-87db-38cc08f4480f)
)
(wire (pts (xy 107.95 80.01) (xy 107.95 87.63))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70a6ea7c-b984-4ab9-8d07-5b852b23f1b2)
)
(wire (pts (xy 186.69 102.87) (xy 186.69 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7147c24d-c7c8-4c62-af5b-99831f86745c)
)
(wire (pts (xy 58.42 90.17) (xy 62.23 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 717ce671-1361-4b85-be78-7cd495f89b59)
)
(wire (pts (xy 58.42 95.25) (xy 62.23 95.25))
(stroke (width 0) (type default) (color 0 0 0 0))