-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRam_chips_low.kicad_sch
4097 lines (3976 loc) · 154 KB
/
Ram_chips_low.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20230121) (generator eeschema)
(uuid ebe3ab1b-605d-4ee6-8ea3-d72bd63461bb)
(paper "A4" portrait)
(title_block
(title "MTU K-1008 Visable Memory card replica")
(comment 1 "9/4/77 HAL CHAMBERLIN 22 PIN RAM")
(comment 2 "RAM CHIPS (LOW)")
(comment 3 "MTU VISABLE MEMORY")
(comment 4 "KiCad version and corrections 2023 Eduardo Casino")
)
(lib_symbols
(symbol "74xx:74LS04" (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS04" (at 0 -1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS04" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL not inv" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Hex Inverter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP*W7.62mm* SSOP?14* TSSOP?14*" (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))
(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))
(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))
(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))
(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))
(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))
(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))
(fill (type background))
)
)
)
(symbol "K-1008_Library:74LS173" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.016 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "74LS173" (at 0 -1.016 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "http://www.ti.com/lit/gpn/sn74LS173" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "TTL REG REG4 3State DFF" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4-bit D-type Register, 3 state out" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP?16*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "74LS173_1_0"
(pin input inverted (at -12.7 2.54 0) (length 5.08)
(name "Oe1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 -7.62 0) (length 5.08)
(name "E2" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 5.08)
(name "D3" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 5.08)
(name "D2" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 5.08)
(name "D1" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 15.24 0) (length 5.08)
(name "D0" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 5.08)
(name "Mr" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 0 0) (length 5.08)
(name "Oe2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 15.24 180) (length 5.08)
(name "Q0" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 12.7 180) (length 5.08)
(name "Q1" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 10.16 180) (length 5.08)
(name "Q2" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 7.62 180) (length 5.08)
(name "Q3" (effects (font (size 1.27 1.27))))
(number "6" (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 "7" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 -5.08 0) (length 5.08)
(name "E1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS173_1_1"
(rectangle (start -7.62 17.018) (end 7.62 -17.018)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "74LS173_2_0"
(pin power_in line (at 0 12.7 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "16" (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 "8" (effects (font (size 1.27 1.27))))
)
)
(symbol "74LS173_2_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "K-1008_Library:MM5280" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 1.27 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MM5280" (at 0 -1.016 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -14.986 10.414 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 5.334 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_locked" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_keywords" "4096 dynamic ram" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "4096-Bit (4096x1) Dynamic RAM" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "DIP?16*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MM5280_1_0"
(pin input line (at -12.7 -2.54 0) (length 5.08)
(name "A2" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 -17.78 0) (length 5.08)
(name "~{WE}" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 0 0) (length 5.08)
(name "A3" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 2.54 0) (length 5.08)
(name "A4" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 5.08 0) (length 5.08)
(name "A5" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 12.7 -17.78 180) (length 5.08)
(name "N/C" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -15.24 0) (length 5.08)
(name "CE" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 7.62 0) (length 5.08)
(name "A6" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 15.24 0) (length 5.08)
(name "A9" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 10.16 0) (length 5.08)
(name "A7" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 12.7 0) (length 5.08)
(name "A8" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 17.78 0) (length 5.08)
(name "A10" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 20.32 0) (length 5.08)
(name "A11" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 -12.7 0) (length 5.08)
(name "~{CS}" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -12.7 -22.86 0) (length 5.08)
(name "~{DIN}" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin tri_state line (at 12.7 -22.86 180) (length 5.08)
(name "DOUT" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -12.7 -7.62 0) (length 5.08)
(name "A0" (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 "A1" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
(symbol "MM5280_1_1"
(rectangle (start -7.62 22.86) (end 7.62 -24.892)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
(symbol "MM5280_2_0"
(pin power_in line (at 2.54 -12.7 90) (length 5.08)
(name "VBB" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 12.7 270) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 2.54 12.7 270) (length 5.08)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at -2.54 -12.7 90) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
)
(symbol "MM5280_2_1"
(rectangle (start -5.08 7.62) (end 5.08 -7.62)
(stroke (width 0.254) (type default))
(fill (type background))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (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" (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))
(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 122.428 240.538) (diameter 0) (color 0 0 0 0)
(uuid 06517fb5-3e95-491d-bf1f-cd0f60cd0940)
)
(junction (at 27.686 215.392) (diameter 0) (color 0 0 0 0)
(uuid 0799cd08-6521-491e-a980-91a5bd1692be)
)
(junction (at 144.272 182.626) (diameter 0) (color 0 0 0 0)
(uuid 0c2c496b-183b-4397-b790-cc1c872468ef)
)
(junction (at 30.48 205.232) (diameter 0) (color 0 0 0 0)
(uuid 0dd69e92-99b1-4983-a7df-de9c8fbf6697)
)
(junction (at 81.534 170.688) (diameter 0) (color 0 0 0 0)
(uuid 110464ca-59e5-46cb-95cb-1acc33e23836)
)
(junction (at 24.892 225.552) (diameter 0) (color 0 0 0 0)
(uuid 164f440b-a42c-4000-af65-8d3228bdac4a)
)
(junction (at 146.05 127.508) (diameter 0) (color 0 0 0 0)
(uuid 1b98b1cb-ee4a-47dc-8c96-dd7ad0993c52)
)
(junction (at 120.142 178.308) (diameter 0) (color 0 0 0 0)
(uuid 4012f572-2f86-4173-a7cc-de851785bca0)
)
(junction (at 117.856 122.936) (diameter 0) (color 0 0 0 0)
(uuid 425c7667-44e4-47d7-beed-39ab402d1aba)
)
(junction (at 120.142 185.166) (diameter 0) (color 0 0 0 0)
(uuid 42ccf1b0-3c69-4128-a558-cf1bbce0b0cf)
)
(junction (at 122.428 233.68) (diameter 0) (color 0 0 0 0)
(uuid 44408613-2e34-4769-9e4a-8aec56d2fe6d)
)
(junction (at 81.534 115.316) (diameter 0) (color 0 0 0 0)
(uuid 4b4900ee-840b-40a3-b8d6-5956c091ba3a)
)
(junction (at 177.038 122.936) (diameter 0) (color 0 0 0 0)
(uuid 54c284a6-fa4f-4fa2-85b6-40a464f0084d)
)
(junction (at 177.038 67.564) (diameter 0) (color 0 0 0 0)
(uuid 5877fbec-5327-4a41-9125-d7b267ad23b5)
)
(junction (at 115.57 74.422) (diameter 0) (color 0 0 0 0)
(uuid 662b2f85-2566-4e51-8323-35aba51743d7)
)
(junction (at 83.312 127.508) (diameter 0) (color 0 0 0 0)
(uuid 68ade136-3c4f-4ecd-ba6d-5d5352c3debc)
)
(junction (at 146.05 117.856) (diameter 0) (color 0 0 0 0)
(uuid 6ef0353d-6b26-4251-a45e-aab40bfce84f)
)
(junction (at 146.05 173.228) (diameter 0) (color 0 0 0 0)
(uuid 75d934bb-2111-4b51-98d9-297c3e36eab8)
)
(junction (at 78.232 261.366) (diameter 0) (color 0 0 0 0)
(uuid 8c9117b3-cad2-45d9-a4c7-ec1c2fa993e4)
)
(junction (at 177.038 233.68) (diameter 0) (color 0 0 0 0)
(uuid 982b8649-5791-497f-bc5d-d296e2a265af)
)
(junction (at 33.274 195.072) (diameter 0) (color 0 0 0 0)
(uuid a5aa8564-c20c-44c8-b459-ee75426b43a4)
)
(junction (at 115.57 67.564) (diameter 0) (color 0 0 0 0)
(uuid a6963212-1ad2-4d3f-83d2-b0522d52bcce)
)
(junction (at 83.312 117.856) (diameter 0) (color 0 0 0 0)
(uuid b402ff40-cee3-4fb5-8195-81ff9b16e107)
)
(junction (at 117.856 129.794) (diameter 0) (color 0 0 0 0)
(uuid c1b77930-71fa-4375-8a76-3809f2550a72)
)
(junction (at 144.272 170.688) (diameter 0) (color 0 0 0 0)
(uuid d1e3e8c9-49f0-400d-a4a6-f1a8e17f7581)
)
(junction (at 83.312 173.228) (diameter 0) (color 0 0 0 0)
(uuid e2d7ef91-21f4-43c5-a80c-f381c771714b)
)
(junction (at 78.232 268.986) (diameter 0) (color 0 0 0 0)
(uuid e863717a-e591-4db7-89f2-04f49b67b667)
)
(junction (at 177.038 178.308) (diameter 0) (color 0 0 0 0)
(uuid f45876fd-5976-483f-80d5-1a72a634b4b9)
)
(junction (at 144.272 115.316) (diameter 0) (color 0 0 0 0)
(uuid fc9a363f-8799-42ea-afe3-58c3f0b9aed0)
)
(bus_entry (at 60.452 210.82) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 009513a3-8467-4cb5-b585-3d7f4ba00a6e)
)
(bus_entry (at 135.636 175.768) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 02e1086d-60f5-4a11-b0b6-ac9a04f7557b)
)
(bus_entry (at 60.452 34.544) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 03e78cea-47c7-4286-af9a-eea088b81ef1)
)
(bus_entry (at 123.698 187.96) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 0466e080-9442-4ea0-8d47-52ec590c8529)
)
(bus_entry (at 60.452 49.784) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 04e71b1a-5f7b-4159-b0e8-1ab48a192de1)
)
(bus_entry (at 60.452 77.216) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 04f7fc18-af63-4576-b35a-b0a033384ced)
)
(bus_entry (at 123.698 215.9) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 06165e02-305f-4e80-9615-4a4f7ef0af84)
)
(bus_entry (at 60.452 47.244) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 09bd5298-b2de-4eac-9b37-fdf242e3c096)
)
(bus_entry (at 60.452 82.296) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 0d3b00e3-d703-4d91-96c0-95144668ba10)
)
(bus_entry (at 56.642 225.552) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 0dda1964-acb1-4121-9610-16bbb5be598f)
)
(bus_entry (at 60.452 193.04) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 0f5f1421-1827-42b1-8e44-a0a666830153)
)
(bus_entry (at 123.698 49.784) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 12b407bd-5806-4b3b-9736-b5921b9ed7fa)
)
(bus_entry (at 57.912 43.688) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 139d7a05-9338-41d8-92b0-a4359a088fc5)
)
(bus_entry (at 60.452 102.616) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 163c03f8-d938-4759-82a8-1d17bb269fe2)
)
(bus_entry (at 72.136 175.768) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 19d88a43-8943-40f9-bc19-68c59adf5a88)
)
(bus_entry (at 60.452 152.908) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 1abaeddb-87bd-446e-9a12-c5b4bf9f708f)
)
(bus_entry (at 123.698 92.456) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 1af10429-01de-436e-9075-94a09138749d)
)
(bus_entry (at 123.698 205.74) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 1b4fed95-cd28-4ff5-a2b1-79efd330f7b0)
)
(bus_entry (at 57.912 48.768) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 1c3b7a32-1031-4118-80d0-1cfc01106029)
)
(bus_entry (at 123.698 152.908) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 1e426885-9ffd-4184-a1c5-b1ee9c82b532)
)
(bus_entry (at 60.452 160.528) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 23f48f1f-c343-4908-bdec-0e35b4f3be27)
)
(bus_entry (at 123.698 155.448) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 25564cfa-9f5f-4123-aa4a-918aed4fe84b)
)
(bus_entry (at 123.698 210.82) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 259edf75-9ffd-4d31-a8b7-03281ca7fff3)
)
(bus_entry (at 123.698 213.36) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 29201081-a3e9-4d87-9e61-87aa73203bd3)
)
(bus_entry (at 123.698 79.756) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 2ead8888-e981-43df-b2a2-a07a0730b707)
)
(bus_entry (at 60.452 135.128) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 308d4ce1-5ded-4f8a-98a5-63c10307d943)
)
(bus_entry (at 123.698 37.084) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 32aaf3e2-27ed-474a-9eb0-06876c85250c)
)
(bus_entry (at 60.452 94.996) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 32d5f4a1-85b6-43c0-a4a4-32885db52358)
)
(bus_entry (at 123.698 208.28) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 3301751a-9ad2-40f1-b539-98c617848529)
)
(bus_entry (at 60.452 155.448) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 35b45bc8-0c0f-4893-9db6-984c2402d75c)
)
(bus_entry (at 60.452 208.28) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 36791f4f-3899-4d2a-84e6-a1e2ddcd0c1b)
)
(bus_entry (at 123.698 44.704) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 3ab4a513-7616-4f61-90d7-7a1e47b480eb)
)
(bus_entry (at 57.912 41.148) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 3ee8e1de-89d6-43a1-a803-b94b99c8952e)
)
(bus_entry (at 123.698 102.616) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 404cfd0f-2dc9-4843-8f8f-03d9c1720e9d)
)
(bus_entry (at 60.452 97.536) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 405fb61c-3551-4bf1-8d74-cf98cc515eff)
)
(bus_entry (at 57.912 33.528) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 40a0c6b6-918f-4d94-989d-c2bfd332831e)
)
(bus_entry (at 60.452 157.988) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 481a6735-8e2b-4933-8641-9b1b02463664)
)
(bus_entry (at 60.452 21.844) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 48933f8d-57f9-4529-b0c3-bc6dd53fb924)
)
(bus_entry (at 60.452 137.668) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 4b2cadc1-08f5-4bf3-8208-962eea2c4efc)
)
(bus_entry (at 123.698 47.244) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 4cc9d38a-110b-4b28-af55-25c0a6df78e1)
)
(bus_entry (at 123.698 200.66) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 500f4433-9da3-45df-b724-5906878d0f43)
)
(bus_entry (at 135.636 231.14) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 54815313-8033-48e9-b2bb-26f873e107bf)
)
(bus_entry (at 123.698 32.004) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 5498653e-30c6-4665-ae75-2b37b25e0391)
)
(bus_entry (at 123.698 77.216) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 60952bd1-cc4f-45cf-8bea-f16966914633)
)
(bus_entry (at 123.698 147.828) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 60a77f45-b924-404f-b5d2-4d19628d5b8c)
)
(bus_entry (at 123.698 39.624) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 63ab9842-13ce-4958-a103-80521a2230fc)
)
(bus_entry (at 60.452 213.36) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 640562d3-9f86-4b03-ad26-f256f6af38a4)
)
(bus_entry (at 72.136 231.14) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 64133f37-3ab8-40d0-b3fb-6a80478fd419)
)
(bus_entry (at 123.698 135.128) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 64ccf9ee-1f3b-4168-a1c8-dbef2ad76966)
)
(bus_entry (at 123.698 145.288) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 697ff0f3-7db4-4832-adb6-1298a37848b0)
)
(bus_entry (at 123.698 142.748) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 6b7a5d2f-da3f-4c4b-9e49-77c5725b2e24)
)
(bus_entry (at 60.452 142.748) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 6d89acdf-7408-48a0-a11b-30e5abb55aa7)
)
(bus_entry (at 123.698 140.208) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 6f03104c-014b-4ccd-ba31-97c40f380564)
)
(bus_entry (at 60.452 150.368) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 703332f1-0806-4001-9cc9-0ea62660f7a4)
)
(bus_entry (at 60.452 37.084) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 70ab04a9-f998-4eef-baa4-2e0fb3fc6025)
)
(bus_entry (at 123.698 89.916) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 73061d16-6b81-4f1f-b0ff-bff0514dadc0)
)
(bus_entry (at 60.452 205.74) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 759ca949-8291-4b0e-ad87-161cc47b8492)
)
(bus_entry (at 135.636 120.396) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 7af254ab-5c40-42a4-b747-3c0e1868a49e)
)
(bus_entry (at 60.452 147.828) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 7b8eafae-20fb-4a35-956e-f574b8ab4edd)
)
(bus_entry (at 60.452 198.12) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 7dfb4559-a69c-48c3-8092-6b6bccde7763)
)
(bus_entry (at 60.452 24.384) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 82752e88-cb68-4fc8-b316-c3e1a2e2d2a4)
)
(bus_entry (at 60.452 132.588) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 850b1e62-9c4d-44cb-b878-371d325a7467)
)
(bus_entry (at 60.452 42.164) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 85b60714-258a-41fd-8110-1151c1fbfbeb)
)
(bus_entry (at 57.912 30.988) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 8d40b2dd-9631-4557-b9c2-a85fbcc1367e)
)
(bus_entry (at 123.698 203.2) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 8fffa254-0751-4b03-89df-4573ab895243)
)
(bus_entry (at 135.636 65.024) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 9168b867-62ec-4f75-b5f0-9a47b8280cbd)
)
(bus_entry (at 60.452 200.66) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 91d54ba0-2b71-4a37-b809-5858c1f993b8)
)
(bus_entry (at 60.452 29.464) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 92b3bc74-a993-47b7-b493-55c5261c2577)
)
(bus_entry (at 123.698 97.536) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 9532179b-dad7-41db-818d-d9f83fd4cd86)
)
(bus_entry (at 123.698 150.368) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 97af9746-2cbc-4a4a-bcc1-c97f193fafa8)
)
(bus_entry (at 60.452 187.96) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 99770358-2801-459d-b5d8-b1c22bdaa154)
)
(bus_entry (at 57.912 46.228) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 9b51b473-8c03-437d-982b-b9bcef2a8c8e)
)
(bus_entry (at 57.912 38.608) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid 9d144ff1-639e-4c01-bfcd-a89dc8057883)
)
(bus_entry (at 60.452 79.756) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 9db401aa-e365-47a1-9890-4be5ec1cac84)
)
(bus_entry (at 60.452 215.9) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid 9f179570-c851-4743-9427-48bfd6cbf326)
)
(bus_entry (at 123.698 132.588) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid a3cd527e-ae01-4aa0-8111-41c0073230d1)
)
(bus_entry (at 123.698 87.376) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid a41985c5-2ece-4f9f-a065-466d9fc8993c)
)
(bus_entry (at 60.452 89.916) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ab9db5d5-5efc-45e0-8ff8-e559c4b19ad1)
)
(bus_entry (at 123.698 195.58) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ac7ab04f-9d87-46a7-91b2-439eec6f5ea9)
)
(bus_entry (at 60.452 32.004) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ad3afd78-b967-4cdc-bd60-7d0fac8ac8e8)
)
(bus_entry (at 60.452 195.58) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ad3d8734-3106-4521-bdab-74671c6cb722)
)
(bus_entry (at 123.698 34.544) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid adace3f9-4833-4570-ab1d-2d56519134fb)
)
(bus_entry (at 60.452 140.208) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid b02d6146-2420-47ef-81f4-8872766b1a45)
)
(bus_entry (at 56.642 215.392) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid b0a2d426-34a0-433d-b9f7-04c91a885c50)
)
(bus_entry (at 60.452 44.704) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid b4a40ccd-e1b8-47c9-a136-79d75ecdae93)
)
(bus_entry (at 123.698 84.836) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid b4ad2156-e0fa-4000-a03c-178d831800bf)
)
(bus_entry (at 57.912 36.068) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid b94dc13e-f9b0-44c0-84dd-883b3a806c9e)
)
(bus_entry (at 60.452 92.456) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid bb43d441-a61b-41ef-8081-0f71eb09922b)
)
(bus_entry (at 60.452 84.836) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid bb978dde-e115-4cd3-8cbd-cf4044832739)
)
(bus_entry (at 56.642 205.232) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid bdcd7a8a-443e-4f53-8064-9fee1e456c65)
)
(bus_entry (at 123.698 160.528) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid be88f9b5-3bdd-4ce5-a4ae-ced434ad5abd)
)
(bus_entry (at 57.912 53.848) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid c58d519e-5160-464e-a59d-486b86ebe04b)
)
(bus_entry (at 123.698 157.988) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid c5b032a2-7737-4940-9aec-a08276b7a93e)
)
(bus_entry (at 60.452 203.2) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid c5c7a4df-a5c3-4c53-b313-4b59219dffbb)
)
(bus_entry (at 57.912 28.448) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid c8ebe400-55bd-4b93-a99c-fdf38595b81d)
)
(bus_entry (at 72.136 120.396) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid c9708546-ab7b-4a49-b307-39da2c783cde)
)
(bus_entry (at 123.698 137.668) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid caa6b780-f1d3-4ab1-b3db-6ed5e2a3208f)
)
(bus_entry (at 123.698 42.164) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid cb413219-a2fe-468d-a481-f89e2b85bb75)
)
(bus_entry (at 123.698 94.996) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid cc869b7d-086a-430f-9a15-8e17346122d4)
)
(bus_entry (at 123.698 21.844) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid cd6770bc-8575-4c42-8b28-99c966f8204f)
)
(bus_entry (at 60.452 190.5) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ce104913-d615-4711-a5bd-2758116edb8f)
)
(bus_entry (at 60.452 87.376) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid ce97f850-7038-4446-a2cc-9535164515eb)
)
(bus_entry (at 60.452 105.156) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid cf934119-7832-4067-b53c-a58be4ab07f1)
)
(bus_entry (at 123.698 193.04) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid d34cfcdb-0d7b-4cbf-9176-ff8a107c436b)
)
(bus_entry (at 60.452 26.924) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid dc668ff6-aecc-4eec-9a68-11efb813f894)
)
(bus_entry (at 57.912 25.908) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid dc8fd0b6-83f4-4085-8f6f-3bb0abab1308)
)
(bus_entry (at 123.698 82.296) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid e40e7cdb-6c61-4a52-a228-3bb01f879d40)
)
(bus_entry (at 57.912 51.308) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid e7d08175-625a-4fb0-b74a-fdc7d43ad999)
)
(bus_entry (at 123.698 105.156) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid eed9a871-df63-4d94-9884-24700e3ef37e)
)
(bus_entry (at 72.136 65.024) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid f031514b-5060-4ca5-a7f9-67aadfb11c87)
)
(bus_entry (at 60.452 39.624) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid f1bfdbe0-e8fa-44ca-bb6d-51d9ef7876e0)
)
(bus_entry (at 123.698 190.5) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid f2e4feb7-5c29-45fa-ad95-32b3a670ca1e)
)
(bus_entry (at 56.642 195.072) (size 2.54 -2.54)
(stroke (width 0) (type default))
(uuid f34cfcf2-0cee-491c-956d-8832554cdc10)
)
(bus_entry (at 123.698 29.464) (size 2.54 2.54)
(stroke (width 0) (type default))
(uuid f63dd0cb-17ff-4d07-a8db-d0f66481e0a7)
)
(bus_entry (at 60.452 100.076) (size 2.54 2.54)