-
Notifications
You must be signed in to change notification settings - Fork 0
/
Palac.kicad_sch
3073 lines (2990 loc) · 107 KB
/
Palac.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 7d95b9ec-31b0-413b-8af1-cf2686a19fef)
(paper "A4")
(lib_symbols
(symbol "Palac:D-Lily58-cache-Lily58_Pro-rescue" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D-Lily58-cache-Lily58_Pro-rescue" (at 0 -2.54 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_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D-Lily58-cache-Lily58_Pro-rescue_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.2032) (type default))
(fill (type none))
)
)
(symbol "D-Lily58-cache-Lily58_Pro-rescue_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Palac:HOLE-Lily58-cache-Lily58_Pro-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "HOLE-Lily58-cache-Lily58_Pro-rescue" (at 0 -5.08 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "HOLE-Lily58-cache-Lily58_Pro-rescue_0_0"
(text "HOLE" (at 0 3.81 0)
(effects (font (size 1.524 1.524)))
)
)
(symbol "HOLE-Lily58-cache-Lily58_Pro-rescue_0_1"
(rectangle (start 3.81 5.08) (end -3.81 -3.81)
(stroke (width 0) (type default))
(fill (type none))
)
)
)
(symbol "Palac:MJ-4PP-9-Lily58-cache-Lily58_Pro-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "J" (at -8.89 -7.62 0)
(effects (font (size 1.524 1.524)))
)
(property "Value" "MJ-4PP-9-Lily58-cache-Lily58_Pro-rescue" (at -3.81 6.35 0)
(effects (font (size 1.524 1.524)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.524 1.524)))
)
(symbol "MJ-4PP-9-Lily58-cache-Lily58_Pro-rescue_0_1"
(rectangle (start -7.62 2.54) (end -8.89 -3.81)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 0)
(xy 7.62 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -5.08)
(xy 7.62 -5.08)
(xy 7.62 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy -2.54 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 1.27 1.27)
(xy 2.54 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 7.62 3.81)
(xy -7.62 3.81)
(xy -7.62 2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -2.54 -5.08)
(xy -3.81 -3.81)
(xy -5.08 -5.08)
(xy -5.08 -5.08)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 -2.54)
(xy 7.62 -2.54)
(xy 7.62 -2.54)
(xy 7.62 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(rectangle (start 7.62 -6.35) (end -10.16 5.08)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "MJ-4PP-9-Lily58-cache-Lily58_Pro-rescue_1_1"
(pin passive line (at 11.43 0 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -2.54 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 -5.08 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 11.43 3.81 180) (length 3.81)
(name "~" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Palac:ProMicro_2-Lily58-cache-Lily58_Pro-rescue" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (at 0 17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "ProMicro_2-Lily58-cache-Lily58_Pro-rescue" (at 0 -17.78 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at -1.27 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "ProMicro_2-Lily58-cache-Lily58_Pro-rescue_0_1"
(rectangle (start -11.43 16.51) (end 11.43 -16.51)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "ProMicro_2-Lily58-cache-Lily58_Pro-rescue_1_1"
(pin input line (at -16.51 13.97 0) (length 5.08)
(name "TX(PD3)" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -8.89 0) (length 5.08)
(name "D7(PE6)" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -11.43 0) (length 5.08)
(name "D8(PB4)" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -13.97 0) (length 5.08)
(name "D9(PB5)" (effects (font (size 1.27 1.27))))
(number "12" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -13.97 180) (length 5.08)
(name "D10(PB6)" (effects (font (size 1.27 1.27))))
(number "13" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -11.43 180) (length 5.08)
(name "D16(PB2)" (effects (font (size 1.27 1.27))))
(number "14" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -8.89 180) (length 5.08)
(name "D14(PB3)" (effects (font (size 1.27 1.27))))
(number "15" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -6.35 180) (length 5.08)
(name "D15(PB1)" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -3.81 180) (length 5.08)
(name "A0(PF7)" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 -1.27 180) (length 5.08)
(name "A1(PF6)" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 1.27 180) (length 5.08)
(name "A2(PF5)" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 11.43 0) (length 5.08)
(name "RX(PD2)" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 3.81 180) (length 5.08)
(name "A3(PF4)" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 6.35 180) (length 5.08)
(name "VCC" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 8.89 180) (length 5.08)
(name "RST" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 11.43 180) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin input line (at 16.51 13.97 180) (length 5.08)
(name "RAW" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 8.89 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 6.35 0) (length 5.08)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 3.81 0) (length 5.08)
(name "SDA(PD1)" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 1.27 0) (length 5.08)
(name "SCL(PD0)" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -1.27 0) (length 5.08)
(name "D4(PD4)" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -3.81 0) (length 5.08)
(name "D5(PC6)" (effects (font (size 1.27 1.27))))
(number "8" (effects (font (size 1.27 1.27))))
)
(pin input line (at -16.51 -6.35 0) (length 5.08)
(name "D6(PD7)" (effects (font (size 1.27 1.27))))
(number "9" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Palac:R-Lily58-cache-Lily58_Pro-rescue" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R-Lily58-cache-Lily58_Pro-rescue" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R-Lily58-cache-Lily58_Pro-rescue_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R-Lily58-cache-Lily58_Pro-rescue_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 "Palac:SW_PUSH-Lily58-cache-Lily58_Pro-rescue" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "SW" (at 3.81 2.794 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SW_PUSH-Lily58-cache-Lily58_Pro-rescue" (at 0 -2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "SW_PUSH-Lily58-cache-Lily58_Pro-rescue_0_1"
(rectangle (start -4.318 1.27) (end 4.318 1.524)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.016 1.524)
(xy -0.762 2.286)
(xy 0.762 2.286)
(xy 1.016 1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive inverted (at -7.62 0 0) (length 5.08)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive inverted (at 7.62 0 180) (length 5.08)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Palac:SW_RST-Lily58-cache-Lily58_Pro-rescue" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "RSW" (at 2.54 2.54 0)
(effects (font (size 1.016 1.016)))
)
(property "Value" "SW_RST-Lily58-cache-Lily58_Pro-rescue" (at 0 -2.54 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)
)
(symbol "SW_RST-Lily58-cache-Lily58_Pro-rescue_0_1"
(polyline
(pts
(xy -2.54 1.27)
(xy 2.54 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive inverted (at -3.81 0 0) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive inverted (at 3.81 0 180) (length 2.54)
(name "2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 170.18 73.66) (diameter 0) (color 0 0 0 0)
(uuid 03671c3a-7f61-424e-9441-cb6b67560602)
)
(junction (at 170.18 106.68) (diameter 0) (color 0 0 0 0)
(uuid 08143781-7d70-4b9d-a18d-b09697c7a4d1)
)
(junction (at 251.46 73.66) (diameter 0) (color 0 0 0 0)
(uuid 0956a9b7-497f-4148-9a93-5e16dfc121a2)
)
(junction (at 251.46 90.17) (diameter 0) (color 0 0 0 0)
(uuid 0a8511b7-d22e-4974-9bad-67d01fba17ce)
)
(junction (at 185.42 130.81) (diameter 0) (color 0 0 0 0)
(uuid 0b75eea1-b6b8-4f76-8139-d390f3564780)
)
(junction (at 251.46 106.68) (diameter 0) (color 0 0 0 0)
(uuid 0b910e2e-2f84-445c-97b9-a9ac64c3afc8)
)
(junction (at 205.74 97.79) (diameter 0) (color 0 0 0 0)
(uuid 16fa2d73-22da-4a70-a470-9f3e1f4cf2e9)
)
(junction (at 246.38 64.77) (diameter 0) (color 0 0 0 0)
(uuid 1a4e2cf6-c6ce-431a-930c-e86441b49b34)
)
(junction (at 246.38 130.81) (diameter 0) (color 0 0 0 0)
(uuid 1db1b63a-5543-4ae9-9bbd-ca747cb49969)
)
(junction (at 190.5 73.66) (diameter 0) (color 0 0 0 0)
(uuid 25448a8f-10b7-4b1d-b561-9d2622f5ac61)
)
(junction (at 165.1 114.3) (diameter 0) (color 0 0 0 0)
(uuid 25dd36d1-2126-4be0-8225-aa9e838f2420)
)
(junction (at 149.86 90.17) (diameter 0) (color 0 0 0 0)
(uuid 38a95d86-e9e2-4218-a6f4-f5c4afb44ee7)
)
(junction (at 185.42 81.28) (diameter 0) (color 0 0 0 0)
(uuid 3aa599a0-d970-493a-af01-6029999fc18a)
)
(junction (at 185.42 64.77) (diameter 0) (color 0 0 0 0)
(uuid 3e325df4-9f5e-4a94-b411-344ae01eb1e8)
)
(junction (at 190.5 90.17) (diameter 0) (color 0 0 0 0)
(uuid 3f94d998-0625-40ee-ad27-2e2477677a78)
)
(junction (at 226.06 64.77) (diameter 0) (color 0 0 0 0)
(uuid 409ab9f6-b6b6-4436-b949-b7b45067bc41)
)
(junction (at 226.06 114.3) (diameter 0) (color 0 0 0 0)
(uuid 44a6bdd4-88ba-4fcb-8e94-960fb5adfe84)
)
(junction (at 246.38 114.3) (diameter 0) (color 0 0 0 0)
(uuid 5569c979-0bff-41ab-9240-641d78370e4d)
)
(junction (at 205.74 114.3) (diameter 0) (color 0 0 0 0)
(uuid 5781b08c-d53b-4d59-8d8a-6e3622f35cbf)
)
(junction (at 226.06 97.79) (diameter 0) (color 0 0 0 0)
(uuid 5865cc04-bbb7-4d2a-8670-952a260fecd7)
)
(junction (at 231.14 73.66) (diameter 0) (color 0 0 0 0)
(uuid 5c7a9d00-eec6-44e6-9a5e-57c4442fb3d3)
)
(junction (at 165.1 81.28) (diameter 0) (color 0 0 0 0)
(uuid 79f97ebf-202e-4b19-b52e-c839891535c2)
)
(junction (at 165.1 64.77) (diameter 0) (color 0 0 0 0)
(uuid 7f4388c3-9450-4532-b3e8-0b48ec0a0a2c)
)
(junction (at 226.06 130.81) (diameter 0) (color 0 0 0 0)
(uuid 86082b97-a3e8-4d44-986c-459905cf84a5)
)
(junction (at 205.74 81.28) (diameter 0) (color 0 0 0 0)
(uuid 89ca8c90-9f96-432a-9732-356b5e8ca023)
)
(junction (at 210.82 73.66) (diameter 0) (color 0 0 0 0)
(uuid 90a828e1-3283-4924-94df-d9b1aa5b6158)
)
(junction (at 205.74 130.81) (diameter 0) (color 0 0 0 0)
(uuid 94247ea5-ebbe-458f-ac5c-0f7e652765dd)
)
(junction (at 231.14 106.68) (diameter 0) (color 0 0 0 0)
(uuid 943f2590-d9d4-45c5-814a-f554d071a076)
)
(junction (at 231.14 90.17) (diameter 0) (color 0 0 0 0)
(uuid 9f2b7db3-f31d-4ab7-a476-c9f8e736caff)
)
(junction (at 210.82 106.68) (diameter 0) (color 0 0 0 0)
(uuid a8f730d2-c109-4802-bf1b-d2be3a346ee2)
)
(junction (at 149.86 73.66) (diameter 0) (color 0 0 0 0)
(uuid ade0f4ce-f721-4a7d-9529-29cbd9c9fc28)
)
(junction (at 246.38 81.28) (diameter 0) (color 0 0 0 0)
(uuid afc65e91-7cfa-4b47-9a22-dbccb75442ba)
)
(junction (at 165.1 97.79) (diameter 0) (color 0 0 0 0)
(uuid c045b27b-5a2f-4244-9dca-a8e439c513e1)
)
(junction (at 246.38 97.79) (diameter 0) (color 0 0 0 0)
(uuid c1e94a7e-c745-4ab1-a024-fd8a8b089051)
)
(junction (at 226.06 81.28) (diameter 0) (color 0 0 0 0)
(uuid c36fbabc-1ea3-4d37-9ab6-90144de3a048)
)
(junction (at 210.82 90.17) (diameter 0) (color 0 0 0 0)
(uuid d3b0784c-da54-4d44-8241-268497dcb3d5)
)
(junction (at 170.18 90.17) (diameter 0) (color 0 0 0 0)
(uuid e295a041-3730-4aad-8d28-3edf1fc36e68)
)
(junction (at 185.42 97.79) (diameter 0) (color 0 0 0 0)
(uuid e2c56e7a-7600-455a-b45f-24b63ae5495a)
)
(junction (at 149.86 106.68) (diameter 0) (color 0 0 0 0)
(uuid e5d017c0-c2d9-4ffe-81ab-5c6127297121)
)
(junction (at 165.1 130.81) (diameter 0) (color 0 0 0 0)
(uuid ee6c2fd1-6da4-4688-973d-89049566dafa)
)
(junction (at 190.5 106.68) (diameter 0) (color 0 0 0 0)
(uuid f011093b-29b4-4f44-9500-cc5630b841fd)
)
(junction (at 185.42 114.3) (diameter 0) (color 0 0 0 0)
(uuid f2657e39-6fbf-452f-a9b4-20a43b6729a4)
)
(junction (at 205.74 64.77) (diameter 0) (color 0 0 0 0)
(uuid fa8633ec-40ae-43f6-9f89-7943cff7ca56)
)
(no_connect (at 35.56 55.88) (uuid 15222eef-7fd1-4861-bac6-65e7744712f6))
(no_connect (at 68.58 63.5) (uuid 26b21d58-aa7d-4019-8e2d-9f675bc7c1ac))
(no_connect (at 68.58 53.34) (uuid 6b594a1c-d5f1-4641-9251-9ab7a8a1006c))
(no_connect (at 35.56 68.58) (uuid 93414d1f-f0d0-49e4-9787-1af4430b0013))
(no_connect (at 35.56 53.34) (uuid dc9d33db-19c3-4202-8215-9adc9e875afe))
(wire (pts (xy 149.86 106.68) (xy 149.86 123.19))
(stroke (width 0) (type default))
(uuid 0407b33f-1222-4404-b7b3-cba5ced7fd8e)
)
(wire (pts (xy 185.42 81.28) (xy 205.74 81.28))
(stroke (width 0) (type default))
(uuid 041d9494-a791-4daf-a210-c9248a41c500)
)
(wire (pts (xy 62.23 123.19) (xy 64.77 123.19))
(stroke (width 0) (type default))
(uuid 08766035-fb14-4039-96ba-084bb5062b8a)
)
(wire (pts (xy 226.06 81.28) (xy 246.38 81.28))
(stroke (width 0) (type default))
(uuid 09c22022-9e36-412f-972b-2ca834de0e20)
)
(wire (pts (xy 50.8 113.03) (xy 53.34 113.03))
(stroke (width 0) (type default))
(uuid 0e37b539-de81-4598-a888-bf75fd7387da)
)
(wire (pts (xy 210.82 106.68) (xy 210.82 123.19))
(stroke (width 0) (type default))
(uuid 0feb3afe-3e2e-4721-8735-ba06628bd44c)
)
(wire (pts (xy 185.42 114.3) (xy 205.74 114.3))
(stroke (width 0) (type default))
(uuid 147d1ec9-354b-40d1-866c-14f9b7ca8d51)
)
(wire (pts (xy 246.38 130.81) (xy 266.7 130.81))
(stroke (width 0) (type default))
(uuid 1495ce07-1bc6-4e2c-84b1-02eafb7278fc)
)
(wire (pts (xy 170.18 106.68) (xy 170.18 123.19))
(stroke (width 0) (type default))
(uuid 163db496-6a40-402a-b185-4c21746cf443)
)
(wire (pts (xy 53.34 110.49) (xy 50.8 110.49))
(stroke (width 0) (type default))
(uuid 16482a38-28e3-464f-aafc-cbab4b5159bd)
)
(wire (pts (xy 50.8 106.68) (xy 62.23 106.68))
(stroke (width 0) (type default))
(uuid 175a0dc6-c5b7-4143-8571-c8586e5b6761)
)
(wire (pts (xy 149.86 73.66) (xy 149.86 90.17))
(stroke (width 0) (type default))
(uuid 1f88ae09-3ef8-48ec-99e9-ccac600768f0)
)
(wire (pts (xy 226.06 114.3) (xy 246.38 114.3))
(stroke (width 0) (type default))
(uuid 20d6b796-7b06-448b-b28e-9adf64366a8a)
)
(wire (pts (xy 185.42 97.79) (xy 205.74 97.79))
(stroke (width 0) (type default))
(uuid 22f1e3f0-d284-4db4-b0a7-a1ac73cc7e5c)
)
(wire (pts (xy 210.82 90.17) (xy 210.82 106.68))
(stroke (width 0) (type default))
(uuid 294ad510-b830-4163-a864-fde0bf171b7c)
)
(wire (pts (xy 246.38 81.28) (xy 266.7 81.28))
(stroke (width 0) (type default))
(uuid 32b2304f-8ad9-4cc5-921b-97c1e9314fca)
)
(wire (pts (xy 53.34 113.03) (xy 53.34 116.84))
(stroke (width 0) (type default))
(uuid 383dd263-54fe-4653-99f0-927c1b882cf6)
)
(wire (pts (xy 246.38 114.3) (xy 266.7 114.3))
(stroke (width 0) (type default))
(uuid 46afe234-1e69-43e2-83e7-376276cc6d10)
)
(wire (pts (xy 149.86 90.17) (xy 149.86 106.68))
(stroke (width 0) (type default))
(uuid 47cae9cc-8acb-4dac-91a7-8755761feea9)
)
(wire (pts (xy 143.51 130.81) (xy 165.1 130.81))
(stroke (width 0) (type default))
(uuid 47f20db6-f77e-4e5c-af44-3641c3afd3ab)
)
(wire (pts (xy 231.14 106.68) (xy 231.14 90.17))
(stroke (width 0) (type default))
(uuid 4944fbf2-e619-4f3c-aa06-eb368329865b)
)
(wire (pts (xy 205.74 114.3) (xy 226.06 114.3))
(stroke (width 0) (type default))
(uuid 4eda65c9-0687-479f-9af7-efa3936feee5)
)
(wire (pts (xy 251.46 106.68) (xy 251.46 123.19))
(stroke (width 0) (type default))
(uuid 4f7d24ab-144c-40a0-908a-80af4a1467f8)
)
(wire (pts (xy 62.23 115.57) (xy 62.23 123.19))
(stroke (width 0) (type default))
(uuid 525366aa-3557-4459-9833-5d7cd9575106)
)
(wire (pts (xy 185.42 114.3) (xy 165.1 114.3))
(stroke (width 0) (type default))
(uuid 52ad5b35-8326-4119-abd5-8fc848e796cc)
)
(wire (pts (xy 25.4 93.98) (xy 30.48 93.98))
(stroke (width 0) (type default))
(uuid 54140b5f-1358-4534-b9b6-f25efe5b329a)
)
(wire (pts (xy 165.1 81.28) (xy 143.51 81.28))
(stroke (width 0) (type default))
(uuid 5765864c-5956-435c-b698-c6f79c6764cf)
)
(wire (pts (xy 149.86 57.15) (xy 149.86 73.66))
(stroke (width 0) (type default))
(uuid 583af0c2-fb07-47bd-b559-1cc32339efcd)
)
(wire (pts (xy 231.14 73.66) (xy 231.14 90.17))
(stroke (width 0) (type default))
(uuid 5854d8b4-4f48-44cb-82a2-331c7aeca625)
)
(wire (pts (xy 190.5 57.15) (xy 190.5 73.66))
(stroke (width 0) (type default))
(uuid 5ed3b5d3-a5cc-41ef-9ed0-0651cf6b49fa)
)
(wire (pts (xy 251.46 90.17) (xy 251.46 106.68))
(stroke (width 0) (type default))
(uuid 68132964-dded-44f8-94b5-9c00775ee0d0)
)
(wire (pts (xy 205.74 97.79) (xy 226.06 97.79))
(stroke (width 0) (type default))
(uuid 6b8de49e-a816-42e4-8caf-cac2e341d6e6)
)
(wire (pts (xy 165.1 130.81) (xy 185.42 130.81))
(stroke (width 0) (type default))
(uuid 6f0d7368-9775-40cd-bda0-6706aa1671bd)
)
(wire (pts (xy 190.5 90.17) (xy 190.5 106.68))
(stroke (width 0) (type default))
(uuid 733c7706-eea0-45eb-9d86-521cd0da94b6)
)
(wire (pts (xy 185.42 97.79) (xy 165.1 97.79))
(stroke (width 0) (type default))
(uuid 75ea6315-e3da-4064-9ef5-49a9540cf123)
)
(wire (pts (xy 190.5 106.68) (xy 190.5 123.19))
(stroke (width 0) (type default))
(uuid 79041bfa-97e1-4c11-88ea-56b663745e39)
)
(wire (pts (xy 246.38 64.77) (xy 226.06 64.77))
(stroke (width 0) (type default))
(uuid 7bfa95d6-23fa-437e-99c7-3dea8a3a59d2)
)
(wire (pts (xy 185.42 64.77) (xy 165.1 64.77))
(stroke (width 0) (type default))
(uuid 7e83e80b-4baf-4506-8006-952d790a838d)
)
(wire (pts (xy 246.38 64.77) (xy 266.7 64.77))
(stroke (width 0) (type default))
(uuid 82409c4b-a398-4206-b88c-fa4629212a66)
)
(wire (pts (xy 231.14 57.15) (xy 231.14 73.66))
(stroke (width 0) (type default))
(uuid 8925c9cd-ebdd-410c-9a65-c3cb119afac6)
)
(wire (pts (xy 251.46 73.66) (xy 251.46 57.15))
(stroke (width 0) (type default))
(uuid 89d23474-408f-43e2-92bd-9a23dba465b6)
)
(wire (pts (xy 185.42 64.77) (xy 205.74 64.77))
(stroke (width 0) (type default))
(uuid 8a36f09e-f96c-45ad-b0aa-5cabc61f12f9)
)
(wire (pts (xy 210.82 57.15) (xy 210.82 73.66))
(stroke (width 0) (type default))
(uuid 8fc808ba-d4c9-4fd0-92e3-10f38b2274ec)
)
(wire (pts (xy 226.06 97.79) (xy 246.38 97.79))
(stroke (width 0) (type default))
(uuid 91cecffa-0204-42d7-a2f7-e4fe19d43d3c)
)
(wire (pts (xy 246.38 97.79) (xy 266.7 97.79))
(stroke (width 0) (type default))
(uuid 965e6cf7-5bef-48c9-b1cc-6d2f5a7441ca)
)
(wire (pts (xy 185.42 130.81) (xy 205.74 130.81))
(stroke (width 0) (type default))
(uuid a1800b5c-e5c9-4c61-977f-ecea21c93d2d)
)
(wire (pts (xy 165.1 97.79) (xy 143.51 97.79))
(stroke (width 0) (type default))
(uuid a23d1603-2f41-4943-9171-95c170b4a092)
)
(wire (pts (xy 53.34 105.41) (xy 53.34 110.49))
(stroke (width 0) (type default))
(uuid a732a16d-a277-40f1-a104-a41be6ff740d)
)
(wire (pts (xy 231.14 106.68) (xy 231.14 123.19))
(stroke (width 0) (type default))
(uuid a7acba09-4afa-4392-9317-5770a5205741)
)
(wire (pts (xy 35.56 58.42) (xy 35.56 60.96))
(stroke (width 0) (type default))
(uuid addc04b1-e5b9-43cf-98d7-c52df2624ca8)
)
(wire (pts (xy 205.74 64.77) (xy 226.06 64.77))
(stroke (width 0) (type default))
(uuid af211de7-f85b-4ab5-a845-76301a30a46a)
)
(wire (pts (xy 205.74 81.28) (xy 226.06 81.28))
(stroke (width 0) (type default))
(uuid b1c9ce56-86a4-4fa5-bd36-97117a302d26)
)
(wire (pts (xy 165.1 64.77) (xy 143.51 64.77))
(stroke (width 0) (type default))
(uuid b3821d8f-b7ad-493e-b3ef-0482742f4137)
)
(wire (pts (xy 251.46 90.17) (xy 251.46 73.66))
(stroke (width 0) (type default))
(uuid b74c6f5b-cfac-4e0f-bd6e-270549d9f6b9)
)
(wire (pts (xy 210.82 73.66) (xy 210.82 90.17))
(stroke (width 0) (type default))
(uuid bd6f30c3-c8fb-41d3-962a-1c3384907650)
)
(wire (pts (xy 170.18 57.15) (xy 170.18 73.66))
(stroke (width 0) (type default))
(uuid c7be0f1b-5e52-48a6-b93d-97d818488b03)
)
(wire (pts (xy 226.06 130.81) (xy 246.38 130.81))
(stroke (width 0) (type default))
(uuid c9a00f1e-dbb3-4a76-954e-714aff153ac4)
)
(wire (pts (xy 62.23 97.79) (xy 62.23 106.68))
(stroke (width 0) (type default))
(uuid cb91803d-3fd4-4f0d-b4e9-1280682925d6)
)
(wire (pts (xy 165.1 114.3) (xy 143.51 114.3))
(stroke (width 0) (type default))
(uuid cbbff55d-e394-46fa-b330-3b88e9791858)
)
(wire (pts (xy 170.18 73.66) (xy 170.18 90.17))
(stroke (width 0) (type default))
(uuid d1088466-07d6-4040-8599-c5a5119de1cf)
)
(wire (pts (xy 170.18 90.17) (xy 170.18 106.68))
(stroke (width 0) (type default))
(uuid d25705cb-cd5a-4f6b-b939-691e0e064b8f)
)
(wire (pts (xy 190.5 73.66) (xy 190.5 90.17))
(stroke (width 0) (type default))
(uuid d48cf1b3-e0b5-4048-93a4-ebd26bb4e9da)
)
(wire (pts (xy 62.23 97.79) (xy 63.5 97.79))
(stroke (width 0) (type default))
(uuid d77b83c7-b8ac-41ad-a055-e8a108e4b4d1)
)
(wire (pts (xy 50.8 115.57) (xy 62.23 115.57))
(stroke (width 0) (type default))
(uuid d91ebd2d-7416-4904-8d08-68bc9da8dbb9)
)
(wire (pts (xy 185.42 81.28) (xy 165.1 81.28))
(stroke (width 0) (type default))
(uuid da7a8eae-ee13-43f8-8d29-a25079d6e8e5)
)
(wire (pts (xy 205.74 130.81) (xy 226.06 130.81))
(stroke (width 0) (type default))
(uuid dde780a6-2372-42d3-9c90-e5c0e0d734d3)
)
(global_label "SDA" (shape input) (at 82.55 129.54 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 022caa80-6753-41df-a4b4-c33d03ed88a9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.55 135.3597 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "VCC" (shape input) (at 82.55 121.92 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 0893cccb-8bce-4dbd-b497-d7323c7b3500)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 82.55 116.0398 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "row4" (shape input) (at 35.56 81.28 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 0ca3ed29-4f72-41a4-a1d7-832a024ce8b8)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 28.8332 81.28 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "row0" (shape input) (at 35.56 71.12 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 12137378-2e69-4332-b88e-9b4261743663)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 28.8332 71.12 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "GND" (shape input) (at 25.4 93.98 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 13b7f28d-e070-499f-b5f5-91e37b647c28)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 19.2779 93.98 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "col4" (shape input) (at 170.18 57.15 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1af5d185-13f8-4b63-ace3-0e39df0ffc2f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 170.18 50.7861 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "VCC" (shape input) (at 68.58 60.96 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 1c5dfbb5-a805-447b-b1f6-a15a3aae6003)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.4602 60.96 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCL" (shape input) (at 86.36 129.54 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 230a7ffe-60d1-41f4-8bce-fd2f1810c5d5)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 86.36 135.2992 90)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "RESET" (shape input) (at 68.58 58.42 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 23de63f3-c61c-47a5-9718-c395db322fdb)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 76.5767 58.42 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "row4" (shape input) (at 143.51 130.81 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 26ff79c0-9c0a-4646-8114-a49adadef91b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.7832 130.81 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "col4" (shape input) (at 68.58 78.74 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 29e0dcbd-6266-43e9-9a66-e611c7802d7f)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.9439 78.74 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "SCL" (shape input) (at 35.56 66.04 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 30fc1f06-0a75-4a13-9e21-cf086409ae66)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 29.8008 66.04 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "row2" (shape input) (at 143.51 97.79 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 3dbf1771-2303-4b02-af5d-c88f41dc596a)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.7832 97.79 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SDA" (shape input) (at 64.77 123.19 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 430eaa77-0a7b-4481-9bae-96d942768efa)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 70.5897 123.19 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "row2" (shape input) (at 35.56 76.2 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4473c5c6-b1df-4001-9d2d-3b143b017bfd)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 28.8332 76.2 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "SW99" (shape input) (at 68.58 66.04 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 45d6ccbf-8be0-4a16-b5da-3fad97efdca1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 75.9115 66.04 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col0" (shape input) (at 68.58 68.58 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 4b0cc813-e605-446f-8d75-b51ccdb6fe4e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.9439 68.58 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "row0" (shape input) (at 143.51 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4b2124d9-0a97-409c-9236-d6f05955308e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 136.7832 64.77 0)
(effects (font (size 1.27 1.27)) (justify right) hide)
)
)
(global_label "col3" (shape input) (at 190.5 57.15 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 596a6191-910c-47ce-896e-b6562e64015e)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 190.5 50.7861 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col3" (shape input) (at 68.58 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6508f960-2f52-41ab-ae4b-94dbb70d3d8b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.9439 76.2 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col5" (shape input) (at 68.58 81.28 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 68ca225e-8fc3-4570-8a9a-2a4f4df5fbd1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.9439 81.28 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col5" (shape input) (at 149.86 57.15 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6acd5a77-892c-445a-83c5-0c4a61d56ece)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 149.86 50.7861 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "VCC" (shape input) (at 53.34 105.41 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6cdcb467-cee1-4aa8-b0eb-86a5e2317d99)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 53.34 99.5298 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col2" (shape input) (at 68.58 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 6e0fd78e-e787-43d3-a4d2-29c66687a35c)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 74.9439 73.66 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "col1" (shape input) (at 231.14 57.15 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 709b4862-10c4-4678-a2bf-c92240455053)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 231.14 50.7861 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)