-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyaumataca.kicad_pcb
13510 lines (13473 loc) · 537 KB
/
yaumataca.kicad_pcb
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_pcb (version 20221018) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(comment 4 "AISLER Project ID: IFPHUSZE")
)
(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)
(32 "B.Adhes" user "B.Adhesive")
(33 "F.Adhes" user "F.Adhesive")
(34 "B.Paste" user)
(35 "F.Paste" user)
(36 "B.SilkS" user "B.Silkscreen")
(37 "F.SilkS" user "F.Silkscreen")
(38 "B.Mask" user)
(39 "F.Mask" user)
(40 "Dwgs.User" user "User.Drawings")
(41 "Cmts.User" user "User.Comments")
(42 "Eco1.User" user "User.Eco1")
(43 "Eco2.User" user "User.Eco2")
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(48 "B.Fab" user)
(49 "F.Fab" user)
(50 "User.1" user)
(51 "User.2" user)
(52 "User.3" user)
(53 "User.4" user)
(54 "User.5" user)
(55 "User.6" user)
(56 "User.7" user)
(57 "User.8" user)
(58 "User.9" user)
)
(setup
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(plot_on_all_layers_selection 0x0000000_00000000)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(dashed_line_dash_ratio 12.000000)
(dashed_line_gap_ratio 3.000000)
(svgprecision 4)
(plotframeref false)
(viasonmask false)
(mode 1)
(useauxorigin false)
(hpglpennumber 1)
(hpglpenspeed 20)
(hpglpendiameter 15.000000)
(dxfpolygonmode true)
(dxfimperialunits true)
(dxfusepcbnewfont true)
(psnegative false)
(psa4output false)
(plotreference true)
(plotvalue true)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk false)
(outputformat 1)
(mirror false)
(drillshape 1)
(scaleselection 1)
(outputdirectory "")
)
)
(net 0 "")
(net 1 "+5V")
(net 2 "GND")
(net 3 "/Joy_Up")
(net 4 "/Joy_Down")
(net 5 "/Joy_Left")
(net 6 "/Joy_Right")
(net 7 "/Joy_Fire3")
(net 8 "/Joy_Fire1")
(net 9 "/Joy_Fire2")
(net 10 "unconnected-(J3-Pin_10-Pad10)")
(net 11 "unconnected-(J4-Pin_10-Pad10)")
(net 12 "/Pi_Joystick_Right")
(net 13 "/Pi_Joystick_Left")
(net 14 "/Pi_Joystick_Down")
(net 15 "/Pi_Joystick_Up")
(net 16 "/Pi_Joystick_Fire1")
(net 17 "/Mouse_Right")
(net 18 "/Mouse_Left")
(net 19 "/Mouse_Down")
(net 20 "/Mouse_Up")
(net 21 "/Mouse_Fire1")
(net 22 "/Mouse_Fire3")
(net 23 "/Mouse_Fire2")
(net 24 "/Pi_Joystick_Fire3")
(net 25 "/Pi_Joystick_Fire2")
(net 26 "/Pi_Mouse_Right")
(net 27 "/Pi_Mouse_Left")
(net 28 "/Pi_Mouse_Down")
(net 29 "/Pi_Mouse_Up")
(net 30 "unconnected-(U1-GPIO16-Pad21)")
(net 31 "unconnected-(U1-GPIO17-Pad22)")
(net 32 "unconnected-(U1-GPIO18-Pad24)")
(net 33 "unconnected-(U1-GPIO19-Pad25)")
(net 34 "unconnected-(U1-GPIO20-Pad26)")
(net 35 "unconnected-(U1-GPIO21-Pad27)")
(net 36 "unconnected-(U1-GND-Pad28)")
(net 37 "unconnected-(U1-GPIO22-Pad29)")
(net 38 "unconnected-(U1-RUN-Pad30)")
(net 39 "unconnected-(U1-GPIO26_ADC0-Pad31)")
(net 40 "unconnected-(U1-GPIO27_ADC1-Pad32)")
(net 41 "unconnected-(U1-AGND-Pad33)")
(net 42 "unconnected-(U1-GPIO28_ADC2-Pad34)")
(net 43 "unconnected-(U1-ADC_VREF-Pad35)")
(net 44 "unconnected-(U1-3V3-Pad36)")
(net 45 "unconnected-(U1-3V3_EN-Pad37)")
(net 46 "unconnected-(U1-GND-Pad38)")
(net 47 "unconnected-(U1-VSYS-Pad39)")
(net 48 "unconnected-(U1-SWCLK-Pad41)")
(net 49 "unconnected-(U1-SWDIO-Pad43)")
(net 50 "/Pi_Mouse_Fire1")
(net 51 "/Pi_Mouse_Fire3")
(net 52 "/Pi_Mouse_Fire2")
(net 53 "/Joystick_Pot_Sense")
(net 54 "/Mouse_Pot_Sense")
(net 55 "/HOST_5V")
(footprint "MCU_RaspberryPi_and_Boards:RPi_Pico_SMD_TH" (layer "F.Cu")
(tstamp 3c102cd3-7de1-40fb-8317-dabfc3c3b29f)
(at 176.2 88.9)
(descr "Through hole straight pin header, 2x20, 2.54mm pitch, double rows")
(tags "Through hole pin header THT 2x20 2.54mm double row")
(property "Sheetfile" "yaumataca.kicad_sch")
(property "Sheetname" "")
(path "/c84629c6-55bc-408b-827b-f1a1742dc98d")
(attr through_hole)
(fp_text reference "U1" (at 0 0) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6ee791a2-7778-489a-802c-587fb570c34e)
)
(fp_text value "Pico" (at 0 2.159) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3dc2804-f315-450f-98ef-8001a9fd77f7)
)
(fp_text user "SWCLK" (at -5.7 25.85) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 47c7a670-89f4-49cc-880f-9f1ed8ad119f)
)
(fp_text user "SWDIO" (at 5.6 25.85) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 5b72b6f8-c872-4234-9060-6aff92b4c638)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0ea3b3b1-c02d-43ef-881b-359e7925f1d0)
)
(fp_line (start -10.5 -25.5) (end -10.5 -25.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c1ba8a33-4fb7-4e19-8db6-f5eda5dc38fb))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6596eeab-d526-486a-a206-0b879e5d8c2b))
(fp_line (start -10.5 -23.1) (end -10.5 -22.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6904963b-71cc-4d1a-9a52-34000a4bcff3))
(fp_line (start -10.5 -22.833) (end -7.493 -22.833)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6538a398-7bec-41d0-836c-befa8dd88555))
(fp_line (start -10.5 -20.5) (end -10.5 -20.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fe7b633-9aec-4b8a-8b64-4564ceb36253))
(fp_line (start -10.5 -18) (end -10.5 -17.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7a1843df-4e4d-4025-8a1f-fff8de0d5d54))
(fp_line (start -10.5 -15.4) (end -10.5 -15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72d1ffb0-04b0-4013-a4bc-9c948a543983))
(fp_line (start -10.5 -12.9) (end -10.5 -12.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 504a9014-0ad6-407e-b538-9f8898d11445))
(fp_line (start -10.5 -10.4) (end -10.5 -10)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1042be44-9d2e-4ff6-b8b4-bc91efe99a91))
(fp_line (start -10.5 -7.8) (end -10.5 -7.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ea431fa-633d-444f-a797-6f7760ad8de3))
(fp_line (start -10.5 -5.3) (end -10.5 -4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42412ab9-d1aa-4b1a-aca4-806fb6f1497c))
(fp_line (start -10.5 -2.7) (end -10.5 -2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2fb0d8f5-8559-464d-928d-f91a0b3579d6))
(fp_line (start -10.5 -0.2) (end -10.5 0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4848208b-b12a-4d93-80d1-b6118e3881d0))
(fp_line (start -10.5 2.3) (end -10.5 2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8ed4a62-ae42-48e4-9174-87f7be46637a))
(fp_line (start -10.5 4.9) (end -10.5 5.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42d8f545-278a-4162-9dcf-9417f1963cf2))
(fp_line (start -10.5 7.4) (end -10.5 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 03dc64af-9dc8-4fda-ae97-f439c41a3d25))
(fp_line (start -10.5 10) (end -10.5 10.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 33f63605-deb1-4391-8769-d137ede67366))
(fp_line (start -10.5 12.5) (end -10.5 12.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30c4b82a-be8f-4c00-9bd7-a38840d2dddc))
(fp_line (start -10.5 15.1) (end -10.5 15.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 76cbe959-b8fa-4fac-be91-8e2c698ff0dc))
(fp_line (start -10.5 17.6) (end -10.5 18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7777824e-4d31-4d02-b076-a4e983be7f69))
(fp_line (start -10.5 20.1) (end -10.5 20.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 45937e93-46d1-48ce-a4d9-b686b4edfc18))
(fp_line (start -10.5 22.7) (end -10.5 23.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5d1e3ee-b09f-449d-bc2e-9104faa3307d))
(fp_line (start -7.493 -22.833) (end -7.493 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 345c981f-5bbb-42fa-8782-a901838f3072))
(fp_line (start -3.7 25.5) (end -10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a11daf16-92eb-4555-a5a8-9743fbbdb3d4))
(fp_line (start -1.5 25.5) (end -1.1 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae215cdf-715d-4e60-b583-f9cdd4078c6a))
(fp_line (start 1.1 25.5) (end 1.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4231b48-0a97-431b-9bb8-b331304b6360))
(fp_line (start 10.5 -25.5) (end 10.5 -25.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dda9b55-05b6-40ff-81f9-348c49d67a78))
(fp_line (start 10.5 -23.1) (end 10.5 -22.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ca6ff06d-515f-4048-856a-259b02af7a93))
(fp_line (start 10.5 -20.5) (end 10.5 -20.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9fd3733-9dc0-4aad-9144-69067fa55cec))
(fp_line (start 10.5 -18) (end 10.5 -17.6)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8812690f-6784-49c7-9234-231580a97720))
(fp_line (start 10.5 -15.4) (end 10.5 -15)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c2abb5c6-36e4-4ea0-97d8-2099a3a28cc2))
(fp_line (start 10.5 -12.9) (end 10.5 -12.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c11e766a-612f-4c44-ac03-20b48a197e34))
(fp_line (start 10.5 -10.4) (end 10.5 -10)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0fd34ffa-7305-4ee1-a18e-7bb871bed379))
(fp_line (start 10.5 -7.8) (end 10.5 -7.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d498be1-9342-4f85-8a35-87fbefef86e2))
(fp_line (start 10.5 -5.3) (end 10.5 -4.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0d753122-fdfa-4fd1-a098-2b25ea7bf31b))
(fp_line (start 10.5 -2.7) (end 10.5 -2.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a10fd65e-64a5-4287-ad11-3adbdecbbe56))
(fp_line (start 10.5 -0.2) (end 10.5 0.2)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 552d874d-50a7-42d1-bce3-47007b95412d))
(fp_line (start 10.5 2.3) (end 10.5 2.7)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6422924e-e072-42bd-adf2-c31b0536c8b3))
(fp_line (start 10.5 4.9) (end 10.5 5.3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2b7803cb-d59a-4a21-9672-326f62deea63))
(fp_line (start 10.5 7.4) (end 10.5 7.8)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d60217c1-f556-4f52-89b7-4ba23993052a))
(fp_line (start 10.5 10) (end 10.5 10.4)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35468180-5c9e-4fb9-a2ba-935f3af84ddc))
(fp_line (start 10.5 12.5) (end 10.5 12.9)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f8fdec14-f3fa-4a2b-95b6-17ab03e8621b))
(fp_line (start 10.5 15.1) (end 10.5 15.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d6ef715-69ee-4d00-83fa-96a737820dc3))
(fp_line (start 10.5 17.6) (end 10.5 18)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b776a63-5466-4e2a-a4dd-79aed7feca0f))
(fp_line (start 10.5 20.1) (end 10.5 20.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 220ae778-a1ad-43c9-a876-7f07d7812b06))
(fp_line (start 10.5 22.7) (end 10.5 23.1)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 24c36ade-19ed-4072-861a-6ce2ca3fc653))
(fp_line (start 10.5 25.5) (end 3.7 25.5)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27c50b45-5088-41fc-a1d7-00df5d41ee8e))
(fp_poly
(pts
(xy -1.5 -16.5)
(xy -3.5 -16.5)
(xy -3.5 -18.5)
(xy -1.5 -18.5)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 4e1a29d6-b14f-49fc-8dfa-a1fde5dbf2ce))
(fp_poly
(pts
(xy -1.5 -14)
(xy -3.5 -14)
(xy -3.5 -16)
(xy -1.5 -16)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp 2b5ff7f3-02ff-4c4f-8b49-d82c0bc37391))
(fp_poly
(pts
(xy -1.5 -11.5)
(xy -3.5 -11.5)
(xy -3.5 -13.5)
(xy -1.5 -13.5)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp f168f009-9c82-44fa-85cf-82d02d94bac4))
(fp_poly
(pts
(xy 3.7 -20.2)
(xy -3.7 -20.2)
(xy -3.7 -24.9)
(xy 3.7 -24.9)
)
(stroke (width 0.1) (type solid)) (fill solid) (layer "Dwgs.User") (tstamp d7279a43-87c7-4dc5-9196-a72629fed111))
(fp_line (start -11 -26) (end 11 -26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 35ab1f24-1836-4287-b7ae-477227bbc47a))
(fp_line (start -11 26) (end -11 -26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp cee6557c-1e74-4369-832b-54737e716924))
(fp_line (start 11 -26) (end 11 26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp 39d7ab44-3243-4fc5-b1c2-ba52862a3a16))
(fp_line (start 11 26) (end -11 26)
(stroke (width 0.12) (type solid)) (layer "F.CrtYd") (tstamp c15d419d-d6c5-4ec2-a92c-50ce0bb10ddb))
(fp_line (start -10.5 -25.5) (end 10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp fda0d7d3-a34b-489c-ae78-06768c3ff8ca))
(fp_line (start -10.5 -24.2) (end -9.2 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 697a1e1d-6cf6-4478-8d3b-1d774c1fd452))
(fp_line (start -10.5 25.5) (end -10.5 -25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 6c6b2236-281a-4d3f-99dc-b9b6e551a697))
(fp_line (start 10.5 -25.5) (end 10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 8141d94a-396e-48cc-aba3-6092a187516d))
(fp_line (start 10.5 25.5) (end -10.5 25.5)
(stroke (width 0.12) (type solid)) (layer "F.Fab") (tstamp 69b8918e-293c-4380-aaf8-f89ada8833b3))
(pad "" np_thru_hole circle (at -5.7 23.5) (size 1.5 1.5) (drill 2.2) (layers "F&B.Cu" "*.Mask") (tstamp 5b360839-b9ca-4f41-b468-3a0616ff10d0))
(pad "" np_thru_hole oval (at -2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 594133a4-e52e-4108-8ce1-25c089ffdedf))
(pad "" np_thru_hole oval (at -2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp 1f54971e-04ed-4867-9662-0115bdf6611c))
(pad "" np_thru_hole oval (at 2.425 -20.97) (size 1.5 1.5) (drill 1.5) (layers "*.Cu" "*.Mask") (tstamp 74720156-3775-4d61-a267-8b83e7502775))
(pad "" np_thru_hole oval (at 2.725 -24) (size 1.8 1.8) (drill 1.8) (layers "*.Cu" "*.Mask") (tstamp 19333814-f278-420f-af34-2f5f9b95d728))
(pad "" np_thru_hole oval (at 5.7 23.5) (size 1.5 1.5) (drill 2.2) (layers "F&B.Cu" "*.Mask") (tstamp 02033a59-a4e7-46ac-a5b3-d31dc2cb7131))
(pad "1" thru_hole oval (at -8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 12 "/Pi_Joystick_Right") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp adcf9c35-8767-4da2-be0e-ae031f1bda67))
(pad "1" smd rect (at -8.89 -24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 12 "/Pi_Joystick_Right") (pinfunction "GPIO0") (pintype "bidirectional") (tstamp 6ccd735b-b231-4cc7-b13e-5d2b88bc1596))
(pad "2" thru_hole oval (at -8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 13 "/Pi_Joystick_Left") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp 4e36c6f5-c839-4053-ae80-9ae96f2cd5c2))
(pad "2" smd rect (at -8.89 -21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 13 "/Pi_Joystick_Left") (pinfunction "GPIO1") (pintype "bidirectional") (tstamp abcc5932-d3ce-4eca-a632-db0def8fc6fb))
(pad "3" thru_hole rect (at -8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp aea9a2ee-2a6a-4420-a386-2d97ac0f8928))
(pad "3" smd rect (at -8.89 -19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8e989e4f-236d-4408-b3aa-9f241a6866c9))
(pad "4" thru_hole oval (at -8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 14 "/Pi_Joystick_Down") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp f9f9b9ec-920e-4edb-ae91-f678e4d2f135))
(pad "4" smd rect (at -8.89 -16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 14 "/Pi_Joystick_Down") (pinfunction "GPIO2") (pintype "bidirectional") (tstamp 593b354c-69cd-433b-8ccf-9c32a0c7f0c9))
(pad "5" thru_hole oval (at -8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 15 "/Pi_Joystick_Up") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 900b5a4d-0140-4cad-9272-980b7d243923))
(pad "5" smd rect (at -8.89 -13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 15 "/Pi_Joystick_Up") (pinfunction "GPIO3") (pintype "bidirectional") (tstamp 3f32f4ab-bc83-4dc2-b776-117240406587))
(pad "6" thru_hole oval (at -8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 16 "/Pi_Joystick_Fire1") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp a6bdbc6c-e225-4234-9c46-2c220d0f3807))
(pad "6" smd rect (at -8.89 -11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 16 "/Pi_Joystick_Fire1") (pinfunction "GPIO4") (pintype "bidirectional") (tstamp 35df8590-0afa-43c4-9178-15eb88fd64cb))
(pad "7" thru_hole oval (at -8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 24 "/Pi_Joystick_Fire3") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 799b855b-7ae4-49ed-85c5-c05889dd001e))
(pad "7" smd rect (at -8.89 -8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 24 "/Pi_Joystick_Fire3") (pinfunction "GPIO5") (pintype "bidirectional") (tstamp 4a275981-360d-44b5-a31c-c1e01b9ff83e))
(pad "8" thru_hole rect (at -8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c93390f3-516d-47bf-aa2c-4744743f3f4c))
(pad "8" smd rect (at -8.89 -6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp bb44c24a-d491-4e90-a750-42e68f5e86b9))
(pad "9" thru_hole oval (at -8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 25 "/Pi_Joystick_Fire2") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp 118f17ec-e7d0-41e8-a3ae-c016ab90b138))
(pad "9" smd rect (at -8.89 -3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 25 "/Pi_Joystick_Fire2") (pinfunction "GPIO6") (pintype "bidirectional") (tstamp 0b808037-d4b5-4351-8f1e-16f58b3fd58b))
(pad "10" thru_hole oval (at -8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 52 "/Pi_Mouse_Fire2") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp fab18e75-901d-4cf7-ae92-c88fdfb0da5d))
(pad "10" smd rect (at -8.89 -1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 52 "/Pi_Mouse_Fire2") (pinfunction "GPIO7") (pintype "bidirectional") (tstamp 2898247f-8aa6-414c-aaac-117118bd4cf1))
(pad "11" thru_hole oval (at -8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 53 "/Joystick_Pot_Sense") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp 2f825dc8-513d-4bb4-8ff8-e56bcc7e7ba9))
(pad "11" smd rect (at -8.89 1.27) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 53 "/Joystick_Pot_Sense") (pinfunction "GPIO8") (pintype "bidirectional") (tstamp af061e05-ccb8-4ef3-9302-f4cec187467f))
(pad "12" thru_hole oval (at -8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 50 "/Pi_Mouse_Fire1") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp cd30626b-3927-4337-8b2e-4c457f36b277))
(pad "12" smd rect (at -8.89 3.81) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 50 "/Pi_Mouse_Fire1") (pinfunction "GPIO9") (pintype "bidirectional") (tstamp 2aa6b629-793b-4a3f-9633-6ed5f9a7ca12))
(pad "13" thru_hole rect (at -8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 0570b12f-34e0-4c22-98a9-632fbfa95aaf))
(pad "13" smd rect (at -8.89 6.35) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 440a916e-8ccc-4ffc-9a55-a25bda35fa36))
(pad "14" thru_hole oval (at -8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 26 "/Pi_Mouse_Right") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp 98e49887-3027-46ca-b8a0-582cef3e52f9))
(pad "14" smd rect (at -8.89 8.89) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 26 "/Pi_Mouse_Right") (pinfunction "GPIO10") (pintype "bidirectional") (tstamp b046cab0-bcc3-42eb-a094-94e4826f800a))
(pad "15" thru_hole oval (at -8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 51 "/Pi_Mouse_Fire3") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp 3279bfa0-5b29-4b6a-b80e-cc7f38e6a1b8))
(pad "15" smd rect (at -8.89 11.43) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 51 "/Pi_Mouse_Fire3") (pinfunction "GPIO11") (pintype "bidirectional") (tstamp ab7eb439-ce7f-4633-8ac0-5ec201e96501))
(pad "16" thru_hole oval (at -8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 27 "/Pi_Mouse_Left") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp d689affd-7f76-48f9-9058-b8a5974938c6))
(pad "16" smd rect (at -8.89 13.97) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 27 "/Pi_Mouse_Left") (pinfunction "GPIO12") (pintype "bidirectional") (tstamp b62805e8-4a48-49ab-acd8-44030fe3c27d))
(pad "17" thru_hole oval (at -8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 54 "/Mouse_Pot_Sense") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp 4f30b934-36a4-4fb4-ae45-905174b9955a))
(pad "17" smd rect (at -8.89 16.51) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 54 "/Mouse_Pot_Sense") (pinfunction "GPIO13") (pintype "bidirectional") (tstamp c2b89673-cb7e-4e65-808c-7940621b773b))
(pad "18" thru_hole rect (at -8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c7656663-1726-43a5-9c48-c8b7f9e69c0a))
(pad "18" smd rect (at -8.89 19.05) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c7a1d271-76fe-4f8f-969a-e53b5e4c813c))
(pad "19" thru_hole oval (at -8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 28 "/Pi_Mouse_Down") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 60a68569-949b-40ac-84ec-f717ac7c52c0))
(pad "19" smd rect (at -8.89 21.59) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 28 "/Pi_Mouse_Down") (pinfunction "GPIO14") (pintype "bidirectional") (tstamp 9ce0f79b-e331-4aa8-aa11-edb5df224bda))
(pad "20" thru_hole oval (at -8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 29 "/Pi_Mouse_Up") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp d1da5f60-7a15-45e6-9d51-d6671538d0d9))
(pad "20" smd rect (at -8.89 24.13) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 29 "/Pi_Mouse_Up") (pinfunction "GPIO15") (pintype "bidirectional") (tstamp 765a5eff-9e38-42ae-8c50-b75505ee73df))
(pad "21" thru_hole oval (at 8.89 24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 30 "unconnected-(U1-GPIO16-Pad21)") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (tstamp ae575d19-0ca7-4776-b205-95f39a5ad152))
(pad "21" smd rect (at 8.89 24.13) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 30 "unconnected-(U1-GPIO16-Pad21)") (pinfunction "GPIO16") (pintype "bidirectional+no_connect") (tstamp 897bbcfa-9ea4-4116-8d96-14bb2d6b9310))
(pad "22" thru_hole oval (at 8.89 21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 31 "unconnected-(U1-GPIO17-Pad22)") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (tstamp 591a6350-da04-4ff4-8b83-42779a094240))
(pad "22" smd rect (at 8.89 21.59) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 31 "unconnected-(U1-GPIO17-Pad22)") (pinfunction "GPIO17") (pintype "bidirectional+no_connect") (tstamp 6eabf82b-7f02-47af-9d92-8b535a783f3e))
(pad "23" thru_hole rect (at 8.89 19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 09b81a77-ac1c-4bab-aeb3-3d7b3fa40acb))
(pad "23" smd rect (at 8.89 19.05) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9d6863ad-5f15-44b8-b397-17ecd8fd731b))
(pad "24" thru_hole oval (at 8.89 16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 32 "unconnected-(U1-GPIO18-Pad24)") (pinfunction "GPIO18") (pintype "bidirectional+no_connect") (tstamp 48993a9f-0bd5-46ee-be09-f9d63f8816a4))
(pad "24" smd rect (at 8.89 16.51) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 32 "unconnected-(U1-GPIO18-Pad24)") (pinfunction "GPIO18") (pintype "bidirectional+no_connect") (tstamp c981161f-8738-4f60-bd7f-a9c6f34663e6))
(pad "25" thru_hole oval (at 8.89 13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 33 "unconnected-(U1-GPIO19-Pad25)") (pinfunction "GPIO19") (pintype "bidirectional+no_connect") (tstamp baeb60cb-1f4b-48ef-95fa-3f4f8a1a0cfb))
(pad "25" smd rect (at 8.89 13.97) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 33 "unconnected-(U1-GPIO19-Pad25)") (pinfunction "GPIO19") (pintype "bidirectional+no_connect") (tstamp 9132c758-0c1e-4055-94dd-838a0e081a1d))
(pad "26" thru_hole oval (at 8.89 11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 34 "unconnected-(U1-GPIO20-Pad26)") (pinfunction "GPIO20") (pintype "bidirectional+no_connect") (tstamp 830144c2-a52c-44be-894b-b91770ebceb7))
(pad "26" smd rect (at 8.89 11.43) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 34 "unconnected-(U1-GPIO20-Pad26)") (pinfunction "GPIO20") (pintype "bidirectional+no_connect") (tstamp 276d1e26-780a-456a-9ac3-3702294abdd1))
(pad "27" thru_hole oval (at 8.89 8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 35 "unconnected-(U1-GPIO21-Pad27)") (pinfunction "GPIO21") (pintype "bidirectional+no_connect") (tstamp 718b645d-d5c5-4940-bc6e-b0d4e38807ed))
(pad "27" smd rect (at 8.89 8.89) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 35 "unconnected-(U1-GPIO21-Pad27)") (pinfunction "GPIO21") (pintype "bidirectional+no_connect") (tstamp 1dc65949-6542-44f4-88c3-54c0d932d8b9))
(pad "28" thru_hole rect (at 8.89 6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 36 "unconnected-(U1-GND-Pad28)") (pinfunction "GND") (pintype "power_in+no_connect") (tstamp b6f26036-dfb2-47be-9b97-297eefc83db9))
(pad "28" smd rect (at 8.89 6.35) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 36 "unconnected-(U1-GND-Pad28)") (pinfunction "GND") (pintype "power_in+no_connect") (tstamp 920359d7-56bf-4336-accd-2ac177bcc4ab))
(pad "29" thru_hole oval (at 8.89 3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 37 "unconnected-(U1-GPIO22-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (tstamp d324065d-c8fe-48f9-a410-26dc06fdd548))
(pad "29" smd rect (at 8.89 3.81) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 37 "unconnected-(U1-GPIO22-Pad29)") (pinfunction "GPIO22") (pintype "bidirectional+no_connect") (tstamp f350e34d-9e35-430a-a11a-65bffe160020))
(pad "30" thru_hole oval (at 8.89 1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 38 "unconnected-(U1-RUN-Pad30)") (pinfunction "RUN") (pintype "input+no_connect") (tstamp 717b2959-cbc1-455f-9003-9b56d63e3d5f))
(pad "30" smd rect (at 8.89 1.27) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 38 "unconnected-(U1-RUN-Pad30)") (pinfunction "RUN") (pintype "input+no_connect") (tstamp 556db51f-b0cf-4fe8-9a96-a608413fac66))
(pad "31" thru_hole oval (at 8.89 -1.27) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 39 "unconnected-(U1-GPIO26_ADC0-Pad31)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (tstamp ec973724-a793-4fc5-b47f-4ddb7e26df56))
(pad "31" smd rect (at 8.89 -1.27) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 39 "unconnected-(U1-GPIO26_ADC0-Pad31)") (pinfunction "GPIO26_ADC0") (pintype "bidirectional+no_connect") (tstamp c9f24a93-77ca-4b14-b5a4-e22059ef37b3))
(pad "32" thru_hole oval (at 8.89 -3.81) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 40 "unconnected-(U1-GPIO27_ADC1-Pad32)") (pinfunction "GPIO27_ADC1") (pintype "bidirectional+no_connect") (tstamp fc56f221-04b1-442d-9ac8-e268e1920be2))
(pad "32" smd rect (at 8.89 -3.81) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 40 "unconnected-(U1-GPIO27_ADC1-Pad32)") (pinfunction "GPIO27_ADC1") (pintype "bidirectional+no_connect") (tstamp 4757d74f-e697-4b54-b3d4-f77c8a0611bd))
(pad "33" thru_hole rect (at 8.89 -6.35) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 41 "unconnected-(U1-AGND-Pad33)") (pinfunction "AGND") (pintype "power_in+no_connect") (tstamp 38f8550d-8056-4e8e-8c15-055323b15f50))
(pad "33" smd rect (at 8.89 -6.35) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 41 "unconnected-(U1-AGND-Pad33)") (pinfunction "AGND") (pintype "power_in+no_connect") (tstamp 56101b4b-5168-4696-b53f-13b61eae471c))
(pad "34" thru_hole oval (at 8.89 -8.89) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 42 "unconnected-(U1-GPIO28_ADC2-Pad34)") (pinfunction "GPIO28_ADC2") (pintype "bidirectional+no_connect") (tstamp 90f6e2b5-fdd4-46d2-8b62-4cfaab9c3b83))
(pad "34" smd rect (at 8.89 -8.89) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 42 "unconnected-(U1-GPIO28_ADC2-Pad34)") (pinfunction "GPIO28_ADC2") (pintype "bidirectional+no_connect") (tstamp 488b4d82-cbbd-45d2-94b4-0a63ecb867d7))
(pad "35" thru_hole oval (at 8.89 -11.43) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 43 "unconnected-(U1-ADC_VREF-Pad35)") (pinfunction "ADC_VREF") (pintype "power_in+no_connect") (tstamp 5c00979c-136c-4c3b-a311-bfa8ae53f2bf))
(pad "35" smd rect (at 8.89 -11.43) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 43 "unconnected-(U1-ADC_VREF-Pad35)") (pinfunction "ADC_VREF") (pintype "power_in+no_connect") (tstamp a15511ef-3bc6-424d-9f8a-89a1bddc388e))
(pad "36" thru_hole oval (at 8.89 -13.97) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 44 "unconnected-(U1-3V3-Pad36)") (pinfunction "3V3") (pintype "power_in+no_connect") (tstamp ed30f16c-535a-4e4e-bed1-a6657790b9b5))
(pad "36" smd rect (at 8.89 -13.97) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 44 "unconnected-(U1-3V3-Pad36)") (pinfunction "3V3") (pintype "power_in+no_connect") (tstamp 22fc94a4-e58f-4e64-a8f6-9f2e49d5c2d9))
(pad "37" thru_hole oval (at 8.89 -16.51) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 45 "unconnected-(U1-3V3_EN-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (tstamp 272a9e17-dfcb-4fb7-b38e-106a1c759a9c))
(pad "37" smd rect (at 8.89 -16.51) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 45 "unconnected-(U1-3V3_EN-Pad37)") (pinfunction "3V3_EN") (pintype "input+no_connect") (tstamp 87974527-dcb8-4b57-87ec-d9f35339483f))
(pad "38" thru_hole rect (at 8.89 -19.05) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 46 "unconnected-(U1-GND-Pad38)") (pinfunction "GND") (pintype "bidirectional+no_connect") (tstamp 13699544-30b7-405b-9cf4-81e2a954a6d7))
(pad "38" smd rect (at 8.89 -19.05) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 46 "unconnected-(U1-GND-Pad38)") (pinfunction "GND") (pintype "bidirectional+no_connect") (tstamp 28d9b912-4738-4bde-b07a-9f0479142f77))
(pad "39" thru_hole oval (at 8.89 -21.59) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 47 "unconnected-(U1-VSYS-Pad39)") (pinfunction "VSYS") (pintype "power_in+no_connect") (tstamp a13cef08-2c25-4a4c-97fd-bb4eb3804aec))
(pad "39" smd rect (at 8.89 -21.59) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 47 "unconnected-(U1-VSYS-Pad39)") (pinfunction "VSYS") (pintype "power_in+no_connect") (tstamp 4f741252-9321-456c-a696-c62350f28c43))
(pad "40" thru_hole oval (at 8.89 -24.13) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp 377d5250-396a-4360-91d3-7111e66211d1))
(pad "40" smd rect (at 8.89 -24.13) (size 3.5 1.7) (drill (offset 0.9 0)) (layers "F.Cu" "F.Mask")
(net 1 "+5V") (pinfunction "VBUS") (pintype "power_in") (tstamp 32b7bea1-5ec2-4703-bcbd-39f82264ced0))
(pad "41" thru_hole oval (at -2.54 23.9) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 48 "unconnected-(U1-SWCLK-Pad41)") (pinfunction "SWCLK") (pintype "input+no_connect") (tstamp 96a94ba2-2d86-4908-9509-55f985b44426))
(pad "41" smd rect (at -2.54 23.9 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 48 "unconnected-(U1-SWCLK-Pad41)") (pinfunction "SWCLK") (pintype "input+no_connect") (tstamp 910778ad-33f6-45f9-9190-44c4d6ab2246))
(pad "42" thru_hole rect (at 0 23.9) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b9e502d8-a041-4b48-b913-10064250f646))
(pad "42" smd rect (at 0 23.9 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 2 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5f554dbd-3574-4ea6-b33d-dbf577aa1dfb))
(pad "43" thru_hole oval (at 2.54 23.9) (size 1.7 1.7) (drill 1.02) (layers "*.Cu" "*.Mask")
(net 49 "unconnected-(U1-SWDIO-Pad43)") (pinfunction "SWDIO") (pintype "bidirectional+no_connect") (tstamp fc14fc0b-38f9-4cb7-b967-dba65a16c0b4))
(pad "43" smd rect (at 2.54 23.9 90) (size 3.5 1.7) (drill (offset -0.9 0)) (layers "F.Cu" "F.Mask")
(net 49 "unconnected-(U1-SWDIO-Pad43)") (pinfunction "SWDIO") (pintype "bidirectional+no_connect") (tstamp 77730d1b-bf75-4f99-b1d9-6554506873f1))
(model "C:/Users/ncara/OneDrive/IoT/Tools/KiCad/RP-Pico Libraries/Pico.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
(model "/home/andre/GIT/KiCad-RP-Pico/RP-Pico Libraries/Pico.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_THT:L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1" (layer "F.Cu")
(tstamp 5096911c-46df-4c00-9dbf-6c6ef2671c75)
(at 160.81 94.25 180)
(descr "Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf")
(tags "Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1")
(property "Sheetfile" "yaumataca.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Inductor with ferrite core")
(property "ki_keywords" "inductor choke coil reactor magnetic")
(path "/38af1cbf-7814-4bf0-bd52-d35780d8d9db")
(attr through_hole)
(fp_text reference "L1" (at 3.81 -2.22) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 002498de-955c-4a03-bc15-5a95168e4054)
)
(fp_text value "100u" (at 9.56 0.75 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 21e05e4d-4e5c-4cad-95b2-e1bd2be1b0de)
)
(fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3db8087a-5c18-4d31-8106-c4e11811e0df)
)
(fp_line (start 1.04 -1.22) (end 1.04 1.22)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d20a99c5-94ce-4e20-9b8b-cabb2009b617))
(fp_line (start 1.04 1.22) (end 6.58 1.22)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2adaf341-3ae9-4f6c-aa1b-769286a08f64))
(fp_line (start 6.58 -1.22) (end 1.04 -1.22)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ad27caf5-144d-416e-b9ad-eebbda06d6ac))
(fp_line (start 6.58 1.22) (end 6.58 -1.22)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7b612fd-f85e-48fa-8c1b-52b5169694ad))
(fp_line (start -1.05 -1.35) (end -1.05 1.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d260bc5e-8c7b-47d3-80d3-137adf90088f))
(fp_line (start -1.05 1.35) (end 8.67 1.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 980c259e-f0d2-43f2-bb26-b61f718b46cc))
(fp_line (start 8.67 -1.35) (end -1.05 -1.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bef6f562-8537-469e-ba75-dfc11aef0f02))
(fp_line (start 8.67 1.35) (end 8.67 -1.35)
(stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1772178-e756-4224-81f8-42fea3cd2706))
(fp_line (start 0 0) (end 1.16 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bb63acb3-fea1-4e02-b8a5-ac9a446e7ad6))
(fp_line (start 1.16 -1.1) (end 1.16 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b0405bc3-298c-46ed-a956-f5383861d7a5))
(fp_line (start 1.16 1.1) (end 6.46 1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8155c2c9-84ad-4e1b-ac5a-416a8c1c4b0a))
(fp_line (start 6.46 -1.1) (end 1.16 -1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1ad07183-e105-4511-95f2-29957c696364))
(fp_line (start 6.46 1.1) (end 6.46 -1.1)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2e6c5cd5-20bf-4f61-875b-5ea9a107573d))
(fp_line (start 7.62 0) (end 6.46 0)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af8a5d92-b3e3-434a-99e0-0668cbd529f9))
(pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pinfunction "1") (pintype "passive") (tstamp 1f991031-b077-4fcd-86f3-aa0e0ca1c78a))
(pad "2" thru_hole oval (at 7.62 0 180) (size 1.6 1.6) (drill 0.8) (layers "*.Cu" "*.Mask")
(net 55 "/HOST_5V") (pinfunction "2") (pintype "passive") (tstamp dffae934-f802-4f31-a592-1bf26497df19))
(model "${KICAD6_3DMODEL_DIR}/Inductor_THT.3dshapes/L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_THT:CP_Radial_D10.0mm_P5.00mm" (layer "F.Cu")
(tstamp bec170f9-6df1-4a0d-aabc-6769321f4bef)
(at 160.25 87.5 180)
(descr "CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor")
(tags "CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor")
(property "Sheetfile" "yaumataca.kicad_sch")
(property "Sheetname" "")
(property "ki_description" "Polarized capacitor")
(property "ki_keywords" "cap capacitor")
(path "/40f5728a-471a-4ef4-b251-3f6a099e5d89")
(attr through_hole)
(fp_text reference "C1" (at 2.5 -6.25) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 78405870-d3f8-4838-a7c7-2a58f49fe23d)
)
(fp_text value "1000u" (at 2.5 6.25) (layer "F.Fab") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d40f8968-fdcc-4799-87fc-d5d9adcb4757)
)
(fp_text user "${REFERENCE}" (at 1.5 3.5 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 3a351749-21f2-4f47-ba4f-5799bebf2e92)
)
(fp_line (start -2.979646 -2.875) (end -1.979646 -2.875)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1b55bfd-e235-49fc-a566-bb651b00c996))
(fp_line (start -2.479646 -3.375) (end -2.479646 -2.375)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e90cffc4-3e34-4b10-bed7-617b99434c98))
(fp_line (start 2.5 -5.08) (end 2.5 5.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 95094313-c451-4c8a-9042-f4b0357ed4b5))
(fp_line (start 2.54 -5.08) (end 2.54 5.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28eeeeae-26eb-4ac6-bfab-69547e205c5f))
(fp_line (start 2.58 -5.08) (end 2.58 5.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b000d0c2-bb4c-4b5a-962a-c38e09861282))
(fp_line (start 2.62 -5.079) (end 2.62 5.079)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 78cc740e-138e-4b3d-9439-ea487098d13e))
(fp_line (start 2.66 -5.078) (end 2.66 5.078)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0ccfe14b-0a19-496f-912d-b840bba7c608))
(fp_line (start 2.7 -5.077) (end 2.7 5.077)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4277f6bd-cb7d-425b-bb53-897e433b0630))
(fp_line (start 2.74 -5.075) (end 2.74 5.075)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 92872ca4-8dde-4c2e-aa26-7100e1283643))
(fp_line (start 2.78 -5.073) (end 2.78 5.073)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97741b36-f344-4d89-a1f4-2d92739e3833))
(fp_line (start 2.82 -5.07) (end 2.82 5.07)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6474319d-e9ca-4bc7-b7a8-a82da5053dd7))
(fp_line (start 2.86 -5.068) (end 2.86 5.068)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 152b44ea-86b0-434c-96af-8005102a0f3d))
(fp_line (start 2.9 -5.065) (end 2.9 5.065)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c706bcf9-6d95-4ea7-b3c5-fb0bf31219a8))
(fp_line (start 2.94 -5.062) (end 2.94 5.062)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5b69350-43bd-41a5-82a7-b4319b255b8f))
(fp_line (start 2.98 -5.058) (end 2.98 5.058)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d61713ac-9042-4e84-83ba-1937ebc2ecf7))
(fp_line (start 3.02 -5.054) (end 3.02 5.054)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b2ed3a5c-e23f-4358-88db-62bc326cf485))
(fp_line (start 3.06 -5.05) (end 3.06 5.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0591581f-94f7-499c-a92b-3f7a1ae99589))
(fp_line (start 3.1 -5.045) (end 3.1 5.045)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9acac3b5-f1cf-4f73-8262-1cf76624a7dd))
(fp_line (start 3.14 -5.04) (end 3.14 5.04)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 52401a69-56aa-4d23-b855-92a8273d8e6e))
(fp_line (start 3.18 -5.035) (end 3.18 5.035)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a394310d-52c8-4f4e-9b13-1d61b2fb3aee))
(fp_line (start 3.221 -5.03) (end 3.221 5.03)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48a090ee-de1b-4ba3-ba0f-f6525ba5a2f8))
(fp_line (start 3.261 -5.024) (end 3.261 5.024)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e66188f1-41e5-4d4b-b542-47cb4f29e821))
(fp_line (start 3.301 -5.018) (end 3.301 5.018)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b9842a22-e27b-4e9e-8f81-d2ebfa1ea67b))
(fp_line (start 3.341 -5.011) (end 3.341 5.011)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94543465-24f9-4ed5-b82e-138192640fd3))
(fp_line (start 3.381 -5.004) (end 3.381 5.004)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f67450bb-342c-4ada-9019-4ce54f54af0e))
(fp_line (start 3.421 -4.997) (end 3.421 4.997)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2609e842-af87-4c64-a9e2-fcd6c35edb5e))
(fp_line (start 3.461 -4.99) (end 3.461 4.99)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 16d55514-10ba-492b-8fa3-caddd5ad0272))
(fp_line (start 3.501 -4.982) (end 3.501 4.982)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 115b1d5f-7f43-4a80-b5ab-b6eaad5df2a5))
(fp_line (start 3.541 -4.974) (end 3.541 4.974)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 625a6f8b-e2a7-4cb1-a4db-f4110d03fa3f))
(fp_line (start 3.581 -4.965) (end 3.581 4.965)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35121d92-acb9-4511-bf9c-9c7b10c7ba2d))
(fp_line (start 3.621 -4.956) (end 3.621 4.956)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 13847a03-1a80-4393-8c06-c09f4860c7f7))
(fp_line (start 3.661 -4.947) (end 3.661 4.947)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e0187f1a-7c81-4a8b-b5fa-21b1cdd6b1f3))
(fp_line (start 3.701 -4.938) (end 3.701 4.938)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d04535ca-229e-47fe-be9e-0c4b8aff2a81))
(fp_line (start 3.741 -4.928) (end 3.741 4.928)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3c9e8352-48dd-4982-adf7-a4a1d68a850f))
(fp_line (start 3.781 -4.918) (end 3.781 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5ed187b6-ace8-47a2-b670-95c906f263ed))
(fp_line (start 3.781 1.241) (end 3.781 4.918)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 079e176c-3bee-4582-9c8d-1b4e7bdfa7ca))
(fp_line (start 3.821 -4.907) (end 3.821 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 970779f1-e572-4421-85eb-31f578b3a90a))
(fp_line (start 3.821 1.241) (end 3.821 4.907)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5aec7ba0-91e7-4062-943b-2978b1a75d9a))
(fp_line (start 3.861 -4.897) (end 3.861 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 649e2417-0a81-4ba4-9a56-a795278ce280))
(fp_line (start 3.861 1.241) (end 3.861 4.897)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4b1e92dd-56e4-4134-9913-5cd95cf7230f))
(fp_line (start 3.901 -4.885) (end 3.901 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3db96df-8fc7-42a3-8a1f-4b641c8a9a0d))
(fp_line (start 3.901 1.241) (end 3.901 4.885)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a6f7c6c-6e03-440a-8120-ba09f24ab635))
(fp_line (start 3.941 -4.874) (end 3.941 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a2482db-518c-4678-ab0b-7714ab77cd4c))
(fp_line (start 3.941 1.241) (end 3.941 4.874)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa7a61d5-f649-4fb2-9128-5e4464ea82cb))
(fp_line (start 3.981 -4.862) (end 3.981 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d31ba3e3-6ac4-4e1f-9ef1-4231ebfbb089))
(fp_line (start 3.981 1.241) (end 3.981 4.862)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 333efd01-09b3-4aea-99a4-014229c55000))
(fp_line (start 4.021 -4.85) (end 4.021 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb1beec7-84dd-42b5-9fc2-680a3c6ab280))
(fp_line (start 4.021 1.241) (end 4.021 4.85)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c4c36b52-0005-4b51-9dbf-1f6b41e7c32f))
(fp_line (start 4.061 -4.837) (end 4.061 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7de919dd-b033-4e25-8739-b3e7f8f84116))
(fp_line (start 4.061 1.241) (end 4.061 4.837)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 27ff3d6f-d276-4c80-8226-0afa6aea1b33))
(fp_line (start 4.101 -4.824) (end 4.101 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 869630bd-670f-4961-b853-8aecaad1ac50))
(fp_line (start 4.101 1.241) (end 4.101 4.824)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09b56a98-51f9-47a2-844d-ce429f7d878e))
(fp_line (start 4.141 -4.811) (end 4.141 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa5c0b4b-e73a-4883-9c36-fb61f108e57a))
(fp_line (start 4.141 1.241) (end 4.141 4.811)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31b23287-fdd5-4b5c-b134-4b294b51b932))
(fp_line (start 4.181 -4.797) (end 4.181 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ea9baa82-da6c-439f-8740-d6e1e19b9d3e))
(fp_line (start 4.181 1.241) (end 4.181 4.797)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19fb62a1-44e1-4fb4-980f-2ff91627ab18))
(fp_line (start 4.221 -4.783) (end 4.221 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 81a84b1d-5b0c-442b-8204-b39801608800))
(fp_line (start 4.221 1.241) (end 4.221 4.783)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9947fae-68f1-4dd6-ba41-26b8e0728711))
(fp_line (start 4.261 -4.768) (end 4.261 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2217c234-36d6-47d9-b62e-650a2b17ab62))
(fp_line (start 4.261 1.241) (end 4.261 4.768)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8c0fbd4b-f369-46a9-9d28-843cb5c8231e))
(fp_line (start 4.301 -4.754) (end 4.301 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 44a089ce-040f-4976-a703-e5c570ad9ff6))
(fp_line (start 4.301 1.241) (end 4.301 4.754)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00eba00c-ce22-4ac6-b3e0-ed4889070056))
(fp_line (start 4.341 -4.738) (end 4.341 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 234d482f-31ff-447a-b12f-7dea65627f1a))
(fp_line (start 4.341 1.241) (end 4.341 4.738)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 076dd65e-f95b-4071-9dc4-449086051004))
(fp_line (start 4.381 -4.723) (end 4.381 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b844f995-38bb-4206-9472-a68c84ce278e))
(fp_line (start 4.381 1.241) (end 4.381 4.723)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e9feee80-c83b-4a4f-878e-335328d50a34))
(fp_line (start 4.421 -4.707) (end 4.421 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5883a975-46cb-4b72-b994-de22dd2fe511))
(fp_line (start 4.421 1.241) (end 4.421 4.707)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6eec04d4-6b34-47c0-a71d-7d94bd23b2da))
(fp_line (start 4.461 -4.69) (end 4.461 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1acd3582-c319-475d-8532-df4fe3017aaf))
(fp_line (start 4.461 1.241) (end 4.461 4.69)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab3f1b3e-0d37-48be-8c3d-b6bf58e26de8))
(fp_line (start 4.501 -4.674) (end 4.501 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 29519718-1c05-4b27-bea0-9e07932ca3bd))
(fp_line (start 4.501 1.241) (end 4.501 4.674)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a637c65-e028-41cc-adba-f7d2d8a60571))
(fp_line (start 4.541 -4.657) (end 4.541 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8bdbaad6-dc08-4d8e-be16-01dd104cc5dc))
(fp_line (start 4.541 1.241) (end 4.541 4.657)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5018e142-7308-4c41-983b-c2300167e879))
(fp_line (start 4.581 -4.639) (end 4.581 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22b1d569-50bd-4314-b619-c0e31dbde230))
(fp_line (start 4.581 1.241) (end 4.581 4.639)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3f5a8e3-97e3-4e2c-be31-e86d5efa010f))
(fp_line (start 4.621 -4.621) (end 4.621 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18129d41-8436-4521-b2ab-2d6f09c53738))
(fp_line (start 4.621 1.241) (end 4.621 4.621)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e45810a-35f0-47db-ab28-df61b2a768c1))
(fp_line (start 4.661 -4.603) (end 4.661 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ede64693-f4c3-4346-be8d-6419ac4e72bb))
(fp_line (start 4.661 1.241) (end 4.661 4.603)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a3b6fd7c-d806-4f3e-b906-194b5df755eb))
(fp_line (start 4.701 -4.584) (end 4.701 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1a71a0e3-cd0a-4b33-a95c-f62bfd7634d0))
(fp_line (start 4.701 1.241) (end 4.701 4.584)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0bee2be7-e278-452c-8b9c-faea1e612ebc))
(fp_line (start 4.741 -4.564) (end 4.741 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bb7b1d8b-cdb2-4740-a3e1-9258f21a4523))
(fp_line (start 4.741 1.241) (end 4.741 4.564)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4d3d1c6-4811-4965-a042-59bff9da22e5))
(fp_line (start 4.781 -4.545) (end 4.781 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 733a1c04-2ba2-4bcc-a0d9-92a021e2eb79))
(fp_line (start 4.781 1.241) (end 4.781 4.545)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c585d816-c53a-4508-9531-56d9f83e2cf9))
(fp_line (start 4.821 -4.525) (end 4.821 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fff3e21e-be93-4d71-8c1f-4c523f082604))
(fp_line (start 4.821 1.241) (end 4.821 4.525)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15adb191-fb7b-462e-b95b-ab134870036d))
(fp_line (start 4.861 -4.504) (end 4.861 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d8d351b-8def-4ea3-8cdc-fb234ca948fe))
(fp_line (start 4.861 1.241) (end 4.861 4.504)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a44e1c9-0cfc-4667-aede-72d051869202))
(fp_line (start 4.901 -4.483) (end 4.901 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 12120f44-c8f8-46f0-ad6d-c26a5397506c))
(fp_line (start 4.901 1.241) (end 4.901 4.483)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebb1df82-a297-41ae-bffa-9638881282a7))
(fp_line (start 4.941 -4.462) (end 4.941 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 777e96ac-f3a1-432b-b8e6-094a34521906))
(fp_line (start 4.941 1.241) (end 4.941 4.462)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 05f2e258-2d5e-48bd-884b-60025de01349))
(fp_line (start 4.981 -4.44) (end 4.981 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15864b7e-4762-42a7-95a7-4bf596ad73d5))
(fp_line (start 4.981 1.241) (end 4.981 4.44)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e07d6d8e-3431-4969-a4be-bf93d7b07331))
(fp_line (start 5.021 -4.417) (end 5.021 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 092e8863-3d41-4584-9808-992d5e9153e1))
(fp_line (start 5.021 1.241) (end 5.021 4.417)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5efd0587-cfb0-40be-984a-6182107f481f))
(fp_line (start 5.061 -4.395) (end 5.061 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cab6e0f-0305-48c7-906a-18e638b3105f))
(fp_line (start 5.061 1.241) (end 5.061 4.395)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 04cf78af-487e-4c77-9cec-32b1c85a83be))
(fp_line (start 5.101 -4.371) (end 5.101 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 492e297e-5464-4610-861d-18991e69d647))
(fp_line (start 5.101 1.241) (end 5.101 4.371)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41a4704b-3499-49e9-b446-47b9ee936788))
(fp_line (start 5.141 -4.347) (end 5.141 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2c5a0de-35b8-48ea-95ce-74efbb6f8fc0))
(fp_line (start 5.141 1.241) (end 5.141 4.347)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a39e4afb-cde0-4ffc-b9b5-84d53c26e2da))
(fp_line (start 5.181 -4.323) (end 5.181 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9e2e2e10-dd10-45ed-b6da-44cd3b725c00))
(fp_line (start 5.181 1.241) (end 5.181 4.323)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cc550ecd-f07f-45ad-9b1f-4a5768712492))
(fp_line (start 5.221 -4.298) (end 5.221 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74acbc5a-4581-424b-b6a1-7a12766d6fa4))
(fp_line (start 5.221 1.241) (end 5.221 4.298)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a71fc82f-50e4-40be-a7c7-82627264b30a))
(fp_line (start 5.261 -4.273) (end 5.261 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86499e76-f4f5-4c5b-ab42-665ef1bd8afb))
(fp_line (start 5.261 1.241) (end 5.261 4.273)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 88280d82-36d6-44d8-b9fe-e3bff3f9a4de))
(fp_line (start 5.301 -4.247) (end 5.301 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 80fe275a-30a4-48fd-8290-e81bd5e95301))
(fp_line (start 5.301 1.241) (end 5.301 4.247)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 98b7bc0d-592a-4738-810c-e2c63f659ebc))
(fp_line (start 5.341 -4.221) (end 5.341 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e64a7d63-e2eb-40ba-b641-0bd9ce11d64b))
(fp_line (start 5.341 1.241) (end 5.341 4.221)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 003a2401-6cd0-4506-ac63-84e42e84d940))
(fp_line (start 5.381 -4.194) (end 5.381 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 11cf7e98-435b-4ac9-a4ee-236b5dc8ac4d))
(fp_line (start 5.381 1.241) (end 5.381 4.194)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9f7745a9-0c00-421d-ab58-49f3d17590d8))
(fp_line (start 5.421 -4.166) (end 5.421 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 782f567d-b510-42a7-9542-663dc3760aa6))
(fp_line (start 5.421 1.241) (end 5.421 4.166)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6e13344f-4770-4bc3-acfb-74aee4304c8a))
(fp_line (start 5.461 -4.138) (end 5.461 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 841a460a-bf1a-4ef2-8b75-5c51204aa656))
(fp_line (start 5.461 1.241) (end 5.461 4.138)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dac7ec94-4410-469f-9592-efd392042563))
(fp_line (start 5.501 -4.11) (end 5.501 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a7240ea-2544-40ce-8bd1-372111335f7e))
(fp_line (start 5.501 1.241) (end 5.501 4.11)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3281c390-fad8-4e89-824f-8d8639fecba2))
(fp_line (start 5.541 -4.08) (end 5.541 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 447bd9f1-e5f7-486e-bace-ba75457103ec))
(fp_line (start 5.541 1.241) (end 5.541 4.08)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 70d799ba-1bdf-4915-840d-33679ef42abb))
(fp_line (start 5.581 -4.05) (end 5.581 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 225815ba-4ef3-4cf8-b3e5-cc396e37d319))
(fp_line (start 5.581 1.241) (end 5.581 4.05)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 619820c3-09ad-44ec-a091-4c01b45a0f18))
(fp_line (start 5.621 -4.02) (end 5.621 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ea0be96-9a15-401f-966c-271ed783f8b5))
(fp_line (start 5.621 1.241) (end 5.621 4.02)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df282239-ff71-4a1f-9a96-c36cd960803a))
(fp_line (start 5.661 -3.989) (end 5.661 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ecb5b283-0010-412d-b471-d8773de6dd60))
(fp_line (start 5.661 1.241) (end 5.661 3.989)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4606a1bf-c8ad-4171-8a3e-9de47932c817))
(fp_line (start 5.701 -3.957) (end 5.701 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00fd49c1-157f-49e0-b1e1-15d3294b6883))
(fp_line (start 5.701 1.241) (end 5.701 3.957)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp acf546b3-b71f-4f53-9a2b-4f072166a3ce))
(fp_line (start 5.741 -3.925) (end 5.741 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6ecb669-695f-4035-a402-3b1d1fff6ccb))
(fp_line (start 5.741 1.241) (end 5.741 3.925)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 143d073c-a628-4de5-b377-e10dcff09f0f))
(fp_line (start 5.781 -3.892) (end 5.781 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 972b8ceb-5b29-4e6b-8744-11ce6493d015))
(fp_line (start 5.781 1.241) (end 5.781 3.892)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e90ae51b-ac1c-4c46-808b-3854b5e0bde7))
(fp_line (start 5.821 -3.858) (end 5.821 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1aa4fad-8db7-4500-9bbd-0df2282301e6))
(fp_line (start 5.821 1.241) (end 5.821 3.858)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 384e5ec7-49ea-48b9-94cf-a8000f5cc30d))
(fp_line (start 5.861 -3.824) (end 5.861 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa7dfa34-ac5f-4d8a-833e-4ae2fadb448a))
(fp_line (start 5.861 1.241) (end 5.861 3.824)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6486389d-0240-499c-8669-9fc05b26df63))
(fp_line (start 5.901 -3.789) (end 5.901 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a4e420e-e7f4-40a5-a9e5-419c64def63f))
(fp_line (start 5.901 1.241) (end 5.901 3.789)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bcdf6a1c-6a53-490d-84bf-330b5728e1f4))
(fp_line (start 5.941 -3.753) (end 5.941 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 43f30f87-ccb7-4c41-a388-cd5473dbed1f))
(fp_line (start 5.941 1.241) (end 5.941 3.753)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e2c7a69a-e7d7-478a-823b-c913d09fb3ff))
(fp_line (start 5.981 -3.716) (end 5.981 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df11fdac-422d-4054-84f9-1c4fc039919b))
(fp_line (start 5.981 1.241) (end 5.981 3.716)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc1c0550-da23-45c6-986b-8c7bd5072691))
(fp_line (start 6.021 -3.679) (end 6.021 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 993b9f80-3f05-4bff-a574-9198f791eb73))
(fp_line (start 6.021 1.241) (end 6.021 3.679)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d113c0a-5e80-47d1-a7de-a684cfa55966))
(fp_line (start 6.061 -3.64) (end 6.061 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 263f6f7e-1b58-4434-a455-1882b11e214c))
(fp_line (start 6.061 1.241) (end 6.061 3.64)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a94af86d-5d58-4442-994c-0d80246fb767))
(fp_line (start 6.101 -3.601) (end 6.101 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a78f407-74b2-4907-a7a2-3ca35b447613))
(fp_line (start 6.101 1.241) (end 6.101 3.601)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 333f4e86-46cb-417d-9795-cb3ebc13c356))
(fp_line (start 6.141 -3.561) (end 6.141 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 48c48e98-f4d2-419f-93e4-d85b8832f272))
(fp_line (start 6.141 1.241) (end 6.141 3.561)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0719d8b5-f831-4abd-b92c-3eb070b6fa56))
(fp_line (start 6.181 -3.52) (end 6.181 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31fa9803-016a-4a0f-9768-b9cf16691eef))
(fp_line (start 6.181 1.241) (end 6.181 3.52)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1950a26c-7163-42bc-a688-6d03a8b92640))
(fp_line (start 6.221 -3.478) (end 6.221 -1.241)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cd1bae40-7588-4a7a-9acd-e6210184f2e8))
(fp_line (start 6.221 1.241) (end 6.221 3.478)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b7006f3a-99e8-42f6-b21c-8b1fa8c8ea3a))
(fp_line (start 6.261 -3.436) (end 6.261 3.436)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f6aba024-cc17-4822-8981-ac5145e53c84))
(fp_line (start 6.301 -3.392) (end 6.301 3.392)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a9148742-7889-4bd3-a908-646eb7e217c6))
(fp_line (start 6.341 -3.347) (end 6.341 3.347)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a0f9ff2e-9a2c-42ea-948f-108d08d68b73))
(fp_line (start 6.381 -3.301) (end 6.381 3.301)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c5fc084c-2657-4d3f-b6e6-dcef6e716189))
(fp_line (start 6.421 -3.254) (end 6.421 3.254)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4f7c4237-5800-41fb-a224-85fa68d59647))
(fp_line (start 6.461 -3.206) (end 6.461 3.206)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 796087cf-180c-4175-86c8-d93d4fc826b6))
(fp_line (start 6.501 -3.156) (end 6.501 3.156)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 067e7f5e-17c9-450a-9621-53a2e363611d))
(fp_line (start 6.541 -3.106) (end 6.541 3.106)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f01c0ffc-88c4-4ab1-85f6-bc793d135b4e))
(fp_line (start 6.581 -3.054) (end 6.581 3.054)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1166d6ed-9d93-46f0-a3a8-24a21d43682f))
(fp_line (start 6.621 -3) (end 6.621 3)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 943db0a2-ad67-43cd-9361-f2a9b23728ca))
(fp_line (start 6.661 -2.945) (end 6.661 2.945)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 267e2278-11ee-4a93-bab8-f2bb5d3103e2))
(fp_line (start 6.701 -2.889) (end 6.701 2.889)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dcc0c346-138a-4e3f-920b-c5333ea99a0f))
(fp_line (start 6.741 -2.83) (end 6.741 2.83)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4153c7e6-ffc4-4174-b946-64dc26c2d688))
(fp_line (start 6.781 -2.77) (end 6.781 2.77)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97e56926-ad03-4325-988e-1441cabc38f1))
(fp_line (start 6.821 -2.709) (end 6.821 2.709)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 77d518b8-92bb-4b9c-a1e2-f780797774ba))
(fp_line (start 6.861 -2.645) (end 6.861 2.645)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e982a92c-4e49-4583-b964-7c51cb7672b9))
(fp_line (start 6.901 -2.579) (end 6.901 2.579)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fa9e6371-6227-4c1f-8b8c-ceae1b30f38c))
(fp_line (start 6.941 -2.51) (end 6.941 2.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c27edd61-2475-47f6-8e1c-20923a28bc0a))
(fp_line (start 6.981 -2.439) (end 6.981 2.439)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 10cf39ae-82df-4adb-944e-53105e14dd54))
(fp_line (start 7.021 -2.365) (end 7.021 2.365)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e269715-739e-4d02-8e5e-9fecd5998c18))
(fp_line (start 7.061 -2.289) (end 7.061 2.289)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8a20a60-5d4d-4cb3-b46c-2f4bc38825ef))
(fp_line (start 7.101 -2.209) (end 7.101 2.209)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f1ab3332-cf82-42d2-9f93-74927239a8cf))
(fp_line (start 7.141 -2.125) (end 7.141 2.125)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f468a269-4ae6-4bea-93bc-11b436673455))
(fp_line (start 7.181 -2.037) (end 7.181 2.037)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 924583fe-4e29-456c-b403-ce8dcc88dfb9))
(fp_line (start 7.221 -1.944) (end 7.221 1.944)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1e27956f-3c60-49db-a0b4-011c8e77d0a9))
(fp_line (start 7.261 -1.846) (end 7.261 1.846)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 19336d50-b1b7-445e-9d63-e9404f6c9b9b))
(fp_line (start 7.301 -1.742) (end 7.301 1.742)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 41f72765-87bf-4ce4-bf15-19c239859373))
(fp_line (start 7.341 -1.63) (end 7.341 1.63)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7dec7dc9-1618-4e7c-a228-c4a9cd134c82))
(fp_line (start 7.381 -1.51) (end 7.381 1.51)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a6a2a8b1-0127-47f5-95f0-bf856f6d8c7e))
(fp_line (start 7.421 -1.378) (end 7.421 1.378)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6e25dc3-f51f-45f8-952c-2e108f02213d))
(fp_line (start 7.461 -1.23) (end 7.461 1.23)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d364c6b-198b-423a-abf8-f43b753888bc))
(fp_line (start 7.501 -1.062) (end 7.501 1.062)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp afbee6e6-e910-40f5-8fba-b23120558244))
(fp_line (start 7.541 -0.862) (end 7.541 0.862)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a1c4a6e0-86b0-42cd-8ad5-485558f89725))
(fp_line (start 7.581 -0.599) (end 7.581 0.599)
(stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3744f7bd-a36c-4c81-9391-9fa2b7deae89))
(fp_circle (center 2.5 0) (end 7.62 0)
(stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0d88ecd4-f691-40ed-b367-2335e9c88b26))
(fp_circle (center 2.5 0) (end 7.75 0)
(stroke (width 0.05) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 00083707-ceda-43ea-82dc-c84387143c21))
(fp_line (start -1.788861 -2.1875) (end -0.788861 -2.1875)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 12dfc905-cc8e-451b-bd14-e45ff6728409))
(fp_line (start -1.288861 -2.6875) (end -1.288861 -1.6875)
(stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 99c37d75-df89-43a0-a348-a8a143af73cc))
(fp_circle (center 2.5 0) (end 7.5 0)
(stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp a89d463d-05ef-44ca-a45f-a8cb047c7675))
(pad "1" thru_hole rect (at 0 0 180) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 1 "+5V") (pintype "passive") (tstamp cd32b73c-a40c-46db-8488-5882ef651baa))
(pad "2" thru_hole circle (at 5 0 180) (size 2 2) (drill 1) (layers "*.Cu" "*.Mask")
(net 2 "GND") (pintype "passive") (tstamp 574426bd-8a77-49c0-aacf-78c2517fab58))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D10.0mm_P5.00mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_IDC:IDC-Header_2x05_P2.54mm_Vertical" (layer "F.Cu")
(tstamp eada6b76-31a8-4128-ac2e-8a08e093c66c)
(at 157.5 76.33 180)
(descr "Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0")
(tags "Through hole vertical IDC box header THT 2x05 2.54mm double row")