forked from DoImant/TP4056-Power-Path-PCB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTC4056-Bypass.kicad_pcb
986 lines (970 loc) · 45.6 KB
/
TC4056-Bypass.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
(kicad_pcb (version 20211014) (generator pcbnew)
(general
(thickness 1.6)
)
(paper "A4")
(title_block
(rev "1")
)
(layers
(0 "F.Cu" signal "Front")
(31 "B.Cu" signal "Back")
(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)
(44 "Edge.Cuts" user)
(45 "Margin" user)
(46 "B.CrtYd" user "B.Courtyard")
(47 "F.CrtYd" user "F.Courtyard")
(49 "F.Fab" 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)
(solder_mask_min_width 0.1)
(pcbplotparams
(layerselection 0x00010fc_ffffffff)
(disableapertmacros false)
(usegerberextensions false)
(usegerberattributes false)
(usegerberadvancedattributes false)
(creategerberjobfile false)
(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 false)
(plotinvisibletext false)
(sketchpadsonfab false)
(subtractmaskfromsilk true)
(outputformat 1)
(mirror false)
(drillshape 0)
(scaleselection 1)
(outputdirectory "./gerbers_for_aisler")
)
)
(net 0 "")
(net 1 "/IN+")
(net 2 "/OUT+-OUT")
(net 3 "/GND")
(net 4 "/OUT+-IN")
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 00000000-0000-0000-0000-0000612f6929)
(at 63.5 48.895)
(descr "Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000612ff44f")
(attr exclude_from_pos_files)
(fp_text reference "J1" (at 0 -2.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c5dce74a-55fc-42ae-9146-669932a68c6c)
)
(fp_text value "Conn_01x01" (at 0 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5155099c-a868-4242-b1b7-76f1d0550c4e)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.57 0.57) (thickness 0.09)))
(tstamp b3160888-ccd8-4d4c-a476-85b4034684ee)
)
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 0b1f31ab-4ddd-4f56-bcd3-1067a1d9e943))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 125ac94b-cae6-4d01-89d5-509f4986d672))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp da6ed339-7696-481b-88b2-41d749a8f7da))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp e0a93299-9a30-449b-a75a-067231e21aaf))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 3e8300e4-ce7f-41b4-b86d-5103f9766c3b))
(pad "1" thru_hole roundrect (at 0 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696)
(net 1 "/IN+") (pinfunction "Pin_1") (pintype "passive") (tstamp 67941fb6-8f4b-4519-a9a1-e930fefdf659))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Package_TO_SOT_SMD:SOT-23" (layer "F.Cu")
(tedit 5FA16958) (tstamp 00000000-0000-0000-0000-0000612f6956)
(at 68.453 48.9275)
(descr "SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py")
(tags "SOT TO_SOT_SMD")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000612f639a")
(attr smd)
(fp_text reference "Q1" (at 0 -2.413) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp 94d0bcc7-f59f-4c36-bc1d-ca0f8a7f67e7)
)
(fp_text value "IRLML6402" (at 0 2.5) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp eef72eb8-f68d-411c-9692-8b01a52baf6e)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.5 0.5) (thickness 0.075)))
(tstamp 371e7e05-9cab-431b-b600-1fc1888d04dd)
)
(fp_line (start 0 1.56) (end -0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp 3e0385d1-cb66-445b-8fbd-ff2d64053dbc))
(fp_line (start 0 -1.56) (end 0.65 -1.56) (layer "F.SilkS") (width 0.12) (tstamp e4ba931a-c520-4d8b-b76b-66f92555ffc9))
(fp_line (start 0 -1.56) (end -1.675 -1.56) (layer "F.SilkS") (width 0.12) (tstamp f5ea754a-fbb6-4b8e-b26f-98915f9ce8b8))
(fp_line (start 0 1.56) (end 0.65 1.56) (layer "F.SilkS") (width 0.12) (tstamp fa2339ef-07a5-45e0-b6a0-c02fd9f6ebfa))
(fp_line (start -1.92 1.7) (end 1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp 64ff8928-c5dd-4f9b-bad3-b3298348dea1))
(fp_line (start -1.92 -1.7) (end -1.92 1.7) (layer "F.CrtYd") (width 0.05) (tstamp c4f3628f-d7d8-42c2-a280-c2dbfbc1acb3))
(fp_line (start 1.92 -1.7) (end -1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp e6fb910a-c347-4d0a-acd2-cfa9f4ca5f84))
(fp_line (start 1.92 1.7) (end 1.92 -1.7) (layer "F.CrtYd") (width 0.05) (tstamp f6a3eab0-d337-41c0-9690-3a2058b6f024))
(fp_line (start 0.65 1.45) (end -0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp 31308750-7a07-4a49-9cba-0a691661553f))
(fp_line (start -0.65 1.45) (end -0.65 -1.125) (layer "F.Fab") (width 0.1) (tstamp 93fb28e4-7e26-4da2-b7c7-989829f1c527))
(fp_line (start 0.65 -1.45) (end 0.65 1.45) (layer "F.Fab") (width 0.1) (tstamp a77d0d19-6a22-489e-82c7-0ae3de9928ce))
(fp_line (start -0.325 -1.45) (end 0.65 -1.45) (layer "F.Fab") (width 0.1) (tstamp c0114ed7-c727-4e86-9106-3f7b159a375b))
(fp_line (start -0.65 -1.125) (end -0.325 -1.45) (layer "F.Fab") (width 0.1) (tstamp d6767b8c-b36a-41a7-bdbe-060c5381071a))
(pad "1" smd roundrect (at -0.9375 -0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 1 "/IN+") (pinfunction "G") (pintype "input") (tstamp 676c3922-ab89-4645-a583-a8d433533cd9))
(pad "2" smd roundrect (at -0.9375 0.95) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 2 "/OUT+-OUT") (pinfunction "S") (pintype "passive") (tstamp deb3703f-1c94-46b2-b9bc-157ac6b3c919))
(pad "3" smd roundrect (at 0.9375 0) (size 1.475 0.6) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.25)
(net 4 "/OUT+-IN") (pinfunction "D") (pintype "passive") (tstamp 683a45a9-75df-49df-95e3-a8a5f9edd629))
(model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu")
(tedit 5F68FEEE) (tstamp 00000000-0000-0000-0000-0000612f6e82)
(at 63.5 44.704 90)
(descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (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 handsolder")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000612f5d37")
(attr smd)
(fp_text reference "R1" (at 0 0 180) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp ca44d240-368d-4a38-96a4-79e32776dc32)
)
(fp_text value "10k" (at 0 1.82 90) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 7a9f076f-3948-481c-b191-81b90a1c6686)
)
(fp_text user "${REFERENCE}" (at 0 0 90) (layer "F.Fab")
(effects (font (size 0.8 0.8) (thickness 0.12)))
(tstamp 6788b804-593a-4b84-9df9-bb8842926ea6)
)
(fp_line (start -0.727064 -0.91) (end 0.727064 -0.91) (layer "F.SilkS") (width 0.12) (tstamp 752c4ebf-23c3-4d9b-bb24-26e76275a7e6))
(fp_line (start -0.727064 0.91) (end 0.727064 0.91) (layer "F.SilkS") (width 0.12) (tstamp ae4d0dc9-96f5-49a2-9f0f-0070f8fb7078))
(fp_line (start 2.45 -1.12) (end 2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp 1ab31a7e-6859-4f65-a33d-c38e0cd930cd))
(fp_line (start -2.45 -1.12) (end 2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 2446d1e2-c52b-4189-8419-7e4417c2b4c0))
(fp_line (start -2.45 1.12) (end -2.45 -1.12) (layer "F.CrtYd") (width 0.05) (tstamp 42603da3-d906-4011-a4b6-c23630de2226))
(fp_line (start 2.45 1.12) (end -2.45 1.12) (layer "F.CrtYd") (width 0.05) (tstamp bfd70f0c-9a15-4274-a8ae-516f501ed035))
(fp_line (start -1.6 0.8) (end -1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp 0be7415b-9781-4e15-9387-dd3eebcc75c2))
(fp_line (start -1.6 -0.8) (end 1.6 -0.8) (layer "F.Fab") (width 0.1) (tstamp a1c314af-bd4c-4bc7-ab42-bbe41d623ee6))
(fp_line (start 1.6 0.8) (end -1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp bca0d7c0-2512-438e-9b9a-68d939f9e8a0))
(fp_line (start 1.6 -0.8) (end 1.6 0.8) (layer "F.Fab") (width 0.1) (tstamp c93eeb9e-f5f6-4417-a782-340cc3d5e724))
(pad "1" smd roundrect (at -1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.192308)
(net 1 "/IN+") (pintype "passive") (tstamp 53d11f11-0de2-4a95-9fb4-839da63cbeb6))
(pad "2" smd roundrect (at 1.55 0 90) (size 1.3 1.75) (layers "F.Cu" "F.Paste" "F.Mask") (roundrect_rratio 0.192308)
(net 3 "/GND") (pintype "passive") (tstamp 8a3698cc-536e-470b-a502-21f4fc64c21b))
(model "${KICAD6_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Diode_SMD:D_SOD-323_HandSoldering" (layer "F.Cu")
(tedit 58641869) (tstamp 00000000-0000-0000-0000-000061338951)
(at 68.707 44.704 180)
(descr "SOD-323")
(tags "SOD-323")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000612f7551")
(attr smd)
(fp_text reference "D1" (at 0 0) (layer "F.SilkS")
(effects (font (size 0.8 0.8) (thickness 0.15)))
(tstamp f11c987b-cd67-4f7a-ab07-657812880ff2)
)
(fp_text value "PMEG4010CEJ" (at 0.1 1.9) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp d346b6da-c258-4695-b995-1687376ffe52)
)
(fp_text user "${REFERENCE}" (at 0 -1.85) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 5c167545-396f-4db0-869f-e30efaa8cb24)
)
(fp_line (start -1.9 -0.85) (end -1.9 0.85) (layer "F.SilkS") (width 0.12) (tstamp 7b2e5f8f-c974-4adb-99f0-9d0e5a5d3cca))
(fp_line (start -1.9 0.85) (end 1.25 0.85) (layer "F.SilkS") (width 0.12) (tstamp 7dbc651b-9898-4810-8034-01d795686034))
(fp_line (start -1.9 -0.85) (end 1.25 -0.85) (layer "F.SilkS") (width 0.12) (tstamp a8564b23-833a-4033-a008-fd0634d1dbed))
(fp_line (start -2 -0.95) (end 2 -0.95) (layer "F.CrtYd") (width 0.05) (tstamp 043307b8-b75a-4eb7-9ecf-ed3f3f61b611))
(fp_line (start 2 -0.95) (end 2 0.95) (layer "F.CrtYd") (width 0.05) (tstamp 4641c21b-ba02-4a4e-8838-190e440145ec))
(fp_line (start -2 0.95) (end 2 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c3a97730-b00b-414f-b32f-fe22ed7c2544))
(fp_line (start -2 -0.95) (end -2 0.95) (layer "F.CrtYd") (width 0.05) (tstamp c4d57f7a-3f2c-4dcf-8f82-8e348ac62d4c))
(fp_line (start -0.9 0.7) (end -0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 15acfa30-14a4-4569-b369-ecfbabe4693a))
(fp_line (start 0.2 0.35) (end -0.3 0) (layer "F.Fab") (width 0.1) (tstamp 17c9a6f7-320a-4c6d-a333-7c7ad5d4d0f8))
(fp_line (start -0.3 0) (end -0.5 0) (layer "F.Fab") (width 0.1) (tstamp 6f541806-65d2-4ed9-b107-f374531d081c))
(fp_line (start -0.3 0) (end 0.2 -0.35) (layer "F.Fab") (width 0.1) (tstamp 90c055fd-aa48-4efa-8151-d7699871ddf7))
(fp_line (start 0.2 0) (end 0.45 0) (layer "F.Fab") (width 0.1) (tstamp 9c6b839f-ed96-49bf-b338-9911369f3c77))
(fp_line (start -0.9 -0.7) (end 0.9 -0.7) (layer "F.Fab") (width 0.1) (tstamp 9cd8f7e1-adcc-4361-8a48-0e4fc61ed68d))
(fp_line (start 0.9 -0.7) (end 0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp b24f4c71-cc4b-45b4-befb-5a8fb75cd490))
(fp_line (start 0.2 -0.35) (end 0.2 0.35) (layer "F.Fab") (width 0.1) (tstamp b29d29c5-a6d8-495f-8276-f7b8f02a6fcc))
(fp_line (start 0.9 0.7) (end -0.9 0.7) (layer "F.Fab") (width 0.1) (tstamp cd2cc190-d0e7-4dea-a8e6-d4918becbd40))
(fp_line (start -0.3 -0.35) (end -0.3 0.35) (layer "F.Fab") (width 0.1) (tstamp d3054ecc-7d13-4ce6-863d-d71c15b1f72d))
(pad "1" smd rect (at -1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 2 "/OUT+-OUT") (pinfunction "K") (pintype "passive") (tstamp 95367928-442c-43f9-bd0e-803e4e287f5f))
(pad "2" smd rect (at 1.25 0 180) (size 1 1) (layers "F.Cu" "F.Paste" "F.Mask")
(net 1 "/IN+") (pinfunction "A") (pintype "passive") (tstamp 34481262-ec0b-4ed1-9e7c-a1f161677a3b))
(model "${KICAD6_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-323.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 00000000-0000-0000-0000-00006145e5f4)
(at 63.5 40.513)
(descr "Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061453de3")
(attr exclude_from_pos_files)
(fp_text reference "J2" (at 0 -2.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96999c57-33b0-4f59-bcb6-cf6f10e9b42e)
)
(fp_text value "Conn_01x01" (at 0 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 96a6a7cb-b9c9-4b9b-8d8b-621f9f39e3ad)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.57 0.57) (thickness 0.09)))
(tstamp 80658a3f-57a9-404d-a4b8-2ca36ff3f10e)
)
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 0c3b8838-ecb3-452f-9cca-279be7d647d9))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 796e24ff-c891-4727-8e04-b53c27d5ccb4))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp b01dce93-809d-4714-ba73-283fb8d253f5))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp c4219bdc-0dbd-4a6b-856a-2d57fa80d500))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp e4824fcb-95c7-4ebf-9798-271cec6a28f9))
(pad "1" thru_hole roundrect (at 0 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696)
(net 3 "/GND") (pinfunction "Pin_1") (pintype "passive") (tstamp fb8d5c37-e89a-4838-8e72-026a6e2db7b1))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 00000000-0000-0000-0000-00006145e5ff)
(at 73.914 48.895)
(descr "Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061454298")
(attr exclude_from_pos_files)
(fp_text reference "J3" (at 0 -2.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp bc116543-544c-4138-8f07-681563ebf95e)
)
(fp_text value "Conn_01x01" (at 0 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp c3bc513b-75b2-44ce-b51a-82684e9b9af8)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.57 0.57) (thickness 0.09)))
(tstamp 25daf477-eb7f-4874-9413-d4222bac10c7)
)
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 4725c092-2410-40d4-9cd0-7405f7cf5be4))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8fd9e19e-f45c-4b73-9b4b-1717fa913f6f))
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp a0d15c80-d0ee-427e-a1a5-f54afd103538))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp c179387b-3cc6-41e7-97fb-1baf6bc14167))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 9239a50a-ff37-4d4f-b957-b8b340cab5c2))
(pad "1" thru_hole roundrect (at 0 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696)
(net 4 "/OUT+-IN") (pinfunction "Pin_1") (pintype "passive") (tstamp 5e563ae7-1f3e-4acc-8f6b-f499fffebced))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 00000000-0000-0000-0000-00006145e615)
(at 73.914 44.704)
(descr "Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-0000614551cc")
(attr exclude_from_pos_files)
(fp_text reference "J5" (at 0 -2.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 8f01dd4b-212d-41df-8027-58d79f97c530)
)
(fp_text value "Conn_01x01" (at 0 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 0b160bdb-cc3a-4674-b6b4-c248198aa236)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.57 0.57) (thickness 0.09)))
(tstamp de3e4078-22dc-40a0-9990-8de03b489dba)
)
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 603736bc-0985-475c-9f21-11a985cbeae2))
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 8de83956-b84e-4efd-9eb8-973ecc09aea7))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp a63693d8-0c59-496b-9f73-8c78e2733fd9))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp d2257215-4c06-49c3-b0e2-363fe4c84825))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp fb648128-5604-424a-9a76-7760f028a67f))
(pad "1" thru_hole roundrect (at 0 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696)
(net 2 "/OUT+-OUT") (pinfunction "Pin_1") (pintype "passive") (tstamp 2749bd24-8c99-4e07-8d20-c58ecf20ed4a))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(footprint "Connector_Wire:SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm" (layer "F.Cu")
(tedit 5EB70B44) (tstamp 00000000-0000-0000-0000-00006145e6ed)
(at 73.914 40.513)
(descr "Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator")
(tags "connector wire 0.5sqmm")
(property "Sheetfile" "C:/Users/Kai/HiDrive/users/kai-r/Elektronik/KiCad/v6/1Projects/TP4056-Bypass/TC4056-Bypass.sch")
(property "Sheetname" "")
(path "/00000000-0000-0000-0000-000061454892")
(attr exclude_from_pos_files)
(fp_text reference "J4" (at 0 -2.35) (layer "F.SilkS") hide
(effects (font (size 1 1) (thickness 0.15)))
(tstamp e77b112f-1a2a-4385-bcec-18b15bf65839)
)
(fp_text value "Conn_01x01" (at 0 2.35) (layer "F.Fab")
(effects (font (size 1 1) (thickness 0.15)))
(tstamp 02e7a787-6f2e-4b35-8737-05b9d25738cd)
)
(fp_text user "${REFERENCE}" (at 0 0) (layer "F.Fab")
(effects (font (size 0.57 0.57) (thickness 0.09)))
(tstamp d04466c5-f569-4e65-aacd-3f8a6e6df3b1)
)
(fp_line (start 1.9 1.65) (end 1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp 44e8fade-11c4-4ba8-aaa6-2a9ab27a73ab))
(fp_line (start -1.9 -1.65) (end -1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp 9d16f2af-fde5-4919-acca-9182946e3c20))
(fp_line (start -1.9 1.65) (end 1.9 1.65) (layer "F.CrtYd") (width 0.05) (tstamp d40c3b62-5ce0-49ca-a0f8-92b77a30da3a))
(fp_line (start 1.9 -1.65) (end -1.9 -1.65) (layer "F.CrtYd") (width 0.05) (tstamp ed55a16d-a813-4854-9609-f2e6f58691c5))
(fp_circle (center 0 0) (end 1.15 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp e15cf830-3c5c-47ff-9101-b2fa16a73ebe))
(pad "1" thru_hole roundrect (at 0 0) (size 2.3 2.3) (drill 1.1) (layers *.Cu *.Mask) (roundrect_rratio 0.108696)
(net 3 "/GND") (pinfunction "Pin_1") (pintype "passive") (tstamp a942c909-d8b1-4181-9b95-e7177508729f))
(model "${KICAD6_3DMODEL_DIR}/Connector_Wire.3dshapes/SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm.wrl"
(offset (xyz 0 0 0))
(scale (xyz 1 1 1))
(rotate (xyz 0 0 0))
)
)
(gr_arc (start 62.103 51.054) (mid 60.666159 50.458841) (end 60.071 49.022) (layer "Edge.Cuts") (width 0.1) (tstamp 00000000-0000-0000-0000-0000612f7152))
(gr_line (start 75.438 38.481) (end 62.103 38.481) (layer "Edge.Cuts") (width 0.1) (tstamp 00000000-0000-0000-0000-0000612f71d6))
(gr_line (start 77.47 49.022) (end 77.47 40.513) (layer "Edge.Cuts") (width 0.1) (tstamp 00000000-0000-0000-0000-0000612f71d7))
(gr_arc (start 77.47 49.022) (mid 76.874838 50.458826) (end 75.438 51.054) (layer "Edge.Cuts") (width 0.1) (tstamp 233cfd4a-3e69-493d-b359-bfb36c843ecb))
(gr_line (start 60.071 40.513) (end 60.071 49.022) (layer "Edge.Cuts") (width 0.1) (tstamp 466f8d1c-c448-4a97-87ec-4e94847952fc))
(gr_line (start 62.103 51.054) (end 75.438 51.054) (layer "Edge.Cuts") (width 0.1) (tstamp 594eb499-401a-4092-9a2b-1cc8f8989e5b))
(gr_arc (start 75.438 38.481) (mid 76.874853 39.076147) (end 77.47 40.513) (layer "Edge.Cuts") (width 0.1) (tstamp 7bafe9bc-eba9-4810-a855-8b4f34bb53ef))
(gr_arc (start 60.071 40.513) (mid 60.666159 39.076159) (end 62.103 38.481) (layer "Edge.Cuts") (width 0.1) (tstamp c4d75d3d-bb31-481d-a4a7-a0f504882b68))
(gr_text "OUT+" (at 76.073 44.704 -90) (layer "B.SilkS") (tstamp 0596f9ff-4052-4927-a55d-3089a4126e30)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "GND" (at 76.073 40.513 -90) (layer "B.SilkS") (tstamp 4016a84e-3039-443f-a44b-31548cf3a242)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "GND" (at 61.341 40.513 -90) (layer "B.SilkS") (tstamp 6a21945b-ac11-452f-92c7-7a2e6e8e1eb1)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "BAT+" (at 76.2 48.641 -90) (layer "B.SilkS") (tstamp 890bb632-7f64-428c-b0de-509bc7b4281a)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "IN+" (at 61.468 48.641 -90) (layer "B.SilkS") (tstamp 8b55a3f9-b5a3-4cb3-b651-825cdbb0b332)
(effects (font (size 0.8 0.8) (thickness 0.1)) (justify mirror))
)
(gr_text "BAT+" (at 76.073 48.641 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000612f71e3)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "IN+" (at 61.341 48.641 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000612f71f1)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "OUT+" (at 76.073 44.704 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000612f71f6)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "GND" (at 76.073 40.513 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000613392c2)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(gr_text "GND" (at 61.341 40.513 90) (layer "F.SilkS") (tstamp e99125d6-a0ca-4b37-842b-335296080c6e)
(effects (font (size 0.8 0.8) (thickness 0.1)))
)
(dimension (type aligned) (layer "F.CrtYd") (tstamp 0b534449-6aa2-4fdd-a881-e19fd589b7a9)
(pts (xy 80.01 38.481) (xy 80.01 51.054))
(height -1.524)
(gr_text "12,5730 mm" (at 80.384 44.7675 90) (layer "F.CrtYd") (tstamp 8d736486-09c1-407f-8334-faa398759efd)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.05) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(dimension (type aligned) (layer "F.CrtYd") (tstamp c4447d85-cd14-4241-8854-56d32b079d91)
(pts (xy 60.071 38.227) (xy 77.47 38.227))
(height -1.651)
(gr_text "17,3990 mm" (at 68.7705 35.426) (layer "F.CrtYd") (tstamp 361b4372-1d8d-4d42-a8ba-630a6d6eabcc)
(effects (font (size 1 1) (thickness 0.15)))
)
(format (units 3) (units_format 1) (precision 4))
(style (thickness 0.05) (arrow_length 1.27) (text_position_mode 0) (extension_height 0.58642) (extension_offset 0.5) keep_text_aligned)
)
(segment (start 66.421 44.704) (end 67.457 44.704) (width 0.5) (layer "F.Cu") (net 1) (tstamp 22f1a18b-d140-451a-a871-4c11294da049))
(segment (start 63.5 48.895) (end 63.5 46.254) (width 0.5) (layer "F.Cu") (net 1) (tstamp 4d1cca11-5e46-47b5-8388-c95d76596c70))
(segment (start 64.871 46.254) (end 66.421 44.704) (width 0.5) (layer "F.Cu") (net 1) (tstamp 7f251369-eace-44ab-848c-cd3c5957381c))
(segment (start 63.5 46.254) (end 64.871 46.254) (width 0.5) (layer "F.Cu") (net 1) (tstamp 7f4c333e-95dd-4f0c-b8a5-bc57a1ff22fb))
(segment (start 67.457 44.704) (end 67.457 47.9735) (width 0.5) (layer "F.Cu") (net 1) (tstamp f1efcc75-d568-4c5d-8f1d-9086ed6337d1))
(segment (start 73.914 46.482) (end 73.406 46.99) (width 0.5) (layer "F.Cu") (net 2) (tstamp 1b0fa014-c61e-4314-8f3d-160bae26aa4c))
(segment (start 71.247 49.8927) (end 67.5307 49.8927) (width 0.5) (layer "F.Cu") (net 2) (tstamp 277e030c-4d35-46dd-98da-58e887eeed5a))
(segment (start 69.957 44.704) (end 73.914 44.704) (width 0.5) (layer "F.Cu") (net 2) (tstamp 2c913718-efbb-4ec8-bb76-bae88d46ed51))
(segment (start 73.914 44.704) (end 73.914 46.482) (width 0.5) (layer "F.Cu") (net 2) (tstamp 47472735-41ec-4096-96fb-ce611f148c4c))
(segment (start 72.009 46.99) (end 71.247 47.752) (width 0.5) (layer "F.Cu") (net 2) (tstamp 7b9e31a4-3c7c-4eb1-ac9b-4929dcd04278))
(segment (start 73.406 46.99) (end 72.009 46.99) (width 0.5) (layer "F.Cu") (net 2) (tstamp f77d211d-fa5c-4b76-b48c-73957be3d61a))
(via (at 71.247 47.752) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 362f4ec2-025e-47c5-ba98-fdb095b1e25e))
(via (at 71.247 49.911) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 2) (tstamp 42fe4574-6996-4ff4-8210-1731bf126e50))
(segment (start 71.247 47.752) (end 71.247 49.911) (width 0.5) (layer "B.Cu") (net 2) (tstamp 2bf3c4f7-0469-4562-b83a-bf36a0cd5b51))
(segment (start 63.5 40.513) (end 63.5 43.154) (width 0.6) (layer "F.Cu") (net 3) (tstamp b2d193b6-565d-409d-9e8f-3def0ee034c9))
(segment (start 69.691 48.9275) (end 73.914 48.9275) (width 0.5) (layer "F.Cu") (net 4) (tstamp 41dd8dbe-60e2-416e-bb81-b16a7ee0f28c))
(zone (net 3) (net_name "/GND") (layer "B.Cu") (tstamp 673ed119-91db-4148-9876-56639d2d2321) (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 1))
(polygon
(pts
(xy 76.7588 50.9016)
(xy 60.706 50.8508)
(xy 60.706 38.9128)
(xy 76.7588 38.9128)
)
)
(filled_polygon
(layer "B.Cu")
(pts
(xy 72.350305 39.009502)
(xy 72.396798 39.063158)
(xy 72.406902 39.133432)
(xy 72.389444 39.181616)
(xy 72.326182 39.284245)
(xy 72.320038 39.297423)
(xy 72.268861 39.451716)
(xy 72.265995 39.465081)
(xy 72.256328 39.559439)
(xy 72.256 39.565856)
(xy 72.256 39.994885)
(xy 72.260475 40.010124)
(xy 72.261865 40.011329)
(xy 72.269548 40.013)
(xy 75.553885 40.013)
(xy 75.569124 40.008525)
(xy 75.570329 40.007135)
(xy 75.572 39.999452)
(xy 75.572 39.565904)
(xy 75.571663 39.559389)
(xy 75.561744 39.463797)
(xy 75.55885 39.450398)
(xy 75.507412 39.296217)
(xy 75.501239 39.283039)
(xy 75.443789 39.190202)
(xy 75.424951 39.12175)
(xy 75.446112 39.053981)
(xy 75.500553 39.008409)
(xy 75.559922 38.99822)
(xy 75.645826 39.004364)
(xy 75.66362 39.006922)
(xy 75.85842 39.049298)
(xy 75.875661 39.05436)
(xy 76.062455 39.124032)
(xy 76.07879 39.131493)
(xy 76.253758 39.227033)
(xy 76.268882 39.236752)
(xy 76.428469 39.356218)
(xy 76.442055 39.367991)
(xy 76.583009 39.508945)
(xy 76.594782 39.522531)
(xy 76.714248 39.682118)
(xy 76.723967 39.697242)
(xy 76.743387 39.732807)
(xy 76.7588 39.793192)
(xy 76.7588 49.741808)
(xy 76.743387 49.802193)
(xy 76.723967 49.837758)
(xy 76.714248 49.852882)
(xy 76.594782 50.012469)
(xy 76.583009 50.026055)
(xy 76.442055 50.167009)
(xy 76.428469 50.178782)
(xy 76.268882 50.298248)
(xy 76.253758 50.307967)
(xy 76.07879 50.403507)
(xy 76.062455 50.410968)
(xy 75.875661 50.48064)
(xy 75.85842 50.485702)
(xy 75.66362 50.528078)
(xy 75.645826 50.530636)
(xy 75.479399 50.542539)
(xy 75.46144 50.541793)
(xy 75.453152 50.541691)
(xy 75.444276 50.540309)
(xy 75.440362 50.540821)
(xy 75.374912 50.520728)
(xy 75.329081 50.466507)
(xy 75.319839 50.396114)
(xy 75.350121 50.3319)
(xy 75.355154 50.326555)
(xy 75.37802 50.30365)
(xy 75.413305 50.268303)
(xy 75.468487 50.178782)
(xy 75.502275 50.123968)
(xy 75.502276 50.123966)
(xy 75.506115 50.117738)
(xy 75.561797 49.949861)
(xy 75.5725 49.8454)
(xy 75.5725 47.9446)
(xy 75.561526 47.838835)
(xy 75.532556 47.752)
(xy 75.507868 47.678003)
(xy 75.50555 47.671055)
(xy 75.412478 47.520652)
(xy 75.287303 47.395695)
(xy 75.272758 47.386729)
(xy 75.142968 47.306725)
(xy 75.142966 47.306724)
(xy 75.136738 47.302885)
(xy 74.976254 47.249655)
(xy 74.975389 47.249368)
(xy 74.975387 47.249368)
(xy 74.968861 47.247203)
(xy 74.962025 47.246503)
(xy 74.962022 47.246502)
(xy 74.918969 47.242091)
(xy 74.8644 47.2365)
(xy 72.9636 47.2365)
(xy 72.960354 47.236837)
(xy 72.96035 47.236837)
(xy 72.864693 47.246762)
(xy 72.864689 47.246763)
(xy 72.857835 47.247474)
(xy 72.851299 47.249655)
(xy 72.851297 47.249655)
(xy 72.719195 47.293728)
(xy 72.690055 47.30345)
(xy 72.539652 47.396522)
(xy 72.414695 47.521697)
(xy 72.410856 47.527925)
(xy 72.410852 47.52793)
(xy 72.369023 47.595789)
(xy 72.316251 47.643282)
(xy 72.246179 47.654704)
(xy 72.181056 47.62643)
(xy 72.141556 47.567436)
(xy 72.140806 47.564579)
(xy 72.140542 47.562072)
(xy 72.081527 47.380444)
(xy 71.98604 47.215056)
(xy 71.858253 47.073134)
(xy 71.703752 46.960882)
(xy 71.697724 46.958198)
(xy 71.697722 46.958197)
(xy 71.535319 46.885891)
(xy 71.535318 46.885891)
(xy 71.529288 46.883206)
(xy 71.435887 46.863353)
(xy 71.348944 46.844872)
(xy 71.348939 46.844872)
(xy 71.342487 46.8435)
(xy 71.151513 46.8435)
(xy 71.145061 46.844872)
(xy 71.145056 46.844872)
(xy 71.058113 46.863353)
(xy 70.964712 46.883206)
(xy 70.958682 46.885891)
(xy 70.958681 46.885891)
(xy 70.796278 46.958197)
(xy 70.796276 46.958198)
(xy 70.790248 46.960882)
(xy 70.635747 47.073134)
(xy 70.50796 47.215056)
(xy 70.412473 47.380444)
(xy 70.353458 47.562072)
(xy 70.352768 47.568633)
(xy 70.352768 47.568635)
(xy 70.334186 47.745435)
(xy 70.333496 47.752)
(xy 70.334186 47.758565)
(xy 70.342074 47.833611)
(xy 70.353458 47.941928)
(xy 70.412473 48.123556)
(xy 70.415776 48.129278)
(xy 70.415777 48.129279)
(xy 70.471619 48.225999)
(xy 70.4885 48.288999)
(xy 70.4885 49.374001)
(xy 70.471619 49.437)
(xy 70.412473 49.539444)
(xy 70.353458 49.721072)
(xy 70.352768 49.727633)
(xy 70.352768 49.727635)
(xy 70.344932 49.802193)
(xy 70.333496 49.911)
(xy 70.334186 49.917565)
(xy 70.352541 50.092199)
(xy 70.353458 50.100928)
(xy 70.412473 50.282556)
(xy 70.4439 50.336988)
(xy 70.455165 50.3565)
(xy 70.471903 50.425495)
(xy 70.448683 50.492587)
(xy 70.392876 50.536474)
(xy 70.346046 50.5455)
(xy 65.026407 50.5455)
(xy 64.958286 50.525498)
(xy 64.911793 50.471842)
(xy 64.901689 50.401568)
(xy 64.931183 50.336988)
(xy 64.937234 50.330482)
(xy 64.96402 50.30365)
(xy 64.999305 50.268303)
(xy 65.054487 50.178782)
(xy 65.088275 50.123968)
(xy 65.088276 50.123966)
(xy 65.092115 50.117738)
(xy 65.147797 49.949861)
(xy 65.1585 49.8454)
(xy 65.1585 47.9446)
(xy 65.147526 47.838835)
(xy 65.118556 47.752)
(xy 65.093868 47.678003)
(xy 65.09155 47.671055)
(xy 64.998478 47.520652)
(xy 64.873303 47.395695)
(xy 64.858758 47.386729)
(xy 64.728968 47.306725)
(xy 64.728966 47.306724)
(xy 64.722738 47.302885)
(xy 64.562254 47.249655)
(xy 64.561389 47.249368)
(xy 64.561387 47.249368)
(xy 64.554861 47.247203)
(xy 64.548025 47.246503)
(xy 64.548022 47.246502)
(xy 64.504969 47.242091)
(xy 64.4504 47.2365)
(xy 62.5496 47.2365)
(xy 62.546354 47.236837)
(xy 62.54635 47.236837)
(xy 62.450693 47.246762)
(xy 62.450689 47.246763)
(xy 62.443835 47.247474)
(xy 62.437299 47.249655)
(xy 62.437297 47.249655)
(xy 62.305195 47.293728)
(xy 62.276055 47.30345)
(xy 62.125652 47.396522)
(xy 62.000695 47.521697)
(xy 61.996855 47.527927)
(xy 61.996854 47.527928)
(xy 61.925749 47.643282)
(xy 61.907885 47.672262)
(xy 61.852203 47.840139)
(xy 61.8415 47.9446)
(xy 61.8415 49.8454)
(xy 61.841837 49.848646)
(xy 61.841837 49.84865)
(xy 61.848988 49.917565)
(xy 61.852474 49.951165)
(xy 61.90845 50.118945)
(xy 62.001522 50.269348)
(xy 62.052273 50.32001)
(xy 62.086352 50.382292)
(xy 62.081349 50.453112)
(xy 62.038852 50.509985)
(xy 61.972354 50.534854)
(xy 61.954267 50.534862)
(xy 61.895175 50.530636)
(xy 61.87738 50.528078)
(xy 61.68258 50.485702)
(xy 61.665339 50.48064)
(xy 61.478545 50.410968)
(xy 61.46221 50.403507)
(xy 61.287242 50.307967)
(xy 61.272118 50.298248)
(xy 61.112531 50.178782)
(xy 61.098945 50.167009)
(xy 60.957991 50.026055)
(xy 60.946218 50.012469)
(xy 60.826752 49.852882)
(xy 60.817032 49.837758)
(xy 60.721496 49.662796)
(xy 60.714107 49.646653)
(xy 60.714023 49.646429)
(xy 60.706 49.602187)
(xy 60.706 45.6544)
(xy 72.2555 45.6544)
(xy 72.266474 45.760165)
(xy 72.32245 45.927945)
(xy 72.415522 46.078348)
(xy 72.540697 46.203305)
(xy 72.546927 46.207145)
(xy 72.546928 46.207146)
(xy 72.68409 46.291694)
(xy 72.691262 46.296115)
(xy 72.771005 46.322564)
(xy 72.852611 46.349632)
(xy 72.852613 46.349632)
(xy 72.859139 46.351797)
(xy 72.865975 46.352497)
(xy 72.865978 46.352498)
(xy 72.909031 46.356909)
(xy 72.9636 46.3625)
(xy 74.8644 46.3625)
(xy 74.867646 46.362163)
(xy 74.86765 46.362163)
(xy 74.963307 46.352238)
(xy 74.963311 46.352237)
(xy 74.970165 46.351526)
(xy 74.976701 46.349345)
(xy 74.976703 46.349345)
(xy 75.108805 46.305272)
(xy 75.137945 46.29555)
(xy 75.288348 46.202478)
(xy 75.413305 46.077303)
(xy 75.506115 45.926738)
(xy 75.561797 45.758861)
(xy 75.5725 45.6544)
(xy 75.5725 43.7536)
(xy 75.561526 43.647835)
(xy 75.50555 43.480055)
(xy 75.412478 43.329652)
(xy 75.287303 43.204695)
(xy 75.281072 43.200854)
(xy 75.142968 43.115725)
(xy 75.142966 43.115724)
(xy 75.136738 43.111885)
(xy 74.976254 43.058655)
(xy 74.975389 43.058368)
(xy 74.975387 43.058368)
(xy 74.968861 43.056203)
(xy 74.962025 43.055503)
(xy 74.962022 43.055502)
(xy 74.918969 43.051091)
(xy 74.8644 43.0455)
(xy 72.9636 43.0455)
(xy 72.960354 43.045837)
(xy 72.96035 43.045837)
(xy 72.864693 43.055762)
(xy 72.864689 43.055763)
(xy 72.857835 43.056474)
(xy 72.851299 43.058655)
(xy 72.851297 43.058655)
(xy 72.719195 43.102728)
(xy 72.690055 43.11245)
(xy 72.539652 43.205522)
(xy 72.414695 43.330697)
(xy 72.321885 43.481262)
(xy 72.266203 43.649139)
(xy 72.2555 43.7536)
(xy 72.2555 45.6544)
(xy 60.706 45.6544)
(xy 60.706 41.460096)
(xy 61.842 41.460096)
(xy 61.842337 41.466611)
(xy 61.852256 41.562203)
(xy 61.85515 41.575602)
(xy 61.906588 41.729783)
(xy 61.912762 41.742962)
(xy 61.998063 41.880807)
(xy 62.007099 41.892208)
(xy 62.12183 42.006739)
(xy 62.133241 42.015751)
(xy 62.271245 42.100818)
(xy 62.284423 42.106962)
(xy 62.438716 42.158139)
(xy 62.452081 42.161005)
(xy 62.546439 42.170672)
(xy 62.552855 42.171)
(xy 62.981885 42.171)
(xy 62.997124 42.166525)
(xy 62.998329 42.165135)
(xy 63 42.157452)
(xy 63 42.152885)
(xy 64 42.152885)
(xy 64.004475 42.168124)
(xy 64.005865 42.169329)
(xy 64.013548 42.171)
(xy 64.447096 42.171)
(xy 64.453611 42.170663)
(xy 64.549203 42.160744)
(xy 64.562602 42.15785)
(xy 64.716783 42.106412)
(xy 64.729962 42.100238)
(xy 64.867807 42.014937)
(xy 64.879208 42.005901)
(xy 64.993739 41.89117)
(xy 65.002751 41.879759)
(xy 65.087818 41.741755)
(xy 65.093962 41.728577)
(xy 65.145139 41.574284)
(xy 65.148005 41.560919)
(xy 65.157672 41.466561)
(xy 65.158 41.460145)
(xy 65.158 41.460096)
(xy 72.256 41.460096)
(xy 72.256337 41.466611)
(xy 72.266256 41.562203)
(xy 72.26915 41.575602)
(xy 72.320588 41.729783)
(xy 72.326762 41.742962)
(xy 72.412063 41.880807)
(xy 72.421099 41.892208)
(xy 72.53583 42.006739)
(xy 72.547241 42.015751)
(xy 72.685245 42.100818)
(xy 72.698423 42.106962)
(xy 72.852716 42.158139)
(xy 72.866081 42.161005)
(xy 72.960439 42.170672)
(xy 72.966855 42.171)
(xy 73.395885 42.171)
(xy 73.411124 42.166525)
(xy 73.412329 42.165135)
(xy 73.414 42.157452)
(xy 73.414 42.152885)
(xy 74.414 42.152885)
(xy 74.418475 42.168124)
(xy 74.419865 42.169329)
(xy 74.427548 42.171)
(xy 74.861096 42.171)
(xy 74.867611 42.170663)
(xy 74.963203 42.160744)
(xy 74.976602 42.15785)
(xy 75.130783 42.106412)
(xy 75.143962 42.100238)
(xy 75.281807 42.014937)
(xy 75.293208 42.005901)
(xy 75.407739 41.89117)
(xy 75.416751 41.879759)
(xy 75.501818 41.741755)
(xy 75.507962 41.728577)
(xy 75.559139 41.574284)
(xy 75.562005 41.560919)
(xy 75.571672 41.466561)
(xy 75.572 41.460145)
(xy 75.572 41.031115)
(xy 75.567525 41.015876)
(xy 75.566135 41.014671)
(xy 75.558452 41.013)
(xy 74.432115 41.013)
(xy 74.416876 41.017475)
(xy 74.415671 41.018865)
(xy 74.414 41.026548)
(xy 74.414 42.152885)
(xy 73.414 42.152885)
(xy 73.414 41.031115)
(xy 73.409525 41.015876)
(xy 73.408135 41.014671)
(xy 73.400452 41.013)
(xy 72.274115 41.013)
(xy 72.258876 41.017475)
(xy 72.257671 41.018865)
(xy 72.256 41.026548)
(xy 72.256 41.460096)
(xy 65.158 41.460096)
(xy 65.158 41.031115)
(xy 65.153525 41.015876)
(xy 65.152135 41.014671)
(xy 65.144452 41.013)
(xy 64.018115 41.013)
(xy 64.002876 41.017475)
(xy 64.001671 41.018865)
(xy 64 41.026548)
(xy 64 42.152885)
(xy 63 42.152885)
(xy 63 41.031115)
(xy 62.995525 41.015876)
(xy 62.994135 41.014671)
(xy 62.986452 41.013)
(xy 61.860115 41.013)
(xy 61.844876 41.017475)
(xy 61.843671 41.018865)
(xy 61.842 41.026548)
(xy 61.842 41.460096)
(xy 60.706 41.460096)
(xy 60.706 39.932813)
(xy 60.714023 39.888571)
(xy 60.714107 39.888347)
(xy 60.721496 39.872204)
(xy 60.817032 39.697242)
(xy 60.826752 39.682118)
(xy 60.946218 39.522531)
(xy 60.957991 39.508945)
(xy 61.098945 39.367991)
(xy 61.112531 39.356218)
(xy 61.272118 39.236752)
(xy 61.287242 39.227033)
(xy 61.46221 39.131493)
(xy 61.478545 39.124032)
(xy 61.665339 39.05436)
(xy 61.68258 39.049298)
(xy 61.825477 39.018213)
(xy 61.896293 39.023278)
(xy 61.953128 39.065825)
(xy 61.977939 39.132346)
(xy 61.95952 39.207451)
(xy 61.91218 39.28425)
(xy 61.906038 39.297423)
(xy 61.854861 39.451716)
(xy 61.851995 39.465081)
(xy 61.842328 39.559439)
(xy 61.842 39.565856)
(xy 61.842 39.994885)
(xy 61.846475 40.010124)
(xy 61.847865 40.011329)
(xy 61.855548 40.013)
(xy 65.139885 40.013)
(xy 65.155124 40.008525)
(xy 65.156329 40.007135)
(xy 65.158 39.999452)
(xy 65.158 39.565904)
(xy 65.157663 39.559389)
(xy 65.147744 39.463797)
(xy 65.14485 39.450398)
(xy 65.093412 39.296217)
(xy 65.087238 39.283038)
(xy 65.024592 39.181803)
(xy 65.005754 39.113351)
(xy 65.026915 39.045581)
(xy 65.081356 39.00001)
(xy 65.131736 38.9895)
(xy 72.282184 38.9895)
)
)
)
)