-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvram.kicad_sch
More file actions
2165 lines (2127 loc) · 88.9 KB
/
Copy pathvram.kicad_sch
File metadata and controls
2165 lines (2127 loc) · 88.9 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 20211123) (generator eeschema)
(uuid f9888687-7973-40a4-9a70-d1117b2c2ff4)
(paper "A4")
(lib_symbols
(symbol "74xx:74LS04" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS04" (id 1) (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL not inv" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Hex Inverter" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SSOP?14* TSSOP?14*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LS04_1_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_2_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_3_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_4_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_5_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_6_0"
(polyline
(pts
(xy -3.81 3.81)
(xy -3.81 -3.81)
(xy 3.81 0)
(xy -3.81 3.81)
)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
(pin output inverted (at 7.62 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -7.62 0 0) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_7_0"
(pin power_in line (at 0 12.7 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -12.7 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS04_7_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
)
(symbol "74xx:74LS574" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -7.62 16.51 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS574" (id 1) (at -7.62 -16.51 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" "http://www.ti.com/lit/gpn/sn74LS574" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL REG DFF DFF8 3State" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "8-bit Register, 3-state outputs" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP?20*" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LS574_1_0"
(pin input inverted (at -12.7 -12.7 0) (length 5.08)
(name "OE" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 -20.32 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input clock (at -12.7 -10.16 0) (length 5.08)
(name "Cp" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 -5.08 180) (length 5.08)
(name "Q7" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 -2.54 180) (length 5.08)
(name "Q6" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 0 180) (length 5.08)
(name "Q5" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 2.54 180) (length 5.08)
(name "Q4" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 5.08 180) (length 5.08)
(name "Q3" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 7.62 180) (length 5.08)
(name "Q2" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 10.16 180) (length 5.08)
(name "Q1" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 12.7 180) (length 5.08)
(name "Q0" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 5.08)
(name "D0" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 20.32 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 5.08)
(name "D1" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 5.08)
(name "D2" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 5.08)
(name "D3" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 5.08)
(name "D4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 5.08)
(name "D5" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 5.08)
(name "D6" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 5.08)
(name "D7" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS574_1_1"
(rectangle (start -7.62 15.24) (end 7.62 -15.24)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
)
(symbol "Device:C_Small" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.254 1.778 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Small" (id 1) (at 0.254 -2.032 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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" "capacitor cap" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor, small symbol" (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_Small_0_1"
(polyline
(pts
(xy -1.524 -0.508)
(xy 1.524 -0.508)
)
(stroke (width 0.3302) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.524 0.508)
(xy 1.524 0.508)
)
(stroke (width 0.3048) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_Small_1_1"
(pin passive line (at 0 2.54 270) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -2.54 90) (length 2.032)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Memory_RAM:KM62256CLP" (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -10.16 20.955 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "KM62256CLP" (id 1) (at 2.54 20.955 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "Package_DIP:DIP-28_W15.24mm" (id 2) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "https://www.futurlec.com/Datasheet/Memory/62256.pdf" (id 3) (at 0 -2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "RAM SRAM CMOS MEMORY" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "32Kx8 bit Low Power CMOS Static RAM, 55/70ns, DIP-28" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W15.24mm*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "KM62256CLP_0_0"
(pin power_in line (at 0 -22.86 90) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 0 22.86 270) (length 2.54)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "28" (effects (font (size 1.27 1.27))))
)
)
(symbol "KM62256CLP_0_1"
(rectangle (start -10.16 20.32) (end 10.16 -20.32)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "KM62256CLP_1_1"
(pin input line (at -12.7 -17.78 0) (length 2.54)
(name "A14" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 17.78 0) (length 2.54)
(name "A0" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 17.78 180) (length 2.54)
(name "Q0" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 15.24 180) (length 2.54)
(name "Q1" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 12.7 180) (length 2.54)
(name "Q2" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 10.16 180) (length 2.54)
(name "Q3" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 7.62 180) (length 2.54)
(name "Q4" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 5.08 180) (length 2.54)
(name "Q5" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 2.54 180) (length 2.54)
(name "Q6" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 0 180) (length 2.54)
(name "Q7" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -12.7 0) (length 2.54)
(name "A12" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -5.08 180) (length 2.54)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 2.54)
(name "A10" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -10.16 180) (length 2.54)
(name "~{OE}" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -10.16 0) (length 2.54)
(name "A11" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -5.08 0) (length 2.54)
(name "A9" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -2.54 0) (length 2.54)
(name "A8" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 2.54)
(name "A13" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin input line (at 12.7 -12.7 180) (length 2.54)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 2.54)
(name "A7" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 2.54)
(name "A6" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 2.54)
(name "A5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 2.54)
(name "A4" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 2.54)
(name "A3" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 2.54)
(name "A2" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 15.24 0) (length 2.54)
(name "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:+5V" (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" "+5V" (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 \"+5V\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V_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 "+5V_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "power-flag" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 240.03 66.04) (diameter 0) (color 0 0 0 0)
(uuid 0843e47f-be5e-43c4-a596-190efc8b6196)
)
(junction (at 64.77 22.225) (diameter 0) (color 0 0 0 0)
(uuid 147c443e-8a9a-44e1-96ea-4508f6d93670)
)
(junction (at 64.77 142.875) (diameter 0) (color 0 0 0 0)
(uuid 25032d8e-d8c9-4396-bde8-f8d4586b838b)
)
(junction (at 64.77 80.645) (diameter 0) (color 0 0 0 0)
(uuid 3da2a622-6453-4f92-bdd0-4b61e6395f77)
)
(junction (at 240.03 38.1) (diameter 0) (color 0 0 0 0)
(uuid 6e47f0ee-21a9-44a9-9da1-3adf92fd8f91)
)
(junction (at 120.65 85.725) (diameter 0) (color 0 0 0 0)
(uuid b81b63d0-51fa-4243-8d87-d9c08df33b32)
)
(junction (at 64.77 125.095) (diameter 0) (color 0 0 0 0)
(uuid e4d8ce10-cf69-4bad-b209-4040b3b7e330)
)
(junction (at 64.77 187.325) (diameter 0) (color 0 0 0 0)
(uuid fb5c6563-f12e-40ff-96df-da4d4908e82f)
)
(junction (at 97.155 128.905) (diameter 0) (color 0 0 0 0)
(uuid fd2ecd1d-e07e-4e07-a943-f093f997e24e)
)
(no_connect (at 77.47 90.805) (uuid 078d3cae-e5c5-4f96-a1e3-255fbbf33b15))
(no_connect (at 77.47 153.035) (uuid 078d3cae-e5c5-4f96-a1e3-255fbbf33b16))
(wire (pts (xy 86.995 116.205) (xy 86.995 160.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 02512ddc-9730-4721-a32a-f7c5696dbf49)
)
(wire (pts (xy 135.89 111.125) (xy 133.35 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 055e9428-df17-4e9f-b38f-dff26ab40704)
)
(wire (pts (xy 135.89 108.585) (xy 133.35 108.585))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0581eee7-2434-46c9-bf52-683d76f40775)
)
(wire (pts (xy 187.325 43.815) (xy 187.325 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 069c53f9-b5e5-4894-ac8a-41eccef4f35d)
)
(wire (pts (xy 34.925 142.875) (xy 34.925 145.415))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 06eda2b5-2f7e-4637-bfc7-57e0466730ac)
)
(wire (pts (xy 248.92 66.04) (xy 240.03 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0729eed9-1a69-4c39-b2ab-cc891de9f263)
)
(wire (pts (xy 49.53 40.005) (xy 52.07 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 085a6718-0489-4910-97d7-4f935354be11)
)
(wire (pts (xy 52.07 57.785) (xy 49.53 57.785))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0a3ff8bf-373c-4ffb-8413-ebcfe9e88365)
)
(wire (pts (xy 49.53 155.575) (xy 52.07 155.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bacbb23-69f1-4822-b80a-66f2df02f3f4)
)
(wire (pts (xy 77.47 106.045) (xy 107.95 106.045))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0bb848bc-36b7-4ead-bfc0-b3b80bdf9d78)
)
(wire (pts (xy 84.455 158.115) (xy 84.455 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0d7fb2d6-125a-4338-a7fe-53e2bb637500)
)
(wire (pts (xy 150.495 95.885) (xy 150.495 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10c339cf-8e6e-4564-b0e9-d2f3122bc2a7)
)
(wire (pts (xy 176.53 43.815) (xy 156.21 43.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 10e84ad9-8061-4ade-bf23-7a354584b17f)
)
(wire (pts (xy 49.53 90.805) (xy 52.07 90.805))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 113f98c6-ea7d-4a73-8a9f-f80091116f48)
)
(wire (pts (xy 80.01 37.465) (xy 77.47 37.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15692ef8-f327-4996-ac46-b416a04c033e)
)
(wire (pts (xy 84.455 113.665) (xy 107.95 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b2bbb50-4071-44dc-8f55-eaa52c4f239d)
)
(wire (pts (xy 77.47 103.505) (xy 107.95 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c380d61-3e9b-4767-b201-cd25779a7e70)
)
(wire (pts (xy 97.155 170.815) (xy 77.47 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1c9b0ea5-6bb8-4092-8712-a8dada1f9100)
)
(wire (pts (xy 77.47 95.885) (xy 107.95 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e115ab2-204c-40e7-924b-202e221f958b)
)
(wire (pts (xy 77.47 155.575) (xy 81.915 155.575))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 215d6f0c-219e-4e93-9f3d-fef83fbc3230)
)
(wire (pts (xy 173.355 52.07) (xy 176.53 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2414c44f-15db-444f-939a-b34bd9d2d772)
)
(wire (pts (xy 206.375 52.07) (xy 210.82 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 255c8a2e-8aa7-44e9-b9e8-93c62b7f5b41)
)
(wire (pts (xy 45.085 175.895) (xy 52.07 175.895))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2db79941-ec72-429f-a434-a8bf333637fe)
)
(wire (pts (xy 120.65 83.185) (xy 120.65 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2dce0942-7f94-4e6e-bccc-8bbba780f60a)
)
(wire (pts (xy 210.82 66.675) (xy 206.375 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2fb80a90-8499-4628-a7af-ea9dbbede274)
)
(wire (pts (xy 92.075 121.285) (xy 92.075 165.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34f5d87e-9d1d-45b1-9316-97ec45b4ee9e)
)
(wire (pts (xy 240.03 66.04) (xy 240.03 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3611aa9e-399d-49d7-bb7e-fcb1674c4f5a)
)
(wire (pts (xy 135.89 93.345) (xy 133.35 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a63f868-e99d-41a2-b848-1e68381f9f06)
)
(wire (pts (xy 64.77 125.095) (xy 64.77 123.825))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3dd99c54-7f13-45fb-b024-ae0d2c129eaf)
)
(wire (pts (xy 97.155 128.905) (xy 97.155 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 43acd447-0087-4a54-a138-ad71917a7c88)
)
(wire (pts (xy 77.47 168.275) (xy 94.615 168.275))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 476fdbe2-1941-4a87-935c-b933875669bb)
)
(wire (pts (xy 34.925 22.225) (xy 34.925 24.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4913a173-3579-4fa4-b184-44657e923fdf)
)
(wire (pts (xy 49.53 50.165) (xy 52.07 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 49b6dbec-aa00-4369-95a9-3baab10dea9b)
)
(wire (pts (xy 135.89 98.425) (xy 133.35 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4d3aa1e0-2a60-43fd-a709-0fe037b50361)
)
(wire (pts (xy 49.53 37.465) (xy 52.07 37.465))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fb8af1a-a196-468c-9449-3165a35165de)
)
(wire (pts (xy 49.53 163.195) (xy 52.07 163.195))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4fc69dc6-9e70-4700-93bc-3f21329b79da)
)
(wire (pts (xy 64.77 19.685) (xy 64.77 22.225))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5013f0af-cadf-4e88-9493-7dc3495c8fe8)
)
(wire (pts (xy 49.53 165.735) (xy 52.07 165.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 516a2917-0edf-4cfd-8b4f-9f127da4cd3d)
)
(wire (pts (xy 206.375 36.83) (xy 210.82 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 527f4afb-f66a-4499-ab41-5c81636bbbd5)
)
(wire (pts (xy 120.65 85.725) (xy 120.65 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 595f732a-caef-4931-8245-568c437b00ad)
)
(wire (pts (xy 52.07 116.205) (xy 52.07 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5aa0d98e-c421-4f9b-a9a5-9ce4daca6f29)
)
(wire (pts (xy 210.82 59.055) (xy 187.325 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bc2b425-ae80-40ab-995c-22b289664a99)
)
(wire (pts (xy 187.325 52.07) (xy 191.135 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5bf0b94e-0992-455c-ae3a-63c63aed6476)
)
(wire (pts (xy 135.89 95.885) (xy 133.35 95.885))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 600f7c33-67a2-4144-87ec-dfc025f6cde8)
)
(wire (pts (xy 80.01 45.085) (xy 77.47 45.085))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 66d571f6-b401-48e7-9f60-63d5e1d81e85)
)
(wire (pts (xy 135.89 100.965) (xy 133.35 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6921b53b-aed5-4209-9219-14e9588138c3)
)
(wire (pts (xy 64.77 22.225) (xy 64.77 24.765))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 70f64140-6661-40b1-bd35-53a429a1a123)
)
(wire (pts (xy 135.89 103.505) (xy 133.35 103.505))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7274ed93-706f-47cd-ad9c-a282cbc11962)
)
(wire (pts (xy 240.03 38.1) (xy 240.03 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 72b91ace-aad7-4c25-ba5e-4b1d78cab9e9)
)
(wire (pts (xy 240.03 38.1) (xy 248.92 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7436daaf-8206-49a2-b8ce-bf1a20411650)
)
(wire (pts (xy 34.925 80.645) (xy 34.925 83.185))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 74c78281-2692-426b-8277-9a176205d788)
)
(wire (pts (xy 34.925 32.385) (xy 34.925 29.845))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 75c7b6ef-a394-486e-a054-70cba3063f72)
)
(wire (pts (xy 49.53 170.815) (xy 52.07 170.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 768b85a1-f7c8-4cad-bd6e-5bab64999bf7)
)
(wire (pts (xy 248.92 38.1) (xy 248.92 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 782db4f7-0e63-485b-aa1d-b0d3c92eeeeb)
)
(wire (pts (xy 49.53 108.585) (xy 52.07 108.585))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7ec145c3-5269-41ad-96a6-fd58f926e926)
)
(wire (pts (xy 77.47 108.585) (xy 107.95 108.585))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8074c010-6f35-4ede-86f2-245aa5bf7834)
)
(wire (pts (xy 64.77 140.335) (xy 64.77 142.875))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 835df75c-5499-4726-87aa-5e4334322f11)
)
(wire (pts (xy 187.325 59.055) (xy 187.325 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 848cfd94-0333-4af2-bc50-4673dd8ba965)
)
(wire (pts (xy 176.53 36.83) (xy 176.53 43.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 865b055f-69c6-45dd-a550-361782f7754d)
)
(wire (pts (xy 150.495 85.725) (xy 150.495 88.265))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 865d37b3-655c-45d7-9f62-044c86da44fd)
)
(wire (pts (xy 64.77 78.105) (xy 64.77 80.645))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 86c20af8-a6e1-4948-9457-d45ef0de2f8e)
)
(wire (pts (xy 80.01 42.545) (xy 77.47 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87255f1a-3a80-4d10-95e0-1a067aaf49d6)
)
(wire (pts (xy 210.82 52.07) (xy 210.82 59.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 873af9f6-2d9a-456b-ab2d-a09994d667a2)
)
(wire (pts (xy 77.47 158.115) (xy 84.455 158.115))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 873da004-a169-4000-8c27-dad24e029773)
)
(wire (pts (xy 64.77 126.365) (xy 64.77 125.095))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c425706-4a12-4542-9ab2-7372ec014156)
)
(wire (pts (xy 49.53 93.345) (xy 52.07 93.345))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8daca891-c587-4ce6-a744-41d079c55afe)
)
(wire (pts (xy 77.47 100.965) (xy 107.95 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8ef870d5-f5f4-400d-a908-233aef27b94b)
)
(wire (pts (xy 49.53 100.965) (xy 52.07 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f05b880-74bf-45bd-89a1-1253570fac13)
)
(wire (pts (xy 210.82 36.83) (xy 210.82 43.815))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 90ba5106-1785-4658-93bd-74d8cb942bf6)
)
(wire (pts (xy 45.085 113.665) (xy 52.07 113.665))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9154439f-2015-4886-9f87-1d378b3700ff)
)
(wire (pts (xy 86.995 160.655) (xy 77.47 160.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 915bf42c-b366-4e4b-8f0c-9c3cf62fadd6)
)
(wire (pts (xy 77.47 98.425) (xy 107.95 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92884aa7-b486-49f8-85ca-14418f92d70b)
)
(wire (pts (xy 49.53 42.545) (xy 52.07 42.545))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 92d32dbf-9208-4a0f-a504-42330dc8b144)
)
(wire (pts (xy 49.53 160.655) (xy 52.07 160.655))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 942ac9c3-4e2d-430d-ba54-3bd5e4ea4a12)
)
(wire (pts (xy 92.075 165.735) (xy 77.47 165.735))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9447259a-d89e-43bf-973a-fc584a11e467)
)
(wire (pts (xy 49.53 47.625) (xy 52.07 47.625))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 962c3ea4-d8c9-459c-83bf-ca61ca8497d8)
)
(wire (pts (xy 107.95 116.205) (xy 86.995 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 975836db-c0de-4379-85c2-d2d388616963)
)
(wire (pts (xy 107.95 121.285) (xy 92.075 121.285))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97e10349-099c-4a6b-a8d4-d3766364c3ee)
)
(wire (pts (xy 80.01 34.925) (xy 77.47 34.925))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 97e3bc7b-f51b-4cd9-8ee2-4056c2f1b7cd)
)
(wire (pts (xy 64.77 187.325) (xy 64.77 186.055))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 988910a5-624b-4f28-ac4f-25ccb7794c72)
)
(wire (pts (xy 120.65 85.725) (xy 150.495 85.725))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b8e7628-f29e-46cb-a7e0-919425e61718)
)
(wire (pts (xy 158.115 66.675) (xy 155.575 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c9933a2-1bd9-4da3-a99c-529f4e04ab02)
)
(wire (pts (xy 248.92 54.61) (xy 248.92 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9d04dc12-2463-4c1a-8430-387a8960eb45)
)
(wire (pts (xy 133.35 116.205) (xy 135.89 116.205))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ed41d9c-3042-442b-84b0-bfdc39c3c3b2)
)
(wire (pts (xy 94.615 168.275) (xy 94.615 123.825))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a073f71d-21c8-432d-b674-9dbb7bc1d954)
)
(wire (pts (xy 64.77 22.225) (xy 34.925 22.225))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1b15fae-2406-4f04-89b0-84804ee26b6a)
)
(wire (pts (xy 64.77 188.595) (xy 64.77 187.325))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a22ed3b2-4a29-4079-8e80-8bd15b251895)
)
(wire (pts (xy 34.925 153.035) (xy 34.925 150.495))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a35f9e22-5da3-45f2-b92a-37ee2c1bcc7f)
)
(wire (pts (xy 156.21 43.815) (xy 156.21 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a7cb67f2-a57d-470a-9fbd-81f04ffa28a1)
)
(wire (pts (xy 89.535 118.745) (xy 107.95 118.745))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a827577f-18bf-4aae-85e8-a4e00fa4bb6f)
)
(wire (pts (xy 133.35 123.825) (xy 135.89 123.825))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa503feb-7780-4e24-b905-f1f49dadc823)
)
(wire (pts (xy 173.355 66.675) (xy 177.8 66.675))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa6055eb-a8a8-4168-9b52-05a53cfd810d)
)
(wire (pts (xy 80.01 50.165) (xy 77.47 50.165))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aaf4c2a1-5cb3-42ba-906c-a8dbf515ff49)
)
(wire (pts (xy 240.03 36.83) (xy 240.03 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ae602fbb-8835-40ae-8be6-d7f879884dc1)
)
(wire (pts (xy 64.77 142.875) (xy 34.925 142.875))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid af080dff-4b28-4821-aa25-595bec7fda13)
)
(wire (pts (xy 81.915 111.125) (xy 107.95 111.125))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b83c4186-e78d-4930-81ca-b1704a31ff7e)
)
(wire (pts (xy 49.53 32.385) (xy 52.07 32.385))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bc8cfdc5-1626-4013-a851-2d16b2b06e5c)
)
(wire (pts (xy 49.53 98.425) (xy 52.07 98.425))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid be771b45-53ea-4d81-9df1-2d156cf31fd5)
)
(wire (pts (xy 80.01 40.005) (xy 77.47 40.005))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfc7fb73-5bf8-4474-95f4-3e034cac6412)
)