-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththunberg.kicad_pcb
3765 lines (3750 loc) · 145 KB
/
thunberg.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 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(title "airco")
(date "04-10-2022")
(rev "0")
(company "lumiguide")
)
(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
(stackup
(layer "F.SilkS" (type "Top Silk Screen"))
(layer "F.Paste" (type "Top Solder Paste"))
(layer "F.Mask" (type "Top Solder Mask") (thickness 0.01))
(layer "F.Cu" (type "copper") (thickness 0.035))
(layer "dielectric 1" (type "core") (thickness 1.51) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02))
(layer "B.Cu" (type "copper") (thickness 0.035))
(layer "B.Mask" (type "Bottom Solder Mask") (thickness 0.01))
(layer "B.Paste" (type "Bottom Solder Paste"))
(layer "B.SilkS" (type "Bottom Silk Screen"))
(copper_finish "None")
(dielectric_constraints no)
)
(pad_to_mask_clearance 0)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes true)
(usegerberadvancedattributes true)
(creategerberjobfile true)
(svguseinch false)
(svgprecision 6)
(excludeedgelayer true)
(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 0)
(scaleselection 1)
(outputdirectory "./gerberfiles")
)
)
(net 0 "")
(net 1 "Net-(D1-Pad1)")
(net 2 "Net-(D1-Pad2)")
(net 3 "GND")
(net 4 "5V")
(net 5 "IO18")
(net 6 "unconnected-(U1-Pad1)")
(net 7 "unconnected-(U1-Pad7)")
(net 8 "unconnected-(U1-Pad6)")
(net 9 "unconnected-(U1-Pad5)")
(net 10 "unconnected-(U1-Pad4)")
(net 11 "Net-(J2-Pad1)")
(net 12 "unconnected-(U1-Pad2)")
(net 13 "unconnected-(U1-Pad13)")
(net 14 "unconnected-(U1-Pad12)")
(net 15 "Net-(J2-Pad2)")
(net 16 "Net-(J2-Pad3)")
(net 17 "Net-(J2-Pad4)")
(net 18 "Net-(J2-Pad5)")
(net 19 "Net-(J2-Pad6)")
(net 20 "Net-(Q1-Pad1)")
(net 21 "unconnected-(J1-PadA5)")
(net 22 "unconnected-(J1-PadB5)")
(net 23 "unconnected-(J1-PadB8)")
(net 24 "unconnected-(J1-PadA8)")
(net 25 "unconnected-(J1-PadB7)")
(net 26 "unconnected-(J1-PadB6)")
(net 27 "unconnected-(J1-PadA6)")
(net 28 "unconnected-(J1-PadA7)")
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 309372a1-b4db-45df-b1f3-346fc8740bbb)
(at 49.276 44.704)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Link" "https://www.digikey.nl/nl/products/detail/vishay-dale/CRCW060333R2FKEAHP/2222239")
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/e2a5f0b2-2265-458a-87f2-09ea4534fd90")
(attr smd)
(fp_text reference "R2" (at 0.8636 -1.524) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9a4c2a2d-3be6-43ba-8554-8f9aaaeed25f)
)
(fp_text value "33.2 ohm" (at 0 1.43) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5ec261ba-1128-4538-883c-e662e9a67ae3)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp 7c7dea0c-d522-4a57-9721-f2609b1b065f)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 20c41460-5780-48f6-ab38-892d4c37e28a))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp bfd15c36-7d63-4ebe-ab49-d76fe93b66bc))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 1bed4a90-59dc-4584-a9ad-0ca3b7d7a832))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 345a03d6-d824-4a3a-b649-03dea471fc7c))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 432f7523-55e3-43aa-a753-f6ca8f4ad4ad))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp 98d62aa3-079e-4271-b58c-5d5278710211))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp a9de06f3-edbc-4ec9-8294-db0fc47e185a))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp cd532b7f-5c25-45ac-8e86-fecde5b1f378))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp db0f9a10-0571-437b-86d3-10dc58f80c56))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp fa27706a-d71b-4f07-8c89-012bbc71cdc9))
(pad "1" smd roundrect (at -0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Net-(D1-Pad2)") (pintype "passive") (tstamp 283fb1f4-235e-47a8-85bb-748b27241d76))
(pad "2" smd roundrect (at 0.825 0) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "5V") (pintype "passive") (tstamp b9afc5ac-62af-4d6c-b1e7-36a03fca7e7d))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_0603_1608Metric" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 5ef21ed9-59a3-4fa0-ba39-692c6dea6d29)
(at 49.276 36.893 90)
(descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator")
(tags "resistor")
(property "Link" "https://www.digikey.nl/nl/products/detail/yageo/RC0603FR-07100RL/726888")
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/4127d83d-50e3-43e8-8469-5f9d7dd4a2a2")
(attr smd)
(fp_text reference "R1" (at 2.032 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 848063f0-c867-4fd2-bf7f-7d3b31979b39)
)
(fp_text value "100 ohm" (at 0 1.43 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0c8f658c-0c10-40c7-b413-20f900cfb655)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.4 0.4) (thickness 0.06)))
(tstamp ca2e80b6-fc88-45b0-bb25-0e552caea265)
)
(fp_line (start -0.237258 0.5225) (end 0.237258 0.5225) (layer "F.SilkS") (width 0.12) (tstamp 8fa991df-d833-4f65-a910-28c34b221e0b))
(fp_line (start -0.237258 -0.5225) (end 0.237258 -0.5225) (layer "F.SilkS") (width 0.12) (tstamp f2045911-d752-4510-9d9c-0f6ab119d879))
(fp_line (start 1.48 -0.73) (end 1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp 39d2c3e9-6a4e-4ff5-96ad-6312ea7e9ee4))
(fp_line (start -1.48 -0.73) (end 1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp bb3cb55e-79eb-41d9-ab2c-c3edfc18e710))
(fp_line (start 1.48 0.73) (end -1.48 0.73) (layer "F.CrtYd") (width 0.05) (tstamp e6c8ff4b-d96d-4fa0-b746-4fcef15f3296))
(fp_line (start -1.48 0.73) (end -1.48 -0.73) (layer "F.CrtYd") (width 0.05) (tstamp fb6d7693-e00d-4d8d-a51d-0a912c65d2b9))
(fp_line (start 0.8 -0.4125) (end 0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp 107894df-027f-440e-9847-6d7e3e0d4231))
(fp_line (start -0.8 -0.4125) (end 0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 1ecba044-2ed3-4a0e-a6ba-7f8797fd0465))
(fp_line (start -0.8 0.4125) (end -0.8 -0.4125) (layer "F.Fab") (width 0.1) (tstamp 3cbb5504-6c54-425c-8ce9-94bf52433b65))
(fp_line (start 0.8 0.4125) (end -0.8 0.4125) (layer "F.Fab") (width 0.1) (tstamp f574a683-5db1-4b41-8766-19781caf36f5))
(pad "1" smd roundrect (at -0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 20 "Net-(Q1-Pad1)") (pintype "passive") (tstamp dc85e976-0699-48e9-b10b-6d69b2d3ed15))
(pad "2" smd roundrect (at 0.825 0 90) (size 0.8 0.95) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "IO18") (pintype "passive") (tstamp 76b28099-fe9d-455c-a018-64d0bf407dca))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "LED_THT:LED_D5.0mm_IRGrey" (layer "F.Cu")
(tedit 5A6C9BB8) (tstamp c45b9668-cfbf-4b7b-a46d-b523a7e29a4f)
(at 40.894 41.402 -90)
(descr "LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf")
(tags "LED diameter 5.0mm 2 pins")
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/578ffcb9-e831-4708-abaf-a34a78b2e147")
(attr through_hole)
(fp_text reference "D1" (at 0.6604 -2.1336 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2a770476-942e-480e-84d4-f1094b1008ea)
)
(fp_text value "LD271" (at 1.27 3.96 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 445f349f-38e4-40b0-a9d1-3d2d1e98a23d)
)
(fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.2)))
(tstamp cbc16c1f-62c0-4285-a759-edbc4e547fd2)
)
(fp_rect (start -1.56409 -2.783055) (end 4.076734 2.83909) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 72665814-199e-4cbb-aacb-e5f3ee76e945))
(fp_line (start -1.23 -1.469694) (end -1.23 1.469694) (layer "F.Fab") (width 0.1) (tstamp ec5aeb07-27dd-47f7-83ec-b3520052f74d))
(fp_circle (center 1.27 0) (end 3.77 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ca976d37-c332-489e-b3e8-43010750039c))
(pad "1" thru_hole rect (at 0 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 1 "Net-(D1-Pad1)") (pinfunction "K") (pintype "passive") (tstamp 41eb6b36-08b0-4a52-bbf0-fd10a360b6a7))
(pad "2" thru_hole circle (at 2.54 0 270) (size 1.8 1.8) (drill 0.9) (layers *.Cu *.Mask)
(net 2 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 7e7edaca-b839-4a79-82da-b0c90c8080c1))
(model "${KICAD6_3DMODEL_DIR}/LED_THT.3dshapes/LED_D5.0mm_IRGrey.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "USB4110-GF-A_REVB:GCT_USB4110-GF-A_REVB" (layer "F.Cu")
(tedit 6346695F) (tstamp d75dc073-5f3c-4816-ae09-786057f15381)
(at 44.226 32.266 180)
(property "Link" "https://www.digikey.nl/nl/products/detail/gct/USB4110-GF-A/10384547")
(property "MANUFACTURER" "GCT")
(property "MAXIMUM_PACKAGE_HEIGHT" "3.26 mm")
(property "PARTREV" "B")
(property "STANDARD" "Manufacturer Recommendations")
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/50eef907-cc59-4a21-9544-7d8852054758")
(attr through_hole)
(fp_text reference "J1" (at -5.5834 5.215 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 2b16f7f6-9162-414d-a647-68b92158e7ea)
)
(fp_text value "USB4110-GF-A_REVB" (at 8.735 7.265 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cd23f051-43f9-4ed5-9a2d-a78d6f79d08f)
)
(fp_line (start -4.47 4.79) (end -4.47 6.28) (layer "F.SilkS") (width 0.2) (tstamp 2c5cbeb2-d168-4912-8577-2b3028526159))
(fp_line (start 4.47 0.86) (end 4.47 2.07) (layer "F.SilkS") (width 0.2) (tstamp 49d9df92-e070-491d-9bde-8400481928ea))
(fp_line (start 4.47 6.28) (end 4.47 4.79) (layer "F.SilkS") (width 0.2) (tstamp 61f952b3-bd4a-48ac-8903-f8da90a69ba2))
(fp_line (start -4.47 6.28) (end 4.47 6.28) (layer "F.SilkS") (width 0.2) (tstamp 83790e9a-1c34-42b0-8f25-ae6271051672))
(fp_line (start -4.47 0.86) (end -4.47 2.07) (layer "F.SilkS") (width 0.2) (tstamp 98381e22-a058-4e15-ae68-6dab1e94b8f7))
(fp_line (start 6.45 -1.9) (end 6.45 6.53) (layer "F.CrtYd") (width 0.05) (tstamp 179ecc6d-3ea2-4e8c-a67d-886fed79dee4))
(fp_line (start -6.45 -1.9) (end 6.45 -1.9) (layer "F.CrtYd") (width 0.05) (tstamp 6a14af76-3a48-4f72-9fd3-3f9002591442))
(fp_line (start -6.45 6.53) (end -6.45 -1.9) (layer "F.CrtYd") (width 0.05) (tstamp 839e9d56-cb11-4456-9f70-8650ffa85ceb))
(fp_line (start 6.45 6.53) (end -6.45 6.53) (layer "F.CrtYd") (width 0.05) (tstamp 8c88ae46-9080-4c01-be1c-4a73fafd98e2))
(fp_line (start -4.47 -1.07) (end -4.47 6.28) (layer "F.Fab") (width 0.1) (tstamp 0300b51c-b686-434b-8b37-5f635d96c3ac))
(fp_line (start 4.47 -1.07) (end -4.47 -1.07) (layer "F.Fab") (width 0.1) (tstamp 0d20f367-04d4-45e6-8f22-757a9461dffd))
(fp_line (start -4.47 6.28) (end 4.47 6.28) (layer "F.Fab") (width 0.1) (tstamp 1a4cd065-0699-49ae-a9ff-b6f33d0ce563))
(fp_line (start 4.47 6.28) (end 4.47 -1.07) (layer "F.Fab") (width 0.1) (tstamp 9486bc03-61dd-46c9-b922-9f183d5984f5))
(pad "" np_thru_hole circle (at 2.89 0 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp 2485905c-314e-4645-9e73-d8aa40c898c4))
(pad "" np_thru_hole circle (at -2.89 0 180) (size 0.65 0.65) (drill 0.65) (layers *.Cu *.Mask) (tstamp d17dbc81-0bf6-4651-a8a6-75978176273a))
(pad "A1/B12" smd rect (at -3.2 -1.075 180) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp eade965d-be4c-46b0-aa7c-a45db3d1d2d5))
(pad "A4/B9" smd rect (at -2.4 -1.075 180) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "5V") (pinfunction "VBUS") (pintype "power_in") (tstamp 1cc987f8-155d-47a6-9d3f-8dfe2702c7f4))
(pad "A5" smd rect (at -1.25 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 21 "unconnected-(J1-PadA5)") (pinfunction "CC1") (pintype "bidirectional") (tstamp a6bf6ad1-27b3-4ae5-8637-ec83835e0b10))
(pad "A6" smd rect (at -0.25 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 27 "unconnected-(J1-PadA6)") (pinfunction "DP1") (pintype "bidirectional") (tstamp 4f86ee21-f592-47c8-9063-29211c753aa2))
(pad "A7" smd rect (at 0.25 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 28 "unconnected-(J1-PadA7)") (pinfunction "DN1") (pintype "bidirectional") (tstamp e6697b35-4f30-47d4-b46a-177f658691c6))
(pad "A8" smd rect (at 1.25 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 24 "unconnected-(J1-PadA8)") (pinfunction "SBU1") (pintype "bidirectional") (tstamp 50375f1b-e97f-46fa-aa3e-fdf362bfdf84))
(pad "B1/A12" smd rect (at 3.2 -1.075 180) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp c7f7fcf2-2263-49f2-9ad6-3bf7e4fe6b4f))
(pad "B4/A9" smd rect (at 2.4 -1.075 180) (size 0.6 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 4 "5V") (pinfunction "VBUS") (pintype "power_in") (tstamp 1772448f-5648-4aee-84bc-42efe191124f))
(pad "B5" smd rect (at 1.75 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 22 "unconnected-(J1-PadB5)") (pinfunction "CC2") (pintype "bidirectional") (tstamp b997fb26-e698-40bf-9b74-0b95c57d55e1))
(pad "B6" smd rect (at 0.75 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 26 "unconnected-(J1-PadB6)") (pinfunction "DP2") (pintype "bidirectional") (tstamp 953f4837-a5e3-48df-9204-ccb2ef11336f))
(pad "B7" smd rect (at -0.75 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 25 "unconnected-(J1-PadB7)") (pinfunction "DN2") (pintype "bidirectional") (tstamp 0ee86148-fd07-45f0-9b81-9da7a2c05459))
(pad "B8" smd rect (at -1.75 -1.075 180) (size 0.3 1.15) (layers "F.Cu" "F.Paste" "F.Mask")
(net 23 "unconnected-(J1-PadB8)") (pinfunction "SBU2") (pintype "bidirectional") (tstamp 4d5fc264-7c34-48c2-a233-bc493fb2bad9))
(pad "S1" smd rect (at -5.11 -0.5 180) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp cb54bdb1-4c98-4002-9370-48d6ee36253e))
(pad "S2" smd rect (at 5.11 -0.5 180) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp fc9c62ed-dc3e-4ff4-a5a9-028a5254513e))
(pad "S3" smd rect (at -5.11 3.43 180) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 044fa4d2-a556-433a-9748-1b5fe00a8d12))
(pad "S4" smd rect (at 5.11 3.43 180) (size 2.18 2) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 07e7bcb3-cab4-4aba-b97c-cb4887b72aa7))
)
(footprint "Connector_PinHeader_1.00mm:PinHeader_2x03_P1.00mm_Vertical" (layer "F.Cu")
(tedit 59FED738) (tstamp eaafc4d4-98b7-4b8a-a772-a091494b69b6)
(at 42.994999 36.068)
(descr "Through hole straight pin header, 2x03, 1.00mm pitch, double rows")
(tags "Through hole pin header THT 2x03 1.00mm double row")
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/f39470d8-49ec-4116-be38-04923df0c951")
(attr through_hole)
(fp_text reference "J2" (at 0.515201 3.6576 180) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp cbbb65a5-1d4d-43f4-b95a-fe1de834b01f)
)
(fp_text value "Conn_02x03_Odd_Even_MountingPin" (at 0.5 3.56) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6cad61af-46a3-40b1-8eba-8b3d0bf3f0a1)
)
(fp_text user "${REFERENCE}" (at 0.5 1 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5f8ea4bc-01a1-433f-87c4-696c61f50452)
)
(fp_line (start 1.71 -0.56) (end 1.71 2.56) (layer "F.SilkS") (width 0.12) (tstamp 0f8181f8-be6c-4e2c-a96c-7a90e5273720))
(fp_line (start -0.71 -0.685) (end 0 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 30ac4d59-b3dd-40c8-a47c-d7e51259d51b))
(fp_line (start -0.71 0) (end -0.71 -0.685) (layer "F.SilkS") (width 0.12) (tstamp 33f14011-27d1-464c-b117-7ceeb8a80178))
(fp_line (start -0.71 0.685) (end -0.608276 0.685) (layer "F.SilkS") (width 0.12) (tstamp 4ba6d86a-4e7c-4834-a10d-e894a7d59d3f))
(fp_line (start -0.71 2.56) (end -0.394493 2.56) (layer "F.SilkS") (width 0.12) (tstamp 4f36136e-7a6c-43c5-8c60-913af7e44a6a))
(fp_line (start 1.394493 2.56) (end 1.71 2.56) (layer "F.SilkS") (width 0.12) (tstamp 547658cd-2c42-4d92-ae7c-4dfe5457c034))
(fp_line (start -0.71 0.685) (end -0.71 2.56) (layer "F.SilkS") (width 0.12) (tstamp 8d03d1f1-9190-4c6a-9bd5-dacae61cd4b1))
(fp_line (start 1.394493 -0.56) (end 1.71 -0.56) (layer "F.SilkS") (width 0.12) (tstamp 9f94f7aa-3003-4a72-a32e-b8d03a9317fd))
(fp_line (start 0.394493 2.56) (end 0.605507 2.56) (layer "F.SilkS") (width 0.12) (tstamp f18b4d67-aa1b-4f64-9326-b80e41784826))
(fp_line (start 2.15 -1) (end -1.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 02c7fb2b-46ff-4f27-92b9-62ecc724ef4b))
(fp_line (start -1.15 3) (end 2.15 3) (layer "F.CrtYd") (width 0.05) (tstamp 07e065e1-9040-4ff2-a292-bc4b5306a451))
(fp_line (start 2.15 3) (end 2.15 -1) (layer "F.CrtYd") (width 0.05) (tstamp 44a0cdf8-35c0-424a-9c8f-f527334c0067))
(fp_line (start -1.15 -1) (end -1.15 3) (layer "F.CrtYd") (width 0.05) (tstamp b466c14a-a8ba-45cd-9c42-089a02fa5718))
(fp_line (start -0.075 -0.5) (end 1.65 -0.5) (layer "F.Fab") (width 0.1) (tstamp 090c5798-20b9-42bd-bc0e-5a8975bd6646))
(fp_line (start 1.65 2.5) (end -0.65 2.5) (layer "F.Fab") (width 0.1) (tstamp 1ef80123-e0b5-42b1-906f-00668a06a4f4))
(fp_line (start 1.65 -0.5) (end 1.65 2.5) (layer "F.Fab") (width 0.1) (tstamp 556fa30c-0d30-4cf1-9e17-2102b44f4eab))
(fp_line (start -0.65 2.5) (end -0.65 0.075) (layer "F.Fab") (width 0.1) (tstamp 6ccac0c4-a798-494a-a89b-414ff912330c))
(fp_line (start -0.65 0.075) (end -0.075 -0.5) (layer "F.Fab") (width 0.1) (tstamp dbb82022-8ee3-46e8-812c-d3e1157f8634))
(pad "1" thru_hole rect (at 0 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 11 "Net-(J2-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp d79d8d41-8677-4069-980e-fb06c771a352))
(pad "2" thru_hole oval (at 1 0) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 15 "Net-(J2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 33a5f2c3-56ab-4857-bba7-a71622079146))
(pad "3" thru_hole oval (at 0 1) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 16 "Net-(J2-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp c4e3afcb-b21b-4552-89e5-2b64d7d2f812))
(pad "4" thru_hole oval (at 1 1) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 17 "Net-(J2-Pad4)") (pinfunction "Pin_4") (pintype "passive") (tstamp 4ad825a9-0ded-4e45-b0eb-5a8f5d463410))
(pad "5" thru_hole oval (at 0 2) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 18 "Net-(J2-Pad5)") (pinfunction "Pin_5") (pintype "passive") (tstamp 0630757d-49a7-4999-93a0-e4176873fae9))
(pad "6" thru_hole oval (at 1 2) (size 0.85 0.85) (drill 0.5) (layers *.Cu *.Mask)
(net 19 "Net-(J2-Pad6)") (pinfunction "Pin_6") (pintype "passive") (tstamp 28338298-6809-4215-88cc-1922a75c15df))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_1.00mm.3dshapes/PinHeader_2x03_P1.00mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-323_SC-70" (layer "F.Cu")
(tedit 5A02FF57) (tstamp fa8ff314-785d-45a6-8d29-99951a32fa51)
(at 48.768 41.148 -90)
(descr "SOT-323, SC-70")
(tags "SOT-323 SC-70")
(property "Link" "https://www.digikey.nl/nl/products/detail/infineon-technologies/BSS214NWH6327XTSA1/5959965https://www.digikey.nl/nl/products/detail/infineon-technologies/BSS214NWH6327XTSA1/5959965")
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/f83af9d3-fbeb-483c-80e9-3cb9030e90fe")
(attr smd)
(fp_text reference "Q1" (at -2.1336 -0.6096 180) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d80dbdcf-8e5c-4a23-aa34-b4622f43f564)
)
(fp_text value "BSS214NW" (at -0.05 2.05 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f067f0c5-36bb-40f4-8584-8c903a46b993)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 1dd44768-25be-4fcd-915c-a314a44fe38c)
)
(fp_line (start 0.73 0.5) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp 2e6faf96-3750-4de3-97ca-0eb7238dd6b0))
(fp_line (start 0.73 -1.16) (end 0.73 -0.5) (layer "F.SilkS") (width 0.12) (tstamp 438aa3b3-8b4b-4a61-b28b-2d38adbea072))
(fp_line (start -0.68 1.16) (end 0.73 1.16) (layer "F.SilkS") (width 0.12) (tstamp 9b371e51-9822-48c1-b36d-c2fadb8752e0))
(fp_line (start 0.73 -1.16) (end -1.3 -1.16) (layer "F.SilkS") (width 0.12) (tstamp e81e7d22-8009-4353-9b96-2e7b430470af))
(fp_line (start -1.7 -1.3) (end 1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 5e31c068-7707-48de-b5d3-cd28393221eb))
(fp_line (start -1.7 1.3) (end -1.7 -1.3) (layer "F.CrtYd") (width 0.05) (tstamp 67f478b0-9807-47fe-b661-3df6395db762))
(fp_line (start 1.7 -1.3) (end 1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp cd7cf0f0-154f-413a-935e-21ea31aa93ca))
(fp_line (start 1.7 1.3) (end -1.7 1.3) (layer "F.CrtYd") (width 0.05) (tstamp f93658c7-519c-443a-9441-ff0e31c4ebe5))
(fp_line (start 0.67 -1.1) (end 0.67 1.1) (layer "F.Fab") (width 0.1) (tstamp 0ef8323b-4455-4caa-8351-c1dcc732ffa7))
(fp_line (start -0.18 -1.1) (end -0.68 -0.6) (layer "F.Fab") (width 0.1) (tstamp 5b828012-14b8-49f3-858f-e2bdc2b92185))
(fp_line (start -0.68 -0.6) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp 72b7ca47-c9cf-4d0c-ac59-5e3bf16378d6))
(fp_line (start 0.67 -1.1) (end -0.18 -1.1) (layer "F.Fab") (width 0.1) (tstamp 83a9674a-d7cc-4db0-af02-fe5b4ba5850c))
(fp_line (start 0.67 1.1) (end -0.68 1.1) (layer "F.Fab") (width 0.1) (tstamp a453659f-3553-4d11-a25e-b78333929529))
(pad "1" smd rect (at -1 -0.65 180) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 20 "Net-(Q1-Pad1)") (pinfunction "G") (pintype "input") (tstamp 03483849-82e9-4b1f-bf90-88d113c1d4bf))
(pad "2" smd rect (at -1 0.65 180) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "GND") (pinfunction "S") (pintype "passive") (tstamp 99786749-4bab-45ab-a5ae-c3bd83accd02))
(pad "3" smd rect (at 1 0 180) (size 0.45 0.7) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "Net-(D1-Pad1)") (pinfunction "D") (pintype "passive") (tstamp 3f9a9ea0-0e74-4b19-b6dd-3f01df64d6a2))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-323_SC-70.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "fa603e63f9aa0e06760f68fa7b63b726-43bf3e6480359f64eb3430bd220fdd2fb23b2790:StampPico_template" (layer "B.Cu")
(tedit 613028A7) (tstamp e9e05fc2-df38-42bc-949e-099dd24ffab5)
(at 45.44482 41.87474 180)
(property "Sheetfile" "airco.kicad_sch")
(property "Sheetname" "")
(path "/ee411a40-8180-4efb-a413-89f94ccb1dbf")
(attr smd)
(fp_text reference "U1" (at -5.842 17.018) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 4cc7b89e-b02d-42e7-a21b-2e40b8e0066f)
)
(fp_text value "Stamp_Pico" (at 2.032 17.018) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 5ce40583-0f91-43ec-993a-b9f18b88ce7f)
)
(fp_text user "3" (at 5.44618 1.43474) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 0c1d29e3-12a9-4438-8fcf-8d2f72a40188)
)
(fp_text user "5V" (at -6.59982 -3.69226) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 101103dc-421b-483d-905b-b59d66eb6a23)
)
(fp_text user "5V" (at -1.098908 -3.850703 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 10f1bce5-dfa5-46ad-bccc-73c57a6b2aea)
)
(fp_text user "22" (at -6.59982 1.38774) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 135666b7-4c65-40db-8368-ae44633dcab5)
)
(fp_text user "G" (at 5.334 -6.19226) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 13e58737-4b59-4cd4-915e-8bdf80353af6)
)
(fp_text user "19" (at -6.59982 6.46774) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 1ba857a8-90c7-46dd-8c4a-f5b5befbe8ac)
)
(fp_text user "32" (at 1.401092 -3.850703 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 3716080a-8a07-4007-9d8c-77b5496cdb09)
)
(fp_text user "EN" (at 4.34618 -1.06526) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 3a09ce2e-a296-4f5b-985f-d44494481602)
)
(fp_text user "33" (at 3.901092 -3.850703 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp 67e2764e-2d09-41b6-8ea8-72a5e1fe89c6)
)
(fp_text user "G" (at -6.59982 -6.29226) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 7079bf0d-d54e-4d0e-8d6d-73b771194b4a)
)
(fp_text user "36" (at -6.59982 11.54774) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp 7f01a208-5287-4a63-bc81-adce5ac6d2de)
)
(fp_text user "1" (at 5.461 3.937) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp b93515ca-f1d4-4b9d-a284-d7b1b5ffb62d)
)
(fp_text user "25" (at -6.59982 -1.15226) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp ba651bb1-41c7-4f5c-81da-a572ac56f66f)
)
(fp_text user "0" (at 5.44618 -3.66526) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp c6dc36f1-ba53-47ce-ac18-6947ea728a3b)
)
(fp_text user "21" (at -6.59982 3.92774) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp d0c8549c-2587-42d1-a55b-3b486583fdcb)
)
(fp_text user "26" (at -6.59982 14.08774) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp d168aa25-9848-44b2-a2b3-88a6292cc5ee)
)
(fp_text user "G" (at -3.598908 -3.850703 90) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify right mirror))
(tstamp e5914ba4-6913-446e-90d5-36deb7799c02)
)
(fp_text user "18" (at -6.59982 9.00774) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp eaa676fd-77a5-4b8c-8a1e-ac30fa86becb)
)
(fp_text user "3V3" (at 3.302 6.477) (layer "B.SilkS")
(effects (font (size 1 1) (thickness 0.15)) (justify left mirror))
(tstamp fbf7849f-3f26-4695-b887-5095d68c6f10)
)
(fp_line (start -4.0005 -4.0005) (end 4.1275 -4.0005) (layer "Edge.Cuts") (width 0.15) (tstamp 7b9728ce-e148-48cf-b621-f1461636e379))
(fp_line (start 4.1275 -5.3975) (end -4.0005 -5.3975) (layer "Edge.Cuts") (width 0.15) (tstamp b42c8119-225a-4323-8e80-5944acb9115c))
(fp_arc (start 4.1275 -5.3975) (mid 4.826 -4.699) (end 4.1275 -4.0005) (layer "Edge.Cuts") (width 0.15) (tstamp dcda6abf-7918-4e65-a629-06f1eebcd7c4))
(fp_arc (start -4.0005 -4.0005) (mid -4.699 -4.699) (end -4.0005 -5.3975) (layer "Edge.Cuts") (width 0.15) (tstamp e643241f-f6d4-41c7-8296-f922db0fadc7))
(fp_line (start 9.00018 -7.00026) (end 9.00018 14.99974) (layer "B.Fab") (width 0.2) (tstamp 12001514-6bd4-4d9d-bf01-d539c53a89aa))
(fp_line (start 8.00018 -8.00026) (end 9.00018 -7.00026) (layer "B.Fab") (width 0.2) (tstamp 17ea3eba-1680-4f7c-a5b6-2b8592f8c70d))
(fp_line (start -8.99982 14.99974) (end -7.99982 15.99974) (layer "B.Fab") (width 0.2) (tstamp 34991c12-d5dd-46f6-b8a2-e33c7d31b858))
(fp_line (start -8.99982 -7.00026) (end -8.99982 14.99974) (layer "B.Fab") (width 0.2) (tstamp 558d7fd5-b9c7-4ee8-87e2-6ef0139f704b))
(fp_line (start -7.99982 15.99974) (end 8.00018 15.99974) (layer "B.Fab") (width 0.2) (tstamp 614f423e-9f3a-4136-9388-72915bb1230b))
(fp_line (start 8.00018 15.99974) (end 9.00018 14.99974) (layer "B.Fab") (width 0.2) (tstamp a9fe533d-d7bb-4805-9da1-77735a36e281))
(fp_line (start -7.99982 -8.00026) (end 8.00018 -8.00026) (layer "B.Fab") (width 0.2) (tstamp d02d93fe-94e0-4045-9faa-fc3bbb0f4e1b))
(fp_line (start -8.99982 -7.00026) (end -7.99982 -8.00026) (layer "B.Fab") (width 0.2) (tstamp ea270d2b-864d-4169-b5dc-0e7f7eced88b))
(pad "0" thru_hole circle (at 0 0 180) (size 2.286 2.286) (drill 2) (layers *.Cu *.Mask) (tstamp bb1418e7-30b9-4dfe-8b5d-120914879f23))
(pad "1" thru_hole oval (at -7.61982 14.15974 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 6 "unconnected-(U1-Pad1)") (pinfunction "G26") (pintype "bidirectional") (tstamp 7b233dc3-f97e-4bee-a047-cc51987c789f))
(pad "2" thru_hole oval (at -7.61982 11.61974 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 12 "unconnected-(U1-Pad2)") (pinfunction "G36") (pintype "bidirectional") (tstamp 4c0ee3be-e80e-4ba2-bf09-5e1ac1d5cb4c))
(pad "3" thru_hole oval (at -7.61982 9.07974 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 5 "IO18") (pinfunction "G18") (pintype "bidirectional") (tstamp a0225c72-f8e8-47c4-bd34-abc575775438))
(pad "4" thru_hole oval (at -7.61982 6.53974 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 10 "unconnected-(U1-Pad4)") (pinfunction "G19") (pintype "bidirectional") (tstamp 64aac8b2-97b7-4d83-b367-48b238b5bccc))
(pad "5" thru_hole oval (at -7.61982 3.99974 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 9 "unconnected-(U1-Pad5)") (pinfunction "G21") (pintype "bidirectional") (tstamp 0ed67956-e9c2-4bc8-b3b3-02c2eb69e8a5))
(pad "6" thru_hole oval (at -7.61982 1.45974 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 8 "unconnected-(U1-Pad6)") (pinfunction "G22") (pintype "bidirectional") (tstamp c0384435-892b-409b-beae-a8a87d82ebcf))
(pad "7" thru_hole oval (at -7.61982 -1.08026 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 7 "unconnected-(U1-Pad7)") (pinfunction "G25") (pintype "bidirectional") (tstamp bd4cff2d-0611-41f4-a5bc-59276070e131))
(pad "8" thru_hole rect (at -7.61982 -3.62026 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 4 "5V") (pinfunction "5V") (pintype "power_in") (tstamp 87d4a7c1-3564-49dd-a221-cdb0b637b5c6))
(pad "9" thru_hole oval (at -7.61982 -6.16026 180) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp a61139dd-1dff-4dc3-b94c-db0581b5dc54))
(pad "10" thru_hole oval (at -3.81076 -6.16026 90) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 3 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 4a402057-be15-4843-b064-c8efb0910a31))
(pad "11" thru_hole oval (at -1.26822 -6.16026 90) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 4 "5V") (pinfunction "5V") (pintype "power_in") (tstamp 77be2195-ab41-4d37-98d4-3c18c07b6a2f))
(pad "12" thru_hole oval (at 1.27178 -6.16026 90) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 14 "unconnected-(U1-Pad12)") (pinfunction "G32") (pintype "bidirectional") (tstamp 142dc577-64b3-47bb-a421-e5492da3c6de))
(pad "13" thru_hole oval (at 3.81178 -6.16026 90) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 13 "unconnected-(U1-Pad13)") (pinfunction "G33") (pintype "bidirectional") (tstamp 7b7b76ff-6303-4f92-a22d-c1152e6768e2))
(pad "14" thru_hole oval (at 7.62018 -6.16026) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 15 "Net-(J2-Pad2)") (pinfunction "GND") (pintype "power_in") (tstamp 0ee2c6a7-3a5d-4301-ad7c-7ffbc0dd4241))
(pad "15" thru_hole oval (at 7.62018 -3.62026) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 17 "Net-(J2-Pad4)") (pinfunction "G0") (pintype "bidirectional") (tstamp d533d006-d6bf-4e28-99d3-566b12b175d6))
(pad "16" thru_hole oval (at 7.62018 -1.08026) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 19 "Net-(J2-Pad6)") (pinfunction "EN") (pintype "bidirectional") (tstamp c2b31448-5669-44d6-9738-a7250a7b7f77))
(pad "17" thru_hole oval (at 7.62018 1.45974) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 18 "Net-(J2-Pad5)") (pinfunction "G3") (pintype "bidirectional") (tstamp 8ddd2791-7978-4de9-8409-a51e982e790e))
(pad "18" thru_hole oval (at 7.62018 3.99974) (size 1.4 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 16 "Net-(J2-Pad3)") (pinfunction "G1") (pintype "bidirectional") (tstamp 12d2844c-c473-4493-bb3a-ad3449f8da23))
(pad "19" thru_hole rect (at 7.62018 6.53974) (size 1.3 1.3) (drill 0.85) (layers *.Cu *.Mask)
(net 11 "Net-(J2-Pad1)") (pinfunction "3V3") (pintype "power_in") (tstamp ee7764f1-8ca0-4597-9789-fd53c0b4bdc2))
(model "/YourPathToTheStepFile/M5StampPICO.step"
(offset (xyz 0 0.2032 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_rect (start 43.7642 45.4914) (end 47.7012 43.2308) (layer "F.SilkS") (width 0.15) (fill none) (tstamp 499ae1cd-990c-475f-a782-0e47a187d205))
(gr_line (start 53.467 25.7556) (end 54.5846 26.8732) (layer "Edge.Cuts") (width 0.15) (tstamp 0ba48511-1edd-4361-924f-11e9b25f3e6d))
(gr_line (start 54.5846 48.9204) (end 53.5178 49.9872) (layer "Edge.Cuts") (width 0.15) (tstamp 1fc680c0-b0dd-44b6-b076-aa703a64f3bc))
(gr_line (start 37.4142 25.7556) (end 53.467 25.7556) (layer "Edge.Cuts") (width 0.15) (tstamp 2ba62192-4f2a-4c30-90ee-f4d98161c993))
(gr_line (start 53.5178 49.9872) (end 37.465 49.9872) (layer "Edge.Cuts") (width 0.15) (tstamp 2edff384-8475-45a1-9a35-7e03dc14f487))
(gr_line (start 36.3474 26.797) (end 37.4142 25.7556) (layer "Edge.Cuts") (width 0.15) (tstamp 8e520596-45a5-4023-9b37-17a18ad5d82a))
(gr_line (start 54.5846 26.8732) (end 54.5846 48.9204) (layer "Edge.Cuts") (width 0.15) (tstamp a286dd5b-3244-4304-be63-0de5dda6ef02))
(gr_line (start 37.465 49.9872) (end 36.3474 48.8696) (layer "Edge.Cuts") (width 0.15) (tstamp b47e4a2e-5c7c-424c-a64f-1aec5fa44181))
(gr_line (start 36.3474 48.8696) (end 36.3474 26.797) (layer "Edge.Cuts") (width 0.15) (tstamp e8405a93-f365-4cb9-916c-a076b40aadb3))
(gr_text "2022\nLumiGuide\nJay\no.l.v.\nSensei Rowan" (at 44.2214 30.5562) (layer "B.SilkS") (tstamp f5a66503-a77a-46e3-8c55-caf861205b21)
(effects (font (size 1 1) (thickness 0.2)) (justify mirror))
)
(gr_text "3V3\nTx0\nRx0" (at 41.796737 37.086962) (layer "F.SilkS") (tstamp 1091f799-d11b-48ad-b646-313b65396c65)
(effects (font (size 1 1) (thickness 0.15)) (justify right))
)
(gr_text "GND\n0\nEN" (at 45.137411 37.226156) (layer "F.SilkS") (tstamp 2a3a3e95-7c28-43b3-b163-f96bcd931182)
(effects (font (size 1 1) (thickness 0.15)) (justify left))
)
(gr_text "v1.0" (at 45.72 44.45) (layer "F.SilkS") (tstamp ddfeaeb0-3ba1-4255-8f50-1a05e2a1aa09)
(effects (font (size 1 1) (thickness 0.2)))
)
(segment (start 43.11094 43.54274) (end 47.37326 43.54274) (width 0.75) (layer "F.Cu") (net 1) (tstamp 65d5be48-a9a5-4331-9d48-1cb9e2c58a27))
(segment (start 40.894 41.402) (end 40.9194 41.402) (width 0.75) (layer "F.Cu") (net 1) (tstamp 6cb1496d-4282-4b63-9394-41bc577270ee))
(segment (start 40.9194 41.402) (end 40.9448 41.3766) (width 0.75) (layer "F.Cu") (net 1) (tstamp 6ffe238a-83c6-40b8-8e2f-b2c5b57b0b36))
(segment (start 40.9448 41.3766) (end 43.11094 43.54274) (width 0.75) (layer "F.Cu") (net 1) (tstamp 714265ad-34c2-475e-abe4-bf1af2250620))
(segment (start 47.37326 43.54274) (end 48.768 42.148) (width 0.75) (layer "F.Cu") (net 1) (tstamp 7f8745b6-9cc4-42d0-b152-ccc28f5a7d45))
(segment (start 40.894 43.942) (end 41.656 44.704) (width 0.75) (layer "F.Cu") (net 2) (tstamp 10c7a3e1-ad07-4b03-9312-49be9c15066d))
(segment (start 41.656 44.704) (end 48.451 44.704) (width 0.75) (layer "F.Cu") (net 2) (tstamp e2b46ffe-f876-4ffc-b5a9-4ca7f2aa7612))
(segment (start 48.761 33.341) (end 49.336 32.766) (width 0.25) (layer "F.Cu") (net 3) (tstamp 18b64069-7d2d-44f0-8c90-ab16962411f8))
(segment (start 39.691 33.341) (end 39.116 32.766) (width 0.25) (layer "F.Cu") (net 3) (tstamp b5e4ee7b-5766-4a0f-a49f-3e4f54d3d062))
(segment (start 47.426 33.341) (end 48.761 33.341) (width 0.25) (layer "F.Cu") (net 3) (tstamp d781ff98-f079-4a8e-a6c0-1f54d9bd501d))
(segment (start 41.026 33.341) (end 39.691 33.341) (width 0.25) (layer "F.Cu") (net 3) (tstamp e5c85e60-1946-47ea-a556-afcab9526134))
(via (at 45.9486 39.878) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 6e5a9ec2-75d5-4077-a627-0771eabcd145))
(via (at 37.4396 30.7594) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 3) (tstamp 91cbdbd4-9c16-4064-a383-a3232d903ab7))
(segment (start 49.25558 48.035) (end 49.501 48.035) (width 0.75) (layer "B.Cu") (net 3) (tstamp 88aa2867-f15d-4401-9b5a-3fb679f3b01a))
(segment (start 49.501 48.035) (end 49.53 48.006) (width 0.75) (layer "B.Cu") (net 3) (tstamp a105f078-24a3-4d9b-b70d-8856630b5377))
(segment (start 53.06464 45.937641) (end 53.06464 45.495) (width 0.75) (layer "F.Cu") (net 4) (tstamp 138709eb-04ee-4ba1-a883-ed8f1e93781c))
(segment (start 49.742281 49.26) (end 53.06464 45.937641) (width 0.75) (layer "F.Cu") (net 4) (tstamp 16ed7f43-ab63-43a1-8ed3-e833dc4adca1))
(segment (start 52.27364 44.704) (end 53.06464 45.495) (width 0.75) (layer "F.Cu") (net 4) (tstamp 1cc72435-a076-415f-92f6-cf89a6d5fb16))
(segment (start 44.1198 34.798) (end 46.044 34.798) (width 0.5) (layer "F.Cu") (net 4) (tstamp 4cb3ba54-eeca-471d-aac9-6f5a66454d9e))
(segment (start 44.1198 34.798) (end 42.408 34.798) (width 0.5) (layer "F.Cu") (net 4) (tstamp 4e8d768e-c3b7-4879-bf41-9e5783bffadd))
(segment (start 41.826 34.216) (end 41.826 33.341) (width 0.5) (layer "F.Cu") (net 4) (tstamp 56f7ac46-e748-4d62-8a84-484d1062b854))
(segment (start 46.71304 48.035) (end 47.93804 49.26) (width 0.75) (layer "F.Cu") (net 4) (tstamp 615f2fb7-2e27-43dc-8134-75f53df16ade))
(segment (start 46.626 34.216) (end 46.626 33.341) (width 0.5) (layer "F.Cu") (net 4) (tstamp 800ef04a-7eed-42ff-87ee-f10a0e7464db))
(segment (start 52.83964 45.72) (end 53.06464 45.495) (width 0.75) (layer "F.Cu") (net 4) (tstamp 878dc6ff-544c-47cf-9444-aaab64ec7139))
(segment (start 46.044 34.798) (end 46.626 34.216) (width 0.5) (layer "F.Cu") (net 4) (tstamp 89895e20-11e0-466f-977d-70a24caba209))
(segment (start 47.93804 49.26) (end 49.742281 49.26) (width 0.75) (layer "F.Cu") (net 4) (tstamp 9d4429a0-f341-4107-bf4b-bd1d9c7c0cbc))
(segment (start 42.408 34.798) (end 41.826 34.216) (width 0.5) (layer "F.Cu") (net 4) (tstamp b554a5cb-d7f1-4c1c-a0ae-674b481db72a))
(segment (start 50.101 44.704) (end 52.27364 44.704) (width 0.75) (layer "F.Cu") (net 4) (tstamp fe25408c-528d-48dc-9edd-fa631d849b45))
(via (at 44.1198 34.798) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 4) (tstamp 8b38714e-9c77-4059-b358-1c88254ff32c))
(segment (start 46.228 34.798) (end 47.498 36.068) (width 0.75) (layer "B.Cu") (net 4) (tstamp 04bbacfa-db6b-4887-ab93-60e4e0117036))
(segment (start 47.498 39.92836) (end 53.06464 45.495) (width 0.75) (layer "B.Cu") (net 4) (tstamp 8d833ca8-1ba0-4c38-a57f-28ca20b7b69e))
(segment (start 47.498 36.068) (end 47.498 39.92836) (width 0.75) (layer "B.Cu") (net 4) (tstamp a9587e0b-2155-4507-8b4d-9cd100ba80d5))
(segment (start 44.1198 34.798) (end 46.228 34.798) (width 0.75) (layer "B.Cu") (net 4) (tstamp b6717088-a62e-4062-8263-c2ceb878e151))
(segment (start 49.79164 36.068) (end 53.06464 32.795) (width 0.75) (layer "F.Cu") (net 5) (tstamp 0b658d15-fa10-4c4c-9d56-6e73a61b413e))
(segment (start 49.276 36.068) (end 49.79164 36.068) (width 0.75) (layer "F.Cu") (net 5) (tstamp f73eebc5-528a-4c4d-8eca-ced133cd1c26))
(segment (start 42.994999 36.068) (end 38.55764 36.068) (width 0.25) (layer "B.Cu") (net 11) (tstamp 00c344e4-3e06-454b-af3d-8dceccf65157))
(segment (start 38.55764 36.068) (end 37.82464 35.335) (width 0.25) (layer "B.Cu") (net 11) (tstamp 01ffde5a-1c5e-4b98-8dfb-57fd68bdd1f3))
(segment (start 37.82464 47.97656) (end 37.82464 48.035) (width 0.25) (layer "B.Cu") (net 15) (tstamp 04b63299-17df-40a2-8039-5c40bc8cf48d))
(segment (start 45.174335 38.899665) (end 42.069 42.005) (width 0.25) (layer "B.Cu") (net 15) (tstamp 059d2671-31ea-431f-8200-dcec0e5466c9))
(segment (start 40.6146 45.1866) (end 37.82464 47.97656) (width 0.25) (layer "B.Cu") (net 15) (tstamp 16514b9e-2ebb-43d2-aadb-1a57b2b77e1d))
(segment (start 42.069 44.799) (end 41.6814 45.1866) (width 0.25) (layer "B.Cu") (net 15) (tstamp 271e9cf9-841a-401e-b4b0-b411dd2cf0fb))
(segment (start 43.994999 36.068) (end 45.174335 37.247336) (width 0.25) (layer "B.Cu") (net 15) (tstamp 27b652af-5e3a-43b4-9cbd-9b6e8edc0c83))
(segment (start 45.174335 37.247336) (end 45.174335 38.899665) (width 0.25) (layer "B.Cu") (net 15) (tstamp 66e1df1e-b89e-450c-8fdb-e233a436d9ea))
(segment (start 42.069 42.005) (end 42.069 44.799) (width 0.25) (layer "B.Cu") (net 15) (tstamp 74d8858a-866f-4828-ba94-0958c2e522ea))
(segment (start 41.6814 45.1866) (end 40.6146 45.1866) (width 0.25) (layer "B.Cu") (net 15) (tstamp a055cbda-2550-42c8-8d69-31322e9d094c))
(segment (start 42.994999 37.068) (end 38.63164 37.068) (width 0.25) (layer "B.Cu") (net 16) (tstamp 31e9e6ab-3280-4221-81c1-dc5e2c883d81))
(segment (start 38.63164 37.068) (end 37.82464 37.875) (width 0.25) (layer "B.Cu") (net 16) (tstamp 6d65d4c7-ae1f-4844-8145-a5de958d8c91))
(segment (start 44.694999 38.534726) (end 43.828703 39.401022) (width 0.25) (layer "B.Cu") (net 17) (tstamp 17aa2587-2356-4e95-9d61-104796ec9a80))
(segment (start 39.323951 40.582026) (end 39.323951 43.995689) (width 0.25) (layer "B.Cu") (net 17) (tstamp 1c4ff405-28d3-4ed2-a634-18b0169084ac))
(segment (start 43.828703 39.401022) (end 40.504955 39.401022) (width 0.25) (layer "B.Cu") (net 17) (tstamp 28bbb5a8-61ed-42aa-a914-98f82d8677b2))
(segment (start 44.694999 37.768) (end 44.694999 38.534726) (width 0.25) (layer "B.Cu") (net 17) (tstamp 4a40febb-f35c-4bf9-b72a-ab58b7cf83b7))
(segment (start 39.323951 43.995689) (end 37.82464 45.495) (width 0.25) (layer "B.Cu") (net 17) (tstamp 87558411-17db-477c-99a8-5feb8ed65879))
(segment (start 43.994999 37.068) (end 44.694999 37.768) (width 0.25) (layer "B.Cu") (net 17) (tstamp b1b2e787-79e7-4111-9e16-b4a049a6b219))
(segment (start 40.504955 39.401022) (end 39.323951 40.582026) (width 0.25) (layer "B.Cu") (net 17) (tstamp e98b7367-bb5e-4b44-a2e4-1a8cb4a2d5d4))
(segment (start 42.994999 38.068) (end 40.17164 38.068) (width 0.25) (layer "B.Cu") (net 18) (tstamp 0a9743c1-04e9-4c48-ab9e-68ba4318c002))
(segment (start 40.17164 38.068) (end 37.82464 40.415) (width 0.25) (layer "B.Cu") (net 18) (tstamp e00c3470-2498-4523-8747-941359797f19))
(segment (start 43.994999 38.068) (end 43.974 38.068) (width 0.25) (layer "B.Cu") (net 19) (tstamp 1a36ee2b-eb3d-405f-93ec-b554e051d4e9))
(segment (start 43.942 38.1) (end 43.942 38.110949) (width 0.25) (layer "B.Cu") (net 19) (tstamp 95a08d8b-a23d-4db3-b3e9-0177c5cf41dc))
(segment (start 43.051927 39.001022) (end 39.992978 39.001022) (width 0.25) (layer "B.Cu") (net 19) (tstamp 9b0860c3-bd9b-4292-80e7-e0e055146cc1))
(segment (start 43.942 38.110949) (end 43.051927 39.001022) (width 0.25) (layer "B.Cu") (net 19) (tstamp ba248a32-c363-49fd-b632-193e33a4cab4))
(segment (start 43.974 38.068) (end 43.942 38.1) (width 0.25) (layer "B.Cu") (net 19) (tstamp c528e064-51d4-4f96-8105-7665aa9671dd))
(segment (start 38.79964 40.19436) (end 38.79964 41.98) (width 0.25) (layer "B.Cu") (net 19) (tstamp c67dbcde-9d78-4a09-bc2e-f01c6f931242))
(segment (start 38.79964 41.98) (end 37.82464 42.955) (width 0.25) (layer "B.Cu") (net 19) (tstamp f572375e-f35e-4ef3-aeb5-307ba5392da3))
(segment (start 39.992978 39.001022) (end 38.79964 40.19436) (width 0.25) (layer "B.Cu") (net 19) (tstamp fc86073e-236d-4ae7-93a4-0bf415bcdf96))
(segment (start 49.418 37.86) (end 49.276 37.718) (width 0.75) (layer "F.Cu") (net 20) (tstamp 51833b3b-167c-4263-9f3b-378e5c005759))
(segment (start 49.418 40.148) (end 49.418 37.86) (width 0.75) (layer "F.Cu") (net 20) (tstamp 81b68806-be2c-49b3-b58b-ab85a8d165ea))
(zone (net 3) (net_name "GND") (layers F&B.Cu) (tstamp a43105be-3583-48d5-8a3e-19fb9c220b3a) (name "GND") (hatch edge 0.508)
(connect_pads (clearance 0.508))
(min_thickness 0.254) (filled_areas_thickness no)
(fill yes (thermal_gap 0.508) (thermal_bridge_width 0.508))
(polygon
(pts
(xy 53.2638 26.162)
(xy 54.2036 27.0256)
(xy 54.2544 48.7172)
(xy 53.2892 49.5808)
(xy 37.6174 49.6062)
(xy 36.703 48.6918)
(xy 36.7538 26.9494)
(xy 37.592 26.1366)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 53.260761 47.801002)
(xy 53.307254 47.854658)
(xy 53.31864 47.907)
(xy 53.31864 49.161101)
(xy 53.322911 49.175646)
(xy 53.328059 49.176521)
(xy 53.391864 49.207655)
(xy 53.428708 49.268343)
(xy 53.426893 49.339317)
(xy 53.396039 49.389834)
(xy 53.344078 49.441795)
(xy 53.281766 49.475821)
(xy 53.254983 49.4787)
(xy 51.077229 49.4787)
(xy 51.009108 49.458698)
(xy 50.962615 49.405042)
(xy 50.952511 49.334768)
(xy 50.982005 49.270188)
(xy 50.988134 49.263605)
(xy 51.758919 48.49282)
(xy 51.821231 48.458794)
(xy 51.892046 48.463859)
(xy 51.948882 48.506406)
(xy 51.961739 48.527668)
(xy 51.967925 48.540637)
(xy 52.070831 48.713606)
(xy 52.077595 48.722915)
(xy 52.210305 48.874243)
(xy 52.21864 48.882153)
(xy 52.376709 49.006764)
(xy 52.38636 49.013032)
(xy 52.564476 49.106743)
(xy 52.575119 49.111152)
(xy 52.767324 49.170833)
(xy 52.778586 49.173227)
(xy 52.792652 49.174892)
(xy 52.807071 49.17245)
(xy 52.81064 49.159708)
(xy 52.81064 47.907)
(xy 52.830642 47.838879)
(xy 52.884298 47.792386)
(xy 52.93664 47.781)
(xy 53.19264 47.781)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 53.272304 26.284102)
(xy 53.293278 26.301005)
(xy 53.340859 26.348586)
(xy 53.374885 26.410898)
(xy 53.36982 26.481713)
(xy 53.327273 26.538549)
(xy 53.260753 26.56336)
(xy 53.236956 26.562808)
(xy 53.183658 26.5565)
(xy 52.960627 26.5565)
(xy 52.874995 26.564368)
(xy 52.80837 26.57049)
(xy 52.808367 26.570491)
(xy 52.802616 26.571019)
(xy 52.797057 26.572587)
(xy 52.797056 26.572587)
(xy 52.603251 26.627246)
(xy 52.603249 26.627247)
(xy 52.597692 26.628814)
(xy 52.592517 26.631366)
(xy 52.592512 26.631368)
(xy 52.411913 26.72043)
(xy 52.406732 26.722985)
(xy 52.236131 26.850378)
(xy 52.091603 27.006729)
(xy 51.977987 27.186799)
(xy 51.899089 27.384559)
(xy 51.897963 27.390219)
(xy 51.897962 27.390223)
(xy 51.859746 27.582351)
(xy 51.857551 27.593385)
(xy 51.854764 27.806284)
(xy 51.890821 28.016126)
(xy 51.964515 28.215884)
(xy 52.073379 28.398866)
(xy 52.213765 28.558946)
(xy 52.380973 28.690762)
(xy 52.386084 28.693451)
(xy 52.386087 28.693453)
(xy 52.489601 28.747915)
(xy 52.569402 28.7899)
(xy 52.574923 28.791614)
(xy 52.574927 28.791616)
(xy 52.745263 28.844506)
(xy 52.772742 28.853039)
(xy 52.790616 28.855155)
(xy 52.822345 28.85891)
(xy 52.887643 28.886781)
(xy 52.927507 28.945529)
(xy 52.92928 29.016504)
(xy 52.892401 29.07717)
(xy 52.828577 29.108268)
(xy 52.819089 29.109505)
(xy 52.802616 29.111019)
(xy 52.797057 29.112587)
(xy 52.797056 29.112587)
(xy 52.603251 29.167246)
(xy 52.603249 29.167247)
(xy 52.597692 29.168814)
(xy 52.592517 29.171366)
(xy 52.592512 29.171368)
(xy 52.569345 29.182793)
(xy 52.406732 29.262985)
(xy 52.236131 29.390378)
(xy 52.091603 29.546729)
(xy 51.977987 29.726799)
(xy 51.899089 29.924559)
(xy 51.897963 29.930219)
(xy 51.897962 29.930223)
(xy 51.858678 30.127718)
(xy 51.857551 30.133385)
(xy 51.854764 30.346284)
(xy 51.890821 30.556126)
(xy 51.964515 30.755884)
(xy 52.073379 30.938866)
(xy 52.213765 31.098946)
(xy 52.380973 31.230762)
(xy 52.386084 31.233451)
(xy 52.386087 31.233453)
(xy 52.441249 31.262475)
(xy 52.569402 31.3299)
(xy 52.574923 31.331614)
(xy 52.574927 31.331616)
(xy 52.745263 31.384506)
(xy 52.772742 31.393039)
(xy 52.790616 31.395155)
(xy 52.822345 31.39891)
(xy 52.887643 31.426781)
(xy 52.927507 31.485529)
(xy 52.92928 31.556504)
(xy 52.892401 31.61717)
(xy 52.828577 31.648268)
(xy 52.819089 31.649505)
(xy 52.802616 31.651019)
(xy 52.797057 31.652587)
(xy 52.797056 31.652587)
(xy 52.603251 31.707246)
(xy 52.603249 31.707247)
(xy 52.597692 31.708814)
(xy 52.592517 31.711366)
(xy 52.592512 31.711368)
(xy 52.429115 31.791947)
(xy 52.406732 31.802985)
(xy 52.236131 31.930378)
(xy 52.091603 32.086729)
(xy 51.977987 32.266799)
(xy 51.899089 32.464559)
(xy 51.897963 32.470219)
(xy 51.897962 32.470223)
(xy 51.858678 32.667718)
(xy 51.857551 32.673385)
(xy 51.857475 32.67916)
(xy 51.857475 32.679164)
(xy 51.85717 32.702462)
(xy 51.836277 32.770315)
(xy 51.820276 32.789906)
(xy 51.149095 33.461087)
(xy 51.086783 33.495113)
(xy 51.015968 33.490048)
(xy 50.959132 33.447501)
(xy 50.934321 33.380981)
(xy 50.934 33.371992)
(xy 50.934 33.038115)
(xy 50.929525 33.022876)
(xy 50.928135 33.021671)
(xy 50.920452 33.02)
(xy 49.608115 33.02)
(xy 49.592876 33.024475)
(xy 49.591671 33.025865)
(xy 49.59 33.033548)
(xy 49.59 34.255884)
(xy 49.594475 34.271123)
(xy 49.595865 34.272328)
(xy 49.603548 34.273999)
(xy 50.031993 34.273999)
(xy 50.100114 34.294001)
(xy 50.146607 34.347657)
(xy 50.156711 34.417931)
(xy 50.127217 34.482511)
(xy 50.121088 34.489094)
(xy 49.487587 35.122595)
(xy 49.425275 35.156621)
(xy 49.398492 35.1595)
(xy 48.970871 35.159501)
(xy 48.944366 35.159501)
(xy 48.941508 35.159764)
(xy 48.941499 35.159764)
(xy 48.905996 35.163026)
(xy 48.870938 35.166247)
(xy 48.86456 35.168246)
(xy 48.864559 35.168246)
(xy 48.71455 35.215256)
(xy 48.714548 35.215257)
(xy 48.707301 35.217528)
(xy 48.560619 35.306361)
(xy 48.439361 35.427619)
(xy 48.350528 35.574301)
(xy 48.299247 35.737938)
(xy 48.2925 35.811365)
(xy 48.2925 35.814263)
(xy 48.292501 36.068665)
(xy 48.292501 36.324634)
(xy 48.299247 36.398062)
(xy 48.301246 36.40444)
(xy 48.301246 36.404441)
(xy 48.335098 36.512461)
(xy 48.350528 36.561699)
(xy 48.439361 36.708381)
(xy 48.534885 36.803905)
(xy 48.568911 36.866217)
(xy 48.563846 36.937032)
(xy 48.534885 36.982095)
(xy 48.439361 37.077619)
(xy 48.350528 37.224301)
(xy 48.299247 37.387938)
(xy 48.2925 37.461365)
(xy 48.292501 37.974634)
(xy 48.292764 37.977492)
(xy 48.292764 37.977501)
(xy 48.29452 37.996615)
(xy 48.299247 38.048062)
(xy 48.301246 38.05444)
(xy 48.301246 38.054441)
(xy 48.307553 38.074565)
(xy 48.350528 38.211699)
(xy 48.439361 38.358381)
(xy 48.497595 38.416615)
(xy 48.531621 38.478927)
(xy 48.5345 38.50571)
(xy 48.5345 39.16515)
(xy 48.514498 39.233271)
(xy 48.460842 39.279764)
(xy 48.397917 39.289926)
(xy 48.397883 39.290553)
(xy 48.395002 39.290397)
(xy 48.394897 39.290414)
(xy 48.39448 39.290369)
(xy 48.387672 39.29)
(xy 48.361115 39.29)
(xy 48.345876 39.294475)
(xy 48.344671 39.295865)
(xy 48.343 39.303548)
(xy 48.343 40.987884)
(xy 48.347475 41.003123)
(xy 48.348865 41.004328)
(xy 48.356548 41.005999)
(xy 48.387669 41.005999)
(xy 48.39449 41.005629)
(xy 48.445352 41.000105)
(xy 48.460604 40.996479)
(xy 48.581054 40.951324)
(xy 48.596649 40.942786)
(xy 48.692018 40.871311)
(xy 48.758525 40.846463)
(xy 48.827907 40.861516)
(xy 48.843148 40.871311)
(xy 48.902622 40.915884)
(xy 48.946295 40.948615)
(xy 49.082684 40.999745)
(xy 49.144866 41.0065)
(xy 49.194279 41.0065)
(xy 49.220476 41.009253)
(xy 49.318683 41.030128)
(xy 49.318687 41.030128)
(xy 49.32514 41.0315)
(xy 49.51086 41.0315)
(xy 49.517313 41.030128)
(xy 49.517317 41.030128)
(xy 49.615524 41.009253)
(xy 49.641721 41.0065)
(xy 49.691134 41.0065)
(xy 49.753316 40.999745)
(xy 49.889705 40.948615)
(xy 50.006261 40.861261)
(xy 50.024019 40.837567)
(xy 50.088233 40.751887)
(xy 50.088235 40.751884)
(xy 50.093615 40.744705)
(xy 50.096858 40.736054)
(xy 50.102375 40.721338)
(xy 50.126719 40.681258)
(xy 50.136704 40.670169)
(xy 50.229564 40.509331)
(xy 50.267975 40.391115)
(xy 50.284914 40.338981)
(xy 50.284914 40.33898)
(xy 50.286954 40.332702)
(xy 50.287899 40.323716)
(xy 50.295845 40.248109)
(xy 50.3015 40.194306)
(xy 50.3015 37.93945)
(xy 50.303051 37.919739)
(xy 50.304117 37.913009)
(xy 50.305149 37.906493)
(xy 50.303057 37.866566)
(xy 50.301673 37.840169)
(xy 50.3015 37.833574)
(xy 50.3015 37.813694)
(xy 50.299421 37.793912)
(xy 50.298905 37.787348)
(xy 50.295775 37.727627)
(xy 50.295775 37.727625)
(xy 50.295429 37.721029)
(xy 50.291958 37.708074)
(xy 50.288358 37.688645)
(xy 50.287646 37.681874)
(xy 50.287644 37.681867)
(xy 50.286954 37.675298)
(xy 50.266429 37.612125)
(xy 50.264563 37.605829)
(xy 50.263798 37.602976)
(xy 50.259499 37.570343)
(xy 50.259499 37.461366)