-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtps63001-slim.kicad_pcb
2591 lines (2574 loc) · 111 KB
/
tps63001-slim.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")
(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 0x00010f0_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 "gerber/single/")
)
)
(net 0 "")
(net 1 "Net-(C1-Pad1)")
(net 2 "Earth")
(net 3 "Net-(L1-Pad1)")
(net 4 "Net-(J1-Pad1)")
(net 5 "Net-(L1-Pad2)")
(net 6 "Net-(C4-Pad1)")
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 32d56da3-1371-4fe4-8709-cd4644292179)
(at 112.776 109.22 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/141f5c0b-f32d-464b-ab4c-9c46dcfcc26b")
(attr smd)
(fp_text reference "C5" (at 2.54 0.508) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 201c63cd-498c-4f1d-adbf-2f208fe03681)
)
(fp_text value "10 uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 64610401-c9b1-4392-a921-fc187c86b7c7)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp 66ed97cb-5404-455c-a30e-7dbf74feb26f)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 6a88d8f7-503c-4d42-a740-86ed04f25fd8))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp e7dc0d6f-3e84-459f-b33f-adc84e5fd64b))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 4ce4e0e6-1cc3-40a6-86e2-a89277fa264e))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 663a9a06-952c-44e7-831d-5c1bee6a2137))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 785d1760-c175-4608-afba-229b4a2323d4))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b323f995-a934-475c-a887-be27dc7e5c7b))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 05be9fe9-9d64-406a-91d6-dbf6f6e8a11c))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp b60906fd-4cae-4214-8829-e0d3684a10ec))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ce20fbb0-a1ec-4b88-b71f-dccab12a9c60))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp fec8b6f1-ca4c-4f06-be24-9df34dbf10ce))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 6 "Net-(C4-Pad1)") (pintype "passive") (tstamp ffb1e2bb-ac1f-4153-bece-bc1276bc1247))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "Earth") (pintype "passive") (tstamp 6f2ef05c-736c-4eec-bd0d-c3258b2f0aba))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 504e5b23-6e56-4372-82a7-bab60b04115b)
(at 104.648 109.22 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/25e3f5ef-3780-4212-bed0-b51a0a7e3e73")
(attr smd)
(fp_text reference "C2" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5d111f68-255f-4391-8766-cf6ba65f05f0)
)
(fp_text value "10 uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 6d3a7c82-9cb2-4a58-9831-ae36875386f5)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp c3ab05ac-5859-477d-9fc5-b1539e4eff2f)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp 9850e63c-ca5a-40b9-94b8-bbef1a9a5384))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp e822d41c-74b4-4926-a93a-ba75e3269059))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 3147ea82-1be0-4e6d-9065-1cdf434b0a6e))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp 54e6eb68-8f6c-4af1-abc1-7dc445e45101))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 5b988a33-b117-4834-b739-f1ef9c8e5c68))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp de439cce-5c14-44df-bbee-624015785c87))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 68380e21-f9bd-4e08-a911-63123a71be5a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 746fde1d-79dc-48ec-bdda-202835f4c4fc))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp af0b4243-5a56-41b1-9164-867cf9db588a))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp ff10a026-6f2b-4fa8-95df-c17c1adb9d06))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp b67d814c-c7a5-47b0-90a2-7c6c828fbcf4))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "Earth") (pintype "passive") (tstamp 6d2c99ef-1c51-443b-bc4e-389220692142))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder" (layer "F.Cu")
(tedit 5EBA9318) (tstamp 52d86b1a-aa55-40f7-9753-2ceb851cd759)
(at 113.284 104.14 90)
(descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/559634e2-45ea-4aa6-abc3-23b1b0e03191")
(attr smd)
(fp_text reference "C6" (at -3.556 1.51) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d4676bc7-e361-4d19-b75f-142fb977c022)
)
(fp_text value "100 uF" (at 0 2.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8a05568d-dbea-404c-ab8e-a3f3920f2314)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.88 0.88) (thickness 0.13)))
(tstamp 52c5f1c6-bea9-40a4-b604-435523b3e988)
)
(fp_line (start 1.75 -1.51) (end -2.635 -1.51) (layer "F.SilkS") (width 0.12) (tstamp 00f5880c-95ad-4ce8-89ce-bf0ef74f49a5))
(fp_line (start -2.635 1.51) (end 1.75 1.51) (layer "F.SilkS") (width 0.12) (tstamp 0ce16c54-985d-4201-9e97-40d3d7872a76))
(fp_line (start -2.635 -1.51) (end -2.635 1.51) (layer "F.SilkS") (width 0.12) (tstamp 7b9c3dcd-6756-4a08-b1ed-efa4dc8331ea))
(fp_line (start 2.62 1.65) (end -2.62 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 533888c0-c0fa-46cf-88c1-752c1892512b))
(fp_line (start -2.62 -1.65) (end 2.62 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 63c4bb55-4851-4f39-b2e2-fd5b90080e85))
(fp_line (start -2.62 1.65) (end -2.62 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 9e85564f-591d-49f2-9c12-f7bc3f86c36b))
(fp_line (start 2.62 -1.65) (end 2.62 1.65) (layer "F.CrtYd") (width 0.05) (tstamp c57eaaf7-0de4-4f2f-888b-59187be58224))
(fp_line (start -1.75 -0.7) (end -1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 376c4f66-3910-479b-b6ba-57726fd207e7))
(fp_line (start -1.75 1.4) (end 1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 7c257450-c4a4-456f-9dd1-467a70a176b4))
(fp_line (start -1.05 -1.4) (end -1.75 -0.7) (layer "F.Fab") (width 0.1) (tstamp 976ae182-be11-4385-897c-eaa0ce3205cf))
(fp_line (start 1.75 -1.4) (end -1.05 -1.4) (layer "F.Fab") (width 0.1) (tstamp 99538980-d14a-4637-bc24-23e6eae04675))
(fp_line (start 1.75 1.4) (end 1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp bb437f36-7921-4adf-81af-511ef81cb483))
(pad "1" smd roundrect (at -1.625 0 90) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666673333)
(net 6 "Net-(C4-Pad1)") (pintype "passive") (tstamp 4799608b-5ff0-43b2-8079-a2a3599d89e4))
(pad "2" smd roundrect (at 1.625 0 90) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666673333)
(net 2 "Earth") (pintype "passive") (tstamp 810c2c91-f91d-46f5-9584-15264f89f616))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_SON:VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias" (layer "F.Cu")
(tedit 5DC5FB10) (tstamp 5e0425e9-0a0e-4b0b-bc7c-ce7243fa786f)
(at 107.85 109.22 -90)
(descr "VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py")
(tags "VSON NoLead")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/f58b8cae-fd62-4f63-b634-373226ce73ec")
(attr smd)
(fp_text reference "U1" (at -2.54 2.694) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc1154ec-3091-4dfb-b9a4-9159ac07cf4c)
)
(fp_text value "TPS63001" (at 0 2.45 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a3a12c8c-a833-404e-98a3-78b5795a2462)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.75 0.75) (thickness 0.11)))
(tstamp 37dd6e5a-0d70-495a-9e1f-40237223a57e)
)
(fp_line (start 0 -1.61) (end 1.5 -1.61) (layer "F.SilkS") (width 0.12) (tstamp 6d36ef5c-e4b8-4e2a-9386-16aaed000da9))
(fp_line (start -1.5 1.61) (end 1.5 1.61) (layer "F.SilkS") (width 0.12) (tstamp fdf75f0f-5328-492e-b7df-9de6de8a7a38))
(fp_line (start 2.12 -1.75) (end -2.12 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 29c513e7-d5ac-4b15-b29c-13821e578976))
(fp_line (start 2.12 1.75) (end 2.12 -1.75) (layer "F.CrtYd") (width 0.05) (tstamp 6474b184-5f20-43c3-a06b-56a6f7a45581))
(fp_line (start -2.12 -1.75) (end -2.12 1.75) (layer "F.CrtYd") (width 0.05) (tstamp ca4cd3e8-5dfe-47a5-b734-1cfb5ab4ada3))
(fp_line (start -2.12 1.75) (end 2.12 1.75) (layer "F.CrtYd") (width 0.05) (tstamp d5b1368a-c94f-465f-a8f5-ce8da02e4f4e))
(fp_line (start 1.5 -1.5) (end 1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp 9722efe8-21f1-4871-89b9-27a81aaffa06))
(fp_line (start -1.5 1.5) (end -1.5 -0.75) (layer "F.Fab") (width 0.1) (tstamp a430f19c-199c-4ca0-8c1e-6ca226bb15ad))
(fp_line (start -1.5 -0.75) (end -0.75 -1.5) (layer "F.Fab") (width 0.1) (tstamp dbf5ef3b-8a7b-4ec6-b4fd-e00e48e7d6f2))
(fp_line (start 1.5 1.5) (end -1.5 1.5) (layer "F.Fab") (width 0.1) (tstamp dc0b559f-8315-4d5c-99f7-91631007371a))
(fp_line (start -0.75 -1.5) (end 1.5 -1.5) (layer "F.Fab") (width 0.1) (tstamp fc8935a7-50fb-4112-895d-77f7a1ed01b1))
(pad "" smd roundrect (at -0.3 -0.5 270) (size 0.52 0.87) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 0be6d575-3a99-436a-95f3-097ba3bda69c))
(pad "" smd roundrect (at 0.3 -0.5 270) (size 0.52 0.87) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 75a5ce01-a4c0-493a-9c80-c8f08fd68a46))
(pad "" smd roundrect (at -0.3 0.5 270) (size 0.52 0.87) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp 8817145d-6753-4985-a593-4e37c9e34354))
(pad "" smd roundrect (at 0.3 0.5 270) (size 0.52 0.87) (layers "F.Paste") (roundrect_rratio 0.25) (tstamp a628ad69-202b-4387-9c97-6e5e6de0684d))
(pad "1" smd roundrect (at -1.4375 -1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C4-Pad1)") (pinfunction "VOUT") (pintype "input") (tstamp a1f41393-0c6a-40bd-b7ae-ecb2dcfff7fc))
(pad "2" smd roundrect (at -1.4375 -0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 5 "Net-(L1-Pad2)") (pinfunction "L2") (pintype "input") (tstamp 5509a4cc-70b1-4991-b41d-698b31b6cef7))
(pad "3" smd roundrect (at -1.4375 0 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Earth") (pinfunction "PGND") (pintype "input") (tstamp a2cf7e71-d51a-41d0-88b8-d6def7b9c8ff))
(pad "4" smd roundrect (at -1.4375 0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 3 "Net-(L1-Pad1)") (pinfunction "L1") (pintype "input") (tstamp 92e66494-bfa9-4d01-bddf-b4223e3237cf))
(pad "5" smd roundrect (at -1.4375 1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(C1-Pad1)") (pinfunction "VIN") (pintype "input") (tstamp de66c309-7bd6-4bc3-85bc-854e10c12663))
(pad "6" smd roundrect (at 1.4375 1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "Net-(J1-Pad1)") (pinfunction "EN") (pintype "input") (tstamp e42a6b72-f972-494d-88b7-d0ccc5448102))
(pad "7" smd roundrect (at 1.4375 0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(C1-Pad1)") (pinfunction "PS/SYNC") (pintype "input") (tstamp 046be7e4-7837-45e9-b208-6f15dbd6b8ca))
(pad "8" smd roundrect (at 1.4375 0 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "Net-(C1-Pad1)") (pinfunction "VINA") (pintype "input") (tstamp ed8c98a7-2704-46b9-a8b6-441726778604))
(pad "9" smd roundrect (at 1.4375 -0.5 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "Earth") (pinfunction "GND") (pintype "input") (tstamp ebd9b7b5-ef1d-4c09-a736-a866b1dd2e00))
(pad "10" smd roundrect (at 1.4375 -1 270) (size 0.875 0.25) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 6 "Net-(C4-Pad1)") (pinfunction "FB") (pintype "input") (tstamp 54f48e36-0cc9-4b65-9432-d5e546a4b0a1))
(pad "11" thru_hole circle (at 0 -0.7 270) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "Earth") (pinfunction "PGND") (pintype "input") (tstamp 445510f1-8e2f-4b08-93a7-473c2188d4ea))
(pad "11" thru_hole circle (at 0 0.7 270) (size 0.6 0.6) (drill 0.3) (layers *.Cu)
(net 2 "Earth") (pinfunction "PGND") (pintype "input") (tstamp 71afe6ae-4f20-44fc-88a8-add0329302ea))
(pad "11" smd rect (at 0 0 270) (size 1.2 2) (layers "F.Cu" "F.Mask")
(net 2 "Earth") (pinfunction "PGND") (pintype "input") (tstamp 89f38fcd-0c8e-480e-a733-575b555488de))
(pad "11" smd rect (at 0 0 270) (size 0.6 2) (layers "B.Cu")
(net 2 "Earth") (pinfunction "PGND") (pintype "input") (tstamp bd1676bd-9a96-4014-b767-fb648e2a897a))
(model "${KICAD6_3DMODEL_DIR}/Package_SON.3dshapes/VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 6135668a-6bb1-4ee3-8ce0-287f5c4046a7)
(at 110.744 109.22 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/649fb3f7-2279-48c4-ac71-03e71fde0e5d")
(attr smd)
(fp_text reference "C4" (at 2.54 0.508) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp f9933e6e-1441-48de-9768-b085034d77bb)
)
(fp_text value "10 uF" (at 0 1.68 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7e4e8d9f-2a9c-41a2-96be-36fd4f721e40)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp ba82d5ee-6743-40d4-9f55-33c6315a1246)
)
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp 0f85dbdf-f47c-4bea-8c4e-8096a50765db))
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp e123a00b-54cf-4413-99dd-ff0899529c4f))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 775b308a-9392-4f86-8175-77dba966676f))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp d23420f4-6951-4ff6-a1cb-f347b8b656bb))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp e2783be8-041f-4762-b331-179544a34b91))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp ff38859a-457d-4537-a08a-d93bc6b90fef))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 140446e5-5dc8-4fd4-bf38-d4e0d9320384))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp 99fecf13-c49d-46fb-8d83-c389f1426f0e))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp d5139019-464c-4fdf-926c-118b1370fba6))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp fb127643-59fa-48a4-8117-1fac21092303))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 6 "Net-(C4-Pad1)") (pintype "passive") (tstamp 082e4eb0-9117-4974-979f-859bd7832615))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "Earth") (pintype "passive") (tstamp 7622a9fb-ecde-4c47-9fb6-618c15ab03a5))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEF) (tstamp 9dda1c4a-0ef4-45c2-9f8d-18e70cb516ac)
(at 102.616 109.22 -90)
(descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
(tags "capacitor handsolder")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/cc844091-e765-480c-85ab-4885dbdff29b")
(attr smd)
(fp_text reference "C1" (at 2.54 0) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e99d58fa-741f-4464-a166-01a26b72c0b6)
)
(fp_text value "10 uF" (at 0 1.68 -270) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 10fd3a8e-1bc3-4597-9722-809a77a9e3ff)
)
(fp_text user "${REFERENCE}" (at 0 0 -270) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.08)))
(tstamp f5aced15-b14b-4e83-a6ec-c813c07dff6b)
)
(fp_line (start -0.261252 -0.735) (end 0.261252 -0.735) (layer "F.SilkS") (width 0.12) (tstamp ce132124-5094-4470-ae86-b2bac2095c3e))
(fp_line (start -0.261252 0.735) (end 0.261252 0.735) (layer "F.SilkS") (width 0.12) (tstamp e7875913-72a3-4ff8-8ac8-a87fe6b238ce))
(fp_line (start 1.88 0.98) (end -1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 1699f47f-d976-4175-b92c-c5c499d3fa24))
(fp_line (start 1.88 -0.98) (end 1.88 0.98) (layer "F.CrtYd") (width 0.05) (tstamp 8347a9ed-95c6-40e8-a29d-ba628abd2976))
(fp_line (start -1.88 -0.98) (end 1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp b3336a1a-8d5a-4785-b8ed-890a701b5185))
(fp_line (start -1.88 0.98) (end -1.88 -0.98) (layer "F.CrtYd") (width 0.05) (tstamp cff6bc35-f526-41d0-a6e3-34fce3f560a5))
(fp_line (start 1 0.625) (end -1 0.625) (layer "F.Fab") (width 0.1) (tstamp 3018ba6b-c5c7-47d8-a51b-5db77b8efa3c))
(fp_line (start -1 -0.625) (end 1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 6cbc504b-6417-4ccf-ad5e-5a1aeba55a18))
(fp_line (start -1 0.625) (end -1 -0.625) (layer "F.Fab") (width 0.1) (tstamp 83243e38-f95c-424b-93e8-b60f934acf0a))
(fp_line (start 1 -0.625) (end 1 0.625) (layer "F.Fab") (width 0.1) (tstamp a8a9a2aa-a091-43bb-b981-469081583de5))
(pad "1" smd roundrect (at -1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp c914844d-1047-4bd4-a7d6-dc6496bd7072))
(pad "2" smd roundrect (at 1.0375 0 270) (size 1.175 1.45) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.2127659574)
(net 2 "Earth") (pintype "passive") (tstamp 97ecc9a7-b448-4bca-82bf-16767683b165))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical" (layer "F.Cu")
(tedit 59FED5CC) (tstamp a961d89a-6981-4877-ad76-7fcc952c393b)
(at 103.987 113.8 90)
(descr "Through hole straight pin header, 1x04, 2.54mm pitch, single row")
(tags "Through hole pin header THT 1x04 2.54mm single row")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/a75c8dee-7d58-440d-9e5e-f046c8924404")
(attr through_hole)
(fp_text reference "J1" (at 0.008 -2.387) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 4d4d6cf1-a624-458b-a6c7-6c4b408a05e8)
)
(fp_text value "Conn_01x04_Male" (at 0 9.95 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5b94a73-d7d8-4676-9dd6-3cbf2cbbab09)
)
(fp_text user "${REFERENCE}" (at 0 3.81) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 55beadf2-a453-4d27-9b35-75b4cbf4ddb7)
)
(fp_line (start 1.33 1.27) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 4ba6dd12-9254-4f5f-bbce-b99573632ec5))
(fp_line (start -1.33 8.95) (end 1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 8c4b88b7-4017-47e5-9565-cb03d3fef71a))
(fp_line (start -1.33 1.27) (end -1.33 8.95) (layer "F.SilkS") (width 0.12) (tstamp 8f15cac6-4300-416e-90b4-e7768e4800ff))
(fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 94cd8a67-80a0-42a4-a025-1f9722f75505))
(fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ad820fc7-d51f-4e5c-8608-dd0cb7e5f8c3))
(fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp e3c88fde-a16d-45e2-a861-d2b5891515d0))
(fp_line (start -1.8 -1.8) (end -1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp 1c39ecc8-5c6f-4aa5-9b73-0f0f705a5ffc))
(fp_line (start 1.8 9.4) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c67972ea-49c1-408a-b160-8e5a2e0eec1d))
(fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp dd28c808-48bb-4782-96ee-2a4145420a0b))
(fp_line (start -1.8 9.4) (end 1.8 9.4) (layer "F.CrtYd") (width 0.05) (tstamp ed6e0b86-bd62-4f00-a57e-b8c0725955df))
(fp_line (start 1.27 -1.27) (end 1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 043f4fcb-133d-445f-b59e-573463b19d55))
(fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 0f3b9c7c-9339-4eac-927d-5a8f9d60ad51))
(fp_line (start 1.27 8.89) (end -1.27 8.89) (layer "F.Fab") (width 0.1) (tstamp 6984ea71-4b03-4496-9ce0-5944a13b529d))
(fp_line (start -1.27 8.89) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp ab1f501c-88ef-49e5-a072-39d4969e9558))
(fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp ac62c3bf-2e9b-45ed-bc46-d6b56bd0decf))
(pad "1" thru_hole circle (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 4 "Net-(J1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp c631c64b-5053-41f6-8483-abf118f5a3fd))
(pad "2" thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 6 "Net-(C4-Pad1)") (pinfunction "Pin_2") (pintype "passive") (tstamp 6de59c14-37ef-47c6-8244-ca8620d0db16))
(pad "3" thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 2 "Earth") (pinfunction "Pin_3") (pintype "passive") (tstamp cec5bc56-0d32-49e6-81fe-9fb53246ac81))
(pad "4" thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)
(net 1 "Net-(C1-Pad1)") (pinfunction "Pin_4") (pintype "passive") (tstamp 69d40456-2eba-4c94-8577-fa0e262a92da))
(model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x04_P2.54mm_Vertical.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Capacitor_Tantalum_SMD:CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder" (layer "F.Cu")
(tedit 5EBA9318) (tstamp b249e15c-6b25-47c2-a120-7264cb02a086)
(at 102.108 104.14 90)
(descr "Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
(tags "capacitor tantalum")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/2ea8657a-5a63-44f3-89ab-d63436cdd881")
(attr smd)
(fp_text reference "C3" (at -3.556 -1.108) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp a97fbb5e-8a79-4f46-80c3-70779c592a05)
)
(fp_text value "100 uF" (at 0 2.35 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 95d4739c-a7a6-40e4-b67f-adaa1b2c5383)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.88 0.88) (thickness 0.13)))
(tstamp a57ff5ac-9392-40c0-aa82-ed015ed3f075)
)
(fp_line (start -2.635 1.51) (end 1.75 1.51) (layer "F.SilkS") (width 0.12) (tstamp 05499815-32b0-4858-b1c3-eab566027c2a))
(fp_line (start -2.635 -1.51) (end -2.635 1.51) (layer "F.SilkS") (width 0.12) (tstamp baeb8ef4-09af-4d55-8daf-a70fd707d75f))
(fp_line (start 1.75 -1.51) (end -2.635 -1.51) (layer "F.SilkS") (width 0.12) (tstamp fcd933da-1ed2-42ec-b2be-ec0b98e01b7f))
(fp_line (start 2.62 1.65) (end -2.62 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 1a8bb987-6e3b-4e89-88ab-b40180e07e65))
(fp_line (start 2.62 -1.65) (end 2.62 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 5f9e5ddd-d7da-41c6-9c7a-7a3b39852061))
(fp_line (start -2.62 -1.65) (end 2.62 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp de001238-e816-4900-b112-c55aea33c3a4))
(fp_line (start -2.62 1.65) (end -2.62 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp e9821a82-4a76-4a41-96dc-706c08879b61))
(fp_line (start 1.75 -1.4) (end -1.05 -1.4) (layer "F.Fab") (width 0.1) (tstamp 133829ea-9b07-4196-ab33-d40d56133753))
(fp_line (start -1.75 -0.7) (end -1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp 56c07797-2dcf-4366-adc9-e120204447eb))
(fp_line (start 1.75 1.4) (end 1.75 -1.4) (layer "F.Fab") (width 0.1) (tstamp 86713c90-8abf-482d-886b-111c74222648))
(fp_line (start -1.75 1.4) (end 1.75 1.4) (layer "F.Fab") (width 0.1) (tstamp d23002d3-d583-4cdb-9f61-520e29562aac))
(fp_line (start -1.05 -1.4) (end -1.75 -0.7) (layer "F.Fab") (width 0.1) (tstamp e49c03bf-570d-432b-a72f-c22d3196795f))
(pad "1" smd roundrect (at -1.625 0 90) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666673333)
(net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp d7bae202-d402-474b-9717-8111abe3512d))
(pad "2" smd roundrect (at 1.625 0 90) (size 1.5 2.35) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.1666673333)
(net 2 "Earth") (pintype "passive") (tstamp 2e9ace42-0112-497a-9f6b-90887eadaf68))
(model "${KICAD6_3DMODEL_DIR}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3528-21_Kemet-B.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Inductor_SMD_narrow:L_Ferrocore_narrow_DLG-0504" (layer "F.Cu")
(tedit 6388C989) (tstamp f71b9083-05b8-40ca-ac58-0ae75b8c0306)
(at 107.85 103.124)
(descr "Ferrocore DLG-0504 unshielded SMD power inductor, 5.8x5.2x4.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf")
(tags "smd inductor dlg-0504")
(property "Sheetfile" "tps63001-slim.kicad_sch")
(property "Sheetname" "")
(path "/aa8504e5-43e2-4a63-b9b2-0c4a43ae6f49")
(attr smd)
(fp_text reference "L1" (at -4.218 -2.032) (layer "F.SilkS")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp ac428ae1-42a4-40a7-a9e5-a47ee80c9927)
)
(fp_text value "2.2 uH" (at 0 3.7) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 1b6df535-54f7-4c65-b292-7bec54756e36)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 9e3e5b9e-9b3d-4a66-bcdd-80ffe5d16ddf)
)
(fp_line (start -0.43 2.71) (end 0.43 2.71) (layer "F.SilkS") (width 0.12) (tstamp 4a9fa651-c6fa-4b04-a2ee-2f0216877df5))
(fp_line (start -0.43 -2.71) (end 0.43 -2.71) (layer "F.SilkS") (width 0.12) (tstamp 5a4d288a-d87f-46a6-9102-457fc174798d))
(fp_line (start -3.25 -3) (end -3.25 3) (layer "F.CrtYd") (width 0.05) (tstamp 34d3ff0e-be0d-4506-8acf-e4034a3590e4))
(fp_line (start 3.25 -3) (end -3.25 -3) (layer "F.CrtYd") (width 0.05) (tstamp 63c10466-afd9-402e-939b-19c51798c0df))
(fp_line (start 3.25 3) (end 3.25 -3) (layer "F.CrtYd") (width 0.05) (tstamp 7a87ab58-ddbe-41e6-bd03-a4c6923d4855))
(fp_line (start -3.25 3) (end 3.25 3) (layer "F.CrtYd") (width 0.05) (tstamp b7e3c335-4ace-406a-b7ab-1eb4b4f9742f))
(fp_line (start -0.85 2.6) (end 0.85 2.6) (layer "F.Fab") (width 0.1) (tstamp 027d5ad8-95c7-472c-b692-9aba2b2a03e6))
(fp_line (start -0.85 -2.6) (end 0.85 -2.6) (layer "F.Fab") (width 0.1) (tstamp 3f259ab8-3e34-42fd-a636-02a57470e370))
(fp_arc (start -0.85 2.6) (mid -2.9 0) (end -0.85 -2.6) (layer "F.Fab") (width 0.1) (tstamp 2e7b834a-32ac-452b-8416-b81dbaf5cb55))
(fp_arc (start 0.85 -2.6) (mid 2.9 0) (end 0.85 2.6) (layer "F.Fab") (width 0.1) (tstamp 77975818-ed0e-4b12-8cc3-06d28da505a4))
(pad "1" smd rect (at -1.625 0) (size 2.25 5.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 3 "Net-(L1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 976a52f1-d18a-4fd6-9414-404b36ac9abf))
(pad "2" smd rect (at 1.625 0) (size 2.25 5.5) (layers "F.Cu" "F.Paste" "F.Mask")
(net 5 "Net-(L1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 0cd55122-6073-4a20-b6a8-6cb9ea570ffb))
(model "${KICAD6_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Ferrocore_DLG-0504.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Symbol:OSHW-Symbol_6.7x6mm_SilkScreen" (layer "B.Cu")
(tedit 0) (tstamp f04d3c8b-7321-49ac-8daa-df8175dccdb8)
(at 112.268 103.632 90)
(descr "Open Source Hardware Symbol")
(tags "Logo Symbol OSHW")
(attr exclude_from_pos_files exclude_from_bom)
(fp_text reference "REF**" (at 0 0 90) (layer "B.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 49ac29b4-b6e5-4022-98b4-7e797ff2d93c)
)
(fp_text value "OSHW-Symbol_6.7x6mm_SilkScreen" (at 0.75 0 90) (layer "B.Fab") hide
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
(tstamp 23628dc7-4cc3-466d-be48-8c6c49600369)
)
(fp_poly (pts
(xy 0.555814 2.531069)
(xy 0.639635 2.086445)
(xy 0.94892 1.958947)
(xy 1.258206 1.831449)
(xy 1.629246 2.083754)
(xy 1.733157 2.154004)
(xy 1.827087 2.216728)
(xy 1.906652 2.269062)
(xy 1.96747 2.308143)
(xy 2.005157 2.331107)
(xy 2.015421 2.336058)
(xy 2.03391 2.323324)
(xy 2.07342 2.288118)
(xy 2.129522 2.234938)
(xy 2.197787 2.168282)
(xy 2.273786 2.092646)
(xy 2.353092 2.012528)
(xy 2.431275 1.932426)
(xy 2.503907 1.856836)
(xy 2.566559 1.790255)
(xy 2.614803 1.737182)
(xy 2.64421 1.702113)
(xy 2.651241 1.690377)
(xy 2.641123 1.66874)
(xy 2.612759 1.621338)
(xy 2.569129 1.552807)
(xy 2.513218 1.467785)
(xy 2.448006 1.370907)
(xy 2.410219 1.31565)
(xy 2.341343 1.214752)
(xy 2.28014 1.123701)
(xy 2.229578 1.04703)
(xy 2.192628 0.989272)
(xy 2.172258 0.954957)
(xy 2.169197 0.947746)
(xy 2.176136 0.927252)
(xy 2.195051 0.879487)
(xy 2.223087 0.811168)
(xy 2.257391 0.729011)
(xy 2.295109 0.63973)
(xy 2.333387 0.550042)
(xy 2.36937 0.466662)
(xy 2.400206 0.396306)
(xy 2.423039 0.34569)
(xy 2.435017 0.321529)
(xy 2.435724 0.320578)
(xy 2.454531 0.315964)
(xy 2.504618 0.305672)
(xy 2.580793 0.290713)
(xy 2.677865 0.272099)
(xy 2.790643 0.250841)
(xy 2.856442 0.238582)
(xy 2.97695 0.215638)
(xy 3.085797 0.193805)
(xy 3.177476 0.174278)
(xy 3.246481 0.158252)
(xy 3.287304 0.146921)
(xy 3.295511 0.143326)
(xy 3.303548 0.118994)
(xy 3.310033 0.064041)
(xy 3.31497 -0.015108)
(xy 3.318364 -0.112026)
(xy 3.320218 -0.220287)
(xy 3.320538 -0.333465)
(xy 3.319327 -0.445135)
(xy 3.31659 -0.548868)
(xy 3.312331 -0.638241)
(xy 3.306555 -0.706826)
(xy 3.299267 -0.748197)
(xy 3.294895 -0.75681)
(xy 3.268764 -0.767133)
(xy 3.213393 -0.781892)
(xy 3.136107 -0.799352)
(xy 3.04423 -0.81778)
(xy 3.012158 -0.823741)
(xy 2.857524 -0.852066)
(xy 2.735375 -0.874876)
(xy 2.641673 -0.89308)
(xy 2.572384 -0.907583)
(xy 2.523471 -0.919292)
(xy 2.490897 -0.929115)
(xy 2.470628 -0.937956)
(xy 2.458626 -0.946724)
(xy 2.456947 -0.948457)
(xy 2.440184 -0.976371)
(xy 2.414614 -1.030695)
(xy 2.382788 -1.104777)
(xy 2.34726 -1.191965)
(xy 2.310583 -1.285608)
(xy 2.275311 -1.379052)
(xy 2.243996 -1.465647)
(xy 2.219193 -1.53874)
(xy 2.203454 -1.591678)
(xy 2.199332 -1.617811)
(xy 2.199676 -1.618726)
(xy 2.213641 -1.640086)
(xy 2.245322 -1.687084)
(xy 2.291391 -1.754827)
(xy 2.348518 -1.838423)
(xy 2.413373 -1.932982)
(xy 2.431843 -1.959854)
(xy 2.497699 -2.057275)
(xy 2.55565 -2.146163)
(xy 2.602538 -2.221412)
(xy 2.635207 -2.27792)
(xy 2.6505 -2.310581)
(xy 2.651241 -2.314593)
(xy 2.638392 -2.335684)
(xy 2.602888 -2.377464)
(xy 2.549293 -2.435445)
(xy 2.482171 -2.505135)
(xy 2.406087 -2.582045)
(xy 2.325604 -2.661683)
(xy 2.245287 -2.739561)
(xy 2.169699 -2.811186)
(xy 2.103405 -2.87207)
(xy 2.050969 -2.917721)
(xy 2.016955 -2.94365)
(xy 2.007545 -2.947883)
(xy 1.985643 -2.937912)
(xy 1.9408 -2.91102)
(xy 1.880321 -2.871736)
(xy 1.833789 -2.840117)
(xy 1.749475 -2.782098)
(xy 1.649626 -2.713784)
(xy 1.549473 -2.645579)
(xy 1.495627 -2.609075)
(xy 1.313371 -2.4858)
(xy 1.160381 -2.56852)
(xy 1.090682 -2.604759)
(xy 1.031414 -2.632926)
(xy 0.991311 -2.648991)
(xy 0.981103 -2.651226)
(xy 0.968829 -2.634722)
(xy 0.944613 -2.588082)
(xy 0.910263 -2.515609)
(xy 0.867588 -2.421606)
(xy 0.818394 -2.310374)
(xy 0.76449 -2.186215)
(xy 0.707684 -2.053432)
(xy 0.649782 -1.916327)
(xy 0.592593 -1.779202)
(xy 0.537924 -1.646358)
(xy 0.487584 -1.522098)
(xy 0.44338 -1.410725)
(xy 0.407119 -1.316539)
(xy 0.380609 -1.243844)
(xy 0.365658 -1.196941)
(xy 0.363254 -1.180833)
(xy 0.382311 -1.160286)
(xy 0.424036 -1.126933)
(xy 0.479706 -1.087702)
(xy 0.484378 -1.084599)
(xy 0.628264 -0.969423)
(xy 0.744283 -0.835053)
(xy 0.83143 -0.685784)
(xy 0.888699 -0.525913)
(xy 0.915086 -0.359737)
(xy 0.909585 -0.191552)
(xy 0.87119 -0.025655)
(xy 0.798895 0.133658)
(xy 0.777626 0.168513)
(xy 0.666996 0.309263)
(xy 0.536302 0.422286)
(xy 0.390064 0.506997)
(xy 0.232808 0.562806)
(xy 0.069057 0.589126)
(xy -0.096667 0.58537)
(xy -0.259838 0.55095)
(xy -0.415935 0.485277)
(xy -0.560433 0.387765)
(xy -0.605131 0.348187)
(xy -0.718888 0.224297)
(xy -0.801782 0.093876)
(xy -0.858644 -0.052315)
(xy -0.890313 -0.197088)
(xy -0.898131 -0.35986)
(xy -0.872062 -0.52344)
(xy -0.814755 -0.682298)
(xy -0.728856 -0.830906)
(xy -0.617014 -0.963735)
(xy -0.481877 -1.075256)
(xy -0.464117 -1.087011)
(xy -0.40785 -1.125508)
(xy -0.365077 -1.158863)
(xy -0.344628 -1.18016)
(xy -0.344331 -1.180833)
(xy -0.348721 -1.203871)
(xy -0.366124 -1.256157)
(xy -0.394732 -1.33339)
(xy -0.432735 -1.431268)
(xy -0.478326 -1.545491)
(xy -0.529697 -1.671758)
(xy -0.585038 -1.805767)
(xy -0.642542 -1.943218)
(xy -0.700399 -2.079808)
(xy -0.756802 -2.211237)
(xy -0.809942 -2.333205)
(xy -0.85801 -2.441409)
(xy -0.899199 -2.531549)
(xy -0.931699 -2.599323)
(xy -0.953703 -2.64043)
(xy -0.962564 -2.651226)
(xy -0.98964 -2.642819)
(xy -1.040303 -2.620272)
(xy -1.105817 -2.587613)
(xy -1.141841 -2.56852)
(xy -1.294832 -2.4858)
(xy -1.477088 -2.609075)
(xy -1.570125 -2.672228)
(xy -1.671985 -2.741727)
(xy -1.767438 -2.807165)
(xy -1.81525 -2.840117)
(xy -1.882495 -2.885273)
(xy -1.939436 -2.921057)
(xy -1.978646 -2.942938)
(xy -1.991381 -2.947563)
(xy -2.009917 -2.935085)
(xy -2.050941 -2.900252)
(xy -2.110475 -2.846678)
(xy -2.184542 -2.777983)
(xy -2.269165 -2.697781)
(xy -2.322685 -2.646286)
(xy -2.416319 -2.554286)
(xy -2.497241 -2.471999)
(xy -2.562177 -2.402945)
(xy -2.607858 -2.350644)
(xy -2.631011 -2.318616)
(xy -2.633232 -2.312116)
(xy -2.622924 -2.287394)
(xy -2.594439 -2.237405)
(xy -2.550937 -2.167212)
(xy -2.495577 -2.081875)
(xy -2.43152 -1.986456)
(xy -2.413303 -1.959854)
(xy -2.346927 -1.863167)
(xy -2.287378 -1.776117)
(xy -2.237984 -1.703595)
(xy -2.202075 -1.650493)
(xy -2.182981 -1.621703)
(xy -2.181136 -1.618726)
(xy -2.183895 -1.595782)
(xy -2.198538 -1.545336)
(xy -2.222513 -1.474041)
(xy -2.253266 -1.388547)
(xy -2.288244 -1.295507)
(xy -2.324893 -1.201574)
(xy -2.360661 -1.113399)
(xy -2.392994 -1.037634)
(xy -2.419338 -0.980931)
(xy -2.437142 -0.949943)
(xy -2.438407 -0.948457)
(xy -2.449294 -0.939601)
(xy -2.467682 -0.930843)
(xy -2.497606 -0.921277)
(xy -2.543103 -0.909996)
(xy -2.608209 -0.896093)
(xy -2.696961 -0.878663)
(xy -2.813393 -0.856798)
(xy -2.961542 -0.829591)
(xy -2.993618 -0.823741)
(xy -3.088686 -0.805374)
(xy -3.171565 -0.787405)
(xy -3.23493 -0.771569)
(xy -3.271458 -0.7596)
(xy -3.276356 -0.75681)
(xy -3.284427 -0.732072)
(xy -3.290987 -0.67679)
(xy -3.296033 -0.597389)
(xy -3.299559 -0.500296)
(xy -3.301561 -0.391938)
(xy -3.302036 -0.27874)
(xy -3.300977 -0.167128)
(xy -3.298382 -0.063529)
(xy -3.294246 0.025632)
(xy -3.288563 0.093928)
(xy -3.281331 0.134934)
(xy -3.276971 0.143326)
(xy -3.252698 0.151792)
(xy -3.197426 0.165565)
(xy -3.116662 0.18345)
(xy -3.015912 0.204252)
(xy -2.900683 0.226777)
(xy -2.837902 0.238582)
(xy -2.718787 0.260849)
(xy -2.612565 0.281021)
(xy -2.524427 0.298085)
(xy -2.459566 0.311031)
(xy -2.423174 0.318845)
(xy -2.417184 0.320578)
(xy -2.407061 0.34011)
(xy -2.385662 0.387157)
(xy -2.355839 0.454997)
(xy -2.320445 0.536909)
(xy -2.282332 0.626172)
(xy -2.244353 0.716065)
(xy -2.20936 0.799865)
(xy -2.180206 0.870853)
(xy -2.159743 0.922306)
(xy -2.150823 0.947503)
(xy -2.150657 0.948604)
(xy -2.160769 0.968481)
(xy -2.189117 1.014223)
(xy -2.232723 1.081283)
(xy -2.288606 1.165116)
(xy -2.353787 1.261174)
(xy -2.391679 1.31635)
(xy -2.460725 1.417519)
(xy -2.52205 1.50937)
(xy -2.572663 1.587256)
(xy -2.609571 1.646531)
(xy -2.629782 1.682549)
(xy -2.632701 1.690623)
(xy -2.620153 1.709416)
(xy -2.585463 1.749543)
(xy -2.533063 1.806507)
(xy -2.467384 1.875815)
(xy -2.392856 1.952969)
(xy -2.313913 2.033475)
(xy -2.234983 2.112837)
(xy -2.1605 2.18656)
(xy -2.094894 2.250148)
(xy -2.042596 2.299106)
(xy -2.008039 2.328939)
(xy -1.996478 2.336058)
(xy -1.977654 2.326047)
(xy -1.932631 2.297922)
(xy -1.865787 2.254546)
(xy -1.781499 2.198782)
(xy -1.684144 2.133494)
(xy -1.610707 2.083754)
(xy -1.239667 1.831449)
(xy -0.621095 2.086445)
(xy -0.537275 2.531069)
(xy -0.453454 2.975693)
(xy 0.471994 2.975693)
(xy 0.555814 2.531069)
) (layer "B.SilkS") (width 0.01) (fill solid) (tstamp 0cb7c737-ba4e-46ef-8c04-1f23e579b00b))
)
(gr_line (start 115.7 100) (end 115.7 115.7) (layer "Edge.Cuts") (width 0.1) (tstamp 0118e16f-49f1-4580-b5a9-b15ecaf246e5))
(gr_line (start 100 100) (end 115.7 100) (layer "Edge.Cuts") (width 0.1) (tstamp 64fcb166-3b9e-4a0d-8380-589361a3bb2d))
(gr_line (start 100 115.7) (end 115.7 115.7) (layer "Edge.Cuts") (width 0.1) (tstamp d4e3ca90-b96f-48a1-aee2-9ef7d792c251))
(gr_line (start 100 100) (end 100 115.7) (layer "Edge.Cuts") (width 0.1) (tstamp db1b2b9c-5247-454e-b7f7-4c71d1cf6c24))
(gr_text "CE" (at 103.987 111.5 -90) (layer "B.SilkS") (tstamp 56375278-e695-4a0f-8eba-4373a9085e97)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "VIN" (at 111.607 111.1 -90) (layer "B.SilkS") (tstamp 9ac83e4e-0a2e-46af-8ca6-e39909db6cdf)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "TPS63001" (at 101.092 105.664 -90) (layer "B.SilkS") (tstamp a7261ae5-7f80-4921-980a-8bc306e2fad1)
(effects (font (size 0.8 0.8) (thickness 0.15)) (justify mirror))
)
(gr_text "GND" (at 109.067 110.9 -90) (layer "B.SilkS") (tstamp aaf2221d-f5de-43dd-9c82-cfcb75623791)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(gr_text "VOUT" (at 106.527 110.5 -90) (layer "B.SilkS") (tstamp fd930359-2e58-494b-90f2-91c0e3a84fff)
(effects (font (size 1 1) (thickness 0.15)) (justify mirror))
)
(segment (start 106.5879 108.0446) (end 106.85 107.7825) (width 0.2502) (layer "F.Cu") (net 1) (tstamp 2207b40c-82cd-42b5-a8d6-5fe03fbe7e21))
(segment (start 107.7366 110.6575) (end 107.4257 110.6575) (width 0.5) (layer "F.Cu") (net 1) (tstamp 2419a7f8-6d44-48e3-b37d-a82309e8dd14))
(segment (start 107.4257 110.6575) (end 107.35 110.6575) (width 0.2502) (layer "F.Cu") (net 1) (tstamp 38ec232f-3bd9-4e68-a9be-eb0882ff5cf9))
(segment (start 104.648 108.1825) (end 104.7859 108.0446) (width 0.5) (layer "F.Cu") (net 1) (tstamp 4820e50b-1a5e-4d31-ad07-f1f1a0672324))
(segment (start 106.104 108.0446) (end 106.5879 108.0446) (width 0.5) (layer "F.Cu") (net 1) (tstamp 623f3c07-7a99-4306-9d1d-e377c5cef40b))
(segment (start 111.607 113.8) (end 110.0564 112.2494) (width 0.5) (layer "F.Cu") (net 1) (tstamp 6a454de7-0b24-479e-b1e9-e8719a5f99e4))
(segment (start 102.616 106.273) (end 102.616 108.1825) (width 0.5) (layer "F.Cu") (net 1) (tstamp 6ac274f9-9b38-4263-ad4a-4b9a5c54f1d8))
(segment (start 108.7456 112.2494) (end 107.7744 111.2782) (width 0.5) (layer "F.Cu") (net 1) (tstamp 7991cecd-4453-473e-93d4-f73a0f08fcf0))
(segment (start 102.616 108.1825) (end 104.648 108.1825) (width 0.5) (layer "F.Cu") (net 1) (tstamp 910d9284-f9c1-45ff-a879-f5b43722b82d))
(segment (start 110.0564 112.2494) (end 108.7456 112.2494) (width 0.5) (layer "F.Cu") (net 1) (tstamp a72d536b-80de-45aa-b637-af075d6cc7c5))
(segment (start 107.7744 111.2782) (end 107.7744 110.6953) (width 0.5) (layer "F.Cu") (net 1) (tstamp af160d96-61d1-42c8-8aaa-a1c3e8391121))
(segment (start 104.7859 108.0446) (end 106.104 108.0446) (width 0.5) (layer "F.Cu") (net 1) (tstamp cd43f0d1-5e2e-40b7-a524-36db56b7c6cb))
(segment (start 107.85 110.6575) (end 107.8122 110.6953) (width 0.2502) (layer "F.Cu") (net 1) (tstamp d6bc5093-6c09-4592-be4d-dbb30271c77c))
(segment (start 102.108 105.765) (end 102.616 106.273) (width 0.5) (layer "F.Cu") (net 1) (tstamp df287a8f-ad57-4236-9886-58aa2b9dc96e))
(segment (start 107.8122 110.6953) (end 107.7744 110.6953) (width 0.2502) (layer "F.Cu") (net 1) (tstamp e9a6a331-a601-4e9c-93a4-8a41013730ff))
(segment (start 107.7744 110.6953) (end 107.7366 110.6575) (width 0.5) (layer "F.Cu") (net 1) (tstamp f5a0ff75-3eef-4043-b620-2b6202ecc279))
(via (at 105.8 108.0446) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 1) (tstamp 0a7fc827-c7aa-4b12-9e2e-75f2e66f1d0c))
(segment (start 111.607 113.8) (end 111.607 111.019) (width 0.5) (layer "B.Cu") (net 1) (tstamp 35c24053-e4a0-4fb2-8241-90d2adac65d6))
(segment (start 111.607 111.019) (end 108.6326 108.0446) (width 0.5) (layer "B.Cu") (net 1) (tstamp 65e872d8-fe2c-4091-956d-8ce4f04e4a87))
(segment (start 108.6326 108.0446) (end 106.104 108.0446) (width 0.5) (layer "B.Cu") (net 1) (tstamp dfb23e14-77c9-4579-a164-6dd8f399fd36))
(segment (start 114.9178 108.1157) (end 112.776 110.2575) (width 0.5) (layer "F.Cu") (net 2) (tstamp 21db0513-8c93-493a-b956-6792ea8fe0d6))
(segment (start 107.15 109.22) (end 107.85 109.22) (width 0.5) (layer "F.Cu") (net 2) (tstamp 30648c0e-ed73-4982-9949-66ea134ce09a))
(segment (start 108.35 109.22) (end 108.35 109.7693) (width 0.5) (layer "F.Cu") (net 2) (tstamp 4158bc59-06ec-432e-ac38-4f43c44afd6c))
(segment (start 100.4604 104.1626) (end 100.4604 108.1019) (width 0.5) (layer "F.Cu") (net 2) (tstamp 49feb6bb-3caf-4cb1-9beb-3621009bc0ec))
(segment (start 107.85 109.22) (end 107.85 108.6707) (width 0.5) (layer "F.Cu") (net 2) (tstamp 569e32ec-4e3b-4f62-9726-8213f57211ab))
(segment (start 113.284 102.515) (end 114.9178 104.1488) (width 0.5) (layer "F.Cu") (net 2) (tstamp 6a2c3b93-5283-419c-9e3c-7752d1e12208))
(segment (start 114.9178 104.1488) (end 114.9178 108.1157) (width 0.5) (layer "F.Cu") (net 2) (tstamp 6c1581ed-cac6-424e-a359-3214b66efe59))
(segment (start 104.648 110.2575) (end 105.6855 109.22) (width 0.5) (layer "F.Cu") (net 2) (tstamp 6ef4525b-c26a-40fb-8b69-6e18fd84f51b))
(segment (start 107.85 109.22) (end 108.35 109.22) (width 0.5) (layer "F.Cu") (net 2) (tstamp a5ed92ff-908e-4a1a-868a-451099439239))
(segment (start 108.55 109.22) (end 109.7065 109.22) (width 0.5) (layer "F.Cu") (net 2) (tstamp ae7259a4-7ab1-47da-8eac-488cea32a9a4))
(segment (start 105.6855 109.22) (end 107.15 109.22) (width 0.5) (layer "F.Cu") (net 2) (tstamp b2b7d5f0-8bb9-4edf-a4e7-3432e15f0638))
(segment (start 109.7065 109.22) (end 110.744 110.2575) (width 0.5) (layer "F.Cu") (net 2) (tstamp b75f8102-1a7e-4ac9-b3c0-9f1136e34a66))
(segment (start 108.35 109.7693) (end 108.35 110.6575) (width 0.2502) (layer "F.Cu") (net 2) (tstamp b9acd53d-7341-48ff-a80d-41c25015272d))
(segment (start 107.85 108.6707) (end 107.85 107.7825) (width 0.2502) (layer "F.Cu") (net 2) (tstamp cc125035-a701-4d5e-b50d-0ec33097b890))
(segment (start 112.776 110.2575) (end 110.744 110.2575) (width 0.5) (layer "F.Cu") (net 2) (tstamp d92c2aaa-15c4-465e-b5d3-faef60537308))
(segment (start 102.616 110.2575) (end 104.648 110.2575) (width 0.5) (layer "F.Cu") (net 2) (tstamp e7ac935f-82c1-4972-a1bf-18b31b7e84f8))
(segment (start 108.35 109.22) (end 108.55 109.22) (width 0.5) (layer "F.Cu") (net 2) (tstamp f10eb8a4-2556-411f-bcaf-bf4a2a849398))
(segment (start 100.4604 108.1019) (end 102.616 110.2575) (width 0.5) (layer "F.Cu") (net 2) (tstamp f54faff3-8f96-4e87-b124-81557c1e028d))
(segment (start 102.108 102.515) (end 100.4604 104.1626) (width 0.5) (layer "F.Cu") (net 2) (tstamp fc4ac395-9a75-4f1a-9ada-dbb467a3b240))
(via (at 114.808 101.092) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp 7268c918-9568-448b-b35f-867928946fc3))
(via (at 101.092 114.808) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp a5f6b96f-a6d6-4cda-9f37-abae8595383c))
(via (at 101.092 101.092) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp c7f13a8e-3428-457d-ba4d-d1c91fbca5a5))
(via (at 114.808 114.808) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 2) (tstamp ef61b1a8-baa2-4d68-b213-c9290c6de0db))
(segment (start 109.067 113.8) (end 109.067 112.4997) (width 0.5) (layer "B.Cu") (net 2) (tstamp 141724c2-1c9d-4af9-8656-f434a939f4f9))
(segment (start 108.55 111.9827) (end 109.067 112.4997) (width 0.5) (layer "B.Cu") (net 2) (tstamp 55efffb0-caa1-4ba6-8776-afbb26dd8bb0))
(segment (start 108.55 109.22) (end 108.55 111.9827) (width 0.5) (layer "B.Cu") (net 2) (tstamp 5e49890c-9188-4408-9cb7-6f56bc72927c))
(segment (start 107.85 109.22) (end 108.55 109.22) (width 0.5) (layer "B.Cu") (net 2) (tstamp eae0de4f-88dd-463d-aa9c-c15297c8ced7))
(segment (start 106.225 103.124) (end 106.225 106.0586) (width 0.25) (layer "F.Cu") (net 3) (tstamp 82d43b94-c588-4888-82f9-17ac2d5e7389))
(segment (start 106.225 106.0586) (end 107.35 107.1836) (width 0.25) (layer "F.Cu") (net 3) (tstamp a834e2df-bc1e-4748-ac6d-dfb711b90ebe))
(segment (start 107.35 107.1836) (end 107.35 107.7825) (width 0.25) (layer "F.Cu") (net 3) (tstamp e3680552-b7cb-4f75-931e-73e1c845d027))
(segment (start 103.987 113.8) (end 106.85 110.937) (width 0.25) (layer "F.Cu") (net 4) (tstamp 1858214a-d258-4489-a7b1-498fe00ec2bb))
(segment (start 106.85 110.937) (end 106.85 110.6575) (width 0.25) (layer "F.Cu") (net 4) (tstamp 51c48e4f-4b62-4515-8235-def8c67d1f90))
(segment (start 109.475 106.0586) (end 108.35 107.1836) (width 0.25) (layer "F.Cu") (net 5) (tstamp 3f808830-4c71-44f0-854b-b5fc69d0f016))
(segment (start 109.475 103.124) (end 109.475 106.0586) (width 0.25) (layer "F.Cu") (net 5) (tstamp 6451d4ea-c01a-4943-90b6-5cd05b800c67))
(segment (start 108.35 107.1836) (end 108.35 107.7825) (width 0.25) (layer "F.Cu") (net 5) (tstamp d6ae5224-b159-46b4-af33-07125d54bfa0))
(segment (start 113.284 105.765) (end 113.284 107.6745) (width 0.25) (layer "F.Cu") (net 6) (tstamp 01e97b3e-5845-46cb-a0a2-e41999904465))
(segment (start 110.344 107.7825) (end 109.5116 107.7825) (width 0.25) (layer "F.Cu") (net 6) (tstamp 3d57dee0-0f17-4950-a7a3-f924355cba95))
(segment (start 110.744 108.1825) (end 110.344 107.7825) (width 0.25) (layer "F.Cu") (net 6) (tstamp 400c7def-4440-42da-978e-03d35a5cb8f2))
(segment (start 113.284 114.31205) (end 113.284 113.28225) (width 0.25) (layer "F.Cu") (net 6) (tstamp 7f92c027-5b50-463e-85ab-f8b95577591d))
(segment (start 113.284 113.28225) (end 111.25375 111.252) (width 0.25) (layer "F.Cu") (net 6) (tstamp 8806093c-0ed9-4b1a-944e-932a5992cd5b))
(segment (start 109.4445 111.252) (end 108.85 110.6575) (width 0.25) (layer "F.Cu") (net 6) (tstamp 8c0c2b2e-3922-4a08-abd7-0c29e3c89f4f))
(segment (start 111.25375 111.252) (end 109.4445 111.252) (width 0.25) (layer "F.Cu") (net 6) (tstamp 93461f86-8d74-4237-bd43-136d40ce45a5))
(segment (start 113.284 107.6745) (end 112.776 108.1825) (width 0.25) (layer "F.Cu") (net 6) (tstamp a42e49f7-8d0c-4874-8093-d04a37599149))
(segment (start 112.28005 115.316) (end 113.284 114.31205) (width 0.25) (layer "F.Cu") (net 6) (tstamp b18dff11-2c49-4f12-869b-56661483f367))
(segment (start 109.5116 107.7825) (end 108.85 107.7825) (width 0.25) (layer "F.Cu") (net 6) (tstamp c6bfb563-1745-4938-87b6-22fb99a613a7))
(segment (start 110.744 108.1825) (end 112.776 108.1825) (width 0.25) (layer "F.Cu") (net 6) (tstamp da9ab9e7-f31f-439f-b844-fa371f9a3533))
(segment (start 106.527 114.655) (end 107.188 115.316) (width 0.25) (layer "F.Cu") (net 6) (tstamp ddc23aa3-b405-4763-845b-789f3ea1491a))
(segment (start 106.527 113.8) (end 106.527 114.655) (width 0.25) (layer "F.Cu") (net 6) (tstamp e52cb05a-11bf-4f8e-a9e9-b5aa2d89017e))
(segment (start 107.188 115.316) (end 112.28005 115.316) (width 0.25) (layer "F.Cu") (net 6) (tstamp f57fd8f4-649d-4225-8e55-c2191b35ec31))
(segment (start 109.5116 107.0594) (end 109.5116 107.7825) (width 0.25) (layer "F.Cu") (net 6) (tstamp f7d0bc97-826c-46cc-a728-17767fe55d07))
(via (at 109.5116 107.0594) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 6) (tstamp 16543c49-1d1e-4a64-9c60-409f0058a0c7))
(segment (start 106.527 112.6247) (end 105.3764 111.4741) (width 0.25) (layer "B.Cu") (net 6) (tstamp 114c92fd-b31b-4e47-b0a6-61ff9cbad1f2))
(segment (start 105.555424 107.0594) (end 109.5116 107.0594) (width 0.25) (layer "B.Cu") (net 6) (tstamp 30465faf-4e6e-43b5-aaeb-51e43085a952))
(segment (start 105.075 108.344905) (end 105.075 107.539824) (width 0.25) (layer "B.Cu") (net 6) (tstamp 4fd47e92-af7f-4c58-a1a7-71e3d6e83f5f))
(segment (start 105.3764 108.646305) (end 105.075 108.344905) (width 0.25) (layer "B.Cu") (net 6) (tstamp 50e8571e-7a6e-431d-a82b-ff85a77b8460))
(segment (start 105.075 107.539824) (end 105.555424 107.0594) (width 0.25) (layer "B.Cu") (net 6) (tstamp 5f9b7dfd-ec37-4716-826a-792e99e4e644))
(segment (start 105.3764 111.4741) (end 105.3764 108.646305) (width 0.25) (layer "B.Cu") (net 6) (tstamp 7eb5227b-3384-4f23-8fd5-98b33f75c9f2))
(segment (start 106.527 113.8) (end 106.527 112.6247) (width 0.25) (layer "B.Cu") (net 6) (tstamp e2de0e11-7f55-4f2a-b2b6-17bc81d6268d))
(zone (net 2) (net_name "Earth") (layers F&B.Cu) (tstamp 2b7c67fd-7601-41b1-9f45-71fe3efa58bf) (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 116.332 116.332)
(xy 99.06 116.332)
(xy 99.06 99.568)
(xy 116.332 99.568)
)
)
(filled_polygon
(layer "F.Cu")
(pts
(xy 115.121783 106.37963)
(xy 115.173795 106.427955)
(xy 115.1915 106.492361)
(xy 115.1915 115.0655)
(xy 115.171498 115.133621)
(xy 115.117842 115.180114)
(xy 115.0655 115.1915)
(xy 113.604644 115.1915)
(xy 113.536523 115.171498)
(xy 113.49003 115.117842)
(xy 113.479926 115.047568)
(xy 113.50942 114.982988)
(xy 113.515549 114.976405)
(xy 113.676247 114.815707)