-
Notifications
You must be signed in to change notification settings - Fork 0
/
h370.kicad_sch
1318 lines (1288 loc) · 50.3 KB
/
h370.kicad_sch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(kicad_sch (version 20211123) (generator eeschema)
(uuid 6b25f522-8e2d-4cd8-9d5d-a2b80f60133b)
(paper "User" 210.007 148.006)
(title_block
(title "TPM2.0 Module")
(date "2021-07-15")
(rev "1.0")
(company "diy.viktak.com")
(comment 2 "LPC version")
(comment 3 "12 (2x6) pin female header")
(comment 4 "For GigaByte AORUS motherboards with Intel H370 chipset")
)
(lib_symbols
(symbol "Connector:Conn_01x06_Male" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (id 0) (at 0 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x06_Male" (id 1) (at 0 -10.16 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" "connector" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x06_Male_1_1"
(polyline
(pts
(xy 1.27 -7.62)
(xy 0.8636 -7.62)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -5.08)
(xy 0.8636 -5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -2.54)
(xy 0.8636 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy 0.8636 0)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 2.54)
(xy 0.8636 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 1.27 5.08)
(xy 0.8636 5.08)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 0.8636 -7.493) (end 0 -7.747)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(rectangle (start 0.8636 5.207) (end 0 4.953)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type outline))
)
(pin passive line (at 5.08 5.08 180) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 2.54 180) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 0 180) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -2.54 180) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -5.08 180) (length 3.81)
(name "Pin_5" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 5.08 -7.62 180) (length 3.81)
(name "Pin_6" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C_Polarized_0_1"
(rectangle (start -2.286 0.508) (end 2.286 1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 2.794)
(xy -1.27 1.778)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start 2.286 -0.508) (end -2.286 -1.016)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type outline))
)
)
(symbol "C_Polarized_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "R res resistor" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "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))))
)
)
)
(symbol "power:PWR_FLAG" (power) (pin_numbers hide) (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "#FLG" (id 0) (at 0 1.905 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "PWR_FLAG" (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" "Special symbol for telling ERC where power comes from" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "PWR_FLAG_0_0"
(pin power_out line (at 0 0 90) (length 0)
(name "pwr" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
(symbol "PWR_FLAG_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 1.27)
(xy -1.016 1.905)
(xy 0 2.54)
(xy 1.016 1.905)
(xy 0 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
)
(symbol "power:VDD" (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" "VDD" (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 \"VDD\"" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "VDD_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 "VDD_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "VDD" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "viktor:SLB9665-TSSOP-28" (pin_names (offset 1.016)) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at -3.81 7.62 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "SLB9665-TSSOP-28" (id 1) (at 5.08 -27.94 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)
)
(symbol "SLB9665-TSSOP-28_0_1"
(rectangle (start -5.08 -26.67) (end -5.08 -26.67)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(rectangle (start -5.08 6.35) (end 15.24 -26.67)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type background))
)
)
(symbol "SLB9665-TSSOP-28_1_1"
(pin power_in line (at 17.78 1.27 180) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "10" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -19.05 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "11" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -7.62 -13.97 0) (length 2.54)
(name "LRESET#" (effects (font (size 1.27 1.27))))
(number "16" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 -3.81 0) (length 2.54)
(name "LAD3" (effects (font (size 1.27 1.27))))
(number "17" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -21.59 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "18" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -1.27 180) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "19" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 -1.27 0) (length 2.54)
(name "LAD2" (effects (font (size 1.27 1.27))))
(number "20" (effects (font (size 1.27 1.27))))
)
(pin input clock (at -7.62 -8.89 0) (length 2.54)
(name "LCLK" (effects (font (size 1.27 1.27))))
(number "21" (effects (font (size 1.27 1.27))))
)
(pin input inverted (at -7.62 -11.43 0) (length 2.54)
(name "LFRAME#" (effects (font (size 1.27 1.27))))
(number "22" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 1.27 0) (length 2.54)
(name "LAD1" (effects (font (size 1.27 1.27))))
(number "23" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -3.81 180) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "24" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -24.13 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "25" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 3.81 0) (length 2.54)
(name "LAD0" (effects (font (size 1.27 1.27))))
(number "26" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 -19.05 0) (length 2.54)
(name "SERIRQ" (effects (font (size 1.27 1.27))))
(number "27" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 -16.51 180) (length 2.54)
(name "GND" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
(pin power_in line (at 17.78 3.81 180) (length 2.54)
(name "VDD" (effects (font (size 1.27 1.27))))
(number "5" (effects (font (size 1.27 1.27))))
)
(pin bidirectional line (at -7.62 -24.13 0) (length 2.54)
(name "GPIO" (effects (font (size 1.27 1.27))))
(number "6" (effects (font (size 1.27 1.27))))
)
(pin input line (at 17.78 -11.43 180) (length 2.54)
(name "PP" (effects (font (size 1.27 1.27))))
(number "7" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 167.64 38.1) (diameter 0) (color 0 0 0 0)
(uuid 08a7c925-7fae-4530-b0c9-120e185cb318)
)
(junction (at 73.66 49.53) (diameter 0) (color 0 0 0 0)
(uuid 0eaa98f0-9565-4637-ace3-42a5231b07f7)
)
(junction (at 73.66 69.85) (diameter 0) (color 0 0 0 0)
(uuid 0f22151c-f260-4674-b486-4710a2c42a55)
)
(junction (at 73.66 44.45) (diameter 0) (color 0 0 0 0)
(uuid 127679a9-3981-4934-815e-896a4e3ff56e)
)
(junction (at 144.78 27.94) (diameter 0) (color 0 0 0 0)
(uuid 4fb02e58-160a-4a39-9f22-d0c75e82ee72)
)
(junction (at 156.21 27.94) (diameter 0) (color 0 0 0 0)
(uuid 66116376-6967-4178-9f23-a26cdeafc400)
)
(junction (at 156.21 38.1) (diameter 0) (color 0 0 0 0)
(uuid a690fc6c-55d9-47e6-b533-faa4b67e20f3)
)
(junction (at 132.08 38.1) (diameter 0) (color 0 0 0 0)
(uuid ac264c30-3e9a-4be2-b97a-9949b68bd497)
)
(junction (at 167.64 27.94) (diameter 0) (color 0 0 0 0)
(uuid b5352a33-563a-4ffe-a231-2e68fb54afa3)
)
(junction (at 73.66 67.31) (diameter 0) (color 0 0 0 0)
(uuid c01d25cd-f4bb-4ef3-b5ea-533a2a4ddb2b)
)
(junction (at 73.66 72.39) (diameter 0) (color 0 0 0 0)
(uuid c41b3c8b-634e-435a-b582-96b83bbd4032)
)
(junction (at 132.08 27.94) (diameter 0) (color 0 0 0 0)
(uuid cbdcaa78-3bbc-413f-91bf-2709119373ce)
)
(junction (at 144.78 38.1) (diameter 0) (color 0 0 0 0)
(uuid efeac2a2-7682-4dc7-83ee-f6f1b23da506)
)
(junction (at 73.66 46.99) (diameter 0) (color 0 0 0 0)
(uuid fd470e95-4861-44fe-b1e4-6d8a7c66e144)
)
(no_connect (at 157.48 76.2) (uuid 1a6d2848-e78e-49fe-8978-e1890f07836f))
(no_connect (at 157.48 68.58) (uuid a544eb0a-75db-4baf-bf54-9ca21744343b))
(wire (pts (xy 133.35 73.66) (xy 121.92 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0147f16a-c952-4891-8f53-a9fb8cddeb8d)
)
(wire (pts (xy 46.99 62.23) (xy 38.1 62.23))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 120a7b0f-ddfd-4447-85c1-35665465acdb)
)
(wire (pts (xy 46.99 52.07) (xy 38.1 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 13475e15-f37c-4de8-857e-1722b0c39513)
)
(wire (pts (xy 72.39 69.85) (xy 73.66 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 181abe7a-f941-42b6-bd46-aaa3131f90fb)
)
(wire (pts (xy 73.66 67.31) (xy 73.66 69.85))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1831fb37-1c5d-42c4-b898-151be6fca9dc)
)
(wire (pts (xy 46.99 72.39) (xy 43.18 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1a1ab354-5f85-45f9-938c-9f6c4c8c3ea2)
)
(wire (pts (xy 132.08 27.94) (xy 144.78 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1e1b062d-fad0-427c-a622-c5b8a80b5268)
)
(wire (pts (xy 167.64 66.04) (xy 167.64 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 24f7628d-681d-4f0e-8409-40a129e929d9)
)
(wire (pts (xy 46.99 57.15) (xy 38.1 57.15))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2732632c-4768-42b6-bf7f-14643424019e)
)
(wire (pts (xy 81.28 59.69) (xy 82.55 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 29e78086-2175-405e-9ba3-c48766d2f50c)
)
(wire (pts (xy 116.84 38.1) (xy 116.84 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2e642b3e-a476-4c54-9a52-dcea955640cd)
)
(wire (pts (xy 167.64 36.83) (xy 167.64 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 30f15357-ce1d-48b9-93dc-7d9b1b2aa048)
)
(wire (pts (xy 167.64 27.94) (xy 167.64 26.67))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 31e08896-1992-4725-96d9-9d2728bca7a3)
)
(wire (pts (xy 157.48 73.66) (xy 160.02 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3a7648d8-121a-4921-9b92-9b35b76ce39b)
)
(wire (pts (xy 132.08 29.21) (xy 132.08 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3b838d52-596d-4e4d-a6ac-e4c8e7621137)
)
(wire (pts (xy 43.18 72.39) (xy 43.18 73.66))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 42713045-fffd-4b2d-ae1e-7232d705fb12)
)
(wire (pts (xy 144.78 27.94) (xy 144.78 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 44d8279a-9cd1-4db6-856f-0363131605fc)
)
(wire (pts (xy 116.84 27.94) (xy 132.08 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 47baf4b1-0938-497d-88f9-671136aa8be7)
)
(wire (pts (xy 72.39 49.53) (xy 73.66 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 48ab88d7-7084-4d02-b109-3ad55a30bb11)
)
(wire (pts (xy 133.35 66.04) (xy 121.92 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4e3d7c0d-12e3-42f2-b944-e4bcdbbcac2a)
)
(wire (pts (xy 132.08 36.83) (xy 132.08 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5038e144-5119-49db-b6cf-f7c345f1cf03)
)
(wire (pts (xy 132.08 38.1) (xy 116.84 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54365317-1355-4216-bb75-829375abc4ec)
)
(wire (pts (xy 46.99 44.45) (xy 38.1 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58dc14f9-c158-4824-a84e-24a6a482a7a4)
)
(wire (pts (xy 144.78 38.1) (xy 144.78 36.83))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5fc27c35-3e1c-4f96-817c-93b5570858a6)
)
(wire (pts (xy 157.48 71.12) (xy 167.64 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 63ff1c93-3f96-4c33-b498-5dd8c33bccc0)
)
(wire (pts (xy 133.35 71.12) (xy 121.92 71.12))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6a44418c-7bb4-4e99-8836-57f153c19721)
)
(wire (pts (xy 144.78 38.1) (xy 132.08 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6c9b793c-e74d-4754-a2c0-901e73b26f1c)
)
(wire (pts (xy 73.66 52.07) (xy 73.66 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 704d6d51-bb34-4cbf-83d8-841e208048d8)
)
(wire (pts (xy 73.66 73.66) (xy 73.66 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 712d6a7d-2b62-464f-b745-fd2a6b0187f6)
)
(wire (pts (xy 73.66 46.99) (xy 73.66 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 716e31c5-485f-40b5-88e3-a75900da9811)
)
(wire (pts (xy 156.21 27.94) (xy 167.64 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 749dfe75-c0d6-4872-9330-29c5bbcb8ff8)
)
(wire (pts (xy 167.64 27.94) (xy 167.64 29.21))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 77ed3941-d133-4aef-a9af-5a39322d14eb)
)
(wire (pts (xy 167.64 38.1) (xy 167.64 39.37))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7edc9030-db7b-43ac-a1b3-b87eeacb4c2d)
)
(wire (pts (xy 72.39 52.07) (xy 73.66 52.07))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8174b4de-74b1-48db-ab8e-c8432251095b)
)
(wire (pts (xy 73.66 44.45) (xy 73.66 41.91))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 842e430f-0c35-45f3-a0b5-95ae7b7ae388)
)
(wire (pts (xy 46.99 59.69) (xy 38.1 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 854dd5d4-5fd2-4730-bd49-a9cd8299a065)
)
(wire (pts (xy 167.64 38.1) (xy 156.21 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87371631-aa02-498a-998a-09bdb74784c1)
)
(wire (pts (xy 46.99 67.31) (xy 38.1 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8d55e186-3e11-40e8-a65e-b36a8a00069e)
)
(wire (pts (xy 43.18 81.28) (xy 43.18 83.82))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 922058ca-d09a-45fd-8394-05f3e2c1e03a)
)
(wire (pts (xy 72.39 67.31) (xy 73.66 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9340c285-5767-42d5-8b6d-63fe2a40ddf3)
)
(wire (pts (xy 82.55 59.69) (xy 82.55 60.96))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 94a873dc-af67-4ef9-8159-1f7c93eeb3d7)
)
(wire (pts (xy 72.39 44.45) (xy 73.66 44.45))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 98e81e80-1f85-4152-be3f-99785ea97751)
)
(wire (pts (xy 73.66 64.77) (xy 73.66 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9b0a1687-7e1b-4a04-a30b-c27a072a2949)
)
(wire (pts (xy 157.48 66.04) (xy 167.64 66.04))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9e1b837f-0d34-4a18-9644-9ee68f141f46)
)
(wire (pts (xy 72.39 59.69) (xy 73.66 59.69))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a1823eb2-fb0d-4ed8-8b96-04184ac3a9d5)
)
(wire (pts (xy 156.21 36.83) (xy 156.21 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a3e4f0ae-9f86-49e9-b386-ed8b42e012fb)
)
(wire (pts (xy 133.35 68.58) (xy 121.92 68.58))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa02e544-13f5-4cf8-a5f4-3e6cda006090)
)
(wire (pts (xy 72.39 46.99) (xy 73.66 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b1086f75-01ba-4188-8d36-75a9e2828ca9)
)
(wire (pts (xy 73.66 72.39) (xy 72.39 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b3d08afa-f296-4e3b-8825-73b6331d35bf)
)
(wire (pts (xy 46.99 49.53) (xy 38.1 49.53))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b635b16e-60bb-4b3e-9fc3-47d34eef8381)
)
(wire (pts (xy 157.48 78.74) (xy 167.64 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b88717bd-086f-46cd-9d3f-0396009d0996)
)
(wire (pts (xy 116.84 29.21) (xy 116.84 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c022004a-c968-410e-b59e-fbab0e561e9d)
)
(wire (pts (xy 156.21 38.1) (xy 144.78 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c144caa5-b0d4-4cef-840a-d4ad178a2102)
)
(wire (pts (xy 73.66 69.85) (xy 73.66 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ce83728b-bebd-48c2-8734-b6a50d837931)
)
(wire (pts (xy 133.35 76.2) (xy 121.92 76.2))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d1262c4d-2245-4c4f-8f35-7bb32cd9e21e)
)
(wire (pts (xy 133.35 78.74) (xy 121.92 78.74))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d22e95aa-f3db-4fbc-a331-048a2523233e)
)
(wire (pts (xy 144.78 39.37) (xy 144.78 38.1))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d8603679-3e7b-4337-8dbc-1827f5f54d8a)
)
(wire (pts (xy 144.78 26.67) (xy 144.78 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e615f7aa-337e-474d-9615-2ad82b1c44ca)
)
(wire (pts (xy 156.21 29.21) (xy 156.21 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb667eea-300e-4ca7-8a6f-4b00de80cd45)
)
(wire (pts (xy 72.39 64.77) (xy 73.66 64.77))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ee27d19c-8dca-4ac8-a760-6dfd54d28071)
)
(wire (pts (xy 144.78 27.94) (xy 156.21 27.94))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ef8fe2ac-6a7f-4682-9418-b801a1b10a3b)
)
(wire (pts (xy 73.66 49.53) (xy 73.66 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f71da641-16e6-4257-80c3-0b9d804fee4f)
)
(wire (pts (xy 46.99 46.99) (xy 38.1 46.99))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f976e2cc-36f9-4479-a816-2c74d1d5da6f)
)
(label "SERIRQ" (at 123.19 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0a3cc030-c9dd-4d74-9d50-715ed2b361a2)
)
(label "LAD0" (at 123.19 66.04 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 0d0bb7b2-a6e5-46d2-9492-a1aa6e5a7b2f)
)
(label "LAD3" (at 123.19 73.66 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 15875808-74d5-4210-b8ca-aa8fbc04ae21)
)
(label "LCLK" (at 158.75 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2f215f15-3d52-4c91-93e6-3ea03a95622f)
)
(label "LAD0" (at 39.37 44.45 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 48f827a8-6e22-4a2e-abdc-c2a03098d883)
)
(label "LRESET" (at 39.37 62.23 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5b2b5c7d-f943-4634-9f0a-e9561705c49d)
)
(label "VDD" (at 158.75 66.04 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 61fe293f-6808-4b7f-9340-9aaac7054a97)
)
(label "LFRAME" (at 39.37 59.69 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 6a45789b-3855-401f-8139-3c734f7f52f9)
)
(label "LAD2" (at 123.19 71.12 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 81bbc3ff-3938-49ac-8297-ce2bcc9a42bd)
)
(label "LRESET" (at 158.75 78.74 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 8da933a9-35f8-42e6-8504-d1bab7264306)
)
(label "LAD3" (at 39.37 52.07 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9c8ccb2a-b1e9-4f2c-94fe-301b5975277e)
)
(label "LCLK" (at 39.37 57.15 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a03e565f-d8cd-4032-aae3-b7327d4143dd)
)
(label "LAD1" (at 123.19 68.58 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid b1169a2d-8998-4b50-a48d-c520bcc1b8e1)
)
(label "SERIRQ" (at 39.37 67.31 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid c70d9ef3-bfeb-47e0-a1e1-9aeba3da7864)
)
(label "LAD2" (at 39.37 49.53 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid cef6f603-8a0b-4dd0-af99-ebfbef7d1b4b)
)
(label "LFRAME" (at 123.19 76.2 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid dd00c2e1-6027-4717-b312-4fab3ee52002)
)
(label "LAD1" (at 39.37 46.99 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e877bf4a-4210-4bd3-b7b0-806eb4affc5b)
)
(symbol (lib_id "power:GND") (at 73.66 73.66 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f024cb)
(property "Reference" "#PWR03" (id 0) (at 73.66 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 73.787 78.0542 0))
(property "Footprint" "" (id 2) (at 73.66 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 73.66 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3788b74c-3f18-4af9-836b-cfdfc7f8c768))
)
(symbol (lib_id "power:VDD") (at 73.66 41.91 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f02e8f)
(property "Reference" "#PWR02" (id 0) (at 73.66 45.72 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "VDD" (id 1) (at 74.041 37.5158 0))
(property "Footprint" "" (id 2) (at 73.66 41.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 73.66 41.91 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a8ca7285-a6ed-456d-8079-e879b380d860))
)
(symbol (lib_id "power:GND") (at 160.02 73.66 90) (mirror x) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f0e70a)
(property "Reference" "#PWR07" (id 0) (at 166.37 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 163.2712 73.787 90)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "" (id 2) (at 160.02 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 160.02 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid aa0d84b4-a883-4b8b-9acd-2b3a2c1135a3))
)
(symbol (lib_id "Device:C") (at 132.08 33.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f110c4)
(property "Reference" "C2" (id 0) (at 135.001 31.8516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 135.001 34.163 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 133.0452 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.08 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid b803990c-1c4e-44c3-8e26-7de262febd0b))
(pin "2" (uuid 758d8f94-ae50-46a1-9ddd-3b3a4259f167))
)
(symbol (lib_id "Device:C") (at 144.78 33.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f11d1b)
(property "Reference" "C3" (id 0) (at 147.701 31.8516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 147.701 34.163 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 145.7452 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 144.78 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 040d4535-d616-4e22-85b8-8c5ab793fbf0))
(pin "2" (uuid 68f92a54-f14a-4338-bfb4-429506e9b675))
)
(symbol (lib_id "Device:C") (at 156.21 33.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f121b5)
(property "Reference" "C4" (id 0) (at 159.131 31.8516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 159.131 34.163 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_1206_3216Metric" (id 2) (at 157.1752 36.83 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 156.21 33.02 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 0201d9fc-7fd7-4974-9f6a-03d79c93bf1e))
(pin "2" (uuid 74c827f3-bacf-4d7c-b715-d2595536ba2d))
)
(symbol (lib_id "Device:C") (at 167.64 33.02 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060f12593)
(property "Reference" "C5" (id 0) (at 170.561 31.8516 0)
(effects (font (size 1.27 1.27)) (justify left))
)