-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdecopling.kicad_sch
1424 lines (1390 loc) · 49.1 KB
/
decopling.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 74bbc32f-8eb0-4d3c-9612-5a45a4c49fbd)
(paper "A4")
(title_block
(title "Orange Cart")
(date "2021-02-28")
(rev "r0.1")
(comment 2 "Licensed under CERN OHL v.1.2")
(comment 3 "Cartridge version redesign: Marcus Comstedt")
(comment 4 "Based on Orange Crab by Gregory Davill")
)
(lib_symbols
(symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 0.9652 -3.81 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" "cap capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Unpolarized capacitor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (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))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(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 "gkl_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 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -2.54 -8.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 -1.27)
(xy 0 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 -1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.3048) (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 124.46 91.44) (diameter 0) (color 0 0 0 0)
(uuid 1b2c37f1-2f41-4eef-9163-74d93552bfe4)
)
(junction (at 76.2 39.37) (diameter 0) (color 0 0 0 0)
(uuid 321c97ce-037e-4926-8c05-7be14a63f7fd)
)
(junction (at 58.42 72.39) (diameter 0) (color 0 0 0 0)
(uuid 38cad123-e6f8-46ac-bb65-7bf207c8a5a7)
)
(junction (at 38.1 29.21) (diameter 0) (color 0 0 0 0)
(uuid 3a41f6b2-d64e-4fc9-9c78-62461e28f42c)
)
(junction (at 124.46 62.23) (diameter 0) (color 0 0 0 0)
(uuid 42b75c7f-e205-4778-8b80-6010e5eef40d)
)
(junction (at 59.69 29.21) (diameter 0) (color 0 0 0 0)
(uuid 5c5b3284-d7e2-4069-8087-eaf4a8346272)
)
(junction (at 54.61 39.37) (diameter 0) (color 0 0 0 0)
(uuid 677a1070-c11b-49a9-8186-12e0a3e880b1)
)
(junction (at 81.28 29.21) (diameter 0) (color 0 0 0 0)
(uuid 6f75ea3e-6135-44f5-9313-1aad839ab6f6)
)
(junction (at 33.02 72.39) (diameter 0) (color 0 0 0 0)
(uuid 7847981b-5502-41f3-9413-b29fe20c5b32)
)
(junction (at 102.87 91.44) (diameter 0) (color 0 0 0 0)
(uuid 796db869-0097-47e7-801f-cda0ea750e7a)
)
(junction (at 119.38 101.6) (diameter 0) (color 0 0 0 0)
(uuid 7d1347db-292a-4095-85d4-76da0d3f5524)
)
(junction (at 63.5 62.23) (diameter 0) (color 0 0 0 0)
(uuid 8c5a6fce-194d-4416-8856-cb66ff818319)
)
(junction (at 33.02 39.37) (diameter 0) (color 0 0 0 0)
(uuid 93340c38-8bfd-447a-bf60-be3c6dc860d9)
)
(junction (at 97.79 101.6) (diameter 0) (color 0 0 0 0)
(uuid b9086bc6-f594-4bed-870a-3805d2b7840b)
)
(junction (at 142.24 101.6) (diameter 0) (color 0 0 0 0)
(uuid be52ce9f-4498-483f-a791-994a787b7224)
)
(junction (at 38.1 62.23) (diameter 0) (color 0 0 0 0)
(uuid d0e144a3-6f5f-4307-ac4c-47637e9032bf)
)
(junction (at 119.38 72.39) (diameter 0) (color 0 0 0 0)
(uuid e91ad237-6778-4565-a41c-5451c22b839e)
)
(junction (at 147.32 91.44) (diameter 0) (color 0 0 0 0)
(uuid f1d34821-cc17-42fc-b481-1c7f738497e3)
)
(wire (pts (xy 119.38 63.5) (xy 119.38 62.23))
(stroke (width 0) (type default))
(uuid 00d22a94-4415-4f7c-bba5-9ac8913c5f96)
)
(wire (pts (xy 59.69 29.21) (xy 59.69 27.94))
(stroke (width 0) (type default))
(uuid 0454b0ed-4e94-46b1-9058-7210ddee62e4)
)
(wire (pts (xy 63.5 72.39) (xy 63.5 71.12))
(stroke (width 0) (type default))
(uuid 05c66f7d-5ec1-4b7f-80d5-ea1eb396392f)
)
(wire (pts (xy 38.1 63.5) (xy 38.1 62.23))
(stroke (width 0) (type default))
(uuid 0df376e0-b3b8-4926-8318-ef70bcc43326)
)
(wire (pts (xy 102.87 101.6) (xy 102.87 100.33))
(stroke (width 0) (type default))
(uuid 13b44301-e8b6-44a2-a883-05207972227f)
)
(wire (pts (xy 97.79 101.6) (xy 102.87 101.6))
(stroke (width 0) (type default))
(uuid 14be568d-2e52-4aed-b81b-dddc75cbdd07)
)
(wire (pts (xy 119.38 72.39) (xy 119.38 73.66))
(stroke (width 0) (type default))
(uuid 16010e58-8aee-45c1-99df-d1cc2bd80779)
)
(wire (pts (xy 142.24 101.6) (xy 142.24 102.87))
(stroke (width 0) (type default))
(uuid 16b71e23-859c-4e16-8af1-5d30a5c2b726)
)
(wire (pts (xy 147.32 101.6) (xy 147.32 100.33))
(stroke (width 0) (type default))
(uuid 1b642110-eaa8-451d-b449-e92e71e75978)
)
(wire (pts (xy 76.2 39.37) (xy 81.28 39.37))
(stroke (width 0) (type default))
(uuid 2330617f-82c2-43f9-8a7c-826ddfdbb89f)
)
(wire (pts (xy 76.2 38.1) (xy 76.2 39.37))
(stroke (width 0) (type default))
(uuid 262fe442-673c-4133-92f6-23f6d42651f0)
)
(wire (pts (xy 142.24 91.44) (xy 147.32 91.44))
(stroke (width 0) (type default))
(uuid 268c6477-051a-4631-8f4a-c86c47bf5102)
)
(wire (pts (xy 124.46 92.71) (xy 124.46 91.44))
(stroke (width 0) (type default))
(uuid 2b626917-a177-4b61-81a1-fd2a69eb9f9a)
)
(wire (pts (xy 119.38 71.12) (xy 119.38 72.39))
(stroke (width 0) (type default))
(uuid 31880686-d14b-45e6-a2ae-8550fa4d37d7)
)
(wire (pts (xy 33.02 29.21) (xy 38.1 29.21))
(stroke (width 0) (type default))
(uuid 31ae1ddb-55f8-4875-b94d-87a4d0c86414)
)
(wire (pts (xy 54.61 39.37) (xy 59.69 39.37))
(stroke (width 0) (type default))
(uuid 37e843e9-2538-4a91-9a9b-f536fa0a9e84)
)
(wire (pts (xy 147.32 91.44) (xy 147.32 90.17))
(stroke (width 0) (type default))
(uuid 39a58874-d2bf-449b-9f58-07b2f1a46d16)
)
(wire (pts (xy 142.24 101.6) (xy 147.32 101.6))
(stroke (width 0) (type default))
(uuid 442f453a-9b44-44ab-a898-82f45629c72d)
)
(wire (pts (xy 142.24 92.71) (xy 142.24 91.44))
(stroke (width 0) (type default))
(uuid 491de0e1-cd41-47a4-a79b-f86c4b58fa87)
)
(wire (pts (xy 33.02 30.48) (xy 33.02 29.21))
(stroke (width 0) (type default))
(uuid 4a8c099c-07ef-47db-b188-6f8b7978d1d4)
)
(wire (pts (xy 81.28 39.37) (xy 81.28 38.1))
(stroke (width 0) (type default))
(uuid 4ed25a91-62bc-460f-b416-f09c2b72ae30)
)
(wire (pts (xy 76.2 29.21) (xy 81.28 29.21))
(stroke (width 0) (type default))
(uuid 500298f6-b9ed-4e53-bde6-024545f1a90a)
)
(wire (pts (xy 58.42 71.12) (xy 58.42 72.39))
(stroke (width 0) (type default))
(uuid 51e64652-1e71-4dd7-be6f-f96020dbcaac)
)
(wire (pts (xy 38.1 39.37) (xy 38.1 38.1))
(stroke (width 0) (type default))
(uuid 539ff21e-64a5-4d0a-a3c6-87ad104f3729)
)
(wire (pts (xy 119.38 62.23) (xy 124.46 62.23))
(stroke (width 0) (type default))
(uuid 5498fdb6-915a-4445-8b00-6524ae4d6c27)
)
(wire (pts (xy 124.46 72.39) (xy 124.46 71.12))
(stroke (width 0) (type default))
(uuid 59a4dc33-016c-4cea-b648-6fe1c8836f68)
)
(wire (pts (xy 97.79 91.44) (xy 102.87 91.44))
(stroke (width 0) (type default))
(uuid 5f48357f-c353-4808-811f-74ed7ffaa7c6)
)
(wire (pts (xy 124.46 101.6) (xy 124.46 100.33))
(stroke (width 0) (type default))
(uuid 5fb34c2f-8685-4006-a370-36a5c54e8539)
)
(wire (pts (xy 58.42 72.39) (xy 58.42 73.66))
(stroke (width 0) (type default))
(uuid 638185a1-f9cc-47fc-9abd-4b70c0817d94)
)
(wire (pts (xy 63.5 63.5) (xy 63.5 62.23))
(stroke (width 0) (type default))
(uuid 638749f1-b1e7-4781-9f0f-dba065a717aa)
)
(wire (pts (xy 33.02 72.39) (xy 38.1 72.39))
(stroke (width 0) (type default))
(uuid 644a2620-03c0-4432-a2a3-b8177b485182)
)
(wire (pts (xy 119.38 101.6) (xy 119.38 102.87))
(stroke (width 0) (type default))
(uuid 6647797e-9035-4291-9495-e7c7119a3fd1)
)
(wire (pts (xy 63.5 62.23) (xy 63.5 60.96))
(stroke (width 0) (type default))
(uuid 67c7a478-1f53-477a-9997-e375f47aa773)
)
(wire (pts (xy 124.46 91.44) (xy 124.46 90.17))
(stroke (width 0) (type default))
(uuid 680ed401-4444-41a7-a749-88310d3efeaa)
)
(wire (pts (xy 38.1 72.39) (xy 38.1 71.12))
(stroke (width 0) (type default))
(uuid 729e0aa9-1770-4b96-8a01-af601278faec)
)
(wire (pts (xy 54.61 38.1) (xy 54.61 39.37))
(stroke (width 0) (type default))
(uuid 752fa345-d8be-4e99-aad1-e88671f99643)
)
(wire (pts (xy 58.42 72.39) (xy 63.5 72.39))
(stroke (width 0) (type default))
(uuid 78620eb8-ad4c-482d-b1a5-6c31619b2879)
)
(wire (pts (xy 142.24 100.33) (xy 142.24 101.6))
(stroke (width 0) (type default))
(uuid 78fa7842-f3c6-48db-8c77-7797633506e5)
)
(wire (pts (xy 59.69 30.48) (xy 59.69 29.21))
(stroke (width 0) (type default))
(uuid 794e55a0-75fe-436a-8b64-c2f248c65f18)
)
(wire (pts (xy 58.42 63.5) (xy 58.42 62.23))
(stroke (width 0) (type default))
(uuid 7eaae2d7-b4ad-4554-8c8a-2037170131bd)
)
(wire (pts (xy 33.02 39.37) (xy 38.1 39.37))
(stroke (width 0) (type default))
(uuid 815a0815-7930-45ec-8d6e-dc110f979c75)
)
(wire (pts (xy 124.46 63.5) (xy 124.46 62.23))
(stroke (width 0) (type default))
(uuid 8764b520-89c4-4e8f-9e4f-12a445e1a616)
)
(wire (pts (xy 76.2 39.37) (xy 76.2 40.64))
(stroke (width 0) (type default))
(uuid 8b56f428-76c6-47f4-814c-d4162e003c52)
)
(wire (pts (xy 59.69 39.37) (xy 59.69 38.1))
(stroke (width 0) (type default))
(uuid 8d33a8d3-c5cc-40b4-ba71-6923d60927e2)
)
(wire (pts (xy 38.1 62.23) (xy 38.1 60.96))
(stroke (width 0) (type default))
(uuid 91e34627-a183-42e4-bafa-955f631c2bab)
)
(wire (pts (xy 38.1 29.21) (xy 38.1 27.94))
(stroke (width 0) (type default))
(uuid 92ba8945-0271-4dc3-a102-541bc7646045)
)
(wire (pts (xy 54.61 39.37) (xy 54.61 40.64))
(stroke (width 0) (type default))
(uuid 92cf4db4-2dba-4763-9cd8-3c7f8aff8f24)
)
(wire (pts (xy 147.32 92.71) (xy 147.32 91.44))
(stroke (width 0) (type default))
(uuid 94d07718-2fcc-40a0-ad0e-c4bb67bc804a)
)
(wire (pts (xy 102.87 91.44) (xy 102.87 90.17))
(stroke (width 0) (type default))
(uuid 9d7822b4-339e-43c0-b115-d4b16189cc93)
)
(wire (pts (xy 119.38 92.71) (xy 119.38 91.44))
(stroke (width 0) (type default))
(uuid a1916e9e-4224-4c5d-a9c6-82b80a4bae89)
)
(wire (pts (xy 33.02 71.12) (xy 33.02 72.39))
(stroke (width 0) (type default))
(uuid a97a52d6-fe14-4f06-b35e-2dc42532437e)
)
(wire (pts (xy 119.38 91.44) (xy 124.46 91.44))
(stroke (width 0) (type default))
(uuid b3dfbe76-e5a2-48e9-bf61-46c24ad01a97)
)
(wire (pts (xy 76.2 30.48) (xy 76.2 29.21))
(stroke (width 0) (type default))
(uuid b9fce689-53c2-4275-98d8-2c8da9bd740a)
)
(wire (pts (xy 33.02 62.23) (xy 38.1 62.23))
(stroke (width 0) (type default))
(uuid c360b637-6f5d-44e0-97f7-af09c2986ed7)
)
(wire (pts (xy 58.42 62.23) (xy 63.5 62.23))
(stroke (width 0) (type default))
(uuid c4587bb7-c73a-4ad0-bcd4-d7dc9697e09b)
)
(wire (pts (xy 38.1 30.48) (xy 38.1 29.21))
(stroke (width 0) (type default))
(uuid c8ce7d0f-bd8a-416c-9bb9-339f4090a830)
)
(wire (pts (xy 81.28 30.48) (xy 81.28 29.21))
(stroke (width 0) (type default))
(uuid ca0eab8e-e3fd-464d-bb03-d1603b8a651b)
)
(wire (pts (xy 119.38 100.33) (xy 119.38 101.6))
(stroke (width 0) (type default))
(uuid d2fb2423-7bf4-4222-994d-25a9683eab67)
)
(wire (pts (xy 119.38 72.39) (xy 124.46 72.39))
(stroke (width 0) (type default))
(uuid d732dada-3bdf-40ee-b2d0-4e0254c2408c)
)
(wire (pts (xy 97.79 100.33) (xy 97.79 101.6))
(stroke (width 0) (type default))
(uuid d827258b-50c4-46fc-b3a5-4b37a0dc9ee6)
)
(wire (pts (xy 119.38 101.6) (xy 124.46 101.6))
(stroke (width 0) (type default))
(uuid d875da09-775c-45a3-be03-ee257d013433)
)
(wire (pts (xy 54.61 29.21) (xy 59.69 29.21))
(stroke (width 0) (type default))
(uuid e1640c92-0a7b-4990-ae42-e9436c2a460d)
)
(wire (pts (xy 102.87 92.71) (xy 102.87 91.44))
(stroke (width 0) (type default))
(uuid e20b2d01-f0a2-4c23-a8cf-4b8afc873d5b)
)
(wire (pts (xy 124.46 62.23) (xy 124.46 60.96))
(stroke (width 0) (type default))
(uuid e31b63b1-e50c-436f-8b2d-c664bc43a016)
)
(wire (pts (xy 97.79 92.71) (xy 97.79 91.44))
(stroke (width 0) (type default))
(uuid e584287a-6232-40cf-a082-8dea5986b945)
)
(wire (pts (xy 33.02 39.37) (xy 33.02 40.64))
(stroke (width 0) (type default))
(uuid e5e03502-ed28-4743-9af6-23bafe8e639e)
)
(wire (pts (xy 81.28 29.21) (xy 81.28 27.94))
(stroke (width 0) (type default))
(uuid e7130644-c4ae-4f9d-997d-5b4fa9d09578)
)
(wire (pts (xy 97.79 101.6) (xy 97.79 102.87))
(stroke (width 0) (type default))
(uuid f3948324-ce3a-4786-8e6f-06525e602a33)
)
(wire (pts (xy 54.61 30.48) (xy 54.61 29.21))
(stroke (width 0) (type default))
(uuid fb6ae0ae-5f09-42f3-a277-43e9524a252b)
)
(wire (pts (xy 33.02 63.5) (xy 33.02 62.23))
(stroke (width 0) (type default))
(uuid fc56b098-c3aa-474b-aac9-da58d4f42386)
)
(wire (pts (xy 33.02 38.1) (xy 33.02 39.37))
(stroke (width 0) (type default))
(uuid fd2d066c-2ff9-43c4-ab8e-a65d2b71b5c1)
)
(wire (pts (xy 33.02 72.39) (xy 33.02 73.66))
(stroke (width 0) (type default))
(uuid fe36219f-13f1-47e3-b06a-60e954519022)
)
(global_label "P1.1V" (shape passive) (at 38.1 27.94 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 2d6a4f0e-aa68-4d44-9390-8ea258fa2bc4)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 38.1 21.2585 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P1.1V" (shape passive) (at 59.69 27.94 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5bd9bd00-e17c-4137-8daf-974f4e7eb479)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 59.69 21.2585 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P1.1V" (shape passive) (at 81.28 27.94 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 5fa23453-de94-4f47-ab66-80326a468ae1)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 81.28 21.2585 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P3.3V" (shape passive) (at 124.46 60.96 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 62def94f-da82-4011-bf35-41c3c797a86b)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 0 -29.21 0)
(effects (font (size 1.27 1.27)) hide)
)
)
(global_label "P3.3V" (shape passive) (at 147.32 90.17 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 7e4a5f4a-ba57-4793-9c6e-04e153b677a9)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 147.32 83.4885 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P2.5V" (shape passive) (at 38.1 60.96 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid bb592211-9895-49a1-bb6a-47f7a9f85864)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 38.1 54.2785 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P2.5V" (shape passive) (at 63.5 60.96 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid c908cdd7-5bf2-4e04-ae66-bd89b22bab8d)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 63.5 54.2785 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P3.3V" (shape passive) (at 102.87 90.17 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d2456fb5-2b99-45e1-9d17-eb9a485a3bd3)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 102.87 83.4885 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(global_label "P3.3V" (shape passive) (at 124.46 90.17 90) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e9f702de-b437-4ae2-a03e-b707e9309898)
(property "Intersheetrefs" "${INTERSHEET_REFS}" (at 124.46 83.4885 90)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
)
(symbol (lib_id "Device:C") (at 33.02 34.29 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d35d269)
(property "Reference" "C48" (at 30.099 33.1216 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 30.099 35.433 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 33.9852 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 33.02 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 33.02 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03B103KP3NNNC" (at 33.02 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03B103KP3NNNC" (at 33.02 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,08" (at 33.02 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e56bad8f-f48c-493b-875f-8e7b92bbd47b))
(pin "2" (uuid b38a64ec-b4e4-4f80-8ac4-f0c8d74e9cf5))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C48") (unit 1)
)
)
)
)
(symbol (lib_id "gkl_power:GND") (at 33.02 40.64 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d35d88e)
(property "Reference" "#PWR0148" (at 33.02 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 33.0962 43.8404 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 30.48 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 33.02 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ac4492f8-abf1-4908-aedc-2cf5b74e158a))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "#PWR0148") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 38.1 34.29 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d35dbfc)
(property "Reference" "C50" (at 41.021 33.1216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 41.021 35.433 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 39.0652 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 38.1 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 38.1 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03A104KQ3NNNC" (at 38.1 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03A104KQ3NNNC" (at 38.1 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,02" (at 38.1 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f3a8e748-1232-4d1e-9567-6771f5050b91))
(pin "2" (uuid 51b001c0-2dfe-46b9-8671-c5a384fdee97))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C50") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 54.61 34.29 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d35eccf)
(property "Reference" "C52" (at 51.689 33.1216 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 51.689 35.433 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 55.5752 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 54.61 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 54.61 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03B103KP3NNNC" (at 54.61 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03B103KP3NNNC" (at 54.61 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,08" (at 54.61 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5c1d867-9c63-4b8a-b36a-b23882053681))
(pin "2" (uuid 0da44f78-1970-4b38-bf3c-94c5a1d5000b))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C52") (unit 1)
)
)
)
)
(symbol (lib_id "gkl_power:GND") (at 54.61 40.64 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d35ecd9)
(property "Reference" "#PWR0149" (at 54.61 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 54.6862 43.8404 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 52.07 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 54.61 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f4832418-fa99-443c-80a2-6979aeca5a1b))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "#PWR0149") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 59.69 34.29 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d35ece3)
(property "Reference" "C54" (at 62.611 33.1216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 62.611 35.433 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 60.6552 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 59.69 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 59.69 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03A104KQ3NNNC" (at 59.69 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03A104KQ3NNNC" (at 59.69 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,02" (at 59.69 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 357920a9-3b53-4f7d-a012-5486326825ea))
(pin "2" (uuid f98c8b37-df06-44d5-9c80-f68add38cb35))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C54") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 76.2 34.29 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d360248)
(property "Reference" "C56" (at 73.279 33.1216 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 73.279 35.433 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 77.1652 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 76.2 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 76.2 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03B103KP3NNNC" (at 76.2 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03B103KP3NNNC" (at 76.2 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,08" (at 76.2 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 6bfe1001-773c-4e3e-addd-649d2a69f490))
(pin "2" (uuid 0d8c0908-41d6-4e5e-9492-41a142ecf84f))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C56") (unit 1)
)
)
)
)
(symbol (lib_id "gkl_power:GND") (at 76.2 40.64 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d360252)
(property "Reference" "#PWR0150" (at 76.2 46.99 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 76.2762 43.8404 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 73.66 49.53 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 76.2 40.64 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 32b9fb0b-5d7d-4fac-93ef-206883ef1965))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "#PWR0150") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 81.28 34.29 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d36025c)
(property "Reference" "C57" (at 84.201 33.1216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 84.201 35.433 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 82.2452 38.1 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 81.28 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 81.28 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03A104KQ3NNNC" (at 81.28 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03A104KQ3NNNC" (at 81.28 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,02" (at 81.28 34.29 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c5853cef-a8ab-4efc-bcf9-29beb9fffe8a))
(pin "2" (uuid 7b4b0936-eec6-4d81-810b-aa5a5ba06f73))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C57") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 33.02 67.31 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d364700)
(property "Reference" "C49" (at 30.099 66.1416 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 30.099 68.453 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 33.9852 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 33.02 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 33.02 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03B103KP3NNNC" (at 33.02 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03B103KP3NNNC" (at 33.02 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,08" (at 33.02 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 41a44686-96e3-4c46-aedc-32ef1e27b434))
(pin "2" (uuid 9897b941-626f-40bf-b1bd-32e8832c50b9))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C49") (unit 1)
)
)
)
)
(symbol (lib_id "gkl_power:GND") (at 33.02 73.66 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d36470a)
(property "Reference" "#PWR0153" (at 33.02 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 33.0962 76.8604 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 30.48 82.55 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 33.02 73.66 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 73228880-3976-4a43-a82b-66349d4c7690))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "#PWR0153") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 38.1 67.31 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d364714)
(property "Reference" "C51" (at 41.021 66.1416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 41.021 68.453 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 39.0652 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 38.1 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 38.1 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03A104KQ3NNNC" (at 38.1 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03A104KQ3NNNC" (at 38.1 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,02" (at 38.1 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 074d6bdc-f83c-4158-89c2-1b70247e2d92))
(pin "2" (uuid b9b92bda-0a4b-4ada-af50-c7cbfe0314bd))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C51") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 124.46 67.31 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d36bea4)
(property "Reference" "C64" (at 127.381 66.1416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100nF" (at 127.381 68.453 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 125.4252 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03A104KQ3NNNC" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03A104KQ3NNNC" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,02" (at 124.46 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 65907a79-4374-451f-9d85-e039fd9b8198))
(pin "2" (uuid 45f2ae7f-b4bf-4a22-aa5e-e05f8d3438a7))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C64") (unit 1)
)
)
)
)
(symbol (lib_id "Device:C") (at 119.38 67.31 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d36beb9)
(property "Reference" "C66" (at 116.459 66.1416 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10nF" (at 116.459 68.453 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_SMD:C_0201_0603Metric" (at 120.3452 71.12 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 119.38 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mfg" "Samsung Electro-Mechanics" (at 119.38 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "PN" "CL03B103KP3NNNC" (at 119.38 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Mouser Part No" "187-CL03B103KP3NNNC" (at 119.38 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Pricing (EUR)" "0,08" (at 119.38 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 21b1a1ee-d2e9-4661-b49e-9c3888294a39))
(pin "2" (uuid 296656c2-4ceb-43a7-8e50-ed0b5e7c5410))
(instances
(project "OrangeCart"
(path "/9529c01f-e1cd-40be-b7f0-83780a544249/00000000-0000-0000-0000-00005d35d1f5"
(reference "C66") (unit 1)
)
)
)
)
(symbol (lib_id "gkl_power:GND") (at 119.38 73.66 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00005d36bec3)
(property "Reference" "#PWR0156" (at 119.38 80.01 0)
(effects (font (size 1.27 1.27)) hide)