commit 7b0a5df0114cddcdc61879216980e0b1d8329211 Author: Arne van Iterson Date: Sun Jun 2 00:44:57 2024 +0200 This is one of the commits in the history of commits diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a63bc0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# For PCBs designed using KiCad: https://www.kicad.org/ +# Format documentation: https://kicad.org/help/file-formats/ + +# Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.kicad_sch-bak +*-backups +*.kicad_prl +*.sch-bak +*~ +_autosave-* +*.tmp +*-save.pro +*-save.kicad_pcb +fp-info-cache + +# Netlist files (exported from Eeschema) +*.net + +# Autorouter files (exported from Pcbnew) +*.dsn +*.ses + +# Exported BOM files +*.xml +*.csv diff --git a/JLCPCB.kicad_dru b/JLCPCB.kicad_dru new file mode 100644 index 0000000..c42eb3c --- /dev/null +++ b/JLCPCB.kicad_dru @@ -0,0 +1,133 @@ +(version 1) +# Custom Design Rules (DRC) for KiCAD 7.0 (Stored in '.kicad_dru' file). +# +# Matching JLCPCB capabilities: https://jlcpcb.com/capabilities/pcb-capabilities +# +# KiCad documentation: https://docs.kicad.org/master/id/pcbnew/pcbnew_advanced.html#custom_design_rules +# +# Inspiration +# - https://gist.github.com/darkxst/f713268e5469645425eed40115fb8b49 (with comments) +# - https://gist.github.com/denniskupec/e163d13b0a64c2044bd259f64659485e (with comments) + +# TODO new rule: NPTH pads. +# Inner diameter of pad should be 0.4-0.5 mm larger than NPTH drill diameter. +# JLCPCB: "We make NPTH via dry sealing film process, if customer would like a NPTH but around with pad/copper, our engineer will dig out around pad/copper about 0.2mm-0.25mm, otherwise the metal potion will be flowed into the hole and it becomes a PTH. (there will be no copper dig out optimization for single board)." + +# TODO: new rule for plated slots: min diameter/width 0.5mm +# JLCPCB: "The minimum plated slot width is 0.5mm, which is drawn with a pad." + +# TODO new rule: non-plated slots: min diameter/width 1.0mm +# JLCPCB: "The minimum Non-Plated Slot Width is 1.0mm, please draw the slot outline in the mechanical layer(GML or GKO)"" + +(rule "Track width, outer layer (1oz copper)" + (layer outer) + (condition "A.Type == 'track'") + (constraint track_width (min 0.127mm)) +) + +(rule "Track spacing, outer layer (1oz copper)" + (layer outer) + (condition "A.Type == 'track' && B.Type == A.Type") + (constraint clearance (min 0.127mm)) +) + +(rule "Track width, inner layer" + (layer inner) + (condition "A.Type == 'track'") + (constraint track_width (min 0.09mm)) +) + +(rule "Track spacing, inner layer" + (layer inner) + (condition "A.Type == 'track' && B.Type == A.Type") + (constraint clearance (min 0.09mm)) +) + +(rule "Silkscreen text" + (layer "?.Silkscreen") + (condition "A.Type == 'Text' || A.Type == 'Text Box'") + (constraint text_thickness (min 0.15mm)) + (constraint text_height (min 1mm)) +) + +(rule "Pad to Silkscreen" + (layer outer) + (condition "A.Type == 'pad' && B.Layer == '?.Silkscreen'") + (constraint silk_clearance (min 0.15mm)) +) + +(rule "Edge (routed) to track clearance" + (condition "A.Type == 'track'") + (constraint edge_clearance (min 0.3mm)) +) + +#(rule "Edge (v-cut) to track clearance" +# (condition "A.Type == 'track'") +# (constraint edge_clearance (min 0.4mm)) +#) + +# JLCPCB restrictions ambiguous: +# Illustration: 0.2 mm, 1&2 layer: 0.3 mm, multilayer: "(0.15mm more costly)" +# This rule handles diameter minimum and maximum for ALL holes. +# Other specialized rules handle restrictions (e.g. Via, PTH, NPTH) +(rule "Hole diameter" + (constraint hole_size (min 0.2mm) (max 6.3mm)) +) + +(rule "Hole (NPTH) diameter" + (layer outer) + (condition "!A.isPlated()") + (constraint hole_size (min 0.5mm)) +) + +# TODO: Hole to board edge ≥ 1 mm. Min. board size 10 × 10 mm +(rule "Hole (castellated) diameter" + (layer outer) + (condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'") + (constraint hole_size (min 0.6mm)) +) + +# JLCPCB: "Via diameter should be 0.1mm(0.15mm preferred) larger than Via hole size" (illustration shows diameters for both dimensions) +# JLCPCB: PTH: "The annular ring size will be enlarged to 0.15mm in production." +(rule "Annular ring width (via and PTH)" + (layer outer) + (condition "A.isPlated()") + (constraint annular_width (min 0.075mm)) +) + +(rule "Clearance: hole to hole (perimeter), different nets" + (layer outer) + (condition "A.Net != B.Net") + (constraint hole_to_hole (min 0.5mm)) +) + +(rule "Clearance: hole to hole (perimeter), same net" + (layer outer) + (condition "A.Net == B.Net") + (constraint hole_to_hole (min 0.254mm)) +) + +(rule "Clearance: track to NPTH hole (perimeter)" +# (condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track' && A.Net != B.Net") + (condition "!A.isPlated() && B.Type == 'track' && A.Net != B.Net") + (constraint hole_clearance (min 0.254mm)) +) + +(rule "Clearance: track to PTH hole perimeter" + (condition "A.isPlated() && B.Type == 'track' && A.Net != B.Net") + (constraint hole_clearance (min 0.33mm)) +) + +# TODO: try combining with rule "Clearance: PTH to track, different nets" +(rule "Clearance: track to pad" + (condition "A.Type == 'pad' && B.Type == 'track' && A.Net != B.Net") + (constraint clearance (min 0.2mm)) +) + +(rule "Clearance: pad/via to pad/via" + (layer outer) +# (condition "(A.Type == 'Pad' || A.Type == 'Via') && (B.Type == 'Pad' || B.Type == 'Via') && A.Net != B.Net") + (condition "A.isPlated() && B.isPlated() && A.Net != B.Net") + (constraint clearance (min 0.127mm)) +) + diff --git a/README.md b/README.md new file mode 100644 index 0000000..e3eee51 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# ESP32 BLE Caliper mod +Adds BLE keyboard functionality to most cheap digital calipers. Just the KiCad project for now, firmware will be added later when, you know, it exists. + +## KiCad Board render +![](./res/render.png) \ No newline at end of file diff --git a/caliper_esp32.kicad_pcb b/caliper_esp32.kicad_pcb new file mode 100644 index 0000000..05afc60 --- /dev/null +++ b/caliper_esp32.kicad_pcb @@ -0,0 +1,22847 @@ +(kicad_pcb + (version 20240108) + (generator "pcbnew") + (generator_version "8.0") + (general + (thickness 1.6) + (legacy_teardrops no) + ) + (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 + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (plot_on_all_layers_selection 0x0000000_00000000) + (disableapertmacros no) + (usegerberextensions no) + (usegerberattributes yes) + (usegerberadvancedattributes yes) + (creategerberjobfile yes) + (dashed_line_dash_ratio 12.000000) + (dashed_line_gap_ratio 3.000000) + (svgprecision 4) + (plotframeref no) + (viasonmask no) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plotreference yes) + (plotvalue yes) + (plotfptext yes) + (plotinvisibletext no) + (sketchpadsonfab no) + (subtractmaskfromsilk no) + (outputformat 1) + (mirror no) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "Net-(Q1-S)") + (net 2 "Net-(D1-K)") + (net 3 "Net-(D2-K)") + (net 4 "Net-(D3-A)") + (net 5 "Net-(D4-A)") + (net 6 "/MCU_EN") + (net 7 "Net-(J1-DATA)") + (net 8 "Net-(J1-CLK)") + (net 9 "Net-(J2-CC2)") + (net 10 "Net-(Q1-G)") + (net 11 "Net-(J2-VBUS-PadA4)") + (net 12 "Net-(J2-CC1)") + (net 13 "Net-(U2-~{STDBY})") + (net 14 "Net-(U2-~{CHRG})") + (net 15 "Net-(U4-IO19)") + (net 16 "/MCU_BOOT") + (net 17 "Net-(U2-PROG)") + (net 18 "Net-(U4-IO20)") + (net 19 "Net-(U2-TEMP)") + (net 20 "Net-(U4-IO10)") + (net 21 "Net-(U4-IO12)") + (net 22 "Net-(U4-IO11)") + (net 23 "Net-(U4-IO13)") + (net 24 "/MCU_TX") + (net 25 "Net-(BT1--)") + (net 26 "Net-(BT1-+)") + (net 27 "/BAT_VCC_OUT") + (net 28 "unconnected-(U3-TD-Pad4)") + (net 29 "Net-(U3-OC)") + (net 30 "unconnected-(U4-IO38-Pad34)") + (net 31 "unconnected-(U4-IO35-Pad31)") + (net 32 "unconnected-(U4-IO47-Pad27)") + (net 33 "unconnected-(U4-IO4-Pad8)") + (net 34 "Net-(U3-VCC)") + (net 35 "unconnected-(U4-IO34-Pad29)") + (net 36 "+3V3") + (net 37 "GND") + (net 38 "/UD+") + (net 39 "/MCU_RX") + (net 40 "/UD-") + (net 41 "+1V8") + (net 42 "unconnected-(U4-IO37-Pad33)") + (net 43 "unconnected-(U4-IO48-Pad30)") + (net 44 "/IO17") + (net 45 "Net-(Q3-B)") + (net 46 "Net-(Q4-B)") + (net 47 "/IO16") + (net 48 "unconnected-(U4-IO1-Pad5)") + (net 49 "Net-(U3-CS)") + (net 50 "Net-(D1-A)") + (net 51 "unconnected-(U4-IO5-Pad9)") + (net 52 "unconnected-(U4-IO2-Pad6)") + (net 53 "unconnected-(U4-IO33-Pad28)") + (net 54 "Net-(U4-IO21)") + (net 55 "Net-(U3-OD)") + (net 56 "unconnected-(U5-D1D2-Pad2)") + (net 57 "Net-(U5-G2)") + (net 58 "unconnected-(U5-D1D2-Pad5)") + (net 59 "unconnected-(U7-NC-Pad4)") + (net 60 "unconnected-(U1-~{CTS}-Pad5)") + (net 61 "unconnected-(U4-IO36-Pad32)") + (net 62 "unconnected-(U4-IO6-Pad10)") + (net 63 "unconnected-(U4-IO26-Pad26)") + (net 64 "unconnected-(U6-NC-Pad4)") + (net 65 "Net-(JP1-A)") + (net 66 "Net-(JP2-A)") + (net 67 "Net-(SW3-C)") + (net 68 "unconnected-(SW3-A-Pad1)") + (net 69 "Net-(U4-IO3)") + (net 70 "Net-(U4-IO45)") + (net 71 "Net-(U4-IO46)") + (net 72 "Net-(J3-Pin_4)") + (net 73 "Net-(J3-Pin_8)") + (net 74 "Net-(J3-Pin_6)") + (net 75 "Net-(J3-Pin_10)") + (net 76 "/IO15") + (net 77 "/IO14") + (net 78 "/IO18") + (net 79 "/IO7") + (net 80 "/IO8") + (net 81 "/IO9") + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "01197455-ca2d-465a-b842-942f324fe764") + (at 40.485 49.95 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R17" + (at -2.55 -0.515 180) + (layer "F.SilkS") + (uuid "d1a73229-5c7e-40ec-8fac-149dd75562cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "c97de832-8053-4083-8ebf-631f0f99da5c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "80c2af72-f915-44d0-9378-1630282db688") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "88bb3d0b-dc5d-4e62-b135-e8b48d26c7cb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a62b5aac-5845-439d-babb-86387c98a336") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/64989d52-ec0b-4408-a7c6-07616319f9c6") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "48b89949-dfa5-4338-aeff-d388f5d959c4") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "36b5fc18-f406-4cce-8852-9884c29de063") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "67bafee8-3475-45a7-9c88-5b40a1637af4") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "110648de-e73f-43d5-9bf9-03c853928be9") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fbd6d00b-6bb6-43fa-ba75-5de8e3aaee85") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4e70d17d-e8e3-4d5c-acec-a769014aae11") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ec396fa7-3484-4921-aa0e-c25f11dd2a90") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "15405c6c-d6d4-44ca-a96d-8b7241513df3") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9475c345-ef69-40ee-852f-a35537aa4490") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "32f0f733-3d80-4ffe-b0b8-4b44d978a359") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "b8b115e3-7179-449d-97d3-555cd5999bb9") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(U5-G2)") + (pintype "passive") + (uuid "57ee1d71-f2d3-45eb-99c8-dd54bdb5fb65") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 29 "Net-(U3-OC)") + (pintype "passive") + (uuid "effdfc68-60cd-4162-94b9-b6f6a768ccb7") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (layer "F.Cu") + (uuid "12b7d6a6-6a8a-4172-b916-5fe10d7032e0") + (at 60 47.6) + (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open") + (tags "solder jumper open") + (property "Reference" "JP1" + (at 0 -1.8 0) + (layer "F.SilkS") + (uuid "445fa50a-c7b0-4be4-8f1a-2d67d98cf8c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SolderJumper_2_Open" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "2e0abac4-14ea-423c-9814-93075cfb0ae1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8c4663c3-5ed6-4a09-8185-f00dda310269") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e0fde83a-cf29-485d-8f22-9ba760ddaa1a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f6704657-8bdd-4f9a-9576-09881d0e0c63") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Open*") + (path "/190c3c74-5556-4edd-8c19-3c36f6099be0") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (fp_line + (start -1.4 -1) + (end 1.4 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22aea8db-5f0f-4554-a2f4-c1726f996f65") + ) + (fp_line + (start -1.4 1) + (end -1.4 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0e84d8c-79f6-4374-a796-884a40145d90") + ) + (fp_line + (start 1.4 -1) + (end 1.4 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "91d61f5c-1750-4465-b8f5-7e833fe239e7") + ) + (fp_line + (start 1.4 1) + (end -1.4 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "28208264-4fe0-41f2-8439-4da0103bd0d8") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8862deaf-4aa1-48aa-b6fa-0a24b2759b94") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8a9a0eac-9e4c-4d8e-99c0-221c7e28851e") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d26c14e4-91a1-4d79-8a05-030275fc22cf") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "15085d61-b576-4d61-b5fc-33f5c1a2a67c") + ) + (pad "1" smd custom + (at -0.725 0) + (size 0.3 0.3) + (layers "F.Cu" "F.Mask") + (net 65 "Net-(JP1-A)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_poly + (pts + (xy 1 0) (xy 0.5 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "98c41de8-a14a-4707-8a84-5527e3ecd212") + ) + (pad "2" smd custom + (at 0.725 0) + (size 0.3 0.3) + (layers "F.Cu" "F.Mask") + (net 36 "+3V3") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_poly + (pts + (xy 0.5 0.75) (xy -0.65 0.75) (xy -0.15 0) (xy -0.65 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "ae8ff775-8c47-447c-90c4-827b487b2945") + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "1ec29d14-68a5-4766-b37b-b93aa418bf03") + (at 79.85 51.5 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R11" + (at -2.3 -0.65 0) + (layer "F.SilkS") + (uuid "4f6a9b03-9ae8-4894-b66f-a587261a988d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10K" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "4d059036-958a-4ad1-8723-52c7afb8d11d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6b23f457-8dd9-4c6a-85ea-b308da52b5b3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "88437b75-0512-4e97-8d5c-ace4fdf5e349") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aa56a91f-1a6e-4fe5-b8d0-0241534dee05") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/8473e3cd-5974-422d-944d-2d5216970efa") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "46d4945c-f264-4037-a347-b8dd60e4f1c1") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5de821c2-ad70-42de-bca9-13cae0fad9c0") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dabf401f-0f06-4019-8c05-c56748955d11") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "333821bc-5953-4929-9411-558b2661626b") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0649ab85-4121-4605-a769-6b13e4b79b82") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a267264-218b-4a64-a8ef-6d523818cff6") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1c60215b-f68f-431a-a50b-f1d2ad7eb1fc") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5a410d67-78d3-4902-b12b-757638212ea1") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e145aa5b-4a7a-4364-947e-407b634db67c") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bbd47523-3a76-4157-adb2-de909a01de4d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3b43e621-afc1-421e-85f4-d54e2fb047b2") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 36 "+3V3") + (pintype "passive") + (uuid "7d79adcf-baa2-4623-b37c-8db496739060") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 78 "/IO18") + (pintype "passive") + (uuid "71f1b7c1-e303-4886-93a2-e47fe6e82f63") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:MSOP-10_3x3mm_P0.5mm" + (layer "F.Cu") + (uuid "1fc3a6de-7402-4ece-8349-8eee247fca30") + (at 52.92 40) + (descr "MSOP, 10 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "MSOP SO") + (property "Reference" "U1" + (at 0 -2.45 0) + (layer "F.SilkS") + (uuid "24bdfe5f-cd07-4f3c-9970-f12c81b22f26") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "CH340X" + (at 0 2.45 0) + (layer "F.Fab") + (uuid "7df4b290-34a2-49a7-9fca-36ec93e5d50f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de54e8a8-a630-4d29-82c6-6fee0c84aa64") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://cdn.sparkfun.com/assets/5/0/a/8/5/CH340DS1.PDF" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd08cbf7-b15c-4eb4-be3f-9aa65cd1a36b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "USB serial converter, 5V-tolerant IO, UART, MSOP-10" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5000eeae-7f73-4535-8aa6-d68935ef9fbf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "MSOP*3x3mm*P0.5mm*") + (path "/a720478e-6176-48b8-b5ee-db455b337052") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 -1.61) + (end -1.5 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ea3746f6-0b0d-4637-88ed-c8fa41b28a79") + ) + (fp_line + (start 0 -1.61) + (end 1.5 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5de1bead-c982-4503-a6dd-593df288f33f") + ) + (fp_line + (start 0 1.61) + (end -1.5 1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2d01269a-3b5b-46a6-9db0-f6833e268244") + ) + (fp_line + (start 0 1.61) + (end 1.5 1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e14d27c5-70be-49d8-8715-5220e3068942") + ) + (fp_poly + (pts + (xy -2.2125 -1.435) (xy -2.4525 -1.765) (xy -1.9725 -1.765) (xy -2.2125 -1.435) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "d8b9bd7e-6b63-4170-bf24-499c73ac2830") + ) + (fp_line + (start -3.18 -1.75) + (end -3.18 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d648aab3-095b-44bb-b6ec-08b18c26638c") + ) + (fp_line + (start -3.18 1.75) + (end 3.18 1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "95d8bd50-aab6-43ab-8e8a-08035317f215") + ) + (fp_line + (start 3.18 -1.75) + (end -3.18 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f0e37ac-eb74-437f-81c8-ae6ad84d9062") + ) + (fp_line + (start 3.18 1.75) + (end 3.18 -1.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e4f0c0ae-a181-436e-a1c6-5ecd98c58f3e") + ) + (fp_line + (start -1.5 -0.75) + (end -0.75 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c1a93904-93da-42b5-90e5-88168350887c") + ) + (fp_line + (start -1.5 1.5) + (end -1.5 -0.75) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d115d103-f2de-4289-b531-b7e114301ac1") + ) + (fp_line + (start -0.75 -1.5) + (end 1.5 -1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "78b38c82-3937-4023-991d-ffadd62a4cf8") + ) + (fp_line + (start 1.5 -1.5) + (end 1.5 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9a27e4c1-144f-4fc9-a5ef-dfebd9503ac4") + ) + (fp_line + (start 1.5 1.5) + (end -1.5 1.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "825606a0-171d-4c4c-80e1-1e3b905ef1d5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "2c0d5384-71df-4848-a6b0-2fac51eca5dd") + (effects + (font + (size 0.75 0.75) + (thickness 0.11) + ) + ) + ) + (pad "1" smd roundrect + (at -2.1125 -1) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 38 "/UD+") + (pinfunction "UD+") + (pintype "bidirectional") + (uuid "b85b9408-499c-4072-b5d9-4eaf78cc6cac") + ) + (pad "2" smd roundrect + (at -2.1125 -0.5) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 40 "/UD-") + (pinfunction "UD-") + (pintype "bidirectional") + (uuid "6082f60f-736f-4889-b816-03b48edaddf4") + ) + (pad "3" smd roundrect + (at -2.1125 0) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "b50d4c68-1a7a-4d80-9399-9976f5c6efd0") + ) + (pad "4" smd roundrect + (at -2.1125 0.5) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 1 "Net-(Q1-S)") + (pinfunction "~{RTS}") + (pintype "output") + (uuid "48d9bf49-4598-44e4-83c3-197fbd3aa9d2") + ) + (pad "5" smd roundrect + (at -2.1125 1) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 60 "unconnected-(U1-~{CTS}-Pad5)") + (pinfunction "~{CTS}") + (pintype "input+no_connect") + (uuid "f8ad3319-f41c-4912-8a00-4306d7e0b886") + ) + (pad "6" smd roundrect + (at 2.1125 1) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 10 "Net-(Q1-G)") + (pinfunction "TNOW/~{DTR}") + (pintype "output") + (uuid "f01855ce-4a90-473b-84f3-26733bf74927") + ) + (pad "7" smd roundrect + (at 2.1125 0.5) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 36 "+3V3") + (pinfunction "VCC") + (pintype "power_in") + (uuid "78ff5bf2-9bc0-4262-add2-36fee5e200c9") + ) + (pad "8" smd roundrect + (at 2.1125 0) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 39 "/MCU_RX") + (pinfunction "TXD") + (pintype "output") + (uuid "f3741694-a53f-4526-a7ae-03f5340f4573") + ) + (pad "9" smd roundrect + (at 2.1125 -0.5) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 24 "/MCU_TX") + (pinfunction "RXD") + (pintype "input") + (uuid "edc93450-cee5-47c1-9958-bb1cd67ef958") + ) + (pad "10" smd roundrect + (at 2.1125 -1) + (size 1.625 0.35) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 36 "+3V3") + (pinfunction "V3") + (pintype "power_out") + (uuid "19fc59dd-a249-4848-914f-aea14a8636a2") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/MSOP-10_3x3mm_P0.5mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "2995ca0c-0494-4949-9bd3-1ff4aedf0329") + (at 37.6 58.79) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R16" + (at 2.9 0.01 0) + (layer "F.SilkS") + (uuid "9b1c6515-409a-4894-a33a-d5e80f8158a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1k" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "bb960c39-3394-429b-adc7-0f1d33de4f51") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3a439a55-7f9c-4449-8bd6-f25273ebeccd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "44d66490-efc3-4a9d-b894-0649e90c2e26") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6f0413e-19ff-4478-ae2e-a8794cca3033") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/fbe6e54a-6a27-4a89-bdee-c53b34482231") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f09d7039-ebc2-4e45-8022-47ef285571b3") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fd4986ea-a79c-446a-990e-e0c4da868e0a") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "404f2881-5956-44ec-b653-6c6a3e08c0f6") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d50ce606-d3c7-4965-b134-90a3e56edb7e") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c0685ee3-320e-44e7-be10-016948e578de") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "baf1e408-794d-41ac-93b8-813ed1e0e783") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2987fc8c-f22a-4a0b-b443-8ba0f8618f15") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "913b8d7e-9748-4a5f-91e9-0e94af07c2b6") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b93a28b0-1f3f-466a-b08c-674beb1c39d6") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "377bf381-1d8e-4c5b-ab1f-eb36d81d6122") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e6633bc7-33eb-4da7-b53c-c22fa6cce23e") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "24883495-6283-4ab4-acfd-37e49353109e") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 49 "Net-(U3-CS)") + (pintype "passive") + (uuid "315f776d-48de-41c8-89b6-6ccca7942468") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "2c73d2fa-7eb0-4589-baa0-db9edb739e74") + (at 55.0925 56.605) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R10" + (at -2.8075 0.025 0) + (layer "F.SilkS") + (uuid "2b3c4099-8ff0-4f69-baac-b53447e3720e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1K" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "990582ec-1d23-467d-ace9-c33e91821645") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ef70e4ab-c35f-4af2-aa62-d220686ee964") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da635d3e-85cf-41f1-a39a-d48088cf53b3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f911edff-0909-4ecd-a6df-f0757fc7d6fb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/b67ea552-c69f-4ca9-9e9f-7b99eda4d340") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1d1f3b9d-7496-407f-bfae-1221715cd6db") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "836bba34-4cbd-4efb-ac6c-b3197376ee48") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ad0abd1e-2340-4ad0-b0f9-63f3a91e302a") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d367cc06-d9b6-4976-bed7-6846f255f57d") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "515bbfb1-6002-43e1-a6df-842eaccf31ae") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "da518427-ab88-4a5a-a515-20993dbdcb8f") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e7eaa08-c31b-4a74-9bca-5fc753bca310") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "29723cdf-d2e4-4b60-84e5-e62842a20937") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "97065303-d163-4303-bf00-358dd38df03b") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "68e3bf09-b68b-44dd-a75a-609aefa5f79f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "958fdff2-534f-4ab5-945a-7098210b5277") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "Net-(D2-K)") + (pintype "passive") + (uuid "0ca4f97d-5514-42b6-8448-f335c9ebf66f") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 14 "Net-(U2-~{CHRG})") + (pintype "passive") + (uuid "6598dcac-0f8a-4ef3-9a77-c1d28703e62e") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED_0603_1608Metric" + (layer "F.Cu") + (uuid "2cdda357-cce2-4771-95c0-bc9efa64ac2c") + (at 74.15 57.9 90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D4" + (at 2.4 -1.15 -90) + (layer "F.SilkS") + (uuid "16e33969-2845-4bae-83d0-f43f9eb6042b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LED" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "1ca0dd19-b970-4910-9ea8-9c28617331e2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7fa19d6c-b704-418e-bb92-2b4897fe08db") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a1357e64-169f-4249-8ffd-9c363145b4ed") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "91b33ae3-f5fc-44df-a0fe-5da35559f0b4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/abbf64d8-b04e-4dbe-887f-ba3539fd3e6b") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0.8 -0.735) + (end -1.485 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b043286d-3944-4385-9ec5-defc857cf1dd") + ) + (fp_line + (start -1.485 -0.735) + (end -1.485 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7fa090e7-53a3-4491-a2a7-a23d3d7ef78b") + ) + (fp_line + (start -1.485 0.735) + (end 0.8 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8f90833f-c4e0-49bb-93d9-d5d4c567ff8b") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "26d53a55-b6b6-4e7e-8761-b87cf595f6a5") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9a900dbf-5b03-44ca-ba16-f8c1a3e6f005") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1f09dd0b-1eee-4f05-853f-a1438897c50c") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "eb467973-cb03-4174-bf95-756e6f3b2c7d") + ) + (fp_line + (start 0.8 -0.4) + (end -0.5 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "877b6b77-2439-4754-8d23-1b4ac470be0b") + ) + (fp_line + (start -0.5 -0.4) + (end -0.8 -0.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d55b91d5-884d-4f70-89c7-407c0d103575") + ) + (fp_line + (start -0.8 -0.1) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "749875ee-f962-4093-9ce6-98fc7f8bdbcc") + ) + (fp_line + (start 0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a591c16a-b707-4b9a-826c-85a5fd66773e") + ) + (fp_line + (start -0.8 0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bce47c51-0508-4357-88f7-cda03250b77f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "799f361a-bbbf-41d3-bdca-edff1ebfacca") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.7875 0 90) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "K") + (pintype "passive") + (uuid "79c526d6-bf60-46a6-bfc5-9e7d6c4a6c17") + ) + (pad "2" smd roundrect + (at 0.7875 0 90) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(D4-A)") + (pinfunction "A") + (pintype "passive") + (uuid "27b29fa8-7e25-4b95-8c07-e763f31971e7") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "321a3bae-3787-4671-b889-9ce5c55befad") + (at 57.45 47.925 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C8" + (at 2.375 1.25 -90) + (layer "F.SilkS") + (uuid "6a008f6b-f0f2-49c1-8e6f-dec9a78f0cfb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "eafbe67b-4bbb-45c1-b586-468b7fdc5c44") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db730691-1321-4476-97e8-9ff3ec3b66b8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "41b0a9bc-2145-495c-8a53-98337e52155f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "594d0481-538b-4843-99e7-a0869f800cd6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/11e9ab62-3ef2-4eb6-aa35-991e8f5c760b") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4d170d3d-24d5-4bb3-8c69-831f8d4ed026") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c9c9f1e9-bbc7-475e-a11f-71a4bcad8206") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0ef49248-28bb-4838-96ec-2565bee57a30") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "244e903d-15f0-4fc9-b8f2-6eb4e80ee8dc") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a7dc96c1-a602-423f-be72-fe64625c747e") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "36ade152-fe86-4376-9de6-8a701b2e46d8") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "31ade115-05bd-4f03-9a79-ec0a6ecd42bf") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cadcc787-9ad5-45c4-af2f-85f9317c1ce6") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b56b70e9-21ce-4377-85bf-c48db7839129") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55586924-b207-420c-8e27-77e8a4ebe919") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "d939fcf9-3277-4b3c-94a8-9350f0ed36c1") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "613a55b8-9f56-41a9-85a1-e1fc8f1f8b04") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 65 "Net-(JP1-A)") + (pintype "passive") + (uuid "a68c35b8-48bc-4da1-bffd-8da4d719746e") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "35120ecd-44c8-471f-81bf-716a0cfeb542") + (at 41 53.2 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R15" + (at -3.2 -0.9 90) + (layer "F.SilkS") + (uuid "3d6361ba-975e-423b-9155-f1176152efd2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2K" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "dea6bc70-5d91-40e2-8d09-a01045a3debb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b12b9af0-c31c-43eb-a718-b086a8a99493") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d934dbb9-4b20-495d-9992-7a7a0a79a400") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3fb2f50b-7745-41c2-926d-42283d88a46d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/3ac704ad-b18d-4fbc-a5b3-3c4667551fb1") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1c9e03f1-a825-4631-870d-1922007037b3") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4c863438-e938-490a-90ae-86f7e12faf33") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bcab1817-1140-4d6c-8486-1a144b8d0fcf") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "01a6958e-3341-49f0-b15f-5edce18345d4") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3c68c5bd-61d2-4b9a-828f-3709d5e6a22d") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7e54d452-9ff6-4948-8123-a5835e39a5fc") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "41076bf4-3046-4407-8a99-462d458e5072") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e947c81-9ca0-4cc3-9591-5a761c397959") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d5279e97-8646-46db-b689-b7aeb04cbbce") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7f01962c-c99f-4ab1-ac80-1a82f9985da0") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "9147366f-4b96-4f81-8487-0836559a88e2") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "Net-(U2-TEMP)") + (pintype "passive") + (uuid "41b3d690-8331-4364-bd6e-a81ac9550b03") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "8794556c-1905-44bd-88c5-e6d7abecaa33") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LOGO" + (layer "F.Cu") + (uuid "3e015d51-ea29-4853-a2f2-7b4831195341") + (at 63.4 42.3) + (property "Reference" "G***" + (at 0 0 0) + (layer "F.SilkS") + (hide yes) + (uuid "07d17a93-307f-4553-be8d-cb18162fde5e") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + ) + ) + (property "Value" "LOGO" + (at 0.75 0 0) + (layer "F.SilkS") + (hide yes) + (uuid "c2a12710-5e40-4a81-a60f-6c5ad465d271") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + ) + ) + (property "Footprint" "LOGO" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb4de221-9a42-435f-bd2e-3403da8b765f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de242932-d911-4390-9250-0313a4b71ff2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f891097f-b223-4db6-8953-70b5df530455") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (attr board_only exclude_from_pos_files exclude_from_bom) + (fp_poly + (pts + (xy 0.326119 -0.851014) (xy 0.490732 -0.68649) (xy 0.327716 -0.523387) (xy 0.290797 -0.486489) (xy 0.256722 -0.452514) + (xy 0.226466 -0.422427) (xy 0.201006 -0.397196) (xy 0.181317 -0.377788) (xy 0.168375 -0.36517) (xy 0.163157 -0.360308) + (xy 0.163104 -0.360284) (xy 0.162799 -0.366304) (xy 0.162513 -0.383604) (xy 0.162252 -0.411037) + (xy 0.162022 -0.447457) (xy 0.161827 -0.491721) (xy 0.161673 -0.542683) (xy 0.161567 -0.599198) + (xy 0.161512 -0.66012) (xy 0.161507 -0.687911) (xy 0.161507 -1.015539) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "700755ed-7992-4968-ad93-585c56f4b512") + ) + (fp_poly + (pts + (xy 0.326119 0.509367) (xy 0.490732 0.673892) (xy 0.327716 0.836995) (xy 0.290797 0.873892) (xy 0.256722 0.907868) + (xy 0.226466 0.937954) (xy 0.201006 0.963185) (xy 0.181317 0.982593) (xy 0.168375 0.995212) (xy 0.163157 1.000073) + (xy 0.163104 1.000098) (xy 0.162799 0.994077) (xy 0.162513 0.976778) (xy 0.162252 0.949345) (xy 0.162022 0.912924) + (xy 0.161827 0.86866) (xy 0.161673 0.817698) (xy 0.161567 0.761184) (xy 0.161512 0.700261) (xy 0.161507 0.67247) + (xy 0.161507 0.344842) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "fd63a9d2-0b75-4126-bfe2-c0a1c292dd1d") + ) + (fp_poly + (pts + (xy 0.059723 -1.999997) (xy 0.108891 -1.999411) (xy 0.147112 -1.99845) (xy 0.173993 -1.997126) (xy 0.189141 -1.995452) + (xy 0.192566 -1.993984) (xy 0.198087 -1.990141) (xy 0.211927 -1.98796) (xy 0.218169 -1.987772) (xy 0.255356 -1.985774) + (xy 0.301587 -1.980138) (xy 0.354205 -1.971396) (xy 0.41055 -1.960084) (xy 0.467965 -1.946734) (xy 0.523792 -1.931882) + (xy 0.575372 -1.916061) (xy 0.57583 -1.915909) (xy 0.686517 -1.872871) (xy 0.789819 -1.819847) (xy 0.885701 -1.756866) + (xy 0.974127 -1.683959) (xy 1.055063 -1.601156) (xy 1.128472 -1.508488) (xy 1.19432 -1.405984) (xy 1.212873 -1.372805) + (xy 1.263798 -1.268449) (xy 1.309607 -1.153175) (xy 1.350143 -1.027458) (xy 1.385248 -0.89177) (xy 1.406744 -0.789873) + (xy 1.415897 -0.738596) (xy 1.424889 -0.681293) (xy 1.433435 -0.62042) (xy 1.441248 -0.558434) (xy 1.448045 -0.497791) + (xy 1.453539 -0.440946) (xy 1.457445 -0.390355) (xy 1.459479 -0.348475) (xy 1.459706 -0.333883) + (xy 1.46072 -0.314695) (xy 1.463279 -0.30173) (xy 1.465982 -0.298166) (xy 1.467595 -0.291991) (xy 1.468973 -0.273608) + (xy 1.470113 -0.243232) (xy 1.47101 -0.201077) (xy 1.471658 -0.147356) (xy 1.472054 -0.082283) (xy 1.472194 -0.006073) + (xy 1.472194 -0.003106) (xy 1.472064 0.073504) (xy 1.471677 0.138984) (xy 1.471037 0.19312) (xy 1.47015 0.235698) + (xy 1.469019 0.266504) (xy 1.467649 0.285325) (xy 1.466045 0.291946) (xy 1.465982 0.291954) (xy 1.462673 0.297612) + (xy 1.46043 0.312394) (xy 1.45977 0.329231) (xy 1.458878 0.355605) (xy 1.456369 0.391961) (xy 1.452498 0.435996) + (xy 1.447518 0.485412) (xy 1.441683 0.537905) (xy 1.435247 0.591176) (xy 1.428464 0.642924) (xy 1.421587 0.690847) + (xy 1.41604 0.725769) (xy 1.386876 0.874616) (xy 1.350921 1.014596) (xy 1.308315 1.145342) (xy 1.259198 1.266486) + (xy 1.20371 1.377662) (xy 1.141992 1.478502) (xy 1.113433 1.518782) (xy 1.081643 1.558591) (xy 1.043344 1.601707) + (xy 1.001364 1.645277) (xy 0.958533 1.686447) (xy 0.917681 1.722366) (xy 0.889566 1.744494) (xy 0.805301 1.800702) + (xy 0.715734 1.84899) (xy 0.619744 1.889772) (xy 0.516213 1.923463) (xy 0.404022 1.950475) (xy 0.282052 1.971222) + (xy 0.273319 1.972424) (xy 0.241396 1.975771) (xy 0.199565 1.978692) (xy 0.150338 1.981137) (xy 0.096226 1.983056) + (xy 0.039739 1.9844) (xy -0.016612 1.98512) (xy -0.070316 1.985164) (xy -0.118862 1.984485) (xy -0.15974 1.983032) + (xy -0.183248 1.981458) (xy -0.302476 1.967933) (xy -0.412188 1.948953) (xy -0.514231 1.924081) + (xy -0.610451 1.892878) (xy -0.685021 1.862828) (xy -0.713072 1.850319) (xy -0.73581 1.839541) (xy -0.756672 1.828643) + (xy -0.77909 1.815776) (xy -0.806503 1.799092) (xy -0.826168 1.786861) (xy -0.916867 1.722901) (xy -1.000704 1.6486) + (xy -1.077667 1.563982) (xy -1.14774 1.469073) (xy -1.210912 1.363897) (xy -1.267167 1.248479) (xy -1.316494 1.122843) + (xy -1.358877 0.987014) (xy -1.394303 0.841017) (xy -1.419148 0.707643) (xy -1.435509 0.595685) + (xy -1.448186 0.484903) (xy -1.456634 0.380135) (xy -1.457346 0.368049) (xy -1.459397 0.338961) + (xy -1.461871 0.315006) (xy -1.464467 0.298555) (xy -1.466881 0.291983) (xy -1.467031 0.291954) + (xy -1.468247 0.285974) (xy -1.469197 0.268952) (xy -1.469894 0.242268) (xy -1.470351 0.207301) + (xy -1.470581 0.16543) (xy -1.470597 0.118033) (xy -1.470412 0.066491) (xy -1.470039 0.012182) (xy -1.469491 -0.043515) + (xy -1.468781 -0.099221) (xy -1.467922 -0.153556) (xy -1.466926 -0.205141) (xy -1.465808 -0.252599) + (xy -1.464579 -0.294548) (xy -1.463254 -0.329611) (xy -1.461844 -0.356408) (xy -1.460805 -0.369601) + (xy -1.457036 -0.407665) (xy -1.452778 -0.450834) (xy -1.448748 -0.491851) (xy -1.447337 -0.506261) + (xy -1.430769 -0.643964) (xy -1.418171 -0.720287) (xy -0.904228 -0.720287) (xy -0.548414 -0.361699) + (xy -0.1926 -0.003111) (xy -0.546655 0.350984) (xy -0.601624 0.406037) (xy -0.653981 0.458626) (xy -0.703067 0.508081) + (xy -0.748227 0.553733) (xy -0.788803 0.594913) (xy -0.824139 0.630953) (xy -0.853577 0.661182) + (xy -0.87646 0.684933) (xy -0.892132 0.701536) (xy -0.899936 0.710323) (xy -0.900709 0.711523) (xy -0.896476 0.717651) + (xy -0.884805 0.730825) (xy -0.867241 0.749504) (xy -0.845329 0.772149) (xy -0.820612 0.797222) + (xy -0.794634 0.823184) (xy -0.768941 0.848495) (xy -0.745075 0.871617) (xy -0.724583 0.89101) (xy -0.709006 0.905136) + (xy -0.699891 0.912456) (xy -0.698413 0.913133) (xy -0.693134 0.908854) (xy -0.679842 0.896508) + (xy -0.659291 0.876834) (xy -0.632232 0.850568) (xy -0.599418 0.818449) (xy -0.561603 0.781213) + (xy -0.519539 0.739599) (xy -0.473979 0.694344) (xy -0.425675 0.646185) (xy -0.411556 0.632075) + (xy -0.130447 0.351017) (xy -0.130447 1.031168) (xy -0.130447 1.71132) (xy 0.385131 1.195769) (xy 0.451669 1.129207) + (xy 0.515709 1.065088) (xy 0.576709 1.003959) (xy 0.634126 0.946366) (xy 0.687415 0.892857) (xy 0.736033 0.843979) + (xy 0.779438 0.800278) (xy 0.817085 0.762302) (xy 0.848431 0.730597) (xy 0.872933 0.705711) (xy 0.890048 0.688189) + (xy 0.899231 0.67858) (xy 0.900709 0.676846) (xy 0.896422 0.672027) (xy 0.884008 0.659115) (xy 0.864139 0.638785) + (xy 0.837485 0.611717) (xy 0.804719 0.578588) (xy 0.766512 0.540074) (xy 0.723534 0.496854) (xy 0.676458 0.449605) + (xy 0.625954 0.399004) (xy 0.572695 0.34573) (xy 0.562165 0.335207) (xy 0.22362 -0.00306) (xy 0.565267 -0.344749) + (xy 0.906914 -0.686437) (xy 0.388233 -1.20509) (xy -0.130447 -1.723743) (xy -0.130447 -1.043592) + (xy -0.130447 -0.363441) (xy -0.413062 -0.646004) (xy -0.695677 -0.928568) (xy -0.799953 -0.824428) + (xy -0.904228 -0.720287) (xy -1.418171 -0.720287) (xy -1.408396 -0.779502) (xy -1.380737 -0.910368) + (xy -1.348314 -1.034055) (xy -1.317202 -1.132241) (xy -1.268374 -1.257763) (xy -1.212166 -1.373297) + (xy -1.14855 -1.478867) (xy -1.0775 -1.5745) (xy -0.998989 -1.660221) (xy -0.91299 -1.736053) (xy -0.819477 -1.802022) + (xy -0.718423 -1.858154) (xy -0.609802 -1.904473) (xy -0.493587 -1.941005) (xy -0.443214 -1.953277) + (xy -0.401848 -1.961938) (xy -0.358247 -1.970018) (xy -0.315268 -1.977079) (xy -0.275765 -1.982683) + (xy -0.242592 -1.986393) (xy -0.218604 -1.987771) (xy -0.218168 -1.987772) (xy -0.202332 -1.989112) + (xy -0.19334 -1.992469) (xy -0.192565 -1.993984) (xy -0.186421 -1.99591) (xy -0.168251 -1.997496) + (xy -0.138447 -1.998729) (xy -0.097403 -1.999596) (xy -0.045512 -2.000085) (xy 0 -2.000195) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "f398681c-7b88-46f6-adce-6765027a9585") + ) + ) + (footprint "Connector_USB:USB_C_Receptacle_JAE_DX07S016JA1R1500" + (layer "F.Cu") + (uuid "451fa247-5b4c-40d8-b492-896ac5f8641e") + (at 48.32 33 180) + (descr "USB TYPE C, USB 2.0, SMT, https://www.jae.com/en/connectors/series/detail/product/id=91780") + (tags "USB C Type-C Receptacle SMD USB 2.0") + (property "Reference" "J2" + (at 4.52 -5.1 180) + (layer "F.SilkS") + (uuid "0c154ccd-223a-46a7-9490-9b359f8cd4cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "USB_C_Receptacle_USB2.0_14P" + (at 0 5 180) + (layer "F.Fab") + (uuid "8a7c8d12-5978-4d26-85d9-18fa0e0cdd0b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_USB:USB_C_Receptacle_JAE_DX07S016JA1R1500" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "56a1ac8a-a9c6-4edc-8274-7057f2a4c99d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2af9c644-a948-4dad-84e8-6969247702bf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "USB 2.0-only 14P Type-C Receptacle connector" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3aa2f911-0f3a-43c3-b000-c9083a187a80") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "USB*C*Receptacle*") + (path "/1602d82a-23ee-4665-afd3-2e03146cd47f") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 4.58 2.76) + (end 4.58 3.71) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "02088499-b38e-41fa-833e-8e506e2e5b9f") + ) + (fp_line + (start 4.58 -1.215) + (end 4.58 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4e79a949-fd15-4f4e-bdc5-b1290b286dd5") + ) + (fp_line + (start -4.58 3.71) + (end 4.58 3.71) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "661688f3-0967-4c48-bac7-8ecf16d8f508") + ) + (fp_line + (start -4.58 2.76) + (end -4.58 3.71) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2bd5401e-97a3-43e7-8b8c-a6e36416dae7") + ) + (fp_line + (start -4.58 -1.215) + (end -4.58 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "83812ef1-86be-4b23-b384-68c156e682d3") + ) + (fp_line + (start 5.47 -4.33) + (end 5.47 4.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3764bfec-829c-412a-b74c-12dc13da0ab2") + ) + (fp_line + (start -5.47 4.1) + (end 5.47 4.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "74d88e2f-e6d9-413d-9191-b656e3152b5d") + ) + (fp_line + (start -5.47 -4.33) + (end 5.47 -4.33) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a872707-e82a-4360-8e6c-ca053ed33261") + ) + (fp_line + (start -5.47 -4.33) + (end -5.47 4.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d28e758a-0da9-4565-9938-99846223f6d7") + ) + (fp_line + (start 4.47 -3.3) + (end 4.47 3.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "49da30ef-5919-4245-8f18-8b9ac6667e72") + ) + (fp_line + (start -4.47 3.6) + (end 4.47 3.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "60e5bb9c-bb3d-48a0-b6fa-9b3f2f5b70f8") + ) + (fp_line + (start -4.47 -3.3) + (end 4.47 -3.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "52378cb3-73e8-49b1-aaea-27c9f727a07d") + ) + (fp_line + (start -4.47 -3.3) + (end -4.47 3.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "282630a0-9dcc-4a0f-95bf-7eff93171585") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "0ac5a74a-917a-46b3-b1a6-5491d327ae67") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at -3 -1.95 180) + (size 0.6 0.6) + (drill 0.6) + (layers "F&B.Cu" "*.Mask") + (uuid "76710d4b-157e-4b05-82b0-df89ffe631f5") + ) + (pad "" smd rect + (at -1.4 1.15 180) + (size 1 2) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "b00eddf2-170e-4be1-8c4c-6d04636e41a9") + ) + (pad "" smd rect + (at 1.4 1.15 180) + (size 1 2) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "10a3f61c-8887-415e-874f-02fe9dcdf75e") + ) + (pad "" np_thru_hole oval + (at 3 -1.95 180) + (size 0.85 0.6) + (drill oval 0.85 0.6) + (layers "F&B.Cu" "*.Mask") + (uuid "50568c0e-5ecf-4c93-b86d-79bc0a8bf8bf") + ) + (pad "A1" smd rect + (at -3.1 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "f1114ab1-07ae-49c7-800e-82eda40cefe6") + ) + (pad "A4" smd rect + (at -2.35 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "Net-(J2-VBUS-PadA4)") + (pinfunction "VBUS") + (pintype "passive") + (uuid "7de45ec6-e092-4562-93ec-c066bea11de4") + ) + (pad "A5" smd rect + (at -1.75 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 12 "Net-(J2-CC1)") + (pinfunction "CC1") + (pintype "bidirectional") + (uuid "dc3d6ffc-60cb-4990-93d2-77e4a1b6bd12") + ) + (pad "A6" smd rect + (at -0.25 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 38 "/UD+") + (pinfunction "D+") + (pintype "bidirectional") + (uuid "84ae8554-936a-465a-ae8b-65b8989f6fb6") + ) + (pad "A7" smd rect + (at 0.75 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 40 "/UD-") + (pinfunction "D-") + (pintype "bidirectional") + (uuid "4cd917a6-206c-495d-befb-6cd0f818e68a") + ) + (pad "A8" smd rect + (at 1.75 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "46be8667-ca66-4c00-8a6e-35806ab3835d") + ) + (pad "A9" smd rect + (at 2.35 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "Net-(J2-VBUS-PadA4)") + (pinfunction "VBUS") + (pintype "passive") + (uuid "21d6ae3f-85dd-45f7-a061-bb07a6cd9752") + ) + (pad "A12" smd rect + (at 3.1 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "7ff1239a-7ae2-4813-815d-660e0455e51b") + ) + (pad "B1" smd rect + (at 3.1 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "36fbc5d0-0b28-4bba-a8b6-46b8a31f9513") + ) + (pad "B4" smd rect + (at 2.35 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "Net-(J2-VBUS-PadA4)") + (pinfunction "VBUS") + (pintype "passive") + (uuid "792511c8-9fc2-4368-a244-b9b2b30eb800") + ) + (pad "B5" smd rect + (at 1.25 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 9 "Net-(J2-CC2)") + (pinfunction "CC2") + (pintype "bidirectional") + (uuid "1339018f-f785-4a46-8515-20954095b52d") + ) + (pad "B6" smd rect + (at 0.25 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 38 "/UD+") + (pinfunction "D+") + (pintype "bidirectional") + (uuid "128a9acf-2591-4437-b845-8214c8ed4b45") + ) + (pad "B7" smd rect + (at -0.75 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 40 "/UD-") + (pinfunction "D-") + (pintype "bidirectional") + (uuid "648a2de5-7b59-43fd-8f8f-b299c1265a52") + ) + (pad "B8" smd rect + (at -1.25 -3.05 180) + (size 0.27 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "537c253f-e01e-499a-851f-6e282636cac7") + ) + (pad "B9" smd rect + (at -2.35 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 11 "Net-(J2-VBUS-PadA4)") + (pinfunction "VBUS") + (pintype "passive") + (uuid "ea2f7e8e-baec-43bf-bd77-28b491cb75a3") + ) + (pad "B12" smd rect + (at -3.1 -3.05 180) + (size 0.52 1) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "bf9fedaf-2b34-48ed-9713-b796c6fe3617") + ) + (pad "S1" thru_hole oval + (at -4.32 -2.675 180) + (size 1.3 2.3) + (drill oval 0.6 1.6) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "039ea33a-38d7-4e74-8c21-b4c70301a925") + ) + (pad "S1" thru_hole oval + (at -4.32 1.15 180) + (size 1.3 2.6) + (drill oval 0.6 1.9) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "539e2ee3-2a97-4fb6-a960-b68c4f6b00b4") + ) + (pad "S1" thru_hole oval + (at 4.32 -2.675 180) + (size 1.3 2.3) + (drill oval 0.6 1.6) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "d010f1a2-67e4-4d1a-86ad-8bedb6bff91a") + ) + (pad "S1" thru_hole oval + (at 4.32 1.15 180) + (size 1.3 2.6) + (drill oval 0.6 1.9) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "ddcb696b-d6db-4a62-b5f1-a02be7668157") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_JAE_DX07S016JA1R1500.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_USB.3dshapes/USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal.wrl" + (offset + (xyz 0 -0.5 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "4b5a9cfc-bb89-4302-a8e6-3a03a1acf7e2") + (at 47.12 39.575 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R5" + (at -0.075 1.62 90) + (layer "F.SilkS") + (uuid "f1101cff-9310-47e7-8ab8-363c0a16f1e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "5K1" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "a060a965-949d-4be2-87ab-7fe9f77a13a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da132cba-848f-4e44-8194-8fbdd7f79035") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "be26ef51-fb03-4291-abf1-77d1f42d9950") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09dc5158-6b9a-49c0-8b8b-bbeb9cd06d67") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/06737185-bc7d-4f6e-82bd-496ca7c17968") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "42182711-8b18-4965-ac7f-27487b6355b0") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "48fcc57f-b327-47d9-b18b-20c2d4f6abf0") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f6be078d-4d47-404f-bc13-9b3aca0c2967") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "909d2131-f5e5-4567-a785-b4d6b51ca471") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "431ae76d-43be-434e-873f-2a35bda142bb") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "61500e35-ee8e-434b-818c-fca1ecaebcf4") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3e107e19-66a8-4bfd-9b82-bbeacc91858b") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "792d7ce3-7b7a-442d-a7ae-960563884407") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5e1d1529-8d50-4aac-964a-c08c963b68d3") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2b0a4dab-12bf-4c33-983f-2e00a2dd1a4f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "7b1a31cb-1191-4af0-9393-2af4b5512c1c") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 9 "Net-(J2-CC2)") + (pintype "passive") + (uuid "ccc54c11-96d7-4c3e-b8a5-15a4e21b8e24") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "cf8060c4-0392-4bf1-aed0-0f9a0f07d6bd") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23" + (layer "F.Cu") + (uuid "4b5efc59-5335-4003-82d7-5cc99d42340a") + (at 54.12 43.6) + (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 "Reference" "Q1" + (at 2.98 -1.4 0) + (layer "F.SilkS") + (uuid "403474f3-b3df-4d69-84c5-c00891ff18e1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "BSS138" + (at 0 2.4 0) + (layer "F.Fab") + (uuid "df4fa7b6-2b4d-4306-98c3-6e8fb4aa4c54") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "29ec8744-9af8-4731-99ab-60b9cc161ec2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "67705b43-6df9-4a60-930e-4d4b8bf6796b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9b626099-a437-4468-962d-63c248e91736") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23*") + (path "/52fe39c1-7d61-4bbf-9bd7-790ee0010277") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 -1.56) + (end -0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "53eeb0b4-3568-474a-8c76-1cd0cba0a285") + ) + (fp_line + (start 0 -1.56) + (end 0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f3f3be85-f4c3-48fb-b32d-ec39fd457e6a") + ) + (fp_line + (start 0 1.56) + (end -0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dc285777-3f9c-4a4c-a98b-d45a15f74e08") + ) + (fp_line + (start 0 1.56) + (end 0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "234fd378-2062-435e-bd17-b16a05cb2e25") + ) + (fp_poly + (pts + (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "259ffebc-0bf4-445c-8090-df6f8b555e89") + ) + (fp_line + (start -1.92 -1.7) + (end -1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0f399083-30e0-4759-8cc8-da5270e33983") + ) + (fp_line + (start -1.92 1.7) + (end 1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9fda7219-f652-49a7-99f6-5afbc8ae74b1") + ) + (fp_line + (start 1.92 -1.7) + (end -1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1016b3c8-0cad-4ab9-a74d-a118aceb6977") + ) + (fp_line + (start 1.92 1.7) + (end 1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a790cd3f-533c-4ab5-8b8a-5c275a67e411") + ) + (fp_line + (start -0.65 -1.125) + (end -0.325 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ee79830-b414-49e4-9f4c-dc8d2de081ee") + ) + (fp_line + (start -0.65 1.45) + (end -0.65 -1.125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7974b222-d98a-4ebe-af78-d6e11b135110") + ) + (fp_line + (start -0.325 -1.45) + (end 0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b3960e8f-180a-4c30-b49a-be00f27b3cd4") + ) + (fp_line + (start 0.65 -1.45) + (end 0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "38835749-c1e8-414a-b3ad-c106afdb28d5") + ) + (fp_line + (start 0.65 1.45) + (end -0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "06d891fc-46ce-4995-b040-915ee14a9509") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "86b3d23b-268f-4026-9fa8-2c5a0eb37cd7") + (effects + (font + (size 0.32 0.32) + (thickness 0.05) + ) + ) + ) + (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 10 "Net-(Q1-G)") + (pinfunction "G") + (pintype "input") + (uuid "a0e0164e-482d-416e-8505-c7c165d90a94") + ) + (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 1 "Net-(Q1-S)") + (pinfunction "S") + (pintype "passive") + (uuid "6edaac29-f55e-4e5e-af99-c47973df196e") + ) + (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 6 "/MCU_EN") + (pinfunction "D") + (pintype "passive") + (uuid "8314c68e-ead4-49bb-a75d-ab8f7465b077") + ) + (model "${KICAD8_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_0603_1608Metric" + (layer "F.Cu") + (uuid "55e2cd2c-5705-48c7-a1c1-e5e15fbaa9e9") + (at 73.85 52.4 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R8" + (at -2.5 -0.05 -90) + (layer "F.SilkS") + (uuid "22003990-4bbb-47b7-a5a4-112647643f95") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10K" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "c848bb27-bb65-4585-9f0e-578992e2faa9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "799088b6-653c-4aa8-b433-1ec34e073e53") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18d154b5-92bf-49e6-ae9d-981c1d2b0bc7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a1fafbf0-b6d9-47da-aa18-93608e289fa3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/20f7a754-4b9f-4ac9-b9e4-63f40be70fe6") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d86ac9fb-7354-468b-8019-9bd436522982") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38c69430-b6e7-4e27-bb04-4207770ee6aa") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "baf82181-0357-419a-a451-65ba09a63fd7") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2a0df51e-a67b-4d8c-aaef-39901d23806e") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1dd06752-d818-4bc4-a19d-82c6e7900674") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1d5d78fd-38c2-41fe-a2fe-1bedfffe688b") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e667c31e-7bff-4ec6-80f1-308c53532310") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ea895d33-acb8-4f43-9621-73b1fdb02622") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7357d582-f6f9-4bfb-bbed-3ab24dfe85c9") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "45ab5f72-3d23-407d-bbd2-4b68216bc660") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "cfa0f125-6953-4625-8ad7-36e21e674009") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 36 "+3V3") + (pintype "passive") + (uuid "1d99d2f8-072f-4381-94d7-f0d94fe3d908") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 44 "/IO17") + (pintype "passive") + (uuid "2fed1de4-7f7f-4d61-9073-d02bbf2f4d88") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "564a4291-a4e9-4048-8338-a12332ef0414") + (at 69 52.425 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R12" + (at -3.025 0 90) + (layer "F.SilkS") + (uuid "38af79cd-8609-4e1e-9965-8e69f26ca691") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "630" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "94e42109-e277-4e54-b5a3-6b89cdde273f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d0f2f8e5-86e1-4e2e-b25d-20ba012851aa") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "881dac43-fc3d-4884-920d-7ff8f367144d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f78a5dd9-90ee-47f1-ad0c-efaf124c4a57") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/54844f67-aca2-411b-86c6-0105693d657a") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "27f6c93d-57f3-43dc-af63-3a09ac4c3a9e") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a54e1338-6d70-4157-946a-eceea89243d4") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3726ffc-d6df-40bc-a241-4d82a0c3bd76") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b8bee583-1dcf-47e6-9a83-0f0e662f3d76") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6020ade5-2480-4ee5-96ba-e21ce7458b1a") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c0090b04-d073-4159-9dff-e08aefadd59c") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9574c05c-63ac-4b21-a4b1-e3425d150e76") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a5393f29-28c2-4130-9c8a-306c113b5a46") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0924c660-91f7-46d8-aa8f-f235ab91c769") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c2dcc17c-a8e5-4357-8a15-46ca17230135") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6896e07b-3b8f-417c-a2c6-4dc351703982") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 15 "Net-(U4-IO19)") + (pintype "passive") + (uuid "fbca57e2-2768-4eef-bec7-4b1ff577101e") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "Net-(D3-A)") + (pintype "passive") + (uuid "9ce5bbce-2266-4835-84eb-6a5b924a86d3") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (layer "F.Cu") + (uuid "5800c4be-f046-44b0-80b1-d04a444180f9") + (at 63.5625 47.6) + (descr "SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open") + (tags "solder jumper open") + (property "Reference" "JP2" + (at 0 -1.8 0) + (layer "F.SilkS") + (uuid "f4162b35-7a6e-4705-af31-6b1ad1d8e639") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SolderJumper_2_Open" + (at 0 1.9 0) + (layer "F.Fab") + (uuid "23573d61-d085-42ab-99b0-62ad4e1d47bb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d1beea7-6351-47e2-bc14-f09b1b8fe872") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d7c158c4-de66-433d-83dd-7c5deb7d8725") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f41744fa-a421-43e1-a6c8-c7d630c7c6d2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SolderJumper*Open*") + (path "/92d91f1d-afc5-48c7-8728-65f2b9d45bdf") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (zone_connect 1) + (attr exclude_from_pos_files exclude_from_bom) + (fp_line + (start -1.4 -1) + (end 1.4 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d429ae6f-c0fa-42d3-8a68-e9bd1236aec9") + ) + (fp_line + (start -1.4 1) + (end -1.4 -1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "91627c4a-e413-4877-b65b-13c9648dec3e") + ) + (fp_line + (start 1.4 -1) + (end 1.4 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a4068a97-e299-4bd2-9d09-afe5c81ff61e") + ) + (fp_line + (start 1.4 1) + (end -1.4 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "31ddb38c-bb22-4985-a336-d0760bf9ca41") + ) + (fp_line + (start -1.65 -1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bfe820d0-4580-4dea-b589-5d2cb483b03f") + ) + (fp_line + (start -1.65 -1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79530d96-198d-4492-8b08-27a4dfe39eb2") + ) + (fp_line + (start 1.65 1.25) + (end -1.65 1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "603b3caf-d423-4013-ad2c-4ca4628d9a94") + ) + (fp_line + (start 1.65 1.25) + (end 1.65 -1.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "101f5cdd-92f0-4996-bcd6-3d09c2df11f5") + ) + (pad "1" smd custom + (at -0.725 0) + (size 0.3 0.3) + (layers "F.Cu" "F.Mask") + (net 66 "Net-(JP2-A)") + (pinfunction "A") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_poly + (pts + (xy 1 0) (xy 0.5 0.75) (xy -0.5 0.75) (xy -0.5 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "a8a7c91f-ca16-4224-a14c-4f96a13d7f7b") + ) + (pad "2" smd custom + (at 0.725 0) + (size 0.3 0.3) + (layers "F.Cu" "F.Mask") + (net 41 "+1V8") + (pinfunction "B") + (pintype "passive") + (zone_connect 2) + (thermal_bridge_angle 45) + (options + (clearance outline) + (anchor rect) + ) + (primitives + (gr_poly + (pts + (xy 0.5 0.75) (xy -0.65 0.75) (xy -0.15 0) (xy -0.65 -0.75) (xy 0.5 -0.75) + ) + (width 0) + (fill yes) + ) + ) + (uuid "260e8c02-ad1c-4302-85f0-4e4f4eab296c") + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23" + (layer "F.Cu") + (uuid "5a5ef05d-b396-4099-a33a-70d24da96917") + (at 52.8625 49.875 180) + (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 "Reference" "Q5" + (at 0.5625 2.475 180) + (layer "F.SilkS") + (uuid "202bc4f7-400e-4456-aeaa-19f97fb4f5f9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AO3401A" + (at 0 2.4 180) + (layer "F.Fab") + (uuid "94ebfe8f-86b1-4bb1-bc64-9e900e9d4240") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a662aea0-0d4b-4a84-8ca7-1216d7b59ef7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "47da2bb6-83bf-4566-91d5-ee0ee8ecc8f6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d7cfaac0-32e7-48be-a2e3-5731a0542f6d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23*") + (path "/b8d7fc6d-0b06-4bca-bd1f-bd2bb9b2a335") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 1.56) + (end 0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7ae8541c-6843-4ea3-95d6-189a2eedb4e0") + ) + (fp_line + (start 0 1.56) + (end -0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "56b20aca-367e-479c-b36a-eb4fd495faa1") + ) + (fp_line + (start 0 -1.56) + (end 0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7c34b28c-d9f1-4b8a-bbff-441710fce426") + ) + (fp_line + (start 0 -1.56) + (end -0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1b8767aa-5e37-449f-957d-3d5ecdba6139") + ) + (fp_poly + (pts + (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "da5a3776-2c6e-4224-91ff-4032ae730162") + ) + (fp_line + (start 1.92 1.7) + (end 1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fb2b849c-576d-40db-95ce-6c64a506151e") + ) + (fp_line + (start 1.92 -1.7) + (end -1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ff29c39-2d3f-46db-a548-1944c98ac6c5") + ) + (fp_line + (start -1.92 1.7) + (end 1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "52fe2835-c1b7-4b09-982c-09ea1a3c0b56") + ) + (fp_line + (start -1.92 -1.7) + (end -1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "825b3fa7-01aa-4857-b741-de59d6415a04") + ) + (fp_line + (start 0.65 1.45) + (end -0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "63ee8b34-4aaa-4ee6-a201-e249f1784a34") + ) + (fp_line + (start 0.65 -1.45) + (end 0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c0e3311d-2861-41bf-a37d-22963440a58e") + ) + (fp_line + (start -0.325 -1.45) + (end 0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a6f28c54-82c2-40f5-95e2-c39317eefa3e") + ) + (fp_line + (start -0.65 1.45) + (end -0.65 -1.125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e67bb53a-3136-43e2-bece-a7c012c6830d") + ) + (fp_line + (start -0.65 -1.125) + (end -0.325 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "54133127-4dc6-41ac-824d-4f4ef0f7e793") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "ef907073-3e81-498d-8dd0-50611d9bed55") + (effects + (font + (size 0.32 0.32) + (thickness 0.05) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9375 -0.95 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pinfunction "G") + (pintype "input") + (uuid "846b8aca-2eeb-4617-abab-f1f9bc145441") + ) + (pad "2" smd roundrect + (at -0.9375 0.95 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 27 "/BAT_VCC_OUT") + (pinfunction "S") + (pintype "passive") + (uuid "876ae50a-6871-4df4-938a-8b7a17faa7e0") + ) + (pad "3" smd roundrect + (at 0.9375 0 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 26 "Net-(BT1-+)") + (pinfunction "D") + (pintype "passive") + (uuid "c28f33df-92ac-4c11-ad77-8be79e7193e9") + ) + (model "${KICAD8_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 "LED_SMD:LED_0603_1608Metric" + (layer "F.Cu") + (uuid "653f444c-92f4-448d-8750-5550cf87cad5") + (at 72.35 57.925 90) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D3" + (at 2.425 -0.75 -90) + (layer "F.SilkS") + (uuid "491ea315-2b15-4962-a05d-f6cd829ad7c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LED" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "017b4d4e-6ebf-430d-8fd4-a676919c9109") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "64389ab7-265e-4336-bafa-40cd3c1d7933") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8c3043c-db8b-4631-a893-573427f4d677") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4937f472-49a0-4590-9486-50e2302e8c77") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/b50a92a3-c8b0-49c0-aeab-68293a838661") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0.8 -0.735) + (end -1.485 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0438ecab-9008-4fb6-af52-b939962e0170") + ) + (fp_line + (start -1.485 -0.735) + (end -1.485 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c2892447-97e0-4960-9647-5272b8279831") + ) + (fp_line + (start -1.485 0.735) + (end 0.8 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a19b61fe-98c4-470b-8559-a017ec6bc7e9") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5ff36870-37f1-4cca-b59b-2b80b5bc9f93") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e3ad7873-52ae-49c2-a762-f3e717f739cb") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d660cb6-1753-47e4-8ef0-d66c2bdbd831") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ed17262b-e4a9-4e21-99e9-2fd7a325c198") + ) + (fp_line + (start 0.8 -0.4) + (end -0.5 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b8e4ca11-898d-486c-a45b-a4354fdaf6e6") + ) + (fp_line + (start -0.5 -0.4) + (end -0.8 -0.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "45485304-c25c-4e02-9bfa-85e257a7a195") + ) + (fp_line + (start -0.8 -0.1) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ce0612d4-3368-4368-a301-4a383832e820") + ) + (fp_line + (start 0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55bc95eb-a1b0-433c-bc85-520c180b893e") + ) + (fp_line + (start -0.8 0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7f4aee57-7edb-4f1f-b1a2-5a5b01e733e4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "6a0c51f7-b241-4a4e-9a4f-56f772e7f763") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.7875 0 90) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "K") + (pintype "passive") + (uuid "a113d1af-e88d-49c8-b31d-050431650781") + ) + (pad "2" smd roundrect + (at 0.7875 0 90) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 4 "Net-(D3-A)") + (pinfunction "A") + (pintype "passive") + (uuid "c29fc7b5-0878-443f-8730-4e7ea880eef9") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (layer "F.Cu") + (uuid "66944780-a8f5-4a72-9994-6374b90cd8b8") + (at 37.835 55.5 90) + (descr "6-pin SOT-23 package, Handsoldering") + (tags "SOT-23-6 Handsoldering") + (property "Reference" "U3" + (at -1.5 2.565 -90) + (layer "F.SilkS") + (uuid "ace1a0d7-f6c9-4664-80af-1e6047112608") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "DW01" + (at 0 2.9 -90) + (layer "F.Fab") + (uuid "5d8db181-6ba2-4557-bad7-c8488a634c41") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4464bc7e-cb2c-4ce6-9e9d-7c4606327786") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4ecb38d6-f968-4dec-91cf-c4b69ed5c063") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "708e5322-287a-4915-be50-8513053370f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/e32ac876-98b6-4958-bca3-65eb82a9d3e8") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0.1 -1.61) + (end 0.9 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "48c04bd9-9ac4-4deb-b4b2-099c662da7a5") + ) + (fp_line + (start 0.1 -1.61) + (end -0.7 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4fe09a2-ba53-4e3d-8109-1aa7781569d3") + ) + (fp_line + (start -0.9 1.61) + (end 0.9 1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d5c453fa-dd23-42fb-bed3-600bd9f9d6fe") + ) + (fp_poly + (pts + (xy -1.2 -1.56) (xy -1.44 -1.89) (xy -0.96 -1.89) (xy -1.2 -1.56) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "77fb2e2e-d513-4191-95b7-a1ea3654be95") + ) + (fp_line + (start 2.4 -1.8) + (end 2.4 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "422d4a6b-3d98-41a0-b84f-ab89e7536c34") + ) + (fp_line + (start -2.4 -1.8) + (end 2.4 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bd40a77a-39fa-423c-9446-70593c5dde6d") + ) + (fp_line + (start 2.4 1.8) + (end -2.4 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c10558a5-7908-4c70-8700-e598393e429e") + ) + (fp_line + (start -2.4 1.8) + (end -2.4 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2ed997f8-0025-49a3-98c2-5c5b8a2c8b6f") + ) + (fp_line + (start 0.9 -1.55) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d069ac77-25d2-4a5e-b609-0019e8aa7a2a") + ) + (fp_line + (start 0.9 -1.55) + (end 0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "daa298e5-0f20-4214-963e-c88bea830ab1") + ) + (fp_line + (start -0.9 -0.9) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "84f202b6-3b75-450b-aa7e-5cac2b778761") + ) + (fp_line + (start -0.9 -0.9) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1c0cc3bc-0c3d-4513-a143-05c0e8681159") + ) + (fp_line + (start 0.9 1.55) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b2ece06f-df2a-4972-b851-462202f847e5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "455e3f28-2df6-4651-812d-a4707c159913") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -1.35 -0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 55 "Net-(U3-OD)") + (pinfunction "OD") + (pintype "input") + (uuid "fd0375a1-8442-4ee9-9c9d-d4d4ea024f74") + ) + (pad "2" smd roundrect + (at -1.35 0 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 49 "Net-(U3-CS)") + (pinfunction "CS") + (pintype "input") + (uuid "980636b4-596d-4cd4-9ec7-ee039d6ebdaa") + ) + (pad "3" smd roundrect + (at -1.35 0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 29 "Net-(U3-OC)") + (pinfunction "OC") + (pintype "input") + (uuid "10b22d01-ae20-40c7-98b3-daa2c5c89a1c") + ) + (pad "4" smd roundrect + (at 1.35 0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 28 "unconnected-(U3-TD-Pad4)") + (pinfunction "TD") + (pintype "input+no_connect") + (uuid "a939d26d-5d24-4dd8-9653-e4d5e3d63e01") + ) + (pad "5" smd roundrect + (at 1.35 0 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 34 "Net-(U3-VCC)") + (pinfunction "VCC") + (pintype "input") + (uuid "3cef5024-c424-4978-9d77-483f0941be7a") + ) + (pad "6" smd roundrect + (at 1.35 -0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 25 "Net-(BT1--)") + (pinfunction "GND") + (pintype "input") + (uuid "d9287ff4-7060-4ae7-ac6b-663c64e49a18") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED_0603_1608Metric" + (layer "F.Cu") + (uuid "69187994-c026-4097-93ab-8526cae020b2") + (at 53.6875 52.7 180) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D1" + (at 1.8875 -0.8 180) + (layer "F.SilkS") + (uuid "439c3e0e-1f20-4fb3-99c0-eb5c17fc4304") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LED" + (at 0 1.43 180) + (layer "F.Fab") + (uuid "3c72104d-d2d7-4cb1-bf07-be0db1aadd08") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "51486787-2211-47af-8156-0e04460a3eac") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6285774a-2e25-4e20-9eb8-9747f303308d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b29c4b6b-9b1a-482a-a851-6a492e7055cd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/90d04cc0-8ff1-45ee-9730-f5c14cefa755") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0.8 -0.735) + (end -1.485 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "95d15b2d-b940-4e96-add3-4f05e9b22994") + ) + (fp_line + (start -1.485 0.735) + (end 0.8 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "14522ef0-23e8-4844-bdba-a061c58abc08") + ) + (fp_line + (start -1.485 -0.735) + (end -1.485 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b249cb03-67cb-4009-8525-1517142fd257") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4aba6095-bbaf-4fd7-8401-9182a547e57a") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f18fd8a2-7631-4854-b10f-19eed141de28") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "28bd5092-5958-41e7-9de8-76b26c7bb5f2") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "771e82aa-1fbf-454b-bce5-911e05cf8c9f") + ) + (fp_line + (start 0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0605430e-39e1-48d0-9230-1d1cb96de4db") + ) + (fp_line + (start 0.8 -0.4) + (end -0.5 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c16c211-4c85-4e33-a140-d16e5584d5a0") + ) + (fp_line + (start -0.5 -0.4) + (end -0.8 -0.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cb99d4f9-752e-4ddb-af76-e88100d1db0f") + ) + (fp_line + (start -0.8 0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "64ba5b73-f461-4420-839f-7949cac16ea7") + ) + (fp_line + (start -0.8 -0.1) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e1e5ea81-c9fd-4cdf-8e0b-ddcc2b564075") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "0c63ce64-e866-4fa9-8d6f-474771b31c5a") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.7875 0 180) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "Net-(D1-K)") + (pinfunction "K") + (pintype "passive") + (uuid "46b1760a-456e-46cf-8b7a-b9621546207b") + ) + (pad "2" smd roundrect + (at 0.7875 0 180) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pinfunction "A") + (pintype "passive") + (uuid "b4a94cda-d4f7-41fe-a8ed-7a3a56700030") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.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") + (uuid "6edac76d-5888-4358-9028-56f4f8458ed2") + (at 82.5125 51.7 180) + (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 "Reference" "Q4" + (at -0.9875 2.5 180) + (layer "F.SilkS") + (uuid "5c8c5db2-644b-4d86-b769-1f2209df659f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MMBT2222A" + (at 0 2.4 180) + (layer "F.Fab") + (uuid "98248111-6810-45a1-ac21-2464cfe27e44") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "57c0825b-cf3e-43ff-8d3f-9be1f15629b3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/MMBT2222A.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1e25b44e-2b18-4099-89f0-85d21c72be7f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "600mA Ic, 40V Vce, NPN Transistor, SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4e31deff-ff3c-4e53-863e-dfc89a81b01d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23*") + (path "/f0a236ff-e448-4f10-b47e-6927bf5fba7a") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 1.56) + (end 0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "25629841-6e4e-456e-b92b-09c9176bebd1") + ) + (fp_line + (start 0 1.56) + (end -0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "20814f41-87c1-484a-9277-e5682d11d20a") + ) + (fp_line + (start 0 -1.56) + (end 0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f335d760-1c47-46cb-b4c9-79488836adfd") + ) + (fp_line + (start 0 -1.56) + (end -0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38665014-21bb-473c-9fad-e0e1136b23c5") + ) + (fp_poly + (pts + (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "c5fbc981-2029-4d00-815e-996647b5cee9") + ) + (fp_line + (start 1.92 1.7) + (end 1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2603ac79-98ce-4f93-93bf-253132adaa6a") + ) + (fp_line + (start 1.92 -1.7) + (end -1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dbcc67a1-18be-4c19-adf7-0052907ecc4d") + ) + (fp_line + (start -1.92 1.7) + (end 1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "accd173d-ecbf-48a7-b0ae-052daa81d221") + ) + (fp_line + (start -1.92 -1.7) + (end -1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9c4c940b-58d8-4248-9924-0a20f492265a") + ) + (fp_line + (start 0.65 1.45) + (end -0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f4aba474-6bfb-4f09-9e82-a11450ee8c6a") + ) + (fp_line + (start 0.65 -1.45) + (end 0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "049f0cd3-867b-4e5f-af33-d588be26ed9d") + ) + (fp_line + (start -0.325 -1.45) + (end 0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "532ca379-014b-4299-8367-1cf49afc0b37") + ) + (fp_line + (start -0.65 1.45) + (end -0.65 -1.125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "323b16e9-4f28-411f-9ad3-0ee24836d2c0") + ) + (fp_line + (start -0.65 -1.125) + (end -0.325 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8db3d8ff-ce1c-4c38-9031-fe4057d00c06") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "a1d4d15a-d661-4d7f-8f5d-a15fe11e5d60") + (effects + (font + (size 0.32 0.32) + (thickness 0.05) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9375 -0.95 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 46 "Net-(Q4-B)") + (pinfunction "B") + (pintype "input") + (uuid "70591200-2562-4854-bfc2-b263981a25b5") + ) + (pad "2" smd roundrect + (at -0.9375 0.95 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "E") + (pintype "passive") + (uuid "96257bdb-0a59-440e-9357-97defadb9a7b") + ) + (pad "3" smd roundrect + (at 0.9375 0 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 78 "/IO18") + (pinfunction "C") + (pintype "passive") + (uuid "df7159b6-6105-4506-83df-2667f1906c91") + ) + (model "${KICAD8_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_0603_1608Metric" + (layer "F.Cu") + (uuid "713fc30f-764d-401c-9f6f-d8cf38d455e8") + (at 46 49.7 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R4" + (at -2.2 0.1 180) + (layer "F.SilkS") + (uuid "dc1c61b2-9b12-4165-8a50-a68cb4bc68b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.4" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "9d7fb92b-abbf-4352-a497-e1a61c2cfc38") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "56cbc5be-1f6b-45a7-a044-5a2b9e794ae3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5426c7aa-e83c-4848-9c78-67e9b70cf688") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "353484eb-9134-46c5-845e-77b4ea01da05") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/9b8619d3-f18c-414b-978d-77e26d5aecb1") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e4fd8a5b-9741-4162-9229-8718e735bd55") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "07937c53-1906-4b95-a79e-792c48774c27") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ca36c65b-73a0-4c17-a9a9-56b290d4b189") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c4e18112-d39c-4e2b-88de-9c29a2372e93") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4b44ad71-c6ce-4298-bb45-3af43cb9c6fc") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "39720aa1-163c-45cc-a76a-17d97f332180") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3363ecb7-6ee5-46c9-bb80-4f43ca6e1c62") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "863c1bfa-bd06-43c7-b240-75e7948262ec") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3fbabf35-63db-4506-8277-ee116b3e7cdb") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4637756f-d6d9-4c70-9ea6-6ab011bb5495") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "c15be9d6-845c-4311-a72c-a07b0edbb31e") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 11 "Net-(J2-VBUS-PadA4)") + (pintype "passive") + (uuid "4c2a8e4b-6723-41a1-ac79-d2b036421719") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pintype "passive") + (uuid "82924e53-c92b-46c0-9e81-24b5d49a4043") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "71c1b2f3-9b70-45d3-b858-97ff3be39518") + (at 57.6 51.625 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C6" + (at -0.575 -1.4 -90) + (layer "F.SilkS") + (uuid "7406a689-cffa-440c-b9c1-0467e7c67a6e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "660926d1-1de9-4bea-a256-89894be75dea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "524cae8b-36c9-4af5-8b84-eed9648743a8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "017b164a-2984-4314-a3bb-4a71596fce8b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dbe91857-7a59-416f-a33b-90a10b1f09e2") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/9c0192a2-bbc9-4312-aebe-a95fce290c21") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68208fc5-3a03-4e85-ba46-4eb2cfd68859") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "78bc0808-bf20-4420-acb9-2265b79673b6") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a3877659-d76f-4d2e-8dea-1ec84680ef1d") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4094e8f9-eaad-4176-b17b-a50510c4e1ff") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "35ad78ed-0cfc-4519-a466-7b25b8bc4f2a") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2cb937c8-f7f9-4e0d-9c1d-5657b56a8267") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "65631c26-b9a8-4094-a6c4-825c83fe1966") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d87038eb-9eaa-4ba1-bc89-a591f438750b") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "83e55614-f3ad-4221-a1a3-2aea0a1395c0") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5eb2246a-f18a-415b-9c0a-539fc9d96886") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "14cdefd0-1f1d-4b34-bcbe-6edaffbf5ebc") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "34eb99cd-c3ab-4cde-b9f6-5df25ea849a1") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "Net-(SW3-C)") + (pintype "passive") + (uuid "159ed8de-5743-47f3-9e5d-9d13857ed88b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "easyeda2kicad:SW-SMD_L4.7-W3.5-P3.35-EH" + (layer "F.Cu") + (uuid "750c1705-1eb4-4e75-9897-6522a6923cc9") + (at 68.425 57.72 180) + (property "Reference" "SW1" + (at 0 2.52 180) + (layer "F.SilkS") + (uuid "1afb1779-fe82-4eda-99b1-61ffbfe32d39") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "GT-TC018A-H0375-L1" + (at 0 4.92 180) + (layer "F.Fab") + (uuid "c38c2256-c0b7-4090-990f-cc2436af85fe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "easyeda2kicad:SW-SMD_L4.7-W3.5-P3.35-EH" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f846d06f-31c8-4621-8912-07caed23c0e3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://lcsc.com/product-detail/Tactile-Switches_G-Switch-GT-TC018A-H0375-L1_C963235.html" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6b893432-a5ce-4fe9-939a-0c8ee5384792") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "23daea0e-0915-47a0-9269-8d3e3e016b4a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC Part" "C963235" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d2fd5777-6144-4e27-8d40-97ed44d9741e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/cf8ec891-1de9-4084-8a9f-420b5f3a455d") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 2.54 1.07) + (end 2.54 -0.09) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "d3e89def-3782-4cb3-b0b6-9f7fe260f040") + ) + (fp_line + (start 2.31 1.07) + (end 2.54 1.07) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "1373587d-25e2-40cd-a956-4783cf9cd272") + ) + (fp_line + (start 1 -2.44) + (end 1 -1.52) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "1790c448-271c-4b01-95b5-c45335ff3efe") + ) + (fp_line + (start 0.09 1.07) + (end 1.04 1.07) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "c5034169-ec5e-4cdd-b853-0ee680526780") + ) + (fp_line + (start 0.09 1.07) + (end -1.04 1.07) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "b23d340f-3056-43f2-b9be-fd3c3795fca4") + ) + (fp_line + (start 0.09 -1.5) + (end 1.62 -1.5) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "7b52e65d-1f3d-4624-a8af-d2dd415d6f3f") + ) + (fp_line + (start 0.09 -1.5) + (end -1.62 -1.5) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "0dc5bbeb-625f-4946-8423-81af3e0324e8") + ) + (fp_line + (start -1 -2.44) + (end 1 -2.44) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "29f4a3b8-5580-4956-9e19-bbd2f0b5b9b0") + ) + (fp_line + (start -1 -2.44) + (end -1 -1.5) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc5f2a6c-e7bb-455f-b1a7-891a6d36f663") + ) + (fp_line + (start -2.31 1.07) + (end -2.54 1.07) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "f57c1727-f733-4c01-89e2-a41d0e6f3c6b") + ) + (fp_line + (start -2.54 1.07) + (end -2.54 -0.09) + (stroke + (width 0.25) + (type solid) + ) + (layer "F.SilkS") + (uuid "84183067-5a6c-4da0-969d-2e9e69e439a9") + ) + (fp_circle + (center 0.85 -0.28) + (end 0.97 -0.28) + (stroke + (width 0.25) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "5dc23fb1-75f7-44ce-8a9e-2e63045000c4") + ) + (fp_circle + (center -0.85 -0.28) + (end -0.73 -0.28) + (stroke + (width 0.25) + (type solid) + ) + (fill none) + (layer "Cmts.User") + (uuid "ee85070e-d2a8-49a3-92f4-cd6112492d41") + ) + (fp_circle + (center -2.35 1.22) + (end -2.32 1.22) + (stroke + (width 0.06) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "fcb654ea-597e-4003-8c75-7e1807284a75") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "99702b03-bdf5-4494-91ff-2aa569882e64") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" thru_hole circle + (at -0.85 -0.28 180) + (size 0.7 0.7) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (uuid "fedab541-06e2-4eec-b049-5cfe49e27caf") + ) + (pad "" thru_hole circle + (at 0.85 -0.28 180) + (size 0.7 0.7) + (drill 0.7) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (uuid "4c09b79f-c9a9-4ce3-afc8-d00db2d8e042") + ) + (pad "1" smd rect + (at -1.67 0.92 180) + (size 0.8 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "1") + (pintype "unspecified") + (uuid "91782521-f3d6-4559-89f4-c717353b2ad9") + ) + (pad "2" smd rect + (at 1.68 0.92 180) + (size 0.8 1.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 54 "Net-(U4-IO21)") + (pinfunction "2") + (pintype "unspecified") + (uuid "db1bfa7e-2ff5-4200-8aad-d4fc877f90c7") + ) + (pad "3" smd rect + (at -2.25 -0.92 180) + (size 0.8 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "3") + (pintype "unspecified") + (uuid "6fa80c0f-afaf-4bbd-a997-81a0691e4233") + ) + (pad "4" smd rect + (at 2.25 -0.92 180) + (size 0.8 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "4") + (pintype "unspecified") + (uuid "fd82415b-0774-4e29-93c8-0fe462bd1c94") + ) + (model "C:/Users/User/Documents/KiCad/easyeda2kicad.3dshapes/SW-SMD_L4.7-W3.5-H1.9-P3.35-EH.wrl" + (offset + (xyz 0 0.61 0.4) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "C:/Users/User/Documents/KiCad/easyeda2kicad/easyeda2kicad.3dshapes/SW-SMD_L4.7-W3.5-H1.9-P3.35-EH.step" + (offset + (xyz 2.25 1.5 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "7de1be9c-fd7d-457b-a972-135bb48cd280") + (at 48.2 49.7 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C2" + (at 2.2 -0.1 0) + (layer "F.SilkS") + (uuid "95bb2332-cf01-43f5-a78a-af007b8b9b63") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uF" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "75a2f0c7-31b1-452f-b70c-d06f5e038595") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7690033d-4173-42cf-b35f-c97a966fb717") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9299ed44-54e0-423f-839b-3b4356713e27") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d8d74c03-7357-4155-8cd8-b51b38c7198e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/0cb0822a-a4ee-4fc5-b102-d530b1b602bd") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "215d2a7a-e44d-41ad-95e1-d3dc6baa96c7") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d93c7da4-eeff-4f59-b925-2ce213081877") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "321cf162-bc44-4ae3-95d9-dfdb9b13574c") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3c3d57d6-df80-4810-9208-3cbfbfa03368") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b5f4c5d4-fa04-48d8-ac26-5ea463c83862") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "748e1d91-249e-49a7-87ee-c009b35877d3") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e56bbc99-8d5a-4e0b-b1e8-467183a4659d") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e24e0da0-93d6-436d-82bd-6a12b970ecaf") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "169ddb5c-ff7b-4b09-90af-82e37cf56624") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e36fb03d-f1ce-4eb6-a8e5-38f2d95c9477") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "0064e9be-3c74-4bd7-92ee-325e30e21cb3") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pintype "passive") + (uuid "c66e8d2b-5319-4f23-aa93-e1ef26ad95c9") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "44361fca-cd5a-4aea-a1be-1044f5e3df0b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LOGO" + (layer "F.Cu") + (uuid "7fa99efa-18c0-4bf2-bb20-5feefdd6d1a8") + (at 61.5 33.9 180) + (property "Reference" "G***" + (at 0 0 180) + (layer "F.SilkS") + (hide yes) + (uuid "cb0295a9-3951-4028-a63a-720ea8bfe262") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + ) + ) + (property "Value" "LOGO" + (at 0.75 0 180) + (layer "F.SilkS") + (hide yes) + (uuid "0840a1e9-33ef-4b57-8758-dc090cf38032") + (effects + (font + (size 1.5 1.5) + (thickness 0.3) + ) + ) + ) + (property "Footprint" "LOGO" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "81c897dc-4fcc-46b8-8148-af613d401afd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d624baea-9e3f-41ce-82b2-3b1de28c8758") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "56dbf3b8-3b54-4a43-839d-0b87cde6573e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (attr board_only exclude_from_pos_files exclude_from_bom) + (fp_poly + (pts + (xy -4.347386 -1.921407) (xy -4.345896 -1.732232) (xy -4.349214 -1.592088) (xy -4.357183 -1.504152) + (xy -4.369384 -1.471676) (xy -4.392625 -1.43818) (xy -4.399539 -1.39101) (xy -4.399539 -1.320395) + (xy -2.896363 -1.312796) (xy -1.393188 -1.305197) (xy -1.384248 -1.165878) (xy -1.375308 -1.026559) + (xy 1.996064 -1.026559) (xy 5.367436 -1.026559) (xy 5.367436 -0.865243) (xy 5.367436 -0.703927) + (xy 5.910046 -0.703927) (xy 6.104695 -0.703276) (xy 6.247962 -0.700944) (xy 6.347114 -0.696364) + (xy 6.409419 -0.688965) (xy 6.442145 -0.678179) (xy 6.45256 -0.663438) (xy 6.452655 -0.661464) (xy 6.472614 -0.633242) + (xy 6.537793 -0.616285) (xy 6.606639 -0.610136) (xy 6.69777 -0.601697) (xy 6.744191 -0.585908) (xy 6.759837 -0.556657) + (xy 6.760623 -0.54261) (xy 6.75847 -0.524099) (xy 6.747385 -0.509842) (xy 6.720431 -0.499178) (xy 6.670671 -0.491443) + (xy 6.591167 -0.485975) (xy 6.474983 -0.482112) (xy 6.31518 -0.479191) (xy 6.104821 -0.47655) (xy 6.06403 -0.476086) + (xy 5.367436 -0.468223) (xy 5.367436 -0.292772) (xy 5.367436 -0.117321) (xy 1.997473 -0.117321) + (xy -1.372491 -0.117321) (xy -1.382839 0.246963) (xy -1.387996 0.400783) (xy -1.39463 0.507744) + (xy -1.404925 0.579642) (xy -1.421065 0.628273) (xy -1.445234 0.665435) (xy -1.464293 0.686916) + (xy -1.556302 0.750213) (xy -1.6557 0.762626) (xy -1.747776 0.724228) (xy -1.787017 0.685305) (xy -1.82905 0.621171) + (xy -1.847747 0.571485) (xy -1.847806 0.569715) (xy -1.860794 0.553974) (xy -1.904556 0.543004) + (xy -1.986286 0.536159) (xy -2.113183 0.532793) (xy -2.265763 0.53219) (xy -2.488902 0.532579) (xy -2.660381 0.53238) + (xy -2.787202 0.530955) (xy -2.876366 0.52767) (xy -2.934874 0.521888) (xy -2.969727 0.512973) (xy -2.987925 0.50029) + (xy -2.99647 0.483203) (xy -3.001204 0.465386) (xy -3.017074 0.429011) (xy -3.050328 0.413083) (xy -3.11721 0.412933) + (xy -3.168389 0.41732) (xy -3.294183 0.442874) (xy -3.376449 0.489058) (xy -3.377413 0.490012) (xy -3.40649 0.54056) + (xy -3.448565 0.646183) (xy -3.502966 0.804911) (xy -3.569019 1.014776) (xy -3.646053 1.273805) + (xy -3.651724 1.293332) (xy -3.711978 1.49812) (xy -3.769702 1.688812) (xy -3.822142 1.856738) (xy -3.866548 1.993227) + (xy -3.900168 2.089607) (xy -3.918702 2.134468) (xy -4.008314 2.245009) (xy -4.134191 2.321691) + (xy -4.252887 2.351199) (xy -4.355543 2.361085) (xy -4.363261 1.356524) (xy -4.370978 0.351963) + (xy -4.297268 0.351963) (xy -4.260711 0.349506) (xy -4.238822 0.334155) (xy -4.22784 0.293941) (xy -4.224006 0.216896) + (xy -4.223557 0.117321) (xy -4.223557 -0.117321) (xy -4.985825 -0.117321) (xy -5.748094 -0.117321) + (xy -5.755745 1.121486) (xy -5.757561 1.428974) (xy -5.75932 1.682732) (xy -5.761709 1.887685) (xy -5.765418 2.048757) + (xy -5.771135 2.170874) (xy -5.779549 2.258962) (xy -5.791347 2.317945) (xy -5.80722 2.352748) (xy -5.827856 2.368297) + (xy -5.853943 2.369517) (xy -5.88617 2.361333) (xy -5.925226 2.348671) (xy -5.927247 2.348046) (xy -6.074312 2.276079) + (xy -6.181632 2.161498) (xy -6.214725 2.102016) (xy -6.23991 2.037459) (xy -6.277518 1.925896) (xy -6.32473 1.776967) + (xy -6.378728 1.600312) (xy -6.436695 1.40557) (xy -6.495813 1.202383) (xy -6.553263 1.000388) (xy -6.606227 0.809228) + (xy -6.651887 0.638541) (xy -6.687425 0.497967) (xy -6.702177 0.434537) (xy -6.718009 0.336669) + (xy -6.732375 0.198521) (xy -6.745017 0.029684) (xy -6.755673 -0.16025) (xy -6.764083 -0.361689) + (xy -6.769987 -0.565043) (xy -6.773124 -0.760718) (xy -6.773235 -0.939124) (xy -6.770058 -1.09067) + (xy -6.763333 -1.205762) (xy -6.7528 -1.274811) (xy -6.748858 -1.285115) (xy -6.733715 -1.308802) + (xy -6.711648 -1.325795) (xy -6.6737 -1.337204) (xy -6.610915 -1.344138) (xy -6.514336 -1.347707) + (xy -6.375007 -1.34902) (xy -6.231648 -1.349192) (xy -5.74873 -1.349192) (xy -5.74873 -1.852352) + (xy -5.74873 -2.355512) (xy -5.688904 -2.30137) (xy -5.647203 -2.24913) (xy -5.592313 -2.161174) + (xy -5.535184 -2.055247) (xy -5.527724 -2.040185) (xy -5.433766 -1.791786) (xy -5.38753 -1.534773) + (xy -5.391535 -1.284524) (xy -5.39737 -1.243904) (xy -5.412567 -1.147839) (xy -5.422936 -1.076054) + (xy -5.425928 -1.048557) (xy -5.398453 -1.040487) (xy -5.323044 -1.033747) (xy -5.210423 -1.028939) + (xy -5.071313 -1.026663) (xy -5.033257 -1.026559) (xy -4.640416 -1.026559) (xy -4.669373 -1.151213) + (xy -4.685199 -1.274828) (xy -4.687283 -1.431605) (xy -4.677097 -1.59992) (xy -4.656116 -1.758151) + (xy -4.625814 -1.884671) (xy -4.617898 -1.906467) (xy -4.571921 -2.005211) (xy -4.508391 -2.121503) + (xy -4.460465 -2.19977) (xy -4.355543 -2.361086) + ) + (stroke + (width 0) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "4b213382-3548-4dee-adc9-e2434b337c8c") + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "7fd8e643-b895-44b9-b7eb-95fe2918b416") + (at 83.025 55.8) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R7" + (at 1.475 -1.5 0) + (layer "F.SilkS") + (uuid "095cd2f7-bf7f-4761-801b-b6d7b62f15de") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10K" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "82aa13e9-4f39-4d77-b03d-0bf51a6e4c91") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "92045424-872d-40a3-91bd-02efa662923f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0c3b9611-4b67-4e8f-b340-fdd290bd2249") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "20cb964b-ad7b-4610-b480-84075a5eb4cd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/932669c5-6ed8-4442-b9fa-872b1d7361cb") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7beb3627-6727-40fd-8474-e60a752fde56") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed530a0e-2094-42e3-8762-b385c870511f") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ff45772b-4c37-4773-bce2-58f4f34d7578") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "30ba90e5-1baf-46c6-9f5b-c0619d331a12") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6fe3f226-83e4-40a2-a8f7-8e14fed03feb") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2665666e-cc16-470f-a640-0d0d8f807746") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1dc4fbb7-638e-4b93-a5fd-543fc472c19a") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7447979-fe06-4235-917b-4f698f63b595") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c6fc83cc-121b-42fc-8529-33c0854768a8") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "95c0dd69-53d1-4a27-bacc-9dc5f6caabba") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "7a2d1693-00bb-4147-85f4-9971e4a22e91") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 46 "Net-(Q4-B)") + (pintype "passive") + (uuid "8799317b-4485-4b53-ae7e-4ca09c6777c5") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "566d72ed-bc97-43c2-a295-f3d2bb663394") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "869ec19b-7c50-4833-9889-b2475846d4fe") + (at 43.88 58.025 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R19" + (at -3.12 -0.275 180) + (layer "F.SilkS") + (uuid "0da0633e-b4ac-4076-963e-9d24a4c2d337") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10k" + (at 0 1.43 180) + (layer "F.Fab") + (uuid "56801421-6f46-4aa2-9a9e-eee6577bcda6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fc006a51-7962-4e1a-89e2-b005c944987f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f5bcb210-bc9b-4093-9c88-92ae518d25ed") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "68baba0a-6b4c-4947-809f-dd5c31d19f5e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/60eca5e2-40df-4467-8756-e89fd0eb69d3") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f7e50677-f752-4239-835a-5e685d17ae80") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "849f1510-2b24-4a1e-a8ba-e47c29b39fbd") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5afce9ba-0a3a-41c8-931a-9254f8c58130") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a35fdc34-c137-471c-87ff-7fc7bc3fe30c") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ecae32cf-56a3-47d1-b3ec-138daff48b56") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "81de84c5-3f40-4009-897b-b820ea830cf3") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9fcee604-e06e-4acd-939a-92436fda24ed") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "db5d5168-30b3-490f-bd1b-baf9fc91b94e") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6b94b9f6-2679-4e95-9a68-3db4789af445") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bab0802d-404e-4596-913d-8765a1d4734e") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "4e398e7c-a2e4-4d7c-a355-96206e6bcf3a") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pintype "passive") + (uuid "8e4b206e-9400-4f79-bbc3-a647327d1d9b") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "9e656379-d75c-4c88-9454-e68bd28bc77b") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "86f1236c-50d4-4433-b1eb-fea696b668aa") + (at 55.75 47.9 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C7" + (at -0.7 1.45 90) + (layer "F.SilkS") + (uuid "69e1c561-f755-4762-82e2-48f1c6cfe35f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "87d856b1-2c9e-47c8-ab16-791c29c8b419") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "30ff27aa-424f-48cd-a198-0d77deeff1c1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "72861c9f-02ad-486c-9b65-1af7e02112cf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d0d8825-3d01-4ad4-8698-8fa1cce239dc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/5b70083f-de74-455e-9d96-c931cbe79391") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ceb2c4f5-82af-4c88-88d6-246ed82eeb0c") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4a7450e9-f5d6-4a61-96c2-2c15c1b65b96") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c6aed64c-a488-46f8-9b88-fbe952812fe4") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "532e1208-0106-4dc9-9779-76503601b4ec") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "92b456af-710b-4520-afcb-3b639947e64a") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f318fede-c623-4247-84eb-1a349d46d21d") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "00a90328-a5db-45ee-9502-f731f0ec624a") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "175e79b1-e34c-44c0-8be3-a1eb5d86568b") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "990b765a-7a37-4d59-8687-0d0b0ecaf39f") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f04f5a76-a702-4de8-b968-dda2829e852d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "782a9d6e-c1f9-4475-adf3-f4181b65dc69") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "978b5637-7567-4b88-a725-d31876ec7514") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "Net-(SW3-C)") + (pintype "passive") + (uuid "93fd6765-96d3-4ec2-a29c-ef2e7d8b15d2") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23-5" + (layer "F.Cu") + (uuid "87d9a3d9-f259-4fda-be9c-b8065ae6fca5") + (at 60.05 51.0625 90) + (descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "Reference" "U6" + (at -3.0375 0.85 0) + (layer "F.SilkS") + (uuid "a2e59e82-ab8e-461d-b44e-6bd9da557866") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AP2112K-3.3" + (at 0 2.4 -90) + (layer "F.Fab") + (uuid "4fe047c2-02d6-4914-8bd8-26d29d818f37") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45526aac-ca18-4499-8e14-11b69f7eeabe") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5fb4f796-9972-46c4-8d58-ac14c5a52733") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "600mA low dropout linear regulator, with enable pin, 3.8V-6V input voltage range, 3.3V fixed positive output, SOT-23-5" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6cbb9c62-2906-43c8-857d-affd38cf5a4e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23?5*") + (path "/ddab69ec-b375-4cab-9e8d-2023bc1adc91") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 -1.56) + (end 0.8 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "540f5f9a-9f55-42d7-ba84-c3861df055b8") + ) + (fp_line + (start 0 -1.56) + (end -0.8 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4f661f0d-70bd-40bc-a3fa-700ca1c6a48e") + ) + (fp_line + (start 0 1.56) + (end 0.8 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dcd82eb5-32fa-469e-a154-fbacbea39913") + ) + (fp_line + (start 0 1.56) + (end -0.8 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d1081944-ba6e-4c43-88de-a8f34f398218") + ) + (fp_poly + (pts + (xy -1.3 -1.51) (xy -1.54 -1.84) (xy -1.06 -1.84) (xy -1.3 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "d7adc079-59ab-4c1a-88b4-6a92e7577ef2") + ) + (fp_line + (start 2.05 -1.7) + (end -2.05 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dcf8e2a8-0ce2-45e7-91ba-de7ff54634fa") + ) + (fp_line + (start -2.05 -1.7) + (end -2.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "232780af-8b75-4a22-93d2-9f25e47b4db7") + ) + (fp_line + (start 2.05 1.7) + (end 2.05 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dc1fa3c2-159e-428f-97ec-b35ec3cc392a") + ) + (fp_line + (start -2.05 1.7) + (end 2.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "430b850b-1f73-42c0-af57-007b4bd27ce1") + ) + (fp_line + (start 0.8 -1.45) + (end 0.8 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "30ab7ecd-f409-4e4b-8a34-47b7761513b3") + ) + (fp_line + (start -0.4 -1.45) + (end 0.8 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f247fc74-b0c6-4c27-80d4-9a08dfba9441") + ) + (fp_line + (start -0.8 -1.05) + (end -0.4 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "53a3b320-87fb-455a-804a-60bf000ff91c") + ) + (fp_line + (start 0.8 1.45) + (end -0.8 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b507cbaf-95dc-410b-835c-7755a3c92f48") + ) + (fp_line + (start -0.8 1.45) + (end -0.8 -1.05) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b6bf38bc-7eb4-4588-870c-d291b89ca8c6") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "c24b3d6c-dba5-4070-9f5a-e7910ca6e92b") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -1.1375 -0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "Net-(SW3-C)") + (pinfunction "VIN") + (pintype "power_in") + (uuid "74137882-ca00-43c3-8711-0d56db4fbf6a") + ) + (pad "2" smd roundrect + (at -1.1375 0 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "dbf948f5-d29e-47a6-9f97-c7c2876e0d7b") + ) + (pad "3" smd roundrect + (at -1.1375 0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "EN") + (pintype "input") + (uuid "94e0cd3d-ab8a-4c46-9c7a-a10b393d62e9") + ) + (pad "4" smd roundrect + (at 1.1375 0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 64 "unconnected-(U6-NC-Pad4)") + (pinfunction "NC") + (pintype "no_connect") + (uuid "1d32bf68-d3b6-495e-b916-f4b2293a8f51") + ) + (pad "5" smd roundrect + (at 1.1375 -0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 65 "Net-(JP1-A)") + (pinfunction "VOUT") + (pintype "power_out") + (uuid "5fb3e8a9-bd90-4c39-8bb8-b8df63a0bca3") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "8a4be311-56c9-4d43-9cfc-7c71b15d4793") + (at 55.0925 55 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R9" + (at 3.2925 0 180) + (layer "F.SilkS") + (uuid "c456d85e-7f2d-44be-a292-f271ca7afe3a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1K" + (at 0 1.43 180) + (layer "F.Fab") + (uuid "8b1daf9c-8e83-4710-80ee-1b95bf0a863e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "64cb9684-f81c-4f00-b40c-1af75996e890") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "faf576c2-6a76-42e0-8413-62282aa615fd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5743a335-a97f-4323-a5ec-07f92ccd71e9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/15e81b8f-0b22-4632-9bd5-b648478f217b") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "592a62e8-449c-44ed-bdc8-8e37df8f3301") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7a1d3693-efb6-4cca-be81-af4b0c4f49ed") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3451e13-bc45-40f4-a543-4a0cb8cedecd") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9db5ee6a-1ffc-4e38-a368-902ac569a74d") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a354e304-34c5-4a7e-993c-e5f8fb99f7cd") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "be84ed5c-fd41-4290-9351-d592bee8d0f0") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "be66f76c-40fe-4077-8236-3132e627d714") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3bc22e81-e1f7-4990-8844-bb931fa02261") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4c575208-a870-4426-9fac-6f936845df8b") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b0ad67f0-993f-49a7-a4ae-9ffe38cced61") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "6ac48304-6bd2-4425-8d25-093f4fee6472") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 2 "Net-(D1-K)") + (pintype "passive") + (uuid "c2a59410-85e9-4eb4-902c-ba0fec76e0b0") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 13 "Net-(U2-~{STDBY})") + (pintype "passive") + (uuid "460d9fef-2838-4d54-8d29-c17c82087e0a") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "8ed0ec6b-b10b-4fa8-a1f7-921baa87d9e8") + (at 35.075 52.75 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C5" + (at 2.65 -0.075 -90) + (layer "F.SilkS") + (uuid "2f25c7b1-d338-49e7-80b7-9e5b8e2f189a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "0.1uF" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "0036a824-9dc8-4f05-a892-25a2ed7d9e58") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6403bfa8-e524-4d6d-b96c-5f43440aa972") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f01c1ad3-3394-4d2f-bcaf-fe50495e3737") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c41a0323-394a-4014-aae0-a6bf7298cd44") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/afdea0f2-cb17-4b86-a4bf-a6bafe372c39") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2667e16b-9ab8-47b0-840f-b8f0449f54b0") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "85ada625-01db-4cbb-a934-70b8db985c11") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bef6fc94-a0a1-4574-9119-a5f03c4f9d34") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "26ff9ce9-d19b-43b1-a198-622684592f52") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9e937c87-b67e-4dff-920b-0bba7a2f635a") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0b9ce248-d089-484d-b157-276c0898e94b") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "21451393-3363-47a5-8b28-1f4de9d61c13") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f705f2bc-b840-49f6-9875-2eb483a23589") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "44191fbe-5d9a-438d-afa2-c19d955893cf") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3aa20c4c-a5ee-4721-b272-f4111a7addcc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "0f7a1706-7efa-49a8-b339-f460dbe6548f") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 34 "Net-(U3-VCC)") + (pintype "passive") + (uuid "2be1693d-f7b7-40e0-9c92-4263594dcdc5") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 25 "Net-(BT1--)") + (pintype "passive") + (uuid "788601f9-c6dd-4931-8304-c2903009bb4b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "9344b262-acc6-4ab9-baf0-0172a0254f0e") + (at 32 58.79) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C4" + (at 2.6 -0.09 360) + (layer "F.SilkS") + (uuid "ebf8f361-ccec-4843-a201-2f66c6ff0387") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10uF" + (at 0 1.43 360) + (layer "F.Fab") + (uuid "0b417663-cca5-4c96-aae6-facb7d27e6c2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c77bb976-8616-4707-80e1-5d0011a3b4df") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18d32ee0-86c4-4843-9988-5e855d5389bc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7686e4d4-6583-4138-bbd0-e97ae8d318cb") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/077e1da2-92a7-440b-8e03-3b3cb1d8044a") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "18fec68b-f6e9-4886-8279-b00a04b9e5a2") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e0d1d67-a158-4a0e-a855-1ad498a3d3c8") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "74f6171a-3624-4177-af53-af5c44bbbee2") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1958908e-e89c-418c-8bad-087e4db1d70f") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f3a61f4a-5fd1-4664-9636-ec3bc0db2021") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f28706eb-fa04-4139-b27f-1da9e442c977") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d3823921-1daa-402b-bb53-e5d3215ae1e0") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7d392ba1-9e05-4a90-9706-b57e2da20552") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "84bbdb8d-9d54-45ac-ac6a-cbbda4578f99") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "545135cc-29eb-44d2-8fc7-86f2f2348545") + ) + (fp_text user "${REFERENCE}" + (at 0 0 360) + (layer "F.Fab") + (uuid "c10b8904-d4e8-4559-89b4-bf2150338324") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 26 "Net-(BT1-+)") + (pintype "passive") + (uuid "ea9d8163-e114-406f-989d-298632def643") + ) + (pad "2" smd roundrect + (at 0.775 0) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "c6366a3f-7480-4592-9853-b38a01a08f1b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "93ac505c-b10d-47ed-84a7-858a75332a86") + (at 56.92 44.6 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C3" + (at 0 -1.43 90) + (layer "F.SilkS") + (uuid "ef9441fd-1254-40a5-986a-3a83402c3ba8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "0ab71bb8-9203-4fbd-a7d3-66490f96e2c7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7c6e961b-3fad-493e-860a-ebf7395ad4a9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3de96031-d860-4106-a5c0-5b61899802fd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0ae6fd0d-929b-4214-8d16-680c401f1a44") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/fd158313-948f-4a82-9e08-06983d4b2268") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a4d1db35-79ef-4e75-b23c-d058cbd5b780") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "00f5205b-5ead-43ad-99a6-34eaa78bdfd9") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "505b300a-3610-4a14-942d-056f15554c71") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9b180d8f-7769-4a5c-ade6-2d862d6a412d") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0f1906e4-7ea5-479f-8437-6fcd49a94f1c") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "078ef730-b8bf-45bb-9066-dcebc90dc5d0") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "045181b0-5cb2-4f50-a9a5-9e3f70552820") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "53786ef4-702d-4a79-ade9-3a75aee46c48") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3d3143a6-3b5c-489a-8465-4a1ade1ac2c5") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ce68148-8c72-4a84-998e-4fb623a07f9b") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "ff380a6e-fc06-4f57-8f9e-e26dd466345f") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 6 "/MCU_EN") + (pintype "passive") + (uuid "be60343b-803c-4ba1-b9d3-95f957f586a5") + ) + (pad "2" smd roundrect + (at 0.775 0 270) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "5a8c8c86-b861-4bda-9f4d-2fbcaafb139e") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "97146dc6-7de0-4bd8-ad45-09ae36781f4b") + (at 66.2 51.6 90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C9" + (at 2.6 0 -90) + (layer "F.SilkS") + (uuid "ba998fa5-5749-47ac-b689-47f44a32db23") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "62ebac93-cc09-4210-b425-186ab987df11") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "22a86e1c-5931-4c43-9849-46a4bdf36676") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb307b7f-a2f3-4c3a-8bb4-dd4cfc74c7e1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "514c00b0-2e24-4bc2-8143-210bd7cec743") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/18d5c720-3296-4f28-b001-df6117450c95") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3f5ca50f-7195-44a0-b70d-66d11f6f59e3") + ) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "410d60c7-f6b4-4883-967c-592879dc7b89") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4e924e13-3de1-4ab3-891d-77a5095e03fe") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "902484b9-b59a-4d6f-9417-9a894f181966") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8c6ce41e-f2ab-4788-9940-61a54a04b1c5") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3873a591-35eb-4f8c-8f68-212bd9630af4") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f32114fc-ae77-4410-974f-1ce2b7e6cb16") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a3d9bf9b-05ae-4db9-952a-d4efe3dee19d") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "146346d3-74d8-4c3b-8156-9ee3fec05fc3") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ba4c861c-bade-4218-8737-aa55b1f2be92") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "458181c1-cb42-4960-96a7-02b11bb09527") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "73fd8f0c-c524-449d-843a-d3e6e982fc3b") + ) + (pad "2" smd roundrect + (at 0.775 0 90) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 66 "Net-(JP2-A)") + (pintype "passive") + (uuid "2d721f5b-70c0-491c-9b5e-8785d6c586f8") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.00mm:PinHeader_1x04_P2.00mm_Vertical" + (layer "F.Cu") + (uuid "98c8f859-7906-4b91-bfd4-baf4a9a141fd") + (at 77 58.03 90) + (descr "Through hole straight pin header, 1x04, 2.00mm pitch, single row") + (tags "Through hole pin header THT 1x04 2.00mm single row") + (property "Reference" "J1" + (at -0.07 8.1 0) + (layer "F.SilkS") + (uuid "399b7e36-d69e-45f6-9246-8aa0aad6a6e2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Schuifmaat" + (at 0 8.06 -90) + (layer "F.Fab") + (uuid "38823df5-875d-4918-b15e-673661fc866d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.00mm:PinHeader_1x04_P2.00mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d8786b49-ea1d-41ed-be89-4f91e8bb2c9d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ad0af15e-3290-4e0b-a67c-91c5ebf28f84") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0def8bc2-99d1-472c-b547-5aee9ed59fb4") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/1c2bfae3-9dec-4b77-b8ba-3e1c64d8acad") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr through_hole) + (fp_line + (start -1.06 -1.06) + (end 0 -1.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cbb1f6ca-c4ef-4978-a4d0-87b8dd2e04ac") + ) + (fp_line + (start -1.06 0) + (end -1.06 -1.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3299c638-80eb-462e-9b93-540562c83b1d") + ) + (fp_line + (start 1.06 1) + (end 1.06 7.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "caa84afd-4619-473f-9e99-9133443f3f14") + ) + (fp_line + (start -1.06 1) + (end 1.06 1) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "81c20ab4-640d-495c-8ed8-bc1a11061977") + ) + (fp_line + (start -1.06 1) + (end -1.06 7.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5f7a445c-4def-441f-b0b7-6c1da0cecb69") + ) + (fp_line + (start -1.06 7.06) + (end 1.06 7.06) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f528eae5-d39d-4bbf-b38d-bf68eb1ec9e9") + ) + (fp_line + (start 1.5 -1.5) + (end -1.5 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "526fc8da-7887-47e9-ac6d-6b5957ecb91d") + ) + (fp_line + (start -1.5 -1.5) + (end -1.5 7.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "77490062-11a7-41bb-b71e-0997c5adc9bf") + ) + (fp_line + (start 1.5 7.5) + (end 1.5 -1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "64f07ea8-969a-4ff4-97d4-416c2a92e9bd") + ) + (fp_line + (start -1.5 7.5) + (end 1.5 7.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7ed2cf59-c87f-40b9-b51f-8269984dbd64") + ) + (fp_line + (start 1 -1) + (end 1 7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d510f2f0-72db-4c91-8e6a-a45ed63a8bd1") + ) + (fp_line + (start -0.5 -1) + (end 1 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8a2ba85b-4ee0-4221-b314-20fba445d987") + ) + (fp_line + (start -1 -0.5) + (end -0.5 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a4f1be57-676b-41ef-902e-590c598d7448") + ) + (fp_line + (start 1 7) + (end -1 7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0b695bf2-d7a5-4614-8208-5f4d753a9f4d") + ) + (fp_line + (start -1 7) + (end -1 -0.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "58693217-3c48-43ce-973b-25ead8ebd403") + ) + (fp_text user "${REFERENCE}" + (at 0 3 0) + (layer "F.Fab") + (uuid "2d9ad046-4c84-4947-88bf-e3eeac1ef224") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 90) + (size 1.35 1.35) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "5046166e-2ed3-47e4-82f4-13c693d27a5a") + ) + (pad "2" thru_hole oval + (at 0 2 90) + (size 1.35 1.35) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 7 "Net-(J1-DATA)") + (pinfunction "DATA") + (pintype "passive") + (uuid "5308309a-f3df-4eec-b8e1-f4a6bd789646") + ) + (pad "3" thru_hole oval + (at 0 4 90) + (size 1.35 1.35) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 8 "Net-(J1-CLK)") + (pinfunction "CLK") + (pintype "passive") + (uuid "cfdd06d3-d32a-4de2-9b5a-c656c07e5c9c") + ) + (pad "4" thru_hole oval + (at 0 6 90) + (size 1.35 1.35) + (drill 0.8) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 41 "+1V8") + (pinfunction "VIN") + (pintype "passive") + (uuid "2a52e182-6caf-452a-bf25-4222e8083cda") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_1x04_P2.00mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "99ede4c1-df02-4aa8-9c61-6fe982d2f3e0") + (at 35.075 56.215 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R18" + (at -5.615 1.975 90) + (layer "F.SilkS") + (uuid "baddbec0-c06d-4fd9-b7de-7f5571164b7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "8991421f-a5ff-40f9-98f1-ca2d345b44d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b66c165d-6f8e-4074-adf8-3b47dc6a284e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9663295c-0435-4956-83ea-0a7c218e913d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e314b399-2a95-4b16-a66b-5666b5641b79") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/e4db8a33-143b-4073-8652-0a18929aef7d") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3c65eac-e84b-4367-b329-f4549fb694f3") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "dd018ce4-48a5-4c99-bdaf-f4bbd3b75d21") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c2a20ff-2936-4caa-8b80-0413841603c8") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2162eae9-5ceb-4565-a62b-d165280a7589") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c4369adf-143e-4de0-b213-b909f258f017") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8ffa0171-60ee-4a0b-a34a-40cfd7dd39e9") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b95557db-478c-4c71-ba49-1de3dbdc09b1") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e23bb7ea-2540-4895-87a6-26534ff9d2ce") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "19879546-03e5-45fd-9062-c3e15a16daa8") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "57b4d04d-bd37-4008-92ba-fbf6e99886bd") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "a106b891-5ecf-4ad5-a834-d877fd3e1590") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 34 "Net-(U3-VCC)") + (pintype "passive") + (uuid "b83f58e9-0a94-42ec-81bf-31a4fd4e6752") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 26 "Net-(BT1-+)") + (pintype "passive") + (uuid "37d86e6b-904d-4d15-8244-f7abe7412d81") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "9bbd8276-be4f-4c47-8ba7-80a8aa75d964") + (at 42.6 53.2 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R13" + (at -3.2 -0.6 90) + (layer "F.SilkS") + (uuid "e7dbb328-0ab3-4eff-a968-15e35d2a96e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "2K" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "9200ed7e-1a0f-4d87-8c64-b41d43310846") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dee0fcbf-4775-4463-87b4-a89d9544b273") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3e91b2c6-c370-4ffc-ba99-45122a610acf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b91adebc-1982-4dc3-a17c-ce0f83665c05") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/b51f9c07-eafb-40ca-a566-14f54f5a7b56") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d4c49d8e-585e-4b36-ba04-c7b79273bec4") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fcdd328f-f3a0-4f19-bb8c-a4a2fc5bd274") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f79922fc-694f-493e-8fde-629c2876f9de") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0c5b1752-4b96-46e1-877a-cfd782fbff06") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "35468076-67bb-4282-b64c-b94781f3e76e") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d3876d73-e5bc-46b2-bee1-9502508397b4") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2b8e6b2a-ffe6-455d-b600-555360f14240") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "55c13408-959c-482d-adc7-acabf931fe6d") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9f641c79-9577-4a04-a762-363f72b993bc") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "20ac97d7-747d-4735-a871-08c4d26bed82") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "6a76630b-8d6f-42c6-8de5-90200d34d308") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 17 "Net-(U2-PROG)") + (pintype "passive") + (uuid "5319c352-91aa-4742-a210-fdba61774006") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "8d8faf67-3e52-47a6-ac2b-8d9b194c1d58") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (layer "F.Cu") + (uuid "a1ac68f5-16f8-487c-9367-d768348dd4eb") + (at 37.835 50.5 90) + (descr "6-pin SOT-23 package, Handsoldering") + (tags "SOT-23-6 Handsoldering") + (property "Reference" "U5" + (at 3.1 -1.035 0) + (layer "F.SilkS") + (uuid "7cc5d428-6a34-4317-8540-bfbfb8438418") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "FS8205A" + (at 0 2.9 -90) + (layer "F.Fab") + (uuid "dd58e802-0c51-4ba6-a95c-42b5304430be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "72e7e00e-b445-4dd6-a744-53f52ccdbea0") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "04730fae-d068-4a90-a50a-fc46dc1c2129") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "FS8205A" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5f09bc97-8498-4145-85ca-6417595c4d50") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/6fd15661-4b8e-43bc-9394-bcb7b3f63d15") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0.1 -1.61) + (end 0.9 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b8cb5ebd-6103-4b4c-aa03-4957831e2fad") + ) + (fp_line + (start 0.1 -1.61) + (end -0.7 -1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "414d154d-5317-4ac2-8345-1de707b29412") + ) + (fp_line + (start -0.9 1.61) + (end 0.9 1.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "459bb09d-e015-4214-8e07-c5e1249265ae") + ) + (fp_poly + (pts + (xy -1.2 -1.56) (xy -1.44 -1.89) (xy -0.96 -1.89) (xy -1.2 -1.56) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "ec51182b-2305-4f67-8307-5fcbc1d69562") + ) + (fp_line + (start 2.4 -1.8) + (end 2.4 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f17688b3-a394-46f8-b6fc-0371302b61b7") + ) + (fp_line + (start -2.4 -1.8) + (end 2.4 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7464981c-4ff5-44b1-8de0-392b085ec8e7") + ) + (fp_line + (start 2.4 1.8) + (end -2.4 1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a96788a3-bd4a-406c-b417-4dcc3aba00dd") + ) + (fp_line + (start -2.4 1.8) + (end -2.4 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d4584319-8b10-4001-ad33-06d27d23b1fb") + ) + (fp_line + (start 0.9 -1.55) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e27afb2-f802-480d-986d-bf64cab026d5") + ) + (fp_line + (start 0.9 -1.55) + (end 0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a8d1a9ca-cf0c-4b25-ac0e-13b86464016c") + ) + (fp_line + (start -0.9 -0.9) + (end -0.25 -1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b73bc01a-f6ec-492e-8612-fd5109637336") + ) + (fp_line + (start -0.9 -0.9) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b58139c4-122c-4193-b7a4-7063b6a28c96") + ) + (fp_line + (start 0.9 1.55) + (end -0.9 1.55) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "742337e2-fea5-4ab7-a1e0-36a4b6250902") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "a36d6ea6-e19e-4c6b-bdb3-64f2a63e3140") + (effects + (font + (size 0.5 0.5) + (thickness 0.075) + ) + ) + ) + (pad "1" smd roundrect + (at -1.35 -0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 25 "Net-(BT1--)") + (pinfunction "S1") + (pintype "input") + (uuid "85372667-deec-4907-8491-49834bfa50a6") + ) + (pad "2" smd roundrect + (at -1.35 0 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 56 "unconnected-(U5-D1D2-Pad2)") + (pinfunction "D1D2") + (pintype "input+no_connect") + (uuid "5e5eb662-5efc-4ead-81aa-c589e44bf1ef") + ) + (pad "3" smd roundrect + (at -1.35 0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "S2") + (pintype "input") + (uuid "f2274371-b0db-49c4-ad38-8bb72c4fb00f") + ) + (pad "4" smd roundrect + (at 1.35 0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 57 "Net-(U5-G2)") + (pinfunction "G2") + (pintype "input") + (uuid "370b2771-16c4-483b-9709-3ad512e6e2a7") + ) + (pad "5" smd roundrect + (at 1.35 0 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 58 "unconnected-(U5-D1D2-Pad5)") + (pinfunction "D1D2") + (pintype "input+no_connect") + (uuid "74919d90-ed54-4365-80b6-f1bf653443b4") + ) + (pad "6" smd roundrect + (at 1.35 -0.95 90) + (size 1.56 0.65) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 55 "Net-(U3-OD)") + (pinfunction "G1") + (pintype "input") + (uuid "71a9ecb2-7178-4e94-a995-23c548201dcd") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "a20defe5-ea62-476e-b642-77b8f973f9b5") + (at 70.5 52.425 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R14" + (at -3.025 0 90) + (layer "F.SilkS") + (uuid "e3b237b7-9c23-4e75-9e4c-5110c0575ffb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "630" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "9f3fbe1d-983d-4f24-8753-548d2f1516fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a3450281-6c59-40a3-8bae-94567b085b44") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f9f0d30c-f6aa-4f66-9809-82a253632255") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3a2c0405-8c93-490b-a88a-f511cfeb18ff") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/45f29851-21ed-441a-8efa-23a527e22b7a") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c9d40e47-256f-4af1-aef6-fb9fb35d519c") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8e1d99ff-906c-495d-b6fe-6919aa400403") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9cf79dff-08a9-455d-bfb0-7d060038e4ea") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1caeb798-ae43-4107-bc0c-ad3f5ac9c903") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e1c09291-97b2-48b4-8cc8-d0489125d0e2") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb7914cf-d8eb-4f17-9503-a7d9dffa03b6") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bb59175a-b157-4425-9584-81045a172596") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f102f920-0a2c-4369-a5e2-49f475c15735") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dd0a716a-2d0d-4baf-99cc-051778fcea77") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6596dbaa-029d-4363-98b6-c49393ae41b2") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "5dd62235-90e4-4a8b-8698-868ae538264d") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 18 "Net-(U4-IO20)") + (pintype "passive") + (uuid "1b9ec19c-fbd9-41a3-9067-db6aae13768f") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 5 "Net-(D4-A)") + (pintype "passive") + (uuid "d0d6b8bc-5e0a-4907-bda2-46fecc2ed7a6") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23" + (layer "F.Cu") + (uuid "a2be1215-25f1-45d1-9300-2e9d9090d04e") + (at 76.5625 53.3 180) + (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 "Reference" "Q3" + (at 0.9625 2.5 180) + (layer "F.SilkS") + (uuid "10035dc0-64d4-41f7-a3a3-5d61d6f0f7f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "MMBT2222A" + (at 0 2.4 180) + (layer "F.Fab") + (uuid "30d53072-ec6c-441e-8aa8-9f47c0e6bb11") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "802dcda9-7b46-4b00-ae9e-6bedb5c228cd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/MMBT2222A.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ecdf81d-1ff1-404a-91c5-ff1cff73146f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "600mA Ic, 40V Vce, NPN Transistor, SOT-23" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e057f836-c026-40e9-a7ff-f0d6aa4bf64d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23*") + (path "/341cc1b4-1dc1-40bf-86fa-bcfb7a15c8f3") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 1.56) + (end 0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8827f0b5-8ba0-4404-bff7-b23ffd1d1d81") + ) + (fp_line + (start 0 1.56) + (end -0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ca125f01-35e6-4efc-b1fe-0caafa6a8cf1") + ) + (fp_line + (start 0 -1.56) + (end 0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d3baa35c-76aa-42f5-9e9a-b5ea873e0058") + ) + (fp_line + (start 0 -1.56) + (end -0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b0c82596-c81e-4e6b-83f2-d90ff7bce7e1") + ) + (fp_poly + (pts + (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "7cad152a-ea6e-482f-979b-4ab41f5cb353") + ) + (fp_line + (start 1.92 1.7) + (end 1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7f87cdcb-7f80-4cf6-9e6d-76e2f0822624") + ) + (fp_line + (start 1.92 -1.7) + (end -1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0c658794-86c1-43d4-88c7-74fc53bd8898") + ) + (fp_line + (start -1.92 1.7) + (end 1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5d1e7fd-1e14-4235-a88b-94175f38d918") + ) + (fp_line + (start -1.92 -1.7) + (end -1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1cf55bb1-4070-42a8-8366-03ceec415c53") + ) + (fp_line + (start 0.65 1.45) + (end -0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bd8ddbc1-d499-441d-abd1-9fb9d8eb09dd") + ) + (fp_line + (start 0.65 -1.45) + (end 0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1aac5f23-695e-4601-be5f-0f4b719b8ba8") + ) + (fp_line + (start -0.325 -1.45) + (end 0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0c45ff91-d000-4d8b-9c34-8480281cc6c5") + ) + (fp_line + (start -0.65 1.45) + (end -0.65 -1.125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2e24ba50-5256-47f8-b1fc-88290658c175") + ) + (fp_line + (start -0.65 -1.125) + (end -0.325 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a3d99f43-8479-405a-a334-8b14b0e94ee5") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "5ce447aa-21e4-47de-9cad-a4eff5854026") + (effects + (font + (size 0.32 0.32) + (thickness 0.05) + ) + ) + ) + (pad "1" smd roundrect + (at -0.9375 -0.95 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 45 "Net-(Q3-B)") + (pinfunction "B") + (pintype "input") + (uuid "3620b85f-75b8-47c3-9b7e-2718bd0f66dd") + ) + (pad "2" smd roundrect + (at -0.9375 0.95 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "E") + (pintype "passive") + (uuid "32b14230-e26d-4e2d-bade-2b9216d9cdc0") + ) + (pad "3" smd roundrect + (at 0.9375 0 180) + (size 1.475 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 44 "/IO17") + (pinfunction "C") + (pintype "passive") + (uuid "3028d5ad-1937-4e4b-9064-f92e005984b0") + ) + (model "${KICAD8_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 "Diode_SMD:D_SOD-523" + (layer "F.Cu") + (uuid "a33a9448-78f5-4cbe-997c-81a8dab95a82") + (at 50.2 49.525 -90) + (descr "http://www.diodes.com/datasheets/ap02001.pdf p.144") + (tags "Diode SOD523") + (property "Reference" "D5" + (at -2.125 0 180) + (layer "F.SilkS") + (uuid "ea3d0b31-c84d-4f0c-a83e-a376f6de534e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "D_Schottky" + (at 0 1.4 90) + (layer "F.Fab") + (uuid "81731775-6cb0-4683-ba76-2ad6b811b379") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-523" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "17063c8a-decc-4082-9433-c162468e18dd") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "67338097-ae61-407f-915d-41f1304662fc") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "RB521S30T1G" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4ebc893c-f715-4668-8cd5-1405e55b6f93") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "TO-???* *_Diode_* *SingleDiode* D_*") + (path "/f3593008-b61d-40af-8cb9-863aa6456d70") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0.7 0.6) + (end -1.26 0.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c0e98175-cc47-44bc-aeff-68f0b8948d51") + ) + (fp_line + (start -1.26 -0.6) + (end -1.26 0.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "97c21e85-c1be-45f9-9395-374f2060489c") + ) + (fp_line + (start 0.7 -0.6) + (end -1.26 -0.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2156f04a-113c-408b-949b-6be1540aee67") + ) + (fp_line + (start -1.25 0.7) + (end -1.25 -0.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c62a1fd4-5744-4d00-86dd-dceee6fed90c") + ) + (fp_line + (start 1.25 0.7) + (end -1.25 0.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fbbf332c-dd51-435e-ac79-12095c32acb5") + ) + (fp_line + (start -1.25 -0.7) + (end 1.25 -0.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f6bf16b-ca37-4540-b58e-6046aa4725c1") + ) + (fp_line + (start 1.25 -0.7) + (end 1.25 0.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2ca24418-c213-4cb9-9e5b-6cc9e6b26222") + ) + (fp_line + (start -0.65 0.45) + (end -0.65 -0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6be106bc-2cac-49e8-bb2c-f96ef69f0ec6") + ) + (fp_line + (start 0.65 0.45) + (end -0.65 0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4f310fa7-a191-4174-8473-1c0e25013268") + ) + (fp_line + (start -0.2 0.2) + (end -0.2 -0.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "465ba3b3-e886-48ea-b3f9-8812ecd1a02e") + ) + (fp_line + (start 0.1 0.2) + (end 0.1 -0.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bede43de-797a-41c4-a735-ee14a84b6a30") + ) + (fp_line + (start -0.2 0) + (end 0.1 0.2) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f3e93203-cb57-4ce9-b39a-d6d78022cc70") + ) + (fp_line + (start -0.2 0) + (end -0.35 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9338acd3-51c5-4c9c-8b62-52e2b912aefa") + ) + (fp_line + (start 0.1 0) + (end 0.25 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e699c2ea-0cbb-4645-8985-59535adfe314") + ) + (fp_line + (start 0.1 -0.2) + (end -0.2 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "920d1947-75a6-4e52-9afc-92a598a14860") + ) + (fp_line + (start -0.65 -0.45) + (end 0.65 -0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0393105f-3d64-41cc-8041-4baa8875a4c1") + ) + (fp_line + (start 0.65 -0.45) + (end 0.65 0.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "90216e32-9bec-4693-a2cb-9aef72ee6d1c") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.3 90) + (layer "F.Fab") + (uuid "297b9930-dd4b-4f23-b3be-5b815f875b00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -0.7 0 90) + (size 0.6 0.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 27 "/BAT_VCC_OUT") + (pinfunction "K") + (pintype "passive") + (uuid "ac970657-76d2-47e5-9c04-34de1b48ce58") + ) + (pad "2" smd roundrect + (at 0.7 0 90) + (size 0.6 0.7) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pinfunction "A") + (pintype "passive") + (uuid "2675874d-fdae-4809-aada-bee71c1af170") + ) + (model "${KICAD8_3DMODEL_DIR}/Diode_SMD.3dshapes/D_SOD-523.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") + (uuid "ac417a13-0f38-4ee5-9028-7fb30ca78cb2") + (at 50.1825 43.6) + (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 "Reference" "Q2" + (at 0.0175 2.4 0) + (layer "F.SilkS") + (uuid "4042f572-e637-4baf-b93e-e212c9af00fd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "BSS138" + (at 0 2.4 0) + (layer "F.Fab") + (uuid "7f1364cb-1c36-48f1-96a6-f1437b5a8a78") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45a3db50-4af4-4c85-a48e-b8c33b8b9eb8") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a01ec267-c50f-4541-a324-8c5fdd4dfc20") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7cff6141-1d94-40fe-be0b-34748b30572d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23*") + (path "/088678e5-29df-40cb-b2b6-c2c88ee9f2d8") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 -1.56) + (end -0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb6113a7-878f-4af7-88da-a1cc1473799a") + ) + (fp_line + (start 0 -1.56) + (end 0.65 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ad73e30b-9843-43be-8c37-ae9ad1faeed3") + ) + (fp_line + (start 0 1.56) + (end -0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0e6c784c-4f3d-4042-8cfb-965802a7c904") + ) + (fp_line + (start 0 1.56) + (end 0.65 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "54fbd87f-50c5-4abd-9b00-206a1458b397") + ) + (fp_poly + (pts + (xy -1.1625 -1.51) (xy -1.4025 -1.84) (xy -0.9225 -1.84) (xy -1.1625 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "c9c1c99c-fadf-4058-9e28-72c7df4bb8f0") + ) + (fp_line + (start -1.92 -1.7) + (end -1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0a4d5b5e-817d-4591-849a-7ccece74c643") + ) + (fp_line + (start -1.92 1.7) + (end 1.92 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "966f5f6e-821c-4eb5-96b5-3c0cfab9f8d6") + ) + (fp_line + (start 1.92 -1.7) + (end -1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b2a7b402-adec-45e9-883f-01d3544ad3df") + ) + (fp_line + (start 1.92 1.7) + (end 1.92 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7761ca4e-30a4-454c-9304-a8c187c1bdd6") + ) + (fp_line + (start -0.65 -1.125) + (end -0.325 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8c9116e8-635c-454a-bbbb-56fbf3ad9932") + ) + (fp_line + (start -0.65 1.45) + (end -0.65 -1.125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ffc24b6-896e-4047-ae4e-bbfcc9c2b219") + ) + (fp_line + (start -0.325 -1.45) + (end 0.65 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ea9e9e2a-2915-4a3f-b358-6f12666935f5") + ) + (fp_line + (start 0.65 -1.45) + (end 0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8ffd04a3-00da-4cc6-bd24-57222a6cbb00") + ) + (fp_line + (start 0.65 1.45) + (end -0.65 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c46d28a6-df1c-4386-b8a7-88905073fd43") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "55af4538-64ec-4dca-b30f-3850027f7c16") + (effects + (font + (size 0.32 0.32) + (thickness 0.05) + ) + ) + ) + (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 "Net-(Q1-S)") + (pinfunction "G") + (pintype "input") + (uuid "6c1dc089-4ede-407d-b06d-7ff636068592") + ) + (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 16 "/MCU_BOOT") + (pinfunction "S") + (pintype "passive") + (uuid "4a1a8ea8-55bc-47f2-8aba-85f1015c9c84") + ) + (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 10 "Net-(Q1-G)") + (pinfunction "D") + (pintype "passive") + (uuid "fa8f293e-e842-40d5-ac54-e4c2c5d4a0d3") + ) + (model "${KICAD8_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 "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "aea7a3e2-cefe-4e68-bc8f-a12620b3d0b8") + (at 32.275 56.14 180) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Reference" "BT1" + (at 0.775 5.44 -90) + (layer "F.SilkS") + (uuid "76c104d9-03de-4ed6-ac78-5bfcb3f25338") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Battery_Cell" + (at 0 4.87 180) + (layer "F.Fab") + (uuid "a9364bea-4308-4262-aac6-b37a532a39a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da1ac3e5-fa8f-47d6-8b0b-e0c96dec2984") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d05cb6bb-c804-4bdc-bfc8-dd2fe38fffa6") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Single-cell battery" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8cb82592-a9ee-415c-bd4c-1078cbc429f3") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/550d4385-3139-4c1a-9286-5eae34c77050") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr through_hole) + (fp_line + (start 1.33 1.27) + (end 1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "67ee0377-ab98-4874-8ed4-c38f3f856983") + ) + (fp_line + (start -1.33 3.87) + (end 1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "edddf875-1096-4559-9309-3e4fc3f615f4") + ) + (fp_line + (start -1.33 1.27) + (end 1.33 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3f9ebd0c-d28e-4b22-8ed7-12b4bb6a5139") + ) + (fp_line + (start -1.33 1.27) + (end -1.33 3.87) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c2304914-5f16-42bd-bf12-936fc3845dd8") + ) + (fp_line + (start -1.33 0) + (end -1.33 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "cf885a0b-0a70-4742-9e65-568615c56c80") + ) + (fp_line + (start -1.33 -1.33) + (end 0 -1.33) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "026a60ac-39eb-4f90-8c18-35863a67de36") + ) + (fp_line + (start 1.8 4.35) + (end 1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "280c45fb-c820-405a-afaf-94c88efbec65") + ) + (fp_line + (start 1.8 -1.8) + (end -1.8 -1.8) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "448dd8ad-9042-4143-aa6f-ab94f816ff88") + ) + (fp_line + (start -1.8 4.35) + (end 1.8 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f28c7b14-b588-43d6-869f-6488fcd64baa") + ) + (fp_line + (start -1.8 -1.8) + (end -1.8 4.35) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4494d3cc-b00e-4dd1-ab3b-881f52049e2b") + ) + (fp_line + (start 1.27 3.81) + (end -1.27 3.81) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "de4282a7-60fb-4b38-a5e0-262ee1415714") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 3.81) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "85db21e2-c313-4684-a273-d4eb8747dba7") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5f3138ec-2255-481b-9447-d0e216c2bb79") + ) + (fp_line + (start -1.27 3.81) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c75a8e9-089f-40d9-9da8-a05925a8db04") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "908c77c0-821e-477e-bd54-b789ce17a6e6") + ) + (fp_text user "${REFERENCE}" + (at 0 1.27 -90) + (layer "F.Fab") + (uuid "7c6c22fe-cb89-4f6c-b4bf-225e60aa8c68") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 26 "Net-(BT1-+)") + (pinfunction "+") + (pintype "passive") + (uuid "ed4f8cce-c509-4b94-87e0-e2cb74d383e9") + ) + (pad "2" thru_hole oval + (at 0 2.54 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 25 "Net-(BT1--)") + (pinfunction "-") + (pintype "passive") + (uuid "47d10ff9-149a-4861-8410-77f66b43c9dd") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" + (layer "F.Cu") + (uuid "b40ec924-4653-4399-8805-1d209a57361d") + (at 47.275 54.475) + (descr "SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOIC SO") + (property "Reference" "U2" + (at 2.225 3.825 0) + (layer "F.SilkS") + (uuid "d63a388c-3ae4-48a1-8620-9c18fa2328cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "TP4056" + (at 0 3.4 0) + (layer "F.Fab") + (uuid "671093f1-8323-498a-8aa3-37ec2b928aa7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "67aa2f16-4b19-474c-91bc-879437cebf51") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "01a5f51b-5ea8-440a-8e43-0516a7d0d17a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "TP4056" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2febe6bf-795d-4561-aee9-c229a6eb60ef") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (path "/a2ccde2f-4136-4235-aa8e-1434b1804cdb") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 -2.56) + (end -1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "78ffcc12-40bb-40a6-aa10-0bafe4bd70e4") + ) + (fp_line + (start 0 -2.56) + (end 1.95 -2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64f39397-3c04-450c-b888-dc5601e5f9ae") + ) + (fp_line + (start 0 2.56) + (end -1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4135c2de-7a53-4662-ab6f-fdc58ae2431a") + ) + (fp_line + (start 0 2.56) + (end 1.95 2.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "baac651c-4a59-497e-920a-34aa3059b4d4") + ) + (fp_poly + (pts + (xy -2.7 -2.465) (xy -2.94 -2.795) (xy -2.46 -2.795) (xy -2.7 -2.465) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "0f8b143a-94c1-4262-960e-685d6c54d293") + ) + (fp_line + (start -3.7 -2.7) + (end -3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "691cb08c-25c0-41cf-b6b3-2a2e03c1ad58") + ) + (fp_line + (start -3.7 2.7) + (end 3.7 2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1e0a561f-3540-4645-bd92-1e20953a605c") + ) + (fp_line + (start 3.7 -2.7) + (end -3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ae36ef56-91a9-46cb-9ce9-c08f5a78c01b") + ) + (fp_line + (start 3.7 2.7) + (end 3.7 -2.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "dcab5ca1-065f-4ff8-9b2b-78800a970dcb") + ) + (fp_line + (start -1.95 -1.475) + (end -0.975 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "992728d1-2bf8-4793-819e-01fc28f8d0df") + ) + (fp_line + (start -1.95 2.45) + (end -1.95 -1.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "658a4448-fdf6-4d46-89bf-0c33e000c158") + ) + (fp_line + (start -0.975 -2.45) + (end 1.95 -2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "19621a7a-e5d8-4ca1-b867-dd78f96d11cf") + ) + (fp_line + (start 1.95 -2.45) + (end 1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "59f3ee69-00da-4a1b-ad0d-a39ddc5622a8") + ) + (fp_line + (start 1.95 2.45) + (end -1.95 2.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6a769b42-a742-4dfb-87e6-4773eb0ecb33") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "35f0452f-4de0-4753-94e6-fe7e4e867394") + (effects + (font + (size 0.98 0.98) + (thickness 0.15) + ) + ) + ) + (pad "" smd roundrect + (at -0.57 -0.75) + (size 0.92 1.21) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "a7860ba6-536a-4821-a62c-c2c961a3dd37") + ) + (pad "" smd roundrect + (at -0.57 0.75) + (size 0.92 1.21) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "098701f6-0418-402a-a620-0dbf56804113") + ) + (pad "" smd roundrect + (at 0.57 -0.75) + (size 0.92 1.21) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "4efcc7d5-8ad9-49fa-9482-00cac20d817b") + ) + (pad "" smd roundrect + (at 0.57 0.75) + (size 0.92 1.21) + (layers "F.Paste") + (roundrect_rratio 0.25) + (uuid "75b202c9-04c7-4085-897f-3378b3a608fa") + ) + (pad "1" smd roundrect + (at -2.475 -1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 19 "Net-(U2-TEMP)") + (pinfunction "TEMP") + (pintype "input") + (uuid "ac5b35bb-e774-48f4-8d2d-5e7339e12e99") + ) + (pad "2" smd roundrect + (at -2.475 -0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 17 "Net-(U2-PROG)") + (pinfunction "PROG") + (pintype "input") + (uuid "62192480-4c80-4ea0-862c-4e66689dbc71") + ) + (pad "3" smd roundrect + (at -2.475 0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "GND") + (pintype "input") + (uuid "b0c2a678-1498-4b6c-99ec-8f7b3ab40c88") + ) + (pad "4" smd roundrect + (at -2.475 1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pinfunction "VCC") + (pintype "input") + (uuid "9dbb4812-153b-401e-bfca-b6c4b7fa2bbf") + ) + (pad "5" smd roundrect + (at 2.475 1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 26 "Net-(BT1-+)") + (pinfunction "BAT") + (pintype "input") + (uuid "e68130a6-fb05-4e7e-acfe-f779aac05138") + ) + (pad "6" smd roundrect + (at 2.475 0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 13 "Net-(U2-~{STDBY})") + (pinfunction "~{STDBY}") + (pintype "input") + (uuid "8ba71cd2-8ad9-4452-ac36-4df8b1470685") + ) + (pad "7" smd roundrect + (at 2.475 -0.635) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 14 "Net-(U2-~{CHRG})") + (pinfunction "~{CHRG}") + (pintype "input") + (uuid "79388ff7-074d-4b30-b67f-6afbf7755e84") + ) + (pad "8" smd roundrect + (at 2.475 -1.905) + (size 1.95 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pinfunction "CE") + (pintype "input") + (uuid "e04c95b0-2c7e-46b2-83d9-0e0c8965477f") + ) + (pad "9" smd rect + (at 0 0) + (size 2.29 3) + (property pad_prop_heatsink) + (layers "F.Cu" "F.Mask") + (net 37 "GND") + (pinfunction "PP") + (pintype "input") + (zone_connect 2) + (uuid "3a51cf45-bc22-464d-9b87-0190a88d2fe5") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "${KICAD8_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.35x2.35mm.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric" + (layer "F.Cu") + (uuid "b604cd23-bb6f-4db2-92c8-ec24a39e0c7c") + (at 46.225 42.7 180) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (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), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C1" + (at 0.625 1.4 180) + (layer "F.SilkS") + (uuid "50df16b8-a7f7-4c84-b7e7-30e31c1e9d21") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.43 180) + (layer "F.Fab") + (uuid "9cccedf9-a3ff-4bfa-b52f-ad9fc106723b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "515b5bed-4ecc-4773-a080-c3ba4c672a2b") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fc2214a6-11ae-4c23-a179-c0f3067c5078") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5d8a054f-9c99-43df-94ff-b6629c4903b9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/cd1f2872-0d9e-452b-9d83-5a1f61b7ca0f") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.14058 0.51) + (end 0.14058 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f06ae0ca-3ea5-4da3-b4cd-10b9c7d84a17") + ) + (fp_line + (start -0.14058 -0.51) + (end 0.14058 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c6b52e5-2e16-4ff1-8101-88f0430b4d14") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3170cd7e-c289-4315-9014-6ad284d09b90") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5aa4b7e0-0b00-4c12-9c28-e19d45a9cf5b") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c853885-3685-4102-a513-31e8a1eabe10") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "8aec7f73-f060-4f87-af62-a7d8523d0351") + ) + (fp_line + (start 0.8 0.4) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f34eb90b-72c1-4ef8-ad10-96ff960d2d55") + ) + (fp_line + (start 0.8 -0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1c275a5e-2f73-4b5c-ba6d-87bc5967d237") + ) + (fp_line + (start -0.8 0.4) + (end -0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d9557c5e-adf2-4e30-bbf4-e786ad5467b4") + ) + (fp_line + (start -0.8 -0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fcf92599-76d1-4d59-8900-2dd0d1543d64") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "5d4e031d-fb79-47c5-bb75-5fcb899e22b1") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 36 "+3V3") + (pintype "passive") + (uuid "bfde6435-a724-46f2-aa9e-d5fe32a2613a") + ) + (pad "2" smd roundrect + (at 0.775 0 180) + (size 0.9 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "f236f3be-5788-41cc-be98-4efc53f2d21b") + ) + (model "${KICAD8_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Package_TO_SOT_SMD:SOT-23-5" + (layer "F.Cu") + (uuid "bb198ca7-07a9-4f77-a08e-48e6384e1173") + (at 63.65 51.0625 90) + (descr "SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "SOT TO_SOT_SMD") + (property "Reference" "U7" + (at -2.9375 0.75 0) + (layer "F.SilkS") + (uuid "ef5de18e-fb70-4d80-b3b4-e5b0ee2ebda8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "AP2112K-1.8" + (at 0 2.4 -90) + (layer "F.Fab") + (uuid "dbcd70b7-4f2f-4557-9db8-3086ba261ad6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7b909be-6cfe-4f2d-894f-24b3c0f40694") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "87cec3d0-557d-44b2-b325-decb3682d7c7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.8V fixed positive output, SOT-23-5" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e32d82fa-ef78-484e-a232-6b7942c77369") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SOT?23?5*") + (path "/beaf99b7-0d86-4149-8d5d-b5fe22af968e") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start 0 -1.56) + (end 0.8 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7db23ac1-b5dc-4018-b734-b37b9e2cf378") + ) + (fp_line + (start 0 -1.56) + (end -0.8 -1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "09a4d84e-f52f-4f19-99f4-ef86b4ac7198") + ) + (fp_line + (start 0 1.56) + (end 0.8 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "74fa4203-9f97-432a-9616-5a3497e99dbc") + ) + (fp_line + (start 0 1.56) + (end -0.8 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87ed4cd5-3521-4ab2-880d-5699d5724018") + ) + (fp_poly + (pts + (xy -1.3 -1.51) (xy -1.54 -1.84) (xy -1.06 -1.84) (xy -1.3 -1.51) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "4d376dbb-b02c-4c95-a633-cf59ba03b8ea") + ) + (fp_line + (start 2.05 -1.7) + (end -2.05 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9f9f0fa0-6828-4961-bb97-aeedb125ae02") + ) + (fp_line + (start -2.05 -1.7) + (end -2.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2004b12c-cf05-405d-bc27-8ebe478ed9c2") + ) + (fp_line + (start 2.05 1.7) + (end 2.05 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b43fe2d-b1e9-4c8d-a372-6840e17f7447") + ) + (fp_line + (start -2.05 1.7) + (end 2.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "58fc6bdc-067e-41ed-98d6-1a7c46d8dabd") + ) + (fp_line + (start 0.8 -1.45) + (end 0.8 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5d2f9807-f685-4e5b-8432-eb882824cbf6") + ) + (fp_line + (start -0.4 -1.45) + (end 0.8 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "63c3e212-47bf-4375-95ff-cffe30221473") + ) + (fp_line + (start -0.8 -1.05) + (end -0.4 -1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e4476328-d0a1-4688-bfa8-3514d5acf08f") + ) + (fp_line + (start 0.8 1.45) + (end -0.8 1.45) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f2290c0a-a2c8-4ee2-9fd0-29b84ebe6904") + ) + (fp_line + (start -0.8 1.45) + (end -0.8 -1.05) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1b40f3c1-dccb-4983-83c7-d408e331d4cf") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "add14159-9551-438f-b908-c64a16ed4e3b") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -1.1375 -0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 67 "Net-(SW3-C)") + (pinfunction "VIN") + (pintype "power_in") + (uuid "6bbf1728-ec3c-46e4-921b-7f1384922bf2") + ) + (pad "2" smd roundrect + (at -1.1375 0 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "dc14df16-6f10-41a9-94a0-06e55e14cc0b") + ) + (pad "3" smd roundrect + (at -1.1375 0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pinfunction "EN") + (pintype "input") + (uuid "7579b6b0-8e9d-46e5-9495-72d495336e4e") + ) + (pad "4" smd roundrect + (at 1.1375 0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 59 "unconnected-(U7-NC-Pad4)") + (pinfunction "NC") + (pintype "no_connect") + (uuid "57a0289f-ebb7-40a0-928b-f46d0d2fe3b6") + ) + (pad "5" smd roundrect + (at 1.1375 -0.95 90) + (size 1.325 0.6) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 66 "Net-(JP2-A)") + (pinfunction "VOUT") + (pintype "power_out") + (uuid "7937bd6b-4c45-4cf2-9f7d-ca39a224b6d7") + ) + (model "${KICAD8_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Button_Switch_SMD:SW_SPDT_PCM12" + (layer "F.Cu") + (uuid "d368e281-ea5e-4d40-8ec6-dd327ae60414") + (at 61 57.325) + (descr "Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf") + (property "Reference" "SW3" + (at -3 -3.2 0) + (layer "F.SilkS") + (uuid "ebf53913-fdb9-45f3-bb4f-258eab6d49be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SW_SPDT" + (at 0 4.25 0) + (layer "F.Fab") + (uuid "420a8895-9362-4a8d-b624-f62d6ef90bed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPDT_PCM12" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "99f210e3-cb85-489d-9643-f10e693f7492") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e155ba55-8dbd-4482-8157-8da4103d452a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Switch, single pole double throw" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5dfb3311-8b09-4c97-a6b3-fa47bc4d9808") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C431541" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "16672689-197b-4a20-b02a-48eed86440df") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/5aced0b3-f310-4ec5-baab-0a9b6809ea59") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -3.45 -0.07) + (end -3.45 0.72) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e2a5cbdd-ff81-4f74-9cc6-b3a6ae8e8fab") + ) + (fp_line + (start -2.85 1.73) + (end 2.85 1.73) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ce6ba1bb-a7bc-4330-9cb0-52d49eb110c5") + ) + (fp_line + (start -1.6 -1.12) + (end 0.1 -1.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ed8aad71-cbe8-4143-999f-6b05840f3549") + ) + (fp_line + (start -1.4 1.73) + (end -1.4 3.02) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "13b3fb62-2719-4e39-9a10-150d58d92799") + ) + (fp_line + (start -1.4 3.02) + (end -1.2 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf2b9b9c-c8e6-4d95-9866-d39f7e5b8833") + ) + (fp_line + (start -1.2 3.23) + (end -0.3 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "59c3f9d5-15fc-4b1a-8435-424fab1d375a") + ) + (fp_line + (start -0.1 3.02) + (end -0.3 3.23) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c4b9d667-e49b-4ef4-8c44-170ec9782c18") + ) + (fp_line + (start -0.1 3.02) + (end -0.1 1.73) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d7890f53-0808-42f8-92ab-e6f9f87b6f89") + ) + (fp_line + (start 1.4 -1.12) + (end 1.6 -1.12) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6fa6961f-eb65-4132-b722-778ac863dd21") + ) + (fp_line + (start 3.45 0.72) + (end 3.45 -0.07) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8bfd8a66-44c4-419c-90b6-ecd0e582a77f") + ) + (fp_line + (start -4.4 -2.45) + (end 4.4 -2.45) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bf50e563-95fe-4bd1-b147-b80fe8db090b") + ) + (fp_line + (start -4.4 2.1) + (end -4.4 -2.45) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "d2410fe2-4a14-4161-9498-152c066490d0") + ) + (fp_line + (start -1.65 2.1) + (end -4.4 2.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "6d9bdae2-8495-42d8-b7ec-89de7ab9263b") + ) + (fp_line + (start -1.65 3.4) + (end -1.65 2.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "aebaa7dc-6680-4d3f-895f-952db161e13d") + ) + (fp_line + (start 1.65 2.1) + (end 1.65 3.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "cd8bb24d-8b1a-4b12-bc73-8f5de4522e4b") + ) + (fp_line + (start 1.65 3.4) + (end -1.65 3.4) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "24fd8525-ee5f-496e-a307-1cdaf32d665b") + ) + (fp_line + (start 4.4 -2.45) + (end 4.4 2.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "174945de-c707-401d-9034-7349f8733e96") + ) + (fp_line + (start 4.4 2.1) + (end 1.65 2.1) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "632a4af9-4c2e-43c4-8a66-b32cd974cc26") + ) + (fp_line + (start -3.35 -1) + (end -3.35 1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3be8d92d-2ee3-4530-bd7f-13ccdc63776c") + ) + (fp_line + (start -3.35 1.6) + (end 3.35 1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cafe12b3-3d08-48ec-b572-de78c47830b7") + ) + (fp_line + (start -1.4 1.65) + (end -1.4 2.95) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3d7d686a-e3ae-4634-90f9-40ae52cd169a") + ) + (fp_line + (start -1.4 2.95) + (end -1.2 3.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f097ed37-b7bd-492d-ba45-e1e8f373b226") + ) + (fp_line + (start -1.2 3.15) + (end -0.35 3.15) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e8fd0ee0-1f9b-4514-a2f2-27fb8329363e") + ) + (fp_line + (start -0.35 3.15) + (end -0.15 2.95) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a4036316-81dd-4c4e-a8b8-bbc368713451") + ) + (fp_line + (start -0.15 2.95) + (end -0.1 2.9) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2f5cfdf2-c316-4b11-844c-1d5c0a8c6d41") + ) + (fp_line + (start -0.1 2.9) + (end -0.1 1.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9c8690eb-3f78-4f7f-8750-a0c816910a35") + ) + (fp_line + (start 3.35 -1) + (end -3.35 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a2470710-5a19-495d-9636-412245aba6b7") + ) + (fp_line + (start 3.35 1.6) + (end 3.35 -1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b4d1c2d7-9ed6-428c-8829-cf7fbbb06a77") + ) + (fp_text user "${REFERENCE}" + (at 0 -3.2 0) + (layer "F.Fab") + (uuid "6800359f-00a2-4d63-82cd-8b0b28ca5f2d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" smd rect + (at -3.65 -0.78) + (size 1 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "2a7608b0-18d8-44e3-af25-4e0d3f9c5e67") + ) + (pad "" smd rect + (at -3.65 1.43) + (size 1 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "daf37d37-84e8-422f-9224-5d178e77514c") + ) + (pad "" np_thru_hole circle + (at -1.5 0.33) + (size 0.9 0.9) + (drill 0.9) + (layers "*.Cu" "*.Mask") + (uuid "e436816e-b3d8-4d7d-81fc-061d227fc278") + ) + (pad "" np_thru_hole circle + (at 1.5 0.33) + (size 0.9 0.9) + (drill 0.9) + (layers "*.Cu" "*.Mask") + (uuid "c3385c06-886c-44c7-b712-d60d93124c6a") + ) + (pad "" smd rect + (at 3.65 -0.78) + (size 1 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "599138cd-1dc9-46b4-bdfa-ba05a99e6ec6") + ) + (pad "" smd rect + (at 3.65 1.43) + (size 1 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (uuid "d3f64152-4118-4e65-8c33-2861fe5d6abf") + ) + (pad "1" smd rect + (at -2.25 -1.43) + (size 0.7 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 68 "unconnected-(SW3-A-Pad1)") + (pinfunction "A") + (pintype "passive+no_connect") + (uuid "babe89a7-a76a-4801-ab29-b7cd7a7aeb8a") + ) + (pad "2" smd rect + (at 0.75 -1.43) + (size 0.7 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 27 "/BAT_VCC_OUT") + (pinfunction "B") + (pintype "passive") + (uuid "9ad65d8d-f266-4570-b202-1d039915c4b4") + ) + (pad "3" smd rect + (at 2.25 -1.43) + (size 0.7 1.5) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 67 "Net-(SW3-C)") + (pinfunction "C") + (pintype "passive") + (uuid "0f295b0d-cc27-4f50-9754-7b6bc17ca8fb") + ) + (model "${KICAD8_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_SPDT_PCM12.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "RF_Module:ESP32-S2-MINI-1" + (layer "F.Cu") + (uuid "d8fe996a-e8e0-49d6-b3fb-7318a9d564fd") + (at 79.3 39.6 -90) + (descr "2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf") + (tags "2.4 GHz Wi-Fi Bluetooth external antenna espressif 20*15.4mm") + (property "Reference" "U4" + (at 6.7 11.6 -90) + (unlocked yes) + (layer "F.SilkS") + (uuid "232b9042-6cfc-482e-b645-59226a682f4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "ESP32-S3-MINI-1" + (at 0 3.55 -90) + (unlocked yes) + (layer "F.Fab") + (uuid "58dce792-64a9-42bd-ab17-2f58a0968c6b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "RF_Module:ESP32-S2-MINI-1" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e34ab9eb-2603-4292-97e1-3112c4e91f8e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9701d942-46f1-4f10-aeee-77434c1e72f1") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "RF Module, ESP32-S3 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 3.3V, SMD, onboard antenna" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "353d0747-b0d8-4548-b289-39bb828300cf") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "ESP32?S*MINI?1") + (path "/74bdfb48-959a-4520-bdbf-e173a2dc1457") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -7.8 10.35) + (end -7.8 -10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c0e8782e-dc49-435c-8e6c-d5376bfa9c05") + ) + (fp_line + (start 7.8 10.35) + (end -7.8 10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b595a3ce-1206-4757-a283-933d86a4eb27") + ) + (fp_line + (start -7.8 -10.35) + (end 7.8 -10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "eb169465-1b37-4fe7-afa5-fdca0aea0517") + ) + (fp_line + (start 7.8 -10.35) + (end 7.8 10.35) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "1e8794b1-a8a5-4549-9168-5e23a37265eb") + ) + (fp_line + (start -8.075 -10.6) + (end -8.075 -8.15) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "aedfcb98-91d4-4536-9565-d44f284c54ec") + ) + (fp_line + (start -8.075 -10.6) + (end -5.625 -10.6) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5d092ff0-b149-451b-abf5-d38e59564a19") + ) + (fp_poly + (pts + (xy -7.975 -3.4) (xy -8.311 -3.16) (xy -8.311 -3.64) (xy -7.975 -3.4) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill solid) + (layer "F.SilkS") + (uuid "d9c75971-86ca-4cf2-9094-160b4099808d") + ) + (fp_line + (start -7.95 10.5) + (end -7.95 -5.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4f624cd7-029f-411f-8100-b3016747c820") + ) + (fp_line + (start 7.95 10.5) + (end -7.95 10.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "92dc3a92-b224-40c3-9634-221274b0e092") + ) + (fp_line + (start -22.7 -5.25) + (end -22.7 -24.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "35daf73c-c2ca-4851-a7e5-03b14f0f42b5") + ) + (fp_line + (start -7.95 -5.25) + (end -22.7 -5.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5e6285d9-8eb6-4c4c-88a5-75f1a6ba6bd6") + ) + (fp_line + (start 7.95 -5.25) + (end 7.95 10.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1a9c311a-33e0-437e-82ea-7528979afeca") + ) + (fp_line + (start 7.95 -5.25) + (end 22.7 -5.25) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e50ec17c-2e1c-40f4-bc2e-0fbdc39eea78") + ) + (fp_line + (start 22.7 -5.25) + (end 22.7 -24.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "12d5593a-e056-4dde-99a1-3f2234ed4dca") + ) + (fp_line + (start -22.7 -24.75) + (end 22.7 -24.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "02dba89c-c6f7-48af-ac11-28873cba7639") + ) + (fp_line + (start -7.7 10.25) + (end -7.7 -9.75) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c91e63e-a2d5-4859-95ed-a3f64561a7aa") + ) + (fp_line + (start 7.7 10.25) + (end -7.7 10.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b72ac518-dace-4709-9d40-4114727296f8") + ) + (fp_line + (start -7.7 -5.25) + (end 7.7 -5.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7b38402c-9191-4ec5-b8e7-dcb98f891c72") + ) + (fp_line + (start -7.1 -6) + (end -7.1 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "7dd6bfbe-bfb0-42c7-b646-12b4aa6795c4") + ) + (fp_line + (start -5.6 -6) + (end -5.6 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "4c2fa3ac-75ad-4bf3-b501-f9240e691909") + ) + (fp_line + (start -4.1 -6.95) + (end -1.3 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "fcdbfc0f-58ae-4723-a387-9146b2343afb") + ) + (fp_line + (start -1.3 -6.95) + (end -1.3 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "3a0643c3-c9bd-4d1f-8206-edfc1ece398e") + ) + (fp_line + (start 1.5 -6.95) + (end 4.3 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "d6a47398-5ca6-4ee3-a28e-a3e5b39b54fb") + ) + (fp_line + (start 4.3 -6.95) + (end 4.3 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "061db1a0-cda7-4443-90f2-c04c6e1856fe") + ) + (fp_line + (start -7.1 -9.15) + (end -4.1 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "1e17b4e9-a116-4a6e-849e-24e83327887d") + ) + (fp_line + (start -4.1 -9.15) + (end -4.1 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "49626a4a-a69f-44fd-a188-14704763614e") + ) + (fp_line + (start -1.3 -9.15) + (end 1.5 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "17bf9e89-6e34-4554-b7a5-ed39a89cd7d3") + ) + (fp_line + (start 1.5 -9.15) + (end 1.5 -6.95) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "6c91c851-25d1-49d0-8fc1-f5552b9f82dd") + ) + (fp_line + (start 4.3 -9.15) + (end 7.1 -9.15) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "70bc4bdf-100e-401b-8b9f-83e6e5e3147e") + ) + (fp_line + (start 7.1 -9.15) + (end 7.1 -6) + (stroke + (width 0.3) + (type solid) + ) + (layer "F.Fab") + (uuid "17de1eae-7bb6-497e-a153-1e6e3855ed62") + ) + (fp_line + (start -7.7 -9.75) + (end 7.7 -9.75) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "33ada8c8-fd73-447b-b323-1a064fdd683a") + ) + (fp_line + (start 7.7 -9.75) + (end 7.7 10.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "58833135-d866-4d79-9b00-a356dbe10ec6") + ) + (fp_circle + (center -6 8.55) + (end -5.888197 8.55) + (stroke + (width 0.15) + (type solid) + ) + (fill none) + (layer "F.Fab") + (uuid "6f4fbc2e-f332-4257-9320-b0d366e84f76") + ) + (fp_text user "Keepout Area" + (at -0.01 -15.36 90) + (layer "Cmts.User") + (uuid "101542ae-0d2b-4bbd-84b2-74e9f088e2be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "Antenna" + (at 0 -7.675 90) + (layer "Cmts.User") + (uuid "ec8f115c-ad68-456c-82a3-2cbfc4c40d0f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (fp_text user "${REFERENCE}" + (at 0 5.05 -90) + (unlocked yes) + (layer "F.Fab") + (uuid "39760972-4399-4551-862b-848437382160") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd rect + (at -7 -3.4 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "power_in") + (uuid "905029cc-088e-4581-85af-e6eae11ddda9") + ) + (pad "2" smd rect + (at -7 -2.55 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "0ad85a41-1885-4805-a37d-674f915464c0") + ) + (pad "3" smd rect + (at -7 -1.7 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 36 "+3V3") + (pinfunction "3V3") + (pintype "power_in") + (uuid "0fc5b47b-aba2-4491-9d0d-2705e256bd76") + ) + (pad "4" smd rect + (at -7 -0.85 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 16 "/MCU_BOOT") + (pinfunction "IO0") + (pintype "bidirectional") + (uuid "5de07910-d205-42b0-bc50-06236c957fbf") + ) + (pad "5" smd rect + (at -7 0 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 48 "unconnected-(U4-IO1-Pad5)") + (pinfunction "IO1") + (pintype "bidirectional") + (uuid "529b8b74-fa5b-4858-b05f-88eff7d1dee0") + ) + (pad "6" smd rect + (at -7 0.85 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 52 "unconnected-(U4-IO2-Pad6)") + (pinfunction "IO2") + (pintype "bidirectional") + (uuid "5b9c0346-b5e3-471e-96d8-2a763cb7367a") + ) + (pad "7" smd rect + (at -7 1.7 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 69 "Net-(U4-IO3)") + (pinfunction "IO3") + (pintype "bidirectional") + (uuid "f79d5e0d-f6f1-457c-84c4-19d14284612e") + ) + (pad "8" smd rect + (at -7 2.55 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 33 "unconnected-(U4-IO4-Pad8)") + (pinfunction "IO4") + (pintype "bidirectional") + (uuid "26d6f0c6-3526-44e1-8373-0abbd15f6e20") + ) + (pad "9" smd rect + (at -7 3.4 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 51 "unconnected-(U4-IO5-Pad9)") + (pinfunction "IO5") + (pintype "bidirectional") + (uuid "53d2546f-dfa9-40c7-809b-5825b7bc4b3b") + ) + (pad "10" smd rect + (at -7 4.25 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 62 "unconnected-(U4-IO6-Pad10)") + (pinfunction "IO6") + (pintype "bidirectional") + (uuid "a3ac1e25-ef45-4e0e-882a-9e23b7a9f720") + ) + (pad "11" smd rect + (at -7 5.1 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 79 "/IO7") + (pinfunction "IO7") + (pintype "bidirectional") + (uuid "17a7ccec-b501-4237-8251-e7a133d1baf4") + ) + (pad "12" smd rect + (at -7 5.95 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 80 "/IO8") + (pinfunction "IO8") + (pintype "bidirectional") + (uuid "cc4fb683-bc2a-4509-bdb3-92c11875a368") + ) + (pad "13" smd rect + (at -7 6.8 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 81 "/IO9") + (pinfunction "IO9") + (pintype "bidirectional") + (uuid "218aefe5-b189-489d-a734-4900c1dda21b") + ) + (pad "14" smd rect + (at -7 7.65 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 20 "Net-(U4-IO10)") + (pinfunction "IO10") + (pintype "bidirectional") + (uuid "af8bcd63-25d9-4c03-a1cd-3defd1f8c05c") + ) + (pad "15" smd rect + (at -7 8.5 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 22 "Net-(U4-IO11)") + (pinfunction "IO11") + (pintype "bidirectional") + (uuid "a057af02-2fa9-4736-bd6a-1f17a87445e5") + ) + (pad "16" smd rect + (at -5.95 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 21 "Net-(U4-IO12)") + (pinfunction "IO12") + (pintype "bidirectional") + (uuid "58b3660e-1967-48e1-81b6-e566ea5b1bf0") + ) + (pad "17" smd rect + (at -5.1 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 23 "Net-(U4-IO13)") + (pinfunction "IO13") + (pintype "bidirectional") + (uuid "7152fd59-08ac-4fd6-8ed5-ff596398d22f") + ) + (pad "18" smd rect + (at -4.25 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 77 "/IO14") + (pinfunction "IO14") + (pintype "bidirectional") + (uuid "87ea16d2-d051-433e-b9dc-cd82051b702d") + ) + (pad "19" smd rect + (at -3.4 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 76 "/IO15") + (pinfunction "IO15") + (pintype "bidirectional") + (uuid "317f20f5-9ce6-4453-a844-ddd2ec6d9c6f") + ) + (pad "20" smd rect + (at -2.55 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 47 "/IO16") + (pinfunction "IO16") + (pintype "bidirectional") + (uuid "3054073e-b206-4491-96b2-48875f443ea5") + ) + (pad "21" smd rect + (at -1.7 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 44 "/IO17") + (pinfunction "IO17") + (pintype "bidirectional") + (uuid "cd00a691-3e95-4194-b905-1246b4cb05cb") + ) + (pad "22" smd rect + (at -0.85 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 78 "/IO18") + (pinfunction "IO18") + (pintype "bidirectional") + (uuid "470b951f-d9ef-4a19-ac03-82892ce7297a") + ) + (pad "23" smd rect + (at 0 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 15 "Net-(U4-IO19)") + (pinfunction "IO19") + (pintype "bidirectional") + (uuid "e4b446e9-b8b2-4266-85dd-9bd7845ac0ed") + ) + (pad "24" smd rect + (at 0.85 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 18 "Net-(U4-IO20)") + (pinfunction "IO20") + (pintype "bidirectional") + (uuid "99af0086-aedd-4187-919d-700882bc9b33") + ) + (pad "25" smd rect + (at 1.7 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 54 "Net-(U4-IO21)") + (pinfunction "IO21") + (pintype "bidirectional") + (uuid "7f0301f5-9494-4a05-87f3-bc132cb5abc1") + ) + (pad "26" smd rect + (at 2.55 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 63 "unconnected-(U4-IO26-Pad26)") + (pinfunction "IO26") + (pintype "bidirectional") + (uuid "ca6f2ac6-dcec-458e-b1e0-cf2b03c0faea") + ) + (pad "27" smd rect + (at 3.4 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 32 "unconnected-(U4-IO47-Pad27)") + (pinfunction "IO47") + (pintype "bidirectional") + (uuid "14ccc2f1-96f8-4c59-83b3-7eb496346c17") + ) + (pad "28" smd rect + (at 4.25 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 53 "unconnected-(U4-IO33-Pad28)") + (pinfunction "IO33") + (pintype "bidirectional") + (uuid "7d979669-d429-4c32-8772-a6706619f5e2") + ) + (pad "29" smd rect + (at 5.1 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 35 "unconnected-(U4-IO34-Pad29)") + (pinfunction "IO34") + (pintype "bidirectional") + (uuid "27d5191e-d406-47d6-a5f7-3c0791774cd8") + ) + (pad "30" smd rect + (at 5.95 9.55) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 43 "unconnected-(U4-IO48-Pad30)") + (pinfunction "IO48") + (pintype "bidirectional") + (uuid "4f52aa81-802f-47c2-b605-eb3c90ecde87") + ) + (pad "31" smd rect + (at 7 8.5 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 31 "unconnected-(U4-IO35-Pad31)") + (pinfunction "IO35") + (pintype "bidirectional") + (uuid "052f6c72-6592-4811-9621-21d8e46f36de") + ) + (pad "32" smd rect + (at 7 7.65 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 61 "unconnected-(U4-IO36-Pad32)") + (pinfunction "IO36") + (pintype "bidirectional") + (uuid "894c965a-ad5a-4740-a17e-6cf64a52b2c0") + ) + (pad "33" smd rect + (at 7 6.8 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 42 "unconnected-(U4-IO37-Pad33)") + (pinfunction "IO37") + (pintype "bidirectional") + (uuid "32391c72-8cb0-4064-875c-3fe0dd9502c1") + ) + (pad "34" smd rect + (at 7 5.95 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 30 "unconnected-(U4-IO38-Pad34)") + (pinfunction "IO38") + (pintype "bidirectional") + (uuid "04110fd5-81b7-4650-a186-44c9177b005f") + ) + (pad "35" smd rect + (at 7 5.1 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 72 "Net-(J3-Pin_4)") + (pinfunction "IO39") + (pintype "bidirectional") + (uuid "e8b5dac3-1976-421f-bf28-a28926cbbde7") + ) + (pad "36" smd rect + (at 7 4.25 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 74 "Net-(J3-Pin_6)") + (pinfunction "IO40") + (pintype "bidirectional") + (uuid "f32e60f2-2313-458c-8f33-5db51a2b68bd") + ) + (pad "37" smd rect + (at 7 3.4 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 73 "Net-(J3-Pin_8)") + (pinfunction "IO41") + (pintype "bidirectional") + (uuid "72e47e14-08fa-466f-a707-e5b9793396be") + ) + (pad "38" smd rect + (at 7 2.55 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 75 "Net-(J3-Pin_10)") + (pinfunction "IO42") + (pintype "bidirectional") + (uuid "6edc1f93-76dc-4e99-b8c1-a2c87286a387") + ) + (pad "39" smd rect + (at 7 1.7 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 24 "/MCU_TX") + (pinfunction "TXD0") + (pintype "bidirectional") + (uuid "36ce2eab-52cb-4f92-8f08-2c0f5c48f23d") + ) + (pad "40" smd rect + (at 7 0.85 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 39 "/MCU_RX") + (pinfunction "RXD0") + (pintype "bidirectional") + (uuid "10578438-c76c-488c-b089-9c7bdd3aae15") + ) + (pad "41" smd rect + (at 7 0 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 70 "Net-(U4-IO45)") + (pinfunction "IO45") + (pintype "bidirectional") + (uuid "525f6734-6ba9-46aa-9874-d8c140553d62") + ) + (pad "42" smd rect + (at 7 -0.85 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "d0007a56-29e6-46a0-8ab3-6d06a9f2cf47") + ) + (pad "43" smd rect + (at 7 -1.7 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "dc6c300f-971e-48d8-b81e-c7c57985e60e") + ) + (pad "44" smd rect + (at 7 -2.55 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 71 "Net-(U4-IO46)") + (pinfunction "IO46") + (pintype "bidirectional") + (uuid "0a6c992a-3b19-4aae-ab96-fee0993f8560") + ) + (pad "45" smd rect + (at 7 -3.4 270) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 6 "/MCU_EN") + (pinfunction "EN") + (pintype "input") + (uuid "2342f004-e7ec-4c75-9927-4b0ee9653db9") + ) + (pad "46" smd rect + (at 5.95 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "d3d1f326-3e8e-4cb8-8995-7d7fa2e12565") + ) + (pad "47" smd rect + (at 5.1 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "35ab81f8-7867-432d-9f2d-2e98ad9a5848") + ) + (pad "48" smd rect + (at 4.25 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "592b98c3-3495-468d-a8c9-40e23a138105") + ) + (pad "49" smd rect + (at 3.4 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "d408cb8a-dade-4f46-9fa9-8ce4cb94a05d") + ) + (pad "50" smd rect + (at 2.55 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "9e960db3-6d75-4bd2-b3d3-e9419c9e2a03") + ) + (pad "51" smd rect + (at 1.7 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "a98723c5-8841-4dbe-af38-3f365fc1ad54") + ) + (pad "52" smd rect + (at 0.85 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "23d99f84-ecd9-4c66-9912-1a8dcd0334a2") + ) + (pad "53" smd rect + (at 0 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "96c0d48d-1f34-4425-9284-06f62140584b") + ) + (pad "54" smd rect + (at -0.85 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "f0dd73f2-50a2-45e8-815e-dd5075e6cbff") + ) + (pad "55" smd rect + (at -1.7 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "512a2fb2-4331-4bd6-9a66-4227c85ab8b6") + ) + (pad "56" smd rect + (at -2.55 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "8157ac92-9c15-4b01-9ed5-aab961195faf") + ) + (pad "57" smd rect + (at -3.4 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "4c9ccf0d-64d4-479e-99b1-54b71411826b") + ) + (pad "58" smd rect + (at -4.25 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "ad00a065-d55a-4e46-8976-6b9dd5ef0450") + ) + (pad "59" smd rect + (at -5.1 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "ea2cab18-7b0f-4bd3-81ac-0257d4fce0a4") + ) + (pad "60" smd rect + (at -5.95 -4.45) + (size 0.8 0.4) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "c700a9d3-3b9a-4b4b-9d26-13490cb8d8c5") + ) + (pad "61" smd roundrect + (at -1.65 0.9 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0) + (chamfer_ratio 0.33) + (chamfer top_left) + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "11968268-03e9-4d4d-b3dd-c03d841a185e") + ) + (pad "61" smd rect + (at -1.65 2.55 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "49b20aff-e37f-4a94-9269-f17640bdef28") + ) + (pad "61" smd rect + (at -1.65 4.2 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "6280847f-60cf-4572-b8a0-ab80d41bf7a1") + ) + (pad "61" smd rect + (at 0 0.9 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "48b90939-37d3-4634-803b-b4041462b470") + ) + (pad "61" smd rect + (at 0 2.55 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "9e241ad9-5481-4c33-8f21-3ccbd599239f") + ) + (pad "61" smd rect + (at 0 4.2 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "ec9ca656-bfbc-4f6c-80c4-23ae62b91a9b") + ) + (pad "61" smd rect + (at 1.65 0.9 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "f3804e43-d89b-488f-be24-465701c4eb57") + ) + (pad "61" smd rect + (at 1.65 2.55 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "372e8d93-4e53-41cc-a118-1f848f24b181") + ) + (pad "61" smd rect + (at 1.65 4.2 270) + (size 1.2 1.2) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "1fa3a9b1-05b3-4b4e-a29b-c0e08b531534") + ) + (pad "62" smd rect + (at -7 -4.45 270) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "03923533-f910-448b-b94b-57dda42b1ec1") + ) + (pad "63" smd rect + (at -7 9.55 270) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "3b79a690-dc9c-46a2-9f66-e122d73e9d9c") + ) + (pad "64" smd rect + (at 7 9.55 270) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "c1b9ea56-32d3-4266-a0b3-5beba2d6c4e6") + ) + (pad "65" smd rect + (at 7 -4.45 270) + (size 0.8 0.8) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "e5ceaa38-00f4-4577-aeae-d2e86940bb40") + ) + (model "${KICAD8_3DMODEL_DIR}/RF_Module.3dshapes/ESP32-S2-MINI-1.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_espressif_kicad-libraries/espressif.3dshapes/ESP32-S2-MINI-1.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_espressif_kicad-libraries/espressif.3dshapes/ESP32-S2-MINI-1.STEP" + (offset + (xyz -7.75 -10 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "d9e0ffe0-088d-44d2-86ae-3f6d57b247d4") + (at 80.8 55.025 -90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R1" + (at -0.725 -1.7 180) + (layer "F.SilkS") + (uuid "5d0e5841-232a-4fa7-8058-63d69b807ecf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1K" + (at 0 1.43 90) + (layer "F.Fab") + (uuid "21c6377b-4cf3-4e0d-9c9b-76489ac92e92") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "acdc8ad5-d5dd-4908-ab6e-57a2e0d54b4c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f83077bc-ee67-4a02-9bb3-fdbc5b33d5b9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "058b1b1a-6dac-40f4-9f71-8c667d1e028d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/a1acb54f-6751-4f81-a6a8-f102b61d2c58") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2948b2b0-3bf9-4f07-aa5d-65c22dfc16ac") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8339e423-2510-410c-a69a-c9ed97671b59") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a9e95935-d72f-4667-a864-09761aae7a28") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "c29f2f04-d267-4d77-81c6-2b50a7ed59d1") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "43e1f9a4-890d-4c0a-875f-94fb71af2714") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7abf4d0a-4118-45c5-9ce4-f0cef8874e5a") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8ea028c0-8e9f-47c0-965e-a905ff1ab559") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "315401e0-ef93-4e1c-bbb4-87da30de338c") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bbfd5c8f-0107-46d9-8212-8eca2c4b83a9") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "74922f81-ba62-470b-9120-022031755c62") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3d92bf62-c16c-44c9-82d7-47c19f3e6a5d") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 46 "Net-(Q4-B)") + (pintype "passive") + (uuid "1256785a-0694-41b3-b6bd-110b64aac722") + ) + (pad "2" smd roundrect + (at 0.825 0 270) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 8 "Net-(J1-CLK)") + (pintype "passive") + (uuid "eb24edb2-fc61-4fe3-9b12-848737793131") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "LED_SMD:LED_0603_1608Metric" + (layer "F.Cu") + (uuid "e6f9a7ee-75ab-45d8-a12b-015fe6f3a477") + (at 55.1125 58.25) + (descr "LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D2" + (at -3.3125 0.025 0) + (layer "F.SilkS") + (uuid "5603a53c-8c5b-48cf-98f8-576d3d9a4e85") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "LED" + (at 0 1.43 0) + (layer "F.Fab") + (uuid "ffd2bef7-e5e9-497a-98b7-f658034c1313") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8fe869c-37eb-4049-8645-dda3f036257e") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ce4c0088-fcdb-4948-afc8-66b6e8bf6c6c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "565e17cd-e54d-4568-9190-10dbf0e1289a") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "LED* LED_SMD:* LED_THT:*") + (path "/130f85a9-de20-40ce-a629-33c96da44eea") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -1.485 -0.735) + (end -1.485 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8906bd6d-b13f-4365-870c-8abc652bf632") + ) + (fp_line + (start -1.485 0.735) + (end 0.8 0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bbb372e9-01fe-4ad7-a3fc-9829c8043126") + ) + (fp_line + (start 0.8 -0.735) + (end -1.485 -0.735) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9d70555c-2a9d-4542-b54e-e324861c3001") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f060fa16-add5-4932-86e1-1c3e7a2b23d1") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fc7bca2d-a72a-4f5f-9beb-bff8cd8ffa88") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a6dfa250-96c6-4549-b471-f68ba8aa0642") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e1b8cb73-afef-4354-8cac-89940cdff292") + ) + (fp_line + (start -0.8 -0.1) + (end -0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8b6c1638-216f-4ba9-84be-767ee27dbae8") + ) + (fp_line + (start -0.8 0.4) + (end 0.8 0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b9700882-13c8-43df-b21d-f2e904631038") + ) + (fp_line + (start -0.5 -0.4) + (end -0.8 -0.1) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6e0400f6-7973-4fa2-ae95-40a8400e6983") + ) + (fp_line + (start 0.8 -0.4) + (end -0.5 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e506bc1b-a32b-48ad-bdbf-863f92016d89") + ) + (fp_line + (start 0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "574d3ee5-4c18-4ed7-95e8-c7b14d79af43") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "107e0c44-0ab7-480f-bc86-4da4923126a8") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.7875 0) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 3 "Net-(D2-K)") + (pinfunction "K") + (pintype "passive") + (uuid "a167ff3e-ead8-484f-8a48-e3300aa405a5") + ) + (pad "2" smd roundrect + (at 0.7875 0) + (size 0.875 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 50 "Net-(D1-A)") + (pinfunction "A") + (pintype "passive") + (uuid "92ce5173-3ba1-499d-b620-5846224ab078") + ) + (model "${KICAD8_3DMODEL_DIR}/LED_SMD.3dshapes/LED_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "edd83da3-a0ad-4281-b94a-49b1eb8a2c6e") + (at 56 36.9) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R6" + (at 1.4 1.7 360) + (layer "F.SilkS") + (uuid "6d806a34-7cdc-4337-a509-2f4b4e67fd64") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "5K1" + (at 0 1.43 360) + (layer "F.Fab") + (uuid "0cdd0dfd-67e8-4ec2-bbc2-905d72791fe4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "201d2323-a965-4781-a56c-9f2368072d5d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5049e21d-01d6-44e0-a88e-8ada8431796f") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0a8eda9a-40bb-4143-aa87-b0d2eb177866") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/c83a97a8-00f1-449b-b49a-bf1520b7ab32") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8e3c066-6e15-4226-bd2b-4f48a244bf12") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ab6303c-b777-498b-ba35-33448b87f12e") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "24bbe995-7378-468a-b3c1-0794feb46812") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f4a7a699-80c9-4960-b586-18dd5aa591d7") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "705566fe-a09e-4388-9740-68db2dcac03a") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "24834d56-45f8-4c44-bb9e-32bcfd3dc6ed") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2ba7ded2-a7f5-4b3e-a714-9f59a52f858b") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2b059aae-f67e-4f6b-9060-8f3620536b8c") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "235a3a2e-74f0-4133-a0ce-117bf3dd5c0b") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4213b2aa-4771-4940-8ea1-bd86c62ac5fc") + ) + (fp_text user "${REFERENCE}" + (at 0 0 360) + (layer "F.Fab") + (uuid "7a2ebe8d-3824-49fb-a430-2fc244e72b44") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 12 "Net-(J2-CC1)") + (pintype "passive") + (uuid "8aa77c03-65a7-4087-a733-7f9e65123f61") + ) + (pad "2" smd roundrect + (at 0.825 0) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "1762c689-8b00-4c51-b415-45a92f02418c") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "f2ee727b-4af0-41d4-85f2-6c0173580c6b") + (at 76.975 55.8 180) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R3" + (at 2.475 0 180) + (layer "F.SilkS") + (uuid "0f33ded5-e8a0-4456-be52-8bc455a6a361") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10K" + (at 0 1.43 180) + (layer "F.Fab") + (uuid "750f0960-514b-48e1-8592-d1b37ab15061") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5fc35403-3446-4bee-b216-ee2f77086330") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ef8f6231-513c-4fbe-9af0-b14c524b0761") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9f96a77d-eb73-4ca9-a8f7-a82e642b1862") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/e1754c5c-2d5e-49b1-b7ec-d6a1604c066a") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fd65c592-8fd0-4de0-9157-741858dce097") + ) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "222c8874-26d4-4e41-aa97-3facdd7297c3") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b81a940b-2e92-4c58-ae5f-118343d32e8c") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3b83f53d-f14c-4784-87b2-a976607d2dcf") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0546970f-5d91-4d67-9144-700ad997a6b7") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3292ee4b-631f-4b5e-8c44-ba4d9d7012c1") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5c9c3b26-4f97-4a35-a1db-1a8c22e2bc75") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bffdadf9-77e5-48a5-ad92-ccb9b036138a") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "03c03b65-2da1-47eb-bb2e-7fa15fd9b517") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "34517474-ecc5-44cc-ab9e-228d572b8461") + ) + (fp_text user "${REFERENCE}" + (at 0 0 180) + (layer "F.Fab") + (uuid "17e46032-5758-415d-8a90-53f75ab36106") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 45 "Net-(Q3-B)") + (pintype "passive") + (uuid "2df5cbcd-cd85-4014-98ae-ee4ffac8d4c1") + ) + (pad "2" smd roundrect + (at 0.825 0 180) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 37 "GND") + (pintype "passive") + (uuid "cade1c56-7cd3-4ba5-9268-636c5b518247") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Button_Switch_SMD:SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile" + (layer "F.Cu") + (uuid "f3ea0ad0-12ea-48dd-a2e8-0ec485e3b032") + (at 36.6 36.2 -90) + (descr "SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile") + (tags "SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile") + (property "Reference" "SW2" + (at 5.2 5.3 90) + (layer "F.SilkS") + (uuid "9334fab6-ac5e-4d93-9fd1-3e3e90978b07") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SW_DIP_x04" + (at 0 6.92 90) + (layer "F.Fab") + (uuid "07e6081b-3bdb-44df-b883-afe92cefde60") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Button_Switch_SMD:SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a91f47bf-c675-4041-b3cd-e2f48b7e609c") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "52d734d0-aa97-4165-9a85-f9bdaaa779f9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" + (at 0 0 -90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7097ed9b-9250-4def-aeaf-db8a20d2ccf7") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "SW?DIP?x4*") + (path "/c77c7857-311b-41c5-9728-bd530c730eef") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -3.41 5.92) + (end 3.41 5.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "03832977-7e19-4f5d-a535-7319bd595da7") + ) + (fp_line + (start -3.41 4.61) + (end -3.41 5.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a9e48c32-5e49-4dcb-8b8e-c0a90858d688") + ) + (fp_line + (start 3.41 4.61) + (end 3.41 5.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf075d46-9449-4d0d-ab7f-830f3c8317a9") + ) + (fp_line + (start -1.81 4.445) + (end 1.81 4.445) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "79f93946-b309-47eb-b671-ca3f9b2001e0") + ) + (fp_line + (start 1.81 4.445) + (end 1.81 3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9093ae4c-c6e7-4444-b89d-e49ed9f5d6b2") + ) + (fp_line + (start -1.81 4.375) + (end -0.603333 4.375) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "31fcead0-0d6c-40fd-9996-4a02e6a374d1") + ) + (fp_line + (start -1.81 4.255) + (end -0.603333 4.255) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6c1f9d74-1601-4bc5-8a32-264b8e4eaa84") + ) + (fp_line + (start -1.81 4.135) + (end -0.603333 4.135) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bf6dba05-a3f5-41bc-8f9a-405af95d5daf") + ) + (fp_line + (start -1.81 4.015) + (end -0.603333 4.015) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "bc2e81f2-8b2e-4586-a49e-2911af0c0e6b") + ) + (fp_line + (start -1.81 3.895) + (end -0.603333 3.895) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2104e2a0-f318-4323-be16-bd193fb3ffb6") + ) + (fp_line + (start -1.81 3.775) + (end -0.603333 3.775) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0066227d-2262-45bd-a4e7-21bc029cece2") + ) + (fp_line + (start -1.81 3.655) + (end -0.603333 3.655) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9359e81c-4411-4ec8-8b2b-b0c46a106145") + ) + (fp_line + (start -1.81 3.535) + (end -0.603333 3.535) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c0d2dab8-deac-4fda-a1e6-ec01d014210b") + ) + (fp_line + (start -1.81 3.415) + (end -0.603333 3.415) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "73a41f96-bbbe-4064-abe8-fc9c9c8b7217") + ) + (fp_line + (start -1.81 3.295) + (end -0.603333 3.295) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "38ed7f85-b299-4aa3-9931-49b00495d4ce") + ) + (fp_line + (start -1.81 3.175) + (end -1.81 4.445) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c931e337-dac8-408a-bfbd-2e60af68e69c") + ) + (fp_line + (start -0.603333 3.175) + (end -0.603333 4.445) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d566dfd7-4cd8-4bde-a18d-3024b2a20947") + ) + (fp_line + (start 1.81 3.175) + (end -1.81 3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "657b7da8-696d-4f3e-a5d2-3e91667f8e93") + ) + (fp_line + (start -3.41 2.07) + (end -3.41 3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7f1890e3-28b1-4695-9017-ead9c2de1bc2") + ) + (fp_line + (start 3.41 2.07) + (end 3.41 3.01) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a310ee11-8072-4743-a499-4825c2aaa582") + ) + (fp_line + (start -1.81 1.905) + (end 1.81 1.905) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "22c03c75-b9e1-4834-ac2f-df3aca196e01") + ) + (fp_line + (start 1.81 1.905) + (end 1.81 0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "52500c78-b114-4c61-84b1-6c600afa5267") + ) + (fp_line + (start -1.81 1.835) + (end -0.603333 1.835) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7304e792-db41-45c1-ba76-70fb5e190642") + ) + (fp_line + (start -1.81 1.715) + (end -0.603333 1.715) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a70453df-3361-4097-8ab5-76fc13017200") + ) + (fp_line + (start -1.81 1.595) + (end -0.603333 1.595) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "fc8af1a1-03d2-48cb-8f0a-86f643c31aa9") + ) + (fp_line + (start -1.81 1.475) + (end -0.603333 1.475) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c3b0dc08-0b81-41be-9976-5273f9e94f34") + ) + (fp_line + (start -1.81 1.355) + (end -0.603333 1.355) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "92b55b4a-20bc-4bff-b2d1-0fb5bb40a5fc") + ) + (fp_line + (start -1.81 1.235) + (end -0.603333 1.235) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4752aef7-c557-4a09-87f1-cef28cb9d100") + ) + (fp_line + (start -1.81 1.115) + (end -0.603333 1.115) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3730d2d2-4261-46fa-8fe4-24e100167c45") + ) + (fp_line + (start -1.81 0.995) + (end -0.603333 0.995) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0150d1d8-042e-4b0d-b754-661b10d79a9e") + ) + (fp_line + (start -1.81 0.875) + (end -0.603333 0.875) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "be52b76c-11fe-4d48-8138-2a3ad96fdb00") + ) + (fp_line + (start -1.81 0.755) + (end -0.603333 0.755) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d5410d5c-509a-4825-a0a6-11f63aa7b37d") + ) + (fp_line + (start -1.81 0.635) + (end -1.81 1.905) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "328670c2-ac1c-424d-9faa-c3dcb9210eeb") + ) + (fp_line + (start -0.603333 0.635) + (end -0.603333 1.905) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ad3435c-8ef0-4482-83e1-9ac64100ad16") + ) + (fp_line + (start 1.81 0.635) + (end -1.81 0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "87b298b7-ec67-4186-9554-b7402df1a8e6") + ) + (fp_line + (start -3.41 -0.47) + (end -3.41 0.47) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5b41e30a-a482-4105-852e-cdce4030035b") + ) + (fp_line + (start 3.41 -0.47) + (end 3.41 0.47) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "68409269-6ee7-463d-a396-56a8b8dab899") + ) + (fp_line + (start -1.81 -0.635) + (end 1.81 -0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b6251280-a1f5-4f11-aa33-f487e59e6bea") + ) + (fp_line + (start 1.81 -0.635) + (end 1.81 -1.905) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c8ca9835-8b10-401d-8d44-bf3b71ab9c98") + ) + (fp_line + (start -1.81 -0.705) + (end -0.603333 -0.705) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e62b986f-02b0-408f-916a-115492574522") + ) + (fp_line + (start -1.81 -0.825) + (end -0.603333 -0.825) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "d6c2a38f-6625-48f9-8b38-ee4dbf2c3db6") + ) + (fp_line + (start -1.81 -0.945) + (end -0.603333 -0.945) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "39184bb6-e3f3-480e-bbf1-4464589e6a20") + ) + (fp_line + (start -1.81 -1.065) + (end -0.603333 -1.065) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "70a4972d-f550-418c-8d32-9c25e4b8d264") + ) + (fp_line + (start -1.81 -1.185) + (end -0.603333 -1.185) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e3740d48-2b0f-4ea0-938b-00a3ae9c5def") + ) + (fp_line + (start -1.81 -1.305) + (end -0.603333 -1.305) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "efa9755e-ab1f-411d-bcdb-ff35e800eb60") + ) + (fp_line + (start -1.81 -1.425) + (end -0.603333 -1.425) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "ef1fb0a1-e0c1-49a9-aeb4-f895ab7d4b91") + ) + (fp_line + (start -1.81 -1.545) + (end -0.603333 -1.545) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6a9f59ec-f08e-4a46-a69d-bfed775f68e8") + ) + (fp_line + (start -1.81 -1.665) + (end -0.603333 -1.665) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f46ed12-5747-4f3d-bbc2-d2716f7a0bc2") + ) + (fp_line + (start -1.81 -1.785) + (end -0.603333 -1.785) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8de360a4-0389-4b76-8d2d-23ac8725132f") + ) + (fp_line + (start -1.81 -1.905) + (end -1.81 -0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "29282dff-9c01-4bf1-80a3-7433875f10f1") + ) + (fp_line + (start -0.603333 -1.905) + (end -0.603333 -0.635) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "05ddea5c-d9ae-434b-8f0b-94ae1970a73d") + ) + (fp_line + (start 1.81 -1.905) + (end -1.81 -1.905) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89cbe895-ff1d-469a-873b-321bbee60171") + ) + (fp_line + (start -3.41 -3.01) + (end -3.41 -2.07) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3630245f-7ca4-4e41-94fb-b4a46fa10f5b") + ) + (fp_line + (start 3.41 -3.01) + (end 3.41 -2.07) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8a59ba49-fd52-4238-a414-2105f798c291") + ) + (fp_line + (start -1.81 -3.175) + (end 1.81 -3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4e6f7b3a-99ad-4db4-9632-de412fa8c002") + ) + (fp_line + (start 1.81 -3.175) + (end 1.81 -4.445) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "5a30afb9-face-4e2f-94bf-fdb8f58c134c") + ) + (fp_line + (start -1.81 -3.245) + (end -0.603333 -3.245) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c19b4ff2-1a67-4d4f-863b-90cbef4446cb") + ) + (fp_line + (start -1.81 -3.365) + (end -0.603333 -3.365) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2b80bbdb-3f54-42d7-83d4-ea13242f7b78") + ) + (fp_line + (start -1.81 -3.485) + (end -0.603333 -3.485) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a77fd67d-6532-4933-9701-34bb3a6ccf80") + ) + (fp_line + (start -1.81 -3.605) + (end -0.603333 -3.605) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7f9f9ab-6a8d-4dcb-9074-edd851acc774") + ) + (fp_line + (start -1.81 -3.725) + (end -0.603333 -3.725) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c748b808-25bd-46ad-8ce6-2a21005fc460") + ) + (fp_line + (start -1.81 -3.845) + (end -0.603333 -3.845) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "9f4e7ab6-24db-4c62-b560-b65c910f461c") + ) + (fp_line + (start -1.81 -3.965) + (end -0.603333 -3.965) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8c1686bc-98d3-45b3-87d6-42e9858da23e") + ) + (fp_line + (start -1.81 -4.085) + (end -0.603333 -4.085) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "260792fe-7d57-4db9-8bb0-272f9ac8496c") + ) + (fp_line + (start -1.81 -4.205) + (end -0.603333 -4.205) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3a96f672-39e8-4cc8-80d0-b10bcf9ed1b0") + ) + (fp_line + (start -1.81 -4.325) + (end -0.603333 -4.325) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "4d27a3ef-2d16-47e4-8edf-21783900650f") + ) + (fp_line + (start -1.81 -4.445) + (end -1.81 -3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "106ff431-ad57-4636-a546-6751d30c3f69") + ) + (fp_line + (start -0.603333 -4.445) + (end -0.603333 -3.175) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "57dbf3fe-8c0a-41aa-8a57-6f100796ef49") + ) + (fp_line + (start 1.81 -4.445) + (end -1.81 -4.445) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7f5fa2c-205a-402f-8705-500b67969c89") + ) + (fp_line + (start -3.41 -5.92) + (end -3.41 -4.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "682a1b69-87b6-46a6-9c06-638c8aebb099") + ) + (fp_line + (start -3.41 -5.92) + (end 3.41 -5.92) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "e16ebcdb-7f43-4b28-a190-f99a21624b02") + ) + (fp_line + (start 3.41 -5.92) + (end 3.41 -4.61) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8dace932-a4a8-4bf1-a337-84eaa716fb37") + ) + (fp_line + (start -3.65 -6.16) + (end -3.65 -4.777) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "64f22c4a-d64a-4049-a69f-dbf0f91c6437") + ) + (fp_line + (start -3.65 -6.16) + (end -2.267 -6.16) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "928f8754-0586-4a6f-b090-98c3bad2a750") + ) + (fp_line + (start -5.8 6.2) + (end 5.8 6.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "58dfcaf6-a1d3-4f66-9f19-763792975198") + ) + (fp_line + (start 5.8 6.2) + (end 5.8 -6.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5067e698-178f-4055-89d9-a9229c71d80b") + ) + (fp_line + (start -5.8 -6.2) + (end -5.8 6.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b313cb1a-4539-421e-8692-f3b99691ea43") + ) + (fp_line + (start 5.8 -6.2) + (end -5.8 -6.2) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "63a67498-b0e7-4fdc-baa7-080d1417382a") + ) + (fp_line + (start -3.35 5.86) + (end -3.35 -4.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "56239b0e-0576-4c38-9c9b-7807b2a6458e") + ) + (fp_line + (start 3.35 5.86) + (end -3.35 5.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8cedd3e4-2c27-4aeb-829a-e0666f91c8f5") + ) + (fp_line + (start -1.81 4.445) + (end 1.81 4.445) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0149f940-e0ec-4428-af4f-f9b8f71e116d") + ) + (fp_line + (start 1.81 4.445) + (end 1.81 3.175) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f8a18412-1610-4113-b63b-54db95aa7562") + ) + (fp_line + (start -1.81 4.375) + (end -0.603333 4.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f63b560d-9a02-4eee-a341-775277e332d7") + ) + (fp_line + (start -1.81 4.275) + (end -0.603333 4.275) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dfb03f04-7eaf-4806-8704-a30f8f747b8f") + ) + (fp_line + (start -1.81 4.175) + (end -0.603333 4.175) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ade7a783-2fc1-4ce4-9668-0a6cc51183a5") + ) + (fp_line + (start -1.81 4.075) + (end -0.603333 4.075) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "60ef11fd-fa34-4046-8788-493494933ba6") + ) + (fp_line + (start -1.81 3.975) + (end -0.603333 3.975) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d9c593c2-470b-4656-a06b-195a7cfc3cf0") + ) + (fp_line + (start -1.81 3.875) + (end -0.603333 3.875) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "196b5811-ea41-491c-91c6-64bce2aee89a") + ) + (fp_line + (start -1.81 3.775) + (end -0.603333 3.775) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e569a5e-9405-4ad9-90f8-e222d179631a") + ) + (fp_line + (start -1.81 3.675) + (end -0.603333 3.675) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "96dcb840-25ee-4ed9-84fa-446181f5a3a1") + ) + (fp_line + (start -1.81 3.575) + (end -0.603333 3.575) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "02c2f09c-b51a-47af-ab89-94ede128883d") + ) + (fp_line + (start -1.81 3.475) + (end -0.603333 3.475) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7082c4c-f05e-4c6f-973e-f63b054ff0eb") + ) + (fp_line + (start -1.81 3.375) + (end -0.603333 3.375) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7b4b90fc-dfcf-4220-b36a-3e1d40bab4d7") + ) + (fp_line + (start -1.81 3.275) + (end -0.603333 3.275) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c3131a18-9006-4f28-aa2e-34ff51c42b55") + ) + (fp_line + (start -1.81 3.175) + (end -1.81 4.445) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "593cc4f1-ac37-4c84-9b0b-c7982c6227c6") + ) + (fp_line + (start -0.603333 3.175) + (end -0.603333 4.445) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "25ac0961-ecd7-4e3b-ac40-52d8686e6e5b") + ) + (fp_line + (start 1.81 3.175) + (end -1.81 3.175) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5cba7ed0-9797-4e8d-af4d-b81e5f83171d") + ) + (fp_line + (start -1.81 1.905) + (end 1.81 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "32e815cd-28ed-4a79-b9d8-96a941257c87") + ) + (fp_line + (start 1.81 1.905) + (end 1.81 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "641deead-eead-4690-b9d7-52801ac4bf24") + ) + (fp_line + (start -1.81 1.835) + (end -0.603333 1.835) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "267ddf31-59fa-499f-871e-d524a92ecb60") + ) + (fp_line + (start -1.81 1.735) + (end -0.603333 1.735) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c27f66f9-45ef-4aba-853f-eea5395c2ff6") + ) + (fp_line + (start -1.81 1.635) + (end -0.603333 1.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "baa27ec4-6933-4ad6-a9ec-94576898352d") + ) + (fp_line + (start -1.81 1.535) + (end -0.603333 1.535) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c24e9d19-7858-4ce9-ade3-a8b4aace914d") + ) + (fp_line + (start -1.81 1.435) + (end -0.603333 1.435) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2e34869e-8395-450e-8516-480ea34a698e") + ) + (fp_line + (start -1.81 1.335) + (end -0.603333 1.335) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "164e14e9-055d-4efc-bce9-17e7aff30a4d") + ) + (fp_line + (start -1.81 1.235) + (end -0.603333 1.235) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42aee685-b3dc-4545-b0ae-9226e72eea75") + ) + (fp_line + (start -1.81 1.135) + (end -0.603333 1.135) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "acb975d0-7539-4e6b-94f4-7397a4f22488") + ) + (fp_line + (start -1.81 1.035) + (end -0.603333 1.035) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c6f4da2b-5b21-44cd-b8b1-df0e270a2259") + ) + (fp_line + (start -1.81 0.935) + (end -0.603333 0.935) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "91d985fe-ef37-4907-bee9-615d99f4cd56") + ) + (fp_line + (start -1.81 0.835) + (end -0.603333 0.835) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b2f1d1d7-3609-4025-85a0-e0246fc137bd") + ) + (fp_line + (start -1.81 0.735) + (end -0.603333 0.735) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d287d4a9-0ca7-4fa6-a0a5-d64fbc6eb25d") + ) + (fp_line + (start -1.81 0.635) + (end -1.81 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "36cb9380-48d0-4ade-85f6-1fe17e34e15c") + ) + (fp_line + (start -0.603333 0.635) + (end -0.603333 1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7bdca134-b0e9-4f89-8354-93e838fc6d51") + ) + (fp_line + (start 1.81 0.635) + (end -1.81 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "87c27f75-ceea-4384-b956-8b37938d8e87") + ) + (fp_line + (start -1.81 -0.635) + (end 1.81 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "baecac99-2330-44cc-98d9-98a0f0884e6c") + ) + (fp_line + (start 1.81 -0.635) + (end 1.81 -1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "effa9028-fd85-48e0-ad4e-709cd2c0f233") + ) + (fp_line + (start -1.81 -0.705) + (end -0.603333 -0.705) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "96cb04a4-b005-4499-a6a0-57247aaed655") + ) + (fp_line + (start -1.81 -0.805) + (end -0.603333 -0.805) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6d1f7948-b84f-4d50-a008-d39b4c533a46") + ) + (fp_line + (start -1.81 -0.905) + (end -0.603333 -0.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "bc97720e-5df4-41ac-8c98-3c0464847afd") + ) + (fp_line + (start -1.81 -1.005) + (end -0.603333 -1.005) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "04be009e-2280-4ebb-857f-241ee2f6da7f") + ) + (fp_line + (start -1.81 -1.105) + (end -0.603333 -1.105) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d5848b32-b750-4d74-a6bd-166c12c46c64") + ) + (fp_line + (start -1.81 -1.205) + (end -0.603333 -1.205) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cab2d0c7-0f96-4fe6-800b-d5520adb379c") + ) + (fp_line + (start -1.81 -1.305) + (end -0.603333 -1.305) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "db18d63e-900e-4cc7-ba92-5d5001b96ac8") + ) + (fp_line + (start -1.81 -1.405) + (end -0.603333 -1.405) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c5aa7ca1-38d6-486c-b429-3ad64cad815d") + ) + (fp_line + (start -1.81 -1.505) + (end -0.603333 -1.505) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "498c88a0-119a-4cc1-a4b6-87d39362b062") + ) + (fp_line + (start -1.81 -1.605) + (end -0.603333 -1.605) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f91838a3-6904-43e6-ad7f-00b740d676ff") + ) + (fp_line + (start -1.81 -1.705) + (end -0.603333 -1.705) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42f3c3bc-f908-43e0-b1dc-ecb87bbf569f") + ) + (fp_line + (start -1.81 -1.805) + (end -0.603333 -1.805) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e1421916-9069-4750-8f1f-d81d311f82a1") + ) + (fp_line + (start -1.81 -1.905) + (end -1.81 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4642b56e-997c-484f-8de9-6e3fa8751db0") + ) + (fp_line + (start -0.603333 -1.905) + (end -0.603333 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f9fcd8a5-59f9-4112-bb54-10bf64a6db34") + ) + (fp_line + (start 1.81 -1.905) + (end -1.81 -1.905) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7b303fab-f12f-4dbb-b140-0548cb404c2c") + ) + (fp_line + (start -1.81 -3.175) + (end 1.81 -3.175) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "41403016-12e1-4d3b-8600-fc8597887774") + ) + (fp_line + (start 1.81 -3.175) + (end 1.81 -4.445) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "adf49292-82ec-4bf4-8526-601e929dc069") + ) + (fp_line + (start -1.81 -3.245) + (end -0.603333 -3.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f7d0852e-184a-4b5c-b09c-d270838a1967") + ) + (fp_line + (start -1.81 -3.345) + (end -0.603333 -3.345) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0dde4f70-bf9d-468d-afd4-9b6da83c946b") + ) + (fp_line + (start -1.81 -3.445) + (end -0.603333 -3.445) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "125fae39-a52a-44db-b7cd-e4add9cdb3da") + ) + (fp_line + (start -1.81 -3.545) + (end -0.603333 -3.545) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e8e9e3b-3b91-4c3b-a938-8538287c0055") + ) + (fp_line + (start -1.81 -3.645) + (end -0.603333 -3.645) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8d556ea3-8823-4fec-8951-e11307a966eb") + ) + (fp_line + (start -1.81 -3.745) + (end -0.603333 -3.745) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "49bc4a84-9050-4001-8f9d-4279e330c50c") + ) + (fp_line + (start -1.81 -3.845) + (end -0.603333 -3.845) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0e22d123-4e79-4e6c-9cd5-ae944057f386") + ) + (fp_line + (start -1.81 -3.945) + (end -0.603333 -3.945) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d329b97a-ffba-42b2-bd40-7c6a40a42487") + ) + (fp_line + (start -1.81 -4.045) + (end -0.603333 -4.045) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e32d7774-a8da-4dd4-99ce-762c8f311a3d") + ) + (fp_line + (start -1.81 -4.145) + (end -0.603333 -4.145) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "c41ddbc3-15e0-49b7-9d46-988fcecd142b") + ) + (fp_line + (start -1.81 -4.245) + (end -0.603333 -4.245) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7c5c2c8-c88e-4e84-8ebe-55480532f83d") + ) + (fp_line + (start -1.81 -4.345) + (end -0.603333 -4.345) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7e38539c-0b25-4eef-a2f9-251458cc81db") + ) + (fp_line + (start -1.81 -4.445) + (end -1.81 -3.175) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b3a2f101-b029-41d7-8970-7f2a33919d71") + ) + (fp_line + (start -0.603333 -4.445) + (end -0.603333 -3.175) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "387a19f8-d855-41ea-8709-5029fdad40f8") + ) + (fp_line + (start 1.81 -4.445) + (end -1.81 -4.445) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "af7e4270-87a0-4784-85c3-9b1a51bc7bab") + ) + (fp_line + (start -3.35 -4.86) + (end -2.35 -5.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "edf12bff-3675-4722-b147-6331c9f1909e") + ) + (fp_line + (start -2.35 -5.86) + (end 3.35 -5.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6ac4f05b-9cd8-4c17-b9ad-70b6a53caceb") + ) + (fp_line + (start 3.35 -5.86) + (end 3.35 5.86) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "73c6b260-24ca-4a6a-9f22-7d9a948c3b3a") + ) + (fp_text user "${REFERENCE}" + (at 2.58 0 180) + (layer "F.Fab") + (uuid "3c9e8123-88b5-43b1-b189-7907473af456") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (fp_text user "on" + (at 0.4275 -5.1525 90) + (layer "F.Fab") + (uuid "e28361ed-d856-406b-9f73-3364f6297134") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd rect + (at -4.305 -3.81 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 20 "Net-(U4-IO10)") + (pintype "passive") + (uuid "112c121b-85da-4d47-b006-8c02f8631efd") + ) + (pad "2" smd rect + (at -4.305 -1.27 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 22 "Net-(U4-IO11)") + (pintype "passive") + (uuid "69d71695-9a9c-4ffe-a2e1-b4f1bf37d962") + ) + (pad "3" smd rect + (at -4.305 1.27 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 21 "Net-(U4-IO12)") + (pintype "passive") + (uuid "55de3091-53f5-449e-8769-e08b1eeccb53") + ) + (pad "4" smd rect + (at -4.305 3.81 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 23 "Net-(U4-IO13)") + (pintype "passive") + (uuid "d10bc123-3d08-45f9-94d7-fc7691c1c612") + ) + (pad "5" smd rect + (at 4.305 3.81 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pintype "passive") + (uuid "d8686c4d-5e82-4ae6-b87f-3b472705999a") + ) + (pad "6" smd rect + (at 4.305 1.27 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pintype "passive") + (uuid "22e066a2-f12b-4830-9e1c-651f4971fef6") + ) + (pad "7" smd rect + (at 4.305 -1.27 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pintype "passive") + (uuid "801d023b-aae0-4f88-8af2-110e1ad17061") + ) + (pad "8" smd rect + (at 4.305 -3.81 270) + (size 2.44 1.12) + (layers "F.Cu" "F.Paste" "F.Mask") + (net 37 "GND") + (pintype "passive") + (uuid "aee5e228-5938-4681-bfc3-c0f97a0204b9") + ) + (model "${KICAD8_3DMODEL_DIR}/Button_Switch_SMD.3dshapes/SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 90) + ) + ) + ) + (footprint "Resistor_SMD:R_0603_1608Metric" + (layer "F.Cu") + (uuid "f6b68be6-c6c0-4e2e-96dc-5fb8ce93058c") + (at 79.25 55.025 90) + (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R2" + (at 4.225 -1.35 0) + (layer "F.SilkS") + (uuid "7209bc5a-bdfd-4cfb-b818-ec9a57201841") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1K" + (at 0 1.43 -90) + (layer "F.Fab") + (uuid "44963339-c7a6-4bf0-af7e-40ebf6aeb1b4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6f0afcb9-b918-4e38-b992-231af41310d9") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "84dc70c6-537f-433e-9130-e091d5e7465d") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae67feb2-7e92-4443-a7aa-7fbb97d8d020") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/1f3c1453-9e0a-4b06-a2ed-5465e0332d48") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr smd) + (fp_line + (start -0.237258 -0.5225) + (end 0.237258 -0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "32729daa-9bd3-4681-a1e9-ab6e7c8f5dee") + ) + (fp_line + (start -0.237258 0.5225) + (end 0.237258 0.5225) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "94d912f7-39a6-4ee9-a106-f33b2b2df5bd") + ) + (fp_line + (start 1.48 -0.73) + (end 1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e5edea31-d86d-4c9b-b6a8-50f4ce73fae8") + ) + (fp_line + (start -1.48 -0.73) + (end 1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b053005b-4bfc-45b0-a8c7-ebda4977006e") + ) + (fp_line + (start 1.48 0.73) + (end -1.48 0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "f8139da6-2e5c-4cbf-b5b3-269aff37412c") + ) + (fp_line + (start -1.48 0.73) + (end -1.48 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a9e180b1-0b62-44e2-a957-74fe59896985") + ) + (fp_line + (start 0.8 -0.4125) + (end 0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "54ba72cd-8254-4ee7-9a9e-78bbbf09ad83") + ) + (fp_line + (start -0.8 -0.4125) + (end 0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6c4ec8e4-342a-4c31-9fe1-04f965011dd2") + ) + (fp_line + (start 0.8 0.4125) + (end -0.8 0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e1d2df0d-45a3-4201-8e84-33325facd0a6") + ) + (fp_line + (start -0.8 0.4125) + (end -0.8 -0.4125) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2713f379-4f73-46ec-ab8e-4b9be6610311") + ) + (fp_text user "${REFERENCE}" + (at 0 0 -90) + (layer "F.Fab") + (uuid "45412157-e4d4-43f0-9458-7cdebcc2c6fd") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + ) + ) + (pad "1" smd roundrect + (at -0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 7 "Net-(J1-DATA)") + (pintype "passive") + (uuid "4e2d9b63-44c1-4b86-b592-8784de3d73c7") + ) + (pad "2" smd roundrect + (at 0.825 0 90) + (size 0.8 0.95) + (layers "F.Cu" "F.Paste" "F.Mask") + (roundrect_rratio 0.25) + (net 45 "Net-(Q3-B)") + (pintype "passive") + (uuid "ad85a100-3cd8-4108-ba0b-cf4c99e18b3e") + ) + (model "${KICAD8_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "TestPoint:TestPoint_Pad_D1.5mm" + (layer "B.Cu") + (uuid "272be122-c759-4873-8eb6-f510637be288") + (at 88 37.25 180) + (descr "SMD pad as test Point, diameter 1.5mm") + (tags "test point SMD pad") + (property "Reference" "ROM_MSG_SP" + (at 6.6 -0.05 180) + (layer "B.SilkS") + (uuid "ff4196da-3205-4256-98de-e876225d7301") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "ROM_MSG_SP" + (at 0 -1.75 180) + (layer "B.Fab") + (uuid "3307e1c0-07ef-4dd2-8281-07ef0d991e34") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "d2eaf013-ddaa-4c9a-8965-b273a7dfbade") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "f7b339b4-0bf8-4ec5-9f36-f506aa488d7d") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "31f4819a-2738-4def-8380-969a0cb6093d") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/a0f73ad4-989d-42e8-b652-7feb3143a201") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 -0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "B.SilkS") + (uuid "814df8e1-f35e-49b1-ba59-dc4ae66051e0") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "B.CrtYd") + (uuid "ced5bf23-ddbf-4b8f-be3b-ea6d41d56a30") + ) + (fp_text user "${REFERENCE}" + (at 0 1.65 180) + (layer "B.Fab") + (uuid "e3f14583-5170-4e52-bfe6-c7ca86329235") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd circle + (at 0 0 180) + (size 1.5 1.5) + (layers "B.Cu" "B.Mask") + (net 71 "Net-(U4-IO46)") + (pinfunction "1") + (pintype "passive") + (uuid "97926c23-d783-4291-94f3-b67ddca30906") + ) + ) + (footprint "TestPoint:TestPoint_Pad_D1.5mm" + (layer "B.Cu") + (uuid "4f5b077d-4495-4096-a49a-3621d925aaab") + (at 88 31.75 180) + (descr "SMD pad as test Point, diameter 1.5mm") + (tags "test point SMD pad") + (property "Reference" "JTAG_SP" + (at 4.766667 0.05 180) + (layer "B.SilkS") + (uuid "79c8e1d5-eaf4-4be7-93aa-8e51c9bd793b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "JTAG_SP" + (at 0 -1.75 180) + (layer "B.Fab") + (uuid "81e3c441-d7ac-47e8-97a6-f57d0b735e7b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "9d42157e-9c3f-4cd9-b5b3-7e6d1020f968") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "3a070ec7-9c7c-4221-89f8-7ae59d7011b5") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "cb0ad172-5b32-490f-bd18-8d7bc2295e70") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/403e0cf1-3de0-4f42-ac2a-d80988da9075") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 -0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "B.SilkS") + (uuid "8ac38dd5-6ac1-4956-a37f-a81de75a1e86") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "B.CrtYd") + (uuid "82947e8f-8728-4b1f-800b-a63adbcc37c2") + ) + (fp_text user "${REFERENCE}" + (at 0 1.65 180) + (layer "B.Fab") + (uuid "92afbf05-a06a-42d0-8f93-d8b0bf7d8c53") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd circle + (at 0 0 180) + (size 1.5 1.5) + (layers "B.Cu" "B.Mask") + (net 69 "Net-(U4-IO3)") + (pinfunction "1") + (pintype "passive") + (uuid "3a40e30d-f219-43b8-95df-ee59c158a803") + ) + ) + (footprint "TestPoint:TestPoint_Pad_D1.5mm" + (layer "B.Cu") + (uuid "735c1910-d59b-4a51-8d46-c5ddd0bf8295") + (at 88 34.5 180) + (descr "SMD pad as test Point, diameter 1.5mm") + (tags "test point SMD pad") + (property "Reference" "SPI_VDD_SP" + (at 6.1 0 180) + (layer "B.SilkS") + (uuid "29d80720-546c-4cc6-85d4-f9e8d4aa0d46") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "VDD_SPI_SP" + (at 0 -1.75 180) + (layer "B.Fab") + (uuid "85713cd4-919c-4c78-8fb5-1766820bd30e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "904d4d7a-ced1-4eed-a69b-00938fc24dcb") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e08c5e72-f41b-45bc-9276-cf68a368493a") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "98ac738e-3ebf-4541-970a-e67b01c6adb8") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Pin* Test*") + (path "/639d556b-84f8-4248-b6bc-5e7de10a85b1") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr exclude_from_pos_files) + (fp_circle + (center 0 0) + (end 0 -0.95) + (stroke + (width 0.12) + (type solid) + ) + (fill none) + (layer "B.SilkS") + (uuid "e43f7956-4b7f-4087-a213-861e10b7883b") + ) + (fp_circle + (center 0 0) + (end 1.25 0) + (stroke + (width 0.05) + (type solid) + ) + (fill none) + (layer "B.CrtYd") + (uuid "59369f4c-5c3a-40aa-83dc-e0a4565595ff") + ) + (fp_text user "${REFERENCE}" + (at 0 1.65 180) + (layer "B.Fab") + (uuid "13b499e8-e0b4-44ec-95f8-c67cd626c408") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" smd circle + (at 0 0 180) + (size 1.5 1.5) + (layers "B.Cu" "B.Mask") + (net 70 "Net-(U4-IO45)") + (pinfunction "1") + (pintype "passive") + (uuid "fdb3e41f-fc2b-4371-948d-4dc02e0e6657") + ) + ) + (footprint "Connector_PinHeader_1.27mm:PinHeader_2x06_P1.27mm_Vertical" + (layer "B.Cu") + (uuid "c78993f6-ea56-4d1f-83b9-7d6700ec5a2d") + (at 59.75 37 -90) + (descr "Through hole straight pin header, 2x06, 1.27mm pitch, double rows") + (tags "Through hole pin header THT 2x06 1.27mm double row") + (property "Reference" "GPIO" + (at 0.635 1.695 90) + (layer "B.SilkS") + (uuid "203c9a0e-aecc-4564-a994-9aae244a0fe0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "GPIO" + (at 0.635 -8.045 90) + (layer "B.Fab") + (uuid "de9e77f0-321c-417b-8041-5c78306d06ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Footprint" "Connector_PinHeader_1.27mm:PinHeader_2x06_P1.27mm_Vertical" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "6b091bd4-93ce-4d3b-9f26-487e8ddd443c") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "4a336b65-f1b3-4d33-9284-a591d96dcf47") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7a563552-8be7-4987-95a5-c909a061934e") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Connector*:*_2x??_*") + (path "/7fb33c23-4a5c-4ce4-8358-cf46ea072b00") + (sheetname "Root") + (sheetfile "caliper_esp32.kicad_sch") + (attr through_hole) + (fp_line + (start -1.13 0.76) + (end -1.13 0) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "bb5d0875-b675-4bdc-8ec4-bdcae3909c70") + ) + (fp_line + (start 0 0.76) + (end -1.13 0.76) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d867c2c2-6928-4bd1-8441-8c17dca686dc") + ) + (fp_line + (start 0.76 0.695) + (end 0.76 0.563471) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d7cfd1a1-bea7-4705-8624-58983cba5193") + ) + (fp_line + (start 0.96247 0.695) + (end 0.76 0.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "315cce5c-0aee-4b29-8573-1c82c4b3dc0e") + ) + (fp_line + (start 2.4 0.695) + (end 1.57753 0.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "67532168-c9e6-4dc5-b1dc-5bce650cae1b") + ) + (fp_line + (start 0.76 -0.563471) + (end 0.76 -0.706529) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ab019cb3-147f-4c4b-9094-3db03285f376") + ) + (fp_line + (start -0.563471 -0.76) + (end -1.13 -0.76) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "0ea4be11-0f8b-4154-b0b6-01c9bb480deb") + ) + (fp_line + (start 0.706529 -0.76) + (end 0.563471 -0.76) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "8df17c7e-57f3-4693-a445-407c3ae2e8fe") + ) + (fp_line + (start -1.13 -7.045) + (end -1.13 -0.76) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d6e18107-2a0e-4257-8be7-f8d1e872f48f") + ) + (fp_line + (start -0.30753 -7.045) + (end -1.13 -7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "062b3bbc-5568-40fa-bf02-188bbc2f1c31") + ) + (fp_line + (start 0.96247 -7.045) + (end 0.30753 -7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fad303b8-e4fc-41c3-8fd7-4ef0e2925f5c") + ) + (fp_line + (start 2.4 -7.045) + (end 2.4 0.695) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "01000f06-8e0d-4b36-989a-ba4666db349e") + ) + (fp_line + (start 2.4 -7.045) + (end 1.57753 -7.045) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4ed836b5-c2a6-4437-8f09-dbf1a38282a8") + ) + (fp_line + (start -1.6 1.15) + (end 2.85 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "7992498d-13ee-4e87-812c-00ef4b2cef44") + ) + (fp_line + (start 2.85 1.15) + (end 2.85 -7.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8bd4f332-789d-429c-bc42-bf49504cda5c") + ) + (fp_line + (start -1.6 -7.5) + (end -1.6 1.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "404c9f74-e758-4333-b1ad-56c2a24a456a") + ) + (fp_line + (start 2.85 -7.5) + (end -1.6 -7.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "f9154b97-f06c-45a5-92d2-2e447151a296") + ) + (fp_line + (start -0.2175 0.635) + (end -1.07 -0.2175) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "ae10561a-54a5-4b62-a0f3-9fd5c49b11b7") + ) + (fp_line + (start 2.34 0.635) + (end -0.2175 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "7c8a24b9-78a9-43eb-a643-c28b8b3bf11e") + ) + (fp_line + (start -1.07 -0.2175) + (end -1.07 -6.985) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "d1d6d9c1-9169-45c0-842f-5e0c2ec1b33f") + ) + (fp_line + (start -1.07 -6.985) + (end 2.34 -6.985) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "24e95ede-36dc-419a-b629-7c8897abd871") + ) + (fp_line + (start 2.34 -6.985) + (end 2.34 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "158940fa-4dc0-4ce9-90bc-caf04a988380") + ) + (fp_text user "${REFERENCE}" + (at 0.635 -3.175 180) + (layer "B.Fab") + (uuid "023a0a37-87a8-4156-aa2d-2cb010178109") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" thru_hole rect + (at 0 0 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "GND") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "62ec399b-2067-4970-a8f6-7397be85f6f2") + ) + (pad "2" thru_hole oval + (at 1.27 0 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 36 "+3V3") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "85c7dc51-cd54-48df-a4fb-ae3059ac28ac") + ) + (pad "3" thru_hole oval + (at 0 -1.27 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 81 "/IO9") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "b9d2ae5c-f66f-4bb4-9ca3-c41c8323cc62") + ) + (pad "4" thru_hole oval + (at 1.27 -1.27 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 72 "Net-(J3-Pin_4)") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "af991c8c-2eda-4e32-8e84-8c056d11750f") + ) + (pad "5" thru_hole oval + (at 0 -2.54 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 80 "/IO8") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "0837e55e-ae45-4c16-8507-cd75ac3167e8") + ) + (pad "6" thru_hole oval + (at 1.27 -2.54 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 74 "Net-(J3-Pin_6)") + (pinfunction "Pin_6") + (pintype "passive") + (uuid "82e7ad05-e294-4144-a840-fc6ae2e7cde4") + ) + (pad "7" thru_hole oval + (at 0 -3.81 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 79 "/IO7") + (pinfunction "Pin_7") + (pintype "passive") + (uuid "05ffa751-c963-4547-bea9-e501e3c0c154") + ) + (pad "8" thru_hole oval + (at 1.27 -3.81 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 73 "Net-(J3-Pin_8)") + (pinfunction "Pin_8") + (pintype "passive") + (uuid "7b54e35e-02a8-4152-9e99-96000a8712fe") + ) + (pad "9" thru_hole oval + (at 0 -5.08 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 77 "/IO14") + (pinfunction "Pin_9") + (pintype "passive") + (uuid "f170eb36-f488-469c-884e-436955106dc0") + ) + (pad "10" thru_hole oval + (at 1.27 -5.08 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 75 "Net-(J3-Pin_10)") + (pinfunction "Pin_10") + (pintype "passive") + (uuid "9aaf87ec-f256-45a8-a9fe-51d3f6f327b9") + ) + (pad "11" thru_hole oval + (at 0 -6.35 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 76 "/IO15") + (pinfunction "Pin_11") + (pintype "passive") + (uuid "94cee724-f205-45b9-9ec7-d9f0822c0308") + ) + (pad "12" thru_hole oval + (at 1.27 -6.35 270) + (size 1 1) + (drill 0.65) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 47 "/IO16") + (pinfunction "Pin_12") + (pintype "passive") + (uuid "f4c40942-d329-4531-bfa3-4808b7636ffd") + ) + (model "${KICAD8_3DMODEL_DIR}/Connector_PinHeader_1.27mm.3dshapes/PinHeader_2x06_P1.27mm_Vertical.wrl" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_rect + (start 30 30) + (end 90 60) + (locked yes) + (stroke + (width 0.05) + (type default) + ) + (fill none) + (layer "Edge.Cuts") + (uuid "675937c8-83e6-475e-bc6f-3512c2becfc0") + ) + (gr_text "1V8\nCLK\nDATA\nGND" + (at 76.2 56.6 270) + (layer "B.SilkS") + (uuid "2722c326-8255-4c4c-8ef2-59f5d8132fb7") + (effects + (font + (size 1.25 1.25) + (thickness 0.15) + ) + (justify left bottom mirror) + ) + ) + (gr_text "-" + (at 36.225 54.679 0) + (layer "B.SilkS") + (uuid "5f428ba9-9870-4726-9202-e943797f3f88") + (effects + (font + (size 2 2) + (thickness 0.2) + ) + (justify left bottom mirror) + ) + ) + (gr_text "GND\nIO9\nIO8\nIO7\nIO14\nIO15" + (at 66.7 35.5 90) + (layer "B.SilkS") + (uuid "ce2f4b84-c879-4f22-85ac-08c056ae5c68") + (effects + (font + (size 0.8 0.8) + (thickness 0.1) + ) + (justify right bottom mirror) + ) + ) + (gr_text "+" + (at 36.225 57.219 0) + (layer "B.SilkS") + (uuid "dad0facd-11a8-4d27-8788-fa18b68abb47") + (effects + (font + (size 2 2) + (thickness 0.2) + ) + (justify left bottom mirror) + ) + ) + (gr_text "3V3\nIO39 / MTCK\nIO40 / MTDO\nIO41 / MTDI\nIO42 / MTMS\nIO16" + (at 66.7 39.8 90) + (layer "B.SilkS") + (uuid "f1f7c50c-87c3-4bd8-8ed1-ae3b127c2876") + (effects + (font + (size 0.8 0.8) + (thickness 0.1) + ) + (justify left bottom mirror) + ) + ) + (gr_text "kEePoUt ArEa" + (at 88.6 58.7 90) + (layer "F.SilkS") + (uuid "02c06bef-5d1b-4014-92b3-97c4f966b4aa") + (effects + (font + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + ) + (gr_text "BLE Caliper\nMod v1.0" + (at 54.8 33.6 0) + (layer "F.SilkS") + (uuid "a8aef73e-e0d5-4043-85b2-e1621a12e7d2") + (effects + (font + (size 1 1) + (thickness 0.2) + (bold yes) + ) + (justify left bottom) + ) + ) + (gr_text "ARNweb Inc." + (at 30.8 46.2 0) + (layer "F.SilkS") + (uuid "f85984b5-abfc-459a-b0cc-e2704be8ab1e") + (effects + (font + (face "Allerta Stencil") + (size 2 2) + (thickness 0.1) + ) + (justify left bottom) + ) + (render_cache "ARNweb Inc." 0 + (polygon + (pts + (xy 32.712421 45.86) (xy 32.371946 45.86) (xy 31.846824 44.343251) (xy 31.316817 45.86) (xy 30.972923 45.86) + (xy 31.682205 43.837669) (xy 32.009002 43.837669) + ) + ) + (polygon + (pts + (xy 32.028053 45.217152) (xy 32.108164 45.439413) (xy 31.583042 45.439413) (xy 31.660223 45.217152) + ) + ) + (polygon + (pts + (xy 33.12226 43.834738) (xy 33.451988 43.834738) (xy 33.451988 45.86) (xy 33.12226 45.86) + ) + ) + (polygon + (pts + (xy 34.496371 45.86) (xy 34.147103 45.86) (xy 33.765596 45.126294) (xy 33.747522 45.127759) (xy 33.718702 45.129225) + (xy 33.662526 45.129225) (xy 33.564829 45.129225) (xy 33.564829 44.887424) (xy 33.75143 44.887424) + (xy 33.84986 44.87388) (xy 33.872575 44.866908) (xy 33.960361 44.818584) (xy 33.982484 44.799497) + (xy 34.041318 44.717701) (xy 34.062107 44.669071) (xy 34.085738 44.568634) (xy 34.092364 44.46915) + (xy 34.092393 44.461465) (xy 34.081921 44.363531) (xy 34.078715 44.347648) (xy 34.041713 44.253492) + (xy 34.022051 44.223572) (xy 33.951336 44.15441) (xy 33.902372 44.124898) (xy 33.806962 44.093644) + (xy 33.707479 44.084882) (xy 33.699651 44.084842) (xy 33.564829 44.084842) (xy 33.564829 43.834738) + (xy 33.705024 43.834738) (xy 33.809401 43.84159) (xy 33.912972 43.862148) (xy 33.960502 43.876259) + (xy 34.051681 43.912873) (xy 34.142086 43.965715) (xy 34.187159 43.999846) (xy 34.262154 44.072565) + (xy 34.32441 44.15657) (xy 34.348848 44.199148) (xy 34.386652 44.290762) (xy 34.407008 44.390482) + (xy 34.410886 44.461465) (xy 34.404535 44.567253) (xy 34.385484 44.664797) (xy 34.348871 44.764681) + (xy 34.309281 44.835157) (xy 34.246486 44.915412) (xy 34.172409 44.98307) (xy 34.087049 45.038132) + (xy 34.034752 45.063279) + ) + ) + (polygon + (pts + (xy 36.060502 43.834738) (xy 36.396092 43.834738) (xy 36.396092 45.86) (xy 36.060502 45.86) (xy 35.379064 44.661744) + (xy 35.379064 44.030132) (xy 36.060502 45.23083) + ) + ) + (polygon + (pts + (xy 34.931612 45.86) (xy 34.931612 43.834738) (xy 35.266713 43.834738) (xy 35.266713 45.86) + ) + ) + (polygon + (pts + (xy 38.64508 44.310034) (xy 39.005094 44.310034) (xy 38.567899 45.871235) (xy 38.139497 45.871235) + (xy 37.974389 45.23083) (xy 37.974389 44.310034) (xy 38.095533 44.310034) (xy 38.356385 45.601591) + ) + ) + (polygon + (pts + (xy 37.446824 45.601591) (xy 37.735519 44.310034) (xy 37.862037 44.310034) (xy 37.862037 45.148276) + (xy 37.6642 45.871235) (xy 37.232868 45.871235) (xy 36.834263 44.310034) (xy 37.191346 44.310034) + ) + ) + (polygon + (pts + (xy 40.140823 44.296357) (xy 40.239233 44.311936) (xy 40.338953 44.34302) (xy 40.408513 44.37598) + (xy 40.493395 44.430866) (xy 40.568523 44.496605) (xy 40.613189 44.546461) (xy 40.671372 44.629122) + (xy 40.718427 44.720301) (xy 40.743614 44.785819) (xy 40.771298 44.88815) (xy 40.786204 44.99364) + (xy 40.789043 45.065722) (xy 40.784372 45.16464) (xy 40.780739 45.197613) (xy 39.83845 45.197613) + (xy 39.83845 44.955812) (xy 40.472993 44.955812) (xy 40.46088 44.856067) (xy 40.449546 44.818548) + (xy 40.404934 44.728798) (xy 40.381158 44.696427) (xy 40.311535 44.627287) (xy 40.275157 44.60166) + (xy 40.18127 44.561833) (xy 40.140823 44.554766) + ) + ) + (polygon + (pts + (xy 40.129588 45.601591) (xy 40.205303 45.594752) (xy 40.301535 45.570327) (xy 40.393614 45.529946) + (xy 40.40314 45.524898) (xy 40.48519 45.466007) (xy 40.492533 45.458953) (xy 40.613189 45.643112) + (xy 40.540786 45.719751) (xy 40.459865 45.78114) (xy 40.401186 45.813593) (xy 40.30142 45.848719) + (xy 40.204114 45.865606) (xy 40.105527 45.871178) (xy 40.093928 45.871235) (xy 39.992407 45.863904) + (xy 39.895388 45.841912) (xy 39.811095 45.809197) (xy 39.724922 45.761236) (xy 39.641185 45.696801) + (xy 39.585415 45.640181) (xy 39.525773 45.56242) (xy 39.475135 45.476231) (xy 39.436915 45.390565) + (xy 39.405766 45.289568) (xy 39.388669 45.193245) (xy 39.382258 45.092628) (xy 39.382205 45.08233) + (xy 39.388208 44.976548) (xy 39.406217 44.874806) (xy 39.433007 44.785819) (xy 39.472321 44.693533) + (xy 39.525215 44.602206) (xy 39.571737 44.540111) (xy 39.641736 44.466243) (xy 39.71984 44.40364) + (xy 39.776413 44.368164) (xy 39.866515 44.326811) (xy 39.961701 44.301669) (xy 40.027983 44.293914) + (xy 40.027983 44.557697) (xy 39.930091 44.590484) (xy 39.860432 44.640251) (xy 39.795362 44.716861) + (xy 39.757362 44.784354) (xy 39.722551 44.876815) (xy 39.705094 44.950439) (xy 39.69174 45.051478) + (xy 39.689951 45.096008) (xy 39.696423 45.199567) (xy 39.71584 45.29531) (xy 39.75448 45.390897) + (xy 39.796929 45.454556) (xy 39.871605 45.524963) (xy 39.933217 45.562023) (xy 40.029024 45.592897) + ) + ) + (polygon + (pts + (xy 41.236008 43.724829) (xy 41.568178 43.724829) (xy 41.568178 45.67584) (xy 41.559874 45.763768) + (xy 41.552058 45.86) (xy 41.236008 45.86) + ) + ) + (polygon + (pts + (xy 42.590579 44.779958) (xy 42.610523 44.878281) (xy 42.621262 44.983473) (xy 42.623307 45.057418) + (xy 42.61892 45.164239) (xy 42.60576 45.269098) (xy 42.586182 45.362721) (xy 42.556377 45.460716) + (xy 42.517336 45.550515) (xy 42.473831 45.625038) (xy 42.411617 45.703875) (xy 42.338551 45.76966) + (xy 42.28381 45.806266) (xy 42.192814 45.847345) (xy 42.090553 45.869464) (xy 42.01612 45.873677) + (xy 41.916217 45.867473) (xy 41.83196 45.851695) (xy 41.736329 45.819737) (xy 41.681018 45.791123) + (xy 41.681018 45.505359) (xy 41.757693 45.570598) (xy 41.778227 45.58254) (xy 41.874219 45.611377) + (xy 41.903768 45.612826) (xy 42.000625 45.596797) (xy 42.053244 45.571793) (xy 42.129876 45.508824) + (xy 42.168527 45.460418) (xy 42.21675 45.373092) (xy 42.245708 45.293845) (xy 42.267323 45.194193) + (xy 42.2745 45.09456) (xy 42.274528 45.087704) (xy 42.268732 44.989773) (xy 42.249773 44.890519) + (xy 42.24815 44.884494) (xy 42.215128 44.788451) (xy 42.176831 44.714012) (xy 42.116059 44.636517) + (xy 42.065945 44.595799) (xy 41.972239 44.55703) (xy 41.917445 44.551835) (xy 41.817336 44.568321) + (xy 41.78702 44.581144) (xy 41.705229 44.638938) (xy 41.681018 44.664675) (xy 41.681018 44.370607) + (xy 41.774128 44.329425) (xy 41.820725 44.315896) (xy 41.9193 44.299105) (xy 41.98046 44.296357) + (xy 42.083449 44.304239) (xy 42.164619 44.32127) (xy 42.260305 44.356976) (xy 42.339009 44.403824) + (xy 42.416678 44.47038) (xy 42.483282 44.548969) (xy 42.487508 44.554766) (xy 42.540415 44.64379) + (xy 42.57866 44.739684) + ) + ) + (polygon + (pts + (xy 44.094138 45.86) (xy 43.759036 45.86) (xy 43.759036 43.834738) (xy 44.094138 43.834738) + ) + ) + (polygon + (pts + (xy 44.875715 44.310034) (xy 44.911374 44.466838) (xy 44.911374 45.86) (xy 44.579204 45.86) (xy 44.579204 44.310034) + ) + ) + (polygon + (pts + (xy 45.733007 44.480516) (xy 45.791534 44.559376) (xy 45.805792 44.589448) (xy 45.83739 44.685069) + (xy 45.844382 44.718408) (xy 45.857142 44.816069) (xy 45.859525 44.854696) (xy 45.862273 44.955904) + (xy 45.862456 44.98903) (xy 45.862456 45.804801) (xy 45.862456 45.86) (xy 45.526866 45.86) (xy 45.526866 45.016385) + (xy 45.524239 44.914049) (xy 45.518562 44.838087) (xy 45.500015 44.738864) (xy 45.48046 44.686657) + (xy 45.422666 44.60395) (xy 45.397906 44.583586) (xy 45.301573 44.549398) (xy 45.252337 44.546461) + (xy 45.153271 44.558381) (xy 45.149267 44.559162) (xy 45.054745 44.585998) (xy 45.024214 44.598729) + (xy 45.024214 44.387215) (xy 45.116691 44.34535) (xy 45.184926 44.32127) (xy 45.280959 44.29915) + (xy 45.353942 44.293914) (xy 45.454694 44.303638) (xy 45.55175 44.338565) (xy 45.562526 44.344717) + (xy 45.647889 44.404068) (xy 45.722381 44.470025) + ) + ) + (polygon + (pts + (xy 47.342568 44.71157) (xy 47.26718 44.643731) (xy 47.22875 44.619246) (xy 47.131567 44.582254) + (xy 47.034822 44.568443) (xy 47.034822 44.304661) (xy 47.133851 44.316085) (xy 47.230296 44.341581) + (xy 47.294696 44.36963) (xy 47.379421 44.423657) (xy 47.457373 44.494453) (xy 47.491067 44.532784) + ) + ) + (polygon + (pts + (xy 47.034822 45.599148) (xy 47.13191 45.579904) (xy 47.203838 45.550788) (xy 47.288903 45.499612) + (xy 47.337194 45.464326) (xy 47.460781 45.643112) (xy 47.395042 45.71627) (xy 47.319328 45.779556) + (xy 47.276622 45.806755) (xy 47.181774 45.846746) (xy 47.078463 45.867471) (xy 47.034822 45.871235) + ) + ) + (polygon + (pts + (xy 46.268387 45.085261) (xy 46.273698 44.979767) (xy 46.289629 44.878891) (xy 46.313328 44.791193) + (xy 46.353376 44.692847) (xy 46.405377 44.603706) (xy 46.446685 44.549392) (xy 46.517095 44.476623) + (xy 46.596436 44.41512) (xy 46.654291 44.380376) (xy 46.748103 44.339504) (xy 46.850021 44.313606) + (xy 46.92247 44.304661) (xy 46.92247 44.571374) (xy 46.826917 44.609339) (xy 46.74689 44.677803) + (xy 46.702163 44.74039) (xy 46.658886 44.832869) (xy 46.631638 44.936891) (xy 46.620818 45.040382) + (xy 46.620097 45.076957) (xy 46.625226 45.175509) (xy 46.640614 45.267955) (xy 46.669413 45.36203) + (xy 46.69972 45.426224) (xy 46.757944 45.506727) (xy 46.794487 45.541507) (xy 46.883315 45.590046) + (xy 46.92247 45.599148) (xy 46.92247 45.871235) (xy 46.82194 45.858888) (xy 46.720434 45.830277) + (xy 46.649895 45.79845) (xy 46.564349 45.744022) (xy 46.488695 45.678191) (xy 46.443754 45.627969) + (xy 46.385571 45.543659) (xy 46.338516 45.449733) (xy 46.313328 45.381772) (xy 46.287742 45.283483) + (xy 46.272776 45.181384) + ) + ) + (polygon + (pts + (xy 48.15785 45.672909) (xy 48.133026 45.770743) (xy 48.100209 45.813593) (xy 48.013826 45.864424) + (xy 47.960013 45.871235) (xy 47.863021 45.846411) (xy 47.821284 45.813593) (xy 47.771746 45.726779) + (xy 47.765108 45.672909) (xy 47.789932 45.576348) (xy 47.822749 45.534668) (xy 47.90787 45.484699) + (xy 47.960013 45.478004) (xy 48.057637 45.502407) (xy 48.100209 45.534668) (xy 48.151039 45.619549) + ) + ) + ) + ) + (segment + (start 49.245 42.65) + (end 49.245 43.103052) + (width 0.2) + (layer "F.Cu") + (net 1) + (uuid "334070a7-7c8e-424b-b401-ffbfd330a91a") + ) + (segment + (start 49.245 41.199568) + (end 49.245 42.65) + (width 0.2) + (layer "F.Cu") + (net 1) + (uuid "43a2dff2-054a-4689-bd0b-f29d23f779f0") + ) + (segment + (start 50.8075 40.5) + (end 49.944568 40.5) + (width 0.2) + (layer "F.Cu") + (net 1) + (uuid "503513ba-7078-4131-969f-68cfa14d347e") + ) + (segment + (start 49.245 43.103052) + (end 50.691948 44.55) + (width 0.2) + (layer "F.Cu") + (net 1) + (uuid "7ba23dbf-3154-44fe-a444-db5a1cb211c4") + ) + (segment + (start 50.691948 44.55) + (end 53.1825 44.55) + (width 0.2) + (layer "F.Cu") + (net 1) + (uuid "c0786961-4f42-4585-9c59-80ccadd05c6e") + ) + (segment + (start 49.944568 40.5) + (end 49.245 41.199568) + (width 0.2) + (layer "F.Cu") + (net 1) + (uuid "e0774d6d-be7d-4573-ada9-aec2f9971b54") + ) + (segment + (start 55.9175 55) + (end 55.9175 54.366936) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "01699cf4-88ac-449f-a212-0b17deec59c6") + ) + (segment + (start 54.5 52.45) + (end 54.475 52.425) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "3134a788-fc5c-4f82-a06e-7b6cd5890e5e") + ) + (segment + (start 55.9175 54.366936) + (end 54.475 52.924436) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "4ef64451-29fa-4737-af13-e7c57859f7a6") + ) + (segment + (start 54.475 52.924436) + (end 54.475 52.425) + (width 0.2) + (layer "F.Cu") + (net 2) + (uuid "8832326f-37f4-41a7-bc0c-1448e556e757") + ) + (segment + (start 54.2675 56.605) + (end 54.2675 58.1925) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "1eaf251a-548f-4b19-8fe9-df3d2e1f2f49") + ) + (segment + (start 54.2675 58.1925) + (end 54.325 58.25) + (width 0.2) + (layer "F.Cu") + (net 3) + (uuid "fc9b4ae7-eed1-4077-adf3-2821c44bf60c") + ) + (segment + (start 69 53.25) + (end 69 53.7875) + (width 0.2) + (layer "F.Cu") + (net 4) + (uuid "2c824758-97de-4e4b-90c9-43086ef889d7") + ) + (segment + (start 69 53.7875) + (end 72.35 57.1375) + (width 0.2) + (layer "F.Cu") + (net 4) + (uuid "a0874d23-d92a-4032-97e5-5b0d5567126c") + ) + (segment + (start 70.5 53.25) + (end 70.5 53.4625) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "0e4feb5f-a555-4814-bbcf-4fdd97f9f4b2") + ) + (segment + (start 70.5 53.4625) + (end 74.15 57.1125) + (width 0.2) + (layer "F.Cu") + (net 5) + (uuid "24352426-f050-4c97-b266-d4fef99a4a6e") + ) + (segment + (start 58.1 43.825) + (end 58.15 43.825) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "1b21d06a-df8c-42be-88f8-e5e604c3b684") + ) + (segment + (start 80.497393 49.3) + (end 82.7 47.097393) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "5e48384d-08b0-4854-b57a-4c189218f266") + ) + (segment + (start 80.4 49.3) + (end 80.497393 49.3) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "6959871b-64ad-4d21-a7d6-9e8c2f7de89c") + ) + (segment + (start 55.0575 43.6) + (end 56.695 43.6) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "74703359-3f12-407e-b1e8-fe54f9ecfd3a") + ) + (segment + (start 82.7 47.097393) + (end 82.7 46.6) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "9d899fba-b5af-4c76-8cf8-424dda37c6ed") + ) + (segment + (start 56.92 43.825) + (end 58.1 43.825) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "a1f4f51a-fdd5-4921-9d41-291b33d7fb54") + ) + (segment + (start 56.695 43.6) + (end 56.92 43.825) + (width 0.2) + (layer "F.Cu") + (net 6) + (uuid "e8174f81-caa8-41e0-9c1d-d74d29badbdb") + ) + (via + (at 80.4 49.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "814b3719-3806-489f-96ae-dc04745eb751") + ) + (via + (at 58.1 43.825) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 6) + (uuid "9c4b0fb9-7b6a-4ee3-9c7c-66088c8ece11") + ) + (segment + (start 79.575 50.875) + (end 79.6 50.9) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "180eef9d-d385-4483-bd3f-370a00755098") + ) + (segment + (start 66.565686 47.817157) + (end 62.573529 43.825) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "4dcd0b8b-1946-4a51-82cb-d84a65417347") + ) + (segment + (start 71.531372 53.6) + (end 66.565686 48.634314) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "8ff99c82-018a-44d9-922e-11515112b905") + ) + (segment + (start 79.575 50.125) + (end 79.575 50.875) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "9da830b6-e257-44b3-a378-66a6bca058a0") + ) + (segment + (start 62.573529 43.825) + (end 58.1 43.825) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "a10f4daf-f60c-4126-8110-79c46abd8bca") + ) + (segment + (start 80.4 49.3) + (end 79.575 50.125) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "a12f74c3-d34a-4926-bf80-7b6c6a6c8cf7") + ) + (segment + (start 79.6 50.9) + (end 79.6 51.559314) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "abcf8de7-2272-4867-b5d7-8952cfb8d9f4") + ) + (segment + (start 77.559314 53.6) + (end 71.531372 53.6) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "adf35c7a-7038-4a2e-a51b-63d955bff61a") + ) + (segment + (start 79.6 51.559314) + (end 77.559314 53.6) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "b8fc6033-0d71-4013-8827-69fc3ee0fd8c") + ) + (segment + (start 66.565686 48.634314) + (end 66.565686 47.817157) + (width 0.2) + (layer "B.Cu") + (net 6) + (uuid "be5f585d-8b16-47fc-9955-77a42e93ded2") + ) + (segment + (start 79.25 57.78) + (end 79 58.03) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "14f69b07-6d49-440a-afa1-f3eb5fd2bf14") + ) + (segment + (start 79.25 55.85) + (end 79.25 57.78) + (width 0.2) + (layer "F.Cu") + (net 7) + (uuid "c86ea605-6f02-42c9-9475-0821f4a9d05f") + ) + (segment + (start 80.8 57.83) + (end 81 58.03) + (width 0.2) + (layer "F.Cu") + (net 8) + (uuid "91758717-bc95-4015-9ae7-58d30f3a2135") + ) + (segment + (start 80.8 55.85) + (end 80.8 57.83) + (width 0.2) + (layer "F.Cu") + (net 8) + (uuid "f6dade0c-dfcb-493a-a21f-d64c63e42dc1") + ) + (segment + (start 47.12 36.1) + (end 47.07 36.05) + (width 0.2) + (layer "F.Cu") + (net 9) + (uuid "762e0d16-8e77-483a-84ef-f3cc71f4fc6e") + ) + (segment + (start 47.12 38.75) + (end 47.12 36.1) + (width 0.2) + (layer "F.Cu") + (net 9) + (uuid "f1c2dcf2-192e-446f-811e-1394ae471536") + ) + (segment + (start 54.8325 41) + (end 55.0325 41) + (width 0.2) + (layer "F.Cu") + (net 10) + (uuid "3650b541-e089-4208-a90f-66669f977d3d") + ) + (segment + (start 53.1825 42.65) + (end 54.8325 41) + (width 0.2) + (layer "F.Cu") + (net 10) + (uuid "50a6c9ad-f928-43d2-b788-77e93f10b6c1") + ) + (segment + (start 51.12 43.6) + (end 52.2325 43.6) + (width 0.2) + (layer "F.Cu") + (net 10) + (uuid "a9bf8f11-5964-4045-a9e0-04ce25568f06") + ) + (segment + (start 52.2325 43.6) + (end 53.1825 42.65) + (width 0.2) + (layer "F.Cu") + (net 10) + (uuid "f03a2ecd-0749-45bd-8c60-f73a3a120c49") + ) + (segment + (start 46 48.875) + (end 43.1 45.975) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "02020ebe-1cb6-4a86-86e2-e868e07faf76") + ) + (segment + (start 45.97 37.03) + (end 45.97 36.05) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "5b879148-a33a-494a-aba9-f1c40a8bf072") + ) + (segment + (start 43.1 45.975) + (end 43.1 39.9) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "c1cc7a6f-2661-45bc-b828-a4d0ef5b73ed") + ) + (segment + (start 43.1 39.9) + (end 45.97 37.03) + (width 0.2) + (layer "F.Cu") + (net 11) + (uuid "dc09c6e6-9de9-4360-8304-49452214024c") + ) + (segment + (start 50.07 38.141116) + (end 50.324442 38.395558) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "2c9ddfb1-78a1-4b3e-b4a4-932a0c8a810c") + ) + (segment + (start 53.549442 38.395558) + (end 55.12 36.825) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "9a09f9ec-a0c1-47b9-b309-53a5eddc0796") + ) + (segment + (start 50.07 36.05) + (end 50.07 38.141116) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "9d48ad8c-bd94-46ea-986e-f5035fc76e1c") + ) + (segment + (start 50.324442 38.395558) + (end 53.549442 38.395558) + (width 0.2) + (layer "F.Cu") + (net 12) + (uuid "c6734981-a769-4a6a-9873-757406dcd21f") + ) + (segment + (start 50.965552 54.24) + (end 50.095552 55.11) + (width 0.2) + (layer "F.Cu") + (net 13) + (uuid "46de9da4-9814-455c-b72f-12a43c3d7bfd") + ) + (segment + (start 50.095552 55.11) + (end 49.75 55.11) + (width 0.2) + (layer "F.Cu") + (net 13) + (uuid "b57a869d-ac91-4099-b46a-026016403f53") + ) + (segment + (start 54.2675 55) + (end 53.5075 54.24) + (width 0.2) + (layer "F.Cu") + (net 13) + (uuid "be708572-775c-4a1b-b301-5c9e65dc5618") + ) + (segment + (start 53.5075 54.24) + (end 50.965552 54.24) + (width 0.2) + (layer "F.Cu") + (net 13) + (uuid "cebf1e15-7c32-4941-b198-d0dffe5f0063") + ) + (segment + (start 55.9175 56.605) + (end 55.2175 55.905) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "1901c1bb-9cac-4bf0-bf51-b051ee5644e5") + ) + (segment + (start 55.2175 54.4175) + (end 54.64 53.84) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "1c789254-1882-4c50-b66c-7e1c967b6e79") + ) + (segment + (start 55.2175 55.905) + (end 55.2175 54.4175) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "620563d7-2b9a-4abd-a2e2-990fc82479fa") + ) + (segment + (start 54.64 53.84) + (end 49.75 53.84) + (width 0.2) + (layer "F.Cu") + (net 14) + (uuid "9c3bc256-ce31-4520-a6eb-952c8beb7a37") + ) + (segment + (start 69 51.6) + (end 69 48.381372) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "173bbeaa-c8c1-4e23-b3dc-4110ca3cb962") + ) + (segment + (start 69.4 39.6) + (end 69.75 39.6) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "1e69487b-8d3e-48e3-abed-309d28524e05") + ) + (segment + (start 68.25 47.631372) + (end 68.25 40.75) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "2c06640c-0345-4bf6-9f31-ec53e35c19d9") + ) + (segment + (start 69 48.381372) + (end 68.25 47.631372) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "3901e4bf-d135-4476-ae65-5ab02a3afb08") + ) + (segment + (start 68.25 40.75) + (end 69.4 39.6) + (width 0.2) + (layer "F.Cu") + (net 15) + (uuid "adcf5c1f-ec71-4278-bbba-24ca680f85b8") + ) + (segment + (start 48.2075 43.5125) + (end 49.245 44.55) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "25823a34-72e8-4530-9ddf-4e7eda9b8ac4") + ) + (segment + (start 80.2 34.2) + (end 80.15 34.05) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "65cd9bfb-6c19-4f43-8182-1099c20d3fd8") + ) + (segment + (start 48.2075 41.320482) + (end 48.2075 43.5125) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "6b74988b-263a-4d45-9e49-ae37fe06ea07") + ) + (segment + (start 80.15 34.125) + (end 80.15 32.6) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "982b690b-bfb8-4790-aba9-2bc4accc6c19") + ) + (segment + (start 48.594409 40.933573) + (end 48.2075 41.320482) + (width 0.2) + (layer "F.Cu") + (net 16) + (uuid "ac0bfb7f-ebb3-4648-94a6-306b2073b1c7") + ) + (via + (at 48.594409 40.933573) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 16) + (uuid "1ffe2038-167d-44f8-a354-4e1986ec8530") + ) + (via + (at 80.15 34.125) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 16) + (uuid "53dd8f52-040d-470f-868a-792423a842f5") + ) + (segment + (start 60.262744 32.2) + (end 66.45 32.2) + (width 0.2) + (layer "B.Cu") + (net 16) + (uuid "6f5ccd25-8cc7-424e-9aa8-a1041a52d4c4") + ) + (segment + (start 66.45 32.2) + (end 68.375 34.125) + (width 0.2) + (layer "B.Cu") + (net 16) + (uuid "97f3a7a9-25a4-490f-9501-87b15e9a530b") + ) + (segment + (start 51.529171 40.933573) + (end 60.262744 32.2) + (width 0.2) + (layer "B.Cu") + (net 16) + (uuid "a55fc701-269b-4712-90a4-7eceb240dcc6") + ) + (segment + (start 48.594409 40.933573) + (end 51.529171 40.933573) + (width 0.2) + (layer "B.Cu") + (net 16) + (uuid "b726a889-2b07-4265-9c98-f8f2048090d3") + ) + (segment + (start 68.375 34.125) + (end 80.15 34.125) + (width 0.2) + (layer "B.Cu") + (net 16) + (uuid "ce1e17f7-307a-4ed3-836f-c2d91620f686") + ) + (segment + (start 48.594409 40.933573) + (end 48.6 40.939164) + (width 0.2) + (layer "B.Cu") + (net 16) + (uuid "ee0c454b-cc5d-40b9-9b35-c296bbd46a16") + ) + (segment + (start 42.6 52.375) + (end 44.065 53.84) + (width 0.2) + (layer "F.Cu") + (net 17) + (uuid "1c215fd3-7ea1-47d8-972a-c75d96d143c5") + ) + (segment + (start 44.065 53.84) + (end 44.8 53.84) + (width 0.2) + (layer "F.Cu") + (net 17) + (uuid "27f80806-f818-4188-a621-c084410a2672") + ) + (segment + (start 69.4 40.45) + (end 69.75 40.45) + (width 0.2) + (layer "F.Cu") + (net 18) + (uuid "1015307c-006f-4fa2-af55-769b434f5522") + ) + (segment + (start 68.65 47.465686) + (end 70.5 49.315686) + (width 0.2) + (layer "F.Cu") + (net 18) + (uuid "1ac8aff5-2268-4298-9b32-2fc103ff48ce") + ) + (segment + (start 68.65 47.465686) + (end 68.65 41.2) + (width 0.2) + (layer "F.Cu") + (net 18) + (uuid "3d062463-8cd7-439f-a25d-3655d9c6acf0") + ) + (segment + (start 68.65 41.2) + (end 69.4 40.45) + (width 0.2) + (layer "F.Cu") + (net 18) + (uuid "8f9aa6a2-e0bd-484d-87d9-de9e5e01a303") + ) + (segment + (start 70.5 49.315686) + (end 70.5 51.6) + (width 0.2) + (layer "F.Cu") + (net 18) + (uuid "a90dfee7-14ec-449a-911a-a675437ff108") + ) + (segment + (start 41 52.375) + (end 41.7 51.675) + (width 0.2) + (layer "F.Cu") + (net 19) + (uuid "26168bcc-0f3a-44c8-853f-65779e08b655") + ) + (segment + (start 41.7 51.675) + (end 43.905 51.675) + (width 0.2) + (layer "F.Cu") + (net 19) + (uuid "2f3604d0-738c-49a1-9908-5b61d89e4d5c") + ) + (segment + (start 43.905 51.675) + (end 44.8 52.57) + (width 0.2) + (layer "F.Cu") + (net 19) + (uuid "8587483c-9fea-4b77-9a40-07855c134a2d") + ) + (segment + (start 41.9 37.3) + (end 42.3 37.3) + (width 0.2) + (layer "F.Cu") + (net 20) + (uuid "7f623e5e-3de9-4499-ac9e-3d31322c7f48") + ) + (segment + (start 40.41 35.81) + (end 40.41 31.895) + (width 0.2) + (layer "F.Cu") + (net 20) + (uuid "b154ab67-2843-45e1-8ccb-05f3956e986f") + ) + (segment + (start 40.41 35.81) + (end 41.9 37.3) + (width 0.2) + (layer "F.Cu") + (net 20) + (uuid "b6b82f0a-6ee4-4b60-b093-a49252ed1f68") + ) + (segment + (start 71.65 31) + (end 71.65 32.6) + (width 0.2) + (layer "F.Cu") + (net 20) + (uuid "e9ef8226-1c7e-411f-b3a1-110f86363806") + ) + (via + (at 71.65 31) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 20) + (uuid "69e846e4-e672-4cc9-93d0-cac99e8e266f") + ) + (via + (at 42.3 37.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 20) + (uuid "7f8edd27-7aae-4300-b4e7-44a0e8152955") + ) + (segment + (start 52.9 37.3) + (end 42.3 37.3) + (width 0.2) + (layer "B.Cu") + (net 20) + (uuid "1caf4328-48dc-43b9-bb81-47156517e9f1") + ) + (segment + (start 59.6 30.6) + (end 52.9 37.3) + (width 0.2) + (layer "B.Cu") + (net 20) + (uuid "751245d7-dd99-4cee-a867-d5b59c1051b6") + ) + (segment + (start 71.25 30.6) + (end 59.6 30.6) + (width 0.2) + (layer "B.Cu") + (net 20) + (uuid "dd66105e-e3e9-44f6-a3e1-64c3040dd99b") + ) + (segment + (start 71.65 31) + (end 71.25 30.6) + (width 0.2) + (layer "B.Cu") + (net 20) + (uuid "f636e5f6-7ba4-41d8-8afc-6a007aac2eb2") + ) + (segment + (start 41.7 38.5) + (end 42.3 39.1) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "12eeb861-938b-476d-9bb0-72d0a3100e9c") + ) + (segment + (start 35.33 31.895) + (end 36.862843 33.427843) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "21afe2ac-d120-48c9-81a6-7242a6757e90") + ) + (segment + (start 39.072157 33.427843) + (end 39.6 33.955686) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "28b14cd4-744a-4788-b47a-08023a1978d7") + ) + (segment + (start 39.834315 36.365685) + (end 41.7 38.23137) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "327def35-261f-4760-90e4-bf941e2c4a24") + ) + (segment + (start 68.25 31.8) + (end 68.25 32.5) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "3e1d0bf3-83ad-46b7-a9e3-d7fa243ccccf") + ) + (segment + (start 39.6 36.131371) + (end 39.834315 36.365685) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "4586a139-9282-4b9c-a733-a5d9b8767972") + ) + (segment + (start 69.4 33.65) + (end 69.75 33.65) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "625d809e-feb2-40c9-b079-208747a337c9") + ) + (segment + (start 68.25 32.5) + (end 69.4 33.65) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "86e2e5bf-471e-45f6-bf75-1e66e40e4222") + ) + (segment + (start 39.6 33.955686) + (end 39.6 36.131371) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "9324bd4a-35d3-4bec-b03e-bacfef01a9b9") + ) + (segment + (start 41.7 38.23137) + (end 41.7 38.5) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "9690d470-cde6-4443-8ba8-c6b9562c4962") + ) + (segment + (start 36.862843 33.427843) + (end 39.072157 33.427843) + (width 0.2) + (layer "F.Cu") + (net 21) + (uuid "d61115c9-b8f4-4808-b3ab-4826794129ef") + ) + (via + (at 68.25 31.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 21) + (uuid "2756a4d3-e804-4e21-a9ad-e9d06d11a49d") + ) + (via + (at 42.3 39.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 21) + (uuid "abd7e719-8446-46ef-bb5f-4bc8bf8b268b") + ) + (segment + (start 67.85 31.4) + (end 59.931372 31.4) + (width 0.2) + (layer "B.Cu") + (net 21) + (uuid "3fa04e36-39ef-4b54-96be-ed5f6b7743a1") + ) + (segment + (start 53.231372 38.1) + (end 43.3 38.1) + (width 0.2) + (layer "B.Cu") + (net 21) + (uuid "52d0514b-21f8-4229-936f-cdda3f0a4fa9") + ) + (segment + (start 43.3 38.1) + (end 42.3 39.1) + (width 0.2) + (layer "B.Cu") + (net 21) + (uuid "9cee6117-c9b6-4834-b441-096396d050b0") + ) + (segment + (start 59.931372 31.4) + (end 53.231372 38.1) + (width 0.2) + (layer "B.Cu") + (net 21) + (uuid "ce7f6c31-f8fd-49ee-af25-94c46c76808c") + ) + (segment + (start 68.25 31.8) + (end 67.85 31.4) + (width 0.2) + (layer "B.Cu") + (net 21) + (uuid "e19fd1c0-fe1b-45f3-b312-05b4841b02dc") + ) + (segment + (start 40 33.79) + (end 40 35.965685) + (width 0.2) + (layer "F.Cu") + (net 22) + (uuid "0ef464a5-6216-4196-a83c-f5f215d9e078") + ) + (segment + (start 37.87 31.895) + (end 38.105 31.895) + (width 0.2) + (layer "F.Cu") + (net 22) + (uuid "64f8d01e-793e-48a3-a480-a4d23b0d06d6") + ) + (segment + (start 38.105 31.895) + (end 40 33.79) + (width 0.2) + (layer "F.Cu") + (net 22) + (uuid "8a173ec9-c872-4cff-b248-7db0a4e801d7") + ) + (segment + (start 40 35.965685) + (end 42.234315 38.2) + (width 0.2) + (layer "F.Cu") + (net 22) + (uuid "a5baeb2c-20fb-44bb-95f2-3aea4c1c787e") + ) + (segment + (start 42.234315 38.2) + (end 42.3 38.2) + (width 0.2) + (layer "F.Cu") + (net 22) + (uuid "ab1f571a-2dc7-4d30-b4fa-b5149381799f") + ) + (segment + (start 70.8 31.5) + (end 70.8 32.6) + (width 0.2) + (layer "F.Cu") + (net 22) + (uuid "fc98b175-38a2-4a40-bdab-b8750b503111") + ) + (via + (at 42.3 38.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 22) + (uuid "2d605a6a-c8ee-4df4-b355-59399c95121f") + ) + (via + (at 70.8 31.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 22) + (uuid "47c96cfa-9d60-4d1e-87d6-7ef018d13697") + ) + (segment + (start 63.4 31) + (end 70.3 31) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "03690e87-ccac-4344-ba1a-11ffd85c2f12") + ) + (segment + (start 70.3 31) + (end 70.8 31.5) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "1556b698-fe2a-4249-b8c4-9c20d4a992ce") + ) + (segment + (start 53.065686 37.7) + (end 59.382843 31.382843) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "1d8c2b6c-343e-4d14-9de4-30a1b1274256") + ) + (segment + (start 48.4 37.7) + (end 53.065686 37.7) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "3c4447a2-5a98-4b81-b729-41eb74c97204") + ) + (segment + (start 42.8 37.7) + (end 48.4 37.7) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "b0cfac0f-6685-4b8c-a5a8-2f316df66680") + ) + (segment + (start 42.3 38.2) + (end 42.8 37.7) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "bf4750c1-f6bf-4c73-9fe9-4766e4105893") + ) + (segment + (start 59.765686 31) + (end 63.4 31) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "c75ce29a-4948-4066-b7d7-9d9fa2777202") + ) + (segment + (start 59.382843 31.382843) + (end 59.765686 31) + (width 0.2) + (layer "B.Cu") + (net 22) + (uuid "c90b0cd2-81ea-4471-8b44-fc7b60e4d5d5") + ) + (segment + (start 42.3 39.948529) + (end 42.3 40) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "32d5d010-669f-4b21-bdf1-a1b0dcaa21ab") + ) + (segment + (start 39.2 36.297056) + (end 39.2 34.3) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "5f09282e-ee21-4422-91c4-61567f4a2e1f") + ) + (segment + (start 34.882843 33.827843) + (end 32.95 31.895) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "5fb68563-1ae6-42f0-bbed-e0f9d5ab1e5c") + ) + (segment + (start 41.3 38.397056) + (end 39.2 36.297056) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "65053cf5-458f-4e0e-97d2-ec105ece60f2") + ) + (segment + (start 69.75 34.5) + (end 69.55 34.5) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "6a9f7bb2-2901-4320-8ded-4105fa1fa0ca") + ) + (segment + (start 69.55 34.5) + (end 67.5 32.45) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "7765e687-7524-44f3-8f34-5a11002e9733") + ) + (segment + (start 41.3 38.948529) + (end 41.3 38.397056) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "7d07d0fe-9ded-4e89-bbfe-2b7bc687c0a4") + ) + (segment + (start 32.95 31.895) + (end 32.79 31.895) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "8ff98e03-b6f4-453a-8e08-191044472026") + ) + (segment + (start 38.727843 33.827843) + (end 34.882843 33.827843) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "934718c2-f6a5-4d03-a818-55cc0c6f2036") + ) + (segment + (start 42.351471 40) + (end 42.3 39.948529) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "98fd582f-31c1-4397-b263-b48762fbab4a") + ) + (segment + (start 42.3 39.948529) + (end 41.3 38.948529) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "9da9ad8c-8de5-4403-ad27-ee4663128984") + ) + (segment + (start 42.3 40) + (end 42.351471 40) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "d20abc96-4444-4e4f-afa9-d53ae879fd33") + ) + (segment + (start 39.2 34.3) + (end 38.727843 33.827843) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "f7f5659b-dff3-4b3b-af18-a3d8b042a448") + ) + (segment + (start 67.5 32.45) + (end 67.5 32.4) + (width 0.2) + (layer "F.Cu") + (net 23) + (uuid "fc475aec-63f1-42b3-be1b-13ababaa9398") + ) + (via + (at 42.3 40) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 23) + (uuid "2983f90f-62c2-4b83-8b63-e59d3a24a558") + ) + (via + (at 67.5 32.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 23) + (uuid "3eeeefcd-46fa-4417-b98c-652c16b56c9c") + ) + (segment + (start 43.8 38.5) + (end 42.3 40) + (width 0.2) + (layer "B.Cu") + (net 23) + (uuid "46d6c489-495e-40f4-be09-f61e9df3f56d") + ) + (segment + (start 53.397058 38.5) + (end 43.8 38.5) + (width 0.2) + (layer "B.Cu") + (net 23) + (uuid "a28977f8-929a-4331-b7e1-4d1edce29bff") + ) + (segment + (start 67.5 32.4) + (end 66.9 31.8) + (width 0.2) + (layer "B.Cu") + (net 23) + (uuid "a477ec79-d480-40d5-8efe-6fb57d88550f") + ) + (segment + (start 66.9 31.8) + (end 60.097058 31.8) + (width 0.2) + (layer "B.Cu") + (net 23) + (uuid "ab397246-ebb0-4178-9138-c5d02b16707e") + ) + (segment + (start 60.097058 31.8) + (end 53.397058 38.5) + (width 0.2) + (layer "B.Cu") + (net 23) + (uuid "adce580b-5548-42c5-aaf9-e40d72871de0") + ) + (segment + (start 56.026804 39.5) + (end 58.1 41.573196) + (width 0.2) + (layer "F.Cu") + (net 24) + (uuid "1fa2ed21-ab56-406e-a450-935cd8d8b0df") + ) + (segment + (start 77.6 48.3) + (end 77.6 46.6) + (width 0.2) + (layer "F.Cu") + (net 24) + (uuid "9420a1c8-9e83-4433-8aee-795d6783a283") + ) + (segment + (start 58.1 41.7) + (end 58.1 41.8) + (width 0.2) + (layer "F.Cu") + (net 24) + (uuid "b090b5a5-a8a5-431c-bd9d-06e6b886966a") + ) + (segment + (start 58.1 41.573196) + (end 58.1 41.7) + (width 0.2) + (layer "F.Cu") + (net 24) + (uuid "e0a455c1-ebdd-40cd-9774-d89cb59ecd4a") + ) + (segment + (start 55.0325 39.5) + (end 56.026804 39.5) + (width 0.2) + (layer "F.Cu") + (net 24) + (uuid "f4177ecc-464e-4cfd-8008-a133a244e01a") + ) + (via + (at 77.6 48.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 24) + (uuid "4929cfae-e2c8-464e-a793-f5f82d052f31") + ) + (via + (at 58.1 41.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 24) + (uuid "f51a6a9d-6f1c-4003-bbd5-97af360c78ee") + ) + (segment + (start 69.4 49.5) + (end 62.3 42.4) + (width 0.2) + (layer "B.Cu") + (net 24) + (uuid "18f0f59f-2db2-4899-bf61-c94b3491de16") + ) + (segment + (start 76.4 49.5) + (end 69.4 49.5) + (width 0.2) + (layer "B.Cu") + (net 24) + (uuid "306351e2-3d71-4e5f-9e2e-96f880c4dd65") + ) + (segment + (start 62.3 42.4) + (end 58.8 42.4) + (width 0.2) + (layer "B.Cu") + (net 24) + (uuid "4fa2e4af-708f-415d-8ed8-de88b41f624b") + ) + (segment + (start 58.8 42.4) + (end 58.1 41.7) + (width 0.2) + (layer "B.Cu") + (net 24) + (uuid "b2f0a592-1fe7-49fa-8197-1afc891f98be") + ) + (segment + (start 77.6 48.3) + (end 76.4 49.5) + (width 0.2) + (layer "B.Cu") + (net 24) + (uuid "b5921bc3-4f17-430b-b226-6093a5289857") + ) + (segment + (start 33.9 51.975) + (end 32.275 53.6) + (width 0.2) + (layer "F.Cu") + (net 25) + (uuid "10248053-180a-4757-9b3d-358153c87551") + ) + (segment + (start 35.075 51.975) + (end 36.76 51.975) + (width 0.2) + (layer "F.Cu") + (net 25) + (uuid "25656398-3a0b-43f6-8b01-eaadfa1df331") + ) + (segment + (start 36.76 51.975) + (end 36.885 51.85) + (width 0.2) + (layer "F.Cu") + (net 25) + (uuid "83567ef7-062a-440f-8016-d0ecc4cd251b") + ) + (segment + (start 35.075 51.975) + (end 33.9 51.975) + (width 0.2) + (layer "F.Cu") + (net 25) + (uuid "e0c1647e-dbd9-450f-97f6-67af7a1e6213") + ) + (segment + (start 36.885 51.85) + (end 36.885 54.15) + (width 0.2) + (layer "F.Cu") + (net 25) + (uuid "e6cc1119-9502-49da-af3e-a50deb88cd6f") + ) + (segment + (start 31.225 57.775) + (end 31.225 58.79) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "19ce4469-21d8-48d7-815f-577cfd066c85") + ) + (segment + (start 53.4 49.875) + (end 51.925 49.875) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "2ce5e8a3-f963-491b-ab9e-b68cff69e5a4") + ) + (segment + (start 48.3 56.6) + (end 49.53 56.6) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "724ccacb-50eb-459d-ab12-dafe9dd460e3") + ) + (segment + (start 34.175 56.14) + (end 35.075 57.04) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "73a031ae-adb3-419a-9d88-74a230441467") + ) + (segment + (start 31.25 57.165) + (end 31.25 57.75) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "7e2a8009-ef5f-4361-9f43-b46fcb9e076b") + ) + (segment + (start 31.25 57.75) + (end 31.225 57.775) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "868b85e2-54b0-47b0-8b5c-4e1f00404b52") + ) + (segment + (start 49.53 56.6) + (end 49.75 56.38) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "c1b04d0a-5fa7-4b47-9476-58d151e243ed") + ) + (segment + (start 32.275 56.14) + (end 31.25 57.165) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "cbebe846-b827-4ae8-aa78-30a7dee34637") + ) + (segment + (start 32.275 56.14) + (end 34.175 56.14) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "f47b6fac-5dc0-4ebe-8476-e7d0f79a11b7") + ) + (segment + (start 53.4 49.8) + (end 53.325 49.875) + (width 0.2) + (layer "F.Cu") + (net 26) + (uuid "f5ee6ee2-d1a6-481d-af6f-bf07f228def8") + ) + (via + (at 53.4 49.875) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 26) + (uuid "a5d644f9-48c0-488e-a8c6-c7634e7fc1bf") + ) + (via + (at 48.3 56.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 26) + (uuid "ed649dbb-069e-4157-b700-865d832039e0") + ) + (segment + (start 32.735 56.6) + (end 32.275 56.14) + (width 0.2) + (layer "B.Cu") + (net 26) + (uuid "306b34e9-9152-4eff-a943-3e7d98876266") + ) + (segment + (start 48.3 54.975) + (end 53.4 49.875) + (width 0.2) + (layer "B.Cu") + (net 26) + (uuid "4097c8db-e5bb-4ef2-8fe1-a7fa28214d58") + ) + (segment + (start 48.3 56.6) + (end 32.735 56.6) + (width 0.2) + (layer "B.Cu") + (net 26) + (uuid "b36181cb-5f24-4caf-ab41-446c9a73d086") + ) + (segment + (start 48.3 56.6) + (end 48.3 54.975) + (width 0.2) + (layer "B.Cu") + (net 26) + (uuid "ba3cd2ee-5edd-4beb-9f54-be305b1d9703") + ) + (segment + (start 53.8 48.925) + (end 55.6325 50.7575) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "3a2bf332-b056-46b7-9169-ae8dac00f1fa") + ) + (segment + (start 53.575 48.925) + (end 53.475 48.825) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "590feb91-c249-465c-b7d7-059994b64fb3") + ) + (segment + (start 53.8 48.925) + (end 53.575 48.925) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "638a7229-4526-4ce7-84fd-f2d5ad74253d") + ) + (segment + (start 60.7 54.845) + (end 61.75 55.895) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "80b245f0-4b08-44bf-ba22-be9d6945c134") + ) + (segment + (start 55.6325 50.7575) + (end 55.6325 53.51625) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "8fe8255d-0a4b-48e2-b467-3366a4a27a19") + ) + (segment + (start 56.6175 54.50125) + (end 56.6175 54.5175) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "a3b0f164-9e6c-4214-8fc6-bfac5543dedc") + ) + (segment + (start 55.6325 53.51625) + (end 56.6175 54.50125) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "a9767738-e819-4a13-9c2a-1296ef271a2a") + ) + (segment + (start 56.945 54.845) + (end 60.7 54.845) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "d2203788-e0ed-436c-8f5d-9026bb8a07e3") + ) + (segment + (start 56.6175 54.5175) + (end 56.945 54.845) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "db6cb58d-a600-4c25-b4d8-18d3d3c7402c") + ) + (segment + (start 53.475 48.825) + (end 50.2 48.825) + (width 0.2) + (layer "F.Cu") + (net 27) + (uuid "eb6083ea-98dd-4754-8d4c-d1afbc9be032") + ) + (segment + (start 39.81 55.190686) + (end 38.785 56.215686) + (width 0.2) + (layer "F.Cu") + (net 29) + (uuid "3463b6eb-229d-4523-9303-cb1e4399eb2a") + ) + (segment + (start 39.81 51.45) + (end 39.81 55.190686) + (width 0.2) + (layer "F.Cu") + (net 29) + (uuid "475aa52c-5ef5-426b-b4b2-cf6e01138f01") + ) + (segment + (start 40.485 50.775) + (end 39.81 51.45) + (width 0.2) + (layer "F.Cu") + (net 29) + (uuid "477a53aa-a60d-4461-b338-c5335a809cf4") + ) + (segment + (start 38.785 56.215686) + (end 38.785 56.85) + (width 0.2) + (layer "F.Cu") + (net 29) + (uuid "7c31f9a6-59fa-4273-b127-b9088d82b089") + ) + (segment + (start 35.075 53.525) + (end 35.075 55.39) + (width 0.2) + (layer "F.Cu") + (net 34) + (uuid "1751c55d-fcbf-4d19-b49c-c7e6031616a3") + ) + (segment + (start 37.675 55.34) + (end 36.636424 55.34) + (width 0.2) + (layer "F.Cu") + (net 34) + (uuid "1d2a6491-201d-4b80-86d3-19655cb836c6") + ) + (segment + (start 37.835 54.15) + (end 37.835 55.18) + (width 0.2) + (layer "F.Cu") + (net 34) + (uuid "3a50cd25-af6c-4916-a9e2-c9e36f4b091d") + ) + (segment + (start 35.075 53.778576) + (end 35.075 53.525) + (width 0.2) + (layer "F.Cu") + (net 34) + (uuid "3e353ae3-724a-4f43-af86-edddc12fe599") + ) + (segment + (start 37.835 55.18) + (end 37.675 55.34) + (width 0.2) + (layer "F.Cu") + (net 34) + (uuid "598765b6-edb7-45c4-a7f9-93ccce40a7c5") + ) + (segment + (start 36.636424 55.34) + (end 35.075 53.778576) + (width 0.2) + (layer "F.Cu") + (net 34) + (uuid "b5235ecc-79a3-4be6-b34b-46bfbf44b85f") + ) + (segment + (start 60.725 46.845) + (end 58.455 44.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "06dd2b2c-40da-438d-930e-91fda5c2c75e") + ) + (segment + (start 60.725 47.6) + (end 60.725 46.845) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "0a17db61-e0dc-49af-854e-c761efe52f4d") + ) + (segment + (start 55.804448 41.475) + (end 56.025 41.475) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "0c5bf065-b1f5-4c2d-9ccf-a3893592d8de") + ) + (segment + (start 65.4 47.5) + (end 65.4 47.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "0ef5a5b1-457c-4c20-a0e1-8659628e4a03") + ) + (segment + (start 56.145 40.749568) + (end 55.895432 40.5) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "1583eca3-f66d-4c65-9e31-fd3a5e75c6a8") + ) + (segment + (start 56.145 41.355) + (end 56.145 40.749568) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "1bab0bfe-5f22-4e42-908d-55b2c47f895e") + ) + (segment + (start 53.960552 43.6) + (end 53.960552 43.318896) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "1cc3aaac-ebfc-40f8-9cc0-225d94f588fc") + ) + (segment + (start 79.85 50.675) + (end 74.75 50.675) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "1e4c5c04-bb1b-4a52-b62d-0a1b63b529c5") + ) + (segment + (start 53.960552 43.910552) + (end 53.960552 43.6) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "1f6dc3ef-b4d7-491a-8411-7442471249ed") + ) + (segment + (start 61.78 46.545) + (end 64.913836 46.545) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "259872d9-3877-46bf-a198-25230cf7be50") + ) + (segment + (start 74.75 50.675) + (end 73.85 51.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "3a5a60ca-ffee-40eb-9c30-dcfb84d3a62d") + ) + (segment + (start 54.169568 40.5) + (end 55.0325 40.5) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "4c01634f-a762-41b6-8124-fffff2384d49") + ) + (segment + (start 47 42.7) + (end 47 43.683052) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "4e8ff9ce-3eff-496f-8826-cb068a6a4cc3") + ) + (segment + (start 81 50) + (end 80.525 50) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "517822dc-55e1-402f-99cb-b96433880e7f") + ) + (segment + (start 57.25 44.575) + (end 54.654448 44.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "51922713-46e0-4c84-b9e1-ee6a35348098") + ) + (segment + (start 54.169568 39) + (end 53.92 39.249568) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "5a4141b3-caf1-4db0-a876-6d5747085498") + ) + (segment + (start 54.22 44.17) + (end 53.960552 43.910552) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "5f1159b3-071e-46bd-a316-8cfcf5adf2cc") + ) + (segment + (start 53.92 40.250432) + (end 54.169568 40.5) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "765814b1-7fb5-49cc-b2a9-ad2cad61523f") + ) + (segment + (start 47 43.683052) + (end 48.466948 45.15) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "81bad6ec-32ca-4ac1-8f47-4d53c5471644") + ) + (segment + (start 65.4 47.5) + (end 65.4 47.031164) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "87aa5c4d-83f4-4fab-959f-8575755b0488") + ) + (segment + (start 54.22 44.890552) + (end 54.22 44.17) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "8af3e2e2-cc8c-4d0b-b38a-c9be5ea87a69") + ) + (segment + (start 58.455 44.575) + (end 57.25 44.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "8c02081d-7b6c-4561-8f3b-75fc717125ee") + ) + (segment + (start 59.75 38.27) + (end 59.75 43.023529) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "905116f6-1a43-4190-b8b9-0b1019f225bd") + ) + (segment + (start 54.654448 44.575) + (end 53.960552 43.881104) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "98590a55-85f0-43c0-a8cd-6ff5b4b14958") + ) + (segment + (start 56.025 41.475) + (end 56.145 41.355) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "a48892f1-8a6e-4817-a246-bd8ae6e34dfa") + ) + (segment + (start 53.960552 45.15) + (end 54.22 44.890552) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "ac5726c3-feb4-4ae2-aabe-c7f8355aa2bb") + ) + (segment + (start 81 34.125) + (end 81 32.6) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "acd15d02-cf9c-4087-8279-ab4d8c619fd8") + ) + (segment + (start 48.466948 45.15) + (end 53.960552 45.15) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "b5d2ed8e-66bd-4a2c-be3a-677e6391f85f") + ) + (segment + (start 60.725 47.6) + (end 61.78 46.545) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "c14b2aeb-af13-484d-9cbe-3b7614efbe92") + ) + (segment + (start 58.198529 44.575) + (end 57.25 44.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "c6fd531c-b622-4bcd-b962-4b8a5fbc8d81") + ) + (segment + (start 53.960552 43.318896) + (end 55.804448 41.475) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "ccc5504a-a3ab-44f0-95b8-4851b344d612") + ) + (segment + (start 64.913836 46.545) + (end 65.4 47.031164) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "cfce4235-5221-4696-b10b-a5ef98ad11b8") + ) + (segment + (start 53.92 39.249568) + (end 53.92 40.250432) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "d2362508-963f-4441-9d81-ff895d30cb10") + ) + (segment + (start 59.75 43.023529) + (end 58.198529 44.575) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "da51e377-3357-4a59-91e8-ba57fb384b72") + ) + (segment + (start 53.960552 43.881104) + (end 53.960552 43.6) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "e375a5fc-afe0-410e-a1b7-9a5db90eb396") + ) + (segment + (start 80.525 50) + (end 79.85 50.675) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "e9619d39-574f-42e6-ad30-d0422aed9001") + ) + (segment + (start 55.0325 39) + (end 54.169568 39) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "eb02d6d1-f071-4614-b115-a5a433c5c38e") + ) + (segment + (start 55.895432 40.5) + (end 55.0325 40.5) + (width 0.2) + (layer "F.Cu") + (net 36) + (uuid "ee08ad9c-e422-47de-b46f-d8d8ca45dc58") + ) + (via + (at 65.4 47.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 36) + (uuid "3aa449dd-e945-4b3a-a984-9fbf5e180546") + ) + (via + (at 81 34.125) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 36) + (uuid "c4fe9d06-4d9c-4473-b0cd-3eac6451d1ea") + ) + (via + (at 81 50) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 36) + (uuid "d876e511-99d7-4f35-a1bf-7efa2c43376f") + ) + (segment + (start 81 50) + (end 81 34.125) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "20554e2e-102e-4475-8af9-8b5280e83114") + ) + (segment + (start 71.365686 54) + (end 66.120343 48.754657) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "2915f6c0-4e60-4de1-bdfa-3614917f174d") + ) + (segment + (start 66.120343 48.471814) + (end 65.4 47.751471) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "2dbffb27-9d76-48b0-8de2-8b6c2b476ec5") + ) + (segment + (start 77.725 54) + (end 71.365686 54) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "4ba56a9f-1ef6-473a-a7cc-a6b9f3662a66") + ) + (segment + (start 65.4 47.751471) + (end 65.4 47.5) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "59dd0c52-941a-466b-99e8-ee5c40d70531") + ) + (segment + (start 81 50.725) + (end 77.725 54) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "7fc5bd75-66d5-4527-8bec-341672d1626e") + ) + (segment + (start 81 34.125) + (end 81 34.05) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "957f8539-93ba-41ce-862b-bdd42b6ce432") + ) + (segment + (start 81 50) + (end 81 50.725) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "95fe03f2-1290-4275-bb2f-916c33de7ab5") + ) + (segment + (start 66.120343 48.754657) + (end 66.120343 48.471814) + (width 0.2) + (layer "B.Cu") + (net 36) + (uuid "fa5c8c19-4e65-4657-b33f-ac2ea8e5f10f") + ) + (segment + (start 47.12 40.4) + (end 48.32 40.4) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "08df3578-58de-4717-b4de-e1864eab1abe") + ) + (segment + (start 48.72 40) + (end 50.8075 40) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "0c4384b0-c1c3-41e3-a50d-efa77a32a13b") + ) + (segment + (start 45.22 36.9) + (end 44.72 37.4) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "282f5b57-0fb8-49dd-8399-13bc765d216b") + ) + (segment + (start 52.64 37.32) + (end 52.72 37.4) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "2c3516c6-d157-4a86-b0a1-988cc15ef3d0") + ) + (segment + (start 56.92 46.62) + (end 57.45 47.15) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "32d57fca-52e4-47bc-ae94-d8487222bf3a") + ) + (segment + (start 52.72 37.4) + (end 51.72 37.4) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "49409d21-cb4a-46fc-bb55-9f7d0ae45341") + ) + (segment + (start 70.675 57.38) + (end 70.095 56.8) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "4e033015-7d72-4338-8c0d-bfa2cd4a154a") + ) + (segment + (start 70.675 58.64) + (end 70.675 57.38) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "571b7d0e-1252-4745-bf8b-ca5849700881") + ) + (segment + (start 69.75 47) + (end 69.75 46.6) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "5f0b2068-1456-4565-b8ff-cf4f843c98d3") + ) + (segment + (start 66.045 52.53) + (end 66.2 52.375) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "72e37e7c-9c99-47a5-8724-71bfa7ac5beb") + ) + (segment + (start 51.42 37.1) + (end 51.42 36.05) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "74f75f9d-c64a-4333-a40a-047f804f1f29") + ) + (segment + (start 44 36.92) + (end 44 35.675) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "7e46eb7e-09b5-4a9b-a9b6-870f18cf5ab3") + ) + (segment + (start 45.22 36.05) + (end 45.22 36.9) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "92d55c70-b0a6-432c-9a61-24b0be4c325b") + ) + (segment + (start 66.045 58.51) + (end 66.045 52.53) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "95af76d9-d9c9-45a5-8db2-8a0242e1e46d") + ) + (segment + (start 44.72 37.4) + (end 43.92 37.4) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "9656f239-53cd-4fd9-a501-740f69c58195") + ) + (segment + (start 73.5 48.3) + (end 71.05 48.3) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "a0ec36f9-b605-4bec-b91c-0af631a8f38b") + ) + (segment + (start 43.92 37) + (end 44 36.92) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "b71c96c6-551e-467b-85b1-06d9f8a920cd") + ) + (segment + (start 51.72 37.4) + (end 51.42 37.1) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "d244056f-7a49-461f-b7b8-300439f6e8c4") + ) + (segment + (start 43.92 37.4) + (end 43.92 37) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "d73fe3a7-0648-448c-afbc-fb8c64ab709d") + ) + (segment + (start 71.05 48.3) + (end 69.75 47) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "e36f0e95-e1f6-4795-8872-a6d05e0a844b") + ) + (segment + (start 48.32 40.4) + (end 48.72 40) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "f350e764-4cfb-4432-98ea-4df31aae06a6") + ) + (segment + (start 52.64 35.675) + (end 52.64 37.32) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "fedd1051-ebd9-4d62-8198-b8fdd6a372eb") + ) + (segment + (start 66.175 58.64) + (end 66.045 58.51) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "ff544590-8dc1-4d11-81cd-3e31d9524413") + ) + (segment + (start 56.92 45.375) + (end 56.92 46.62) + (width 0.2) + (layer "F.Cu") + (net 37) + (uuid "ff602a52-d1e0-48fe-ac2a-e7f2cedb621e") + ) + (via + (at 66.25 44) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "033b4e97-2b53-4c20-88e4-19bdc0acde5a") + ) + (via + (at 71.25 41) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "04a0e199-c52a-4c90-af10-415131dd48b1") + ) + (via + (at 79.75 44.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "0ae4830d-a41a-4a1a-a26b-b539635e7514") + ) + (via + (at 76.75 35.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "195c89e6-e0ad-4a53-8891-aed39c552237") + ) + (via + (at 73.5 48.3) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "25418d43-8eee-4275-a25a-1611d3158514") + ) + (via + (at 83.75 31) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "288c0242-f5a6-419e-8bd2-92d6c28e46ee") + ) + (via + (at 61.4 53.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "3ec0c5d6-fa85-418e-bcbf-6f2be606632d") + ) + (via + (at 43 50) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "40b6ff64-0078-4acb-9565-8d22342f945b") + ) + (via + (at 32.75 46.25) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "4fa412ce-d8a4-447b-a705-f255f938084f") + ) + (via + (at 32.75 36.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "50ab77b3-0b9d-44ec-b9b8-6eea14ce0bb9") + ) + (via + (at 45.8 46.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "5cc92f1a-7511-479f-9bf4-7c1ac0390041") + ) + (via + (at 83.25 48.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "6bc771bf-0932-497c-9e54-19840f76edfa") + ) + (via + (at 64 53.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "7ebdbbac-039e-442d-ad7b-881094a3111a") + ) + (via + (at 65.75 33.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "856d8df0-3343-4d45-9da1-a994a69c3e90") + ) + (via + (at 34.8 58.79) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "ab769c51-d9fd-4bd2-8a7a-b0e2e9ffd1df") + ) + (via + (at 74.45 55.425) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "b67fa072-f568-44e8-9844-5c2adf3cdbde") + ) + (via + (at 82 35.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "b7d06b59-b0e9-4f93-a6b1-d9a014b27a89") + ) + (via + (at 61.3 45.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "c8f215c9-5b5a-4ca3-a30d-6abff3fd1ffd") + ) + (via + (at 46.7 57.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "d2056a53-bd9d-40fb-a76e-a4f874a84c19") + ) + (via + (at 68.75 55.25) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "dcc965af-b730-46c4-a544-e109f803aefe") + ) + (via + (at 75.6 51.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "e5316187-8c2e-4626-af96-7e1bec119fb8") + ) + (via + (at 40.8 58.79) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 37) + (uuid "eebce93a-51f8-44f8-8598-d57c954e107b") + ) + (segment + (start 50.8075 39) + (end 50.782501 39.024999) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "0adea582-d8a7-44d7-92a4-c15f0475e3ca") + ) + (segment + (start 48.045 36.44) + (end 48.07 36.415) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "3d63f091-ca05-458b-9bc7-15b1d4162f73") + ) + (segment + (start 48.045 36.681802) + (end 48.045 36.44) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "af103744-a4d4-43a7-ac4b-72952d8b5d5d") + ) + (segment + (start 48.07 36.05) + (end 48.57 36.05) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "d303c06a-6b42-47b2-80f3-44127e73e18f") + ) + (segment + (start 50.782501 39.024999) + (end 50.388197 39.024999) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "dbac36cd-eb61-4f00-ae6c-0119da251f81") + ) + (segment + (start 48.07 36.415) + (end 48.07 36.05) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "e85c0fe7-9bf3-480a-86be-329bf7c815e3") + ) + (segment + (start 50.388197 39.024999) + (end 48.045 36.681802) + (width 0.2) + (layer "F.Cu") + (net 38) + (uuid "fbfe3d45-553c-4bb4-9e1a-06a63b0baeff") + ) + (segment + (start 77.6 49.4) + (end 78.45 48.55) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "4d3e4853-305a-44a3-84de-5db76ac8c600") + ) + (segment + (start 57.1 42.2) + (end 57.7 42.8) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "7d825512-0635-419f-b2b4-99c684111dab") + ) + (segment + (start 57.1 41.138882) + (end 57.1 42.2) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "c0190ab6-39d0-4c87-a49f-ed7def9e60e4") + ) + (segment + (start 57.7 42.8) + (end 58.1 42.8) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "d1b0e217-3de4-4e59-a3af-b306af4a7a80") + ) + (segment + (start 55.0325 40) + (end 55.961118 40) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "e608305b-bdbf-4501-ae62-a6284eba0e0b") + ) + (segment + (start 78.45 48.55) + (end 78.45 46.6) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "f70c81bb-2964-4f96-8cd8-f08899121768") + ) + (segment + (start 55.961118 40) + (end 57.1 41.138882) + (width 0.2) + (layer "F.Cu") + (net 39) + (uuid "fde5e95b-8ba8-47f4-9b10-b90025f79bb3") + ) + (via + (at 58.1 42.8) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 39) + (uuid "11bfd095-6429-4496-887a-47cbe7fe8fbb") + ) + (via + (at 77.6 49.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 39) + (uuid "c1cef7c7-b916-481d-96fa-f7301293ecc6") + ) + (segment + (start 77.1 49.9) + (end 69.214214 49.9) + (width 0.2) + (layer "B.Cu") + (net 39) + (uuid "15231265-8440-486c-aa6b-04d460f10f77") + ) + (segment + (start 62.114214 42.8) + (end 58.1 42.8) + (width 0.2) + (layer "B.Cu") + (net 39) + (uuid "1fea53c1-550f-462c-8442-eb7023a2613e") + ) + (segment + (start 77.6 49.4) + (end 77.1 49.9) + (width 0.2) + (layer "B.Cu") + (net 39) + (uuid "4d4a34fd-2d0a-4a46-91f4-7fcffd569a0d") + ) + (segment + (start 69.214214 49.9) + (end 62.114214 42.8) + (width 0.2) + (layer "B.Cu") + (net 39) + (uuid "7ad95e94-d14e-4c71-a82c-e066cc00b1bc") + ) + (segment + (start 47.57 36.415) + (end 47.57 36.05) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "046e7c68-ebec-418b-9a49-d32dc9cfafbe") + ) + (segment + (start 50.8075 39.5) + (end 50.782501 39.475001) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "1d886e73-4701-4149-9103-33ece7f0836a") + ) + (segment + (start 50.782501 39.475001) + (end 49.919569 39.475001) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "33ce29d6-8a44-4aa9-8c2b-b7abe1d0588f") + ) + (segment + (start 47.635 35.25) + (end 48.97 35.25) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "3fa214a9-6772-43c5-868b-814ce0f2db8d") + ) + (segment + (start 47.595 36.868202) + (end 47.595 36.44) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "5ce8f2da-573f-453e-b6a2-f18c2963a7b7") + ) + (segment + (start 49.695 39.250432) + (end 49.695 38.968202) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "5f9550e7-b2b9-4af0-bb2c-ff66813831b5") + ) + (segment + (start 49.919569 39.475001) + (end 49.695 39.250432) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "993bf968-e96a-4b2c-9e8a-04c4c0e6e6bc") + ) + (segment + (start 47.595 36.44) + (end 47.57 36.415) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "c65655cc-4729-4c28-ad53-33d2de06e882") + ) + (segment + (start 47.57 35.315) + (end 47.635 35.25) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "d122be7c-05c7-4140-a8d5-12dee9b19444") + ) + (segment + (start 48.97 35.25) + (end 49.07 35.35) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "d1948ec7-782f-4041-b83a-367120b09e80") + ) + (segment + (start 49.695 38.968202) + (end 47.595 36.868202) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "e96083fd-59d1-47a6-b5da-a89674eaf339") + ) + (segment + (start 47.57 36.05) + (end 47.57 35.315) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "eb86bfea-caae-45d4-879d-8a78f84a2fd2") + ) + (segment + (start 49.07 35.35) + (end 49.07 36.05) + (width 0.2) + (layer "F.Cu") + (net 40) + (uuid "fbb9d14c-18bf-44e0-bef7-33ea0fa27de2") + ) + (segment + (start 65.2875 48.6) + (end 65.4 48.6) + (width 0.2) + (layer "F.Cu") + (net 41) + (uuid "91c59688-32f8-4699-ad89-3d4e72f8d6bf") + ) + (segment + (start 64.2875 47.6) + (end 65.2875 48.6) + (width 0.2) + (layer "F.Cu") + (net 41) + (uuid "d50ed7ad-ece7-47d9-ba25-263006220a55") + ) + (via + (at 65.4 48.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 41) + (uuid "de2338f1-f58c-4493-a11d-e08d0bb351d7") + ) + (segment + (start 71.2 54.4) + (end 79.37 54.4) + (width 0.2) + (layer "B.Cu") + (net 41) + (uuid "5fdd8320-06c7-4f84-82a8-510b4cfae0b5") + ) + (segment + (start 65.4 48.6) + (end 71.2 54.4) + (width 0.2) + (layer "B.Cu") + (net 41) + (uuid "d413b86b-55f1-44cd-9458-3b886f674018") + ) + (segment + (start 79.37 54.4) + (end 83 58.03) + (width 0.2) + (layer "B.Cu") + (net 41) + (uuid "f4720ca6-1216-454a-8fa5-dd9ff3beb9ab") + ) + (segment + (start 73.075 52.45) + (end 73.075 51.162352) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "345d6ade-edc5-4ac7-8148-69c1c011dcb7") + ) + (segment + (start 73.85 53.225) + (end 73.075 52.45) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "8c11d8c0-16df-4ee4-a803-5dff03b99f71") + ) + (segment + (start 71 37.9) + (end 69.75 37.9) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "aeb6d30c-45f1-4f3c-b0cd-c7f1f51732a5") + ) + (segment + (start 73.2 40.1) + (end 71 37.9) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "b6afb236-6ebc-40f1-8eda-b1933770ec33") + ) + (segment + (start 73.962352 50.275) + (end 78.125 50.275) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "bcbb7bb8-765a-4f88-a214-bed1c318d424") + ) + (segment + (start 73.075 51.162352) + (end 73.962352 50.275) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "de4b96cb-1dfe-475e-8210-01ebcd0860bb") + ) + (segment + (start 78.125 50.275) + (end 79.7 48.7) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "df9c6510-f9d9-449f-9a6c-6fb42e27f150") + ) + (segment + (start 75.625 53.3) + (end 73.925 53.3) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "e163e020-700d-482f-bfcc-9222627c287c") + ) + (segment + (start 73.925 53.3) + (end 73.85 53.225) + (width 0.2) + (layer "F.Cu") + (net 44) + (uuid "e7282e4f-9e7d-4ec0-a485-9caa646d59c6") + ) + (via + (at 79.7 48.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 44) + (uuid "3c04fd0e-bfc6-4c0b-b3f7-fa4600eb4236") + ) + (via + (at 73.158578 40.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 44) + (uuid "8984dccd-9239-4da7-874e-5058a4117fb9") + ) + (segment + (start 73.2 40.1) + (end 73.2 40.2) + (width 0.2) + (layer "B.Cu") + (net 44) + (uuid "4aa8f617-6391-4648-9b8b-e6a53aa37aa0") + ) + (segment + (start 73.2 40.2) + (end 79.7 46.7) + (width 0.2) + (layer "B.Cu") + (net 44) + (uuid "74348c02-439f-45f4-a5a1-690cb10eb2c7") + ) + (segment + (start 79.7 46.7) + (end 79.7 48.7) + (width 0.2) + (layer "B.Cu") + (net 44) + (uuid "93b54b75-cd75-43fe-95e7-e9c200cfeb71") + ) + (segment + (start 77.8 55.8) + (end 79.25 54.35) + (width 0.2) + (layer "F.Cu") + (net 45) + (uuid "16618899-280e-46c7-a32d-7212700c92a8") + ) + (segment + (start 77.5 54.25) + (end 79.2 54.25) + (width 0.2) + (layer "F.Cu") + (net 45) + (uuid "830cabbd-618e-4881-a31e-1a5eaf530303") + ) + (segment + (start 79.2 54.25) + (end 79.25 54.2) + (width 0.2) + (layer "F.Cu") + (net 45) + (uuid "84d8b3bf-da79-4f36-a3be-2c4c8f448feb") + ) + (segment + (start 79.25 54.35) + (end 79.25 54.2) + (width 0.2) + (layer "F.Cu") + (net 45) + (uuid "d22373d0-f90f-4453-80bd-15432157975b") + ) + (segment + (start 82.2 55.6) + (end 80.8 54.2) + (width 0.2) + (layer "F.Cu") + (net 46) + (uuid "25c48daa-60b8-4126-b4fe-48c69e046a0e") + ) + (segment + (start 82.35 52.65) + (end 80.8 54.2) + (width 0.2) + (layer "F.Cu") + (net 46) + (uuid "4f3b9f26-d72d-4980-bdb9-d549cbd57185") + ) + (segment + (start 83.45 52.65) + (end 82.35 52.65) + (width 0.2) + (layer "F.Cu") + (net 46) + (uuid "882ceac9-a8e6-4720-995d-880816a440ea") + ) + (segment + (start 82.2 55.8) + (end 82.2 55.6) + (width 0.2) + (layer "F.Cu") + (net 46) + (uuid "ae0d525c-55ba-4ad1-97ac-1148b194b7ad") + ) + (segment + (start 67.32 37.05) + (end 69.75 37.05) + (width 0.2) + (layer "F.Cu") + (net 47) + (uuid "5ddb7340-8604-4ece-a5f4-2d24ed2ddfda") + ) + (segment + (start 66.1 38.27) + (end 67.32 37.05) + (width 0.2) + (layer "F.Cu") + (net 47) + (uuid "b83a6b0c-60d3-4fcd-91e0-c678ec9b32fa") + ) + (segment + (start 37.835 58.175) + (end 38.45 58.79) + (width 0.2) + (layer "F.Cu") + (net 49) + (uuid "1034a626-0dad-4d0c-bc04-c4215d52ceb7") + ) + (segment + (start 37.835 56.85) + (end 37.835 58.175) + (width 0.2) + (layer "F.Cu") + (net 49) + (uuid "5ac30371-b99a-4084-af24-9862d38c67e1") + ) + (segment + (start 51.7 59) + (end 51.675 59.025) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "04289ef9-373a-440f-9139-3d1749acb6ef") + ) + (segment + (start 49.75 52.57) + (end 49.82 52.5) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "0b3c4382-598c-473e-90ab-d28423be35b1") + ) + (segment + (start 51.725 59.025) + (end 51.7 59) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "0bbb1aa9-5936-4a17-b5b3-87e73d45d786") + ) + (segment + (start 52.9 51.725) + (end 53.8 50.825) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "20e2a0fe-dc3f-4319-9b51-159190acc2e8") + ) + (segment + (start 44.705 58.025) + (end 44.705 56.475) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "34c875e6-341d-4247-8779-718fb2202de3") + ) + (segment + (start 44.705 58.025) + (end 45.73 59.05) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "38c8e5f6-79f0-48be-99ab-e81409c272fa") + ) + (segment + (start 44.705 56.475) + (end 44.8 56.38) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "3f6c5335-87da-43c6-bab7-8f2e3fe47a3f") + ) + (segment + (start 49.95 50.475) + (end 50.2 50.225) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "49bc6f3d-75e1-4517-948c-8b16c7661bdc") + ) + (segment + (start 55.125 59.025) + (end 51.725 59.025) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "49f6551a-032a-4145-a80e-347e38fe7ff5") + ) + (segment + (start 50.8 50.825) + (end 53.8 50.825) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "57a6940f-b003-460b-91f2-2027a000dcb0") + ) + (segment + (start 46.05 50.475) + (end 46 50.525) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "6db846db-14f3-4113-b60b-e0c5842f937d") + ) + (segment + (start 52.9 52.425) + (end 52.225 53.1) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "84490425-f691-4b14-84f5-caf92ac0fb75") + ) + (segment + (start 45.755 59.025) + (end 45.73 59.05) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "86c8f4a9-12f0-444f-a6a2-e8943fb810be") + ) + (segment + (start 51.27 52.57) + (end 51.8 53.1) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "9044c173-d5fe-47ed-9f4d-ad619ca67354") + ) + (segment + (start 52.9 52.425) + (end 52.9 51.725) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "99c3a9e2-adb1-42b8-b78b-e0e4d5ac3aaa") + ) + (segment + (start 48.45 50.225) + (end 48.2 50.475) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "9cd8f612-b632-4a3c-8f4a-95c6efad07b0") + ) + (segment + (start 52.825 52.5) + (end 52.9 52.425) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "b20e04f3-321e-45d1-87a0-759ed523f43f") + ) + (segment + (start 48.2 50.475) + (end 49.95 50.475) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "bb9a0c9d-f6e2-43eb-b402-19f65fd3ea37") + ) + (segment + (start 50.2 50.225) + (end 50.8 50.825) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "c00cbe5e-e67c-4732-9e18-93607c725d4f") + ) + (segment + (start 49.75 52.57) + (end 51.27 52.57) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "c7e482bb-d4bc-4ebf-ad77-f1fae28321a3") + ) + (segment + (start 55.9 58.25) + (end 55.125 59.025) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "f49952e6-f462-48f6-abbd-b47d2cf9cb15") + ) + (segment + (start 51.675 59.025) + (end 45.755 59.025) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "f568270b-8984-4996-8757-ec5c94f09616") + ) + (segment + (start 52.225 53.1) + (end 51.8 53.1) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "f6568440-3785-4e01-9d29-75f3eb0eee05") + ) + (segment + (start 48.2 50.475) + (end 46.05 50.475) + (width 0.2) + (layer "F.Cu") + (net 50) + (uuid "f6f75e3e-e78a-4317-a7f1-b594d548744c") + ) + (via + (at 51.8 53.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 50) + (uuid "483c0206-b0a7-48bc-b900-23288b1a9543") + ) + (via + (at 51.8 59) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 50) + (uuid "f5522c0f-85a8-4a2b-acf3-70c863b709cd") + ) + (segment + (start 51.8 53.1) + (end 51.8 59) + (width 0.2) + (layer "B.Cu") + (net 50) + (uuid "0ef858c1-154a-47f6-8b00-37ffd86ec5c9") + ) + (segment + (start 69.4 41.3) + (end 69.05 41.65) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "10082656-274a-4c8a-beb1-78bda6305810") + ) + (segment + (start 69.05 47.3) + (end 71.275 49.525) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "123f37f6-f863-4488-8199-121061e60320") + ) + (segment + (start 71.275 52.012648) + (end 70.987648 52.3) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "1bd1caa7-2c37-49b3-a632-8502904c2c79") + ) + (segment + (start 70.987648 52.3) + (end 68.606176 52.3) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "b41f01a4-394e-4dd3-8509-86579647be7a") + ) + (segment + (start 69.75 41.3) + (end 69.4 41.3) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "d16f275b-611c-4079-b3ab-a1d4ce02f8a5") + ) + (segment + (start 71.275 49.525) + (end 71.275 52.012648) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "d6dc6e76-a02c-4119-a079-e83a92ab2bdd") + ) + (segment + (start 66.745 54.161176) + (end 66.745 56.8) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "e0a7726f-9e9f-4766-82f0-feeaf8789504") + ) + (segment + (start 69.05 41.65) + (end 69.05 47.3) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "e2c65fdc-61d8-45b8-a500-63a1702a73ae") + ) + (segment + (start 68.606176 52.3) + (end 66.745 54.161176) + (width 0.2) + (layer "F.Cu") + (net 54) + (uuid "f656ae97-8438-48db-a095-3c6e548d82ff") + ) + (segment + (start 36.885 56.85) + (end 36.885 56.070001) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "045fc460-1b90-4ac0-b38d-aa0a3e17f5d8") + ) + (segment + (start 37.205001 55.75) + (end 38.685 55.75) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "15ed3c37-bb0c-4497-aead-aeaaee89ef48") + ) + (segment + (start 37.185001 50.23) + (end 36.885 49.929999) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "67fcac59-311c-40d8-a63a-ac0b349c43aa") + ) + (segment + (start 38.885 50.23) + (end 37.185001 50.23) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "98205975-e313-4590-bda4-7cc924e255f9") + ) + (segment + (start 36.885 49.929999) + (end 36.885 49.15) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "a434eb01-2dd4-4ee9-a0fc-14235b73cf71") + ) + (segment + (start 39.41 50.755) + (end 38.885 50.23) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "a4d02c9f-3f77-4a57-aa5c-ff895b556aac") + ) + (segment + (start 38.685 55.75) + (end 39.41 55.025) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "c346172d-19d8-4c0d-95d0-f8e055af4f4b") + ) + (segment + (start 36.885 56.070001) + (end 37.205001 55.75) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "cb364183-58e4-41e3-b5a4-c5ac7b1d55f2") + ) + (segment + (start 39.41 55.025) + (end 39.41 50.755) + (width 0.2) + (layer "F.Cu") + (net 55) + (uuid "d604152f-14eb-4ed1-84d4-f4f4a25190ec") + ) + (segment + (start 38.81 49.125) + (end 38.785 49.15) + (width 0.2) + (layer "F.Cu") + (net 57) + (uuid "02194c9f-6341-425e-b5a1-21ecd342f56a") + ) + (segment + (start 40.485 49.125) + (end 38.81 49.125) + (width 0.2) + (layer "F.Cu") + (net 57) + (uuid "c1a723b8-9874-412a-b2cb-e8671a916f29") + ) + (segment + (start 59.1 47.7375) + (end 59.2375 47.6) + (width 0.2) + (layer "F.Cu") + (net 65) + (uuid "3f484635-7eb4-4cb4-bb7f-19924716d071") + ) + (segment + (start 57.45 48.7) + (end 57.875 48.7) + (width 0.2) + (layer "F.Cu") + (net 65) + (uuid "626ee372-ff22-4170-a096-f798d4fc9c4f") + ) + (segment + (start 57.875 48.7) + (end 59.1 49.925) + (width 0.2) + (layer "F.Cu") + (net 65) + (uuid "831b7286-6ee0-437a-be2a-2a17e3c0a0fe") + ) + (segment + (start 59.1 49.925) + (end 59.1 47.7375) + (width 0.2) + (layer "F.Cu") + (net 65) + (uuid "ff205da0-55d2-422e-8418-d6cefb5873f6") + ) + (segment + (start 66.2 50.825) + (end 66.1375 50.8875) + (width 0.2) + (layer "F.Cu") + (net 66) + (uuid "22a17a7c-a44b-41dd-8b8d-f1895de78b10") + ) + (segment + (start 63.6625 50.8875) + (end 62.7 49.925) + (width 0.2) + (layer "F.Cu") + (net 66) + (uuid "2b75141d-0298-4454-b1a3-e337e85f8a4b") + ) + (segment + (start 62.7 47.7375) + (end 62.8375 47.6) + (width 0.2) + (layer "F.Cu") + (net 66) + (uuid "539d3a1b-6cf7-4f59-a376-cda82a137409") + ) + (segment + (start 62.7 49.925) + (end 62.7 47.7375) + (width 0.2) + (layer "F.Cu") + (net 66) + (uuid "7724ea90-6ed4-4373-a806-a49c57fd0742") + ) + (segment + (start 66.1375 50.8875) + (end 63.6625 50.8875) + (width 0.2) + (layer "F.Cu") + (net 66) + (uuid "d2daf640-70b1-48b5-8742-16bbc4ed87fd") + ) + (segment + (start 55.75 48.675) + (end 55.75 49) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "177f5412-a142-4d63-8693-e0837467dd80") + ) + (segment + (start 63.25 55.895) + (end 62.7 55.345) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "2d6a759a-fcc8-46fc-addc-248f11e1a25b") + ) + (segment + (start 57.6 50.85) + (end 58.05 50.85) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "6b6c7540-4b14-4138-ab6f-c36e6fb09a09") + ) + (segment + (start 58.05 50.85) + (end 59.1 51.9) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "8a396eef-0732-4fb6-9130-1e99b06ab787") + ) + (segment + (start 62.7 55.345) + (end 62.7 52.2) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "90d0caac-9680-44b9-a02a-7a5afb3ee107") + ) + (segment + (start 59.275 51.2375) + (end 59.1 51.4125) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "a1049055-335d-4024-972d-8a3c92f086a7") + ) + (segment + (start 61.7375 51.2375) + (end 59.275 51.2375) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "a3e62dcc-7553-4245-9f38-1718a0739406") + ) + (segment + (start 62.7 52.2) + (end 61.7375 51.2375) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "cb87aafa-a209-4b1f-8191-43e59c05d973") + ) + (segment + (start 59.1 51.4125) + (end 59.1 52.2) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "e55f7fb6-1f4b-4cd7-bf90-64aba896c8c1") + ) + (segment + (start 59.1 51.9) + (end 59.1 52.2) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "f2429fd8-bd1e-4c23-a503-be4cda5443cc") + ) + (segment + (start 55.75 49) + (end 57.6 50.85) + (width 0.2) + (layer "F.Cu") + (net 67) + (uuid "ff02d28e-abc3-4fe1-afb7-237247692d85") + ) + (segment + (start 77.6 32.6) + (end 77.6 31) + (width 0.2) + (layer "F.Cu") + (net 69) + (uuid "92dc6507-1554-45bd-917a-8129c26bee31") + ) + (segment + (start 77.5 31) + (end 77.6 31.1) + (width 0.2) + (layer "F.Cu") + (net 69) + (uuid "efd21c03-2b03-45a5-90db-58d14a45592e") + ) + (via + (at 77.6 31) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 69) + (uuid "87ba36b0-1e35-42d7-9494-9e8aea9b34d5") + ) + (segment + (start 88 31.75) + (end 78.35 31.75) + (width 0.2) + (layer "B.Cu") + (net 69) + (uuid "42cc5a5d-39f7-499a-bcce-8139aeda6ed2") + ) + (segment + (start 78.35 31.75) + (end 77.6 31) + (width 0.2) + (layer "B.Cu") + (net 69) + (uuid "bd7a8b0c-90ec-4be1-adb6-e4718f378e56") + ) + (segment + (start 78.5 45.45) + (end 79.3 46.25) + (width 0.2) + (layer "F.Cu") + (net 70) + (uuid "43dee06b-3959-48c8-8b7b-6089127ddcd0") + ) + (segment + (start 78.5 44) + (end 78.5 45.45) + (width 0.2) + (layer "F.Cu") + (net 70) + (uuid "526cda0e-534e-4b2a-8ef6-e0faf057d6be") + ) + (segment + (start 79.3 46.25) + (end 79.3 46.6) + (width 0.2) + (layer "F.Cu") + (net 70) + (uuid "9f19112d-dc91-47ea-889b-663339c244d6") + ) + (segment + (start 81.75 40.75) + (end 78.5 44) + (width 0.2) + (layer "F.Cu") + (net 70) + (uuid "a1201c64-8b53-4eaf-98a9-a85e0efb88dd") + ) + (via + (at 81.75 40.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 70) + (uuid "0fb0ca22-a658-40b8-ba14-d4b4c5f9aef0") + ) + (segment + (start 81.75 40.75) + (end 88 34.5) + (width 0.2) + (layer "B.Cu") + (net 70) + (uuid "74943c73-2771-4a82-8506-971467b8b338") + ) + (segment + (start 81.85 44.5) + (end 81.85 46.6) + (width 0.2) + (layer "F.Cu") + (net 71) + (uuid "a6cba68c-20cf-48d2-b9d4-cf1074eed0a4") + ) + (via + (at 81.85 44.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 71) + (uuid "9ef81acd-be9c-4057-9974-ebe9373f5720") + ) + (segment + (start 82.5 43.85) + (end 82.5 40.565686) + (width 0.2) + (layer "B.Cu") + (net 71) + (uuid "6a9a4b3a-52bb-4307-8fc0-3c9455bf32ea") + ) + (segment + (start 85.815686 37.25) + (end 88 37.25) + (width 0.2) + (layer "B.Cu") + (net 71) + (uuid "98912dc9-b62d-42e1-994a-7e503b40d54c") + ) + (segment + (start 82.5 40.565686) + (end 85.815686 37.25) + (width 0.2) + (layer "B.Cu") + (net 71) + (uuid "ab715484-c7c3-437b-93b2-8c9a061efdf1") + ) + (segment + (start 81.85 44.5) + (end 82.5 43.85) + (width 0.2) + (layer "B.Cu") + (net 71) + (uuid "c57ed7ec-a0bb-42b7-aac3-e9d09bfa8bfa") + ) + (segment + (start 74.2 45.7) + (end 73.25 44.75) + (width 0.2) + (layer "F.Cu") + (net 72) + (uuid "07765ef3-1683-4a29-b4af-929887a8cca4") + ) + (segment + (start 74.2 46.6) + (end 74.2 45.7) + (width 0.2) + (layer "F.Cu") + (net 72) + (uuid "a28acb92-6139-458f-a8b4-1dc97a73eada") + ) + (via + (at 73.158578 44.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 72) + (uuid "09850e7f-91eb-4ae3-88bd-1c514504bd80") + ) + (segment + (start 68.908629 44.045686) + (end 64.915786 40.052843) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "619b956f-bb34-43d8-b09a-e5042838c22e") + ) + (segment + (start 72.908578 44.5) + (end 69.362943 44.5) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "6aff1be9-e347-44ac-bf56-0cfa478c3fc1") + ) + (segment + (start 73.158578 44.75) + (end 72.908578 44.5) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "ad063c1c-d339-48dd-973d-d97310e99595") + ) + (segment + (start 69.362943 44.5) + (end 69.128629 44.265685) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "ae29a733-6a13-4cb9-8013-4343325227c8") + ) + (segment + (start 64.915786 40.052843) + (end 62.802843 40.052843) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "c057d5bf-817e-4166-8968-a050796c8eef") + ) + (segment + (start 62.802843 40.052843) + (end 61.02 38.27) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "de7d5ee8-35ed-459a-8752-a32d75c7a923") + ) + (segment + (start 69.128629 44.265685) + (end 68.908629 44.045686) + (width 0.2) + (layer "B.Cu") + (net 72) + (uuid "fdcfc5ee-bd31-406b-adaf-91c832083e08") + ) + (segment + (start 74.5 43.5) + (end 75.9 44.9) + (width 0.2) + (layer "F.Cu") + (net 73) + (uuid "6c677c4c-d617-459f-b29b-065493d87f2d") + ) + (segment + (start 75.9 44.9) + (end 75.9 46.6) + (width 0.2) + (layer "F.Cu") + (net 73) + (uuid "9ec1f1ca-ee10-49b5-97a7-afbfb7afeded") + ) + (segment + (start 73.25 43.5) + (end 74.5 43.5) + (width 0.2) + (layer "F.Cu") + (net 73) + (uuid "ef9ab6f8-7503-492b-bd0f-35e5720a7331") + ) + (via + (at 73.158578 43.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 73) + (uuid "5da85ab4-00a6-41f1-8390-73219ed83068") + ) + (segment + (start 65.247158 39.252843) + (end 64.542843 39.252843) + (width 0.2) + (layer "B.Cu") + (net 73) + (uuid "18b73e17-14bf-402b-9e16-ed3f99bc98c4") + ) + (segment + (start 73.158578 43.5) + (end 69.494315 43.5) + (width 0.2) + (layer "B.Cu") + (net 73) + (uuid "aaaf4d17-2ba3-4703-9cd7-17b47835199b") + ) + (segment + (start 64.542843 39.252843) + (end 63.56 38.27) + (width 0.2) + (layer "B.Cu") + (net 73) + (uuid "f9a52a26-519f-4d4e-833a-dc61f77b6d9b") + ) + (segment + (start 69.494315 43.5) + (end 65.247158 39.252843) + (width 0.2) + (layer "B.Cu") + (net 73) + (uuid "ff58e97a-6acf-41b1-b58b-1992011e17d6") + ) + (segment + (start 75.05 46.6) + (end 75.05 45.3) + (width 0.2) + (layer "F.Cu") + (net 74) + (uuid "16e84692-0172-42c0-83d7-569e1097a52d") + ) + (segment + (start 75.05 45.3) + (end 74.5 44.75) + (width 0.2) + (layer "F.Cu") + (net 74) + (uuid "6ff76d7f-f02c-442f-9abc-858bcee3d07f") + ) + (via + (at 74.5 44.75) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 74) + (uuid "9bd795bb-b4e1-4c51-856e-ddcba11947d4") + ) + (segment + (start 62.76 38.27) + (end 62.76 38.601371) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "2cada861-1d55-4acc-b60f-2d99d80385d3") + ) + (segment + (start 65.081472 39.652843) + (end 69.528629 44.1) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "30048b59-4522-4ec1-909b-b2a9b0543aa3") + ) + (segment + (start 62.29 38.27) + (end 62.76 38.27) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "65eca55a-1495-48f2-8aee-72baed3119c1") + ) + (segment + (start 69.528629 44.1) + (end 73.85 44.1) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "8a1ade2b-2e64-4499-8a27-45237a3b6cf9") + ) + (segment + (start 62.76 38.601371) + (end 63.811472 39.652843) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "ae96fc88-c5aa-42b9-9b1f-0b0d21d148e2") + ) + (segment + (start 73.85 44.1) + (end 74.5 44.75) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "b8c10a70-ffd5-49c1-9298-367a045c51c9") + ) + (segment + (start 63.811472 39.652843) + (end 65.081472 39.652843) + (width 0.2) + (layer "B.Cu") + (net 74) + (uuid "d84edfa3-b3d9-4657-833b-6d91d47c8c86") + ) + (segment + (start 76.75 45) + (end 76.75 46.6) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "b35ccaf4-cc75-4a48-96de-8139d99feb14") + ) + (segment + (start 73.383334 42.366666) + (end 74.116666 42.366666) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "beae21ed-ae6b-4368-8574-f650379783b3") + ) + (segment + (start 74.116666 42.366666) + (end 76.75 45) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "e75e78f4-51bf-4f0c-92d5-360a4149feec") + ) + (segment + (start 73.25 42.5) + (end 73.383334 42.366666) + (width 0.2) + (layer "F.Cu") + (net 75) + (uuid "f013cde6-9e90-441b-b991-9879d094368a") + ) + (via + (at 73.158578 42.366666) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 75) + (uuid "01a34210-e8ee-44e1-bf28-c42f5b75bb52") + ) + (segment + (start 68.926666 42.366666) + (end 73.158578 42.366666) + (width 0.2) + (layer "B.Cu") + (net 75) + (uuid "56cce8b2-80c5-4561-a736-de6ef8a44453") + ) + (segment + (start 64.83 38.27) + (end 68.926666 42.366666) + (width 0.2) + (layer "B.Cu") + (net 75) + (uuid "6fcff559-6939-4fdd-b790-345ff4b04d74") + ) + (segment + (start 66.9 36.2) + (end 69.75 36.2) + (width 0.2) + (layer "F.Cu") + (net 76) + (uuid "77732067-2d42-409d-b2ec-49871e6d66c0") + ) + (segment + (start 66.1 37) + (end 66.9 36.2) + (width 0.2) + (layer "F.Cu") + (net 76) + (uuid "bf518c17-ec4d-46f8-a881-5801cf646f18") + ) + (segment + (start 64.83 37) + (end 66.48 35.35) + (width 0.2) + (layer "F.Cu") + (net 77) + (uuid "725ea929-b1fb-4773-b96c-2502737a9e5e") + ) + (segment + (start 66.48 35.35) + (end 69.75 35.35) + (width 0.2) + (layer "F.Cu") + (net 77) + (uuid "7bda64dd-57ab-4f56-a7ca-b89bae0dec5c") + ) + (segment + (start 79.85 52.325) + (end 80.95 52.325) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "0420589a-c52f-4423-b6e4-744f7b162227") + ) + (segment + (start 73.158578 41.158578) + (end 70.75 38.75) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "0a4d6250-1da0-4d06-a70f-d1d07227e4e8") + ) + (segment + (start 78.5 51.4) + (end 78.55 51.45) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "2f1ccbe5-e7aa-41ed-85b7-685b08434164") + ) + (segment + (start 79.425 52.325) + (end 78.5 51.4) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "aea2b5a0-a3dc-4183-8514-2388f407ba79") + ) + (segment + (start 70.75 38.75) + (end 69.75 38.75) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "bc07f944-438d-4d16-bab9-97634b729553") + ) + (segment + (start 73.158578 41.291422) + (end 73.158578 41.158578) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "f5ef642f-5efd-486c-9597-adb36d8b73d7") + ) + (segment + (start 79.85 52.325) + (end 79.425 52.325) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "fd49bcf3-2781-44c7-9c84-4afc86213ac0") + ) + (segment + (start 80.95 52.325) + (end 81.575 51.7) + (width 0.2) + (layer "F.Cu") + (net 78) + (uuid "fe5223b8-5189-48b0-8253-04c46c451907") + ) + (via + (at 78.5 51.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 78) + (uuid "60b9b825-92f7-4ab2-b0d2-2efd257afa3b") + ) + (via + (at 73.158578 41.233333) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 78) + (uuid "666e3a92-b0b1-451b-be76-47fbaf0b23a4") + ) + (segment + (start 73.725736 41.291422) + (end 78.5 46.065686) + (width 0.2) + (layer "B.Cu") + (net 78) + (uuid "24472e18-8c6c-4d73-b4cc-fc7492542c9e") + ) + (segment + (start 73.158578 41.291422) + (end 73.725736 41.291422) + (width 0.2) + (layer "B.Cu") + (net 78) + (uuid "c99a2978-8544-44a8-b3b6-7593f263cc54") + ) + (segment + (start 78.5 46.065686) + (end 78.5 51.4) + (width 0.2) + (layer "B.Cu") + (net 78) + (uuid "e19de60b-1412-463a-94d1-ca613e518b85") + ) + (segment + (start 74.2 32.6) + (end 74.2 35) + (width 0.2) + (layer "F.Cu") + (net 79) + (uuid "924d78ea-896e-4508-84bb-abb46c6a244f") + ) + (via + (at 74.2 35) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 79) + (uuid "363e2001-9b82-4a4e-ac1d-a1ea7ddae23f") + ) + (segment + (start 74.25 35) + (end 73.05 36.2) + (width 0.2) + (layer "B.Cu") + (net 79) + (uuid "659ca9ff-a74f-406e-b094-52569d466e2b") + ) + (segment + (start 73.05 36.2) + (end 64.36 36.2) + (width 0.2) + (layer "B.Cu") + (net 79) + (uuid "81f0b9b0-0d35-4950-8d36-6d9c411dc157") + ) + (segment + (start 64.36 36.2) + (end 63.56 37) + (width 0.2) + (layer "B.Cu") + (net 79) + (uuid "a8a4e884-94d7-46d1-99b1-1d1c40555a5e") + ) + (segment + (start 73.35 32.6) + (end 73.35 35) + (width 0.2) + (layer "F.Cu") + (net 80) + (uuid "9bd5cdae-5f9b-4fa1-ad86-4dd0acfe9256") + ) + (via + (at 73.35 35) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 80) + (uuid "dec425fa-5051-41eb-a73f-9eb9b3c84da8") + ) + (segment + (start 72.7 35.8) + (end 63.49 35.8) + (width 0.2) + (layer "B.Cu") + (net 80) + (uuid "1725cfb2-9c5b-47f4-9e07-b377a1de1254") + ) + (segment + (start 63.49 35.8) + (end 62.29 37) + (width 0.2) + (layer "B.Cu") + (net 80) + (uuid "b624c9a2-d9ff-4cea-ae5d-8e5783f7747d") + ) + (segment + (start 73.5 35) + (end 72.7 35.8) + (width 0.2) + (layer "B.Cu") + (net 80) + (uuid "e87379b8-6763-4b1c-b5c8-d5efb52c3918") + ) + (segment + (start 72.5 32.6) + (end 72.5 35) + (width 0.2) + (layer "F.Cu") + (net 81) + (uuid "c73d1b87-09fd-482a-acc5-e88bf60c65f2") + ) + (via + (at 72.5 35) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 81) + (uuid "ab4d5fb8-4097-46a0-9311-984b78a6fe7c") + ) + (segment + (start 62.62 35.4) + (end 61.02 37) + (width 0.2) + (layer "B.Cu") + (net 81) + (uuid "909353ae-f097-47a3-a12d-def513e19463") + ) + (segment + (start 72.5 35) + (end 72.1 35.4) + (width 0.2) + (layer "B.Cu") + (net 81) + (uuid "9b9d4e15-0404-41c7-b33c-8a5e7d90f988") + ) + (segment + (start 72.1 35.4) + (end 62.62 35.4) + (width 0.2) + (layer "B.Cu") + (net 81) + (uuid "dd4a70f5-a9a1-4385-8337-d98f8d1c3576") + ) + (zone + (net 37) + (net_name "GND") + (layers "F&B.Cu") + (uuid "407d29e1-1486-4177-ae99-d3a6914ba368") + (hatch edge 0.5) + (connect_pads + (clearance 0.5) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 29 29) (xy 29 61) (xy 84.5 61) (xy 84.5 29) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 33.941942 56.760185) (xy 33.962584 56.776819) (xy 34.063181 56.877416) (xy 34.096666 56.938739) + (xy 34.0995 56.965097) (xy 34.0995 57.296616) (xy 34.101188 57.315188) (xy 34.105913 57.367192) + (xy 34.105913 57.367194) (xy 34.105914 57.367196) (xy 34.156522 57.529606) (xy 34.212862 57.622804) + (xy 34.24453 57.675188) (xy 34.364811 57.795469) (xy 34.364813 57.79547) (xy 34.364815 57.795472) + (xy 34.510394 57.883478) (xy 34.672804 57.934086) (xy 34.743384 57.9405) (xy 34.743387 57.9405) + (xy 35.406613 57.9405) (xy 35.406616 57.9405) (xy 35.477196 57.934086) (xy 35.639606 57.883478) + (xy 35.785185 57.795472) (xy 35.903232 57.677424) (xy 35.964553 57.643941) (xy 36.034245 57.648925) + (xy 36.090179 57.690796) (xy 36.109296 57.728213) (xy 36.113467 57.741599) (xy 36.113469 57.741603) + (xy 36.155509 57.811146) (xy 36.173345 57.878701) (xy 36.151827 57.945174) (xy 36.137074 57.962976) + (xy 36.019926 58.080124) (xy 35.93198 58.225604) (xy 35.881409 58.387893) (xy 35.875 58.458427) + (xy 35.875 58.54) (xy 36.901 58.54) (xy 36.968039 58.559685) (xy 37.013794 58.612489) (xy 37.025 58.664) + (xy 37.025 58.916) (xy 37.005315 58.983039) (xy 36.952511 59.028794) (xy 36.901 59.04) (xy 35.875001 59.04) + (xy 35.875001 59.121582) (xy 35.881408 59.192102) (xy 35.881409 59.192108) (xy 35.927061 59.338609) + (xy 35.928213 59.40847) (xy 35.891412 59.467862) (xy 35.828343 59.49793) (xy 35.808676 59.4995) + (xy 33.783225 59.4995) (xy 33.716186 59.479815) (xy 33.670431 59.427011) (xy 33.660487 59.357853) + (xy 33.665519 59.336496) (xy 33.714855 59.187606) (xy 33.724999 59.088322) (xy 33.725 59.088309) + (xy 33.725 59.04) (xy 32.649 59.04) (xy 32.581961 59.020315) (xy 32.536206 58.967511) (xy 32.525 58.916) + (xy 32.525 58.54) (xy 33.025 58.54) (xy 33.724999 58.54) (xy 33.724999 58.491692) (xy 33.724998 58.491677) + (xy 33.714855 58.392392) (xy 33.661547 58.231518) (xy 33.661542 58.231507) (xy 33.572575 58.087271) + (xy 33.572572 58.087267) (xy 33.452732 57.967427) (xy 33.452728 57.967424) (xy 33.308492 57.878457) + (xy 33.308481 57.878452) (xy 33.147606 57.825144) (xy 33.048322 57.815) (xy 33.025 57.815) (xy 33.025 58.54) + (xy 32.525 58.54) (xy 32.525 57.814999) (xy 32.501693 57.815) (xy 32.501674 57.815001) (xy 32.402392 57.825144) + (xy 32.241518 57.878452) (xy 32.241507 57.878457) (xy 32.097271 57.967424) (xy 32.097265 57.967428) + (xy 32.088031 57.976663) (xy 32.026707 58.010146) (xy 31.957015 58.005159) (xy 31.912672 57.97666) + (xy 31.903044 57.967032) (xy 31.897377 57.962551) (xy 31.898507 57.961121) (xy 31.85807 57.916162) + (xy 31.84685 57.847199) (xy 31.850119 57.830477) (xy 31.8505 57.829057) (xy 31.8505 57.614499) (xy 31.870185 57.54746) + (xy 31.922989 57.501705) (xy 31.9745 57.490499) (xy 33.172871 57.490499) (xy 33.172872 57.490499) + (xy 33.232483 57.484091) (xy 33.367331 57.433796) (xy 33.482546 57.347546) (xy 33.568796 57.232331) + (xy 33.619091 57.097483) (xy 33.6255 57.037873) (xy 33.6255 56.8645) (xy 33.645185 56.797461) (xy 33.697989 56.751706) + (xy 33.7495 56.7405) (xy 33.874903 56.7405) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 31.672539 30.520185) (xy 31.718294 30.572989) (xy 31.7295 30.6245) (xy 31.7295 33.16287) (xy 31.729501 33.162876) + (xy 31.735908 33.222483) (xy 31.786202 33.357328) (xy 31.786206 33.357335) (xy 31.872452 33.472544) + (xy 31.872455 33.472547) (xy 31.987664 33.558793) (xy 31.987671 33.558797) (xy 32.122517 33.609091) + (xy 32.122516 33.609091) (xy 32.129444 33.609835) (xy 32.182127 33.6155) (xy 33.397872 33.615499) + (xy 33.457483 33.609091) (xy 33.592331 33.558796) (xy 33.604811 33.549452) (xy 33.670269 33.525035) + (xy 33.738543 33.539884) (xy 33.766802 33.561038) (xy 34.514127 34.308363) (xy 34.651058 34.38742) + (xy 34.803786 34.428344) (xy 34.803789 34.428344) (xy 34.969497 34.428344) (xy 34.969513 34.428343) + (xy 38.427746 34.428343) (xy 38.494785 34.448028) (xy 38.515427 34.464662) (xy 38.563181 34.512416) + (xy 38.596666 34.573739) (xy 38.5995 34.600097) (xy 38.5995 36.210386) (xy 38.599499 36.210404) + (xy 38.599499 36.37611) (xy 38.599498 36.37611) (xy 38.640424 36.528845) (xy 38.640425 36.528846) + (xy 38.663444 36.568715) (xy 38.663445 36.568717) (xy 38.719475 36.665765) (xy 38.719481 36.665773) + (xy 38.838349 36.784641) (xy 38.838355 36.784646) (xy 40.661673 38.607964) (xy 40.695158 38.669287) + (xy 40.690174 38.738979) (xy 40.661674 38.783325) (xy 40.66 38.784999) (xy 40.66 40.255) (xy 41.453153 40.255) + (xy 41.520192 40.274685) (xy 41.565947 40.327489) (xy 41.570194 40.338045) (xy 41.574209 40.349519) + (xy 41.574211 40.349522) (xy 41.670184 40.502262) (xy 41.797738 40.629816) (xy 41.950478 40.725789) + (xy 42.065929 40.766187) (xy 42.120745 40.785368) (xy 42.12075 40.785369) (xy 42.299996 40.805565) + (xy 42.3 40.805565) (xy 42.300001 40.805565) (xy 42.308324 40.804627) (xy 42.361617 40.798622) (xy 42.430437 40.810676) + (xy 42.481817 40.858024) (xy 42.4995 40.921842) (xy 42.4995 45.88833) (xy 42.499499 45.888348) (xy 42.499499 46.054054) + (xy 42.499498 46.054054) (xy 42.502292 46.06448) (xy 42.540423 46.206785) (xy 42.540424 46.206787) + (xy 42.540423 46.206787) (xy 42.554568 46.231285) (xy 42.554569 46.231287) (xy 42.619475 46.343709) + (xy 42.619481 46.343717) (xy 42.738349 46.462585) (xy 42.738355 46.46259) (xy 44.988181 48.712416) + (xy 45.021666 48.773739) (xy 45.0245 48.800097) (xy 45.0245 49.131613) (xy 45.030913 49.202192) + (xy 45.030913 49.202194) (xy 45.030914 49.202196) (xy 45.081522 49.364606) (xy 45.162003 49.497738) + (xy 45.16953 49.510188) (xy 45.271661 49.612319) (xy 45.305146 49.673642) (xy 45.300162 49.743334) + (xy 45.271661 49.787681) (xy 45.169531 49.88981) (xy 45.16953 49.889811) (xy 45.081522 50.035393) + (xy 45.030913 50.197807) (xy 45.025782 50.254275) (xy 45.0245 50.268384) (xy 45.0245 50.781616) + (xy 45.026423 50.802778) (xy 45.030913 50.852192) (xy 45.030913 50.852194) (xy 45.030914 50.852196) + (xy 45.081522 51.014606) (xy 45.16521 51.153043) (xy 45.16953 51.160188) (xy 45.289811 51.280469) + (xy 45.289813 51.28047) (xy 45.289815 51.280472) (xy 45.435394 51.368478) (xy 45.597804 51.419086) + (xy 45.668384 51.4255) (xy 45.668387 51.4255) (xy 46.331613 51.4255) (xy 46.331616 51.4255) (xy 46.402196 51.419086) + (xy 46.564606 51.368478) (xy 46.710185 51.280472) (xy 46.830472 51.160185) (xy 46.845486 51.135349) + (xy 46.897014 51.088162) (xy 46.951602 51.0755) (xy 47.259996 51.0755) (xy 47.327035 51.095185) + (xy 47.365535 51.134404) (xy 47.377031 51.153043) (xy 47.496955 51.272967) (xy 47.496959 51.27297) + (xy 47.641294 51.361998) (xy 47.641297 51.361999) (xy 47.641303 51.362003) (xy 47.802292 51.415349) + (xy 47.901655 51.4255) (xy 48.498344 51.425499) (xy 48.498352 51.425498) (xy 48.498355 51.425498) + (xy 48.561124 51.419086) (xy 48.597708 51.415349) (xy 48.758697 51.362003) (xy 48.903044 51.272968) + (xy 49.022968 51.153044) (xy 49.034465 51.134403) (xy 49.086412 51.087679) (xy 49.140004 51.0755) + (xy 49.863331 51.0755) (xy 49.863347 51.075501) (xy 49.870943 51.075501) (xy 50.029056 51.075501) + (xy 50.029057 51.075501) (xy 50.09572 51.057638) (xy 50.16557 51.059299) (xy 50.215496 51.089731) + (xy 50.315139 51.189374) (xy 50.315149 51.189385) (xy 50.319479 51.193715) (xy 50.31948 51.193716) + (xy 50.431284 51.30552) (xy 50.496867 51.343384) (xy 50.568215 51.384577) (xy 50.720943 51.4255) + (xy 50.879057 51.4255) (xy 52.196967 51.4255) (xy 52.264006 51.445185) (xy 52.309761 51.497989) + (xy 52.319705 51.567147) (xy 52.316743 51.581586) (xy 52.299499 51.645943) (xy 52.299499 51.645945) + (xy 52.299499 51.764944) (xy 52.279814 51.831983) (xy 52.240601 51.870479) (xy 52.232113 51.875714) + (xy 52.232112 51.875715) (xy 52.113216 51.994612) (xy 52.024955 52.137704) (xy 52.024951 52.137713) + (xy 52.004059 52.200761) (xy 51.964286 52.258206) (xy 51.899769 52.285028) (xy 51.830994 52.272713) + (xy 51.798672 52.249437) (xy 51.75759 52.208355) (xy 51.757588 52.208352) (xy 51.638717 52.089481) + (xy 51.638716 52.08948) (xy 51.535374 52.029816) (xy 51.535373 52.029815) (xy 51.501783 52.010422) + (xy 51.442767 51.994609) (xy 51.349057 51.969499) (xy 51.190943 51.969499) (xy 51.183347 51.969499) + (xy 51.183331 51.9695) (xy 51.095808 51.9695) (xy 51.028769 51.949815) (xy 51.008126 51.93318) (xy 50.97687 51.901923) + (xy 50.976862 51.901917) (xy 50.858609 51.831983) (xy 50.835398 51.818256) (xy 50.835397 51.818255) + (xy 50.835396 51.818255) (xy 50.835393 51.818254) (xy 50.677573 51.772402) (xy 50.677567 51.772401) + (xy 50.640701 51.7695) (xy 50.640694 51.7695) (xy 48.859306 51.7695) (xy 48.859298 51.7695) (xy 48.822432 51.772401) + (xy 48.822426 51.772402) (xy 48.664606 51.818254) (xy 48.664603 51.818255) (xy 48.523137 51.901917) + (xy 48.523129 51.901923) (xy 48.406923 52.018129) (xy 48.406917 52.018137) (xy 48.323255 52.159603) + (xy 48.323254 52.159606) (xy 48.277402 52.317426) (xy 48.277401 52.317432) (xy 48.2745 52.354298) + (xy 48.2745 52.785701) (xy 48.277401 52.822567) (xy 48.277402 52.822573) (xy 48.323253 52.98039) + (xy 48.323255 52.980396) (xy 48.323256 52.980398) (xy 48.330936 52.993384) (xy 48.406917 53.121862) + (xy 48.411702 53.128031) (xy 48.409256 53.129927) (xy 48.435857 53.178642) (xy 48.430873 53.248334) + (xy 48.410069 53.280703) (xy 48.411702 53.281969) (xy 48.406917 53.288137) (xy 48.323255 53.429603) + (xy 48.323254 53.429606) (xy 48.277402 53.587426) (xy 48.277401 53.587432) (xy 48.2745 53.624298) + (xy 48.2745 54.055701) (xy 48.277401 54.092567) (xy 48.277402 54.092573) (xy 48.323254 54.250393) + (xy 48.323255 54.250396) (xy 48.406917 54.391862) (xy 48.411702 54.398031) (xy 48.409256 54.399927) + (xy 48.435857 54.448642) (xy 48.430873 54.518334) (xy 48.410069 54.550703) (xy 48.411702 54.551969) + (xy 48.406917 54.558137) (xy 48.323255 54.699603) (xy 48.323254 54.699606) (xy 48.277402 54.857426) + (xy 48.277401 54.857432) (xy 48.2745 54.894298) (xy 48.2745 55.325701) (xy 48.277401 55.362567) + (xy 48.277402 55.362573) (xy 48.323254 55.520393) (xy 48.323255 55.520396) (xy 48.323256 55.520398) + (xy 48.327926 55.528294) (xy 48.376226 55.609966) (xy 48.393409 55.67769) (xy 48.371249 55.743953) + (xy 48.316783 55.787716) (xy 48.283378 55.796307) (xy 48.120749 55.81463) (xy 48.120745 55.814631) + (xy 47.950476 55.874211) (xy 47.797737 55.970184) (xy 47.670184 56.097737) (xy 47.574211 56.250476) + (xy 47.514631 56.420745) (xy 47.51463 56.42075) (xy 47.494435 56.599996) (xy 47.494435 56.600003) + (xy 47.51463 56.779249) (xy 47.514631 56.779254) (xy 47.574211 56.949523) (xy 47.661167 57.087912) + (xy 47.670184 57.102262) (xy 47.797738 57.229816) (xy 47.86579 57.272576) (xy 47.946349 57.323195) + (xy 47.950478 57.325789) (xy 48.103044 57.379174) (xy 48.120745 57.385368) (xy 48.12075 57.385369) + (xy 48.299996 57.405565) (xy 48.3 57.405565) (xy 48.300004 57.405565) (xy 48.479249 57.385369) (xy 48.479252 57.385368) + (xy 48.479255 57.385368) (xy 48.649522 57.325789) (xy 48.802262 57.229816) (xy 48.802267 57.22981) + (xy 48.805097 57.227555) (xy 48.807275 57.226665) (xy 48.808158 57.226111) (xy 48.808255 57.226265) + (xy 48.869783 57.201145) (xy 48.882412 57.2005) (xy 49.443331 57.2005) (xy 49.443347 57.200501) + (xy 49.450943 57.200501) (xy 49.609055 57.200501) (xy 49.609057 57.200501) (xy 49.661824 57.186362) + (xy 49.667934 57.184725) (xy 49.700027 57.1805) (xy 50.640686 57.1805) (xy 50.640694 57.1805) (xy 50.677569 57.177598) + (xy 50.677571 57.177597) (xy 50.677573 57.177597) (xy 50.738898 57.15978) (xy 50.835398 57.131744) + (xy 50.976865 57.048081) (xy 51.093081 56.931865) (xy 51.176744 56.790398) (xy 51.216684 56.652925) + (xy 51.222597 56.632573) (xy 51.222598 56.632567) (xy 51.222794 56.630075) (xy 51.2255 56.595694) + (xy 51.2255 56.164306) (xy 51.222598 56.127431) (xy 51.213971 56.097738) (xy 51.176745 55.969606) + (xy 51.176744 55.969603) (xy 51.176744 55.969602) (xy 51.093081 55.828135) (xy 51.093078 55.828132) + (xy 51.088298 55.821969) (xy 51.09075 55.820066) (xy 51.064155 55.771421) (xy 51.069104 55.701726) + (xy 51.08994 55.669304) (xy 51.088298 55.668031) (xy 51.093075 55.66187) (xy 51.093081 55.661865) + (xy 51.176744 55.520398) (xy 51.222598 55.362569) (xy 51.2255 55.325694) (xy 51.2255 54.9645) (xy 51.245185 54.897461) + (xy 51.297989 54.851706) (xy 51.3495 54.8405) (xy 53.207403 54.8405) (xy 53.274442 54.860185) (xy 53.295084 54.876819) + (xy 53.330681 54.912416) (xy 53.364166 54.973739) (xy 53.367 55.000097) (xy 53.367 55.331613) (xy 53.373413 55.402192) + (xy 53.373413 55.402194) (xy 53.373414 55.402196) (xy 53.424022 55.564606) (xy 53.506914 55.701726) + (xy 53.51203 55.710188) (xy 53.516661 55.714819) (xy 53.550146 55.776142) (xy 53.545162 55.845834) + (xy 53.516661 55.890181) (xy 53.512031 55.89481) (xy 53.51203 55.894811) (xy 53.424022 56.040393) + (xy 53.373413 56.202807) (xy 53.368282 56.259275) (xy 53.367 56.273384) (xy 53.367 56.936616) (xy 53.36742 56.941235) + (xy 53.373413 57.007192) (xy 53.373413 57.007194) (xy 53.373414 57.007196) (xy 53.424022 57.169606) + (xy 53.511804 57.314815) (xy 53.51203 57.315188) (xy 53.552153 57.355311) (xy 53.585638 57.416634) + (xy 53.580654 57.486326) (xy 53.552158 57.530669) (xy 53.538217 57.54461) (xy 53.538216 57.544612) + (xy 53.449955 57.687704) (xy 53.44995 57.687715) (xy 53.423273 57.768219) (xy 53.397064 57.847315) + (xy 53.397064 57.847316) (xy 53.397063 57.847316) (xy 53.387 57.945818) (xy 53.387 58.3005) (xy 53.367315 58.367539) + (xy 53.314511 58.413294) (xy 53.263 58.4245) (xy 52.40794 58.4245) (xy 52.340901 58.404815) (xy 52.320259 58.388181) + (xy 52.302262 58.370184) (xy 52.149523 58.274211) (xy 51.979254 58.214631) (xy 51.979249 58.21463) + (xy 51.800004 58.194435) (xy 51.799996 58.194435) (xy 51.62075 58.21463) (xy 51.620745 58.214631) + (xy 51.450476 58.274211) (xy 51.297737 58.370184) (xy 51.279741 58.388181) (xy 51.218418 58.421666) + (xy 51.19206 58.4245) (xy 46.005097 58.4245) (xy 45.938058 58.404815) (xy 45.917416 58.388181) (xy 45.641819 58.112584) + (xy 45.608334 58.051261) (xy 45.6055 58.024903) (xy 45.6055 57.693386) (xy 45.604985 57.687715) + (xy 45.599086 57.622804) (xy 45.548478 57.460394) (xy 45.493015 57.368648) (xy 45.47518 57.301096) + (xy 45.496697 57.234622) (xy 45.550738 57.190334) (xy 45.599133 57.1805) (xy 45.690686 57.1805) + (xy 45.690694 57.1805) (xy 45.727569 57.177598) (xy 45.727571 57.177597) (xy 45.727573 57.177597) + (xy 45.788898 57.15978) (xy 45.885398 57.131744) (xy 46.026865 57.048081) (xy 46.143081 56.931865) + (xy 46.226744 56.790398) (xy 46.266684 56.652925) (xy 46.272597 56.632573) (xy 46.272598 56.632567) + (xy 46.272794 56.630075) (xy 46.2755 56.595694) (xy 46.2755 56.164306) (xy 46.272598 56.127431) + (xy 46.263971 56.097738) (xy 46.226745 55.969606) (xy 46.226744 55.969603) (xy 46.226744 55.969602) + (xy 46.143081 55.828135) (xy 46.143078 55.828132) (xy 46.138298 55.821969) (xy 46.140635 55.820155) + (xy 46.113798 55.77105) (xy 46.118756 55.701356) (xy 46.139554 55.668998) (xy 46.137903 55.667717) + (xy 46.142686 55.66155) (xy 46.226281 55.520198) (xy 46.2721 55.362486) (xy 46.272295 55.360001) + (xy 46.272295 55.36) (xy 43.327705 55.36) (xy 43.327704 55.360001) (xy 43.327899 55.362486) (xy 43.373718 55.520198) + (xy 43.457314 55.661552) (xy 43.4621 55.667722) (xy 43.45964 55.669629) (xy 43.48621 55.718288) + (xy 43.481226 55.78798) (xy 43.460162 55.820781) (xy 43.461699 55.821974) (xy 43.456915 55.82814) + (xy 43.373255 55.969603) (xy 43.373254 55.969606) (xy 43.327402 56.127426) (xy 43.327401 56.127432) + (xy 43.3245 56.164298) (xy 43.3245 56.595701) (xy 43.327401 56.632567) (xy 43.327402 56.632573) + (xy 43.373254 56.790393) (xy 43.373255 56.790396) (xy 43.416121 56.862879) (xy 43.433304 56.930603) + (xy 43.411144 56.996866) (xy 43.356678 57.040629) (xy 43.309389 57.05) (xy 43.305 57.05) (xy 43.305 58.999999) + (xy 43.311581 58.999999) (xy 43.382102 58.993591) (xy 43.382107 58.99359) (xy 43.544396 58.943018) + (xy 43.689877 58.855072) (xy 43.689878 58.855071) (xy 43.791963 58.752985) (xy 43.853286 58.719499) + (xy 43.922977 58.724483) (xy 43.967326 58.752984) (xy 44.069811 58.855469) (xy 44.069813 58.85547) + (xy 44.069815 58.855472) (xy 44.215394 58.943478) (xy 44.377804 58.994086) (xy 44.448384 59.0005) + (xy 44.779903 59.0005) (xy 44.846942 59.020185) (xy 44.867584 59.036819) (xy 45.118584 59.287819) + (xy 45.152069 59.349142) (xy 45.147085 59.418834) (xy 45.105213 59.474767) (xy 45.039749 59.499184) + (xy 45.030903 59.4995) (xy 39.391848 59.4995) (xy 39.324809 59.479815) (xy 39.279054 59.427011) + (xy 39.26911 59.357853) (xy 39.273462 59.338611) (xy 39.282252 59.310403) (xy 39.319086 59.192196) + (xy 39.3255 59.121616) (xy 39.3255 58.458384) (xy 39.319086 58.387804) (xy 39.309357 58.356582) + (xy 42.155001 58.356582) (xy 42.161408 58.427102) (xy 42.161409 58.427107) (xy 42.211981 58.589396) + (xy 42.299927 58.734877) (xy 42.420122 58.855072) (xy 42.565604 58.943019) (xy 42.565603 58.943019) + (xy 42.727894 58.99359) (xy 42.727893 58.99359) (xy 42.798408 58.999998) (xy 42.798426 58.999999) + (xy 42.804999 58.999998) (xy 42.805 58.999998) (xy 42.805 58.275) (xy 42.155001 58.275) (xy 42.155001 58.356582) + (xy 39.309357 58.356582) (xy 39.268478 58.225394) (xy 39.254174 58.201733) (xy 39.236339 58.134181) + (xy 39.257856 58.067707) (xy 39.296136 58.031472) (xy 39.359388 57.993236) (xy 39.473236 57.879388) + (xy 39.556531 57.741602) (xy 39.571543 57.693427) (xy 42.155 57.693427) (xy 42.155 57.775) (xy 42.805 57.775) + (xy 42.805 57.05) (xy 42.804999 57.049999) (xy 42.798436 57.05) (xy 42.798417 57.050001) (xy 42.727897 57.056408) + (xy 42.727892 57.056409) (xy 42.565603 57.106981) (xy 42.420122 57.194927) (xy 42.299927 57.315122) + (xy 42.21198 57.460604) (xy 42.161409 57.622893) (xy 42.155 57.693427) (xy 39.571543 57.693427) + (xy 39.60443 57.587887) (xy 39.6105 57.521091) (xy 39.610499 56.290781) (xy 39.630184 56.223743) + (xy 39.646813 56.203106) (xy 40.168506 55.681414) (xy 40.168511 55.68141) (xy 40.178714 55.671206) + (xy 40.178716 55.671206) (xy 40.29052 55.559402) (xy 40.356281 55.4455) (xy 40.369577 55.422471) + (xy 40.410501 55.269743) (xy 40.410501 55.111629) (xy 40.410501 55.104034) (xy 40.4105 55.104016) + (xy 40.4105 55.028716) (xy 40.430185 54.961677) (xy 40.482989 54.915922) (xy 40.552147 54.905978) + (xy 40.571393 54.910331) (xy 40.597898 54.918591) (xy 40.668418 54.924999) (xy 41.25 54.924999) + (xy 41.331581 54.924999) (xy 41.402102 54.918591) (xy 41.402107 54.91859) (xy 41.564396 54.868018) + (xy 41.709873 54.780074) (xy 41.712313 54.777635) (xy 41.714544 54.776416) (xy 41.715783 54.775446) + (xy 41.715944 54.775651) (xy 41.773634 54.744146) (xy 41.843326 54.749126) (xy 41.887687 54.777635) + (xy 41.890126 54.780074) (xy 42.035604 54.868019) (xy 42.035603 54.868019) (xy 42.197894 54.91859) + (xy 42.197892 54.91859) (xy 42.268418 54.924999) (xy 42.349999 54.924998) (xy 42.35 54.924998) (xy 42.35 54.275) + (xy 41.25 54.275) (xy 41.25 54.924999) (xy 40.668418 54.924999) (xy 40.749999 54.924998) (xy 40.75 54.924998) + (xy 40.75 53.899) (xy 40.769685 53.831961) (xy 40.822489 53.786206) (xy 40.874 53.775) (xy 42.726 53.775) + (xy 42.793039 53.794685) (xy 42.838794 53.847489) (xy 42.85 53.899) (xy 42.85 54.924999) (xy 42.931581 54.924999) + (xy 43.002102 54.918591) (xy 43.002107 54.91859) (xy 43.164398 54.868018) (xy 43.187362 54.854136) + (xy 43.254917 54.836299) (xy 43.321391 54.857816) (xy 43.323923 54.86) (xy 46.272295 54.86) (xy 46.272295 54.859998) + (xy 46.2721 54.857513) (xy 46.226281 54.699801) (xy 46.142685 54.558447) (xy 46.1379 54.552278) + (xy 46.140366 54.550364) (xy 46.113802 54.501776) (xy 46.118749 54.432082) (xy 46.139856 54.399232) + (xy 46.138301 54.398026) (xy 46.143077 54.391868) (xy 46.143081 54.391865) (xy 46.226744 54.250398) + (xy 46.271137 54.097597) (xy 46.272597 54.092573) (xy 46.272598 54.092567) (xy 46.274494 54.068476) + (xy 46.2755 54.055694) (xy 46.2755 53.624306) (xy 46.272598 53.587431) (xy 46.270766 53.581126) + (xy 46.226745 53.429606) (xy 46.226744 53.429603) (xy 46.226744 53.429602) (xy 46.143081 53.288135) + (xy 46.143078 53.288132) (xy 46.138298 53.281969) (xy 46.14075 53.280066) (xy 46.114155 53.231421) + (xy 46.119104 53.161726) (xy 46.13994 53.129304) (xy 46.138298 53.128031) (xy 46.143075 53.12187) + (xy 46.143081 53.121865) (xy 46.226744 52.980398) (xy 46.226745 52.980393) (xy 46.226747 52.98039) + (xy 46.272597 52.822573) (xy 46.272598 52.822567) (xy 46.273188 52.815067) (xy 46.2755 52.785694) + (xy 46.2755 52.354306) (xy 46.272598 52.317431) (xy 46.267742 52.300718) (xy 46.226745 52.159606) + (xy 46.226744 52.159603) (xy 46.226744 52.159602) (xy 46.143081 52.018135) (xy 46.143079 52.018133) + (xy 46.143076 52.018129) (xy 46.02687 51.901923) (xy 46.026862 51.901917) (xy 45.908609 51.831983) + (xy 45.885398 51.818256) (xy 45.885397 51.818255) (xy 45.885396 51.818255) (xy 45.885393 51.818254) + (xy 45.727573 51.772402) (xy 45.727567 51.772401) (xy 45.690701 51.7695) (xy 45.690694 51.7695) + (xy 44.900097 51.7695) (xy 44.833058 51.749815) (xy 44.812416 51.733181) (xy 44.39259 51.313355) + (xy 44.392588 51.313352) (xy 44.273717 51.194481) (xy 44.273709 51.194475) (xy 44.185789 51.143715) + (xy 44.185788 51.143715) (xy 44.165077 51.131757) (xy 44.136785 51.115423) (xy 43.984057 51.074499) + (xy 43.825943 51.074499) (xy 43.818347 51.074499) (xy 43.818331 51.0745) (xy 41.620939 51.0745) + (xy 41.616589 51.075666) (xy 41.54674 51.074001) (xy 41.488878 51.034836) (xy 41.461376 50.970607) + (xy 41.4605 50.95589) (xy 41.4605 50.518386) (xy 41.459127 50.503278) (xy 41.454086 50.447804) (xy 41.403478 50.285394) + (xy 41.315472 50.139815) (xy 41.31547 50.139813) (xy 41.315469 50.139811) (xy 41.213339 50.037681) + (xy 41.179854 49.976358) (xy 41.184838 49.906666) (xy 41.213339 49.862319) (xy 41.315468 49.760189) + (xy 41.315469 49.760188) (xy 41.315472 49.760185) (xy 41.403478 49.614606) (xy 41.454086 49.452196) + (xy 41.4605 49.381616) (xy 41.4605 48.868384) (xy 41.454086 48.797804) (xy 41.403478 48.635394) + (xy 41.315472 48.489815) (xy 41.31547 48.489813) (xy 41.315469 48.489811) (xy 41.195188 48.36953) + (xy 41.163672 48.350478) (xy 41.049606 48.281522) (xy 40.887196 48.230914) (xy 40.887194 48.230913) + (xy 40.887192 48.230913) (xy 40.837778 48.226423) (xy 40.816616 48.2245) (xy 40.153384 48.2245) + (xy 40.134145 48.226248) (xy 40.082807 48.230913) (xy 39.920393 48.281522) (xy 39.774811 48.36953) + (xy 39.768906 48.374157) (xy 39.766907 48.371606) (xy 39.718298 48.398038) (xy 39.648615 48.39293) + (xy 39.592756 48.35096) (xy 39.573769 48.313715) (xy 39.556532 48.258401) (xy 39.556531 48.2584) + (xy 39.556531 48.258398) (xy 39.473236 48.120612) (xy 39.473234 48.12061) (xy 39.473233 48.120608) + (xy 39.359391 48.006766) (xy 39.348344 48.000088) (xy 39.221602 47.923469) (xy 39.067887 47.87557) + (xy 39.067885 47.875569) (xy 39.067883 47.875569) (xy 39.021117 47.871319) (xy 39.001091 47.8695) + (xy 39.001088 47.8695) (xy 38.568901 47.8695) (xy 38.502117 47.875568) (xy 38.502114 47.875569) + (xy 38.346889 47.923939) (xy 38.277029 47.925089) (xy 38.273109 47.923939) (xy 38.271603 47.923469) + (xy 38.271602 47.923469) (xy 38.117887 47.87557) (xy 38.117885 47.875569) (xy 38.117883 47.875569) + (xy 38.071117 47.871319) (xy 38.051091 47.8695) (xy 38.051088 47.8695) (xy 37.618901 47.8695) (xy 37.552117 47.875568) + (xy 37.552114 47.875569) (xy 37.396889 47.923939) (xy 37.327029 47.925089) (xy 37.323109 47.923939) + (xy 37.321603 47.923469) (xy 37.321602 47.923469) (xy 37.167887 47.87557) (xy 37.167885 47.875569) + (xy 37.167883 47.875569) (xy 37.121117 47.871319) (xy 37.101091 47.8695) (xy 37.101088 47.8695) + (xy 36.668901 47.8695) (xy 36.602117 47.875568) (xy 36.602106 47.875571) (xy 36.448401 47.923467) + (xy 36.310608 48.006766) (xy 36.196766 48.120608) (xy 36.113469 48.258397) (xy 36.065569 48.412116) + (xy 36.0595 48.478911) (xy 36.0595 49.821098) (xy 36.065568 49.887882) (xy 36.065571 49.887893) + (xy 36.113467 50.041598) (xy 36.113468 50.0416) (xy 36.113469 50.041602) (xy 36.177158 50.146956) + (xy 36.196766 50.179391) (xy 36.310608 50.293233) (xy 36.31061 50.293234) (xy 36.310612 50.293236) + (xy 36.448398 50.376531) (xy 36.464711 50.381614) (xy 36.522857 50.420348) (xy 36.550832 50.484373) + (xy 36.539753 50.553358) (xy 36.493136 50.605403) (xy 36.464717 50.618383) (xy 36.448399 50.623468) + (xy 36.310608 50.706766) (xy 36.196766 50.820608) (xy 36.113469 50.958397) (xy 36.105886 50.982732) + (xy 36.06557 51.112113) (xy 36.06557 51.112115) (xy 36.06017 51.171529) (xy 36.034498 51.236512) + (xy 35.977769 51.277299) (xy 35.907995 51.280942) (xy 35.848998 51.247986) (xy 35.778044 51.177032) + (xy 35.77804 51.177029) (xy 35.633705 51.088001) (xy 35.633699 51.087998) (xy 35.633697 51.087997) + (xy 35.595983 51.0755) (xy 35.472709 51.034651) (xy 35.373346 51.0245) (xy 34.776662 51.0245) (xy 34.776644 51.024501) + (xy 34.677292 51.03465) (xy 34.677289 51.034651) (xy 34.516305 51.087996) (xy 34.516294 51.088001) + (xy 34.371959 51.177029) (xy 34.371955 51.177032) (xy 34.252031 51.296956) (xy 34.240535 51.315596) + (xy 34.188588 51.362321) (xy 34.134996 51.3745) (xy 33.986669 51.3745) (xy 33.986653 51.374499) + (xy 33.979057 51.374499) (xy 33.820943 51.374499) (xy 33.751595 51.393081) (xy 33.668212 51.415423) + (xy 33.668209 51.415425) (xy 33.623391 51.441302) (xy 33.62339 51.441303) (xy 33.599886 51.454873) + (xy 33.531285 51.494479) (xy 33.531282 51.494481) (xy 33.419478 51.606286) (xy 32.75853 52.267233) + (xy 32.697207 52.300718) (xy 32.638756 52.299327) (xy 32.510413 52.264938) (xy 32.510403 52.264936) + (xy 32.275001 52.244341) (xy 32.274999 52.244341) (xy 32.039596 52.264936) (xy 32.039586 52.264938) + (xy 31.811344 52.326094) (xy 31.811335 52.326098) (xy 31.597171 52.425964) (xy 31.597169 52.425965) + (xy 31.403597 52.561505) (xy 31.236505 52.728597) (xy 31.100965 52.922169) (xy 31.100964 52.922171) + (xy 31.001098 53.136335) (xy 31.001094 53.136344) (xy 30.939938 53.364586) (xy 30.939936 53.364596) + (xy 30.919341 53.599999) (xy 30.919341 53.6) (xy 30.939936 53.835403) (xy 30.939938 53.835413) (xy 31.001094 54.063655) + (xy 31.001096 54.063659) (xy 31.001097 54.063663) (xy 31.085423 54.2445) (xy 31.100965 54.27783) + (xy 31.100967 54.277834) (xy 31.176859 54.386218) (xy 31.236501 54.471396) (xy 31.236506 54.471402) + (xy 31.35843 54.593326) (xy 31.391915 54.654649) (xy 31.386931 54.724341) (xy 31.345059 54.780274) + (xy 31.314083 54.797189) (xy 31.182669 54.846203) (xy 31.182664 54.846206) (xy 31.067455 54.932452) + (xy 31.067452 54.932455) (xy 30.981206 55.047664) (xy 30.981202 55.047671) (xy 30.930908 55.182517) + (xy 30.925224 55.235394) (xy 30.924501 55.242123) (xy 30.9245 55.242135) (xy 30.9245 56.589902) + (xy 30.904815 56.656941) (xy 30.888181 56.677583) (xy 30.769481 56.796282) (xy 30.769477 56.796287) + (xy 30.731887 56.861397) (xy 30.681321 56.909612) (xy 30.612714 56.922836) (xy 30.547849 56.896868) + (xy 30.50732 56.839954) (xy 30.5005 56.799397) (xy 30.5005 41.772844) (xy 31.73 41.772844) (xy 31.736401 41.832372) + (xy 31.736403 41.832379) (xy 31.786645 41.967086) (xy 31.786649 41.967093) (xy 31.872809 42.082187) + (xy 31.872812 42.08219) (xy 31.987906 42.16835) (xy 31.987913 42.168354) (xy 32.12262 42.218596) + (xy 32.122627 42.218598) (xy 32.182155 42.224999) (xy 32.182172 42.225) (xy 32.54 42.225) (xy 33.04 42.225) + (xy 33.397828 42.225) (xy 33.397844 42.224999) (xy 33.457372 42.218598) (xy 33.457379 42.218596) + (xy 33.592086 42.168354) (xy 33.592093 42.16835) (xy 33.707187 42.08219) (xy 33.70719 42.082187) + (xy 33.79335 41.967093) (xy 33.793354 41.967086) (xy 33.843596 41.832379) (xy 33.843598 41.832372) + (xy 33.849999 41.772844) (xy 34.27 41.772844) (xy 34.276401 41.832372) (xy 34.276403 41.832379) + (xy 34.326645 41.967086) (xy 34.326649 41.967093) (xy 34.412809 42.082187) (xy 34.412812 42.08219) + (xy 34.527906 42.16835) (xy 34.527913 42.168354) (xy 34.66262 42.218596) (xy 34.662627 42.218598) + (xy 34.722155 42.224999) (xy 34.722172 42.225) (xy 35.08 42.225) (xy 35.58 42.225) (xy 35.937828 42.225) + (xy 35.937844 42.224999) (xy 35.997372 42.218598) (xy 35.997379 42.218596) (xy 36.132086 42.168354) + (xy 36.132093 42.16835) (xy 36.247187 42.08219) (xy 36.24719 42.082187) (xy 36.33335 41.967093) + (xy 36.333354 41.967086) (xy 36.383596 41.832379) (xy 36.383598 41.832372) (xy 36.389999 41.772844) + (xy 36.81 41.772844) (xy 36.816401 41.832372) (xy 36.816403 41.832379) (xy 36.866645 41.967086) + (xy 36.866649 41.967093) (xy 36.952809 42.082187) (xy 36.952812 42.08219) (xy 37.067906 42.16835) + (xy 37.067913 42.168354) (xy 37.20262 42.218596) (xy 37.202627 42.218598) (xy 37.262155 42.224999) + (xy 37.262172 42.225) (xy 37.62 42.225) (xy 38.12 42.225) (xy 38.477828 42.225) (xy 38.477844 42.224999) + (xy 38.537372 42.218598) (xy 38.537379 42.218596) (xy 38.672086 42.168354) (xy 38.672093 42.16835) + (xy 38.787187 42.08219) (xy 38.78719 42.082187) (xy 38.87335 41.967093) (xy 38.873354 41.967086) + (xy 38.923596 41.832379) (xy 38.923598 41.832372) (xy 38.929999 41.772844) (xy 39.35 41.772844) + (xy 39.356401 41.832372) (xy 39.356403 41.832379) (xy 39.406645 41.967086) (xy 39.406649 41.967093) + (xy 39.492809 42.082187) (xy 39.492812 42.08219) (xy 39.607906 42.16835) (xy 39.607913 42.168354) + (xy 39.74262 42.218596) (xy 39.742627 42.218598) (xy 39.802155 42.224999) (xy 39.802172 42.225) + (xy 40.16 42.225) (xy 40.66 42.225) (xy 41.017828 42.225) (xy 41.017844 42.224999) (xy 41.077372 42.218598) + (xy 41.077379 42.218596) (xy 41.212086 42.168354) (xy 41.212093 42.16835) (xy 41.327187 42.08219) + (xy 41.32719 42.082187) (xy 41.41335 41.967093) (xy 41.413354 41.967086) (xy 41.463596 41.832379) + (xy 41.463598 41.832372) (xy 41.469999 41.772844) (xy 41.47 41.772827) (xy 41.47 40.755) (xy 40.66 40.755) + (xy 40.66 42.225) (xy 40.16 42.225) (xy 40.16 40.755) (xy 39.35 40.755) (xy 39.35 41.772844) (xy 38.929999 41.772844) + (xy 38.93 41.772827) (xy 38.93 40.755) (xy 38.12 40.755) (xy 38.12 42.225) (xy 37.62 42.225) (xy 37.62 40.755) + (xy 36.81 40.755) (xy 36.81 41.772844) (xy 36.389999 41.772844) (xy 36.39 41.772827) (xy 36.39 40.755) + (xy 35.58 40.755) (xy 35.58 42.225) (xy 35.08 42.225) (xy 35.08 40.755) (xy 34.27 40.755) (xy 34.27 41.772844) + (xy 33.849999 41.772844) (xy 33.85 41.772827) (xy 33.85 40.755) (xy 33.04 40.755) (xy 33.04 42.225) + (xy 32.54 42.225) (xy 32.54 40.755) (xy 31.73 40.755) (xy 31.73 41.772844) (xy 30.5005 41.772844) + (xy 30.5005 39.237155) (xy 31.73 39.237155) (xy 31.73 40.255) (xy 32.54 40.255) (xy 33.04 40.255) + (xy 33.85 40.255) (xy 33.85 39.237172) (xy 33.849999 39.237155) (xy 34.27 39.237155) (xy 34.27 40.255) + (xy 35.08 40.255) (xy 35.58 40.255) (xy 36.39 40.255) (xy 36.39 39.237172) (xy 36.389999 39.237155) + (xy 36.81 39.237155) (xy 36.81 40.255) (xy 37.62 40.255) (xy 38.12 40.255) (xy 38.93 40.255) (xy 38.93 39.237172) + (xy 38.929999 39.237155) (xy 39.35 39.237155) (xy 39.35 40.255) (xy 40.16 40.255) (xy 40.16 38.785) + (xy 39.802155 38.785) (xy 39.742627 38.791401) (xy 39.74262 38.791403) (xy 39.607913 38.841645) + (xy 39.607906 38.841649) (xy 39.492812 38.927809) (xy 39.492809 38.927812) (xy 39.406649 39.042906) + (xy 39.406645 39.042913) (xy 39.356403 39.17762) (xy 39.356401 39.177627) (xy 39.35 39.237155) (xy 38.929999 39.237155) + (xy 38.923598 39.177627) (xy 38.923596 39.17762) (xy 38.873354 39.042913) (xy 38.87335 39.042906) + (xy 38.78719 38.927812) (xy 38.787187 38.927809) (xy 38.672093 38.841649) (xy 38.672086 38.841645) + (xy 38.537379 38.791403) (xy 38.537372 38.791401) (xy 38.477844 38.785) (xy 38.12 38.785) (xy 38.12 40.255) + (xy 37.62 40.255) (xy 37.62 38.785) (xy 37.262155 38.785) (xy 37.202627 38.791401) (xy 37.20262 38.791403) + (xy 37.067913 38.841645) (xy 37.067906 38.841649) (xy 36.952812 38.927809) (xy 36.952809 38.927812) + (xy 36.866649 39.042906) (xy 36.866645 39.042913) (xy 36.816403 39.17762) (xy 36.816401 39.177627) + (xy 36.81 39.237155) (xy 36.389999 39.237155) (xy 36.383598 39.177627) (xy 36.383596 39.17762) (xy 36.333354 39.042913) + (xy 36.33335 39.042906) (xy 36.24719 38.927812) (xy 36.247187 38.927809) (xy 36.132093 38.841649) + (xy 36.132086 38.841645) (xy 35.997379 38.791403) (xy 35.997372 38.791401) (xy 35.937844 38.785) + (xy 35.58 38.785) (xy 35.58 40.255) (xy 35.08 40.255) (xy 35.08 38.785) (xy 34.722155 38.785) (xy 34.662627 38.791401) + (xy 34.66262 38.791403) (xy 34.527913 38.841645) (xy 34.527906 38.841649) (xy 34.412812 38.927809) + (xy 34.412809 38.927812) (xy 34.326649 39.042906) (xy 34.326645 39.042913) (xy 34.276403 39.17762) + (xy 34.276401 39.177627) (xy 34.27 39.237155) (xy 33.849999 39.237155) (xy 33.843598 39.177627) + (xy 33.843596 39.17762) (xy 33.793354 39.042913) (xy 33.79335 39.042906) (xy 33.70719 38.927812) + (xy 33.707187 38.927809) (xy 33.592093 38.841649) (xy 33.592086 38.841645) (xy 33.457379 38.791403) + (xy 33.457372 38.791401) (xy 33.397844 38.785) (xy 33.04 38.785) (xy 33.04 40.255) (xy 32.54 40.255) + (xy 32.54 38.785) (xy 32.182155 38.785) (xy 32.122627 38.791401) (xy 32.12262 38.791403) (xy 31.987913 38.841645) + (xy 31.987906 38.841649) (xy 31.872812 38.927809) (xy 31.872809 38.927812) (xy 31.786649 39.042906) + (xy 31.786645 39.042913) (xy 31.736403 39.17762) (xy 31.736401 39.177627) (xy 31.73 39.237155) (xy 30.5005 39.237155) + (xy 30.5005 30.6245) (xy 30.520185 30.557461) (xy 30.572989 30.511706) (xy 30.6245 30.5005) (xy 31.6055 30.5005) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 70.417619 47.466156) (xy 70.492508 47.494088) (xy 70.492511 47.494089) (xy 70.492517 47.494091) + (xy 70.552127 47.5005) (xy 71.047872 47.500499) (xy 71.107483 47.494091) (xy 71.181667 47.466421) + (xy 71.251358 47.461438) (xy 71.268327 47.46642) (xy 71.325607 47.487784) (xy 71.342511 47.494089) + (xy 71.342517 47.494091) (xy 71.402127 47.5005) (xy 71.897872 47.500499) (xy 71.957483 47.494091) + (xy 72.031667 47.466421) (xy 72.101358 47.461438) (xy 72.118327 47.46642) (xy 72.175607 47.487784) + (xy 72.192511 47.494089) (xy 72.192517 47.494091) (xy 72.252127 47.5005) (xy 72.747872 47.500499) + (xy 72.807483 47.494091) (xy 72.881667 47.466421) (xy 72.951358 47.461438) (xy 72.968327 47.46642) + (xy 73.025607 47.487784) (xy 73.042511 47.494089) (xy 73.042517 47.494091) (xy 73.102127 47.5005) + (xy 73.597872 47.500499) (xy 73.657483 47.494091) (xy 73.731667 47.466421) (xy 73.801358 47.461438) + (xy 73.818327 47.46642) (xy 73.875607 47.487784) (xy 73.892511 47.494089) (xy 73.892517 47.494091) + (xy 73.952127 47.5005) (xy 74.447872 47.500499) (xy 74.507483 47.494091) (xy 74.581667 47.466421) + (xy 74.651358 47.461438) (xy 74.668327 47.46642) (xy 74.725607 47.487784) (xy 74.742511 47.494089) + (xy 74.742517 47.494091) (xy 74.802127 47.5005) (xy 75.297872 47.500499) (xy 75.357483 47.494091) + (xy 75.431667 47.466421) (xy 75.501358 47.461438) (xy 75.518327 47.46642) (xy 75.575607 47.487784) + (xy 75.592511 47.494089) (xy 75.592517 47.494091) (xy 75.652127 47.5005) (xy 76.147872 47.500499) + (xy 76.207483 47.494091) (xy 76.281667 47.466421) (xy 76.351358 47.461438) (xy 76.368327 47.46642) + (xy 76.425607 47.487784) (xy 76.442511 47.494089) (xy 76.442517 47.494091) (xy 76.502127 47.5005) + (xy 76.8755 47.500499) (xy 76.942539 47.520183) (xy 76.988294 47.572987) (xy 76.9995 47.624499) + (xy 76.9995 47.717587) (xy 76.979815 47.784626) (xy 76.97245 47.794896) (xy 76.970186 47.797734) + (xy 76.874211 47.950476) (xy 76.814631 48.120745) (xy 76.81463 48.12075) (xy 76.794435 48.299996) + (xy 76.794435 48.300003) (xy 76.81463 48.479249) (xy 76.814631 48.479254) (xy 76.874211 48.649523) + (xy 76.958727 48.784028) (xy 76.977727 48.851264) (xy 76.958727 48.915972) (xy 76.874211 49.050476) + (xy 76.814631 49.220745) (xy 76.81463 49.22075) (xy 76.794435 49.399996) (xy 76.794435 49.400003) + (xy 76.809827 49.536617) (xy 76.797772 49.605439) (xy 76.750423 49.656818) (xy 76.686607 49.6745) + (xy 73.883294 49.6745) (xy 73.730564 49.715423) (xy 73.697475 49.734529) (xy 73.697472 49.73453) + (xy 73.593642 49.794475) (xy 73.593634 49.794481) (xy 72.594481 50.793634) (xy 72.59448 50.793636) + (xy 72.555751 50.860717) (xy 72.515423 50.930567) (xy 72.474499 51.083295) (xy 72.474499 51.083297) + (xy 72.474499 51.251398) (xy 72.4745 51.251411) (xy 72.4745 52.36333) (xy 72.474499 52.363348) (xy 72.474499 52.529054) + (xy 72.474498 52.529054) (xy 72.507722 52.653044) (xy 72.515423 52.681785) (xy 72.533658 52.713368) + (xy 72.557502 52.754667) (xy 72.594479 52.818715) (xy 72.713349 52.937585) (xy 72.713355 52.93759) + (xy 72.838181 53.062416) (xy 72.871666 53.123739) (xy 72.8745 53.150097) (xy 72.8745 53.481613) + (xy 72.880913 53.552192) (xy 72.880913 53.552194) (xy 72.880914 53.552196) (xy 72.931522 53.714606) + (xy 73.003755 53.834094) (xy 73.01953 53.860188) (xy 73.139811 53.980469) (xy 73.139813 53.98047) + (xy 73.139815 53.980472) (xy 73.285394 54.068478) (xy 73.447804 54.119086) (xy 73.518384 54.1255) + (xy 73.518387 54.1255) (xy 74.181613 54.1255) (xy 74.181616 54.1255) (xy 74.252196 54.119086) (xy 74.414606 54.068478) + (xy 74.544406 53.99001) (xy 74.611959 53.972174) (xy 74.671674 53.989394) (xy 74.777102 54.051744) + (xy 74.801024 54.058694) (xy 74.934926 54.097597) (xy 74.934929 54.097597) (xy 74.934931 54.097598) + (xy 74.971806 54.1005) (xy 76.138 54.1005) (xy 76.205039 54.120185) (xy 76.250794 54.172989) (xy 76.262 54.2245) + (xy 76.262 54.465701) (xy 76.264901 54.502567) (xy 76.264902 54.502573) (xy 76.310754 54.660393) + (xy 76.310755 54.660396) (xy 76.310756 54.660398) (xy 76.381532 54.780074) (xy 76.382732 54.782103) + (xy 76.4 54.845224) (xy 76.4 55.926) (xy 76.380315 55.993039) (xy 76.327511 56.038794) (xy 76.276 56.05) + (xy 75.250001 56.05) (xy 75.250001 56.131582) (xy 75.256408 56.202102) (xy 75.256409 56.202107) + (xy 75.306981 56.364396) (xy 75.394927 56.509877) (xy 75.515122 56.630072) (xy 75.660604 56.718019) + (xy 75.660603 56.718019) (xy 75.822894 56.76859) (xy 75.822893 56.76859) (xy 75.893429 56.775) (xy 75.896243 56.775128) + (xy 75.896204 56.775986) (xy 75.959885 56.794654) (xy 76.005663 56.847438) (xy 76.015637 56.916592) + (xy 75.98664 56.980161) (xy 75.96941 56.996211) (xy 75.967809 56.997812) (xy 75.881649 57.112906) + (xy 75.881645 57.112913) (xy 75.831403 57.24762) (xy 75.831401 57.247627) (xy 75.825 57.307155) + (xy 75.825 57.78) (xy 76.684314 57.78) (xy 76.67992 57.784394) (xy 76.627259 57.875606) (xy 76.6 57.977339) + (xy 76.6 58.082661) (xy 76.627259 58.184394) (xy 76.67992 58.275606) (xy 76.684314 58.28) (xy 75.825 58.28) + (xy 75.825 58.752844) (xy 75.831401 58.812372) (xy 75.831403 58.812379) (xy 75.881645 58.947086) + (xy 75.881649 58.947093) (xy 75.967809 59.062187) (xy 75.967812 59.06219) (xy 76.082906 59.14835) + (xy 76.082913 59.148354) (xy 76.21762 59.198596) (xy 76.217627 59.198598) (xy 76.277155 59.204999) + (xy 76.277172 59.205) (xy 76.75 59.205) (xy 76.75 58.345686) (xy 76.754394 58.35008) (xy 76.845606 58.402741) + (xy 76.947339 58.43) (xy 77.052661 58.43) (xy 77.154394 58.402741) (xy 77.245606 58.35008) (xy 77.25 58.345686) + (xy 77.25 59.205) (xy 77.722828 59.205) (xy 77.722844 59.204999) (xy 77.782372 59.198598) (xy 77.782379 59.198596) + (xy 77.917086 59.148354) (xy 77.917093 59.14835) (xy 78.032186 59.062191) (xy 78.094413 58.979067) + (xy 78.150347 58.937196) (xy 78.220038 58.932212) (xy 78.277216 58.961739) (xy 78.288568 58.972088) + (xy 78.288575 58.972092) (xy 78.288576 58.972093) (xy 78.473786 59.08677) (xy 78.473792 59.086773) + (xy 78.47785 59.088345) (xy 78.676931 59.16547) (xy 78.891074 59.2055) (xy 78.891076 59.2055) (xy 79.108924 59.2055) + (xy 79.108926 59.2055) (xy 79.323069 59.16547) (xy 79.52621 59.086772) (xy 79.711432 58.972088) + (xy 79.872427 58.825322) (xy 79.901047 58.787422) (xy 79.957153 58.745787) (xy 80.026865 58.741094) + (xy 80.088048 58.774836) (xy 80.098946 58.787414) (xy 80.127573 58.825322) (xy 80.127576 58.825325) + (xy 80.127578 58.825327) (xy 80.208741 58.899316) (xy 80.288568 58.972088) (xy 80.288575 58.972092) + (xy 80.288576 58.972093) (xy 80.473786 59.08677) (xy 80.473792 59.086773) (xy 80.47785 59.088345) + (xy 80.676931 59.16547) (xy 80.891074 59.2055) (xy 80.891076 59.2055) (xy 81.108924 59.2055) (xy 81.108926 59.2055) + (xy 81.323069 59.16547) (xy 81.52621 59.086772) (xy 81.711432 58.972088) (xy 81.872427 58.825322) + (xy 81.901047 58.787422) (xy 81.957153 58.745787) (xy 82.026865 58.741094) (xy 82.088048 58.774836) + (xy 82.098946 58.787414) (xy 82.127573 58.825322) (xy 82.127576 58.825325) (xy 82.127578 58.825327) + (xy 82.208741 58.899316) (xy 82.288568 58.972088) (xy 82.288575 58.972092) (xy 82.288576 58.972093) + (xy 82.473786 59.08677) (xy 82.473792 59.086773) (xy 82.47785 59.088345) (xy 82.676931 59.16547) + (xy 82.891074 59.2055) (xy 82.891076 59.2055) (xy 83.108924 59.2055) (xy 83.108926 59.2055) (xy 83.323069 59.16547) + (xy 83.52621 59.086772) (xy 83.711432 58.972088) (xy 83.872427 58.825322) (xy 84.003712 58.651472) + (xy 84.100817 58.456459) (xy 84.160435 58.246923) (xy 84.180536 58.03) (xy 84.160435 57.813077) + (xy 84.100817 57.603541) (xy 84.003712 57.408528) (xy 83.872427 57.234678) (xy 83.869852 57.232331) + (xy 83.738849 57.112906) (xy 83.711432 57.087912) (xy 83.711428 57.087909) (xy 83.711423 57.087906) + (xy 83.576586 57.004419) (xy 83.52995 56.952391) (xy 83.518846 56.88341) (xy 83.546799 56.819375) + (xy 83.573283 56.801718) (xy 83.6 56.774998) (xy 83.6 54.825) (xy 83.599999 54.824999) (xy 83.593436 54.825) + (xy 83.593417 54.825001) (xy 83.522897 54.831408) (xy 83.522892 54.831409) (xy 83.360603 54.881981) + (xy 83.215122 54.969927) (xy 83.215121 54.969928) (xy 83.113035 55.072015) (xy 83.051712 55.1055) + (xy 82.98202 55.100516) (xy 82.937673 55.072015) (xy 82.835188 54.96953) (xy 82.826867 54.9645) + (xy 82.689606 54.881522) (xy 82.527196 54.830914) (xy 82.527194 54.830913) (xy 82.527192 54.830913) + (xy 82.477778 54.826423) (xy 82.456616 54.8245) (xy 82.456613 54.8245) (xy 82.325097 54.8245) (xy 82.258058 54.804815) + (xy 82.237416 54.788181) (xy 81.811819 54.362584) (xy 81.778334 54.301261) (xy 81.7755 54.274903) + (xy 81.7755 54.125096) (xy 81.795185 54.058057) (xy 81.811815 54.037419) (xy 82.436936 53.412297) + (xy 82.498257 53.378814) (xy 82.567948 53.383798) (xy 82.587731 53.393245) (xy 82.602102 53.401744) + (xy 82.602104 53.401744) (xy 82.602105 53.401745) (xy 82.759926 53.447597) (xy 82.759929 53.447597) + (xy 82.759931 53.447598) (xy 82.796806 53.4505) (xy 82.796814 53.4505) (xy 84.103186 53.4505) (xy 84.103194 53.4505) + (xy 84.140069 53.447598) (xy 84.140071 53.447597) (xy 84.140073 53.447597) (xy 84.201997 53.429606) + (xy 84.297898 53.401744) (xy 84.312879 53.392883) (xy 84.380603 53.375701) (xy 84.446865 53.397861) + (xy 84.490629 53.452327) (xy 84.5 53.499616) (xy 84.5 54.763506) (xy 84.480315 54.830545) (xy 84.427511 54.8763) + (xy 84.358353 54.886244) (xy 84.33911 54.881892) (xy 84.177101 54.831408) (xy 84.106572 54.825) + (xy 84.1 54.825) (xy 84.1 56.774999) (xy 84.106581 56.774999) (xy 84.177102 56.768591) (xy 84.177107 56.76859) + (xy 84.339109 56.718108) (xy 84.408969 56.716956) (xy 84.468362 56.753757) (xy 84.49843 56.816825) + (xy 84.5 56.836493) (xy 84.5 59.3755) (xy 84.480315 59.442539) (xy 84.427511 59.488294) (xy 84.376 59.4995) + (xy 75.106982 59.4995) (xy 75.039943 59.479815) (xy 74.994188 59.427011) (xy 74.984244 59.357853) + (xy 75.001443 59.310403) (xy 75.062091 59.212077) (xy 75.062093 59.212072) (xy 75.114942 59.052583) + (xy 75.124999 58.95415) (xy 75.125 58.954137) (xy 75.125 58.9375) (xy 73.35859 58.9375) (xy 73.317996 58.959666) + (xy 73.291638 58.9625) (xy 71.455862 58.9625) (xy 71.388823 58.942815) (xy 71.368181 58.926181) + (xy 71.332 58.89) (xy 70.549 58.89) (xy 70.481961 58.870315) (xy 70.436206 58.817511) (xy 70.425 58.766) + (xy 70.425 58.514) (xy 70.444685 58.446961) (xy 70.497489 58.401206) (xy 70.549 58.39) (xy 71.494138 58.39) + (xy 71.561177 58.409685) (xy 71.581819 58.426319) (xy 71.618 58.4625) (xy 73.14141 58.4625) (xy 73.182004 58.440334) + (xy 73.208362 58.4375) (xy 75.124999 58.4375) (xy 75.124999 58.420864) (xy 75.124998 58.420847) + (xy 75.114943 58.322416) (xy 75.062093 58.162927) (xy 75.062091 58.162922) (xy 74.973885 58.019919) + (xy 74.942 57.988034) (xy 74.908515 57.926711) (xy 74.913499 57.857019) (xy 74.942 57.812672) (xy 74.951528 57.803144) + (xy 74.974281 57.780391) (xy 75.062549 57.637287) (xy 75.115436 57.477685) (xy 75.1255 57.379174) + (xy 75.1255 56.845826) (xy 75.115436 56.747315) (xy 75.062549 56.587713) (xy 75.062545 56.587707) + (xy 75.062544 56.587704) (xy 74.974283 56.444612) (xy 74.97428 56.444608) (xy 74.855391 56.325719) + (xy 74.855387 56.325716) (xy 74.712295 56.237455) (xy 74.712289 56.237452) (xy 74.712287 56.237451) + (xy 74.552685 56.184564) (xy 74.552683 56.184563) (xy 74.454181 56.1745) (xy 74.454174 56.1745) + (xy 74.112598 56.1745) (xy 74.045559 56.154815) (xy 74.024917 56.138181) (xy 73.355163 55.468427) + (xy 75.25 55.468427) (xy 75.25 55.55) (xy 75.9 55.55) (xy 75.9 54.825) (xy 75.899999 54.824999) + (xy 75.893436 54.825) (xy 75.893417 54.825001) (xy 75.822897 54.831408) (xy 75.822892 54.831409) + (xy 75.660603 54.881981) (xy 75.515122 54.969927) (xy 75.394927 55.090122) (xy 75.30698 55.235604) + (xy 75.256409 55.397893) (xy 75.25 55.468427) (xy 73.355163 55.468427) (xy 71.509722 53.622987) + (xy 71.476237 53.561664) (xy 71.473912 53.524087) (xy 71.4755 53.506616) (xy 71.4755 52.993384) + (xy 71.469086 52.922804) (xy 71.430802 52.799947) (xy 71.429652 52.730088) (xy 71.461507 52.675376) + (xy 71.468168 52.668716) (xy 71.468168 52.668714) (xy 71.478373 52.65851) (xy 71.478377 52.658505) + (xy 71.633506 52.503376) (xy 71.633511 52.503372) (xy 71.643714 52.493168) (xy 71.643716 52.493168) + (xy 71.75552 52.381364) (xy 71.805708 52.294435) (xy 71.834577 52.244433) (xy 71.8755 52.091705) + (xy 71.8755 51.933591) (xy 71.8755 49.445943) (xy 71.864669 49.40552) (xy 71.834577 49.293215) (xy 71.834575 49.293212) + (xy 71.834575 49.29321) (xy 71.834574 49.293209) (xy 71.799111 49.231786) (xy 71.79911 49.231785) + (xy 71.75552 49.156284) (xy 71.643716 49.04448) (xy 71.643715 49.044479) (xy 71.639385 49.040149) + (xy 71.639374 49.040139) (xy 70.273967 47.674732) (xy 70.240482 47.613409) (xy 70.245466 47.543717) + (xy 70.287338 47.487784) (xy 70.318309 47.470871) (xy 70.330946 47.466157) (xy 70.400638 47.46117) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 77.017977 56.499483) (xy 77.062326 56.527984) (xy 77.164811 56.630469) (xy 77.164813 56.63047) + (xy 77.164815 56.630472) (xy 77.222393 56.665279) (xy 77.269579 56.716806) (xy 77.281418 56.785665) + (xy 77.254149 56.849994) (xy 77.25 56.854575) (xy 77.25 57.714314) (xy 77.245606 57.70992) (xy 77.154394 57.657259) + (xy 77.052661 57.63) (xy 76.947339 57.63) (xy 76.845606 57.657259) (xy 76.754394 57.70992) (xy 76.75 57.714314) + (xy 76.75 56.855) (xy 76.734873 56.839873) (xy 76.701388 56.77855) (xy 76.706372 56.708858) (xy 76.748244 56.652925) + (xy 76.758407 56.646074) (xy 76.784874 56.630075) (xy 76.784878 56.630071) (xy 76.886963 56.527985) + (xy 76.948286 56.494499) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 68.075859 53.782063) (xy 68.131793 53.823934) (xy 68.138642 53.834094) (xy 68.169528 53.885185) + (xy 68.169531 53.885189) (xy 68.289811 54.005469) (xy 68.289813 54.00547) (xy 68.289815 54.005472) + (xy 68.435394 54.093478) (xy 68.44749 54.097247) (xy 68.505636 54.135981) (xy 68.517989 54.153634) + (xy 68.519477 54.156212) (xy 68.519481 54.156217) (xy 68.638349 54.275085) (xy 68.638355 54.27509) + (xy 69.751584 55.388319) (xy 69.785069 55.449642) (xy 69.780085 55.519334) (xy 69.738213 55.575267) + (xy 69.672749 55.599684) (xy 69.663903 55.6) (xy 69.647155 55.6) (xy 69.587627 55.606401) (xy 69.58762 55.606403) + (xy 69.452913 55.656645) (xy 69.452906 55.656649) (xy 69.337812 55.742809) (xy 69.337809 55.742812) + (xy 69.251649 55.857906) (xy 69.251645 55.857913) (xy 69.201403 55.99262) (xy 69.201401 55.992627) + (xy 69.195 56.052155) (xy 69.195 56.55) (xy 70.221 56.55) (xy 70.288039 56.569685) (xy 70.333794 56.622489) + (xy 70.345 56.674) (xy 70.345 56.926) (xy 70.325315 56.993039) (xy 70.272511 57.038794) (xy 70.221 57.05) + (xy 69.195 57.05) (xy 69.193747 57.051252) (xy 69.175315 57.114025) (xy 69.122511 57.15978) (xy 69.095192 57.168603) + (xy 69.02692 57.182183) (xy 69.02109 57.183952) (xy 69.020949 57.18349) (xy 69.011651 57.186372) + (xy 69.010731 57.186671) (xy 68.940721 57.21784) (xy 68.937745 57.219119) (xy 68.872139 57.246295) + (xy 68.872132 57.246299) (xy 68.871581 57.246668) (xy 68.853157 57.256827) (xy 68.847413 57.259384) + (xy 68.847406 57.259389) (xy 68.79058 57.300675) (xy 68.78659 57.303456) (xy 68.732841 57.339371) + (xy 68.732834 57.339377) (xy 68.72783 57.344381) (xy 68.71305 57.357003) (xy 68.702777 57.364467) + (xy 68.702767 57.364476) (xy 68.660022 57.411948) (xy 68.655557 57.416653) (xy 68.614377 57.457834) + (xy 68.614369 57.457843) (xy 68.606877 57.469056) (xy 68.595932 57.483128) (xy 68.583142 57.497333) + (xy 68.583138 57.497338) (xy 68.554392 57.547127) (xy 68.550108 57.554015) (xy 68.528101 57.586951) + (xy 68.474489 57.631757) (xy 68.405164 57.640464) (xy 68.342137 57.61031) (xy 68.321897 57.586952) + (xy 68.321896 57.586951) (xy 68.299885 57.554008) (xy 68.295601 57.547119) (xy 68.295186 57.546401) + (xy 68.266859 57.497335) (xy 68.266856 57.497331) (xy 68.25407 57.483131) (xy 68.243115 57.469047) + (xy 68.237474 57.460604) (xy 68.235626 57.457838) (xy 68.194441 57.416653) (xy 68.189974 57.411946) + (xy 68.147234 57.364477) (xy 68.14723 57.364474) (xy 68.136952 57.357006) (xy 68.122161 57.344372) + (xy 68.117165 57.339376) (xy 68.117161 57.339373) (xy 68.063442 57.303479) (xy 68.059448 57.300695) + (xy 68.002594 57.259388) (xy 68.002593 57.259387) (xy 67.996855 57.256833) (xy 67.978397 57.246654) + (xy 67.977866 57.246299) (xy 67.977865 57.246298) (xy 67.977863 57.246297) (xy 67.912241 57.219115) + (xy 67.909289 57.217846) (xy 67.83927 57.186672) (xy 67.838316 57.186362) (xy 67.829047 57.183492) + (xy 67.828908 57.183952) (xy 67.823085 57.182185) (xy 67.823082 57.182184) (xy 67.823078 57.182183) + (xy 67.823071 57.182181) (xy 67.747172 57.167084) (xy 67.745595 57.16676) (xy 67.743731 57.166364) + (xy 67.682245 57.133178) (xy 67.648462 57.072018) (xy 67.645499 57.045079) (xy 67.645499 56.052128) + (xy 67.639091 55.992517) (xy 67.630761 55.970184) (xy 67.588797 55.857671) (xy 67.588793 55.857664) + (xy 67.502547 55.742455) (xy 67.395188 55.662085) (xy 67.353318 55.606151) (xy 67.3455 55.562819) + (xy 67.3455 54.461272) (xy 67.365185 54.394233) (xy 67.381815 54.373595) (xy 67.944847 53.810562) + (xy 68.006168 53.777079) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 68.792539 37.670185) (xy 68.838294 37.722989) (xy 68.8495 37.7745) (xy 68.8495 38.147869) (xy 68.849501 38.147876) + (xy 68.855908 38.207483) (xy 68.883577 38.281667) (xy 68.888561 38.351358) (xy 68.883577 38.368331) + (xy 68.85591 38.442511) (xy 68.855909 38.442515) (xy 68.855909 38.442517) (xy 68.8495 38.502127) + (xy 68.8495 38.502134) (xy 68.8495 38.502135) (xy 68.8495 38.99787) (xy 68.849501 38.997876) (xy 68.855908 39.057483) + (xy 68.883577 39.131668) (xy 68.888561 39.20136) (xy 68.883577 39.218332) (xy 68.863945 39.270969) + (xy 68.835444 39.315318) (xy 67.881286 40.269478) (xy 67.769481 40.381282) (xy 67.769479 40.381285) + (xy 67.758398 40.400478) (xy 67.730982 40.447965) (xy 67.690423 40.518215) (xy 67.649499 40.670943) + (xy 67.649499 40.670945) (xy 67.649499 40.839046) (xy 67.6495 40.839059) (xy 67.6495 47.544702) + (xy 67.649499 47.54472) (xy 67.649499 47.710426) (xy 67.649498 47.710426) (xy 67.67423 47.802728) + (xy 67.690423 47.863157) (xy 67.712868 47.902032) (xy 67.75841 47.980914) (xy 67.769479 48.000086) + (xy 67.769481 48.000089) (xy 67.888349 48.118957) (xy 67.888355 48.118962) (xy 68.363181 48.593788) + (xy 68.396666 48.655111) (xy 68.3995 48.681469) (xy 68.3995 50.708284) (xy 68.379815 50.775323) + (xy 68.339652 50.8144) (xy 68.289811 50.84453) (xy 68.16953 50.964811) (xy 68.081522 51.110393) + (xy 68.030913 51.272807) (xy 68.027871 51.306284) (xy 68.0245 51.343384) (xy 68.0245 51.856616) + (xy 68.028284 51.898254) (xy 68.030914 51.927196) (xy 68.030914 51.927199) (xy 68.032094 51.930984) + (xy 68.032132 51.933322) (xy 68.032195 51.933637) (xy 68.032137 51.933648) (xy 68.033242 52.000844) + (xy 68.001388 52.055551) (xy 67.386681 52.670258) (xy 67.325358 52.703743) (xy 67.255666 52.698759) + (xy 67.199733 52.656887) (xy 67.195477 52.645477) (xy 67.175 52.625) (xy 66.45 52.625) (xy 66.45 53.324999) + (xy 66.457241 53.33224) (xy 66.499618 53.344684) (xy 66.545373 53.397488) (xy 66.555317 53.466646) + (xy 66.526292 53.530202) (xy 66.52026 53.53668) (xy 66.264481 53.792458) (xy 66.264479 53.792461) + (xy 66.254028 53.810564) (xy 66.22538 53.860185) (xy 66.220014 53.869479) (xy 66.220012 53.869481) + (xy 66.185425 53.929385) (xy 66.185423 53.929388) (xy 66.165037 54.005472) (xy 66.144499 54.082119) + (xy 66.144499 54.082121) (xy 66.144499 54.250222) (xy 66.1445 54.250235) (xy 66.1445 55.562819) + (xy 66.124815 55.629858) (xy 66.094812 55.662085) (xy 65.987452 55.742455) (xy 65.901206 55.857664) + (xy 65.901202 55.857671) (xy 65.85529 55.98077) (xy 65.813419 56.036704) (xy 65.747955 56.061121) + (xy 65.679682 56.046269) (xy 65.630276 55.996864) (xy 65.622926 55.98077) (xy 65.593797 55.902671) + (xy 65.593793 55.902664) (xy 65.507547 55.787455) (xy 65.507544 55.787452) (xy 65.392335 55.701206) + (xy 65.392328 55.701202) (xy 65.257482 55.650908) (xy 65.257483 55.650908) (xy 65.197883 55.644501) + (xy 65.197881 55.6445) (xy 65.197873 55.6445) (xy 65.197865 55.6445) (xy 64.224499 55.6445) (xy 64.15746 55.624815) + (xy 64.111705 55.572011) (xy 64.100499 55.5205) (xy 64.100499 55.097129) (xy 64.100498 55.097123) + (xy 64.100219 55.094528) (xy 64.094091 55.037517) (xy 64.090808 55.028716) (xy 64.043797 54.902671) + (xy 64.043793 54.902664) (xy 63.957547 54.787455) (xy 63.957544 54.787452) (xy 63.842335 54.701206) + (xy 63.842328 54.701202) (xy 63.707482 54.650908) (xy 63.707483 54.650908) (xy 63.647883 54.644501) + (xy 63.647881 54.6445) (xy 63.647873 54.6445) (xy 63.647865 54.6445) (xy 63.4245 54.6445) (xy 63.357461 54.624815) + (xy 63.311706 54.572011) (xy 63.3005 54.5205) (xy 63.3005 53.486106) (xy 63.320185 53.419067) (xy 63.372989 53.373312) + (xy 63.388306 53.370604) (xy 63.4 53.359795) (xy 63.9 53.359795) (xy 63.900001 53.359795) (xy 63.902486 53.3596) + (xy 64.060195 53.313782) (xy 64.061873 53.31279) (xy 64.063364 53.312411) (xy 64.067354 53.310685) + (xy 64.067632 53.311328) (xy 64.129596 53.295604) (xy 64.182455 53.311124) (xy 64.182646 53.310685) + (xy 64.186207 53.312226) (xy 64.188127 53.31279) (xy 64.189804 53.313782) (xy 64.347514 53.3596) + (xy 64.347511 53.3596) (xy 64.349998 53.359795) (xy 64.35 53.359795) (xy 64.85 53.359795) (xy 64.850001 53.359795) + (xy 64.852486 53.3596) (xy 65.010198 53.313781) (xy 65.151552 53.230185) (xy 65.151557 53.230181) + (xy 65.265535 53.116203) (xy 65.326858 53.082718) (xy 65.39655 53.087702) (xy 65.440898 53.116203) + (xy 65.497267 53.172572) (xy 65.497271 53.172575) (xy 65.641507 53.261542) (xy 65.641518 53.261547) + (xy 65.802393 53.314855) (xy 65.901683 53.324999) (xy 65.949999 53.324998) (xy 65.95 53.324998) + (xy 65.95 52.625) (xy 65.306 52.625) (xy 65.238961 52.605315) (xy 65.193206 52.552511) (xy 65.182 52.501) + (xy 65.182 52.45) (xy 64.85 52.45) (xy 64.85 53.359795) (xy 64.35 53.359795) (xy 64.35 52.45) (xy 63.9 52.45) + (xy 63.9 53.359795) (xy 63.4 53.359795) (xy 63.4 53.094314) (xy 63.417267 53.031194) (xy 63.451744 52.972898) + (xy 63.49542 52.822567) (xy 63.497597 52.815073) (xy 63.497598 52.815067) (xy 63.498788 52.799948) + (xy 63.5005 52.778194) (xy 63.5005 52.074) (xy 63.520185 52.006961) (xy 63.572989 51.961206) (xy 63.6245 51.95) + (xy 65.319 51.95) (xy 65.386039 51.969685) (xy 65.431794 52.022489) (xy 65.443 52.074) (xy 65.443 52.125) + (xy 67.174999 52.125) (xy 67.174999 52.101692) (xy 67.174998 52.101677) (xy 67.164855 52.002392) + (xy 67.111547 51.841518) (xy 67.111542 51.841507) (xy 67.022575 51.697271) (xy 67.022572 51.697267) + (xy 67.013339 51.688034) (xy 66.979854 51.626711) (xy 66.984838 51.557019) (xy 67.013343 51.512668) + (xy 67.022968 51.503044) (xy 67.112003 51.358697) (xy 67.165349 51.197708) (xy 67.1755 51.098345) + (xy 67.175499 50.551656) (xy 67.174315 50.540069) (xy 67.165349 50.452292) (xy 67.165348 50.452289) + (xy 67.145329 50.391875) (xy 67.112003 50.291303) (xy 67.111999 50.291297) (xy 67.111998 50.291294) + (xy 67.02297 50.146959) (xy 67.022967 50.146955) (xy 66.903044 50.027032) (xy 66.90304 50.027029) + (xy 66.758705 49.938001) (xy 66.758699 49.937998) (xy 66.758697 49.937997) (xy 66.673154 49.909651) + (xy 66.597709 49.884651) (xy 66.498346 49.8745) (xy 65.901662 49.8745) (xy 65.901644 49.874501) + (xy 65.802292 49.88465) (xy 65.802289 49.884651) (xy 65.641305 49.937996) (xy 65.6413 49.937998) + (xy 65.589597 49.96989) (xy 65.522204 49.98833) (xy 65.455541 49.967407) (xy 65.410771 49.913765) + (xy 65.4005 49.864351) (xy 65.4005 49.516321) (xy 65.420185 49.449282) (xy 65.472989 49.403527) + (xy 65.510612 49.393101) (xy 65.579255 49.385368) (xy 65.749522 49.325789) (xy 65.902262 49.229816) + (xy 66.029816 49.102262) (xy 66.125789 48.949522) (xy 66.185368 48.779255) (xy 66.185819 48.775254) + (xy 66.205565 48.600003) (xy 66.205565 48.599996) (xy 66.185369 48.42075) (xy 66.185368 48.420745) + (xy 66.125788 48.250475) (xy 66.077267 48.173256) (xy 66.041272 48.11597) (xy 66.022272 48.048736) + (xy 66.041272 47.984029) (xy 66.125789 47.849522) (xy 66.185368 47.679255) (xy 66.187708 47.658492) + (xy 66.205565 47.5) (xy 66.205565 47.499996) (xy 66.185369 47.32075) (xy 66.185368 47.320745) (xy 66.125788 47.150476) + (xy 66.061312 47.047864) (xy 66.029816 46.997738) (xy 66.029815 46.997737) (xy 66.025475 46.992295) + (xy 66.026339 46.991605) (xy 65.997874 46.942304) (xy 65.959577 46.79938) (xy 65.959573 46.799373) + (xy 65.880524 46.662454) (xy 65.880518 46.662446) (xy 65.282553 46.064481) (xy 65.282552 46.06448) + (xy 65.19574 46.01436) (xy 65.19574 46.014359) (xy 65.195736 46.014358) (xy 65.145621 45.985423) + (xy 64.992893 45.944499) (xy 64.834779 45.944499) (xy 64.827183 45.944499) (xy 64.827167 45.9445) + (xy 61.859057 45.9445) (xy 61.700942 45.9445) (xy 61.548215 45.985423) (xy 61.548214 45.985423) + (xy 61.548212 45.985424) (xy 61.548209 45.985425) (xy 61.498096 46.014359) (xy 61.498095 46.01436) + (xy 61.48423 46.022365) (xy 61.411285 46.064479) (xy 61.411282 46.064481) (xy 61.349059 46.126705) + (xy 61.29948 46.176284) (xy 61.299478 46.176286) (xy 61.24448 46.231284) (xy 61.19018 46.285584) + (xy 61.128857 46.319068) (xy 61.059165 46.314084) (xy 61.01482 46.285584) (xy 60.132347 45.403111) + (xy 59.26368 44.534444) (xy 59.230195 44.473121) (xy 59.235179 44.403429) (xy 59.263678 44.359084) + (xy 60.108506 43.514257) (xy 60.108511 43.514253) (xy 60.118714 43.504049) (xy 60.118716 43.504049) + (xy 60.23052 43.392245) (xy 60.309577 43.255313) (xy 60.3505 43.102586) (xy 60.3505 39.25348) (xy 60.370185 39.186441) + (xy 60.422989 39.140686) (xy 60.492147 39.130742) (xy 60.532947 39.144119) (xy 60.635273 39.198814) + (xy 60.823868 39.256024) (xy 61.02 39.275341) (xy 61.216132 39.256024) (xy 61.404727 39.198814) + (xy 61.578538 39.10591) (xy 61.578544 39.105904) (xy 61.583607 39.102523) (xy 61.584703 39.104164) + (xy 61.640639 39.080405) (xy 61.709507 39.092194) (xy 61.726148 39.102888) (xy 61.726393 39.102523) + (xy 61.731458 39.105907) (xy 61.731462 39.10591) (xy 61.905273 39.198814) (xy 62.093868 39.256024) + (xy 62.29 39.275341) (xy 62.486132 39.256024) (xy 62.674727 39.198814) (xy 62.848538 39.10591) (xy 62.848544 39.105904) + (xy 62.853607 39.102523) (xy 62.854703 39.104164) (xy 62.910639 39.080405) (xy 62.979507 39.092194) + (xy 62.996148 39.102888) (xy 62.996393 39.102523) (xy 63.001458 39.105907) (xy 63.001462 39.10591) + (xy 63.175273 39.198814) (xy 63.363868 39.256024) (xy 63.56 39.275341) (xy 63.756132 39.256024) + (xy 63.944727 39.198814) (xy 64.118538 39.10591) (xy 64.118544 39.105904) (xy 64.123607 39.102523) + (xy 64.124703 39.104164) (xy 64.180639 39.080405) (xy 64.249507 39.092194) (xy 64.266148 39.102888) + (xy 64.266393 39.102523) (xy 64.271458 39.105907) (xy 64.271462 39.10591) (xy 64.445273 39.198814) + (xy 64.633868 39.256024) (xy 64.83 39.275341) (xy 65.026132 39.256024) (xy 65.214727 39.198814) + (xy 65.388538 39.10591) (xy 65.388544 39.105904) (xy 65.393607 39.102523) (xy 65.394703 39.104164) + (xy 65.450639 39.080405) (xy 65.519507 39.092194) (xy 65.536148 39.102888) (xy 65.536393 39.102523) + (xy 65.541458 39.105907) (xy 65.541462 39.10591) (xy 65.715273 39.198814) (xy 65.903868 39.256024) + (xy 66.1 39.275341) (xy 66.296132 39.256024) (xy 66.484727 39.198814) (xy 66.507876 39.186441) (xy 66.611063 39.131286) + (xy 66.658538 39.10591) (xy 66.810883 38.980883) (xy 66.93591 38.828538) (xy 67.028814 38.654727) + (xy 67.086024 38.466132) (xy 67.105341 38.27) (xy 67.097092 38.186252) (xy 67.11011 38.117609) (xy 67.132808 38.086425) + (xy 67.532418 37.686816) (xy 67.59374 37.653334) (xy 67.620098 37.6505) (xy 68.7255 37.6505) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 56.400011 50.508889) (xy 56.433509 50.532744) (xy 56.588181 50.687416) (xy 56.621666 50.748739) + (xy 56.6245 50.775097) (xy 56.6245 51.123337) (xy 56.624501 51.123355) (xy 56.63465 51.222707) (xy 56.634651 51.22271) + (xy 56.687996 51.383694) (xy 56.688001 51.383705) (xy 56.777029 51.52804) (xy 56.777032 51.528044) + (xy 56.78666 51.537672) (xy 56.820145 51.598995) (xy 56.815161 51.668687) (xy 56.786663 51.713031) + (xy 56.777428 51.722265) (xy 56.777424 51.722271) (xy 56.688457 51.866507) (xy 56.688452 51.866518) + (xy 56.635144 52.027393) (xy 56.625 52.126677) (xy 56.625 52.15) (xy 57.726 52.15) (xy 57.793039 52.169685) + (xy 57.838794 52.222489) (xy 57.85 52.274) (xy 57.85 53.349999) (xy 57.898308 53.349999) (xy 57.898322 53.349998) + (xy 57.997607 53.339855) (xy 58.158481 53.286547) (xy 58.158492 53.286542) (xy 58.302731 53.197573) + (xy 58.302733 53.197572) (xy 58.321246 53.179059) (xy 58.382568 53.145572) (xy 58.45226 53.150555) + (xy 58.49661 53.179057) (xy 58.548129 53.230576) (xy 58.548133 53.230579) (xy 58.548135 53.230581) + (xy 58.689602 53.314244) (xy 58.702809 53.318081) (xy 58.847426 53.360097) (xy 58.847429 53.360097) + (xy 58.847431 53.360098) (xy 58.884306 53.363) (xy 58.884314 53.363) (xy 59.315686 53.363) (xy 59.315694 53.363) + (xy 59.352569 53.360098) (xy 59.352571 53.360097) (xy 59.352573 53.360097) (xy 59.422245 53.339855) + (xy 59.510398 53.314244) (xy 59.511181 53.313781) (xy 59.512369 53.313079) (xy 59.514112 53.312636) + (xy 59.517557 53.311146) (xy 59.517797 53.311701) (xy 59.580093 53.295895) (xy 59.632397 53.311253) + (xy 59.632644 53.310684) (xy 59.637255 53.312679) (xy 59.638612 53.313078) (xy 59.639801 53.313781) + (xy 59.639806 53.313783) (xy 59.797505 53.359599) (xy 59.797511 53.3596) (xy 59.799998 53.359795) + (xy 59.8 53.359795) (xy 60.3 53.359795) (xy 60.300001 53.359795) (xy 60.302486 53.3596) (xy 60.460195 53.313782) + (xy 60.461873 53.31279) (xy 60.463364 53.312411) (xy 60.467354 53.310685) (xy 60.467632 53.311328) + (xy 60.529596 53.295604) (xy 60.582455 53.311124) (xy 60.582646 53.310685) (xy 60.586207 53.312226) + (xy 60.588127 53.31279) (xy 60.589804 53.313782) (xy 60.747514 53.3596) (xy 60.747511 53.3596) (xy 60.749998 53.359795) + (xy 60.75 53.359795) (xy 60.75 52.45) (xy 60.3 52.45) (xy 60.3 53.359795) (xy 59.8 53.359795) (xy 59.8 53.094314) + (xy 59.817267 53.031194) (xy 59.851744 52.972898) (xy 59.89542 52.822567) (xy 59.897597 52.815073) + (xy 59.897598 52.815067) (xy 59.898788 52.799948) (xy 59.9005 52.778194) (xy 59.9005 52.074) (xy 59.920185 52.006961) + (xy 59.972989 51.961206) (xy 60.0245 51.95) (xy 61.126 51.95) (xy 61.193039 51.969685) (xy 61.238794 52.022489) + (xy 61.25 52.074) (xy 61.25 53.359795) (xy 61.250001 53.359795) (xy 61.252486 53.3596) (xy 61.410198 53.313781) + (xy 61.551552 53.230185) (xy 61.551561 53.230178) (xy 61.667678 53.114061) (xy 61.667687 53.11405) + (xy 61.742977 52.98674) (xy 61.794045 52.939056) (xy 61.862787 52.926552) (xy 61.927377 52.953197) + (xy 61.956441 52.986739) (xy 62.031916 53.114361) (xy 62.031923 53.11437) (xy 62.06318 53.145626) + (xy 62.096666 53.206948) (xy 62.0995 53.233308) (xy 62.0995 54.5205) (xy 62.079815 54.587539) (xy 62.027011 54.633294) + (xy 61.9755 54.6445) (xy 61.400097 54.6445) (xy 61.333058 54.624815) (xy 61.312416 54.608181) (xy 61.18759 54.483355) + (xy 61.187588 54.483352) (xy 61.068717 54.364481) (xy 61.068716 54.36448) (xy 60.973487 54.3095) + (xy 60.931785 54.285423) (xy 60.779057 54.244499) (xy 60.620943 54.244499) (xy 60.613347 54.244499) + (xy 60.613331 54.2445) (xy 57.245097 54.2445) (xy 57.178058 54.224815) (xy 57.157416 54.208181) + (xy 57.131763 54.182528) (xy 57.112056 54.156846) (xy 57.10001 54.135981) (xy 57.09802 54.132534) + (xy 56.986216 54.02073) (xy 56.986215 54.020729) (xy 56.981885 54.016399) (xy 56.981874 54.016389) + (xy 56.269319 53.303834) (xy 56.235834 53.242511) (xy 56.233 53.216153) (xy 56.233 52.673322) (xy 56.625001 52.673322) + (xy 56.635144 52.772607) (xy 56.688452 52.933481) (xy 56.688457 52.933492) (xy 56.777424 53.077728) + (xy 56.777427 53.077732) (xy 56.897267 53.197572) (xy 56.897271 53.197575) (xy 57.041507 53.286542) + (xy 57.041518 53.286547) (xy 57.202393 53.339855) (xy 57.301683 53.349999) (xy 57.349999 53.349998) + (xy 57.35 53.349998) (xy 57.35 52.65) (xy 56.625001 52.65) (xy 56.625001 52.673322) (xy 56.233 52.673322) + (xy 56.233 50.678444) (xy 56.233 50.678443) (xy 56.232211 50.6755) (xy 56.226053 50.652516) (xy 56.227717 50.582667) + (xy 56.26688 50.524805) (xy 56.331109 50.497302) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 77.637474 51.295185) (xy 77.683229 51.347989) (xy 77.693053 51.393148) (xy 77.693655 51.393081) + (xy 77.694317 51.398958) (xy 77.694435 51.3995) (xy 77.694435 51.400003) (xy 77.71463 51.579246) + (xy 77.714632 51.579256) (xy 77.743041 51.660442) (xy 77.75 51.701397) (xy 77.75 53.15) (xy 78.153134 53.15) + (xy 78.153149 53.149999) (xy 78.189989 53.1471) (xy 78.189995 53.147099) (xy 78.347693 53.101283) + (xy 78.347696 53.101282) (xy 78.489052 53.017685) (xy 78.489061 53.017678) (xy 78.605178 52.901561) + (xy 78.605185 52.901552) (xy 78.692753 52.753483) (xy 78.694756 52.754667) (xy 78.731969 52.709929) + (xy 78.798598 52.688895) (xy 78.866021 52.707223) (xy 78.912832 52.759093) (xy 78.919485 52.775979) + (xy 78.926954 52.799948) (xy 78.931522 52.814606) (xy 79.005866 52.937585) (xy 79.01953 52.960188) + (xy 79.145118 53.085776) (xy 79.143389 53.087504) (xy 79.177148 53.134723) (xy 79.180605 53.204507) + (xy 79.145784 53.265081) (xy 79.083742 53.297215) (xy 79.060045 53.2995) (xy 78.918384 53.2995) + (xy 78.899145 53.301248) (xy 78.847807 53.305913) (xy 78.685393 53.356522) (xy 78.539814 53.444528) + (xy 78.502744 53.481598) (xy 78.441421 53.515083) (xy 78.371729 53.510097) (xy 78.351943 53.500648) + (xy 78.347901 53.498257) (xy 78.347892 53.498254) (xy 78.190073 53.452402) (xy 78.190067 53.452401) + (xy 78.153201 53.4495) (xy 78.153194 53.4495) (xy 76.987 53.4495) (xy 76.919961 53.429815) (xy 76.874206 53.377011) + (xy 76.863 53.3255) (xy 76.863 53.274) (xy 76.882685 53.206961) (xy 76.935489 53.161206) (xy 76.987 53.15) + (xy 77.25 53.15) (xy 77.25 52.6) (xy 76.594315 52.6) (xy 76.531194 52.582732) (xy 76.476949 52.550652) + (xy 76.472898 52.548256) (xy 76.472897 52.548255) (xy 76.472896 52.548255) (xy 76.472893 52.548254) + (xy 76.315073 52.502402) (xy 76.315067 52.502401) (xy 76.278201 52.4995) (xy 76.278194 52.4995) + (xy 74.971806 52.4995) (xy 74.971798 52.4995) (xy 74.934932 52.502401) (xy 74.934926 52.502402) + (xy 74.777105 52.548254) (xy 74.777099 52.548257) (xy 74.773049 52.550652) (xy 74.705323 52.567829) + (xy 74.639062 52.545665) (xy 74.622255 52.531597) (xy 74.578339 52.487682) (xy 74.544853 52.426359) + (xy 74.549837 52.356668) (xy 74.578336 52.31232) (xy 74.680472 52.210185) (xy 74.747083 52.099998) + (xy 76.265204 52.099998) (xy 76.265205 52.1) (xy 77.25 52.1) (xy 77.25 51.55) (xy 76.84685 51.55) + (xy 76.81001 51.552899) (xy 76.810004 51.5529) (xy 76.652306 51.598716) (xy 76.652303 51.598717) + (xy 76.510947 51.682314) (xy 76.510938 51.682321) (xy 76.394821 51.798438) (xy 76.394814 51.798447) + (xy 76.311218 51.939801) (xy 76.265399 52.097513) (xy 76.265204 52.099998) (xy 74.747083 52.099998) + (xy 74.768478 52.064606) (xy 74.819086 51.902196) (xy 74.8255 51.831616) (xy 74.8255 51.500097) + (xy 74.845185 51.433058) (xy 74.861819 51.412416) (xy 74.962416 51.311819) (xy 75.023739 51.278334) + (xy 75.050097 51.2755) (xy 77.570435 51.2755) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 84.443039 30.520185) (xy 84.488794 30.572989) (xy 84.5 30.6245) (xy 84.5 31.618301) (xy 84.480315 31.68534) + (xy 84.427511 31.731095) (xy 84.358353 31.741039) (xy 84.332668 31.734483) (xy 84.257382 31.706403) + (xy 84.257372 31.706401) (xy 84.197844 31.7) (xy 84 31.7) (xy 84 33.441638) (xy 83.980315 33.508677) + (xy 83.963681 33.529319) (xy 83.95 33.543) (xy 83.95 45.657) (xy 83.963681 45.670681) (xy 83.997166 45.732004) + (xy 84 45.758362) (xy 84 47.5) (xy 84.197828 47.5) (xy 84.197844 47.499999) (xy 84.257372 47.493598) + (xy 84.25738 47.493596) (xy 84.332665 47.465516) (xy 84.402357 47.46053) (xy 84.46368 47.494015) + (xy 84.497166 47.555338) (xy 84.5 47.581697) (xy 84.5 49.900964) (xy 84.480315 49.968003) (xy 84.427511 50.013758) + (xy 84.358353 50.023702) (xy 84.31288 50.007697) (xy 84.297694 49.998716) (xy 84.139995 49.9529) + (xy 84.139989 49.952899) (xy 84.103149 49.95) (xy 83.7 49.95) (xy 83.7 51.55) (xy 84.103134 51.55) + (xy 84.103149 51.549999) (xy 84.139989 51.5471) (xy 84.139995 51.547099) (xy 84.297693 51.501283) + (xy 84.297696 51.501282) (xy 84.312876 51.492305) (xy 84.3806 51.47512) (xy 84.446863 51.497278) + (xy 84.490628 51.551743) (xy 84.5 51.599035) (xy 84.5 51.800383) (xy 84.480315 51.867422) (xy 84.427511 51.913177) + (xy 84.358353 51.923121) (xy 84.312882 51.907117) (xy 84.297897 51.898255) (xy 84.297893 51.898254) + (xy 84.140073 51.852402) (xy 84.140067 51.852401) (xy 84.103201 51.8495) (xy 84.103194 51.8495) + (xy 82.937 51.8495) (xy 82.869961 51.829815) (xy 82.824206 51.777011) (xy 82.813 51.7255) (xy 82.813 51.674) + (xy 82.832685 51.606961) (xy 82.885489 51.561206) (xy 82.937 51.55) (xy 83.2 51.55) (xy 83.2 51) + (xy 82.544315 51) (xy 82.481194 50.982732) (xy 82.440047 50.958398) (xy 82.422898 50.948256) (xy 82.422897 50.948255) + (xy 82.422896 50.948255) (xy 82.422893 50.948254) (xy 82.265073 50.902402) (xy 82.265067 50.902401) + (xy 82.228201 50.8995) (xy 82.228194 50.8995) (xy 81.503476 50.8995) (xy 81.436437 50.879815) (xy 81.390682 50.827011) + (xy 81.380738 50.757853) (xy 81.409763 50.694297) (xy 81.437504 50.670506) (xy 81.438109 50.670126) + (xy 81.502262 50.629816) (xy 81.629816 50.502262) (xy 81.631239 50.499998) (xy 82.215204 50.499998) + (xy 82.215205 50.5) (xy 83.2 50.5) (xy 83.2 49.95) (xy 82.79685 49.95) (xy 82.76001 49.952899) (xy 82.760004 49.9529) + (xy 82.602306 49.998716) (xy 82.602303 49.998717) (xy 82.460947 50.082314) (xy 82.460938 50.082321) + (xy 82.344821 50.198438) (xy 82.344814 50.198447) (xy 82.261218 50.339801) (xy 82.215399 50.497513) + (xy 82.215204 50.499998) (xy 81.631239 50.499998) (xy 81.725789 50.349522) (xy 81.785368 50.179255) + (xy 81.789007 50.146959) (xy 81.805565 50.000003) (xy 81.805565 49.999996) (xy 81.785369 49.82075) + (xy 81.785368 49.820745) (xy 81.773798 49.787681) (xy 81.725789 49.650478) (xy 81.725188 49.649522) + (xy 81.646632 49.524501) (xy 81.629816 49.497738) (xy 81.502262 49.370184) (xy 81.502258 49.37018) + (xy 81.49524 49.365771) (xy 81.448948 49.313437) (xy 81.438299 49.244384) (xy 81.466674 49.180535) + (xy 81.473516 49.17311) (xy 83.121259 47.525369) (xy 83.182578 47.491887) (xy 83.237443 47.492374) + (xy 83.242625 47.493598) (xy 83.302155 47.499999) (xy 83.302172 47.5) (xy 83.5 47.5) (xy 83.5 45.75) + (xy 83.148069 45.75) (xy 83.104736 45.742182) (xy 83.007486 45.70591) (xy 83.007485 45.705909) (xy 83.007483 45.705909) + (xy 82.947873 45.6995) (xy 82.947864 45.6995) (xy 82.5745 45.6995) (xy 82.507461 45.679815) (xy 82.461706 45.627011) + (xy 82.4505 45.5755) (xy 82.4505 45.082412) (xy 82.470185 45.015373) (xy 82.477555 45.005097) (xy 82.47981 45.002267) + (xy 82.479816 45.002262) (xy 82.514009 44.947844) (xy 82.85 44.947844) (xy 82.856401 45.007372) + (xy 82.856403 45.007382) (xy 82.88411 45.081668) (xy 82.889094 45.151359) (xy 82.88411 45.168332) + (xy 82.856403 45.242617) (xy 82.856401 45.242627) (xy 82.85 45.302155) (xy 82.85 45.35) (xy 83.55 45.35) + (xy 83.55 44.9) (xy 82.85 44.9) (xy 82.85 44.947844) (xy 82.514009 44.947844) (xy 82.575789 44.849522) + (xy 82.635368 44.679255) (xy 82.635369 44.679249) (xy 82.646425 44.581124) (xy 82.673491 44.51671) + (xy 82.731086 44.477155) (xy 82.800923 44.475017) (xy 82.844537 44.5) (xy 83.55 44.5) (xy 83.55 44.05) + (xy 82.85 44.05) (xy 82.85 44.097844) (xy 82.856401 44.157372) (xy 82.856403 44.157382) (xy 82.88411 44.231668) + (xy 82.889094 44.301359) (xy 82.88411 44.318333) (xy 82.87418 44.344957) (xy 82.832309 44.400891) + (xy 82.766845 44.425308) (xy 82.698572 44.410457) (xy 82.649166 44.361052) (xy 82.638469 44.327177) + (xy 82.636917 44.327532) (xy 82.635368 44.320745) (xy 82.619361 44.275) (xy 82.575789 44.150478) + (xy 82.479816 43.997738) (xy 82.352262 43.870184) (xy 82.319379 43.849522) (xy 82.199523 43.774211) + (xy 82.029254 43.714631) (xy 82.029249 43.71463) (xy 81.850004 43.694435) (xy 81.849996 43.694435) + (xy 81.67075 43.71463) (xy 81.670745 43.714631) (xy 81.500476 43.774211) (xy 81.347737 43.870184) + (xy 81.220184 43.997737) (xy 81.124211 44.150476) (xy 81.064631 44.320745) (xy 81.06463 44.32075) + (xy 81.044435 44.499996) (xy 81.044435 44.5) (xy 81.06463 44.679249) (xy 81.064631 44.679254) (xy 81.124211 44.849523) + (xy 81.220185 45.002263) (xy 81.222445 45.005097) (xy 81.223334 45.007275) (xy 81.223889 45.008158) + (xy 81.223734 45.008255) (xy 81.248855 45.069783) (xy 81.2495 45.082412) (xy 81.2495 45.599138) + (xy 81.229815 45.666177) (xy 81.213181 45.686819) (xy 81.2 45.7) (xy 81.2 45.95193) (xy 81.192182 45.995263) + (xy 81.155908 46.092517) (xy 81.149501 46.152116) (xy 81.149501 46.152123) (xy 81.1495 46.152135) + (xy 81.1495 47.04787) (xy 81.149501 47.047876) (xy 81.155908 47.107481) (xy 81.155909 47.107483) + (xy 81.192182 47.204737) (xy 81.2 47.248068) (xy 81.2 47.5) (xy 81.236319 47.536319) (xy 81.233065 47.539572) + (xy 81.261588 47.572489) (xy 81.271532 47.641647) (xy 81.242507 47.705203) (xy 81.236475 47.711681) + (xy 80.602066 48.34609) (xy 80.540743 48.379575) (xy 80.471051 48.374591) (xy 80.415118 48.332719) + (xy 80.409391 48.324381) (xy 80.394073 48.300003) (xy 80.329816 48.197738) (xy 80.202262 48.070184) + (xy 80.175361 48.053281) (xy 80.049523 47.974211) (xy 79.879254 47.914631) (xy 79.879249 47.91463) + (xy 79.700004 47.894435) (xy 79.699996 47.894435) (xy 79.52075 47.91463) (xy 79.520745 47.914631) + (xy 79.350476 47.974211) (xy 79.240472 48.043332) (xy 79.173235 48.062332) (xy 79.1064 48.041964) + (xy 79.061186 47.988696) (xy 79.0505 47.938338) (xy 79.0505 47.624499) (xy 79.070185 47.55746) (xy 79.122989 47.511705) + (xy 79.174496 47.500499) (xy 79.547872 47.500499) (xy 79.607483 47.494091) (xy 79.68238 47.466155) + (xy 79.752071 47.461171) (xy 79.769049 47.466156) (xy 79.842621 47.493597) (xy 79.902155 47.499999) + (xy 79.902172 47.5) (xy 79.95 47.5) (xy 80.35 47.5) (xy 80.397828 47.5) (xy 80.397844 47.499999) + (xy 80.457371 47.493598) (xy 80.531666 47.465888) (xy 80.601358 47.460904) (xy 80.618334 47.465888) + (xy 80.692628 47.493598) (xy 80.692627 47.493598) (xy 80.752155 47.499999) (xy 80.752172 47.5) (xy 80.8 47.5) + (xy 80.8 46.8) (xy 80.35 46.8) (xy 80.35 47.5) (xy 79.95 47.5) (xy 79.95 47.248068) (xy 79.957817 47.204737) + (xy 79.994091 47.107483) (xy 80.0005 47.047873) (xy 80.000499 46.4) (xy 80.35 46.4) (xy 80.8 46.4) + (xy 80.8 45.7) (xy 80.752155 45.7) (xy 80.692627 45.706401) (xy 80.692617 45.706403) (xy 80.618332 45.73411) + (xy 80.548641 45.739094) (xy 80.531668 45.73411) (xy 80.457382 45.706403) (xy 80.457372 45.706401) + (xy 80.397844 45.7) (xy 80.35 45.7) (xy 80.35 46.4) (xy 80.000499 46.4) (xy 80.000499 46.152128) + (xy 79.994091 46.092517) (xy 79.983634 46.064481) (xy 79.957818 45.995263) (xy 79.95 45.95193) (xy 79.95 45.7) + (xy 79.902155 45.7) (xy 79.842627 45.706401) (xy 79.842623 45.706402) (xy 79.769046 45.733844) (xy 79.699354 45.738827) + (xy 79.682382 45.733843) (xy 79.629026 45.713943) (xy 79.584677 45.685442) (xy 79.136819 45.237584) + (xy 79.103334 45.176261) (xy 79.1005 45.149903) (xy 79.1005 44.300096) (xy 79.120185 44.233057) + (xy 79.136814 44.21242) (xy 80.101389 43.247844) (xy 82.85 43.247844) (xy 82.856401 43.307372) (xy 82.856403 43.307382) + (xy 82.88411 43.381668) (xy 82.889094 43.451359) (xy 82.88411 43.468332) (xy 82.856403 43.542617) + (xy 82.856401 43.542627) (xy 82.85 43.602155) (xy 82.85 43.65) (xy 83.55 43.65) (xy 83.55 43.2) + (xy 82.85 43.2) (xy 82.85 43.247844) (xy 80.101389 43.247844) (xy 80.951389 42.397844) (xy 82.85 42.397844) + (xy 82.856401 42.457372) (xy 82.856403 42.457382) (xy 82.88411 42.531668) (xy 82.889094 42.601359) + (xy 82.88411 42.618332) (xy 82.856403 42.692617) (xy 82.856401 42.692627) (xy 82.85 42.752155) (xy 82.85 42.8) + (xy 83.55 42.8) (xy 83.55 42.35) (xy 82.85 42.35) (xy 82.85 42.397844) (xy 80.951389 42.397844) + (xy 81.768535 41.580698) (xy 81.828704 41.547844) (xy 82.85 41.547844) (xy 82.856401 41.607372) + (xy 82.856403 41.607382) (xy 82.88411 41.681668) (xy 82.889094 41.751359) (xy 82.88411 41.768332) + (xy 82.856403 41.842617) (xy 82.856401 41.842627) (xy 82.85 41.902155) (xy 82.85 41.95) (xy 83.55 41.95) + (xy 83.55 41.5) (xy 82.85 41.5) (xy 82.85 41.547844) (xy 81.828704 41.547844) (xy 81.829856 41.547215) + (xy 81.842311 41.545163) (xy 81.929255 41.535368) (xy 82.099522 41.475789) (xy 82.252262 41.379816) + (xy 82.379816 41.252262) (xy 82.475789 41.099522) (xy 82.535368 40.929255) (xy 82.535941 40.924171) + (xy 82.555565 40.750003) (xy 82.555565 40.749996) (xy 82.549689 40.697844) (xy 82.85 40.697844) + (xy 82.856401 40.757372) (xy 82.856403 40.757382) (xy 82.88411 40.831668) (xy 82.889094 40.901359) + (xy 82.88411 40.918332) (xy 82.856403 40.992617) (xy 82.856401 40.992627) (xy 82.85 41.052155) (xy 82.85 41.1) + (xy 83.55 41.1) (xy 83.55 40.65) (xy 82.85 40.65) (xy 82.85 40.697844) (xy 82.549689 40.697844) + (xy 82.535369 40.57075) (xy 82.535368 40.570745) (xy 82.486578 40.431311) (xy 82.475789 40.400478) + (xy 82.474635 40.398642) (xy 82.396748 40.274685) (xy 82.379816 40.247738) (xy 82.252262 40.120184) + (xy 82.237587 40.110963) (xy 82.099523 40.024211) (xy 81.929254 39.964631) (xy 81.929249 39.96463) + (xy 81.750004 39.944435) (xy 81.749996 39.944435) (xy 81.57075 39.96463) (xy 81.570745 39.964631) + (xy 81.400476 40.024211) (xy 81.247737 40.120184) (xy 81.120184 40.247737) (xy 81.02421 40.400478) + (xy 80.96463 40.57075) (xy 80.954837 40.657668) (xy 80.92777 40.722082) (xy 80.919298 40.731465) + (xy 79.711681 41.939083) (xy 79.650358 41.972568) (xy 79.580666 41.967584) (xy 79.524733 41.925712) + (xy 79.500316 41.860248) (xy 79.5 41.851402) (xy 79.5 41.5) (xy 78.65 41.5) (xy 78.65 42.35) (xy 79.001402 42.35) + (xy 79.068441 42.369685) (xy 79.114196 42.422489) (xy 79.12414 42.491647) (xy 79.095115 42.555203) + (xy 79.089083 42.561681) (xy 78.019482 43.631281) (xy 78.019478 43.631287) (xy 77.971359 43.714632) + (xy 77.940424 43.768212) (xy 77.940423 43.768213) (xy 77.938816 43.774211) (xy 77.899499 43.920943) + (xy 77.899499 43.920945) (xy 77.899499 44.089046) (xy 77.8995 44.089059) (xy 77.8995 45.36333) (xy 77.899499 45.363348) + (xy 77.899499 45.529061) (xy 77.903344 45.543409) (xy 77.90168 45.613259) (xy 77.862517 45.67112) + (xy 77.798288 45.698623) (xy 77.783569 45.6995) (xy 77.4745 45.6995) (xy 77.407461 45.679815) (xy 77.361706 45.627011) + (xy 77.3505 45.5755) (xy 77.3505 45.08906) (xy 77.350501 45.089047) (xy 77.350501 44.920944) (xy 77.344889 44.9) + (xy 77.309577 44.768216) (xy 77.258216 44.679255) (xy 77.230524 44.63129) (xy 77.230518 44.631282) + (xy 76.201359 43.602123) (xy 75.160915 42.56168) (xy 75.127431 42.500358) (xy 75.132415 42.430666) + (xy 75.174287 42.374733) (xy 75.239751 42.350316) (xy 75.248597 42.35) (xy 75.747828 42.35) (xy 75.747844 42.349999) + (xy 75.807371 42.343598) (xy 75.881666 42.315888) (xy 75.951358 42.310904) (xy 75.968334 42.315888) + (xy 76.042628 42.343598) (xy 76.042627 42.343598) (xy 76.102155 42.349999) (xy 76.102172 42.35) + (xy 76.5 42.35) (xy 77 42.35) (xy 77.397828 42.35) (xy 77.397844 42.349999) (xy 77.457371 42.343598) + (xy 77.531666 42.315888) (xy 77.601358 42.310904) (xy 77.618334 42.315888) (xy 77.692628 42.343598) + (xy 77.692627 42.343598) (xy 77.752155 42.349999) (xy 77.752172 42.35) (xy 78.15 42.35) (xy 78.15 41.5) + (xy 77 41.5) (xy 77 42.35) (xy 76.5 42.35) (xy 76.5 41.5) (xy 74.974 41.5) (xy 74.906961 41.480315) + (xy 74.861206 41.427511) (xy 74.85 41.376) (xy 74.85 41) (xy 75.35 41) (xy 76.5 41) (xy 77 41) (xy 78.15 41) + (xy 78.65 41) (xy 79.5 41) (xy 79.5 40.602172) (xy 79.499999 40.602155) (xy 79.493598 40.542628) + (xy 79.465888 40.468334) (xy 79.460904 40.398642) (xy 79.465888 40.381666) (xy 79.493598 40.307371) + (xy 79.499999 40.247844) (xy 79.5 40.247827) (xy 79.5 39.85) (xy 78.65 39.85) (xy 78.65 41) (xy 78.15 41) + (xy 78.15 39.85) (xy 77 39.85) (xy 77 41) (xy 76.5 41) (xy 76.5 39.85) (xy 75.35 39.85) (xy 75.35 41) + (xy 74.85 41) (xy 74.85 39.85) (xy 74.007175 39.85) (xy 73.999833 39.847844) (xy 82.85 39.847844) + (xy 82.856401 39.907372) (xy 82.856403 39.907382) (xy 82.88411 39.981668) (xy 82.889094 40.051359) + (xy 82.88411 40.068332) (xy 82.856403 40.142617) (xy 82.856401 40.142627) (xy 82.85 40.202155) (xy 82.85 40.25) + (xy 83.55 40.25) (xy 83.55 39.8) (xy 82.85 39.8) (xy 82.85 39.847844) (xy 73.999833 39.847844) (xy 73.940136 39.830315) + (xy 73.894381 39.777511) (xy 73.890134 39.766957) (xy 73.884367 39.750478) (xy 73.829422 39.663034) + (xy 73.788394 39.597738) (xy 73.66084 39.470184) (xy 73.549143 39.4) (xy 73.508099 39.37421) (xy 73.377831 39.328628) + (xy 73.337833 39.314632) (xy 73.319978 39.31262) (xy 73.297588 39.310097) (xy 73.233174 39.283029) + (xy 73.223793 39.274558) (xy 72.547079 38.597844) (xy 74 38.597844) (xy 74.006401 38.657372) (xy 74.006403 38.657382) + (xy 74.03411 38.731668) (xy 74.039094 38.801359) (xy 74.03411 38.818332) (xy 74.006403 38.892617) + (xy 74.006401 38.892627) (xy 74 38.952155) (xy 74 39.35) (xy 74.85 39.35) (xy 75.35 39.35) (xy 76.5 39.35) + (xy 77 39.35) (xy 78.15 39.35) (xy 78.65 39.35) (xy 79.5 39.35) (xy 79.5 38.997844) (xy 82.85 38.997844) + (xy 82.856401 39.057372) (xy 82.856403 39.057382) (xy 82.88411 39.131668) (xy 82.889094 39.201359) + (xy 82.88411 39.218332) (xy 82.856403 39.292617) (xy 82.856401 39.292627) (xy 82.85 39.352155) (xy 82.85 39.4) + (xy 83.55 39.4) (xy 83.55 38.95) (xy 82.85 38.95) (xy 82.85 38.997844) (xy 79.5 38.997844) (xy 79.5 38.952172) + (xy 79.499999 38.952155) (xy 79.493598 38.892628) (xy 79.465888 38.818334) (xy 79.460904 38.748642) + (xy 79.465888 38.731666) (xy 79.493598 38.657371) (xy 79.499999 38.597844) (xy 79.5 38.597827) (xy 79.5 38.2) + (xy 78.65 38.2) (xy 78.65 39.35) (xy 78.15 39.35) (xy 78.15 38.2) (xy 77 38.2) (xy 77 39.35) (xy 76.5 39.35) + (xy 76.5 38.2) (xy 75.35 38.2) (xy 75.35 39.35) (xy 74.85 39.35) (xy 74.85 38.2) (xy 74 38.2) (xy 74 38.597844) + (xy 72.547079 38.597844) (xy 72.097079 38.147844) (xy 82.85 38.147844) (xy 82.856401 38.207372) + (xy 82.856403 38.207382) (xy 82.88411 38.281668) (xy 82.889094 38.351359) (xy 82.88411 38.368332) + (xy 82.856403 38.442617) (xy 82.856401 38.442627) (xy 82.85 38.502155) (xy 82.85 38.55) (xy 83.55 38.55) + (xy 83.55 38.1) (xy 82.85 38.1) (xy 82.85 38.147844) (xy 72.097079 38.147844) (xy 71.48759 37.538355) + (xy 71.487588 37.538352) (xy 71.368717 37.419481) (xy 71.368716 37.41948) (xy 71.261334 37.357483) + (xy 71.261332 37.357482) (xy 71.231785 37.340423) (xy 71.231784 37.340422) (xy 71.231783 37.340422) + (xy 71.175881 37.325443) (xy 71.088969 37.302155) (xy 74 37.302155) (xy 74 37.7) (xy 74.85 37.7) + (xy 75.35 37.7) (xy 76.5 37.7) (xy 77 37.7) (xy 78.15 37.7) (xy 78.65 37.7) (xy 79.499364 37.7) + (xy 79.489449 37.621074) (xy 79.434429 37.488241) (xy 79.382507 37.421403) (xy 79.382496 37.42139) + (xy 79.25895 37.297844) (xy 82.85 37.297844) (xy 82.856401 37.357372) (xy 82.856403 37.357382) (xy 82.88411 37.431668) + (xy 82.889094 37.501359) (xy 82.88411 37.518332) (xy 82.856403 37.592617) (xy 82.856401 37.592627) + (xy 82.85 37.652155) (xy 82.85 37.7) (xy 83.55 37.7) (xy 83.55 37.25) (xy 82.85 37.25) (xy 82.85 37.297844) + (xy 79.25895 37.297844) (xy 78.928609 36.967503) (xy 78.928596 36.967492) (xy 78.861758 36.91557) + (xy 78.728926 36.860549) (xy 78.728922 36.860548) (xy 78.65 36.850634) (xy 78.65 37.7) (xy 78.15 37.7) + (xy 78.15 36.85) (xy 77.752155 36.85) (xy 77.692627 36.856401) (xy 77.692617 36.856403) (xy 77.618332 36.88411) + (xy 77.548641 36.889094) (xy 77.531668 36.88411) (xy 77.457382 36.856403) (xy 77.457372 36.856401) + (xy 77.397844 36.85) (xy 77 36.85) (xy 77 37.7) (xy 76.5 37.7) (xy 76.5 36.85) (xy 76.102155 36.85) + (xy 76.042627 36.856401) (xy 76.042617 36.856403) (xy 75.968332 36.88411) (xy 75.898641 36.889094) + (xy 75.881668 36.88411) (xy 75.807382 36.856403) (xy 75.807372 36.856401) (xy 75.747844 36.85) (xy 75.35 36.85) + (xy 75.35 37.7) (xy 74.85 37.7) (xy 74.85 36.85) (xy 74.452155 36.85) (xy 74.392627 36.856401) (xy 74.39262 36.856403) + (xy 74.257913 36.906645) (xy 74.257906 36.906649) (xy 74.142812 36.992809) (xy 74.142809 36.992812) + (xy 74.056649 37.107906) (xy 74.056645 37.107913) (xy 74.006403 37.24262) (xy 74.006401 37.242627) + (xy 74 37.302155) (xy 71.088969 37.302155) (xy 71.079057 37.299499) (xy 70.920943 37.299499) (xy 70.913347 37.299499) + (xy 70.913331 37.2995) (xy 70.7745 37.2995) (xy 70.707461 37.279815) (xy 70.661706 37.227011) (xy 70.6505 37.1755) + (xy 70.650499 36.80213) (xy 70.650498 36.802123) (xy 70.649445 36.792331) (xy 70.644091 36.742517) + (xy 70.616421 36.668332) (xy 70.611438 36.598642) (xy 70.61642 36.581672) (xy 70.644091 36.507483) + (xy 70.6505 36.447873) (xy 70.6505 36.447844) (xy 82.85 36.447844) (xy 82.856401 36.507372) (xy 82.856403 36.507382) + (xy 82.88411 36.581668) (xy 82.889094 36.651359) (xy 82.88411 36.668332) (xy 82.856403 36.742617) + (xy 82.856401 36.742627) (xy 82.85 36.802155) (xy 82.85 36.85) (xy 83.55 36.85) (xy 83.55 36.4) + (xy 82.85 36.4) (xy 82.85 36.447844) (xy 70.6505 36.447844) (xy 70.650499 35.952128) (xy 70.644091 35.892517) + (xy 70.616421 35.818332) (xy 70.611438 35.748642) (xy 70.61642 35.731672) (xy 70.644091 35.657483) + (xy 70.6505 35.597873) (xy 70.650499 35.102128) (xy 70.644091 35.042517) (xy 70.616421 34.968332) + (xy 70.611438 34.898642) (xy 70.61642 34.881672) (xy 70.644091 34.807483) (xy 70.6505 34.747873) + (xy 70.650499 34.252128) (xy 70.644091 34.192517) (xy 70.616421 34.118332) (xy 70.611438 34.048642) + (xy 70.61642 34.031672) (xy 70.644091 33.957483) (xy 70.6505 33.897873) (xy 70.650499 33.624497) + (xy 70.670183 33.55746) (xy 70.722987 33.511705) (xy 70.774499 33.500499) (xy 71.047871 33.500499) + (xy 71.047872 33.500499) (xy 71.107483 33.494091) (xy 71.181667 33.466421) (xy 71.251358 33.461438) + (xy 71.268327 33.46642) (xy 71.342517 33.494091) (xy 71.402127 33.5005) (xy 71.7755 33.500499) (xy 71.842539 33.520183) + (xy 71.888294 33.572987) (xy 71.8995 33.624499) (xy 71.8995 34.417587) (xy 71.879815 34.484626) + (xy 71.87245 34.494896) (xy 71.870186 34.497734) (xy 71.774211 34.650476) (xy 71.714631 34.820745) + (xy 71.71463 34.82075) (xy 71.694435 34.999996) (xy 71.694435 35.000003) (xy 71.71463 35.179249) + (xy 71.714631 35.179254) (xy 71.774211 35.349523) (xy 71.821637 35.425) (xy 71.870184 35.502262) + (xy 71.997738 35.629816) (xy 72.150478 35.725789) (xy 72.283056 35.77218) (xy 72.320745 35.785368) + (xy 72.32075 35.785369) (xy 72.499996 35.805565) (xy 72.5 35.805565) (xy 72.500004 35.805565) (xy 72.679249 35.785369) + (xy 72.679251 35.785368) (xy 72.679255 35.785368) (xy 72.679258 35.785366) (xy 72.679262 35.785366) + (xy 72.74584 35.762068) (xy 72.849522 35.725789) (xy 72.859028 35.719815) (xy 72.926263 35.700815) + (xy 72.990971 35.719815) (xy 73.000478 35.725789) (xy 73.051605 35.743679) (xy 73.170737 35.785366) + (xy 73.170743 35.785367) (xy 73.170745 35.785368) (xy 73.170746 35.785368) (xy 73.17075 35.785369) + (xy 73.349996 35.805565) (xy 73.35 35.805565) (xy 73.350004 35.805565) (xy 73.529249 35.785369) + (xy 73.529251 35.785368) (xy 73.529255 35.785368) (xy 73.529258 35.785366) (xy 73.529262 35.785366) + (xy 73.59584 35.762068) (xy 73.699522 35.725789) (xy 73.709028 35.719815) (xy 73.776263 35.700815) + (xy 73.840971 35.719815) (xy 73.850478 35.725789) (xy 73.901605 35.743679) (xy 74.020737 35.785366) + (xy 74.020743 35.785367) (xy 74.020745 35.785368) (xy 74.020746 35.785368) (xy 74.02075 35.785369) + (xy 74.199996 35.805565) (xy 74.2 35.805565) (xy 74.200004 35.805565) (xy 74.379249 35.785369) (xy 74.379252 35.785368) + (xy 74.379255 35.785368) (xy 74.549522 35.725789) (xy 74.702262 35.629816) (xy 74.734234 35.597844) + (xy 82.85 35.597844) (xy 82.856401 35.657372) (xy 82.856403 35.657382) (xy 82.88411 35.731668) (xy 82.889094 35.801359) + (xy 82.88411 35.818332) (xy 82.856403 35.892617) (xy 82.856401 35.892627) (xy 82.85 35.952155) (xy 82.85 36) + (xy 83.55 36) (xy 83.55 35.55) (xy 82.85 35.55) (xy 82.85 35.597844) (xy 74.734234 35.597844) (xy 74.829816 35.502262) + (xy 74.925789 35.349522) (xy 74.985368 35.179255) (xy 74.987258 35.162485) (xy 75.005565 35.000003) + (xy 75.005565 34.999996) (xy 74.985369 34.82075) (xy 74.985368 34.820745) (xy 74.96743 34.76948) + (xy 74.925789 34.650478) (xy 74.925174 34.6495) (xy 74.876644 34.572265) (xy 74.829816 34.497738) + (xy 74.829814 34.497736) (xy 74.829813 34.497734) (xy 74.82755 34.494896) (xy 74.826659 34.492715) + (xy 74.826111 34.491842) (xy 74.826264 34.491745) (xy 74.801144 34.430209) (xy 74.8005 34.417587) + (xy 74.8005 33.624499) (xy 74.820185 33.55746) (xy 74.872989 33.511705) (xy 74.924496 33.500499) + (xy 75.297872 33.500499) (xy 75.357483 33.494091) (xy 75.431667 33.466421) (xy 75.501358 33.461438) + (xy 75.518327 33.46642) (xy 75.592517 33.494091) (xy 75.652127 33.5005) (xy 76.147872 33.500499) + (xy 76.207483 33.494091) (xy 76.281667 33.466421) (xy 76.351358 33.461438) (xy 76.368327 33.46642) + (xy 76.442517 33.494091) (xy 76.502127 33.5005) (xy 76.997872 33.500499) (xy 77.057483 33.494091) + (xy 77.131667 33.466421) (xy 77.201358 33.461438) (xy 77.218327 33.46642) (xy 77.292517 33.494091) + (xy 77.352127 33.5005) (xy 77.847872 33.500499) (xy 77.907483 33.494091) (xy 77.981667 33.466421) + (xy 78.051358 33.461438) (xy 78.068327 33.46642) (xy 78.142517 33.494091) (xy 78.202127 33.5005) + (xy 78.697872 33.500499) (xy 78.757483 33.494091) (xy 78.831667 33.466421) (xy 78.901358 33.461438) + (xy 78.918327 33.46642) (xy 78.992517 33.494091) (xy 79.052127 33.5005) (xy 79.372631 33.500499) + (xy 79.439669 33.520183) (xy 79.485424 33.572987) (xy 79.495368 33.642146) (xy 79.477624 33.690471) + (xy 79.424211 33.775476) (xy 79.364631 33.945745) (xy 79.36463 33.94575) (xy 79.344435 34.124996) + (xy 79.344435 34.125003) (xy 79.36463 34.304249) (xy 79.364631 34.304254) (xy 79.424211 34.474523) + (xy 79.448021 34.512416) (xy 79.520184 34.627262) (xy 79.647738 34.754816) (xy 79.800478 34.850789) + (xy 79.928095 34.895444) (xy 79.970745 34.910368) (xy 79.97075 34.910369) (xy 80.149996 34.930565) + (xy 80.15 34.930565) (xy 80.150004 34.930565) (xy 80.329249 34.910369) (xy 80.329251 34.910368) + (xy 80.329255 34.910368) (xy 80.329258 34.910366) (xy 80.329262 34.910366) (xy 80.411275 34.881668) + (xy 80.499522 34.850789) (xy 80.509028 34.844815) (xy 80.576263 34.825815) (xy 80.640971 34.844815) + (xy 80.650478 34.850789) (xy 80.702318 34.868928) (xy 80.820737 34.910366) (xy 80.820743 34.910367) + (xy 80.820745 34.910368) (xy 80.820746 34.910368) (xy 80.82075 34.910369) (xy 80.999996 34.930565) + (xy 81 34.930565) (xy 81.000004 34.930565) (xy 81.179249 34.910369) (xy 81.179252 34.910368) (xy 81.179255 34.910368) + (xy 81.349522 34.850789) (xy 81.502262 34.754816) (xy 81.509234 34.747844) (xy 82.85 34.747844) + (xy 82.856401 34.807372) (xy 82.856403 34.807382) (xy 82.88411 34.881668) (xy 82.889094 34.951359) + (xy 82.88411 34.968332) (xy 82.856403 35.042617) (xy 82.856401 35.042627) (xy 82.85 35.102155) (xy 82.85 35.15) + (xy 83.55 35.15) (xy 83.55 34.7) (xy 82.85 34.7) (xy 82.85 34.747844) (xy 81.509234 34.747844) (xy 81.629816 34.627262) + (xy 81.725789 34.474522) (xy 81.785368 34.304255) (xy 81.785369 34.304249) (xy 81.805565 34.125003) + (xy 81.805565 34.124996) (xy 81.785369 33.94575) (xy 81.785368 33.945745) (xy 81.768607 33.897844) + (xy 82.85 33.897844) (xy 82.856401 33.957372) (xy 82.856403 33.957382) (xy 82.88411 34.031668) (xy 82.889094 34.101359) + (xy 82.88411 34.118332) (xy 82.856403 34.192617) (xy 82.856401 34.192627) (xy 82.85 34.252155) (xy 82.85 34.3) + (xy 83.55 34.3) (xy 83.55 33.85) (xy 82.85 33.85) (xy 82.85 33.897844) (xy 81.768607 33.897844) + (xy 81.725788 33.775476) (xy 81.642853 33.643486) (xy 81.623853 33.576249) (xy 81.644221 33.509414) + (xy 81.65 33.502316) (xy 81.65 33.5) (xy 82.05 33.5) (xy 82.097828 33.5) (xy 82.097844 33.499999) + (xy 82.157371 33.493598) (xy 82.231666 33.465888) (xy 82.301358 33.460904) (xy 82.318334 33.465888) + (xy 82.392628 33.493598) (xy 82.392627 33.493598) (xy 82.452155 33.499999) (xy 82.452172 33.5) (xy 82.5 33.5) + (xy 82.5 33.45) (xy 82.9 33.45) (xy 83.5 33.45) (xy 83.5 32.85) (xy 82.9 32.85) (xy 82.9 33.45) + (xy 82.5 33.45) (xy 82.5 32.8) (xy 82.05 32.8) (xy 82.05 33.5) (xy 81.65 33.5) (xy 81.65 33.248068) + (xy 81.657817 33.204737) (xy 81.694091 33.107483) (xy 81.7005 33.047873) (xy 81.700499 32.4) (xy 82.05 32.4) + (xy 82.5 32.4) (xy 82.5 32.35) (xy 82.9 32.35) (xy 83.5 32.35) (xy 83.5 31.7) (xy 83.302155 31.7) + (xy 83.242627 31.706401) (xy 83.242617 31.706403) (xy 83.168332 31.73411) (xy 83.098641 31.739094) + (xy 83.081668 31.73411) (xy 83.007382 31.706403) (xy 83.007372 31.706401) (xy 82.947844 31.7) (xy 82.9 31.7) + (xy 82.9 32.35) (xy 82.5 32.35) (xy 82.5 31.7) (xy 82.452155 31.7) (xy 82.392627 31.706401) (xy 82.392617 31.706403) + (xy 82.318332 31.73411) (xy 82.248641 31.739094) (xy 82.231668 31.73411) (xy 82.157382 31.706403) + (xy 82.157372 31.706401) (xy 82.097844 31.7) (xy 82.05 31.7) (xy 82.05 32.4) (xy 81.700499 32.4) + (xy 81.700499 32.152128) (xy 81.694091 32.092517) (xy 81.689892 32.08126) (xy 81.657818 31.995263) + (xy 81.65 31.95193) (xy 81.65 31.7) (xy 81.602155 31.7) (xy 81.542627 31.706401) (xy 81.542623 31.706402) + (xy 81.469046 31.733844) (xy 81.399354 31.738827) (xy 81.382382 31.733843) (xy 81.307488 31.70591) + (xy 81.307484 31.705909) (xy 81.307483 31.705909) (xy 81.247873 31.6995) (xy 81.247863 31.6995) + (xy 80.752129 31.6995) (xy 80.752123 31.699501) (xy 80.692516 31.705908) (xy 80.618332 31.733577) + (xy 80.54864 31.738561) (xy 80.531668 31.733577) (xy 80.457488 31.70591) (xy 80.457484 31.705909) + (xy 80.457483 31.705909) (xy 80.397873 31.6995) (xy 80.397863 31.6995) (xy 79.902129 31.6995) (xy 79.902123 31.699501) + (xy 79.842516 31.705908) (xy 79.768332 31.733577) (xy 79.69864 31.738561) (xy 79.681668 31.733577) + (xy 79.607488 31.70591) (xy 79.607484 31.705909) (xy 79.607483 31.705909) (xy 79.547873 31.6995) + (xy 79.547863 31.6995) (xy 79.052129 31.6995) (xy 79.052123 31.699501) (xy 78.992516 31.705908) + (xy 78.918332 31.733577) (xy 78.84864 31.738561) (xy 78.831668 31.733577) (xy 78.757488 31.70591) + (xy 78.757484 31.705909) (xy 78.757483 31.705909) (xy 78.697873 31.6995) (xy 78.697864 31.6995) + (xy 78.330011 31.6995) (xy 78.262972 31.679815) (xy 78.217217 31.627011) (xy 78.207273 31.557853) + (xy 78.228203 31.509473) (xy 78.226111 31.508158) (xy 78.229816 31.502262) (xy 78.325789 31.349522) + (xy 78.385368 31.179255) (xy 78.387481 31.160504) (xy 78.405565 31.000003) (xy 78.405565 30.999996) + (xy 78.385369 30.82075) (xy 78.385367 30.820742) (xy 78.33103 30.665454) (xy 78.327469 30.595676) + (xy 78.362198 30.535048) (xy 78.424191 30.502821) (xy 78.448072 30.5005) (xy 84.376 30.5005) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 46.438834 37.512914) (xy 46.494767 37.554786) (xy 46.519184 37.62025) (xy 46.5195 37.629096) + (xy 46.5195 37.858284) (xy 46.499815 37.925323) (xy 46.459652 37.9644) (xy 46.409811 37.99453) (xy 46.28953 38.114811) + (xy 46.201522 38.260393) (xy 46.150913 38.422807) (xy 46.145782 38.479275) (xy 46.1445 38.493384) + (xy 46.1445 39.006616) (xy 46.145445 39.017015) (xy 46.150913 39.077192) (xy 46.150913 39.077194) + (xy 46.150914 39.077196) (xy 46.201522 39.239606) (xy 46.282893 39.37421) (xy 46.28953 39.385188) + (xy 46.392015 39.487673) (xy 46.4255 39.548996) (xy 46.420516 39.618688) (xy 46.392015 39.663035) + (xy 46.289928 39.765121) (xy 46.289927 39.765122) (xy 46.20198 39.910604) (xy 46.151409 40.072893) + (xy 46.145 40.143427) (xy 46.145 40.15) (xy 47.246 40.15) (xy 47.313039 40.169685) (xy 47.358794 40.222489) + (xy 47.37 40.274) (xy 47.37 41.299999) (xy 47.451576 41.299999) (xy 47.471775 41.298163) (xy 47.540321 41.311698) + (xy 47.590668 41.360143) (xy 47.607 41.421654) (xy 47.607 41.640567) (xy 47.587315 41.707606) (xy 47.534511 41.753361) + (xy 47.465353 41.763305) (xy 47.443996 41.758273) (xy 47.372709 41.734651) (xy 47.273346 41.7245) + (xy 46.726662 41.7245) (xy 46.726644 41.724501) (xy 46.627292 41.73465) (xy 46.627289 41.734651) + (xy 46.466305 41.787996) (xy 46.466294 41.788001) (xy 46.321959 41.877029) (xy 46.321953 41.877033) + (xy 46.312324 41.886663) (xy 46.251 41.920146) (xy 46.181308 41.915159) (xy 46.136965 41.88666) + (xy 46.127732 41.877427) (xy 46.127728 41.877424) (xy 45.983492 41.788457) (xy 45.983481 41.788452) + (xy 45.822606 41.735144) (xy 45.723322 41.725) (xy 45.7 41.725) (xy 45.7 43.674999) (xy 45.723308 43.674999) + (xy 45.723322 43.674998) (xy 45.822607 43.664855) (xy 45.983481 43.611547) (xy 45.983492 43.611542) + (xy 46.127731 43.522573) (xy 46.136959 43.513345) (xy 46.198279 43.479856) (xy 46.267971 43.484835) + (xy 46.312327 43.513339) (xy 46.321957 43.522969) (xy 46.329965 43.527908) (xy 46.340594 43.534464) + (xy 46.387319 43.58641) (xy 46.399499 43.640003) (xy 46.399499 43.762106) (xy 46.399498 43.762106) + (xy 46.401135 43.768215) (xy 46.440423 43.914837) (xy 46.440424 43.914839) (xy 46.440423 43.914839) + (xy 46.457509 43.944431) (xy 46.457511 43.944433) (xy 46.457512 43.944435) (xy 46.488286 43.997737) + (xy 46.519479 44.051767) (xy 46.638349 44.170637) (xy 46.638354 44.170641) (xy 48.098232 45.63052) + (xy 48.098234 45.630521) (xy 48.098238 45.630524) (xy 48.235157 45.709573) (xy 48.23516 45.709575) + (xy 48.235164 45.709577) (xy 48.387891 45.750501) (xy 48.387893 45.750501) (xy 48.553602 45.750501) + (xy 48.553618 45.7505) (xy 53.873883 45.7505) (xy 53.873899 45.750501) (xy 53.881495 45.750501) + (xy 54.039606 45.750501) (xy 54.039609 45.750501) (xy 54.192337 45.709577) (xy 54.26311 45.668716) + (xy 54.329268 45.63052) (xy 54.441072 45.518716) (xy 54.441072 45.518714) (xy 54.451276 45.508511) + (xy 54.45128 45.508506) (xy 54.578506 45.38128) (xy 54.578511 45.381276) (xy 54.588714 45.371072) + (xy 54.588716 45.371072) (xy 54.70052 45.259268) (xy 54.710128 45.242627) (xy 54.713088 45.2375) + (xy 54.763654 45.189285) (xy 54.820475 45.1755) (xy 57.170943 45.1755) (xy 58.11186 45.1755) (xy 58.111876 45.175501) + (xy 58.119472 45.175501) (xy 58.154904 45.175501) (xy 58.221943 45.195186) (xy 58.242585 45.21182) + (xy 59.163583 46.132819) (xy 59.197068 46.194142) (xy 59.192084 46.263834) (xy 59.150212 46.319767) + (xy 59.084748 46.344184) (xy 59.075902 46.3445) (xy 58.774997 46.3445) (xy 58.703059 46.349644) + (xy 58.565005 46.390182) (xy 58.443969 46.467967) (xy 58.437268 46.473775) (xy 58.434884 46.471024) + (xy 58.39022 46.499399) (xy 58.320351 46.499034) (xy 58.268227 46.467922) (xy 58.152732 46.352427) + (xy 58.152728 46.352424) (xy 58.008492 46.263457) (xy 58.008481 46.263452) (xy 57.847605 46.210143) + (xy 57.840988 46.208727) (xy 57.841619 46.205779) (xy 57.789103 46.18407) (xy 57.749214 46.126705) + (xy 57.746671 46.056882) (xy 57.761303 46.022365) (xy 57.831544 45.908488) (xy 57.831547 45.908481) + (xy 57.884855 45.747606) (xy 57.894999 45.648322) (xy 57.895 45.648309) (xy 57.895 45.625) (xy 55.945001 45.625) + (xy 55.945001 45.648322) (xy 55.955144 45.747607) (xy 56.008452 45.908481) (xy 56.008455 45.908488) + (xy 56.056206 45.985902) (xy 56.074647 46.053294) (xy 56.053725 46.119958) (xy 56.034032 46.136394) + (xy 56.036319 46.138681) (xy 56 46.175) (xy 56 46.875) (xy 56.691638 46.875) (xy 56.758677 46.894685) + (xy 56.765273 46.9) (xy 57.576 46.9) (xy 57.643039 46.919685) (xy 57.688794 46.972489) (xy 57.7 47.024) + (xy 57.7 47.276) (xy 57.680315 47.343039) (xy 57.627511 47.388794) (xy 57.576 47.4) (xy 56.508362 47.4) + (xy 56.441323 47.380315) (xy 56.434727 47.375) (xy 54.775001 47.375) (xy 54.775001 47.398322) (xy 54.785144 47.497607) + (xy 54.838452 47.658481) (xy 54.838457 47.658492) (xy 54.927424 47.802728) (xy 54.927427 47.802732) + (xy 54.93666 47.811965) (xy 54.970145 47.873288) (xy 54.965161 47.94298) (xy 54.936663 47.987324) + (xy 54.927033 47.996953) (xy 54.927031 47.996956) (xy 54.836641 48.1435) (xy 54.784693 48.190224) + (xy 54.71573 48.201445) (xy 54.667983 48.185134) (xy 54.647898 48.173256) (xy 54.647897 48.173255) + (xy 54.647896 48.173255) (xy 54.647893 48.173254) (xy 54.490073 48.127402) (xy 54.490067 48.127401) + (xy 54.453201 48.1245) (xy 54.453194 48.1245) (xy 53.146806 48.1245) (xy 53.146798 48.1245) (xy 53.109932 48.127401) + (xy 53.109926 48.127402) (xy 52.952106 48.173254) (xy 52.952103 48.173255) (xy 52.894652 48.207232) + (xy 52.831531 48.2245) (xy 50.920808 48.2245) (xy 50.853769 48.204815) (xy 50.833126 48.18818) (xy 50.80187 48.156923) + (xy 50.801862 48.156917) (xy 50.660396 48.073255) (xy 50.660393 48.073254) (xy 50.502573 48.027402) + (xy 50.502567 48.027401) (xy 50.465701 48.0245) (xy 50.465694 48.0245) (xy 49.934306 48.0245) (xy 49.934298 48.0245) + (xy 49.897432 48.027401) (xy 49.897426 48.027402) (xy 49.739606 48.073254) (xy 49.739603 48.073255) + (xy 49.598137 48.156917) (xy 49.598129 48.156923) (xy 49.481923 48.273129) (xy 49.481917 48.273137) + (xy 49.398255 48.414603) (xy 49.398254 48.414605) (xy 49.379187 48.480234) (xy 49.34158 48.539119) + (xy 49.278107 48.568325) (xy 49.208921 48.558579) (xy 49.155987 48.512974) (xy 49.142405 48.484641) + (xy 49.111548 48.39152) (xy 49.111542 48.391507) (xy 49.022575 48.247271) (xy 49.022572 48.247267) + (xy 48.902732 48.127427) (xy 48.902728 48.127424) (xy 48.758492 48.038457) (xy 48.758481 48.038452) + (xy 48.597606 47.985144) (xy 48.498322 47.975) (xy 48.45 47.975) (xy 48.45 49.051) (xy 48.430315 49.118039) + (xy 48.377511 49.163794) (xy 48.326 49.175) (xy 47.225001 49.175) (xy 47.225001 49.198322) (xy 47.235144 49.297607) + (xy 47.288452 49.458481) (xy 47.288457 49.458492) (xy 47.377424 49.602728) (xy 47.377427 49.602732) + (xy 47.38666 49.611965) (xy 47.420145 49.673288) (xy 47.415161 49.74298) (xy 47.386663 49.787324) + (xy 47.377033 49.796953) (xy 47.377031 49.796956) (xy 47.365535 49.815596) (xy 47.313588 49.862321) + (xy 47.259996 49.8745) (xy 46.866519 49.8745) (xy 46.79948 49.854815) (xy 46.778838 49.838181) (xy 46.728338 49.787681) + (xy 46.694853 49.726358) (xy 46.699837 49.656666) (xy 46.728336 49.61232) (xy 46.830472 49.510185) + (xy 46.918478 49.364606) (xy 46.969086 49.202196) (xy 46.9755 49.131616) (xy 46.9755 48.651677) + (xy 47.225 48.651677) (xy 47.225 48.675) (xy 47.95 48.675) (xy 47.95 47.975) (xy 47.949999 47.974999) + (xy 47.901693 47.975) (xy 47.901675 47.975001) (xy 47.802392 47.985144) (xy 47.641518 48.038452) + (xy 47.641507 48.038457) (xy 47.497271 48.127424) (xy 47.497267 48.127427) (xy 47.377427 48.247267) + (xy 47.377424 48.247271) (xy 47.288457 48.391507) (xy 47.288452 48.391518) (xy 47.235144 48.552393) + (xy 47.225 48.651677) (xy 46.9755 48.651677) (xy 46.9755 48.618384) (xy 46.969086 48.547804) (xy 46.918478 48.385394) + (xy 46.830472 48.239815) (xy 46.83047 48.239813) (xy 46.830469 48.239811) (xy 46.710188 48.11953) + (xy 46.709248 48.118962) (xy 46.564606 48.031522) (xy 46.402196 47.980914) (xy 46.402194 47.980913) + (xy 46.402192 47.980913) (xy 46.352778 47.976423) (xy 46.331616 47.9745) (xy 46.331613 47.9745) + (xy 46.000097 47.9745) (xy 45.933058 47.954815) (xy 45.912416 47.938181) (xy 44.825912 46.851677) + (xy 54.775 46.851677) (xy 54.775 46.875) (xy 55.5 46.875) (xy 55.5 46.175) (xy 55.499999 46.174999) + (xy 55.451693 46.175) (xy 55.451675 46.175001) (xy 55.352392 46.185144) (xy 55.191518 46.238452) + (xy 55.191507 46.238457) (xy 55.047271 46.327424) (xy 55.047267 46.327427) (xy 54.927427 46.447267) + (xy 54.927424 46.447271) (xy 54.838457 46.591507) (xy 54.838452 46.591518) (xy 54.785144 46.752393) + (xy 54.775 46.851677) (xy 44.825912 46.851677) (xy 43.736819 45.762584) (xy 43.703334 45.701261) + (xy 43.7005 45.674903) (xy 43.7005 42.998322) (xy 44.500001 42.998322) (xy 44.510144 43.097607) + (xy 44.563452 43.258481) (xy 44.563457 43.258492) (xy 44.652424 43.402728) (xy 44.652427 43.402732) + (xy 44.772267 43.522572) (xy 44.772271 43.522575) (xy 44.916507 43.611542) (xy 44.916518 43.611547) + (xy 45.077393 43.664855) (xy 45.176683 43.674999) (xy 45.2 43.674998) (xy 45.2 42.95) (xy 44.500001 42.95) + (xy 44.500001 42.998322) (xy 43.7005 42.998322) (xy 43.7005 42.401677) (xy 44.5 42.401677) (xy 44.5 42.45) + (xy 45.2 42.45) (xy 45.2 41.724999) (xy 45.176693 41.725) (xy 45.176674 41.725001) (xy 45.077392 41.735144) + (xy 44.916518 41.788452) (xy 44.916507 41.788457) (xy 44.772271 41.877424) (xy 44.772267 41.877427) + (xy 44.652427 41.997267) (xy 44.652424 41.997271) (xy 44.563457 42.141507) (xy 44.563452 42.141518) + (xy 44.510144 42.302393) (xy 44.5 42.401677) (xy 43.7005 42.401677) (xy 43.7005 40.656582) (xy 46.145001 40.656582) + (xy 46.151408 40.727102) (xy 46.151409 40.727107) (xy 46.201981 40.889396) (xy 46.289927 41.034877) + (xy 46.410122 41.155072) (xy 46.555604 41.243019) (xy 46.555603 41.243019) (xy 46.717894 41.29359) + (xy 46.717892 41.29359) (xy 46.788418 41.299999) (xy 46.869999 41.299998) (xy 46.87 41.299998) (xy 46.87 40.65) + (xy 46.145001 40.65) (xy 46.145001 40.656582) (xy 43.7005 40.656582) (xy 43.7005 40.200096) (xy 43.720185 40.133057) + (xy 43.736814 40.11242) (xy 46.307819 37.541414) (xy 46.369142 37.50793) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 70.8557 39.705381) (xy 70.862178 39.711413) (xy 71.598728 40.447964) (xy 72.318384 41.16762) + (xy 72.351869 41.228943) (xy 72.353923 41.241417) (xy 72.373208 41.412583) (xy 72.373209 41.412587) + (xy 72.432789 41.582856) (xy 72.481491 41.660364) (xy 72.522105 41.725001) (xy 72.527777 41.734027) + (xy 72.546777 41.801263) (xy 72.527777 41.865971) (xy 72.432789 42.017142) (xy 72.373209 42.187411) + (xy 72.373208 42.187416) (xy 72.353013 42.366662) (xy 72.353013 42.366669) (xy 72.373208 42.545915) + (xy 72.373209 42.54592) (xy 72.432789 42.716189) (xy 72.527777 42.867361) (xy 72.546777 42.934598) + (xy 72.527777 42.999305) (xy 72.432789 43.150476) (xy 72.373209 43.320745) (xy 72.373208 43.32075) + (xy 72.353013 43.499996) (xy 72.353013 43.500003) (xy 72.373208 43.679249) (xy 72.373209 43.679254) + (xy 72.432789 43.849523) (xy 72.528762 44.002262) (xy 72.563819 44.037319) (xy 72.597304 44.098642) + (xy 72.59232 44.168334) (xy 72.563819 44.212681) (xy 72.528762 44.247737) (xy 72.432789 44.400476) + (xy 72.373209 44.570745) (xy 72.373208 44.57075) (xy 72.353013 44.749996) (xy 72.353013 44.750003) + (xy 72.373208 44.929249) (xy 72.373209 44.929254) (xy 72.432789 45.099523) (xy 72.528762 45.252262) + (xy 72.656317 45.379817) (xy 72.800648 45.470507) (xy 72.846938 45.522841) (xy 72.857586 45.591895) + (xy 72.829211 45.655743) (xy 72.770821 45.694115) (xy 72.734675 45.6995) (xy 72.252129 45.6995) + (xy 72.252123 45.699501) (xy 72.192516 45.705908) (xy 72.118332 45.733577) (xy 72.04864 45.738561) + (xy 72.031668 45.733577) (xy 71.957488 45.70591) (xy 71.957484 45.705909) (xy 71.957483 45.705909) + (xy 71.897873 45.6995) (xy 71.897863 45.6995) (xy 71.402129 45.6995) (xy 71.402123 45.699501) (xy 71.342516 45.705908) + (xy 71.268332 45.733577) (xy 71.19864 45.738561) (xy 71.181668 45.733577) (xy 71.107485 45.705909) + (xy 71.107483 45.705908) (xy 71.047883 45.699501) (xy 71.047881 45.6995) (xy 71.047873 45.6995) + (xy 71.047865 45.6995) (xy 70.774499 45.6995) (xy 70.70746 45.679815) (xy 70.661705 45.627011) (xy 70.650499 45.5755) + (xy 70.650499 45.302129) (xy 70.650498 45.302123) (xy 70.645891 45.259268) (xy 70.644091 45.242517) + (xy 70.616421 45.168332) (xy 70.611438 45.098642) (xy 70.61642 45.081672) (xy 70.644091 45.007483) + (xy 70.6505 44.947873) (xy 70.650499 44.452128) (xy 70.644091 44.392517) (xy 70.616421 44.318332) + (xy 70.611438 44.248642) (xy 70.61642 44.231672) (xy 70.644091 44.157483) (xy 70.6505 44.097873) + (xy 70.650499 43.602128) (xy 70.644091 43.542517) (xy 70.616421 43.468332) (xy 70.611438 43.398642) + (xy 70.61642 43.381672) (xy 70.644091 43.307483) (xy 70.6505 43.247873) (xy 70.650499 42.752128) + (xy 70.644091 42.692517) (xy 70.616421 42.618332) (xy 70.611438 42.548642) (xy 70.61642 42.531672) + (xy 70.644091 42.457483) (xy 70.6505 42.397873) (xy 70.650499 41.902128) (xy 70.644091 41.842517) + (xy 70.616421 41.768332) (xy 70.611438 41.698642) (xy 70.61642 41.681672) (xy 70.644091 41.607483) + (xy 70.6505 41.547873) (xy 70.650499 41.052128) (xy 70.644091 40.992517) (xy 70.616421 40.918332) + (xy 70.611438 40.848642) (xy 70.61642 40.831672) (xy 70.644091 40.757483) (xy 70.6505 40.697873) + (xy 70.650499 40.202128) (xy 70.644091 40.142517) (xy 70.616421 40.068332) (xy 70.611438 39.998642) + (xy 70.61642 39.981672) (xy 70.644091 39.907483) (xy 70.6505 39.847873) (xy 70.650499 39.799095) + (xy 70.670182 39.732059) (xy 70.722985 39.686303) (xy 70.792144 39.676358) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 42.930427 30.520185) (xy 42.976182 30.572989) (xy 42.986126 30.642147) (xy 42.973873 30.680795) + (xy 42.934252 30.758552) (xy 42.934251 30.758555) (xy 42.878317 30.930706) (xy 42.85 31.109493) + (xy 42.85 31.6) (xy 43.7 31.6) (xy 43.7 32.1) (xy 42.85 32.1) (xy 42.85 32.590506) (xy 42.878317 32.769293) + (xy 42.934251 32.941444) (xy 42.934252 32.941447) (xy 43.016434 33.102734) (xy 43.122823 33.249169) + (xy 43.25083 33.377176) (xy 43.397265 33.483565) (xy 43.558552 33.565747) (xy 43.558555 33.565748) + (xy 43.730699 33.62168) (xy 43.730712 33.621683) (xy 43.75 33.624738) (xy 43.75 32.666988) (xy 43.75994 32.684205) + (xy 43.815795 32.74006) (xy 43.884204 32.779556) (xy 43.960504 32.8) (xy 44.039496 32.8) (xy 44.115796 32.779556) + (xy 44.184205 32.74006) (xy 44.24006 32.684205) (xy 44.25 32.666988) (xy 44.25 33.624737) (xy 44.269287 33.621683) + (xy 44.2693 33.62168) (xy 44.441444 33.565748) (xy 44.441447 33.565747) (xy 44.602734 33.483565) + (xy 44.749169 33.377176) (xy 44.877176 33.249169) (xy 44.983565 33.102734) (xy 45.065747 32.941447) + (xy 45.065748 32.941444) (xy 45.121682 32.769293) (xy 45.15 32.590506) (xy 45.15 32.1) (xy 44.3 32.1) + (xy 44.3 31.6) (xy 45.15 31.6) (xy 45.15 31.109493) (xy 45.121682 30.930706) (xy 45.065748 30.758555) + (xy 45.065747 30.758552) (xy 45.026127 30.680795) (xy 45.013231 30.612126) (xy 45.039507 30.547386) + (xy 45.096613 30.507128) (xy 45.136612 30.5005) (xy 45.837582 30.5005) (xy 45.904621 30.520185) + (xy 45.950376 30.572989) (xy 45.96032 30.642147) (xy 45.953764 30.667833) (xy 45.925908 30.742517) + (xy 45.922501 30.774211) (xy 45.919501 30.802123) (xy 45.9195 30.802135) (xy 45.9195 32.89787) (xy 45.919501 32.897876) + (xy 45.925908 32.957483) (xy 45.976202 33.092328) (xy 45.976206 33.092335) (xy 46.062452 33.207544) + (xy 46.062455 33.207547) (xy 46.177664 33.293793) (xy 46.177671 33.293797) (xy 46.312517 33.344091) + (xy 46.312516 33.344091) (xy 46.319444 33.344835) (xy 46.372127 33.3505) (xy 47.467872 33.350499) + (xy 47.527483 33.344091) (xy 47.662331 33.293796) (xy 47.777546 33.207546) (xy 47.863796 33.092331) + (xy 47.914091 32.957483) (xy 47.9205 32.897873) (xy 47.920499 30.802128) (xy 47.914091 30.742517) + (xy 47.913727 30.741542) (xy 47.886236 30.667833) (xy 47.881252 30.598141) (xy 47.914737 30.536818) + (xy 47.976061 30.503334) (xy 48.002418 30.5005) (xy 48.637582 30.5005) (xy 48.704621 30.520185) + (xy 48.750376 30.572989) (xy 48.76032 30.642147) (xy 48.753764 30.667833) (xy 48.725908 30.742517) + (xy 48.722501 30.774211) (xy 48.719501 30.802123) (xy 48.7195 30.802135) (xy 48.7195 32.89787) (xy 48.719501 32.897876) + (xy 48.725908 32.957483) (xy 48.776202 33.092328) (xy 48.776206 33.092335) (xy 48.862452 33.207544) + (xy 48.862455 33.207547) (xy 48.977664 33.293793) (xy 48.977671 33.293797) (xy 49.112517 33.344091) + (xy 49.112516 33.344091) (xy 49.119444 33.344835) (xy 49.172127 33.3505) (xy 50.267872 33.350499) + (xy 50.327483 33.344091) (xy 50.462331 33.293796) (xy 50.577546 33.207546) (xy 50.663796 33.092331) + (xy 50.714091 32.957483) (xy 50.7205 32.897873) (xy 50.720499 30.802128) (xy 50.714091 30.742517) + (xy 50.713727 30.741542) (xy 50.686236 30.667833) (xy 50.681252 30.598141) (xy 50.714737 30.536818) + (xy 50.776061 30.503334) (xy 50.802418 30.5005) (xy 51.503388 30.5005) (xy 51.570427 30.520185) + (xy 51.616182 30.572989) (xy 51.626126 30.642147) (xy 51.613873 30.680795) (xy 51.574252 30.758552) + (xy 51.574251 30.758555) (xy 51.518317 30.930706) (xy 51.49 31.109493) (xy 51.49 31.6) (xy 52.34 31.6) + (xy 52.34 32.1) (xy 51.49 32.1) (xy 51.49 32.590506) (xy 51.518317 32.769293) (xy 51.574251 32.941444) + (xy 51.574252 32.941447) (xy 51.656434 33.102734) (xy 51.762823 33.249169) (xy 51.89083 33.377176) + (xy 52.037265 33.483565) (xy 52.198552 33.565747) (xy 52.198555 33.565748) (xy 52.370699 33.62168) + (xy 52.370712 33.621683) (xy 52.39 33.624738) (xy 52.39 32.666988) (xy 52.39994 32.684205) (xy 52.455795 32.74006) + (xy 52.524204 32.779556) (xy 52.600504 32.8) (xy 52.679496 32.8) (xy 52.755796 32.779556) (xy 52.824205 32.74006) + (xy 52.88006 32.684205) (xy 52.89 32.666988) (xy 52.89 33.624737) (xy 52.909287 33.621683) (xy 52.9093 33.62168) + (xy 53.081444 33.565748) (xy 53.081447 33.565747) (xy 53.242734 33.483565) (xy 53.389169 33.377176) + (xy 53.517176 33.249169) (xy 53.623565 33.102734) (xy 53.705747 32.941447) (xy 53.705748 32.941444) + (xy 53.761682 32.769293) (xy 53.79 32.590506) (xy 53.79 32.1) (xy 52.94 32.1) (xy 52.94 31.6) (xy 53.79 31.6) + (xy 53.79 31.109493) (xy 53.761682 30.930706) (xy 53.705748 30.758555) (xy 53.705747 30.758552) + (xy 53.666127 30.680795) (xy 53.653231 30.612126) (xy 53.679507 30.547386) (xy 53.736613 30.507128) + (xy 53.776612 30.5005) (xy 70.502886 30.5005) (xy 70.569925 30.520185) (xy 70.61568 30.572989) (xy 70.625624 30.642147) + (xy 70.596599 30.705703) (xy 70.54384 30.741542) (xy 70.450478 30.77421) (xy 70.297737 30.870184) + (xy 70.170184 30.997737) (xy 70.074211 31.150476) (xy 70.014631 31.320745) (xy 70.01463 31.32075) + (xy 69.994435 31.499996) (xy 69.994435 31.500004) (xy 70.008564 31.62541) (xy 70 31.674301) (xy 70 32.726) + (xy 69.980315 32.793039) (xy 69.927511 32.838794) (xy 69.876 32.85) (xy 69.624 32.85) (xy 69.556961 32.830315) + (xy 69.511206 32.777511) (xy 69.5 32.726) (xy 69.5 31.7) (xy 69.302155 31.7) (xy 69.242627 31.706401) + (xy 69.24262 31.706403) (xy 69.201761 31.721642) (xy 69.132069 31.726625) (xy 69.070747 31.693138) + (xy 69.037263 31.631814) (xy 69.035629 31.621892) (xy 69.035368 31.620745) (xy 69.021369 31.580738) + (xy 68.975789 31.450478) (xy 68.879816 31.297738) (xy 68.752262 31.170184) (xy 68.720897 31.150476) + (xy 68.599523 31.074211) (xy 68.429254 31.014631) (xy 68.429249 31.01463) (xy 68.250004 30.994435) + (xy 68.249996 30.994435) (xy 68.07075 31.01463) (xy 68.070745 31.014631) (xy 67.900476 31.074211) + (xy 67.747737 31.170184) (xy 67.620184 31.297737) (xy 67.524212 31.450475) (xy 67.524211 31.450476) + (xy 67.498497 31.523962) (xy 67.457775 31.580738) (xy 67.39534 31.606226) (xy 67.32075 31.61463) + (xy 67.150478 31.67421) (xy 66.997737 31.770184) (xy 66.870184 31.897737) (xy 66.774211 32.050476) + (xy 66.714631 32.220745) (xy 66.71463 32.22075) (xy 66.694435 32.399996) (xy 66.694435 32.4) (xy 66.71463 32.579249) + (xy 66.714631 32.579254) (xy 66.774211 32.749523) (xy 66.867421 32.897864) (xy 66.870184 32.902262) + (xy 66.997738 33.029816) (xy 67.150478 33.125789) (xy 67.320745 33.185368) (xy 67.351317 33.188812) + (xy 67.415729 33.215876) (xy 67.425116 33.224351) (xy 68.738583 34.537819) (xy 68.772068 34.599142) + (xy 68.767084 34.668834) (xy 68.725212 34.724767) (xy 68.659748 34.749184) (xy 68.650902 34.7495) + (xy 66.400941 34.7495) (xy 66.381102 34.754815) (xy 66.381103 34.754816) (xy 66.248214 34.790423) + (xy 66.248209 34.790426) (xy 66.11129 34.869475) (xy 66.111282 34.869481) (xy 65.999478 34.981286) + (xy 65.013579 35.967184) (xy 64.952256 36.000669) (xy 64.913746 36.002906) (xy 64.830001 35.994659) + (xy 64.83 35.994659) (xy 64.63387 36.013975) (xy 64.445266 36.071188) (xy 64.271467 36.164086) (xy 64.266399 36.167473) + (xy 64.265305 36.165836) (xy 64.209337 36.189596) (xy 64.140471 36.177795) (xy 64.123843 36.167109) + (xy 64.123601 36.167473) (xy 64.118532 36.164086) (xy 63.944733 36.071188) (xy 63.944727 36.071186) + (xy 63.756132 36.013976) (xy 63.756129 36.013975) (xy 63.56 35.994659) (xy 63.36387 36.013975) (xy 63.175266 36.071188) + (xy 63.001467 36.164086) (xy 62.996399 36.167473) (xy 62.995305 36.165836) (xy 62.939337 36.189596) + (xy 62.870471 36.177795) (xy 62.853843 36.167109) (xy 62.853601 36.167473) (xy 62.848532 36.164086) + (xy 62.674733 36.071188) (xy 62.674727 36.071186) (xy 62.486132 36.013976) (xy 62.486129 36.013975) + (xy 62.29 35.994659) (xy 62.09387 36.013975) (xy 61.905266 36.071188) (xy 61.731467 36.164086) (xy 61.726399 36.167473) + (xy 61.725305 36.165836) (xy 61.669337 36.189596) (xy 61.600471 36.177795) (xy 61.583843 36.167109) + (xy 61.583601 36.167473) (xy 61.578532 36.164086) (xy 61.404733 36.071188) (xy 61.404727 36.071186) + (xy 61.216132 36.013976) (xy 61.216129 36.013975) (xy 61.02 35.994659) (xy 60.82387 36.013975) (xy 60.739246 36.039645) + (xy 60.635273 36.071186) (xy 60.63527 36.071187) (xy 60.635268 36.071188) (xy 60.632647 36.072589) + (xy 60.631118 36.072907) (xy 60.629646 36.073517) (xy 60.62953 36.073237) (xy 60.564243 36.086823) + (xy 60.499894 36.06249) (xy 60.492091 36.056648) (xy 60.357376 36.006402) (xy 60.357372 36.006401) + (xy 60.297844 36) (xy 60 36) (xy 60 36.790382) (xy 59.949554 36.739936) (xy 59.875445 36.697149) + (xy 59.792787 36.675) (xy 59.707213 36.675) (xy 59.624555 36.697149) (xy 59.550446 36.739936) (xy 59.489936 36.800446) + (xy 59.447149 36.874555) (xy 59.425 36.957213) (xy 59.425 37.042787) (xy 59.447149 37.125445) (xy 59.489936 37.199554) + (xy 59.540382 37.25) (xy 58.75 37.25) (xy 58.75 37.547844) (xy 58.756401 37.607372) (xy 58.756402 37.607376) + (xy 58.806648 37.742091) (xy 58.81249 37.749894) (xy 58.836908 37.815359) (xy 58.823251 37.879535) + (xy 58.823517 37.879646) (xy 58.822921 37.881082) (xy 58.822589 37.882647) (xy 58.821188 37.885268) + (xy 58.821187 37.88527) (xy 58.821186 37.885273) (xy 58.809037 37.925323) (xy 58.763975 38.07387) + (xy 58.744659 38.27) (xy 58.763975 38.466129) (xy 58.779497 38.517299) (xy 58.803925 38.597827) + (xy 58.821188 38.654733) (xy 58.914086 38.828532) (xy 58.91409 38.828539) (xy 59.039115 38.980882) + (xy 59.059818 38.997872) (xy 59.104165 39.034266) (xy 59.143499 39.09201) (xy 59.1495 39.130119) + (xy 59.1495 41.656957) (xy 59.136891 41.699897) (xy 59.14764 41.721648) (xy 59.1495 41.743042) (xy 59.1495 42.723431) + (xy 59.129815 42.79047) (xy 59.113181 42.811112) (xy 59.109786 42.814507) (xy 59.048463 42.847992) + (xy 58.978771 42.843008) (xy 58.922838 42.801136) (xy 58.898885 42.740709) (xy 58.885369 42.62075) + (xy 58.885368 42.620745) (xy 58.825788 42.450475) (xy 58.762654 42.35) (xy 58.741272 42.31597) (xy 58.722272 42.248736) + (xy 58.741272 42.184029) (xy 58.825789 42.049522) (xy 58.885368 41.879255) (xy 58.885574 41.877427) + (xy 58.90228 41.729159) (xy 58.913425 41.702633) (xy 58.906523 41.691892) (xy 58.90228 41.67084) + (xy 58.885369 41.52075) (xy 58.885368 41.520745) (xy 58.852744 41.427511) (xy 58.825789 41.350478) + (xy 58.729816 41.197738) (xy 58.602262 41.070184) (xy 58.449524 40.974212) (xy 58.44952 40.97421) + (xy 58.323528 40.930123) (xy 58.276802 40.900763) (xy 56.514394 39.138355) (xy 56.514392 39.138352) + (xy 56.395521 39.019481) (xy 56.394008 39.01832) (xy 56.393055 39.017015) (xy 56.389773 39.013733) + (xy 56.390285 39.01322) (xy 56.352809 38.96189) (xy 56.3455 38.919948) (xy 56.3455 38.873966) (xy 56.345499 38.873952) + (xy 56.341246 38.841649) (xy 56.330365 38.759001) (xy 56.271117 38.615963) (xy 56.176867 38.493133) + (xy 56.054037 38.398883) (xy 56.054036 38.398882) (xy 56.054037 38.398882) (xy 55.911002 38.339636) + (xy 55.911 38.339635) (xy 55.910999 38.339635) (xy 55.885452 38.336271) (xy 55.796047 38.3245) (xy 55.79604 38.3245) + (xy 54.769097 38.3245) (xy 54.702058 38.304815) (xy 54.656303 38.252011) (xy 54.646359 38.182853) + (xy 54.675384 38.119297) (xy 54.681416 38.112819) (xy 54.882416 37.911819) (xy 54.943739 37.878334) + (xy 54.970097 37.8755) (xy 55.431613 37.8755) (xy 55.431616 37.8755) (xy 55.502196 37.869086) (xy 55.664606 37.818478) + (xy 55.810185 37.730472) (xy 55.912673 37.627983) (xy 55.973994 37.594499) (xy 56.043685 37.599483) + (xy 56.088034 37.627984) (xy 56.190122 37.730072) (xy 56.335604 37.818019) (xy 56.335603 37.818019) + (xy 56.497894 37.86859) (xy 56.497893 37.86859) (xy 56.568408 37.874998) (xy 56.568426 37.874999) + (xy 57.075 37.874999) (xy 57.081581 37.874999) (xy 57.152102 37.868591) (xy 57.152107 37.86859) + (xy 57.314396 37.818018) (xy 57.459877 37.730072) (xy 57.580072 37.609877) (xy 57.668019 37.464395) + (xy 57.71859 37.302106) (xy 57.725 37.231572) (xy 57.725 37.15) (xy 57.075 37.15) (xy 57.075 37.874999) + (xy 56.568426 37.874999) (xy 56.574999 37.874998) (xy 56.575 37.874998) (xy 56.575 36.65) (xy 57.075 36.65) + (xy 57.724999 36.65) (xy 57.724999 36.568417) (xy 57.718591 36.497897) (xy 57.71859 36.497892) (xy 57.704338 36.452155) + (xy 58.75 36.452155) (xy 58.75 36.75) (xy 59.5 36.75) (xy 59.5 36) (xy 59.202155 36) (xy 59.142627 36.006401) + (xy 59.14262 36.006403) (xy 59.007913 36.056645) (xy 59.007906 36.056649) (xy 58.892812 36.142809) + (xy 58.892809 36.142812) (xy 58.806649 36.257906) (xy 58.806645 36.257913) (xy 58.756403 36.39262) + (xy 58.756401 36.392627) (xy 58.75 36.452155) (xy 57.704338 36.452155) (xy 57.668018 36.335603) + (xy 57.580072 36.190122) (xy 57.459877 36.069927) (xy 57.314395 35.98198) (xy 57.314396 35.98198) + (xy 57.152105 35.931409) (xy 57.152106 35.931409) (xy 57.081572 35.925) (xy 57.075 35.925) (xy 57.075 36.65) + (xy 56.575 36.65) (xy 56.575 35.925) (xy 56.574999 35.924999) (xy 56.568436 35.925) (xy 56.568417 35.925001) + (xy 56.497897 35.931408) (xy 56.497892 35.931409) (xy 56.335603 35.981981) (xy 56.190122 36.069927) + (xy 56.190121 36.069928) (xy 56.088035 36.172015) (xy 56.026712 36.2055) (xy 55.95702 36.200516) + (xy 55.912673 36.172015) (xy 55.810188 36.06953) (xy 55.798542 36.06249) (xy 55.664606 35.981522) + (xy 55.502196 35.930914) (xy 55.502194 35.930913) (xy 55.502192 35.930913) (xy 55.452778 35.926423) + (xy 55.431616 35.9245) (xy 54.918384 35.9245) (xy 54.899145 35.926248) (xy 54.847807 35.930913) + (xy 54.685393 35.981522) (xy 54.539811 36.06953) (xy 54.41953 36.189811) (xy 54.331522 36.335393) + (xy 54.280913 36.497807) (xy 54.2745 36.568386) (xy 54.2745 36.769903) (xy 54.254815 36.836942) + (xy 54.238181 36.857584) (xy 53.337026 37.758739) (xy 53.275703 37.792224) (xy 53.249345 37.795058) + (xy 50.7945 37.795058) (xy 50.727461 37.775373) (xy 50.681706 37.722569) (xy 50.6705 37.671058) + (xy 50.6705 37.174499) (xy 50.690185 37.10746) (xy 50.742989 37.061705) (xy 50.7945 37.050499) (xy 50.977871 37.050499) + (xy 50.977872 37.050499) (xy 51.034096 37.044455) (xy 51.060601 37.044456) (xy 51.112155 37.049999) + (xy 51.112172 37.05) (xy 51.17 37.05) (xy 51.173163 37.046836) (xy 51.189685 36.990571) (xy 51.219686 36.958345) + (xy 51.287546 36.907546) (xy 51.373796 36.792331) (xy 51.424091 36.657483) (xy 51.424091 36.657481) + (xy 51.425323 36.65227) (xy 51.459895 36.591554) (xy 51.521805 36.559166) (xy 51.591397 36.565392) + (xy 51.646575 36.608253) (xy 51.669822 36.674142) (xy 51.67 36.680783) (xy 51.67 37.05) (xy 51.727828 37.05) + (xy 51.727844 37.049999) (xy 51.787372 37.043598) (xy 51.794924 37.041814) (xy 51.79534 37.043575) + (xy 51.855242 37.039283) (xy 51.901786 37.060135) (xy 52.037265 37.158565) (xy 52.198552 37.240747) + (xy 52.198555 37.240748) (xy 52.370699 37.29668) (xy 52.370712 37.296683) (xy 52.39 37.299738) (xy 52.39 36.341988) + (xy 52.39994 36.359205) (xy 52.455795 36.41506) (xy 52.524204 36.454556) (xy 52.600504 36.475) (xy 52.679496 36.475) + (xy 52.755796 36.454556) (xy 52.824205 36.41506) (xy 52.88006 36.359205) (xy 52.89 36.341988) (xy 52.89 37.299737) + (xy 52.909287 37.296683) (xy 52.9093 37.29668) (xy 53.081444 37.240748) (xy 53.081447 37.240747) + (xy 53.242734 37.158565) (xy 53.389169 37.052176) (xy 53.517176 36.924169) (xy 53.623565 36.777734) + (xy 53.705747 36.616447) (xy 53.705748 36.616444) (xy 53.761682 36.444293) (xy 53.79 36.265506) + (xy 53.79 35.925) (xy 52.94 35.925) (xy 52.94 35.425) (xy 53.79 35.425) (xy 53.79 35.084493) (xy 53.761682 34.905706) + (xy 53.705748 34.733555) (xy 53.705747 34.733552) (xy 53.623565 34.572265) (xy 53.517176 34.42583) + (xy 53.389169 34.297823) (xy 53.242734 34.191434) (xy 53.081447 34.109252) (xy 53.081441 34.10925) + (xy 52.909295 34.053318) (xy 52.909285 34.053315) (xy 52.89 34.05026) (xy 52.89 35.008011) (xy 52.88006 34.990795) + (xy 52.824205 34.93494) (xy 52.755796 34.895444) (xy 52.679496 34.875) (xy 52.600504 34.875) (xy 52.524204 34.895444) + (xy 52.455795 34.93494) (xy 52.39994 34.990795) (xy 52.39 35.008011) (xy 52.39 34.05026) (xy 52.370714 34.053315) + (xy 52.370704 34.053318) (xy 52.198558 34.10925) (xy 52.198552 34.109252) (xy 52.037265 34.191434) + (xy 51.89083 34.297823) (xy 51.762828 34.425825) (xy 51.754657 34.437073) (xy 51.699327 34.479738) + (xy 51.629713 34.485716) (xy 51.59234 34.471573) (xy 51.532488 34.437017) (xy 51.532489 34.437017) + (xy 51.500117 34.428343) (xy 51.392475 34.3995) (xy 51.247525 34.3995) (xy 51.139883 34.428343) + (xy 51.107511 34.437017) (xy 50.981988 34.509488) (xy 50.981982 34.509493) (xy 50.879493 34.611982) + (xy 50.879488 34.611988) (xy 50.807017 34.737511) (xy 50.807016 34.737515) (xy 50.7695 34.877525) + (xy 50.7695 34.877527) (xy 50.7695 34.9255) (xy 50.749815 34.992539) (xy 50.697011 35.038294) (xy 50.6455 35.0495) + (xy 50.362131 35.0495) (xy 50.362121 35.049501) (xy 50.320754 35.053948) (xy 50.294247 35.053948) + (xy 50.252873 35.0495) (xy 49.88713 35.0495) (xy 49.887123 35.049501) (xy 49.833253 35.055292) (xy 49.806747 35.055292) + (xy 49.785003 35.052954) (xy 49.752873 35.0495) (xy 49.752869 35.0495) (xy 49.661496 35.0495) (xy 49.594457 35.029815) + (xy 49.554108 34.987499) (xy 49.55052 34.981284) (xy 49.338717 34.769481) (xy 49.338709 34.769475) + (xy 49.229119 34.706204) (xy 49.229118 34.706203) (xy 49.209905 34.695111) (xy 49.201785 34.690423) + (xy 49.049057 34.649499) (xy 48.890943 34.649499) (xy 48.883347 34.649499) (xy 48.883331 34.6495) + (xy 47.721669 34.6495) (xy 47.721653 34.649499) (xy 47.714057 34.649499) (xy 47.555943 34.649499) + (xy 47.403215 34.690423) (xy 47.403213 34.690424) (xy 47.37588 34.706203) (xy 47.375881 34.706204) + (xy 47.266287 34.769477) (xy 47.266282 34.769481) (xy 47.089481 34.946282) (xy 47.089479 34.946285) + (xy 47.065683 34.987501) (xy 47.015115 35.035716) (xy 46.958298 35.0495) (xy 46.88713 35.0495) (xy 46.887123 35.049501) + (xy 46.833253 35.055292) (xy 46.806747 35.055292) (xy 46.791723 35.053676) (xy 46.752873 35.0495) + (xy 46.752866 35.0495) (xy 46.387131 35.0495) (xy 46.387121 35.049501) (xy 46.345754 35.053948) + (xy 46.319247 35.053948) (xy 46.277873 35.0495) (xy 46.1195 35.0495) (xy 46.052461 35.029815) (xy 46.006706 34.977011) + (xy 45.9955 34.9255) (xy 45.9955 34.877527) (xy 45.9955 34.877525) (xy 45.957984 34.737515) (xy 45.930795 34.690423) + (xy 45.885511 34.611988) (xy 45.885506 34.611982) (xy 45.783017 34.509493) (xy 45.783011 34.509488) + (xy 45.657488 34.437017) (xy 45.657489 34.437017) (xy 45.625117 34.428343) (xy 45.517475 34.3995) + (xy 45.122525 34.3995) (xy 44.982515 34.437016) (xy 44.982513 34.437016) (xy 44.977411 34.438384) + (xy 44.907561 34.436721) (xy 44.857636 34.40629) (xy 44.749169 34.297823) (xy 44.602734 34.191434) + (xy 44.441447 34.109252) (xy 44.441441 34.10925) (xy 44.269295 34.053318) (xy 44.269285 34.053315) + (xy 44.25 34.05026) (xy 44.25 35.008011) (xy 44.24006 34.990795) (xy 44.184205 34.93494) (xy 44.115796 34.895444) + (xy 44.039496 34.875) (xy 43.960504 34.875) (xy 43.884204 34.895444) (xy 43.815795 34.93494) (xy 43.75994 34.990795) + (xy 43.75 35.008011) (xy 43.75 34.05026) (xy 43.730714 34.053315) (xy 43.730704 34.053318) (xy 43.558558 34.10925) + (xy 43.558552 34.109252) (xy 43.397265 34.191434) (xy 43.25083 34.297823) (xy 43.122823 34.42583) + (xy 43.016434 34.572265) (xy 42.934252 34.733552) (xy 42.934251 34.733555) (xy 42.878317 34.905706) + (xy 42.85 35.084493) (xy 42.85 35.425) (xy 43.7 35.425) (xy 43.7 35.925) (xy 42.85 35.925) (xy 42.85 36.265506) + (xy 42.878317 36.444293) (xy 42.884365 36.462909) (xy 42.886358 36.53275) (xy 42.850276 36.592582) + (xy 42.787574 36.623408) (xy 42.71816 36.615442) (xy 42.700461 36.606218) (xy 42.649523 36.574211) + (xy 42.479254 36.514631) (xy 42.479249 36.51463) (xy 42.300004 36.494435) (xy 42.299996 36.494435) + (xy 42.120746 36.514631) (xy 42.120745 36.514631) (xy 42.078071 36.529563) (xy 42.008292 36.533124) + (xy 41.949437 36.500202) (xy 41.046819 35.597584) (xy 41.013334 35.536261) (xy 41.0105 35.509903) + (xy 41.0105 33.720169) (xy 41.030185 33.65313) (xy 41.082989 33.607375) (xy 41.091162 33.603989) + (xy 41.212331 33.558796) (xy 41.327546 33.472546) (xy 41.413796 33.357331) (xy 41.464091 33.222483) + (xy 41.4705 33.162873) (xy 41.470499 30.627128) (xy 41.470499 30.627127) (xy 41.470499 30.6245) + (xy 41.490184 30.557461) (xy 41.542987 30.511706) (xy 41.594499 30.5005) (xy 42.863388 30.5005) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 48.300703 38.423586) (xy 48.307181 38.429618) (xy 49.05818 39.180617) (xy 49.091665 39.24194) + (xy 49.094499 39.268298) (xy 49.094499 39.329486) (xy 49.094498 39.329486) (xy 49.135423 39.482217) + (xy 49.148876 39.505518) (xy 49.214477 39.619144) (xy 49.214481 39.619149) (xy 49.34372 39.748388) + (xy 49.343725 39.748392) (xy 49.507651 39.912319) (xy 49.541136 39.973641) (xy 49.536152 40.043333) + (xy 49.507651 40.08768) (xy 49.281804 40.313528) (xy 49.220481 40.347013) (xy 49.15079 40.342029) + (xy 49.106442 40.313528) (xy 49.096671 40.303757) (xy 48.943932 40.207784) (xy 48.773663 40.148204) + (xy 48.773658 40.148203) (xy 48.594413 40.128008) (xy 48.594405 40.128008) (xy 48.415159 40.148203) + (xy 48.415151 40.148205) (xy 48.255345 40.204124) (xy 48.185567 40.207685) (xy 48.124939 40.172956) + (xy 48.092712 40.110963) (xy 48.0909 40.098302) (xy 48.088591 40.072897) (xy 48.08859 40.072892) + (xy 48.038018 39.910603) (xy 47.950072 39.765122) (xy 47.847984 39.663034) (xy 47.814499 39.601711) + (xy 47.819483 39.532019) (xy 47.847983 39.487673) (xy 47.950472 39.385185) (xy 48.038478 39.239606) + (xy 48.089086 39.077196) (xy 48.0955 39.006616) (xy 48.0955 38.517299) (xy 48.115185 38.45026) (xy 48.167989 38.404505) + (xy 48.237147 38.394561) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 44.25 37.299737) (xy 44.269287 37.296683) (xy 44.2693 37.29668) (xy 44.441444 37.240748) (xy 44.441447 37.240747) + (xy 44.602731 37.158567) (xy 44.73821 37.060136) (xy 44.804017 37.036656) (xy 44.854422 37.044269) + (xy 44.857227 37.045315) (xy 44.913163 37.087183) (xy 44.937584 37.152646) (xy 44.922737 37.22092) + (xy 44.901582 37.249181) (xy 43.262407 38.888356) (xy 43.201084 38.921841) (xy 43.131392 38.916857) + (xy 43.075459 38.874985) (xy 43.057684 38.841629) (xy 43.040109 38.791403) (xy 43.025789 38.750478) + (xy 43.004108 38.715973) (xy 42.985107 38.648737) (xy 43.004108 38.584027) (xy 43.025788 38.549524) + (xy 43.045432 38.493386) (xy 43.085368 38.379255) (xy 43.091538 38.3245) (xy 43.105565 38.2) (xy 43.105565 38.199996) + (xy 43.085369 38.02075) (xy 43.085368 38.020745) (xy 43.025788 37.850475) (xy 43.004108 37.815973) + (xy 42.985107 37.748737) (xy 43.004108 37.684027) (xy 43.025788 37.649524) (xy 43.035743 37.621074) + (xy 43.085368 37.479255) (xy 43.087019 37.464606) (xy 43.105565 37.300003) (xy 43.105565 37.299997) + (xy 43.0937 37.194694) (xy 43.105754 37.125872) (xy 43.153103 37.074492) (xy 43.220714 37.056868) + (xy 43.287119 37.078594) (xy 43.289805 37.080492) (xy 43.397265 37.158565) (xy 43.558552 37.240747) + (xy 43.558555 37.240748) (xy 43.730699 37.29668) (xy 43.730712 37.296683) (xy 43.75 37.299738) (xy 43.75 36.341988) + (xy 43.75994 36.359205) (xy 43.815795 36.41506) (xy 43.884204 36.454556) (xy 43.960504 36.475) (xy 44.039496 36.475) + (xy 44.115796 36.454556) (xy 44.184205 36.41506) (xy 44.24006 36.359205) (xy 44.25 36.341988) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 45.128833 35.743679) (xy 45.184767 35.78555) (xy 45.209184 35.851014) (xy 45.2095 35.859861) + (xy 45.209501 36.176) (xy 45.189817 36.243039) (xy 45.137013 36.288794) (xy 45.085501 36.3) (xy 44.541 36.3) + (xy 44.473961 36.280315) (xy 44.428206 36.227511) (xy 44.417 36.176) (xy 44.417 35.924) (xy 44.436685 35.856961) + (xy 44.489489 35.811206) (xy 44.541 35.8) (xy 44.969998 35.8) (xy 44.997818 35.77218) (xy 45.059141 35.738695) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 42.930427 30.520185) (xy 42.976182 30.572989) (xy 42.986126 30.642147) (xy 42.973873 30.680795) + (xy 42.934252 30.758552) (xy 42.934251 30.758555) (xy 42.878317 30.930706) (xy 42.85 31.109493) + (xy 42.85 31.6) (xy 43.7 31.6) (xy 43.7 32.1) (xy 42.85 32.1) (xy 42.85 32.590506) (xy 42.878317 32.769293) + (xy 42.934251 32.941444) (xy 42.934252 32.941447) (xy 43.016434 33.102734) (xy 43.122823 33.249169) + (xy 43.25083 33.377176) (xy 43.397265 33.483565) (xy 43.558552 33.565747) (xy 43.558555 33.565748) + (xy 43.730699 33.62168) (xy 43.730712 33.621683) (xy 43.75 33.624738) (xy 43.75 32.666988) (xy 43.75994 32.684205) + (xy 43.815795 32.74006) (xy 43.884204 32.779556) (xy 43.960504 32.8) (xy 44.039496 32.8) (xy 44.115796 32.779556) + (xy 44.184205 32.74006) (xy 44.24006 32.684205) (xy 44.25 32.666988) (xy 44.25 33.624737) (xy 44.269287 33.621683) + (xy 44.2693 33.62168) (xy 44.441444 33.565748) (xy 44.441447 33.565747) (xy 44.602734 33.483565) + (xy 44.749169 33.377176) (xy 44.877176 33.249169) (xy 44.983565 33.102734) (xy 45.065747 32.941447) + (xy 45.065748 32.941444) (xy 45.121682 32.769293) (xy 45.15 32.590506) (xy 45.15 32.1) (xy 44.3 32.1) + (xy 44.3 31.6) (xy 45.15 31.6) (xy 45.15 31.109493) (xy 45.121682 30.930706) (xy 45.065748 30.758555) + (xy 45.065747 30.758552) (xy 45.026127 30.680795) (xy 45.013231 30.612126) (xy 45.039507 30.547386) + (xy 45.096613 30.507128) (xy 45.136612 30.5005) (xy 51.503388 30.5005) (xy 51.570427 30.520185) + (xy 51.616182 30.572989) (xy 51.626126 30.642147) (xy 51.613873 30.680795) (xy 51.574252 30.758552) + (xy 51.574251 30.758555) (xy 51.518317 30.930706) (xy 51.49 31.109493) (xy 51.49 31.6) (xy 52.34 31.6) + (xy 52.34 32.1) (xy 51.49 32.1) (xy 51.49 32.590506) (xy 51.518317 32.769293) (xy 51.574251 32.941444) + (xy 51.574252 32.941447) (xy 51.656434 33.102734) (xy 51.762823 33.249169) (xy 51.89083 33.377176) + (xy 52.037265 33.483565) (xy 52.198552 33.565747) (xy 52.198555 33.565748) (xy 52.370699 33.62168) + (xy 52.370712 33.621683) (xy 52.39 33.624738) (xy 52.39 32.666988) (xy 52.39994 32.684205) (xy 52.455795 32.74006) + (xy 52.524204 32.779556) (xy 52.600504 32.8) (xy 52.679496 32.8) (xy 52.755796 32.779556) (xy 52.824205 32.74006) + (xy 52.88006 32.684205) (xy 52.89 32.666988) (xy 52.89 33.624737) (xy 52.909287 33.621683) (xy 52.9093 33.62168) + (xy 53.081444 33.565748) (xy 53.081447 33.565747) (xy 53.242734 33.483565) (xy 53.389169 33.377176) + (xy 53.517176 33.249169) (xy 53.623565 33.102734) (xy 53.705747 32.941447) (xy 53.705748 32.941444) + (xy 53.761682 32.769293) (xy 53.79 32.590506) (xy 53.79 32.1) (xy 52.94 32.1) (xy 52.94 31.6) (xy 53.79 31.6) + (xy 53.79 31.109493) (xy 53.761682 30.930706) (xy 53.705748 30.758555) (xy 53.705747 30.758552) + (xy 53.666127 30.680795) (xy 53.653231 30.612126) (xy 53.679507 30.547386) (xy 53.736613 30.507128) + (xy 53.776612 30.5005) (xy 58.550903 30.5005) (xy 58.617942 30.520185) (xy 58.663697 30.572989) + (xy 58.673641 30.642147) (xy 58.644616 30.705703) (xy 58.638584 30.712181) (xy 54.001681 35.349084) + (xy 53.940358 35.382569) (xy 53.870666 35.377585) (xy 53.814733 35.335713) (xy 53.790316 35.270249) + (xy 53.79 35.261403) (xy 53.79 35.084493) (xy 53.761682 34.905706) (xy 53.705748 34.733555) (xy 53.705747 34.733552) + (xy 53.623565 34.572265) (xy 53.517176 34.42583) (xy 53.389169 34.297823) (xy 53.242734 34.191434) + (xy 53.081447 34.109252) (xy 53.081441 34.10925) (xy 52.909295 34.053318) (xy 52.909285 34.053315) + (xy 52.89 34.05026) (xy 52.89 35.008011) (xy 52.88006 34.990795) (xy 52.824205 34.93494) (xy 52.755796 34.895444) + (xy 52.679496 34.875) (xy 52.600504 34.875) (xy 52.524204 34.895444) (xy 52.455795 34.93494) (xy 52.39994 34.990795) + (xy 52.39 35.008011) (xy 52.39 34.05026) (xy 52.370714 34.053315) (xy 52.370704 34.053318) (xy 52.198558 34.10925) + (xy 52.198552 34.109252) (xy 52.037265 34.191434) (xy 51.89083 34.297823) (xy 51.762828 34.425825) + (xy 51.754657 34.437073) (xy 51.699327 34.479738) (xy 51.629713 34.485716) (xy 51.59234 34.471573) + (xy 51.532488 34.437017) (xy 51.532489 34.437017) (xy 51.521006 34.43394) (xy 51.392475 34.3995) + (xy 51.247525 34.3995) (xy 51.118993 34.43394) (xy 51.107511 34.437017) (xy 50.981988 34.509488) + (xy 50.981982 34.509493) (xy 50.879493 34.611982) (xy 50.879488 34.611988) (xy 50.807017 34.737511) + (xy 50.804961 34.745185) (xy 50.7695 34.877525) (xy 50.7695 35.022475) (xy 50.807016 35.162485) + (xy 50.807017 35.162488) (xy 50.879488 35.288011) (xy 50.87949 35.288013) (xy 50.879491 35.288015) + (xy 50.981985 35.390509) (xy 50.981986 35.39051) (xy 50.981988 35.390511) (xy 51.107511 35.462982) + (xy 51.107512 35.462982) (xy 51.107515 35.462984) (xy 51.247525 35.5005) (xy 51.247528 35.5005) + (xy 51.392472 35.5005) (xy 51.392475 35.5005) (xy 51.532485 35.462984) (xy 51.569501 35.441612) + (xy 51.631501 35.425) (xy 52.34 35.425) (xy 52.34 35.925) (xy 51.49 35.925) (xy 51.49 36.265506) + (xy 51.518317 36.444293) (xy 51.548498 36.537182) (xy 51.550493 36.607024) (xy 51.514412 36.666856) + (xy 51.451711 36.697684) (xy 51.430567 36.6995) (xy 45.209433 36.6995) (xy 45.142394 36.679815) + (xy 45.096639 36.627011) (xy 45.086695 36.557853) (xy 45.091502 36.537182) (xy 45.121682 36.444293) + (xy 45.15 36.265506) (xy 45.15 35.925) (xy 44.3 35.925) (xy 44.3 35.425) (xy 44.883499 35.425) (xy 44.945498 35.441612) + (xy 44.982515 35.462984) (xy 45.122525 35.5005) (xy 45.122528 35.5005) (xy 45.517472 35.5005) (xy 45.517475 35.5005) + (xy 45.657485 35.462984) (xy 45.783015 35.390509) (xy 45.885509 35.288015) (xy 45.957984 35.162485) + (xy 45.9955 35.022475) (xy 45.9955 34.877525) (xy 45.957984 34.737515) (xy 45.954675 34.731784) + (xy 45.885511 34.611988) (xy 45.885506 34.611982) (xy 45.783017 34.509493) (xy 45.783011 34.509488) + (xy 45.657488 34.437017) (xy 45.657489 34.437017) (xy 45.646006 34.43394) (xy 45.517475 34.3995) + (xy 45.122525 34.3995) (xy 44.982515 34.437016) (xy 44.982513 34.437016) (xy 44.977411 34.438384) + (xy 44.907561 34.436721) (xy 44.857636 34.40629) (xy 44.749169 34.297823) (xy 44.602734 34.191434) + (xy 44.441447 34.109252) (xy 44.441441 34.10925) (xy 44.269295 34.053318) (xy 44.269285 34.053315) + (xy 44.25 34.05026) (xy 44.25 35.008011) (xy 44.24006 34.990795) (xy 44.184205 34.93494) (xy 44.115796 34.895444) + (xy 44.039496 34.875) (xy 43.960504 34.875) (xy 43.884204 34.895444) (xy 43.815795 34.93494) (xy 43.75994 34.990795) + (xy 43.75 35.008011) (xy 43.75 34.05026) (xy 43.730714 34.053315) (xy 43.730704 34.053318) (xy 43.558558 34.10925) + (xy 43.558552 34.109252) (xy 43.397265 34.191434) (xy 43.25083 34.297823) (xy 43.122823 34.42583) + (xy 43.016434 34.572265) (xy 42.934252 34.733552) (xy 42.934251 34.733555) (xy 42.878317 34.905706) + (xy 42.85 35.084493) (xy 42.85 35.425) (xy 43.7 35.425) (xy 43.7 35.925) (xy 42.85 35.925) (xy 42.85 36.265506) + (xy 42.878317 36.444293) (xy 42.884365 36.462909) (xy 42.886358 36.53275) (xy 42.850276 36.592582) + (xy 42.787574 36.623408) (xy 42.71816 36.615442) (xy 42.700461 36.606218) (xy 42.649523 36.574211) + (xy 42.479254 36.514631) (xy 42.479249 36.51463) (xy 42.300004 36.494435) (xy 42.299996 36.494435) + (xy 42.12075 36.51463) (xy 42.120745 36.514631) (xy 41.950476 36.574211) (xy 41.797737 36.670184) + (xy 41.670184 36.797737) (xy 41.574211 36.950476) (xy 41.514631 37.120745) (xy 41.51463 37.12075) + (xy 41.494435 37.299996) (xy 41.494435 37.300003) (xy 41.51463 37.479249) (xy 41.514633 37.479262) + (xy 41.574209 37.649519) (xy 41.595893 37.68403) (xy 41.614892 37.751267) (xy 41.595893 37.81597) + (xy 41.574209 37.85048) (xy 41.514633 38.020737) (xy 41.51463 38.02075) (xy 41.494435 38.199996) + (xy 41.494435 38.200003) (xy 41.51463 38.379249) (xy 41.514633 38.379262) (xy 41.574209 38.549519) + (xy 41.595893 38.58403) (xy 41.614892 38.651267) (xy 41.595893 38.71597) (xy 41.574209 38.75048) + (xy 41.514633 38.920737) (xy 41.51463 38.92075) (xy 41.494435 39.099996) (xy 41.494435 39.100003) + (xy 41.51463 39.279249) (xy 41.514633 39.279262) (xy 41.574209 39.449519) (xy 41.595893 39.48403) + (xy 41.614892 39.551267) (xy 41.595893 39.61597) (xy 41.574209 39.65048) (xy 41.514633 39.820737) + (xy 41.51463 39.82075) (xy 41.494435 39.999996) (xy 41.494435 40.000003) (xy 41.51463 40.179249) + (xy 41.514631 40.179254) (xy 41.574211 40.349523) (xy 41.625602 40.43131) (xy 41.670184 40.502262) + (xy 41.797738 40.629816) (xy 41.950478 40.725789) (xy 42.09998 40.778102) (xy 42.120745 40.785368) + (xy 42.12075 40.785369) (xy 42.299996 40.805565) (xy 42.3 40.805565) (xy 42.300004 40.805565) (xy 42.479249 40.785369) + (xy 42.479252 40.785368) (xy 42.479255 40.785368) (xy 42.649522 40.725789) (xy 42.802262 40.629816) + (xy 42.929816 40.502262) (xy 43.025789 40.349522) (xy 43.085368 40.179255) (xy 43.095161 40.092329) + (xy 43.122226 40.027918) (xy 43.13069 40.018543) (xy 44.012416 39.136819) (xy 44.073739 39.103334) + (xy 44.100097 39.1005) (xy 52.213647 39.1005) (xy 52.280686 39.120185) (xy 52.326441 39.172989) + (xy 52.336385 39.242147) (xy 52.30736 39.305703) (xy 52.301328 39.312181) (xy 51.316755 40.296754) + (xy 51.255432 40.330239) (xy 51.229074 40.333073) (xy 49.176821 40.333073) (xy 49.109782 40.313388) + (xy 49.099506 40.306018) (xy 49.096672 40.303758) (xy 49.096671 40.303757) (xy 49.039905 40.268088) + (xy 48.943932 40.207784) (xy 48.773663 40.148204) (xy 48.773658 40.148203) (xy 48.594413 40.128008) + (xy 48.594405 40.128008) (xy 48.415159 40.148203) (xy 48.415154 40.148204) (xy 48.244885 40.207784) + (xy 48.092146 40.303757) (xy 47.964593 40.43131) (xy 47.86862 40.584049) (xy 47.80904 40.754318) + (xy 47.809039 40.754323) (xy 47.788844 40.933569) (xy 47.788844 40.933576) (xy 47.809039 41.112822) + (xy 47.80904 41.112827) (xy 47.86862 41.283096) (xy 47.964593 41.435835) (xy 48.092147 41.563389) + (xy 48.244887 41.659362) (xy 48.415154 41.718941) (xy 48.415159 41.718942) (xy 48.594405 41.739138) + (xy 48.594409 41.739138) (xy 48.594413 41.739138) (xy 48.773658 41.718942) (xy 48.773661 41.718941) + (xy 48.773664 41.718941) (xy 48.943931 41.659362) (xy 49.096671 41.563389) (xy 49.096676 41.563383) + (xy 49.099506 41.561128) (xy 49.101684 41.560238) (xy 49.102567 41.559684) (xy 49.102664 41.559838) + (xy 49.164192 41.534718) (xy 49.176821 41.534073) (xy 51.442502 41.534073) (xy 51.442518 41.534074) + (xy 51.450114 41.534074) (xy 51.608225 41.534074) (xy 51.608228 41.534074) (xy 51.760956 41.49315) + (xy 51.811075 41.464212) (xy 51.897887 41.414093) (xy 52.009691 41.302289) (xy 52.009691 41.302287) + (xy 52.019899 41.29208) (xy 52.0199 41.292077) (xy 56.859823 36.452155) (xy 58.75 36.452155) (xy 58.75 36.75) + (xy 59.5 36.75) (xy 59.5 36) (xy 59.202155 36) (xy 59.142627 36.006401) (xy 59.14262 36.006403) + (xy 59.007913 36.056645) (xy 59.007906 36.056649) (xy 58.892812 36.142809) (xy 58.892809 36.142812) + (xy 58.806649 36.257906) (xy 58.806645 36.257913) (xy 58.756403 36.39262) (xy 58.756401 36.392627) + (xy 58.75 36.452155) (xy 56.859823 36.452155) (xy 60.47516 32.836819) (xy 60.536483 32.803334) (xy 60.562841 32.8005) + (xy 66.149903 32.8005) (xy 66.216942 32.820185) (xy 66.237584 32.836819) (xy 67.890139 34.489374) + (xy 67.890149 34.489385) (xy 67.894479 34.493715) (xy 67.89448 34.493716) (xy 67.988584 34.58782) + (xy 68.022068 34.649141) (xy 68.017084 34.718833) (xy 67.975213 34.774767) (xy 67.909749 34.799184) + (xy 67.900902 34.7995) (xy 62.70667 34.7995) (xy 62.706654 34.799499) (xy 62.699058 34.799499) (xy 62.540943 34.799499) + (xy 62.464579 34.819961) (xy 62.388214 34.840423) (xy 62.388209 34.840426) (xy 62.25129 34.919475) + (xy 62.251282 34.919481) (xy 61.203579 35.967184) (xy 61.142256 36.000669) (xy 61.103746 36.002906) + (xy 61.020001 35.994659) (xy 61.02 35.994659) (xy 60.82387 36.013975) (xy 60.739246 36.039645) (xy 60.635273 36.071186) + (xy 60.63527 36.071187) (xy 60.635268 36.071188) (xy 60.632647 36.072589) (xy 60.631118 36.072907) + (xy 60.629646 36.073517) (xy 60.62953 36.073237) (xy 60.564243 36.086823) (xy 60.499894 36.06249) + (xy 60.492091 36.056648) (xy 60.357376 36.006402) (xy 60.357372 36.006401) (xy 60.297844 36) (xy 60 36) + (xy 60 36.790382) (xy 59.949554 36.739936) (xy 59.875445 36.697149) (xy 59.792787 36.675) (xy 59.707213 36.675) + (xy 59.624555 36.697149) (xy 59.550446 36.739936) (xy 59.489936 36.800446) (xy 59.447149 36.874555) + (xy 59.425 36.957213) (xy 59.425 37.042787) (xy 59.447149 37.125445) (xy 59.489936 37.199554) (xy 59.540382 37.25) + (xy 58.75 37.25) (xy 58.75 37.547844) (xy 58.756401 37.607372) (xy 58.756402 37.607376) (xy 58.806648 37.742091) + (xy 58.81249 37.749894) (xy 58.836908 37.815359) (xy 58.823251 37.879535) (xy 58.823517 37.879646) + (xy 58.822921 37.881082) (xy 58.822589 37.882647) (xy 58.821188 37.885268) (xy 58.763975 38.07387) + (xy 58.744659 38.27) (xy 58.763975 38.466129) (xy 58.763976 38.466132) (xy 58.820136 38.651267) + (xy 58.821188 38.654733) (xy 58.914086 38.828532) (xy 58.91409 38.828539) (xy 59.039116 38.980883) + (xy 59.19146 39.105909) (xy 59.191467 39.105913) (xy 59.365266 39.198811) (xy 59.365269 39.198811) + (xy 59.365273 39.198814) (xy 59.553868 39.256024) (xy 59.75 39.275341) (xy 59.946132 39.256024) + (xy 60.134727 39.198814) (xy 60.308538 39.10591) (xy 60.308544 39.105904) (xy 60.313607 39.102523) + (xy 60.314703 39.104164) (xy 60.370639 39.080405) (xy 60.439507 39.092194) (xy 60.456148 39.102888) + (xy 60.456393 39.102523) (xy 60.461458 39.105907) (xy 60.461462 39.10591) (xy 60.635273 39.198814) + (xy 60.823868 39.256024) (xy 61.02 39.275341) (xy 61.103745 39.267092) (xy 61.172389 39.28011) (xy 61.203578 39.302813) + (xy 62.434127 40.533363) (xy 62.434129 40.533364) (xy 62.434133 40.533367) (xy 62.571052 40.612416) + (xy 62.571059 40.61242) (xy 62.723786 40.653344) (xy 62.723788 40.653344) (xy 62.889497 40.653344) + (xy 62.889513 40.653343) (xy 64.615689 40.653343) (xy 64.682728 40.673028) (xy 64.703369 40.689661) + (xy 68.539913 44.526206) (xy 68.539914 44.526206) (xy 68.684651 44.670942) (xy 68.875352 44.861644) + (xy 68.875355 44.861648) (xy 68.882423 44.868716) (xy 68.994227 44.98052) (xy 68.994229 44.980521) + (xy 68.994233 44.980524) (xy 69.131156 45.059576) (xy 69.131158 45.059576) (xy 69.131159 45.059577) + (xy 69.172075 45.070539) (xy 69.172079 45.070542) (xy 69.17208 45.070541) (xy 69.283885 45.100501) + (xy 69.449595 45.100501) (xy 69.449611 45.1005) (xy 72.364871 45.1005) (xy 72.43191 45.120185) (xy 72.469865 45.158528) + (xy 72.528762 45.252262) (xy 72.656316 45.379816) (xy 72.809056 45.475789) (xy 72.979323 45.535368) + (xy 72.979328 45.535369) (xy 73.158574 45.555565) (xy 73.158578 45.555565) (xy 73.158582 45.555565) + (xy 73.337827 45.535369) (xy 73.33783 45.535368) (xy 73.337833 45.535368) (xy 73.5081 45.475789) + (xy 73.66084 45.379816) (xy 73.741608 45.299048) (xy 73.802931 45.265563) (xy 73.872623 45.270547) + (xy 73.91697 45.299048) (xy 73.997738 45.379816) (xy 74.150478 45.475789) (xy 74.320745 45.535368) + (xy 74.32075 45.535369) (xy 74.499996 45.555565) (xy 74.5 45.555565) (xy 74.500004 45.555565) (xy 74.679249 45.535369) + (xy 74.679252 45.535368) (xy 74.679255 45.535368) (xy 74.849522 45.475789) (xy 75.002262 45.379816) + (xy 75.129816 45.252262) (xy 75.225789 45.099522) (xy 75.285368 44.929255) (xy 75.292189 44.868716) + (xy 75.305565 44.750003) (xy 75.305565 44.749996) (xy 75.285369 44.57075) (xy 75.285368 44.570745) + (xy 75.247253 44.461819) (xy 75.225789 44.400478) (xy 75.129816 44.247738) (xy 75.002262 44.120184) + (xy 74.849521 44.02421) (xy 74.679249 43.96463) (xy 74.59233 43.954837) (xy 74.527916 43.92777) + (xy 74.518533 43.919298) (xy 74.33759 43.738355) (xy 74.337588 43.738352) (xy 74.218717 43.619481) + (xy 74.218712 43.619477) (xy 74.124641 43.565166) (xy 74.081785 43.540423) (xy 74.081784 43.540422) + (xy 74.081783 43.540422) (xy 74.046835 43.531057) (xy 73.987175 43.494691) (xy 73.956647 43.431843) + (xy 73.955711 43.425165) (xy 73.943947 43.32075) (xy 73.943946 43.320745) (xy 73.941061 43.3125) + (xy 73.884367 43.150478) (xy 73.884366 43.150477) (xy 73.884365 43.150473) (xy 73.789379 42.999305) + (xy 73.770378 42.932069) (xy 73.789379 42.867361) (xy 73.884365 42.716192) (xy 73.884365 42.71619) + (xy 73.884367 42.716188) (xy 73.927254 42.593624) (xy 73.967976 42.536848) (xy 74.032929 42.511101) + (xy 74.10149 42.524557) (xy 74.131977 42.546898) (xy 77.863181 46.278102) (xy 77.896666 46.339425) + (xy 77.8995 46.365783) (xy 77.8995 47.389424) (xy 77.879815 47.456463) (xy 77.827011 47.502218) + (xy 77.761617 47.512644) (xy 77.600004 47.494435) (xy 77.599996 47.494435) (xy 77.42075 47.51463) + (xy 77.420745 47.514631) (xy 77.250476 47.574211) (xy 77.097737 47.670184) (xy 76.970184 47.797737) + (xy 76.87421 47.950478) (xy 76.81463 48.12075) (xy 76.804837 48.207668) (xy 76.77777 48.272082) + (xy 76.769298 48.281465) (xy 76.187584 48.863181) (xy 76.126261 48.896666) (xy 76.099903 48.8995) + (xy 69.700097 48.8995) (xy 69.633058 48.879815) (xy 69.612416 48.863181) (xy 62.78759 42.038355) + (xy 62.787588 42.038352) (xy 62.668717 41.919481) (xy 62.668716 41.91948) (xy 62.571147 41.863149) + (xy 62.531785 41.840423) (xy 62.379057 41.799499) (xy 62.220943 41.799499) (xy 62.213347 41.799499) + (xy 62.213331 41.7995) (xy 59.100097 41.7995) (xy 59.033058 41.779815) (xy 59.012416 41.763181) + (xy 58.9307 41.681465) (xy 58.897215 41.620142) (xy 58.895163 41.607686) (xy 58.885368 41.520745) + (xy 58.825789 41.350478) (xy 58.729816 41.197738) (xy 58.602262 41.070184) (xy 58.449523 40.974211) + (xy 58.279254 40.914631) (xy 58.279249 40.91463) (xy 58.100004 40.894435) (xy 58.099996 40.894435) + (xy 57.92075 40.91463) (xy 57.920745 40.914631) (xy 57.750476 40.974211) (xy 57.597737 41.070184) + (xy 57.470184 41.197737) (xy 57.374211 41.350476) (xy 57.314631 41.520745) (xy 57.31463 41.52075) + (xy 57.294435 41.699996) (xy 57.294435 41.700003) (xy 57.31463 41.879249) (xy 57.314631 41.879254) + (xy 57.374211 42.049523) (xy 57.458727 42.184028) (xy 57.477727 42.251264) (xy 57.458727 42.315972) + (xy 57.374211 42.450476) (xy 57.314631 42.620745) (xy 57.31463 42.62075) (xy 57.294435 42.799996) + (xy 57.294435 42.800003) (xy 57.31463 42.979249) (xy 57.314631 42.979254) (xy 57.374211 43.149523) + (xy 57.435164 43.246528) (xy 57.454164 43.313764) (xy 57.435164 43.378472) (xy 57.374211 43.475476) + (xy 57.314631 43.645745) (xy 57.31463 43.64575) (xy 57.294435 43.824996) (xy 57.294435 43.825003) + (xy 57.31463 44.004249) (xy 57.314631 44.004254) (xy 57.374211 44.174523) (xy 57.470184 44.327262) + (xy 57.597738 44.454816) (xy 57.750478 44.550789) (xy 57.869204 44.592333) (xy 57.920745 44.610368) + (xy 57.92075 44.610369) (xy 58.099996 44.630565) (xy 58.1 44.630565) (xy 58.100004 44.630565) (xy 58.279249 44.610369) + (xy 58.279252 44.610368) (xy 58.279255 44.610368) (xy 58.449522 44.550789) (xy 58.602262 44.454816) + (xy 58.602267 44.45481) (xy 58.605097 44.452555) (xy 58.607275 44.451665) (xy 58.608158 44.451111) + (xy 58.608255 44.451265) (xy 58.669783 44.426145) (xy 58.682412 44.4255) (xy 62.273432 44.4255) + (xy 62.340471 44.445185) (xy 62.361112 44.461818) (xy 64.749209 46.849916) (xy 64.782693 46.911237) + (xy 64.777709 46.980929) (xy 64.766521 47.003567) (xy 64.674211 47.150476) (xy 64.614631 47.320745) + (xy 64.61463 47.32075) (xy 64.594435 47.499996) (xy 64.594435 47.500003) (xy 64.61463 47.679249) + (xy 64.614631 47.679254) (xy 64.674211 47.849523) (xy 64.758727 47.984028) (xy 64.777727 48.051264) + (xy 64.758727 48.115972) (xy 64.674211 48.250476) (xy 64.614631 48.420745) (xy 64.61463 48.42075) + (xy 64.594435 48.599996) (xy 64.594435 48.600003) (xy 64.61463 48.779249) (xy 64.614631 48.779254) + (xy 64.674211 48.949523) (xy 64.749557 49.069435) (xy 64.770184 49.102262) (xy 64.897738 49.229816) + (xy 65.050478 49.325789) (xy 65.220745 49.385368) (xy 65.307669 49.395161) (xy 65.37208 49.422226) + (xy 65.381464 49.430699) (xy 70.831284 54.88052) (xy 70.831286 54.880521) (xy 70.83129 54.880524) + (xy 70.921237 54.932454) (xy 70.968216 54.959577) (xy 71.120943 55.000501) (xy 71.120945 55.000501) + (xy 71.286654 55.000501) (xy 71.28667 55.0005) (xy 79.069903 55.0005) (xy 79.136942 55.020185) (xy 79.157584 55.036819) + (xy 80.795662 56.674897) (xy 80.829147 56.73622) (xy 80.824163 56.805912) (xy 80.782291 56.861845) + (xy 80.730767 56.884466) (xy 80.676931 56.89453) (xy 80.632753 56.911645) (xy 80.473792 56.973226) + (xy 80.473786 56.973229) (xy 80.288576 57.087906) (xy 80.288566 57.087913) (xy 80.127573 57.234676) + (xy 80.098953 57.272576) (xy 80.042844 57.314211) (xy 79.973132 57.318902) (xy 79.91195 57.285159) + (xy 79.901047 57.272576) (xy 79.872426 57.234676) (xy 79.711433 57.087913) (xy 79.711423 57.087906) + (xy 79.526213 56.973229) (xy 79.526207 56.973226) (xy 79.441113 56.94026) (xy 79.323069 56.89453) + (xy 79.108926 56.8545) (xy 78.891074 56.8545) (xy 78.676931 56.89453) (xy 78.632753 56.911645) (xy 78.473792 56.973226) + (xy 78.473786 56.973229) (xy 78.288565 57.087913) (xy 78.277214 57.098261) (xy 78.214408 57.128875) + (xy 78.145021 57.120674) (xy 78.094414 57.080932) (xy 78.032187 56.997809) (xy 77.917093 56.911649) + (xy 77.917086 56.911645) (xy 77.782379 56.861403) (xy 77.782372 56.861401) (xy 77.722844 56.855) + (xy 77.25 56.855) (xy 77.25 57.714314) (xy 77.245606 57.70992) (xy 77.154394 57.657259) (xy 77.052661 57.63) + (xy 76.947339 57.63) (xy 76.845606 57.657259) (xy 76.754394 57.70992) (xy 76.75 57.714314) (xy 76.75 56.855) + (xy 76.277155 56.855) (xy 76.217627 56.861401) (xy 76.21762 56.861403) (xy 76.082913 56.911645) + (xy 76.082906 56.911649) (xy 75.967812 56.997809) (xy 75.967809 56.997812) (xy 75.881649 57.112906) + (xy 75.881645 57.112913) (xy 75.831403 57.24762) (xy 75.831401 57.247627) (xy 75.825 57.307155) + (xy 75.825 57.78) (xy 76.684314 57.78) (xy 76.67992 57.784394) (xy 76.627259 57.875606) (xy 76.6 57.977339) + (xy 76.6 58.082661) (xy 76.627259 58.184394) (xy 76.67992 58.275606) (xy 76.684314 58.28) (xy 75.825 58.28) + (xy 75.825 58.752844) (xy 75.831401 58.812372) (xy 75.831403 58.812379) (xy 75.881645 58.947086) + (xy 75.881649 58.947093) (xy 75.967809 59.062187) (xy 75.967812 59.06219) (xy 76.082906 59.14835) + (xy 76.082913 59.148354) (xy 76.21762 59.198596) (xy 76.217627 59.198598) (xy 76.277155 59.204999) + (xy 76.277172 59.205) (xy 76.75 59.205) (xy 76.75 58.345686) (xy 76.754394 58.35008) (xy 76.845606 58.402741) + (xy 76.947339 58.43) (xy 77.052661 58.43) (xy 77.154394 58.402741) (xy 77.245606 58.35008) (xy 77.25 58.345686) + (xy 77.25 59.205) (xy 77.722828 59.205) (xy 77.722844 59.204999) (xy 77.782372 59.198598) (xy 77.782379 59.198596) + (xy 77.917086 59.148354) (xy 77.917093 59.14835) (xy 78.032186 59.062191) (xy 78.094413 58.979067) + (xy 78.150347 58.937196) (xy 78.220038 58.932212) (xy 78.277216 58.961739) (xy 78.288568 58.972088) + (xy 78.288575 58.972092) (xy 78.288576 58.972093) (xy 78.473786 59.08677) (xy 78.473792 59.086773) + (xy 78.496664 59.095633) (xy 78.676931 59.16547) (xy 78.891074 59.2055) (xy 78.891076 59.2055) (xy 79.108924 59.2055) + (xy 79.108926 59.2055) (xy 79.323069 59.16547) (xy 79.52621 59.086772) (xy 79.711432 58.972088) + (xy 79.872427 58.825322) (xy 79.901047 58.787422) (xy 79.957153 58.745787) (xy 80.026865 58.741094) + (xy 80.088048 58.774836) (xy 80.098946 58.787414) (xy 80.127573 58.825322) (xy 80.127576 58.825325) + (xy 80.127578 58.825327) (xy 80.155192 58.8505) (xy 80.288568 58.972088) (xy 80.288575 58.972092) + (xy 80.288576 58.972093) (xy 80.473786 59.08677) (xy 80.473792 59.086773) (xy 80.496664 59.095633) + (xy 80.676931 59.16547) (xy 80.891074 59.2055) (xy 80.891076 59.2055) (xy 81.108924 59.2055) (xy 81.108926 59.2055) + (xy 81.323069 59.16547) (xy 81.52621 59.086772) (xy 81.711432 58.972088) (xy 81.872427 58.825322) + (xy 81.901047 58.787422) (xy 81.957153 58.745787) (xy 82.026865 58.741094) (xy 82.088048 58.774836) + (xy 82.098946 58.787414) (xy 82.127573 58.825322) (xy 82.127576 58.825325) (xy 82.127578 58.825327) + (xy 82.155192 58.8505) (xy 82.288568 58.972088) (xy 82.288575 58.972092) (xy 82.288576 58.972093) + (xy 82.473786 59.08677) (xy 82.473792 59.086773) (xy 82.496664 59.095633) (xy 82.676931 59.16547) + (xy 82.891074 59.2055) (xy 82.891076 59.2055) (xy 83.108924 59.2055) (xy 83.108926 59.2055) (xy 83.323069 59.16547) + (xy 83.52621 59.086772) (xy 83.711432 58.972088) (xy 83.872427 58.825322) (xy 84.003712 58.651472) + (xy 84.100817 58.456459) (xy 84.160435 58.246923) (xy 84.180536 58.03) (xy 84.160435 57.813077) + (xy 84.100817 57.603541) (xy 84.003712 57.408528) (xy 83.872427 57.234678) (xy 83.869852 57.232331) + (xy 83.738849 57.112906) (xy 83.711432 57.087912) (xy 83.711428 57.087909) (xy 83.711423 57.087906) + (xy 83.526213 56.973229) (xy 83.526207 56.973226) (xy 83.441113 56.94026) (xy 83.323069 56.89453) + (xy 83.108926 56.8545) (xy 82.891074 56.8545) (xy 82.891073 56.8545) (xy 82.772209 56.876718) (xy 82.702694 56.869686) + (xy 82.661745 56.84251) (xy 79.85759 54.038355) (xy 79.857588 54.038352) (xy 79.738717 53.919481) + (xy 79.738716 53.91948) (xy 79.651904 53.86936) (xy 79.651904 53.869359) (xy 79.6519 53.869358) + (xy 79.601785 53.840423) (xy 79.449057 53.799499) (xy 79.290943 53.799499) (xy 79.283347 53.799499) + (xy 79.283331 53.7995) (xy 79.074097 53.7995) (xy 79.007058 53.779815) (xy 78.961303 53.727011) + (xy 78.951359 53.657853) (xy 78.980384 53.594297) (xy 78.986416 53.587819) (xy 79.577569 52.996666) + (xy 81.358506 51.215727) (xy 81.358511 51.215724) (xy 81.368714 51.20552) (xy 81.368716 51.20552) + (xy 81.48052 51.093716) (xy 81.559577 50.956784) (xy 81.589534 50.844981) (xy 81.6005 50.804058) + (xy 81.6005 50.645943) (xy 81.6005 50.582412) (xy 81.620185 50.515373) (xy 81.627555 50.505097) + (xy 81.62981 50.502267) (xy 81.629816 50.502262) (xy 81.725789 50.349522) (xy 81.785368 50.179255) + (xy 81.805565 50) (xy 81.791481 49.875003) (xy 81.785369 49.82075) (xy 81.785368 49.820745) (xy 81.74163 49.69575) + (xy 81.725789 49.650478) (xy 81.629816 49.497738) (xy 81.629814 49.497736) (xy 81.629813 49.497734) + (xy 81.62755 49.494896) (xy 81.626659 49.492715) (xy 81.626111 49.491842) (xy 81.626264 49.491745) + (xy 81.601144 49.430209) (xy 81.6005 49.417587) (xy 81.6005 45.416209) (xy 81.620185 45.34917) (xy 81.672989 45.303415) + (xy 81.738384 45.292989) (xy 81.849997 45.305565) (xy 81.85 45.305565) (xy 81.850004 45.305565) + (xy 82.029249 45.285369) (xy 82.029252 45.285368) (xy 82.029255 45.285368) (xy 82.199522 45.225789) + (xy 82.352262 45.129816) (xy 82.479816 45.002262) (xy 82.575789 44.849522) (xy 82.635368 44.679255) + (xy 82.645161 44.592329) (xy 82.672226 44.527918) (xy 82.68069 44.518543) (xy 82.858506 44.340728) + (xy 82.858511 44.340724) (xy 82.868714 44.33052) (xy 82.868716 44.33052) (xy 82.98052 44.218716) + (xy 83.048771 44.100501) (xy 83.059577 44.081785) (xy 83.100501 43.929057) (xy 83.100501 43.770943) + (xy 83.100501 43.763348) (xy 83.1005 43.76333) (xy 83.1005 40.865783) (xy 83.120185 40.798744) (xy 83.136819 40.778102) + (xy 84.288319 39.626602) (xy 84.349642 39.593117) (xy 84.419334 39.598101) (xy 84.475267 39.639973) + (xy 84.499684 39.705437) (xy 84.5 39.714283) (xy 84.5 59.3755) (xy 84.480315 59.442539) (xy 84.427511 59.488294) + (xy 84.376 59.4995) (xy 52.648072 59.4995) (xy 52.581033 59.479815) (xy 52.535278 59.427011) (xy 52.525334 59.357853) + (xy 52.53103 59.334546) (xy 52.57636 59.204999) (xy 52.585368 59.179255) (xy 52.585369 59.179249) + (xy 52.605565 59.000003) (xy 52.605565 58.999996) (xy 52.585369 58.82075) (xy 52.585368 58.820745) + (xy 52.559139 58.745787) (xy 52.525789 58.650478) (xy 52.429816 58.497738) (xy 52.429814 58.497736) + (xy 52.429813 58.497734) (xy 52.42755 58.494896) (xy 52.426659 58.492715) (xy 52.426111 58.491842) + (xy 52.426264 58.491745) (xy 52.401144 58.430209) (xy 52.4005 58.417587) (xy 52.4005 57.723995) + (xy 58.799499 57.723995) (xy 58.826418 57.859322) (xy 58.826421 57.859332) (xy 58.879221 57.986804) + (xy 58.879228 57.986817) (xy 58.955885 58.101541) (xy 58.955888 58.101545) (xy 59.053454 58.199111) + (xy 59.053458 58.199114) (xy 59.168182 58.275771) (xy 59.168195 58.275778) (xy 59.224831 58.299237) + (xy 59.295672 58.32858) (xy 59.295676 58.32858) (xy 59.295677 58.328581) (xy 59.431004 58.3555) + (xy 59.431007 58.3555) (xy 59.568995 58.3555) (xy 59.660041 58.337389) (xy 59.704328 58.32858) (xy 59.831811 58.275775) + (xy 59.946542 58.199114) (xy 60.044114 58.101542) (xy 60.120775 57.986811) (xy 60.17358 57.859328) + (xy 60.18278 57.813077) (xy 60.2005 57.723995) (xy 61.799499 57.723995) (xy 61.826418 57.859322) + (xy 61.826421 57.859332) (xy 61.879221 57.986804) (xy 61.879228 57.986817) (xy 61.955885 58.101541) + (xy 61.955888 58.101545) (xy 62.053454 58.199111) (xy 62.053458 58.199114) (xy 62.168182 58.275771) + (xy 62.168195 58.275778) (xy 62.224831 58.299237) (xy 62.295672 58.32858) (xy 62.295676 58.32858) + (xy 62.295677 58.328581) (xy 62.431004 58.3555) (xy 62.431007 58.3555) (xy 62.568995 58.3555) (xy 62.660041 58.337389) + (xy 62.704328 58.32858) (xy 62.831811 58.275775) (xy 62.946542 58.199114) (xy 63.044114 58.101542) + (xy 63.111962 58) (xy 66.719815 58) (xy 66.723821 58.038114) (xy 66.7245 58.051075) (xy 66.7245 58.08377) + (xy 66.732126 58.122114) (xy 66.733828 58.133336) (xy 66.738502 58.177797) (xy 66.738503 58.177804) + (xy 66.748366 58.20816) (xy 66.752051 58.222281) (xy 66.757183 58.248079) (xy 66.757184 58.248084) + (xy 66.774586 58.290095) (xy 66.777955 58.299226) (xy 66.79375 58.347836) (xy 66.806508 58.369933) + (xy 66.813682 58.384479) (xy 66.821296 58.402862) (xy 66.85011 58.445984) (xy 66.854389 58.452865) + (xy 66.856466 58.456462) (xy 66.883142 58.502667) (xy 66.883143 58.502668) (xy 66.895928 58.516867) + (xy 66.906878 58.530945) (xy 66.914372 58.54216) (xy 66.955554 58.583342) (xy 66.960024 58.588052) + (xy 67.00277 58.635526) (xy 67.002772 58.635528) (xy 67.013039 58.642987) (xy 67.027837 58.655626) + (xy 67.032834 58.660623) (xy 67.032842 58.660629) (xy 67.086556 58.69652) (xy 67.090551 58.699304) + (xy 67.147405 58.740611) (xy 67.147406 58.740611) (xy 67.147407 58.740612) (xy 67.153136 58.743162) + (xy 67.171606 58.753348) (xy 67.172137 58.753703) (xy 67.237729 58.780872) (xy 67.240696 58.782147) + (xy 67.310724 58.813326) (xy 67.311962 58.813728) (xy 67.32094 58.81652) (xy 67.321085 58.816046) + (xy 67.326912 58.817814) (xy 67.326914 58.817814) (xy 67.326918 58.817816) (xy 67.402928 58.832934) + (xy 67.404393 58.833236) (xy 67.485609 58.8505) (xy 67.48561 58.8505) (xy 67.664389 58.8505) (xy 67.664391 58.8505) + (xy 67.745663 58.833224) (xy 67.747068 58.832935) (xy 67.823082 58.817816) (xy 67.823087 58.817813) + (xy 67.828913 58.816046) (xy 67.829057 58.816521) (xy 67.838088 58.813711) (xy 67.839251 58.813332) + (xy 67.839267 58.813329) (xy 67.909329 58.782134) (xy 67.912212 58.780895) (xy 67.977863 58.753703) + (xy 67.97839 58.75335) (xy 67.996865 58.743162) (xy 67.997684 58.742796) (xy 68.002593 58.740612) + (xy 68.059505 58.699261) (xy 68.063388 58.696555) (xy 68.117162 58.660626) (xy 68.122164 58.655622) + (xy 68.13696 58.642987) (xy 68.14723 58.635526) (xy 68.189994 58.58803) (xy 68.194428 58.583358) + (xy 68.235626 58.542162) (xy 68.24312 58.530945) (xy 68.254071 58.516866) (xy 68.266859 58.502665) + (xy 68.29561 58.452863) (xy 68.299873 58.446007) (xy 68.3219 58.413042) (xy 68.375509 58.368241) + (xy 68.444834 58.359534) (xy 68.507862 58.389689) (xy 68.5281 58.413045) (xy 68.550109 58.445983) + (xy 68.554389 58.452865) (xy 68.556466 58.456462) (xy 68.583142 58.502667) (xy 68.583143 58.502668) + (xy 68.595928 58.516867) (xy 68.606878 58.530945) (xy 68.614372 58.54216) (xy 68.655554 58.583342) + (xy 68.660024 58.588052) (xy 68.70277 58.635526) (xy 68.702772 58.635528) (xy 68.713039 58.642987) + (xy 68.727837 58.655626) (xy 68.732834 58.660623) (xy 68.732842 58.660629) (xy 68.786556 58.69652) + (xy 68.790551 58.699304) (xy 68.847405 58.740611) (xy 68.847406 58.740611) (xy 68.847407 58.740612) + (xy 68.853136 58.743162) (xy 68.871606 58.753348) (xy 68.872137 58.753703) (xy 68.937729 58.780872) + (xy 68.940696 58.782147) (xy 69.010724 58.813326) (xy 69.011962 58.813728) (xy 69.02094 58.81652) + (xy 69.021085 58.816046) (xy 69.026912 58.817814) (xy 69.026914 58.817814) (xy 69.026918 58.817816) + (xy 69.102928 58.832934) (xy 69.104393 58.833236) (xy 69.185609 58.8505) (xy 69.18561 58.8505) (xy 69.364389 58.8505) + (xy 69.364391 58.8505) (xy 69.445663 58.833224) (xy 69.447068 58.832935) (xy 69.523082 58.817816) + (xy 69.523087 58.817813) (xy 69.528913 58.816046) (xy 69.529057 58.816521) (xy 69.538088 58.813711) + (xy 69.539251 58.813332) (xy 69.539267 58.813329) (xy 69.609329 58.782134) (xy 69.612212 58.780895) + (xy 69.677863 58.753703) (xy 69.67839 58.75335) (xy 69.696865 58.743162) (xy 69.697684 58.742796) + (xy 69.702593 58.740612) (xy 69.759505 58.699261) (xy 69.763388 58.696555) (xy 69.817162 58.660626) + (xy 69.822164 58.655622) (xy 69.83696 58.642987) (xy 69.84723 58.635526) (xy 69.889994 58.58803) + (xy 69.894428 58.583358) (xy 69.935626 58.542162) (xy 69.94312 58.530945) (xy 69.954071 58.516866) + (xy 69.966859 58.502665) (xy 69.99561 58.452863) (xy 69.999887 58.445987) (xy 70.018864 58.417587) + (xy 70.028703 58.402863) (xy 70.03632 58.384469) (xy 70.043491 58.369933) (xy 70.05625 58.347835) + (xy 70.072047 58.299213) (xy 70.075404 58.290115) (xy 70.092816 58.248082) (xy 70.097948 58.222278) + (xy 70.10163 58.208168) (xy 70.111497 58.177803) (xy 70.116171 58.133322) (xy 70.117875 58.122098) + (xy 70.1255 58.083767) (xy 70.1255 58.051075) (xy 70.126179 58.038114) (xy 70.127032 58.029999) + (xy 70.130185 58) (xy 70.126179 57.961885) (xy 70.1255 57.948924) (xy 70.1255 57.916232) (xy 70.123398 57.90567) + (xy 70.117872 57.877885) (xy 70.116171 57.866671) (xy 70.111497 57.822197) (xy 70.101633 57.791839) + (xy 70.097947 57.777712) (xy 70.092817 57.751925) (xy 70.092816 57.751918) (xy 70.075401 57.709877) + (xy 70.072045 57.70078) (xy 70.05625 57.652165) (xy 70.043486 57.630058) (xy 70.036314 57.615513) + (xy 70.028706 57.597144) (xy 70.028705 57.597142) (xy 70.028703 57.597137) (xy 69.999885 57.554008) + (xy 69.995601 57.547119) (xy 69.96686 57.497336) (xy 69.966856 57.497331) (xy 69.95407 57.483131) + (xy 69.943115 57.469047) (xy 69.935629 57.457843) (xy 69.935626 57.457838) (xy 69.894441 57.416653) + (xy 69.889974 57.411946) (xy 69.847234 57.364477) (xy 69.84723 57.364474) (xy 69.836952 57.357006) + (xy 69.822161 57.344372) (xy 69.817165 57.339376) (xy 69.817161 57.339373) (xy 69.763442 57.303479) + (xy 69.759448 57.300695) (xy 69.702594 57.259388) (xy 69.702593 57.259387) (xy 69.696855 57.256833) + (xy 69.678397 57.246654) (xy 69.677866 57.246299) (xy 69.677865 57.246298) (xy 69.677863 57.246297) + (xy 69.612241 57.219115) (xy 69.609289 57.217846) (xy 69.53927 57.186672) (xy 69.538316 57.186362) + (xy 69.529047 57.183492) (xy 69.528908 57.183952) (xy 69.523085 57.182185) (xy 69.523082 57.182184) + (xy 69.523078 57.182183) (xy 69.523071 57.182181) (xy 69.447172 57.167084) (xy 69.44562 57.166765) + (xy 69.364391 57.1495) (xy 69.185609 57.1495) (xy 69.121601 57.163104) (xy 69.104428 57.166755) + (xy 69.102841 57.167081) (xy 69.026921 57.182183) (xy 69.02109 57.183952) (xy 69.020949 57.18349) + (xy 69.011651 57.186372) (xy 69.010731 57.186671) (xy 68.940721 57.21784) (xy 68.937745 57.219119) + (xy 68.872139 57.246295) (xy 68.872132 57.246299) (xy 68.871581 57.246668) (xy 68.853157 57.256827) + (xy 68.847413 57.259384) (xy 68.847406 57.259389) (xy 68.79058 57.300675) (xy 68.78659 57.303456) + (xy 68.732841 57.339371) (xy 68.732834 57.339377) (xy 68.72783 57.344381) (xy 68.71305 57.357003) + (xy 68.702777 57.364467) (xy 68.702767 57.364476) (xy 68.660022 57.411948) (xy 68.655557 57.416653) + (xy 68.614377 57.457834) (xy 68.614369 57.457843) (xy 68.606877 57.469056) (xy 68.595932 57.483128) + (xy 68.583142 57.497333) (xy 68.583138 57.497338) (xy 68.554392 57.547127) (xy 68.550108 57.554015) + (xy 68.528101 57.586951) (xy 68.474489 57.631757) (xy 68.405164 57.640464) (xy 68.342137 57.61031) + (xy 68.321897 57.586952) (xy 68.321896 57.586951) (xy 68.299885 57.554008) (xy 68.295601 57.547119) + (xy 68.26686 57.497336) (xy 68.266856 57.497331) (xy 68.25407 57.483131) (xy 68.243115 57.469047) + (xy 68.235629 57.457843) (xy 68.235626 57.457838) (xy 68.194441 57.416653) (xy 68.189974 57.411946) + (xy 68.147234 57.364477) (xy 68.14723 57.364474) (xy 68.136952 57.357006) (xy 68.122161 57.344372) + (xy 68.117165 57.339376) (xy 68.117161 57.339373) (xy 68.063442 57.303479) (xy 68.059448 57.300695) + (xy 68.002594 57.259388) (xy 68.002593 57.259387) (xy 67.996855 57.256833) (xy 67.978397 57.246654) + (xy 67.977866 57.246299) (xy 67.977865 57.246298) (xy 67.977863 57.246297) (xy 67.912241 57.219115) + (xy 67.909289 57.217846) (xy 67.83927 57.186672) (xy 67.838316 57.186362) (xy 67.829047 57.183492) + (xy 67.828908 57.183952) (xy 67.823085 57.182185) (xy 67.823082 57.182184) (xy 67.823078 57.182183) + (xy 67.823071 57.182181) (xy 67.747172 57.167084) (xy 67.74562 57.166765) (xy 67.664391 57.1495) + (xy 67.485609 57.1495) (xy 67.421601 57.163104) (xy 67.404428 57.166755) (xy 67.402841 57.167081) + (xy 67.326921 57.182183) (xy 67.32109 57.183952) (xy 67.320949 57.18349) (xy 67.311651 57.186372) + (xy 67.310731 57.186671) (xy 67.240721 57.21784) (xy 67.237745 57.219119) (xy 67.172139 57.246295) + (xy 67.172132 57.246299) (xy 67.171581 57.246668) (xy 67.153157 57.256827) (xy 67.147413 57.259384) + (xy 67.147406 57.259389) (xy 67.09058 57.300675) (xy 67.08659 57.303456) (xy 67.032841 57.339371) + (xy 67.032834 57.339377) (xy 67.02783 57.344381) (xy 67.01305 57.357003) (xy 67.002777 57.364467) + (xy 67.002767 57.364476) (xy 66.960022 57.411948) (xy 66.955557 57.416653) (xy 66.914377 57.457834) + (xy 66.914369 57.457843) (xy 66.906877 57.469056) (xy 66.895932 57.483128) (xy 66.883142 57.497333) + (xy 66.883138 57.497338) (xy 66.854392 57.547127) (xy 66.850109 57.554014) (xy 66.821302 57.597126) + (xy 66.821296 57.597137) (xy 66.813683 57.615517) (xy 66.806513 57.630055) (xy 66.793752 57.652158) + (xy 66.777959 57.700761) (xy 66.774592 57.709887) (xy 66.757183 57.751919) (xy 66.757183 57.751921) + (xy 66.752052 57.777714) (xy 66.748367 57.791834) (xy 66.738504 57.822192) (xy 66.738502 57.822202) + (xy 66.733828 57.866664) (xy 66.732126 57.877885) (xy 66.7245 57.916228) (xy 66.7245 57.948924) + (xy 66.723821 57.961885) (xy 66.719815 58) (xy 63.111962 58) (xy 63.120775 57.986811) (xy 63.17358 57.859328) + (xy 63.18278 57.813077) (xy 63.2005 57.723995) (xy 63.2005 57.586004) (xy 63.173581 57.450677) (xy 63.17358 57.450676) + (xy 63.17358 57.450672) (xy 63.157539 57.411946) (xy 63.120778 57.323195) (xy 63.120771 57.323182) + (xy 63.044114 57.208458) (xy 63.044111 57.208454) (xy 62.946545 57.110888) (xy 62.946541 57.110885) + (xy 62.831817 57.034228) (xy 62.831804 57.034221) (xy 62.704332 56.981421) (xy 62.704322 56.981418) + (xy 62.568995 56.9545) (xy 62.568993 56.9545) (xy 62.431007 56.9545) (xy 62.431005 56.9545) (xy 62.295677 56.981418) + (xy 62.295667 56.981421) (xy 62.168195 57.034221) (xy 62.168182 57.034228) (xy 62.053458 57.110885) + (xy 62.053454 57.110888) (xy 61.955888 57.208454) (xy 61.955885 57.208458) (xy 61.879228 57.323182) + (xy 61.879221 57.323195) (xy 61.826421 57.450667) (xy 61.826418 57.450677) (xy 61.7995 57.586004) + (xy 61.7995 57.586007) (xy 61.7995 57.723993) (xy 61.7995 57.723995) (xy 61.799499 57.723995) (xy 60.2005 57.723995) + (xy 60.2005 57.586004) (xy 60.173581 57.450677) (xy 60.17358 57.450676) (xy 60.17358 57.450672) + (xy 60.157539 57.411946) (xy 60.120778 57.323195) (xy 60.120771 57.323182) (xy 60.044114 57.208458) + (xy 60.044111 57.208454) (xy 59.946545 57.110888) (xy 59.946541 57.110885) (xy 59.831817 57.034228) + (xy 59.831804 57.034221) (xy 59.704332 56.981421) (xy 59.704322 56.981418) (xy 59.568995 56.9545) + (xy 59.568993 56.9545) (xy 59.431007 56.9545) (xy 59.431005 56.9545) (xy 59.295677 56.981418) (xy 59.295667 56.981421) + (xy 59.168195 57.034221) (xy 59.168182 57.034228) (xy 59.053458 57.110885) (xy 59.053454 57.110888) + (xy 58.955888 57.208454) (xy 58.955885 57.208458) (xy 58.879228 57.323182) (xy 58.879221 57.323195) + (xy 58.826421 57.450667) (xy 58.826418 57.450677) (xy 58.7995 57.586004) (xy 58.7995 57.586007) + (xy 58.7995 57.723993) (xy 58.7995 57.723995) (xy 58.799499 57.723995) (xy 52.4005 57.723995) (xy 52.4005 53.682412) + (xy 52.420185 53.615373) (xy 52.427555 53.605097) (xy 52.42981 53.602267) (xy 52.429816 53.602262) + (xy 52.525789 53.449522) (xy 52.585368 53.279255) (xy 52.587017 53.264621) (xy 52.605565 53.100003) + (xy 52.605565 53.099996) (xy 52.585369 52.92075) (xy 52.585368 52.920745) (xy 52.525788 52.750476) + (xy 52.429815 52.597737) (xy 52.302262 52.470184) (xy 52.149521 52.37421) (xy 52.092135 52.35413) + (xy 52.039846 52.335833) (xy 51.983072 52.295114) (xy 51.957324 52.230161) (xy 51.97078 52.161599) + (xy 51.993118 52.131115) (xy 53.418535 50.705698) (xy 53.479856 50.672215) (xy 53.492311 50.670163) + (xy 53.579255 50.660368) (xy 53.749522 50.600789) (xy 53.902262 50.504816) (xy 54.029816 50.377262) + (xy 54.125789 50.224522) (xy 54.185368 50.054255) (xy 54.191481 50) (xy 54.205565 49.875003) (xy 54.205565 49.874996) + (xy 54.185369 49.69575) (xy 54.185368 49.695745) (xy 54.125788 49.525476) (xy 54.060911 49.422226) + (xy 54.029816 49.372738) (xy 53.902262 49.245184) (xy 53.877804 49.229816) (xy 53.749523 49.149211) + (xy 53.579254 49.089631) (xy 53.579249 49.08963) (xy 53.400004 49.069435) (xy 53.399996 49.069435) + (xy 53.22075 49.08963) (xy 53.220745 49.089631) (xy 53.050476 49.149211) (xy 52.897737 49.245184) + (xy 52.770184 49.372737) (xy 52.67421 49.525478) (xy 52.61463 49.69575) (xy 52.604837 49.782668) + (xy 52.57777 49.847082) (xy 52.569298 49.856465) (xy 47.931286 54.494478) (xy 47.819481 54.606282) + (xy 47.819479 54.606285) (xy 47.769361 54.693094) (xy 47.769359 54.693096) (xy 47.740425 54.743209) + (xy 47.740424 54.74321) (xy 47.726303 54.795909) (xy 47.699499 54.895943) (xy 47.699499 54.895945) + (xy 47.699499 55.064046) (xy 47.6995 55.064059) (xy 47.6995 55.8755) (xy 47.679815 55.942539) (xy 47.627011 55.988294) + (xy 47.5755 55.9995) (xy 33.749499 55.9995) (xy 33.68246 55.979815) (xy 33.636705 55.927011) (xy 33.625499 55.8755) + (xy 33.625499 55.242129) (xy 33.625498 55.242123) (xy 33.625497 55.242116) (xy 33.619091 55.182517) + (xy 33.568796 55.047669) (xy 33.568795 55.047668) (xy 33.568793 55.047664) (xy 33.482547 54.932455) + (xy 33.482544 54.932452) (xy 33.367335 54.846206) (xy 33.367328 54.846202) (xy 33.235917 54.797189) + (xy 33.179983 54.755318) (xy 33.155566 54.689853) (xy 33.170418 54.62158) (xy 33.191563 54.593332) + (xy 33.313495 54.471401) (xy 33.449035 54.27783) (xy 33.548903 54.063663) (xy 33.610063 53.835408) + (xy 33.630659 53.6) (xy 33.610063 53.364592) (xy 33.548903 53.136337) (xy 33.449035 52.922171) (xy 33.328814 52.750476) + (xy 33.313494 52.728597) (xy 33.146402 52.561506) (xy 33.146395 52.561501) (xy 32.952834 52.425967) + (xy 32.95283 52.425965) (xy 32.952828 52.425964) (xy 32.738663 52.326097) (xy 32.738659 52.326096) + (xy 32.738655 52.326094) (xy 32.510413 52.264938) (xy 32.510403 52.264936) (xy 32.275001 52.244341) + (xy 32.274999 52.244341) (xy 32.039596 52.264936) (xy 32.039586 52.264938) (xy 31.811344 52.326094) + (xy 31.811335 52.326098) (xy 31.597171 52.425964) (xy 31.597169 52.425965) (xy 31.403597 52.561505) + (xy 31.236505 52.728597) (xy 31.100965 52.922169) (xy 31.100964 52.922171) (xy 31.001098 53.136335) + (xy 31.001094 53.136344) (xy 30.939938 53.364586) (xy 30.939936 53.364596) (xy 30.919341 53.599999) + (xy 30.919341 53.6) (xy 30.939936 53.835403) (xy 30.939938 53.835413) (xy 31.001094 54.063655) (xy 31.001096 54.063659) + (xy 31.001097 54.063663) (xy 31.100965 54.27783) (xy 31.100967 54.277834) (xy 31.209281 54.432521) + (xy 31.236501 54.471396) (xy 31.236506 54.471402) (xy 31.35843 54.593326) (xy 31.391915 54.654649) + (xy 31.386931 54.724341) (xy 31.345059 54.780274) (xy 31.314083 54.797189) (xy 31.182669 54.846203) + (xy 31.182664 54.846206) (xy 31.067455 54.932452) (xy 31.067452 54.932455) (xy 30.981206 55.047664) + (xy 30.981202 55.047671) (xy 30.930908 55.182517) (xy 30.926477 55.223735) (xy 30.924501 55.242123) + (xy 30.9245 55.242135) (xy 30.9245 57.03787) (xy 30.924501 57.037876) (xy 30.930908 57.097483) (xy 30.981202 57.232328) + (xy 30.981206 57.232335) (xy 31.067452 57.347544) (xy 31.067455 57.347547) (xy 31.182664 57.433793) + (xy 31.182671 57.433797) (xy 31.317517 57.484091) (xy 31.317516 57.484091) (xy 31.324444 57.484835) + (xy 31.377127 57.4905) (xy 33.172872 57.490499) (xy 33.232483 57.484091) (xy 33.367331 57.433796) + (xy 33.482546 57.347546) (xy 33.555428 57.250188) (xy 33.611361 57.208318) (xy 33.654694 57.2005) + (xy 47.717588 57.2005) (xy 47.784627 57.220185) (xy 47.794903 57.227555) (xy 47.797736 57.229814) + (xy 47.797738 57.229816) (xy 47.885816 57.285159) (xy 47.946349 57.323195) (xy 47.950478 57.325789) + (xy 48.061039 57.364476) (xy 48.120745 57.385368) (xy 48.12075 57.385369) (xy 48.299996 57.405565) + (xy 48.3 57.405565) (xy 48.300004 57.405565) (xy 48.479249 57.385369) (xy 48.479252 57.385368) (xy 48.479255 57.385368) + (xy 48.649522 57.325789) (xy 48.802262 57.229816) (xy 48.929816 57.102262) (xy 49.025789 56.949522) + (xy 49.085368 56.779255) (xy 49.090217 56.73622) (xy 49.105565 56.600003) (xy 49.105565 56.599996) + (xy 49.085369 56.42075) (xy 49.085368 56.420745) (xy 49.025788 56.250476) (xy 48.929813 56.097734) + (xy 48.92755 56.094896) (xy 48.926659 56.092715) (xy 48.926111 56.091842) (xy 48.926264 56.091745) + (xy 48.901144 56.030209) (xy 48.9005 56.017587) (xy 48.9005 55.275096) (xy 48.920185 55.208057) + (xy 48.936814 55.18742) (xy 50.831112 53.293121) (xy 50.892435 53.259637) (xy 50.962127 53.264621) + (xy 51.01806 53.306493) (xy 51.035835 53.339849) (xy 51.07421 53.449521) (xy 51.122197 53.525892) + (xy 51.165179 53.594297) (xy 51.170185 53.602263) (xy 51.172445 53.605097) (xy 51.173334 53.607275) + (xy 51.173889 53.608158) (xy 51.173734 53.608255) (xy 51.198855 53.669783) (xy 51.1995 53.682412) + (xy 51.1995 58.417587) (xy 51.179815 58.484626) (xy 51.17245 58.494896) (xy 51.170186 58.497734) + (xy 51.074211 58.650476) (xy 51.014631 58.820745) (xy 51.01463 58.82075) (xy 50.994435 58.999996) + (xy 50.994435 59.000003) (xy 51.01463 59.179249) (xy 51.014632 59.179257) (xy 51.06897 59.334546) + (xy 51.072531 59.404324) (xy 51.037802 59.464952) (xy 50.975809 59.497179) (xy 50.951928 59.4995) + (xy 30.6245 59.4995) (xy 30.557461 59.479815) (xy 30.511706 59.427011) (xy 30.5005 59.3755) (xy 30.5005 30.6245) + (xy 30.520185 30.557461) (xy 30.572989 30.511706) (xy 30.6245 30.5005) (xy 42.863388 30.5005) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 77.830439 50.19941) (xy 77.881818 50.246759) (xy 77.8995 50.310575) (xy 77.8995 50.817587) (xy 77.879815 50.884626) + (xy 77.87245 50.894896) (xy 77.870186 50.897734) (xy 77.774211 51.050476) (xy 77.714631 51.220745) + (xy 77.71463 51.22075) (xy 77.694435 51.399996) (xy 77.694435 51.400003) (xy 77.71463 51.579249) + (xy 77.714631 51.579254) (xy 77.774211 51.749523) (xy 77.870184 51.902262) (xy 77.997738 52.029816) + (xy 78.039585 52.05611) (xy 78.085875 52.108443) (xy 78.096524 52.177497) (xy 78.068149 52.241345) + (xy 78.061293 52.248784) (xy 77.346898 52.963181) (xy 77.285575 52.996666) (xy 77.259217 52.9995) + (xy 71.831469 52.9995) (xy 71.76443 52.979815) (xy 71.743788 52.963181) (xy 69.492788 50.712181) + (xy 69.459303 50.650858) (xy 69.464287 50.581166) (xy 69.506159 50.525233) (xy 69.571623 50.500816) + (xy 69.580469 50.5005) (xy 77.013331 50.5005) (xy 77.013347 50.500501) (xy 77.020943 50.500501) + (xy 77.179054 50.500501) (xy 77.179057 50.500501) (xy 77.331785 50.459577) (xy 77.381904 50.430639) + (xy 77.468716 50.38052) (xy 77.58052 50.268716) (xy 77.580521 50.268714) (xy 77.602476 50.246759) + (xy 77.618535 50.2307) (xy 77.679858 50.197215) (xy 77.692331 50.195161) (xy 77.761617 50.187355) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 79.634627 34.745185) (xy 79.644903 34.752555) (xy 79.647736 34.754814) (xy 79.647738 34.754816) + (xy 79.752663 34.820745) (xy 79.78398 34.840423) (xy 79.800478 34.850789) (xy 79.928095 34.895444) + (xy 79.970745 34.910368) (xy 79.97075 34.910369) (xy 80.149996 34.930565) (xy 80.15 34.930565) (xy 80.150003 34.930565) + (xy 80.261616 34.917989) (xy 80.330438 34.930043) (xy 80.381818 34.977392) (xy 80.3995 35.041209) + (xy 80.3995 46.251372) (xy 80.379815 46.318411) (xy 80.327011 46.364166) (xy 80.257853 46.37411) + (xy 80.194297 46.345085) (xy 80.186493 46.336803) (xy 80.186266 46.337031) (xy 80.180521 46.331286) + (xy 80.18052 46.331284) (xy 80.068716 46.21948) (xy 80.068715 46.219479) (xy 80.064385 46.215149) + (xy 80.064374 46.215139) (xy 73.996717 40.147482) (xy 73.963232 40.086159) (xy 73.961178 40.073684) + (xy 73.943947 39.92075) (xy 73.943946 39.920745) (xy 73.915196 39.838583) (xy 73.884367 39.750478) + (xy 73.788394 39.597738) (xy 73.66084 39.470184) (xy 73.627952 39.449519) (xy 73.508101 39.374211) + (xy 73.337832 39.314631) (xy 73.337827 39.31463) (xy 73.158582 39.294435) (xy 73.158574 39.294435) + (xy 72.979328 39.31463) (xy 72.979323 39.314631) (xy 72.809054 39.374211) (xy 72.656315 39.470184) + (xy 72.528762 39.597737) (xy 72.432789 39.750476) (xy 72.373209 39.920745) (xy 72.373208 39.92075) + (xy 72.353013 40.099996) (xy 72.353013 40.100003) (xy 72.373208 40.279249) (xy 72.373209 40.279254) + (xy 72.432789 40.449523) (xy 72.527777 40.600694) (xy 72.546777 40.66793) (xy 72.527777 40.732638) + (xy 72.432789 40.883809) (xy 72.373209 41.054078) (xy 72.373208 41.054083) (xy 72.353013 41.233329) + (xy 72.353013 41.233336) (xy 72.373208 41.412582) (xy 72.373209 41.412587) (xy 72.432789 41.582857) + (xy 72.43544 41.58836) (xy 72.446795 41.657301) (xy 72.419075 41.721436) (xy 72.361081 41.760404) + (xy 72.323722 41.766166) (xy 69.226764 41.766166) (xy 69.159725 41.746481) (xy 69.139083 41.729847) + (xy 66.676521 39.267286) (xy 66.643036 39.205963) (xy 66.64802 39.136271) (xy 66.685537 39.083752) + (xy 66.689616 39.080405) (xy 66.810883 38.980883) (xy 66.93591 38.828538) (xy 67.028814 38.654727) + (xy 67.086024 38.466132) (xy 67.105341 38.27) (xy 67.086024 38.073868) (xy 67.028814 37.885273) + (xy 66.93591 37.711462) (xy 66.935907 37.711458) (xy 66.932523 37.706393) (xy 66.934164 37.705296) + (xy 66.910405 37.649361) (xy 66.922194 37.580493) (xy 66.932888 37.563851) (xy 66.932523 37.563607) + (xy 66.935904 37.558544) (xy 66.93591 37.558538) (xy 67.028814 37.384727) (xy 67.086024 37.196132) + (xy 67.105341 37) (xy 67.099102 36.936653) (xy 67.112121 36.868008) (xy 67.160186 36.817298) (xy 67.222505 36.8005) + (xy 72.963331 36.8005) (xy 72.963347 36.800501) (xy 72.970943 36.800501) (xy 73.129054 36.800501) + (xy 73.129057 36.800501) (xy 73.281785 36.759577) (xy 73.331904 36.730639) (xy 73.418716 36.68052) + (xy 73.53052 36.568716) (xy 73.53052 36.568714) (xy 73.540728 36.558507) (xy 73.54073 36.558504) + (xy 74.274884 35.824349) (xy 74.336205 35.790866) (xy 74.348662 35.788814) (xy 74.379255 35.785368) + (xy 74.549522 35.725789) (xy 74.702262 35.629816) (xy 74.829816 35.502262) (xy 74.925789 35.349522) + (xy 74.985368 35.179255) (xy 74.996045 35.084493) (xy 75.005565 35.000003) (xy 75.005565 34.999996) + (xy 74.990173 34.863383) (xy 75.002228 34.794561) (xy 75.049577 34.743182) (xy 75.113393 34.7255) + (xy 79.567588 34.7255) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 76.818967 30.520185) (xy 76.864722 30.572989) (xy 76.874666 30.642147) (xy 76.86897 30.665454) + (xy 76.814632 30.820742) (xy 76.81463 30.82075) (xy 76.794435 30.999996) (xy 76.794435 31.000003) + (xy 76.81463 31.179249) (xy 76.814631 31.179254) (xy 76.874211 31.349523) (xy 76.894168 31.381284) + (xy 76.970184 31.502262) (xy 77.097738 31.629816) (xy 77.250478 31.725789) (xy 77.420745 31.785368) + (xy 77.507669 31.795161) (xy 77.57208 31.822226) (xy 77.581465 31.8307) (xy 77.865139 32.114374) + (xy 77.865149 32.114385) (xy 77.869479 32.118715) (xy 77.86948 32.118716) (xy 77.981284 32.23052) + (xy 77.981286 32.230521) (xy 77.98129 32.230524) (xy 78.065352 32.279057) (xy 78.065353 32.279057) + (xy 78.118215 32.309577) (xy 78.270943 32.3505) (xy 78.270945 32.3505) (xy 84.376 32.3505) (xy 84.443039 32.370185) + (xy 84.488794 32.422989) (xy 84.5 32.4745) (xy 84.5 37.099402) (xy 84.480315 37.166441) (xy 84.463681 37.187083) + (xy 81.812181 39.838583) (xy 81.750858 39.872068) (xy 81.681166 39.867084) (xy 81.625233 39.825212) + (xy 81.600816 39.759748) (xy 81.6005 39.750902) (xy 81.6005 34.707412) (xy 81.620185 34.640373) + (xy 81.627555 34.630097) (xy 81.62981 34.627267) (xy 81.629816 34.627262) (xy 81.725789 34.474522) + (xy 81.785368 34.304255) (xy 81.805565 34.125) (xy 81.80379 34.10925) (xy 81.785369 33.94575) (xy 81.785368 33.945745) + (xy 81.725788 33.775476) (xy 81.686582 33.71308) (xy 81.629816 33.622738) (xy 81.502262 33.495184) + (xy 81.491117 33.488181) (xy 81.349523 33.399211) (xy 81.179254 33.339631) (xy 81.179249 33.33963) + (xy 81.000004 33.319435) (xy 80.999996 33.319435) (xy 80.82075 33.33963) (xy 80.820745 33.339631) + (xy 80.650474 33.399212) (xy 80.640968 33.405185) (xy 80.573731 33.424183) (xy 80.509032 33.405185) + (xy 80.499525 33.399212) (xy 80.329254 33.339631) (xy 80.329249 33.33963) (xy 80.150004 33.319435) + (xy 80.149996 33.319435) (xy 79.97075 33.33963) (xy 79.970745 33.339631) (xy 79.800476 33.399211) + (xy 79.647736 33.495185) (xy 79.644903 33.497445) (xy 79.642724 33.498334) (xy 79.641842 33.498889) + (xy 79.641744 33.498734) (xy 79.580217 33.523855) (xy 79.567588 33.5245) (xy 68.675097 33.5245) + (xy 68.608058 33.504815) (xy 68.587416 33.488181) (xy 68.150224 33.050989) (xy 68.116739 32.989666) + (xy 68.121723 32.919974) (xy 68.132911 32.897336) (xy 68.170937 32.836819) (xy 68.225789 32.749522) + (xy 68.251501 32.676037) (xy 68.292222 32.619262) (xy 68.354657 32.593772) (xy 68.429255 32.585368) + (xy 68.599522 32.525789) (xy 68.752262 32.429816) (xy 68.879816 32.302262) (xy 68.975789 32.149522) + (xy 69.035368 31.979255) (xy 69.04865 31.861373) (xy 69.055565 31.800003) (xy 69.055565 31.799996) + (xy 69.048623 31.738383) (xy 69.060678 31.669561) (xy 69.108027 31.618182) (xy 69.171843 31.6005) + (xy 69.899091 31.6005) (xy 69.96613 31.620185) (xy 70.011885 31.672989) (xy 70.016133 31.683545) + (xy 70.056884 31.800003) (xy 70.074211 31.849522) (xy 70.170184 32.002262) (xy 70.297738 32.129816) + (xy 70.450478 32.225789) (xy 70.602709 32.279057) (xy 70.620745 32.285368) (xy 70.62075 32.285369) + (xy 70.799996 32.305565) (xy 70.8 32.305565) (xy 70.800004 32.305565) (xy 70.979249 32.285369) (xy 70.979252 32.285368) + (xy 70.979255 32.285368) (xy 71.149522 32.225789) (xy 71.302262 32.129816) (xy 71.429816 32.002262) + (xy 71.518343 31.861371) (xy 71.570677 31.815082) (xy 71.637221 31.804125) (xy 71.65 31.805565) + (xy 71.650004 31.805565) (xy 71.829249 31.785369) (xy 71.829252 31.785368) (xy 71.829255 31.785368) + (xy 71.999522 31.725789) (xy 72.152262 31.629816) (xy 72.279816 31.502262) (xy 72.375789 31.349522) + (xy 72.435368 31.179255) (xy 72.439983 31.138294) (xy 72.455565 31.000003) (xy 72.455565 30.999996) + (xy 72.435369 30.82075) (xy 72.435367 30.820742) (xy 72.38103 30.665454) (xy 72.377469 30.595676) + (xy 72.412198 30.535048) (xy 72.474191 30.502821) (xy 72.498072 30.5005) (xy 76.751928 30.5005) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 84.443039 30.520185) (xy 84.488794 30.572989) (xy 84.5 30.6245) (xy 84.5 31.0255) (xy 84.480315 31.092539) + (xy 84.427511 31.138294) (xy 84.376 31.1495) (xy 78.650097 31.1495) (xy 78.583058 31.129815) (xy 78.562416 31.113181) + (xy 78.4307 30.981465) (xy 78.397215 30.920142) (xy 78.395163 30.907686) (xy 78.385368 30.820745) + (xy 78.345113 30.705703) (xy 78.33103 30.665454) (xy 78.327469 30.595675) (xy 78.362198 30.535048) + (xy 78.424191 30.502821) (xy 78.448072 30.5005) (xy 84.376 30.5005) + ) + ) + ) +) diff --git a/caliper_esp32.kicad_pro b/caliper_esp32.kicad_pro new file mode 100644 index 0000000..dee2b88 --- /dev/null +++ b/caliper_esp32.kicad_pro @@ -0,0 +1,582 @@ +{ + "board": { + "3dviewports": [], + "design_settings": { + "defaults": { + "apply_defaults_to_fp_fields": false, + "apply_defaults_to_fp_shapes": false, + "apply_defaults_to_fp_text": false, + "board_outline_line_width": 0.05, + "copper_line_width": 0.2, + "copper_text_italic": false, + "copper_text_size_h": 1.5, + "copper_text_size_v": 1.5, + "copper_text_thickness": 0.3, + "copper_text_upright": false, + "courtyard_line_width": 0.05, + "dimension_precision": 4, + "dimension_units": 3, + "dimensions": { + "arrow_length": 1270000, + "extension_offset": 500000, + "keep_text_aligned": true, + "suppress_zeroes": false, + "text_position": 0, + "units_format": 1 + }, + "fab_line_width": 0.1, + "fab_text_italic": false, + "fab_text_size_h": 1.0, + "fab_text_size_v": 1.0, + "fab_text_thickness": 0.15, + "fab_text_upright": false, + "other_line_width": 0.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.762, + "height": 1.524, + "width": 1.524 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.5 + } + }, + "diff_pair_dimensions": [], + "drc_exclusions": [], + "meta": { + "version": 2 + }, + "rule_severities": { + "annular_width": "error", + "clearance": "error", + "connection_width": "warning", + "copper_edge_clearance": "error", + "copper_sliver": "warning", + "courtyards_overlap": "error", + "diff_pair_gap_out_of_range": "error", + "diff_pair_uncoupled_length_too_long": "error", + "drill_out_of_range": "error", + "duplicate_footprints": "warning", + "extra_footprint": "warning", + "footprint": "error", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_near_hole": "error", + "invalid_outline": "error", + "isolated_copper": "warning", + "item_on_disabled_layer": "error", + "items_not_allowed": "error", + "length_out_of_range": "error", + "lib_footprint_issues": "warning", + "lib_footprint_mismatch": "warning", + "malformed_courtyard": "error", + "microvia_drill_out_of_range": "error", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "warning", + "silk_over_copper": "warning", + "silk_overlap": "warning", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_dangling": "warning", + "track_width": "error", + "tracks_crossing": "error", + "unconnected_items": "error", + "unresolved_variable": "error", + "via_dangling": "warning", + "zones_intersect": "error" + }, + "rules": { + "max_error": 0.005, + "min_clearance": 0.0, + "min_connection": 0.0, + "min_copper_edge_clearance": 0.5, + "min_hole_clearance": 0.25, + "min_hole_to_hole": 0.25, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.1, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 0.8, + "min_text_thickness": 0.08, + "min_through_hole_diameter": 0.3, + "min_track_width": 0.0, + "min_via_annular_width": 0.1, + "min_via_diameter": 0.5, + "solder_mask_to_copper_clearance": 0.0, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpadsmd": true, + "td_onroundshapesonly": false, + "td_ontrackend": false, + "td_onviapad": true + } + ], + "teardrop_parameters": [ + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_round_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_rect_shape", + "td_width_to_size_filter_ratio": 0.9 + }, + { + "td_allow_use_two_tracks": true, + "td_curve_segcount": 0, + "td_height_ratio": 1.0, + "td_length_ratio": 0.5, + "td_maxheight": 2.0, + "td_maxlen": 1.0, + "td_on_pad_in_zone": false, + "td_target_name": "td_track_end", + "td_width_to_size_filter_ratio": 0.9 + } + ], + "track_widths": [], + "tuning_pattern_settings": { + "diff_pair_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 1.0 + }, + "diff_pair_skew_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + }, + "single_track_defaults": { + "corner_radius_percentage": 80, + "corner_style": 1, + "max_amplitude": 1.0, + "min_amplitude": 0.2, + "single_sided": false, + "spacing": 0.6 + } + }, + "via_dimensions": [], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_presets": [], + "viewports": [] + }, + "boards": [], + "cvpcb": { + "equivalence_files": [] + }, + "erc": { + "erc_exclusions": [], + "meta": { + "version": 0 + }, + "pin_map": [ + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 1, + 0, + 1, + 2 + ], + [ + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 1, + 2, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 2 + ], + [ + 1, + 1, + 1, + 1, + 1, + 0, + 1, + 1, + 1, + 1, + 1, + 2 + ], + [ + 0, + 0, + 0, + 1, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 2, + 0, + 0, + 1, + 0, + 2, + 2, + 2, + 2 + ], + [ + 0, + 2, + 0, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 0, + 2, + 1, + 1, + 0, + 0, + 1, + 0, + 2, + 0, + 0, + 2 + ], + [ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + ] + ], + "rule_severities": { + "bus_definition_conflict": "error", + "bus_entry_needed": "error", + "bus_to_bus_conflict": "error", + "bus_to_net_conflict": "error", + "conflicting_netclasses": "error", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "lib_symbol_issues": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "similar_labels": "warning", + "simulation_model_issue": "ignore", + "unannotated": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "caliper_esp32.kicad_pro", + "version": 1 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.2, + "diff_pair_gap": 0.25, + "diff_pair_via_gap": 0.25, + "diff_pair_width": 0.2, + "line_style": 0, + "microvia_diameter": 0.3, + "microvia_drill": 0.1, + "name": "Default", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.2, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + } + ], + "meta": { + "version": 3 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [] + }, + "pcbnew": { + "last_paths": { + "gencad": "", + "idf": "", + "netlist": "", + "plot": "", + "pos_files": "", + "specctra_dsn": "", + "step": "", + "svg": "", + "vrml": "" + }, + "page_layout_descr_file": "" + }, + "schematic": { + "annotate_start_num": 0, + "bom_fmt_presets": [], + "bom_fmt_settings": { + "field_delimiter": ",", + "keep_line_breaks": false, + "keep_tabs": false, + "name": "CSV", + "ref_delimiter": ",", + "ref_range_delimiter": "", + "string_delimiter": "\"" + }, + "bom_presets": [], + "bom_settings": { + "exclude_dnp": false, + "fields_ordered": [ + { + "group_by": false, + "label": "Reference", + "name": "Reference", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": true + }, + { + "group_by": false, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + } + ], + "filter_string": "", + "group_symbols": true, + "name": "Grouped By Value", + "sort_asc": true, + "sort_field": "Reference" + }, + "connection_grid_size": 50.0, + "drawing": { + "dashed_lines_dash_length_ratio": 12.0, + "dashed_lines_gap_length_ratio": 3.0, + "default_line_thickness": 6.0, + "default_text_size": 50.0, + "field_names": [], + "intersheets_ref_own_page": false, + "intersheets_ref_prefix": "", + "intersheets_ref_short": false, + "intersheets_ref_show": false, + "intersheets_ref_suffix": "", + "junction_size_choice": 3, + "label_size_ratio": 0.375, + "operating_point_overlay_i_precision": 3, + "operating_point_overlay_i_range": "~A", + "operating_point_overlay_v_precision": 3, + "operating_point_overlay_v_range": "~V", + "overbar_offset_ratio": 1.23, + "pin_symbol_size": 25.0, + "text_offset_ratio": 0.15 + }, + "legacy_lib_dir": "", + "legacy_lib_list": [], + "meta": { + "version": 1 + }, + "net_format_name": "", + "page_layout_descr_file": "", + "plot_directory": "", + "spice_current_sheet_as_root": false, + "spice_external_command": "spice \"%I\"", + "spice_model_current_sheet_as_root": true, + "spice_save_all_currents": false, + "spice_save_all_dissipations": false, + "spice_save_all_voltages": false, + "subpart_first_id": 65, + "subpart_id_separator": 0 + }, + "sheets": [ + [ + "0f19020f-b69e-4e2c-a951-2e6ffe820141", + "Root" + ] + ], + "text_variables": {} +} diff --git a/caliper_esp32.kicad_sch b/caliper_esp32.kicad_sch new file mode 100644 index 0000000..dc0d7b4 --- /dev/null +++ b/caliper_esp32.kicad_sch @@ -0,0 +1,15183 @@ +(kicad_sch + (version 20231120) + (generator "eeschema") + (generator_version "8.0") + (uuid "0f19020f-b69e-4e2c-a951-2e6ffe820141") + (paper "A4") + (lib_symbols + (symbol "Connector:Conn_01x04_Pin" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J2" + (at 1.27 -8.636 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "Conn_01x04_Pin" + (at 7.874 6.096 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Connector_PinHeader_2.00mm:PinHeader_1x04_P2.00mm_Vertical" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x04_Pin_1_1" + (polyline + (pts + (xy 1.27 -5.08) (xy 0.8636 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 2.54) (xy 0.8636 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 0.8636 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 3.81) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "DATA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "CLK" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -5.08 180) + (length 3.81) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:TestPoint" + (pin_numbers hide) + (pin_names + (offset 0.762) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "TP" + (at 0 6.858 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TestPoint" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "test point tp" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Pin* Test*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TestPoint_0_1" + (circle + (center 0 3.302) + (radius 0.762) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TestPoint_1_1" + (pin passive line + (at 0 0 90) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector:USB_C_Receptacle_USB2.0_14P" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 22.225 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "USB_C_Receptacle_USB2.0_14P" + (at 0 19.685 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 3.81 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" + (at 3.81 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB 2.0-only 14P Type-C Receptacle connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "usb universal serial bus type-C USB2.0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "USB*C*Receptacle*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "USB_C_Receptacle_USB2.0_14P_0_0" + (rectangle + (start -0.254 -17.78) + (end 0.254 -16.764) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -4.826) + (end 9.144 -5.334) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -2.286) + (end 9.144 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 0.254) + (end 9.144 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 2.794) + (end 9.144 2.286) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 7.874) + (end 9.144 7.366) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 10.414) + (end 9.144 9.906) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 15.494) + (end 9.144 14.986) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "USB_C_Receptacle_USB2.0_14P_0_1" + (rectangle + (start -10.16 17.78) + (end 10.16 -17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (arc + (start -8.89 -3.81) + (mid -6.985 -5.7067) + (end -5.08 -3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 -3.81) + (mid -6.985 -4.4423) + (end -6.35 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 -3.81) + (mid -6.985 -4.4423) + (end -6.35 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -7.62 -3.81) + (end -6.35 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -6.35 3.81) + (mid -6.985 4.4423) + (end -7.62 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -6.35 3.81) + (mid -6.985 4.4423) + (end -7.62 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -5.08 3.81) + (mid -6.985 5.7067) + (end -8.89 3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.54 1.143) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 0 -5.842) + (radius 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -8.89 -3.81) (xy -8.89 3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -5.08 -3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -5.842) (xy 0 4.318) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -3.302) (xy -2.54 -0.762) (xy -2.54 0.508) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -2.032) (xy 2.54 0.508) (xy 2.54 1.778) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 4.318) (xy 0 6.858) (xy 1.27 4.318) (xy -1.27 4.318) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.905 1.778) + (end 3.175 3.048) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "USB_C_Receptacle_USB2.0_14P_1_1" + (pin passive line + (at 0 -22.86 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 10.16 180) + (length 5.08) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -2.54 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 2.54 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 7.62 180) + (length 5.08) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -5.08 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) hide + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 -22.86 90) + (length 5.08) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Connector_Generic:Conn_02x06_Odd_Even" + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 1.27 7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_02x06_Odd_Even" + (at 1.27 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_2x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_02x06_Odd_Even_1_1" + (rectangle + (start -1.27 -7.493) + (end 0 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -4.953) + (end 0 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 5.207) + (end 0 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -1.27 6.35) + (end 3.81 -8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (rectangle + (start 3.81 -7.493) + (end 2.54 -7.747) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -4.953) + (end 2.54 -5.207) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 -2.413) + (end 2.54 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 0.127) + (end 2.54 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 2.667) + (end 2.54 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 3.81 5.207) + (end 2.54 4.953) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -5.08 180) + (length 3.81) + (name "Pin_10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -7.62 180) + (length 3.81) + (name "Pin_12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 5.08 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 2.54 180) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 3.81) + (name "Pin_8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:Battery_Cell" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "BT" + (at 2.54 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Battery_Cell" + (at 2.54 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0 1.524 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 1.524 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single-cell battery" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "battery cell" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Battery_Cell_0_1" + (rectangle + (start -2.286 1.778) + (end 2.286 1.524) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start -1.524 1.016) + (end 1.524 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 0 0.762) (xy 0 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 1.778) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 3.048) (xy 1.778 3.048) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 3.556) (xy 1.27 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Battery_Cell_1_1" + (pin passive line + (at 0 5.08 270) + (length 2.54) + (name "+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -2.54 90) + (length 2.54) + (name "-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:C" + (pin_numbers hide) + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 0.635 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "C" + (at 0.635 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 0.9652 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "cap capacitor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "C_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) (xy 2.032 -0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.032 0.762) (xy 2.032 0.762) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "C_1_1" + (pin passive line + (at 0 3.81 270) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 2.794) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:D_Schottky" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "D_Schottky" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Schottky diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "diode Schottky" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "D_Schottky_0_1" + (polyline + (pts + (xy 1.27 0) (xy -1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 1.27) (xy 1.27 -1.27) (xy -1.27 0) (xy 1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -1.905 1.27) (xy -1.27 1.27) (xy -1.27 -1.27) (xy -0.635 -1.27) (xy -0.635 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "D_Schottky_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:LED" + (pin_numbers hide) + (pin_names + (offset 1.016) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "LED" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "LED diode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LED_0_1" + (polyline + (pts + (xy -1.27 -1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy 1.27 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.27) (xy 1.27 1.27) (xy -1.27 0) (xy 1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.048 -0.762) (xy -4.572 -2.286) (xy -3.81 -2.286) (xy -4.572 -2.286) (xy -4.572 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.778 -0.762) (xy -3.302 -2.286) (xy -2.54 -2.286) (xy -3.302 -2.286) (xy -3.302 -1.524) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "LED_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "K" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Device:R" + (pin_numbers hide) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 2.032 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "R" + (at 0 0 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "R res resistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "R_0_1" + (rectangle + (start -1.016 -2.54) + (end 1.016 2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "R_1_1" + (pin passive line + (at 0 3.81 270) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 1.27) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Interface_USB:CH340X" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -5.08 13.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "CH340X" + (at 1.27 13.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" + (at 1.27 -13.97 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://cdn.sparkfun.com/assets/5/0/a/8/5/CH340DS1.PDF" + (at -8.89 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB serial converter, 5V-tolerant IO, UART, MSOP-10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "USB UART Serial Converter Interface" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "MSOP*3x3mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "CH340X_0_1" + (rectangle + (start -7.62 12.7) + (end 7.62 -12.7) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "CH340X_1_1" + (pin bidirectional line + (at -10.16 2.54 0) + (length 2.54) + (name "UD+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 0 15.24 270) + (length 2.54) + (name "V3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -10.16 0 0) + (length 2.54) + (name "UD-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -15.24 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 10.16 -10.16 180) + (length 2.54) + (name "~{RTS}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 2.54 180) + (length 2.54) + (name "~{CTS}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 10.16 -7.62 180) + (length 2.54) + (name "TNOW/~{DTR}" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at -2.54 15.24 270) + (length 2.54) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin output line + (at 10.16 10.16 180) + (length 2.54) + (name "TXD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 10.16 7.62 180) + (length 2.54) + (name "RXD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Jumper:SolderJumper_2_Open" + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (property "Reference" "JP" + (at 0 2.032 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SolderJumper_2_Open" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "solder jumper SPST" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SolderJumper*Open*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SolderJumper_2_Open_0_1" + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -0.254 1.016) + (mid -1.2656 0) + (end -0.254 -1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -0.254 1.016) (xy -0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.016) (xy 0.254 -1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.254 -1.016) + (mid 1.2656 0) + (end 0.254 1.016) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "SolderJumper_2_Open_1_1" + (pin passive line + (at -3.81 0 0) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 3.81 0 180) + (length 2.54) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "RF_Module:ESP32-S3-MINI-1" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -11.43 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "ESP32-S3-MINI-1" + (at 12.7 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "RF_Module:ESP32-S2-MINI-1" + (at 15.24 -29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf" + (at 0 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RF Module, ESP32-S3 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 3.3V, SMD, onboard antenna" + (at 0 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "RF Radio BT ESP ESP32-S3 Espressif" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "ESP32?S*MINI?1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "ESP32-S3-MINI-1_0_1" + (rectangle + (start -12.7 27.94) + (end 12.7 -27.94) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "ESP32-S3-MINI-1_1_1" + (pin power_in line + (at 0 -30.48 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 5.08 0) + (length 2.54) + (name "IO6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 2.54 0) + (length 2.54) + (name "IO7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 0 0) + (length 2.54) + (name "IO8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -2.54 0) + (length 2.54) + (name "IO9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -5.08 0) + (length 2.54) + (name "IO10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -7.62 0) + (length 2.54) + (name "IO11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -10.16 0) + (length 2.54) + (name "IO12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -12.7 0) + (length 2.54) + (name "IO13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -15.24 0) + (length 2.54) + (name "IO14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -17.78 0) + (length 2.54) + (name "IO15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -20.32 0) + (length 2.54) + (name "IO16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -22.86 0) + (length 2.54) + (name "IO17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 -25.4 0) + (length 2.54) + (name "IO18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 17.78 180) + (length 2.54) + (name "IO19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 15.24 180) + (length 2.54) + (name "IO20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 12.7 180) + (length 2.54) + (name "IO21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 10.16 180) + (length 2.54) + (name "IO26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -22.86 180) + (length 2.54) + (name "IO47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 7.62 180) + (length 2.54) + (name "IO33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 5.08 180) + (length 2.54) + (name "IO34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 30.48 270) + (length 2.54) + (name "3V3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -25.4 180) + (length 2.54) + (name "IO48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 2.54 180) + (length 2.54) + (name "IO35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 2.54) + (name "IO36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -2.54 180) + (length 2.54) + (name "IO37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -5.08 180) + (length 2.54) + (name "IO38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -7.62 180) + (length 2.54) + (name "IO39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -10.16 180) + (length 2.54) + (name "IO40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -12.7 180) + (length 2.54) + (name "IO41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -15.24 180) + (length 2.54) + (name "IO42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 25.4 180) + (length 2.54) + (name "TXD0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 20.32 0) + (length 2.54) + (name "IO0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 22.86 180) + (length 2.54) + (name "RXD0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -17.78 180) + (length 2.54) + (name "IO45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -20.32 180) + (length 2.54) + (name "IO46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 25.4 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "49" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 17.78 0) + (length 2.54) + (name "IO1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "50" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "51" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "52" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "53" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "54" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "55" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "56" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "57" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "58" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "59" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 15.24 0) + (length 2.54) + (name "IO2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "60" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "61" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "62" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "63" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "64" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -30.48 90) + (length 2.54) hide + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "65" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 12.7 0) + (length 2.54) + (name "IO3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 10.16 0) + (length 2.54) + (name "IO4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 7.62 0) + (length 2.54) + (name "IO5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:AP2112K-1.8" + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -5.08 5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "AP2112K-1.8" + (at 0 5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 8.255 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.8V fixed positive output, SOT-23-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23?5*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP2112K-1.8_0_1" + (rectangle + (start -5.08 4.445) + (end 5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AP2112K-1.8_1_1" + (pin power_in line + (at -7.62 2.54 0) + (length 2.54) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 5.08 0 180) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 2.54 180) + (length 2.54) + (name "VOUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Regulator_Linear:AP2112K-3.3" + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -5.08 5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "AP2112K-3.3" + (at 0 5.715 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 0 8.255 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" + (at 0 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "600mA low dropout linear regulator, with enable pin, 3.8V-6V input voltage range, 3.3V fixed positive output, SOT-23-5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "linear regulator ldo fixed positive" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23?5*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AP2112K-3.3_0_1" + (rectangle + (start -5.08 4.445) + (end 5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "AP2112K-3.3_1_1" + (pin power_in line + (at -7.62 2.54 0) + (length 2.54) + (name "VIN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -7.62 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -7.62 0 0) + (length 2.54) + (name "EN" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin no_connect line + (at 5.08 0 180) + (length 2.54) hide + (name "NC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_out line + (at 7.62 2.54 180) + (length 2.54) + (name "VOUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Switch:SW_DIP_x04" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "SW" + (at 0 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SW_DIP_x04" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "dip switch" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SW?DIP?x4*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SW_DIP_x04_0_0" + (circle + (center -2.032 -2.54) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.032 0) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.032 2.54) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.032 5.08) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 -2.3876) (xy 2.3622 -1.3462) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 0.127) (xy 2.3622 1.1684) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 2.667) (xy 2.3622 3.7084) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.524 5.207) (xy 2.3622 6.2484) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 -2.54) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 0) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 2.54) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 5.08) + (radius 0.508) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SW_DIP_x04_0_1" + (rectangle + (start -3.81 7.62) + (end 3.81 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "SW_DIP_x04_1_1" + (pin passive line + (at -7.62 5.08 0) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 2.54 0) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 0 0) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -7.62 -2.54 0) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 -2.54 180) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 0 180) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 2.54 180) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 7.62 5.08 180) + (length 5.08) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Switch:SW_SPDT" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "SW" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SW_SPDT" + (at 0 -5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Switch, single pole double throw" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "switch single-pole double-throw spdt ON-ON" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "SW_SPDT_0_1" + (circle + (center -2.032 0) + (radius 0.4572) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.651 0.254) (xy 1.651 2.286) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 -2.54) + (radius 0.4572) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.032 2.54) + (radius 0.4572) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "SW_SPDT_1_1" + (rectangle + (start -3.175 3.81) + (end 3.175 -3.81) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 2.54) + (name "A" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 2.54) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Transistor_BJT:MMBT2222A" + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MMBT2222A" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 5.08 -1.905 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/MMBT2222A.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "600mA Ic, 40V Vce, NPN Transistor, SOT-23" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "NPN Transistor" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "MMBT2222A_0_1" + (polyline + (pts + (xy 0.635 0.635) (xy 2.54 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -0.635) (xy 2.54 -2.54) (xy 2.54 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 1.905) (xy 0.635 -1.905) (xy 0.635 -1.905) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.778) (xy 1.778 -1.27) (xy 2.286 -2.286) (xy 1.27 -1.778) (xy 1.27 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 1.27 0) + (radius 2.8194) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "MMBT2222A_1_1" + (pin input line + (at -5.08 0 0) + (length 5.715) + (name "B" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "E" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "C" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Transistor_FET:AO3401A" + (pin_names hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "AO3401A" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 5.08 -1.905 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" + (at 5.08 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "P-Channel MOSFET" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "AO3401A_0_1" + (polyline + (pts + (xy 0.254 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.905) (xy 0.254 -1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.27) (xy 0.762 -2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 0.508) (xy 0.762 -0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 2.286) (xy 0.762 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 2.54 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 1.778) (xy 3.302 1.778) (xy 3.302 -1.778) (xy 0.762 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.286 0) (xy 1.27 0.381) (xy 1.27 -0.381) (xy 2.286 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.794 -0.508) (xy 2.921 -0.381) (xy 3.683 -0.381) (xy 3.81 -0.254) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 -0.381) (xy 2.921 0.254) (xy 3.683 0.254) (xy 3.302 -0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.651 0) + (radius 2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 2.54 1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "AO3401A_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "Transistor_FET:BSS138" + (pin_names hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "Q" + (at 5.08 1.905 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BSS138" + (at 5.08 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 5.08 -1.905 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" + (at 5.08 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "N-Channel MOSFET" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "SOT?23*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "BSS138_0_1" + (polyline + (pts + (xy 0.254 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.254 1.905) (xy 0.254 -1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.27) (xy 0.762 -2.286) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 0.508) (xy 0.762 -0.508) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 2.286) (xy 0.762 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 2.54) (xy 2.54 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.54 -2.54) (xy 2.54 0) (xy 0.762 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.778) (xy 3.302 -1.778) (xy 3.302 1.778) (xy 0.762 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.016 0) (xy 2.032 0.381) (xy 2.032 -0.381) (xy 1.016 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 2.794 0.508) (xy 2.921 0.381) (xy 3.683 0.381) (xy 3.81 0.254) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 3.302 0.381) (xy 2.921 -0.254) (xy 3.683 -0.254) (xy 3.302 0.381) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.651 0) + (radius 2.794) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 2.54 -1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (circle + (center 2.54 1.778) + (radius 0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "BSS138_1_1" + (pin input line + (at -5.08 0 0) + (length 2.54) + (name "G" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 -5.08 90) + (length 2.54) + (name "S" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 2.54 5.08 270) + (length 2.54) + (name "D" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "dw01:DW01" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 1.27 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "DW01" + (at 11.43 10.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 5.08 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "DW01_0_1" + (rectangle + (start 0 8.89) + (end 13.97 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "DW01_1_1" + (pin input line + (at 8.89 -2.54 90) + (length 2.54) + (name "OD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 3.81 0) + (length 2.54) + (name "CS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 5.08 -2.54 90) + (length 2.54) + (name "OC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 7.62 0) + (length 2.54) + (name "TD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 16.51 7.62 180) + (length 2.54) + (name "VCC" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 16.51 3.81 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "easyeda2kicad:GT-TC018A-H0375-L1" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "SW" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GT-TC018A-H0375-L1" + (at 0 -7.62 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "easyeda2kicad:SW-SMD_L4.7-W3.5-P3.35-EH" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://lcsc.com/product-detail/Tactile-Switches_G-Switch-GT-TC018A-H0375-L1_C963235.html" + (at 0 -12.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC Part" "C963235" + (at 0 -15.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GT-TC018A-H0375-L1_0_1" + (circle + (center -1.52 0) + (radius 0.38) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -2.54) (xy 2.54 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.03 0) (xy -2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.52 0.51) (xy 1.52 1.78) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 2.03 0) (xy 2.54 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.52 0) + (radius 0.38) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (pin unspecified line + (at -5.08 0 0) + (length 2.54) + (name "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 5.08 0 180) + (length 2.54) + (name "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at 5.08 -2.54 180) + (length 2.54) + (name "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin unspecified line + (at -5.08 -2.54 0) + (length 2.54) + (name "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "fs8205:FS8205A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 1.27 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "FS8205A" + (at -1.27 8.89 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 3.81 -12.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "FS8205A" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "FS8205A_0_1" + (rectangle + (start 0 11.43) + (end 16.51 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "FS8205A_1_1" + (pin input line + (at 7.62 13.97 270) + (length 2.54) + (name "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 -2.54 90) + (length 2.54) + (name "D1D2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 7.62 -2.54 90) + (length 2.54) + (name "S2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 2.54 -2.54 90) + (length 2.54) + (name "G2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 12.7 13.97 270) + (length 2.54) + (name "D1D2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 2.54 13.97 270) + (length 2.54) + (name "G1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+1V8" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+1V8" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+1V8\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+1V8_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+1V8_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:+3V3" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 0 3.556 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "+3V3_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3V3_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "power:GND" + (power) + (pin_numbers hide) + (pin_names + (offset 0) hide) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -6.35 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "global power" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + (symbol "tp4056:TP4056" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 1.27 13.97 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TP4056" + (at 8.89 13.97 0) + (effects + (font + (size 1.1 1.1) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "TP4056" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "TP4056_0_1" + (rectangle + (start 0 12.7) + (end 12.7 0) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "TP4056_1_1" + (pin input line + (at 15.24 5.08 180) + (length 2.54) + (name "TEMP" + (effects + (font + (size 1 1) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 15.24 1.27 180) + (length 2.54) + (name "PROG" + (effects + (font + (size 1 1) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 6.35 -2.54 90) + (length 2.54) + (name "GND" + (effects + (font + (size 1 1) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 11.43 0) + (length 2.54) + (name "VCC" + (effects + (font + (size 1 1) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at 15.24 11.43 180) + (length 2.54) + (name "BAT" + (effects + (font + (size 1 1) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 1.27 0) + (length 2.54) + (name "~{STDBY}" + (effects + (font + (size 1 1) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 3.81 0) + (length 2.54) + (name "~{CHRG}" + (effects + (font + (size 1 1) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 8.89 0) + (length 2.54) + (name "CE" + (effects + (font + (size 1 1) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -2.54 6.35 0) + (length 2.54) + (name "PP" + (effects + (font + (size 1 1) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + ) + ) + (junction + (at 231.14 20.32) + (diameter 0) + (color 0 0 0 0) + (uuid "028274f2-0d34-4534-b14e-7842a9d88992") + ) + (junction + (at 205.74 132.08) + (diameter 0) + (color 0 0 0 0) + (uuid "06f95cb5-154c-4a7b-8f73-8d95c42fa430") + ) + (junction + (at 256.54 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "12a35f8b-d2b2-4e10-a45f-1d66d8334d2c") + ) + (junction + (at 91.44 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "1705c31e-b9b6-4846-b20c-5a3646f0a545") + ) + (junction + (at 81.28 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "184eeccf-76c5-49ca-9af5-d01953192bbe") + ) + (junction + (at 76.2 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "19b413b4-8d32-4dd7-aa93-658c0ec41b52") + ) + (junction + (at 54.61 120.65) + (diameter 0) + (color 0 0 0 0) + (uuid "1d055e6d-485c-43d8-9f39-4af7f41790c0") + ) + (junction + (at 191.77 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "2754685d-8d77-484e-8284-f5ab38da3330") + ) + (junction + (at 71.12 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "2b834d37-5f07-4d91-a068-abd61e6889e8") + ) + (junction + (at 236.22 86.36) + (diameter 0) + (color 0 0 0 0) + (uuid "2f519825-2b27-4a31-9970-6099677dfa63") + ) + (junction + (at 191.77 40.64) + (diameter 0) + (color 0 0 0 0) + (uuid "2fedb2b8-4c1a-4aac-8446-f68749248526") + ) + (junction + (at 205.74 134.62) + (diameter 0) + (color 0 0 0 0) + (uuid "479a0224-aed8-4f84-8a50-ca7f278730f3") + ) + (junction + (at 46.99 45.72) + (diameter 0) + (color 0 0 0 0) + (uuid "47bf0c4f-a860-4b8f-b87f-100e5784e2f1") + ) + (junction + (at 248.92 96.52) + (diameter 0) + (color 0 0 0 0) + (uuid "55f2fbf1-28f0-4958-b475-2d87f5b77b2f") + ) + (junction + (at 106.68 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "5ac3ee56-beb4-43eb-b201-a9ed5beed71a") + ) + (junction + (at 148.59 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "6e4807ad-5cf5-4a3d-8195-5617475f1c26") + ) + (junction + (at 205.74 137.16) + (diameter 0) + (color 0 0 0 0) + (uuid "73bc14de-2086-4658-adca-9d17565c46f3") + ) + (junction + (at 157.48 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "74dcecbf-e5bd-4725-9ae9-17631819faa3") + ) + (junction + (at 212.09 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "78c091c4-628a-479c-a8f2-435b5910cb69") + ) + (junction + (at 123.19 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "7e62c4cc-dbf8-48db-a254-08c697c511bf") + ) + (junction + (at 62.23 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "83e23cd3-2301-4a10-b71a-0e60b83bb652") + ) + (junction + (at 22.86 71.12) + (diameter 0) + (color 0 0 0 0) + (uuid "85009878-0347-40ff-a514-be3b950649b8") + ) + (junction + (at 30.48 71.12) + (diameter 0) + (color 0 0 0 0) + (uuid "86c991d1-b454-4357-ab6e-44c59bb2c62d") + ) + (junction + (at 58.42 71.12) + (diameter 0) + (color 0 0 0 0) + (uuid "89458645-c1a7-4f56-9866-3004a494e6c0") + ) + (junction + (at 248.92 123.19) + (diameter 0) + (color 0 0 0 0) + (uuid "897cbec1-5d95-4361-82a5-1837a395cfa2") + ) + (junction + (at 185.42 40.64) + (diameter 0) + (color 0 0 0 0) + (uuid "8d7b353a-74b6-4047-99eb-10daa2ea0648") + ) + (junction + (at 256.54 123.19) + (diameter 0) + (color 0 0 0 0) + (uuid "8f2dcc0f-243b-40fc-9bb7-a6ea3c0388c5") + ) + (junction + (at 118.11 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "910236a3-ab5c-499f-9091-7c428f34cf05") + ) + (junction + (at 63.5 177.8) + (diameter 0) + (color 0 0 0 0) + (uuid "91d20cd9-9cf8-4071-806e-70a19e2a6e4c") + ) + (junction + (at 245.11 20.32) + (diameter 0) + (color 0 0 0 0) + (uuid "9aab7db1-d6aa-4df7-9453-3db63ea68960") + ) + (junction + (at 132.08 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "a23b0be0-c979-4346-aa0f-c45eabae4a1c") + ) + (junction + (at 129.54 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "a6829a4b-5473-4e2e-91fd-76c14604d930") + ) + (junction + (at 171.45 156.21) + (diameter 0) + (color 0 0 0 0) + (uuid "a8537a39-ca6d-4040-92c9-19e72814234c") + ) + (junction + (at 54.61 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "aa8b5e17-99d9-4966-a289-cff2391b01ef") + ) + (junction + (at 182.88 62.23) + (diameter 0) + (color 0 0 0 0) + (uuid "ae31871b-b4d2-42bc-a6c2-ec7b2d128077") + ) + (junction + (at 243.84 86.36) + (diameter 0) + (color 0 0 0 0) + (uuid "ae84c61d-62c7-4e2c-9897-3173738329a7") + ) + (junction + (at 243.84 113.03) + (diameter 0) + (color 0 0 0 0) + (uuid "b84697f2-3580-4888-a357-7aafefdd1296") + ) + (junction + (at 46.99 48.26) + (diameter 0) + (color 0 0 0 0) + (uuid "baa03a43-0314-490b-bb03-315a9b141492") + ) + (junction + (at 140.97 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "baf1aac8-3746-44f0-bc63-cbbba14c473a") + ) + (junction + (at 60.96 71.12) + (diameter 0) + (color 0 0 0 0) + (uuid "bbe722c3-3972-448a-84ea-099c52b5d829") + ) + (junction + (at 269.24 86.36) + (diameter 0) + (color 0 0 0 0) + (uuid "c3ca8c15-f88b-4a09-a912-0ab878440311") + ) + (junction + (at 148.59 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "c6050e8e-e3ee-4f3c-bca9-10a92da24ed6") + ) + (junction + (at 63.5 175.26) + (diameter 0) + (color 0 0 0 0) + (uuid "c62048b1-db9e-4d7d-924d-60c01471fad6") + ) + (junction + (at 62.23 118.11) + (diameter 0) + (color 0 0 0 0) + (uuid "ce64efb3-71ea-4eda-a861-a761ce8a97e8") + ) + (junction + (at 106.68 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "da938780-f403-44fb-ac6e-ad69524f0f2c") + ) + (junction + (at 76.2 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "dbc55903-c01f-41ed-a50a-babdef5447da") + ) + (junction + (at 138.43 53.34) + (diameter 0) + (color 0 0 0 0) + (uuid "e0737e8e-da75-458e-a817-555da98c6d33") + ) + (junction + (at 269.24 113.03) + (diameter 0) + (color 0 0 0 0) + (uuid "e2d3ba49-a15b-4f67-bcd0-b8ad9c50e086") + ) + (junction + (at 33.02 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "e5909513-9066-451e-901e-a80eb1aac940") + ) + (junction + (at 91.44 109.22) + (diameter 0) + (color 0 0 0 0) + (uuid "ea2b04c0-a4eb-4a52-9ead-ab0d4bbadcf0") + ) + (junction + (at 43.18 149.86) + (diameter 0) + (color 0 0 0 0) + (uuid "eb07946b-9fbd-4166-8f3a-8219198fc593") + ) + (junction + (at 76.2 106.68) + (diameter 0) + (color 0 0 0 0) + (uuid "ec53964b-3664-423d-a442-546108b3dfce") + ) + (junction + (at 251.46 30.48) + (diameter 0) + (color 0 0 0 0) + (uuid "f60ab6b7-6f37-4b01-b756-53c338d6b75c") + ) + (junction + (at 143.51 130.81) + (diameter 0) + (color 0 0 0 0) + (uuid "fb69b664-c538-43b5-92a9-86c200bcd555") + ) + (no_connect + (at 55.88 165.1) + (uuid "2f105975-3bd9-40f1-819e-d48fa23de06f") + ) + (no_connect + (at 166.37 30.48) + (uuid "74f330ba-76cf-4b7d-8ffc-9cdff6c71688") + ) + (no_connect + (at 229.87 81.28) + (uuid "81af0d7e-07df-4ce1-9f36-6958cb4aa70f") + ) + (no_connect + (at 187.96 43.18) + (uuid "bce5374f-b9eb-4e7b-8426-d97d2af259ab") + ) + (no_connect + (at 187.96 59.69) + (uuid "e39e2eda-4bee-432a-bfd6-915215a79775") + ) + (wire + (pts + (xy 140.97 125.73) (xy 140.97 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0794b0df-44f0-4c7a-92dd-0bdb86cc6722") + ) + (wire + (pts + (xy 30.48 118.11) (xy 35.56 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "08878772-45a6-482d-b702-a3174980dde9") + ) + (wire + (pts + (xy 248.92 123.19) (xy 256.54 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0aafc6b1-b6be-4a91-a664-096739a5ae6e") + ) + (wire + (pts + (xy 45.72 48.26) (xy 46.99 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0bc50ff4-6e70-4cc5-a10d-cdb4a96f8190") + ) + (wire + (pts + (xy 30.48 68.58) (xy 30.48 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0bdb119a-45af-40ee-90c9-0dd1724e1732") + ) + (wire + (pts + (xy 129.54 43.18) (xy 129.54 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0c4a7c86-28a2-4c1c-bb23-08f91da5b58a") + ) + (wire + (pts + (xy 191.77 40.64) (xy 191.77 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "125741b2-0c07-43b5-a218-5703ffc3a590") + ) + (wire + (pts + (xy 231.14 62.23) (xy 182.88 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "16aff706-ce63-4587-a3cb-3798a10ee34e") + ) + (wire + (pts + (xy 191.77 30.48) (xy 198.12 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b185a6e-6c06-4f79-953d-8fc65a40d8b5") + ) + (wire + (pts + (xy 185.42 40.64) (xy 191.77 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1be1e1f7-0852-41d5-8afd-729b52fd9db6") + ) + (wire + (pts + (xy 166.37 34.29) (xy 157.48 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1f97ec65-2c51-4422-a600-0c753a03fc1f") + ) + (wire + (pts + (xy 22.86 71.12) (xy 22.86 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1f9f81ef-a684-47df-95c9-e4922e9a960f") + ) + (wire + (pts + (xy 148.59 21.59) (xy 148.59 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "208addb0-7bf1-4f2c-b9a0-992c9a7b5bbc") + ) + (wire + (pts + (xy 149.86 161.29) (xy 146.05 161.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2090faf9-cb87-4412-9590-a0165f4cd707") + ) + (wire + (pts + (xy 58.42 38.1) (xy 58.42 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "21d0bd03-93fe-4f96-89c9-c339f4ff518e") + ) + (wire + (pts + (xy 33.02 115.57) (xy 30.48 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "22d45681-8457-45e5-8c0e-23aebb9bc4f5") + ) + (wire + (pts + (xy 205.74 129.54) (xy 205.74 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "23c4915d-ad7e-4348-b7a7-f85f016da73c") + ) + (wire + (pts + (xy 243.84 123.19) (xy 248.92 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "242ca742-d4f3-4233-a552-4a5638056391") + ) + (wire + (pts + (xy 54.61 120.65) (xy 68.58 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "268fa695-b0fd-459b-a057-67edc2779e54") + ) + (wire + (pts + (xy 91.44 48.26) (xy 91.44 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "269a68c2-3488-4599-a7c8-ebc7e4ce4c95") + ) + (wire + (pts + (xy 58.42 50.8) (xy 58.42 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "284122cf-8388-4e5d-bd41-30743a017988") + ) + (wire + (pts + (xy 113.03 142.24) (xy 140.97 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "28593ceb-f4da-4471-b978-23c699ab5b4b") + ) + (wire + (pts + (xy 106.68 35.56) (xy 106.68 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "290b6a68-7fed-454e-af10-deb5d21f5472") + ) + (wire + (pts + (xy 264.16 86.36) (xy 269.24 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "293e2cb1-de30-4e80-8703-6abc04e3412d") + ) + (wire + (pts + (xy 140.97 142.24) (xy 140.97 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "29471af8-f5c2-471f-8913-4b93d9c05839") + ) + (wire + (pts + (xy 76.2 106.68) (xy 76.2 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2963d3d1-a49c-4c26-bf19-c3554b376f54") + ) + (wire + (pts + (xy 104.14 40.64) (xy 109.22 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2c519300-661d-48a4-98fe-c3793cf3a667") + ) + (wire + (pts + (xy 148.59 144.78) (xy 156.21 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ee7723d-2a46-41a5-a05c-5387e5840d60") + ) + (wire + (pts + (xy 139.7 132.08) (xy 156.21 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ffb8775-e745-4127-8c94-1f4510afb371") + ) + (wire + (pts + (xy 60.96 62.23) (xy 60.96 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30c33898-cb27-4047-aa6d-d6dedc0d96d4") + ) + (wire + (pts + (xy 17.78 149.86) (xy 17.78 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3171fc62-2e36-4e92-a034-7cecadb3c004") + ) + (wire + (pts + (xy 173.99 41.91) (xy 173.99 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "31ff593c-7233-4a0b-b216-0a3060b828cb") + ) + (wire + (pts + (xy 101.6 38.1) (xy 101.6 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3285bf1a-f027-40b4-81f8-ecc5ef547f6f") + ) + (wire + (pts + (xy 113.03 147.32) (xy 143.51 147.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "32c4715f-ad87-4d42-a4d4-d4441c25a2df") + ) + (wire + (pts + (xy 71.12 38.1) (xy 71.12 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "34559fb8-951e-4ede-97c7-2f428c8a1cc2") + ) + (wire + (pts + (xy 118.11 53.34) (xy 129.54 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "35766d74-edf3-48bc-a3cc-296d8531a204") + ) + (wire + (pts + (xy 143.51 139.7) (xy 156.21 139.7) + ) + (stroke + (width 0) + (type default) + ) + (uuid "35a789b5-1255-4869-aa71-6ec4fa3cdad3") + ) + (wire + (pts + (xy 269.24 113.03) (xy 269.24 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "366617c4-a42c-4240-a05d-444ee7cd5674") + ) + (wire + (pts + (xy 146.05 161.29) (xy 146.05 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3682865b-341c-4afd-9fdd-c38d5b5eb461") + ) + (wire + (pts + (xy 251.46 30.48) (xy 267.97 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "36c638cb-68ef-46cc-81e9-8369e4aa08a7") + ) + (wire + (pts + (xy 114.3 135.89) (xy 114.3 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "376a8724-c826-4d66-9d2a-696023d8570e") + ) + (wire + (pts + (xy 231.14 31.75) (xy 231.14 20.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "37d1c9e7-38a5-41df-bbbe-0fa46b3845bc") + ) + (wire + (pts + (xy 236.22 86.36) (xy 243.84 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "38f0f744-4cc3-4d7a-b584-b1188baf62b6") + ) + (wire + (pts + (xy 251.46 20.32) (xy 251.46 21.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a4b333a-a751-4686-bb5a-b2fd47318364") + ) + (wire + (pts + (xy 212.09 40.64) (xy 191.77 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3a5596ab-09a2-4570-a1cf-a31b3ea86e30") + ) + (wire + (pts + (xy 17.78 160.02) (xy 17.78 162.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3b710433-939a-473d-b055-11805b015004") + ) + (wire + (pts + (xy 243.84 86.36) (xy 243.84 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3bcde3b4-8f40-41b3-a9f7-5728bb82fb59") + ) + (wire + (pts + (xy 71.12 165.1) (xy 85.09 165.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3cc97967-2911-4c68-81ad-4ccfe5cf6675") + ) + (wire + (pts + (xy 129.54 53.34) (xy 129.54 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3d66fb37-edf3-4307-a22f-b106202e7f40") + ) + (wire + (pts + (xy 186.69 149.86) (xy 189.23 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3dc4cfe0-19e0-4489-930d-14cb118a5e6f") + ) + (wire + (pts + (xy 81.28 30.48) (xy 91.44 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "40c63fcd-19bf-44f7-81f3-f2fe5ddce2f9") + ) + (wire + (pts + (xy 106.68 55.88) (xy 106.68 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "43bdbaf3-bbb9-4ad1-bcb5-c84e7e056824") + ) + (wire + (pts + (xy 205.74 137.16) (xy 205.74 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "44cc3035-3a29-49b1-834a-9932112ebe47") + ) + (wire + (pts + (xy 177.8 40.64) (xy 177.8 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "46e76df1-d841-40be-87a3-bdca06a08df4") + ) + (wire + (pts + (xy 248.92 113.03) (xy 243.84 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "47c7f85a-4c5e-488d-bab6-c5c87014596a") + ) + (wire + (pts + (xy 167.64 41.91) (xy 167.64 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4a28ae2f-6784-4632-9682-2cdf25d3654c") + ) + (wire + (pts + (xy 43.18 118.11) (xy 62.23 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4f4a1b24-1042-46f5-a7cd-ab4859b7116c") + ) + (wire + (pts + (xy 269.24 95.25) (xy 269.24 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "514595ca-3e3d-451c-a8ae-935f86f745c4") + ) + (wire + (pts + (xy 76.2 130.81) (xy 91.44 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "54035ebb-0751-4b92-bb84-0efaaaf6e91c") + ) + (wire + (pts + (xy 248.92 96.52) (xy 256.54 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "55cea501-0a9b-4d74-be60-d8b1ea47a961") + ) + (wire + (pts + (xy 58.42 71.12) (xy 60.96 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "56ab93d4-f228-449d-aac4-b4de10af431f") + ) + (wire + (pts + (xy 45.72 182.88) (xy 45.72 185.42) + ) + (stroke + (width 0) + (type default) + ) + (uuid "576e1b96-e42f-452d-a76d-c17b079ab7e5") + ) + (wire + (pts + (xy 45.72 38.1) (xy 58.42 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5835b669-4fc3-4e4a-ae88-95ad2bc7784c") + ) + (wire + (pts + (xy 167.64 41.91) (xy 173.99 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "590e4379-8702-4495-ab71-7fb3fa1dd78c") + ) + (wire + (pts + (xy 186.69 144.78) (xy 189.23 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "594b6a04-ef01-4068-a5a9-08d536c76f01") + ) + (wire + (pts + (xy 243.84 86.36) (xy 248.92 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "595a47f1-78d4-4aeb-97a7-c1cb6662882c") + ) + (wire + (pts + (xy 248.92 88.9) (xy 248.92 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5989a726-8265-481f-a122-5cea0729518c") + ) + (wire + (pts + (xy 46.99 50.8) (xy 45.72 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5a100358-df6d-4052-86bf-98255b217765") + ) + (wire + (pts + (xy 256.54 96.52) (xy 269.24 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5a6b1945-954a-4d38-9a1a-20cfa00e893a") + ) + (wire + (pts + (xy 113.03 144.78) (xy 142.24 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5ac7aa7b-1fc1-49e7-ac2a-906cb0c35a2a") + ) + (wire + (pts + (xy 123.19 110.49) (xy 123.19 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5b316e57-bcf4-4c31-89bd-bb914a7f0510") + ) + (wire + (pts + (xy 60.96 71.12) (xy 71.12 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5cac8bf5-a413-4e2e-aab4-275470e95683") + ) + (wire + (pts + (xy 127 30.48) (xy 148.59 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5d3094a4-990d-407b-865a-5590c6f6ae25") + ) + (wire + (pts + (xy 62.23 30.48) (xy 71.12 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f5669c9-df93-459d-9e3a-320599aaab6c") + ) + (wire + (pts + (xy 243.84 113.03) (xy 236.22 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5fdd5a64-c3f5-44c1-b4ce-42292c60822c") + ) + (wire + (pts + (xy 269.24 121.92) (xy 269.24 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "605f4797-ae9d-4885-922d-4f0d0df08f73") + ) + (wire + (pts + (xy 191.77 31.75) (xy 191.77 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "61fc6368-6a94-4eb9-a91b-56c3c2463679") + ) + (wire + (pts + (xy 146.05 130.81) (xy 143.51 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62493c1a-57f2-4457-8222-bd5bd4f47d9a") + ) + (wire + (pts + (xy 45.72 43.18) (xy 46.99 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "625d17c6-dcc5-483d-a87c-3aa794cb460b") + ) + (wire + (pts + (xy 30.48 71.12) (xy 58.42 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "630c4d71-3a39-4d7a-8b4a-1d0590024729") + ) + (wire + (pts + (xy 138.43 36.83) (xy 138.43 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "64ab9100-fc93-484f-ae25-f2ac0cd749dd") + ) + (wire + (pts + (xy 68.58 177.8) (xy 71.12 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "651ea225-47f2-40d7-8de2-b894c98c3936") + ) + (wire + (pts + (xy 33.02 123.19) (xy 33.02 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6580b22b-17a5-4053-a77b-4516c4d1d7d4") + ) + (wire + (pts + (xy 101.6 38.1) (xy 109.22 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6626d609-13fb-4fdc-afd6-ba0dfda325e0") + ) + (wire + (pts + (xy 140.97 134.62) (xy 156.21 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "66f12b76-92bc-4133-819a-e2d2c45e4bf6") + ) + (wire + (pts + (xy 81.28 45.72) (xy 81.28 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "680d40ed-06c2-45e5-8a46-495b237affba") + ) + (wire + (pts + (xy 143.51 147.32) (xy 143.51 139.7) + ) + (stroke + (width 0) + (type default) + ) + (uuid "68b2e112-6900-4c33-b052-ab0634ef89a5") + ) + (wire + (pts + (xy 22.86 71.12) (xy 22.86 73.66) + ) + (stroke + (width 0) + (type default) + ) + (uuid "69179af5-c28f-4f00-99ce-54210ac1bf2c") + ) + (wire + (pts + (xy 182.88 62.23) (xy 157.48 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "692b0ad9-183c-4017-b30f-a49f7791a317") + ) + (wire + (pts + (xy 100.33 137.16) (xy 83.82 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6952fa45-0f93-46b8-91a2-e2acc410171b") + ) + (wire + (pts + (xy 83.82 137.16) (xy 83.82 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "695c3acb-ab71-4782-acfc-757258a51aff") + ) + (wire + (pts + (xy 45.72 45.72) (xy 46.99 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "69a2d974-0073-4db8-accc-e7b0f95b05eb") + ) + (wire + (pts + (xy 104.14 40.64) (xy 104.14 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "69d4d5fe-8303-48de-bb02-2b75307fa698") + ) + (wire + (pts + (xy 123.19 130.81) (xy 132.08 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6a9894a4-8654-46db-9dc7-b766a91f4543") + ) + (wire + (pts + (xy 66.04 177.8) (xy 63.5 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6adc2e0a-9795-4269-b7ca-85e5d0f65b5e") + ) + (wire + (pts + (xy 132.08 130.81) (xy 140.97 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6b93b87c-84f1-48a6-8746-393243c17e7a") + ) + (wire + (pts + (xy 106.68 33.02) (xy 109.22 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d122c79-ebaa-4665-87a3-34ed61b04dab") + ) + (wire + (pts + (xy 123.19 106.68) (xy 156.21 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6d95add0-0abf-4d4c-9737-d40e811a4432") + ) + (wire + (pts + (xy 231.14 39.37) (xy 231.14 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "714e4040-06c0-4c42-be65-b77c8878d275") + ) + (wire + (pts + (xy 91.44 105.41) (xy 91.44 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "72347744-2971-4c0e-9d46-f1518f2d282c") + ) + (wire + (pts + (xy 71.12 30.48) (xy 81.28 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7244c96c-e1be-4277-9acd-bdb2ea183218") + ) + (wire + (pts + (xy 146.05 142.24) (xy 156.21 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "72c1a740-1209-455f-ad5a-ff4a4d95c7fd") + ) + (wire + (pts + (xy 62.23 114.3) (xy 83.82 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "73a950b9-5ea6-4443-bccb-6ec96ae66180") + ) + (wire + (pts + (xy 143.51 115.57) (xy 146.05 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7450df3d-8ed8-48ae-acfb-ad9ea4e81466") + ) + (wire + (pts + (xy 148.59 30.48) (xy 148.59 43.18) + ) + (stroke + (width 0) + (type default) + ) + (uuid "772adc96-a15b-4b86-9100-85bae81a5602") + ) + (wire + (pts + (xy 167.64 59.69) (xy 177.8 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "787c4b6e-8e91-4220-a5e7-801318828030") + ) + (wire + (pts + (xy 171.45 92.71) (xy 171.45 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "79345ee5-9977-4ae2-b665-e9aa01b7b0a4") + ) + (wire + (pts + (xy 212.09 39.37) (xy 212.09 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c05b5b5-8e77-44ea-ad35-40730cffb579") + ) + (wire + (pts + (xy 66.04 175.26) (xy 63.5 175.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7e7e0a4a-6ffe-4f9e-ac71-9cf8c09400ea") + ) + (wire + (pts + (xy 43.18 149.86) (xy 43.18 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8056de03-b406-44cf-beb1-e341139092f6") + ) + (wire + (pts + (xy 54.61 120.65) (xy 50.8 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "80764e92-b162-492b-98c1-765679ae5908") + ) + (wire + (pts + (xy 190.5 137.16) (xy 186.69 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8085d9d5-cb67-47d5-a470-fc65a3026b34") + ) + (wire + (pts + (xy 106.68 20.32) (xy 106.68 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8154cffb-438a-4a56-ae1c-a57119728b90") + ) + (wire + (pts + (xy 143.51 125.73) (xy 143.51 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "827c353a-9f07-483f-a560-f62057c3063f") + ) + (wire + (pts + (xy 85.09 173.99) (xy 85.09 172.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "82cc3402-97df-42c7-b70e-7b6912f5935b") + ) + (wire + (pts + (xy 243.84 121.92) (xy 243.84 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8310ad9c-3ae9-4468-ba34-00eed0801931") + ) + (wire + (pts + (xy 106.68 35.56) (xy 109.22 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8324ea6f-f8fc-4962-9bbe-f4179fe4fae0") + ) + (wire + (pts + (xy 33.02 113.03) (xy 33.02 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "83947f29-b24a-41d6-8e6c-37fc9e7069ff") + ) + (wire + (pts + (xy 45.72 149.86) (xy 45.72 152.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "84350577-62b2-4bd8-9919-1493ab50c2bf") + ) + (wire + (pts + (xy 46.99 45.72) (xy 49.53 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8460f8e3-df96-4505-8f30-3e7a7d3899bd") + ) + (wire + (pts + (xy 91.44 109.22) (xy 100.33 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "85195862-5798-473f-ace4-b09a208b2251") + ) + (wire + (pts + (xy 157.48 53.34) (xy 157.48 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "86b0deb3-19d5-4939-8468-aa9d36003b56") + ) + (wire + (pts + (xy 71.12 187.96) (xy 83.82 187.96) + ) + (stroke + (width 0) + (type default) + ) + (uuid "878f0c0a-7bf6-4b5c-9abe-204dc95ba599") + ) + (wire + (pts + (xy 91.44 119.38) (xy 91.44 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89730fb0-e097-4cee-a843-26d2f0002afe") + ) + (wire + (pts + (xy 76.2 125.73) (xy 76.2 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89a612bb-bb97-49df-b4ca-99f8dda511f9") + ) + (wire + (pts + (xy 190.5 132.08) (xy 186.69 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8a256889-8c3f-4851-bea1-bc98c20718ff") + ) + (wire + (pts + (xy 54.61 130.81) (xy 62.23 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8d89979e-68be-4d68-948a-e11239d83d84") + ) + (wire + (pts + (xy 46.99 48.26) (xy 49.53 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f31f947-4cf0-4ced-9fc5-107e79cb89fe") + ) + (wire + (pts + (xy 149.86 156.21) (xy 148.59 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8faeab49-c40a-4c97-8b87-efd253c55a1d") + ) + (wire + (pts + (xy 76.2 96.52) (xy 76.2 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "90e82e96-cebd-469a-a7d5-9d4c2648125a") + ) + (wire + (pts + (xy 157.48 45.72) (xy 157.48 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "93b2efd3-cf18-44e9-aa8a-c468818aa575") + ) + (wire + (pts + (xy 62.23 130.81) (xy 76.2 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "945b3c9d-52de-44b1-9852-8b28ee39b6d1") + ) + (wire + (pts + (xy 142.24 144.78) (xy 142.24 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "95c94562-b0f3-4289-b3ca-231a5b760c3c") + ) + (wire + (pts + (xy 143.51 130.81) (xy 140.97 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "98bbb94f-b2e7-49bf-987c-1841c074aabe") + ) + (wire + (pts + (xy 55.88 175.26) (xy 63.5 175.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "991437a7-142a-445d-abba-38fb059e8459") + ) + (wire + (pts + (xy 45.72 30.48) (xy 54.61 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9b70df93-2b53-451f-b9cf-ee9f054ff00a") + ) + (wire + (pts + (xy 182.88 43.18) (xy 182.88 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9b7a1da8-a3dc-4bd5-ba2a-f6859a0b9613") + ) + (wire + (pts + (xy 54.61 129.54) (xy 54.61 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9ce72bd8-2b3e-48d5-a6e2-394d673666e5") + ) + (wire + (pts + (xy 248.92 115.57) (xy 248.92 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9cf8033e-3f9d-4fe4-8672-eeb4392ae561") + ) + (wire + (pts + (xy 76.2 96.52) (xy 91.44 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9df17afc-701a-4d47-ab58-bf6a51162746") + ) + (wire + (pts + (xy 17.78 149.86) (xy 43.18 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9fe8d778-8431-4c22-9052-d6277e14effb") + ) + (wire + (pts + (xy 205.74 156.21) (xy 171.45 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9ffac967-96bc-42e3-b067-9f2751e7f1c2") + ) + (wire + (pts + (xy 264.16 113.03) (xy 269.24 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a0c6ad08-208d-4b5b-80a1-44dd0eb64ec9") + ) + (wire + (pts + (xy 30.48 71.12) (xy 22.86 71.12) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a2493909-cde7-4898-b628-32387f119a02") + ) + (wire + (pts + (xy 62.23 114.3) (xy 62.23 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a2817008-2e99-49d0-bc9f-21704c7ee4f0") + ) + (wire + (pts + (xy 127 36.83) (xy 138.43 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a38cc4ee-2476-4819-9c55-191f9028b691") + ) + (wire + (pts + (xy 62.23 129.54) (xy 62.23 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a3b3a640-f2b0-40c4-9d25-d7922afc1c08") + ) + (wire + (pts + (xy 33.02 130.81) (xy 33.02 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a3c0d574-9a1f-449b-a4da-faa44687ee8a") + ) + (wire + (pts + (xy 129.54 40.64) (xy 127 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a725ae71-568c-4846-98e9-a5e56ccceafc") + ) + (wire + (pts + (xy 114.3 137.16) (xy 113.03 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aba79314-75cb-4387-b4f1-a60ee389752b") + ) + (wire + (pts + (xy 138.43 50.8) (xy 138.43 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac43d34f-5a48-4623-b587-319bdbb4ec14") + ) + (wire + (pts + (xy 62.23 118.11) (xy 62.23 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac4b8b31-ea40-4aab-addb-8f2e8c076052") + ) + (wire + (pts + (xy 250.19 30.48) (xy 251.46 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac677af4-0d33-4e94-8234-aca34adb6a52") + ) + (wire + (pts + (xy 148.59 50.8) (xy 148.59 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "acab1471-53fe-429e-9cab-8ff7912fb550") + ) + (wire + (pts + (xy 231.14 20.32) (xy 106.68 20.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ae77c816-f391-4c73-9f8b-d0ef67834898") + ) + (wire + (pts + (xy 76.2 105.41) (xy 76.2 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b06fbfd9-d03d-42c6-850d-69adda696b61") + ) + (wire + (pts + (xy 205.74 132.08) (xy 205.74 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b0b07c0f-982f-4624-a469-ee5fe8382bb2") + ) + (wire + (pts + (xy 186.69 139.7) (xy 189.23 139.7) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b102e1d3-d18b-4632-b314-26c057c89cfa") + ) + (wire + (pts + (xy 167.64 50.8) (xy 167.64 59.69) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b1df59fc-1ff6-4d7b-b0d0-84b5092b7049") + ) + (wire + (pts + (xy 274.32 86.36) (xy 269.24 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b2622ac0-b83f-4294-8dc1-f872b252f8fd") + ) + (wire + (pts + (xy 269.24 113.03) (xy 274.32 113.03) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b5b3ca3f-1716-4f1c-b578-a4c9d2076603") + ) + (wire + (pts + (xy 236.22 113.03) (xy 236.22 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b73f264c-33b9-4aee-938b-0f5a7d676f20") + ) + (wire + (pts + (xy 212.09 30.48) (xy 240.03 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b7503ca1-b359-46c2-ae4a-bcc10fd3503c") + ) + (wire + (pts + (xy 132.08 125.73) (xy 132.08 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b75a402a-2f64-446d-9a02-885442af5cc5") + ) + (wire + (pts + (xy 43.18 149.86) (xy 45.72 149.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b90b37a3-15f4-4afe-b689-2665bc993a42") + ) + (wire + (pts + (xy 205.74 30.48) (xy 212.09 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b9c62d38-218a-4ea7-84fd-7a23c51c78e5") + ) + (wire + (pts + (xy 171.45 154.94) (xy 171.45 156.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba28d67f-b904-4086-9214-208ebc4c7b7e") + ) + (wire + (pts + (xy 76.2 95.25) (xy 76.2 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ba6ca335-94e0-4eab-93c7-70524516983b") + ) + (wire + (pts + (xy 113.03 139.7) (xy 139.7 139.7) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bc2a2f06-0988-4036-acd4-1e30d00ecdb1") + ) + (wire + (pts + (xy 68.58 177.8) (xy 66.04 175.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "be10a363-fc14-441e-a8e0-8478307b5fc9") + ) + (wire + (pts + (xy 63.5 177.8) (xy 63.5 182.88) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c138e7ca-1781-4f4b-abfa-8225af290e70") + ) + (wire + (pts + (xy 91.44 30.48) (xy 106.68 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c170a1ac-7e01-442b-9dd3-e4afb44f5ef2") + ) + (wire + (pts + (xy 182.88 40.64) (xy 185.42 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c3ad4e46-3a4d-4b3a-af4e-896971aa5175") + ) + (wire + (pts + (xy 54.61 120.65) (xy 54.61 121.92) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c6ca1359-7571-4483-a965-e3b05b736ab9") + ) + (wire + (pts + (xy 33.02 130.81) (xy 54.61 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c6d61fc4-dc24-4f4c-8560-5fe4f7434e5a") + ) + (wire + (pts + (xy 231.14 20.32) (xy 245.11 20.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c8b19335-dd69-48c4-824d-693d65f7c5f7") + ) + (wire + (pts + (xy 148.59 156.21) (xy 148.59 144.78) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c90366b1-e959-4f5e-b884-0280fba4b89e") + ) + (wire + (pts + (xy 212.09 21.59) (xy 212.09 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c922d69a-162c-4cc2-8856-47b6889c4f75") + ) + (wire + (pts + (xy 171.45 156.21) (xy 171.45 158.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cb4f10a6-d9fd-41f0-982f-29ddc605b40e") + ) + (wire + (pts + (xy 132.08 110.49) (xy 132.08 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cc7749e9-9953-49cf-bbc7-af6b8c01b246") + ) + (wire + (pts + (xy 245.11 20.32) (xy 245.11 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cd77849c-099e-4e47-b535-18430ccfad2e") + ) + (wire + (pts + (xy 68.58 175.26) (xy 71.12 175.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ce41d3a2-6298-4219-a04f-4a5bff832dcc") + ) + (wire + (pts + (xy 186.69 111.76) (xy 200.66 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ce8d57ba-a0d4-4e0e-a260-d537c3f79a99") + ) + (wire + (pts + (xy 140.97 111.76) (xy 140.97 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cfb0a985-1b92-44b9-b6e4-df92b3412308") + ) + (wire + (pts + (xy 185.42 34.29) (xy 185.42 40.64) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0d27f31-67aa-40ea-8e0d-86222b8f698d") + ) + (wire + (pts + (xy 243.84 113.03) (xy 243.84 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0ea8a9d-801c-4f18-9344-7d26d4fa2605") + ) + (wire + (pts + (xy 243.84 96.52) (xy 248.92 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d10ceab8-c335-4e0f-9cea-6937d9e9bf35") + ) + (wire + (pts + (xy 186.69 142.24) (xy 189.23 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d2087c7e-d5b5-4d85-875e-0af758c89e86") + ) + (wire + (pts + (xy 76.2 106.68) (xy 100.33 106.68) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d28ba5c1-1e12-48db-b198-d1f98f11f7f8") + ) + (wire + (pts + (xy 186.69 147.32) (xy 189.23 147.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d2ead999-2c81-46bf-9927-f1cbf1c89a08") + ) + (wire + (pts + (xy 118.11 44.45) (xy 118.11 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d3e5d1e0-4456-40f3-a9f7-b22c222be1b3") + ) + (wire + (pts + (xy 45.72 35.56) (xy 60.96 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d3ed15af-5a10-41c0-a28b-6bcfb45464a7") + ) + (wire + (pts + (xy 269.24 86.36) (xy 269.24 87.63) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d55d0738-c274-460b-8b3b-1ee8962596b9") + ) + (wire + (pts + (xy 123.19 125.73) (xy 123.19 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d5b33576-5ea6-48ac-8e47-00c8511e0b59") + ) + (wire + (pts + (xy 140.97 111.76) (xy 156.21 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d665e088-c408-4413-9bd4-c0a4c4c932a9") + ) + (wire + (pts + (xy 106.68 30.48) (xy 109.22 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d691d9d0-06b4-44b1-aaf5-08f951fa0164") + ) + (wire + (pts + (xy 30.48 120.65) (xy 43.18 120.65) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d6ef5d47-b170-4e3b-9dc9-88e26ea4ae18") + ) + (wire + (pts + (xy 182.88 59.69) (xy 182.88 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d6fa7f98-a112-4408-a68f-1220031239e0") + ) + (wire + (pts + (xy 138.43 53.34) (xy 148.59 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d7d9a37f-bebb-4220-bcaa-362e4fae7e4c") + ) + (wire + (pts + (xy 207.01 83.82) (xy 219.71 83.82) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d7ed4783-3c07-47d8-bc3f-db073511fe45") + ) + (wire + (pts + (xy 68.58 175.26) (xy 66.04 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "db079ec4-7e06-468f-9705-58b5874f454e") + ) + (wire + (pts + (xy 251.46 29.21) (xy 251.46 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd090963-4159-467d-89f9-2eaca1912f2f") + ) + (wire + (pts + (xy 148.59 53.34) (xy 157.48 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd5593d4-8645-4cd3-a9d2-142c66e37bf6") + ) + (wire + (pts + (xy 205.74 134.62) (xy 205.74 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd6a695f-9934-4fdf-a45a-64e619a09509") + ) + (wire + (pts + (xy 63.5 170.18) (xy 63.5 175.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "df2358de-2729-4196-a0f1-894880d7a7aa") + ) + (wire + (pts + (xy 139.7 139.7) (xy 139.7 132.08) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e0888bdb-03f7-48c0-9b77-092c51a1f2ce") + ) + (wire + (pts + (xy 33.02 123.19) (xy 30.48 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e2233015-e350-461d-9659-41f888fcbaba") + ) + (wire + (pts + (xy 185.42 30.48) (xy 191.77 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e6174451-2bc3-4579-bff2-989c602c5ac7") + ) + (wire + (pts + (xy 46.99 43.18) (xy 46.99 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e9d10471-90da-417e-b710-9e089c6d9928") + ) + (wire + (pts + (xy 106.68 30.48) (xy 106.68 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "eab8a83d-d011-479e-93d4-ba6e86bb206d") + ) + (wire + (pts + (xy 245.11 20.32) (xy 251.46 20.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ecb27282-5d5e-4cde-9c0e-d7825743e3b7") + ) + (wire + (pts + (xy 142.24 137.16) (xy 156.21 137.16) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ece9eb39-932f-483b-9e8e-3cc7b1960441") + ) + (wire + (pts + (xy 138.43 53.34) (xy 129.54 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ef9110de-96ce-4a27-8105-c5be63ed73e4") + ) + (wire + (pts + (xy 190.5 129.54) (xy 186.69 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f02d1281-4ca5-40a9-8980-cb6c3cd48ef3") + ) + (wire + (pts + (xy 269.24 123.19) (xy 256.54 123.19) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f08594c9-cd4d-4d7e-974c-6a0b1be57b05") + ) + (wire + (pts + (xy 212.09 31.75) (xy 212.09 30.48) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0968ca0-3b7c-4638-90ad-37b553f1a2a9") + ) + (wire + (pts + (xy 91.44 96.52) (xy 91.44 97.79) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f1973597-2d05-4c59-9f67-3fe638956a2c") + ) + (wire + (pts + (xy 91.44 48.26) (xy 101.6 48.26) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f1f3efbb-fb87-493c-baf0-5c03e77dea89") + ) + (wire + (pts + (xy 55.88 177.8) (xy 63.5 177.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f2dfabc0-7a15-4875-922d-d30b03d21a56") + ) + (wire + (pts + (xy 146.05 115.57) (xy 146.05 130.81) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f320fcfa-066f-4cb6-b743-e95e136e4df0") + ) + (wire + (pts + (xy 43.18 149.86) (xy 43.18 147.32) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f35f3c34-2400-4294-8fce-076fca268cc2") + ) + (wire + (pts + (xy 229.87 86.36) (xy 236.22 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f3b32ff8-bd6f-4080-879c-4ef465bcc4a8") + ) + (wire + (pts + (xy 132.08 109.22) (xy 156.21 109.22) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f3c1962f-fd48-461c-89d2-713dcbbcd8f7") + ) + (wire + (pts + (xy 81.28 50.8) (xy 104.14 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f798cb03-bc8b-4253-8742-d771f373d7b7") + ) + (wire + (pts + (xy 190.5 134.62) (xy 186.69 134.62) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f857d6e0-3a0e-4660-a7e8-bdf3d171e530") + ) + (wire + (pts + (xy 60.96 35.56) (xy 60.96 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f9fad23b-09d3-4876-b22d-289b32ce7b42") + ) + (wire + (pts + (xy 46.99 48.26) (xy 46.99 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fb3a7698-b1ad-456a-a931-4e3a6722d289") + ) + (wire + (pts + (xy 243.84 95.25) (xy 243.84 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fbc58799-62ef-4ff8-9f24-d37d458fabca") + ) + (wire + (pts + (xy 148.59 21.59) (xy 212.09 21.59) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc2b213e-4846-4c82-870e-d8e4a2e3a633") + ) + (wire + (pts + (xy 157.48 34.29) (xy 157.48 38.1) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fc46be42-7cd6-48d9-a031-8ad91b9021f9") + ) + (wire + (pts + (xy 106.68 53.34) (xy 118.11 53.34) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ff34f145-450a-4297-89d3-5297a253a4f2") + ) + (label "BAT_VCC_OUT" + (at 207.01 83.82 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "16362eab-c079-4d93-bb69-799b615a13fe") + ) + (label "UD-" + (at 49.53 45.72 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "1f64e161-73ea-4ac9-8a98-eb67313dcb96") + ) + (label "IO17" + (at 189.23 147.32 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "261dd223-efcd-4571-9e6d-b55ce86e32ae") + ) + (label "IO18" + (at 189.23 149.86 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2cfd2761-363f-433c-9664-538e19b21589") + ) + (label "IO17" + (at 100.33 106.68 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "37aea8b3-a132-45b0-b9a7-292834a9b819") + ) + (label "MCU_BOOT" + (at 83.82 187.96 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "39a96502-1977-48ed-a4a9-bacf741bce74") + ) + (label "MCU_TX" + (at 156.21 99.06 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "3bb97a90-791f-447f-adab-ec1436bf7327") + ) + (label "IO9" + (at 186.69 127 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4594a011-844a-4a3d-9201-c52f3191541e") + ) + (label "IO16" + (at 189.23 144.78 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "461437ff-48e9-40e0-9f35-7fbb838e17f0") + ) + (label "MCU_EN" + (at 186.69 99.06 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4a0cd1d2-2d1d-4337-9a58-bde8ca9d52ba") + ) + (label "IO15" + (at 100.33 149.86 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "58cb49c0-3b1c-4cd2-be59-7589ec534e2c") + ) + (label "MCU_RX" + (at 55.88 157.48 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "724b27cf-6ec6-48d9-8cc7-8d454d2f06a9") + ) + (label "IO9" + (at 100.33 139.7 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "78a5313c-61f5-425f-862f-30d11b32b60f") + ) + (label "MCU_BOOT" + (at 186.69 104.14 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9760aa4e-79ed-45d4-985a-46ea31fb54d4") + ) + (label "UD-" + (at 35.56 167.64 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "979a5958-97fe-46f9-a2a5-bb96c607fdf2") + ) + (label "IO7" + (at 186.69 121.92 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "98814b67-a21d-45b4-b8b0-fd3a268bb578") + ) + (label "UD+" + (at 49.53 48.26 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9ab10c34-14a2-4763-895a-0055ad26302e") + ) + (label "MCU_TX" + (at 55.88 160.02 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "9eb0829a-82c8-43ec-9686-846dd6de2030") + ) + (label "IO8" + (at 100.33 142.24 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a4cc30ff-b1ad-4e17-aa26-735827868ea7") + ) + (label "MCU_EN" + (at 85.09 165.1 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a7b06149-2a8e-4698-a046-d9a75827f161") + ) + (label "IO7" + (at 100.33 144.78 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "b4d27001-9ac6-4747-940e-39a0745a6603") + ) + (label "IO15" + (at 189.23 142.24 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b791985b-5233-4693-a514-377d1e2dfc08") + ) + (label "BAT_VCC_OUT" + (at 267.97 30.48 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b7fcfe8b-86f3-489e-bb68-03ade765e4b9") + ) + (label "IO14" + (at 100.33 147.32 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "bf978ff8-a3ba-434b-be15-15ab505faed1") + ) + (label "IO8" + (at 186.69 124.46 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cb4ebf85-8535-4736-8360-54c3f515fa81") + ) + (label "UD+" + (at 35.56 165.1 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "d3752f12-b65c-437f-9f9d-b758b033c213") + ) + (label "IO16" + (at 113.03 149.86 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d4bf8f2b-5cb4-42a7-9d74-71d7d5ed2756") + ) + (label "IO14" + (at 189.23 139.7 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d6730289-feec-4e49-8b92-b7b343eff832") + ) + (label "MCU_RX" + (at 156.21 101.6 180) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "ef15ea43-797e-4d75-8f18-d256d2dc6032") + ) + (label "IO18" + (at 100.33 109.22 0) + (fields_autoplaced yes) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f7c50276-9c15-470b-965f-ded221f416ce") + ) + (symbol + (lib_id "power:GND") + (at 85.09 173.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0126271c-7313-4a3d-968a-8af943b778e9") + (property "Reference" "#PWR08" + (at 85.09 180.34 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 85.09 179.07 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 85.09 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 85.09 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 85.09 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "588dff54-da60-46ea-80f0-e4af42ddf05f") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 58.42 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "06737185-bc7d-4f6e-82bd-496ca7c17968") + (property "Reference" "R5" + (at 60.96 45.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "5K1" + (at 60.96 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 56.642 46.99 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 58.42 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "68823cd6-e369-49e6-8f59-bdae73dfcd92") + ) + (pin "2" + (uuid "f24f8249-b088-4767-9023-a282138751a2") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 148.59 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "077e1da2-92a7-440b-8e03-3b3cb1d8044a") + (property "Reference" "C4" + (at 152.4 45.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uF" + (at 152.4 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 149.5552 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 148.59 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 148.59 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7de4f9a9-cd9a-4df0-991c-1cbb18cd3439") + ) + (pin "2" + (uuid "b1a7eaeb-7090-404f-b967-2e055b830cd7") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_FET:BSS138") + (at 68.58 182.88 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "088678e5-29df-40cb-b2b6-c2c88ee9f2d8") + (property "Reference" "Q2" + (at 74.93 181.6099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BSS138" + (at 74.93 184.1499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 73.66 184.785 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" + (at 73.66 186.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" + (at 68.58 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "eea5ff97-3c20-49b0-b875-5d6e58f6482b") + ) + (pin "2" + (uuid "3bd0efe7-246f-4052-a439-1c17ea91d5db") + ) + (pin "1" + (uuid "db560e08-73f2-4f3d-a9d7-da8cfebce1dc") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "Q2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 43.18 147.32 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "09fda7d6-a377-4871-adbe-55d8cee06211") + (property "Reference" "#PWR05" + (at 43.18 151.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 43.18 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 43.18 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 43.18 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 43.18 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "378a621c-09ff-42f2-9060-f7cd5ee9a80c") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 71.12 34.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0cb0822a-a4ee-4fc5-b102-d530b1b602bd") + (property "Reference" "C2" + (at 74.93 33.0199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10uF" + (at 74.93 35.5599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 72.0852 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 71.12 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 71.12 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "dcc29f6c-0e83-4662-a23b-276cc63248cc") + ) + (pin "1" + (uuid "42f867af-aa89-4b3f-9561-9dd791d4fe6f") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 269.24 91.44 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "11e9ab62-3ef2-4eb6-aa35-991e8f5c760b") + (property "Reference" "C8" + (at 273.05 90.1699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "1uF" + (at 273.05 92.7099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 268.2748 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 269.24 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 269.24 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6d02b236-c94e-4426-891d-3e3b876ffc50") + ) + (pin "2" + (uuid "0daa356e-0f4e-4b22-a528-e195ece13297") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:LED") + (at 91.44 34.29 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "130f85a9-de20-40ce-a629-33c96da44eea") + (property "Reference" "D2" + (at 95.25 34.6074 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED" + (at 95.25 37.1474 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 91.44 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 91.44 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 91.44 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "858aef3d-68d3-47df-b802-07b968046d82") + ) + (pin "2" + (uuid "942afc5c-9404-4fa2-87fd-c28997e1f904") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 81.28 41.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "15e81b8f-0b22-4632-9bd5-b648478f217b") + (property "Reference" "R9" + (at 83.82 40.6399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1K" + (at 83.82 43.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 79.502 41.91 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 81.28 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 81.28 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "0851171d-3fc8-451b-8b64-890a3033ec2d") + ) + (pin "2" + (uuid "cd4e559b-e7a0-453a-9fea-901ed4c02c1b") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:USB_C_Receptacle_USB2.0_14P") + (at 30.48 45.72 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1602d82a-23ee-4665-afd3-2e03146cd47f") + (property "Reference" "J2" + (at 30.48 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "USB_C_Receptacle_USB2.0_14P" + (at 30.48 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_USB:USB_C_Receptacle_JAE_DX07S016JA1R1500" + (at 34.29 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" + (at 34.29 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB 2.0-only 14P Type-C Receptacle connector" + (at 30.48 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "A1" + (uuid "d5602011-c5e4-457d-8cb5-598db22fa499") + ) + (pin "A12" + (uuid "b4aa35f1-1abf-4336-a886-df9c82b052ce") + ) + (pin "A9" + (uuid "903bf6f5-6dab-4168-a966-2ab83d191291") + ) + (pin "B4" + (uuid "f27e0260-04d0-4330-a9da-33c64c613718") + ) + (pin "A4" + (uuid "5be3b501-ef79-425a-b6e5-86e6e3b04e47") + ) + (pin "B1" + (uuid "6761c857-26ac-455c-a906-11c93b103520") + ) + (pin "A5" + (uuid "325324bf-a2ad-40be-8279-d3ffd64e0319") + ) + (pin "A6" + (uuid "054ced4e-2c82-45c3-be6d-4a0c34e083c5") + ) + (pin "B5" + (uuid "cb3c2184-0def-4eb2-88bd-8293c3ac31c8") + ) + (pin "B12" + (uuid "adea4a31-1081-488a-82f4-938ebadc671a") + ) + (pin "S1" + (uuid "15056dce-1ff4-445e-9c0a-83943ed0663a") + ) + (pin "B7" + (uuid "344bf7f3-f262-4ffc-a738-d9ae2a139862") + ) + (pin "B9" + (uuid "c7b5806f-47cc-4aa2-b2c9-dfc9fc1805b8") + ) + (pin "A7" + (uuid "2d9876ba-6c3f-49f1-aec7-86e76878d60f") + ) + (pin "B6" + (uuid "1a8a4fb9-4d82-411f-88a1-3bbe94ce64ad") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "J2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 269.24 118.11 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "18d5c720-3296-4f28-b001-df6117450c95") + (property "Reference" "C9" + (at 273.05 116.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "1uF" + (at 273.05 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 268.2748 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 269.24 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 269.24 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f526087a-fa0c-4e05-b578-3838e0ce0bd2") + ) + (pin "2" + (uuid "535c6bd9-9d87-4ccd-8c72-8c14d5a85402") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Open") + (at 274.32 82.55 90) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "190c3c74-5556-4edd-8c19-3c36f6099be0") + (property "Reference" "JP1" + (at 276.86 81.2799 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SolderJumper_2_Open" + (at 276.86 83.8199 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (at 274.32 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 274.32 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 274.32 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "605011a6-9723-4b96-a56f-16e2d6ac8276") + ) + (pin "2" + (uuid "52471382-3955-49f9-b110-1b6d8a53c272") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "JP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+1V8") + (at 274.32 105.41 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1a02a5ee-0210-4690-9681-8c7a11782c8a") + (property "Reference" "#PWR016" + (at 274.32 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+1V8" + (at 274.32 100.33 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 274.32 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 274.32 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+1V8\"" + (at 274.32 105.41 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "673a885d-3007-4fd0-96b6-a1abe9de4af9") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x04_Pin") + (at 25.4 120.65 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1c2bfae3-9dec-4b77-b8ba-3e1c64d8acad") + (property "Reference" "J1" + (at 26.67 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "Schuifmaat" + (at 26.67 111.506 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Connector_PinHeader_2.00mm:PinHeader_1x04_P2.00mm_Vertical" + (at 25.4 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 25.4 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x04, script generated" + (at 25.4 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "f3a97ecc-ac9c-4c26-b662-a19b1cc789f3") + ) + (pin "1" + (uuid "2aa7fa91-766a-40e3-8d1d-26c255d486af") + ) + (pin "4" + (uuid "10105b9c-f358-4d3a-ad48-394aa9ce1952") + ) + (pin "3" + (uuid "d3aaf38d-51ef-46e5-8ad8-8630a3186610") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 46.99 120.65 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1f3c1453-9e0a-4b06-a2ed-5465e0332d48") + (property "Reference" "R2" + (at 46.99 114.3 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1K" + (at 46.99 116.84 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 46.99 118.872 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 46.99 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 46.99 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6a0f77d8-438e-434b-bb49-051e5c0bbb32") + ) + (pin "2" + (uuid "b59b7ea4-87ee-4a78-abc5-3e0e3d0b79eb") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+1V8") + (at 33.02 113.03 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "1fc9f923-3ccf-4dd7-b848-431d15fd42ef") + (property "Reference" "#PWR03" + (at 33.02 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+1V8" + (at 33.02 107.95 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 33.02 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 33.02 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+1V8\"" + (at 33.02 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "20bb0972-1bd0-4d52-bd1a-5021f16559f5") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 76.2 101.6 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "20f7a754-4b9f-4ac9-b9e4-63f40be70fe6") + (property "Reference" "R8" + (at 78.74 100.3299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10K" + (at 78.74 102.8699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 74.422 101.6 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 76.2 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 76.2 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "cdfca4e1-e931-4a6f-a308-1db23d730d44") + ) + (pin "2" + (uuid "3f2da0a2-1b90-4480-928b-286591e48b82") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 256.54 123.19 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2583fa80-dc03-4f26-8f95-49337dbffdbf") + (property "Reference" "#PWR014" + (at 256.54 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 256.54 128.27 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 256.54 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 256.54 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 256.54 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "15abd924-dac8-478a-aa56-39da05dff545") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MMBT2222A") + (at 73.66 120.65 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "341cc1b4-1dc1-40bf-86fa-bcfb7a15c8f3") + (property "Reference" "Q3" + (at 78.74 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MMBT2222A" + (at 78.74 121.9199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 78.74 122.555 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/MMBT2222A.pdf" + (at 73.66 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "600mA Ic, 40V Vce, NPN Transistor, SOT-23" + (at 73.66 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "a1d76e3b-ba7e-4b2e-b48f-86ad40b7a18c") + ) + (pin "1" + (uuid "d1618e3a-791b-445b-abb0-317f96b1ed52") + ) + (pin "2" + (uuid "5eaed498-b191-41c6-83ca-7340aff01580") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "Q3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 138.43 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3ac704ad-b18d-4fbc-a5b3-3c4667551fb1") + (property "Reference" "R15" + (at 140.97 45.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2K" + (at 140.97 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 136.652 46.99 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 138.43 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 138.43 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d575fefd-d598-4d57-8587-0feadaf60135") + ) + (pin "2" + (uuid "fa3b821d-2e26-4e3b-b069-9c7abe9959da") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R15") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 200.66 111.76 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "403e0cf1-3de0-4f42-ac2a-d80988da9075") + (property "Reference" "TP1" + (at 205.74 110.4899 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "JTAG_SP" + (at 205.74 113.0299 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" + (at 200.66 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 200.66 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 200.66 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "969d75d1-8de8-4979-9a32-db743839d7e5") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "TP1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 274.32 78.74 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "432060ee-2dca-4396-a5f2-b79b18cfafba") + (property "Reference" "#PWR015" + (at 274.32 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 274.32 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 274.32 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 274.32 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 274.32 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2ec6f42d-1d7a-4006-bb8f-bb0cfccd958a") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 132.08 114.3 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "45f29851-21ed-441a-8efa-23a527e22b7a") + (property "Reference" "R14" + (at 126.238 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "630" + (at 126.238 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 130.302 114.3 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 132.08 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 132.08 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "6ae768d7-587f-4251-a220-4adfdcbb5aa0") + ) + (pin "2" + (uuid "af998e16-f68b-4d72-bf7f-3394731a970f") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R14") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 22.86 73.66 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "4ca474f2-65ce-44ba-ba9e-51f36cca08e4") + (property "Reference" "#PWR02" + (at 22.86 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 22.86 78.74 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 22.86 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 22.86 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 22.86 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3f8ea381-e0b1-460e-8d23-779600a1ae80") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 45.72 185.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "52cb27b6-e492-4287-ba19-7d4574062a9a") + (property "Reference" "#PWR06" + (at 45.72 191.77 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 45.72 190.5 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 45.72 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 45.72 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 45.72 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b2e5aca9-fc5d-4d03-a868-5f64f08edab4") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_FET:BSS138") + (at 68.58 170.18 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "52fe39c1-7d61-4bbf-9bd7-790ee0010277") + (property "Reference" "Q1" + (at 74.93 168.9099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "BSS138" + (at 74.93 171.4499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 73.66 172.085 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://www.onsemi.com/pub/Collateral/BSS138-D.PDF" + (at 73.66 173.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "50V Vds, 0.22A Id, N-Channel MOSFET, SOT-23" + (at 68.58 170.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8c85b28d-c82a-444c-96e0-02620554f9b4") + ) + (pin "3" + (uuid "faf8dc03-2d0c-4ef2-8c19-987134f002d3") + ) + (pin "1" + (uuid "f72835f7-177b-4750-813a-50f2d6cc1c75") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "Q1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 123.19 114.3 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "54844f67-aca2-411b-86c6-0105693d657a") + (property "Reference" "R12" + (at 117.348 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "630" + (at 117.348 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 121.412 114.3 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 123.19 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 123.19 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a04028cd-a548-4b96-998f-acd0679368a3") + ) + (pin "2" + (uuid "c2eeb6a9-da66-477b-a250-2f256b9c3311") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:Battery_Cell") + (at 212.09 36.83 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "550d4385-3139-4c1a-9286-5eae34c77050") + (property "Reference" "BT1" + (at 215.9 33.7184 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Battery_Cell" + (at 215.9 36.2584 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" + (at 212.09 35.306 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 212.09 35.306 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Single-cell battery" + (at 212.09 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c4e2aebb-4d53-4426-a0bf-59e7d5dabab0") + ) + (pin "2" + (uuid "e1c0642d-c8c1-41ba-8c59-3767d933b131") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "BT1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_SPDT") + (at 224.79 83.82 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5aced0b3-f310-4ec5-baab-0a9b6809ea59") + (property "Reference" "SW3" + (at 224.79 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SW_SPDT" + (at 224.79 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Button_Switch_SMD:SW_SPDT_PCM12" + (at 224.79 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 224.79 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Switch, single pole double throw" + (at 224.79 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C431541" + (at 224.79 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "0ec81bba-2509-4dc0-a79e-6d0c14c8ca25") + ) + (pin "3" + (uuid "d4d0990e-3f0a-4ce5-b8a7-0f7924de9204") + ) + (pin "1" + (uuid "d95cd4eb-688e-49ea-8015-458c8dab1999") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "SW3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 243.84 118.11 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "5b70083f-de74-455e-9d96-c931cbe79391") + (property "Reference" "C7" + (at 240.03 116.8399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "1uF" + (at 240.03 119.3799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 244.8052 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 243.84 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 243.84 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8cabd12f-805c-4a0b-aaa6-32bf304312a1") + ) + (pin "2" + (uuid "65aaa080-89c7-4a57-8040-cce203b782ab") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 231.14 35.56 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "60eca5e2-40df-4467-8756-e89fd0eb69d3") + (property "Reference" "R19" + (at 233.68 34.2899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10k" + (at 233.68 36.8299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 229.362 35.56 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 231.14 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 231.14 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "04911958-1ff4-45d5-bce0-c0a964d1d6b2") + ) + (pin "1" + (uuid "2b87f96f-8afe-4b7a-84bc-06bb0127f072") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R19") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 149.86 161.29 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "639d556b-84f8-4248-b6bc-5e7de10a85b1") + (property "Reference" "TP2" + (at 154.94 160.0199 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "VDD_SPI_SP" + (at 154.94 162.5599 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" + (at 149.86 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 149.86 166.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 149.86 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "8c5dc374-ed66-4ce4-82ab-87ecb4cb96be") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "TP2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 167.64 46.99 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "64989d52-ec0b-4408-a7c6-07616319f9c6") + (property "Reference" "R17" + (at 170.18 48.2601 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "0" + (at 170.18 45.7201 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 169.418 46.99 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 167.64 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 167.64 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "088cad80-6f72-42d9-b204-fcdbf69b084a") + ) + (pin "1" + (uuid "3e839051-0342-4b47-9e50-a99e6e4d4841") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R17") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 114.3 135.89 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6720a4fb-0e59-417d-9348-7f9461b00205") + (property "Reference" "#PWR018" + (at 114.3 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 114.3 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 114.3 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 114.3 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "715f7bc2-bd5b-4698-bdd0-5dfa19b44d62") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "fs8205:FS8205A") + (at 175.26 57.15 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6fd15661-4b8e-43bc-9394-bcb7b3f63d15") + (property "Reference" "U5" + (at 193.04 50.1649 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "FS8205A" + (at 193.04 52.7049 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 179.07 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 175.26 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "FS8205A" + (at 175.26 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "06bc6f2a-b59e-456b-a101-fe9865ffa753") + ) + (pin "6" + (uuid "89484962-94d4-46a3-b98b-a0c46e162458") + ) + (pin "1" + (uuid "90ba62b3-9be6-4446-bd02-a976ce789965") + ) + (pin "4" + (uuid "b6ffdb7f-a5ff-4fb0-8abf-96a0bc2a9264") + ) + (pin "2" + (uuid "e65c1014-e858-46cd-b294-a32261306134") + ) + (pin "5" + (uuid "20027eb3-6ac2-490c-8045-b069b42efa8e") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 171.45 158.75 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "72f672e4-2f8f-44e2-9598-57e92041a101") + (property "Reference" "#PWR012" + (at 171.45 165.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 171.45 163.83 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 171.45 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 171.45 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 171.45 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "33d629eb-97fa-46ef-b1d0-d5e1707bb605") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "RF_Module:ESP32-S3-MINI-1") + (at 171.45 124.46 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "74bdfb48-959a-4520-bdbf-e173a2dc1457") + (property "Reference" "U4" + (at 169.2559 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ESP32-S3-MINI-1" + (at 169.2559 93.98 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "RF_Module:ESP32-S2-MINI-1" + (at 156.21 153.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf" + (at 171.45 83.82 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RF Module, ESP32-S3 SoC, Wi-Fi 802.11b/g/n, Bluetooth, BLE, 32-bit, 3.3V, SMD, onboard antenna" + (at 171.45 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "46" + (uuid "e7e1228f-504a-4c21-a5e4-34884e153e7c") + ) + (pin "64" + (uuid "41ccbf18-593c-4e57-a7de-d7e12b3ebbf8") + ) + (pin "65" + (uuid "9ce27224-bc37-489c-a5b1-41db766ff4b0") + ) + (pin "7" + (uuid "bdf49cbb-6d10-49fb-b557-e7d3eaf0234a") + ) + (pin "22" + (uuid "e55ffbb2-1fa7-4631-8084-59394b545070") + ) + (pin "28" + (uuid "e85c1485-c66a-4665-b868-13bc9aaa25ff") + ) + (pin "36" + (uuid "cebb8603-f145-4141-a2e8-2ba6f01bcba7") + ) + (pin "40" + (uuid "115bd610-86d5-4b20-abd4-ba9aa1a2553d") + ) + (pin "43" + (uuid "953594a7-3e5a-4d08-ab2f-660513831f1c") + ) + (pin "47" + (uuid "b969d430-31fd-422a-ad06-b0f3305fa0bb") + ) + (pin "30" + (uuid "8d4cb74b-70be-4b0c-9e1f-ea2123adcf5f") + ) + (pin "41" + (uuid "d6b75847-a459-485a-bd89-fcce19a4ec50") + ) + (pin "48" + (uuid "d543ad86-ed16-4190-bb42-e0d2ebade98b") + ) + (pin "51" + (uuid "37d57363-5c2d-4840-acef-5eacb2192479") + ) + (pin "53" + (uuid "013acbee-8128-47f4-90ac-c493edad0330") + ) + (pin "17" + (uuid "e9db1989-3287-4ad7-9176-58fbec82ed2b") + ) + (pin "29" + (uuid "bd5cf99c-0d76-4959-86d3-24758c780f1f") + ) + (pin "55" + (uuid "a729d6d1-ba3e-464d-8d8a-f67286942373") + ) + (pin "32" + (uuid "ad8dfff6-4ebb-4be7-ba3b-42834d0f37ef") + ) + (pin "20" + (uuid "518c36ec-873d-4df3-896d-cdb24aab459f") + ) + (pin "39" + (uuid "6582c71b-ea2a-4043-8847-c266cd34b822") + ) + (pin "6" + (uuid "e76eab4a-ed71-43c7-b73e-b540042b9885") + ) + (pin "61" + (uuid "bcb77e6d-9a6e-4bdf-8217-3547de5fd474") + ) + (pin "42" + (uuid "cd6ee767-554c-43b9-aeea-808b1e310530") + ) + (pin "27" + (uuid "79b81c6c-3d57-4ec2-b5cb-2c012db9a804") + ) + (pin "3" + (uuid "e831efec-e35a-4705-b283-5b8f2936259f") + ) + (pin "52" + (uuid "6db70b20-7a40-415d-a563-82c941027d09") + ) + (pin "56" + (uuid "cc19b65e-920d-4b5f-ab14-5b6ae29743d5") + ) + (pin "60" + (uuid "52cc7080-0ec2-4189-b5e3-6096d9d6b31c") + ) + (pin "21" + (uuid "ca247639-282e-458e-aae5-9f92562b950f") + ) + (pin "33" + (uuid "a45711e9-70e8-49e2-b8c8-c2bbb88f4252") + ) + (pin "50" + (uuid "54055e6a-6de3-46ea-8eb3-bb24be0166fd") + ) + (pin "45" + (uuid "02341596-be41-434a-9322-8a4e4df480b0") + ) + (pin "14" + (uuid "80f95527-21a8-4096-8393-466ea5a84dd4") + ) + (pin "16" + (uuid "5c723cfd-0519-485f-a895-661e0e882975") + ) + (pin "35" + (uuid "e2c1668a-249d-4ed6-b2da-3b4b0a127847") + ) + (pin "63" + (uuid "77ce0106-8a18-4fd7-9ad9-4082591d4399") + ) + (pin "44" + (uuid "85ebd78f-9939-4950-b74f-4768ab07e9d4") + ) + (pin "59" + (uuid "bb352ca9-dccf-4f15-984b-a0715de43f88") + ) + (pin "25" + (uuid "332c61ce-1bfd-4138-9c35-1c59770521e1") + ) + (pin "13" + (uuid "f3500908-ba63-4ae8-a830-8da46a2d6547") + ) + (pin "11" + (uuid "49c82ae5-0f20-4cc2-a6c0-797ea6adee48") + ) + (pin "37" + (uuid "218bc24d-935b-4576-9c84-8a95b05769b0") + ) + (pin "5" + (uuid "894f0a41-4912-44d2-a491-577c941859fb") + ) + (pin "18" + (uuid "814513d5-e89c-4e55-b5ef-b8ef0f18bbce") + ) + (pin "1" + (uuid "20495dde-fc48-4dba-a3e8-75147da36ad8") + ) + (pin "12" + (uuid "7b211c6d-1cc4-4a5e-bfd3-839b611fc351") + ) + (pin "15" + (uuid "8b840cde-01ee-42ff-bc92-d93f6e486445") + ) + (pin "19" + (uuid "b43153c3-17d0-4985-9358-2068b5251fec") + ) + (pin "38" + (uuid "1c4d1198-2c2b-4954-bc45-0dca6fb81371") + ) + (pin "49" + (uuid "06a05d8f-fac0-4d1e-a5c7-d07a38e4d6f7") + ) + (pin "57" + (uuid "83535008-18ea-4269-b873-c49abb5d7fe3") + ) + (pin "2" + (uuid "c1c90d18-50e4-4c94-b950-4675c9ce8caf") + ) + (pin "23" + (uuid "6a0a1f94-3d22-4b7d-8ef3-0deadb444513") + ) + (pin "26" + (uuid "4f7116d7-e5cc-460f-ba75-fd086dd158e9") + ) + (pin "24" + (uuid "00340fef-a9de-4118-bc75-0ea22def7f80") + ) + (pin "10" + (uuid "aa46a068-e7a4-4bf0-a992-4f0fed580b9c") + ) + (pin "34" + (uuid "9114756c-d3e1-4838-935e-1d2b0e6835fb") + ) + (pin "4" + (uuid "6e2b4138-5afc-4dbc-a33f-d82ca3df9c37") + ) + (pin "54" + (uuid "94aa5a69-890d-4312-9d16-9b9b3536ea29") + ) + (pin "58" + (uuid "f9e0698e-2149-43bc-9a49-83855e43d76e") + ) + (pin "31" + (uuid "cd9c9d81-1fb0-4377-a9be-628ab2c9fbf7") + ) + (pin "62" + (uuid "6d088290-aa0f-4f49-afaf-defb67d2ad15") + ) + (pin "9" + (uuid "44f25d21-ce31-44cd-a2d6-fded55b6e00b") + ) + (pin "8" + (uuid "a3a503c2-0e53-426f-8b89-8a6af5f1658f") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 123.19 130.81 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "79b5e6b5-0f76-4790-9549-87b9a72f7518") + (property "Reference" "#PWR010" + (at 123.19 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 123.19 135.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 123.19 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 123.19 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 123.19 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2967cf22-538d-410f-840c-774a8e3208e2") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 83.82 152.4 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7d5d7d2d-c1f3-4d2f-956c-1f2127f0e7b1") + (property "Reference" "#PWR017" + (at 83.82 158.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 83.82 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 83.82 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 83.82 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 83.82 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "08bc5e06-153f-419e-8f48-d66304308f48") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector_Generic:Conn_02x06_Odd_Even") + (at 105.41 142.24 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7fb33c23-4a5c-4ce4-8358-cf46ea072b00") + (property "Reference" "J3" + (at 106.68 130.81 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "GPIO" + (at 106.68 133.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Connector_PinHeader_1.27mm:PinHeader_2x06_P1.27mm_Vertical" + (at 105.41 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 105.41 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, double row, 02x06, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)" + (at 105.41 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "796a37a6-2bed-4bc9-b376-c17aa267a803") + ) + (pin "1" + (uuid "57538c28-b786-4c65-8695-bbb878383fe3") + ) + (pin "5" + (uuid "15b134c8-e0c7-48e3-876b-b96975c3a308") + ) + (pin "9" + (uuid "c65ca1cc-cfef-44e9-9f7f-22ab3aa59f4e") + ) + (pin "11" + (uuid "a42cbb06-eb0d-434e-8c0c-b69cde761b3f") + ) + (pin "4" + (uuid "c86a8181-980c-40ee-87af-41b37dafcfb8") + ) + (pin "10" + (uuid "8417c556-27a3-4bfc-ae2a-ded5839c8fd2") + ) + (pin "3" + (uuid "5eb41890-3616-4585-81cd-eb45b7806ab7") + ) + (pin "6" + (uuid "00e7f993-adc7-4801-92f1-04f2dc58f9c5") + ) + (pin "7" + (uuid "646cdc96-380a-407d-9c11-b41cbd0aeb99") + ) + (pin "12" + (uuid "1aac5c72-971f-4f10-8aff-e436304ca181") + ) + (pin "8" + (uuid "84393441-68e1-472e-8241-1be708278c7b") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 91.44 101.6 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "8473e3cd-5974-422d-944d-2d5216970efa") + (property "Reference" "R11" + (at 93.98 100.3299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10K" + (at 93.98 102.8699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 89.662 101.6 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 91.44 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 91.44 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "655561f4-0cec-4a50-bf6f-995337214420") + ) + (pin "2" + (uuid "778decf0-3ca1-4e8f-ba7d-7ee392b52500") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:LED") + (at 81.28 34.29 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "90d04cc0-8ff1-45ee-9730-f5c14cefa755") + (property "Reference" "D1" + (at 85.09 34.6074 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED" + (at 85.09 37.1474 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 81.28 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 81.28 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 81.28 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e9ef706d-23b5-4efc-80bb-b2e99e78277d") + ) + (pin "2" + (uuid "a10bb3a3-4398-4999-ad88-d32658afdf9d") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Jumper:SolderJumper_2_Open") + (at 274.32 109.22 90) + (unit 1) + (exclude_from_sim yes) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "92d91f1d-afc5-48c7-8728-65f2b9d45bdf") + (property "Reference" "JP2" + (at 276.86 107.9499 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SolderJumper_2_Open" + (at 276.86 110.4899 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm" + (at 274.32 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 274.32 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Solder Jumper, 2-pole, open" + (at 274.32 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "e8c6e596-ae76-4279-bbc4-cc6838ebc61f") + ) + (pin "2" + (uuid "0493efac-deb2-4fda-9e13-f8ba0f6719ce") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "JP2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 62.23 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "932669c5-6ed8-4442-b9fa-872b1d7361cb") + (property "Reference" "R7" + (at 64.77 124.4599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10K" + (at 64.77 126.9999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 60.452 125.73 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 62.23 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 62.23 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2e999128-2f9d-44ee-8fed-483977872fd5") + ) + (pin "2" + (uuid "73a6a8c1-8c03-4041-b589-88aac0b8100e") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 33.02 132.08 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "99fd8244-cd0f-49b9-b843-450def22d5a6") + (property "Reference" "#PWR04" + (at 33.02 138.43 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 33.02 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 33.02 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 33.02 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 33.02 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "73ed183e-65d7-4e25-a8cb-4eb2da5493f7") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 58.42 30.48 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9b8619d3-f18c-414b-978d-77e26d5aecb1") + (property "Reference" "R4" + (at 58.42 24.13 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "0.4" + (at 58.42 26.67 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 58.42 32.258 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 58.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 58.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4074d7cf-ae7a-418d-a604-bb61f2c87d14") + ) + (pin "2" + (uuid "27f15464-b1fd-490c-9865-63f6f1b494cc") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 243.84 91.44 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9c0192a2-bbc9-4312-aebe-a95fce290c21") + (property "Reference" "C6" + (at 240.03 90.1699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "1uF" + (at 240.03 92.7099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 244.8052 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 243.84 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 243.84 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1de1a45b-92f7-4f33-8368-354108e2f4ff") + ) + (pin "2" + (uuid "45603c7b-ec9b-47a0-a0ab-2d9d029e6164") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:TestPoint") + (at 149.86 156.21 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a0f73ad4-989d-42e8-b652-7feb3143a201") + (property "Reference" "TP3" + (at 154.94 154.9399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ROM_MSG_SP" + (at 154.94 157.4799 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "TestPoint:TestPoint_Pad_D1.5mm" + (at 149.86 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 149.86 161.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "test point" + (at 149.86 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d4c426c3-f74c-4aa6-9962-fe2d8a77512b") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "TP3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 39.37 118.11 270) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a1acb54f-6751-4f81-a6a8-f102b61d2c58") + (property "Reference" "R1" + (at 39.37 111.76 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1K" + (at 39.37 114.3 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 39.37 119.888 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 39.37 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 39.37 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b7ac38ef-187c-4628-94c4-f37d5db774ca") + ) + (pin "2" + (uuid "979c9158-2add-4aa1-bdee-b32084e65449") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "tp4056:TP4056") + (at 111.76 41.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a2ccde2f-4136-4235-aa8e-1434b1804cdb") + (property "Reference" "U2" + (at 118.11 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "TP4056" + (at 118.11 26.67 0) + (effects + (font + (size 1.1 1.1) + ) + ) + ) + (property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" + (at 111.76 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 111.76 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "TP4056" + (at 111.76 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "81d74fce-7276-46d4-b36c-34402f1a3d3d") + ) + (pin "8" + (uuid "6e845f60-1de3-4be9-b856-037292376c08") + ) + (pin "5" + (uuid "1735cf9b-c4aa-4371-91ce-871275b77cd6") + ) + (pin "6" + (uuid "f39eb573-ace6-4cf7-998f-50110ed19334") + ) + (pin "1" + (uuid "e371bbfe-a9f1-47c4-964e-548b648bdc27") + ) + (pin "3" + (uuid "2b241e37-645e-4e09-b26e-8e3d928c0355") + ) + (pin "9" + (uuid "0cc3ff91-9f9b-4cef-947b-dca90b3730a5") + ) + (pin "4" + (uuid "3316c03d-7168-49a3-b6d7-de5ae0525072") + ) + (pin "7" + (uuid "f953eb22-15c1-40da-a94e-ea7f99a7246e") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Interface_USB:CH340X") + (at 45.72 167.64 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a720478e-6176-48b8-b5ee-db455b337052") + (property "Reference" "U1" + (at 47.9141 182.88 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "CH340X" + (at 47.9141 185.42 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_SO:MSOP-10_3x3mm_P0.5mm" + (at 46.99 181.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://cdn.sparkfun.com/assets/5/0/a/8/5/CH340DS1.PDF" + (at 36.83 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "USB serial converter, 5V-tolerant IO, UART, MSOP-10" + (at 45.72 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "02bb4251-07e5-48fd-a5fc-bcb9817519bb") + ) + (pin "5" + (uuid "fba656a1-d007-4eaf-b752-165e44eea1f0") + ) + (pin "8" + (uuid "a419c8f3-2239-405d-8f35-4a231a75827a") + ) + (pin "10" + (uuid "b772be5b-650a-496c-a0fa-d73935f2f9fb") + ) + (pin "2" + (uuid "94b91f96-d51f-41c1-93a2-780fd3bb43a9") + ) + (pin "6" + (uuid "a059549b-7451-405c-84f1-bf1c1413c892") + ) + (pin "3" + (uuid "0fb9df1d-2ce1-41b1-b794-2cd3abffee0b") + ) + (pin "7" + (uuid "24161e13-3420-4699-861a-02f3ea799e1f") + ) + (pin "9" + (uuid "2d40c4ce-1057-44b6-a73f-ca8f1bf691cb") + ) + (pin "4" + (uuid "ef13e359-886c-4a49-8973-aaffd830779c") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:LED") + (at 132.08 121.92 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "abbf64d8-b04e-4dbe-887f-ba3539fd3e6b") + (property "Reference" "D4" + (at 126.238 119.38 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED" + (at 126.238 121.92 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 132.08 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 132.08 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 132.08 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fe9a8510-8bb9-4c08-9891-4567887a1c9c") + ) + (pin "2" + (uuid "5dd346ad-79ba-40b0-89e3-85fcfb169b8a") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "D4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 191.77 35.56 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "afdea0f2-cb17-4b86-a4bf-a6bafe372c39") + (property "Reference" "C5" + (at 195.58 34.2899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "0.1uF" + (at 195.58 36.8299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 192.7352 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 191.77 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 191.77 35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4f44c43d-9bc0-4e3d-ba4f-1db368ac4a48") + ) + (pin "2" + (uuid "3455cf38-b7c3-46f7-9b1a-fe156d333dc7") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:LED") + (at 123.19 121.92 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b50a92a3-c8b0-49c0-aeab-68293a838661") + (property "Reference" "D3" + (at 117.348 119.38 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "LED" + (at 117.348 121.92 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "LED_SMD:LED_0603_1608Metric" + (at 123.19 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 123.19 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Light emitting diode" + (at 123.19 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "984fb0f9-fbb4-4525-8c7b-aa1b57613689") + ) + (pin "2" + (uuid "ff4d2f5d-b20d-4548-a0a8-4c6795979d6a") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 129.54 46.99 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b51f9c07-eafb-40ca-a566-14f54f5a7b56") + (property "Reference" "R13" + (at 132.08 45.7199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "2K" + (at 132.08 48.2599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 127.762 46.99 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 129.54 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 129.54 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "80d70aa9-d95b-452b-9086-8eb9b6262629") + ) + (pin "2" + (uuid "a7a89226-190b-4bf3-8bd3-47295b03d838") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R13") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 91.44 41.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "b67ea552-c69f-4ca9-9e9f-7b99eda4d340") + (property "Reference" "R10" + (at 93.98 40.6399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1K" + (at 93.98 43.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 89.662 41.91 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 91.44 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 91.44 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f70cb76d-cfab-47a1-9f71-e136b1800c1a") + ) + (pin "2" + (uuid "8b6de13c-f674-4f95-b58d-7000f11e06f6") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_FET:AO3401A") + (at 245.11 27.94 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "b8d7fc6d-0b06-4bca-bd1f-bd2bb9b2a335") + (property "Reference" "Q5" + (at 245.11 34.29 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AO3401A" + (at 245.11 36.83 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 247.015 33.02 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "http://www.aosmd.com/pdfs/datasheet/AO3401A.pdf" + (at 248.92 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "-4.0A Id, -30V Vds, P-Channel MOSFET, SOT-23" + (at 245.11 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "880f8b86-2908-4c25-a3bb-7d27a4ec2e3e") + ) + (pin "1" + (uuid "acf44878-58d7-462c-97ed-520ae2754bc6") + ) + (pin "3" + (uuid "6c77bdf2-057d-45aa-9752-3f1ab0fcd20f") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "Q5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 256.54 96.52 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "be4476ba-e75c-4594-a393-24e68ceb9ea2") + (property "Reference" "#PWR013" + (at 256.54 102.87 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 256.54 101.6 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 256.54 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 256.54 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 256.54 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "53f1aee2-7bfd-4616-93eb-66ab6f098f7c") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:AP2112K-1.8") + (at 256.54 115.57 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "beaf99b7-0d86-4149-8d5d-b5fe22af968e") + (property "Reference" "U7" + (at 256.54 106.68 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP2112K-1.8" + (at 256.54 109.22 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 256.54 107.315 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" + (at 256.54 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.8V fixed positive output, SOT-23-5" + (at 256.54 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b45efbf6-b87c-49b4-8149-50c9e70a80b2") + ) + (pin "2" + (uuid "9ee5be81-a77f-492f-8675-f7932c836664") + ) + (pin "3" + (uuid "154cebb0-de8b-4121-b1f2-2d5b6d323ba1") + ) + (pin "4" + (uuid "47051a9d-02a4-49de-b506-183240913de1") + ) + (pin "5" + (uuid "3e61f49f-9cf1-41fc-9425-763d3e1647d4") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 171.45 92.71 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c4ea1206-37e9-4ae5-a608-25404ac02970") + (property "Reference" "#PWR011" + (at 171.45 96.52 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 171.45 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 171.45 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 171.45 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 171.45 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "33cb4a4f-010e-4932-a28e-611f09aef95b") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Switch:SW_DIP_x04") + (at 198.12 134.62 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c77c7857-311b-41c5-9728-bd530c730eef") + (property "Reference" "SW2" + (at 198.12 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "SW_DIP_x04" + (at 198.12 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Button_Switch_SMD:SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile" + (at 198.12 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 198.12 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "4x DIP Switch, Single Pole Single Throw (SPST) switch, small symbol" + (at 198.12 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "7" + (uuid "17bfab67-1067-4b6f-9f9c-8ca723fdf47f") + ) + (pin "6" + (uuid "81f3ca5e-ed50-43f3-82a2-6caa62f73ee3") + ) + (pin "5" + (uuid "0cf2fdb4-fa50-4ec4-a7c6-70a858c67219") + ) + (pin "4" + (uuid "29d61892-daad-49e8-92c3-68fb3c920b1f") + ) + (pin "3" + (uuid "cd3d921b-acd5-46a4-8619-ecc33af3d22f") + ) + (pin "2" + (uuid "95326be8-baa8-4861-9c22-50b331269271") + ) + (pin "1" + (uuid "027d5119-2ba4-4f73-a412-3fe55ab7adc7") + ) + (pin "8" + (uuid "490f0432-d18a-4e87-9676-16a10b9b5836") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "SW2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 60.96 58.42 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c83a97a8-00f1-449b-b49a-bf1520b7ab32") + (property "Reference" "R6" + (at 63.5 57.1499 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "5K1" + (at 63.5 59.6899 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 59.182 58.42 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 60.96 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 60.96 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "4ffbef16-2079-462c-899a-bf157fa6fe13") + ) + (pin "2" + (uuid "12b5ffb0-a629-476c-bcbf-dd775513d933") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 17.78 156.21 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cd1f2872-0d9e-452b-9d83-5a1f61b7ca0f") + (property "Reference" "C1" + (at 21.59 154.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 21.59 157.4799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 18.7452 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 17.78 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 17.78 156.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "095c24d8-7690-48e4-8a22-58561b509d08") + ) + (pin "1" + (uuid "8d3d9af4-1826-4347-851c-b82ee40b4ee8") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "easyeda2kicad:GT-TC018A-H0375-L1") + (at 140.97 120.65 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cf8ec891-1de9-4084-8a9f-420b5f3a455d") + (property "Reference" "SW1" + (at 144.78 119.3799 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "GT-TC018A-H0375-L1" + (at 144.78 121.9199 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "easyeda2kicad:SW-SMD_L4.7-W3.5-P3.35-EH" + (at 151.13 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://lcsc.com/product-detail/Tactile-Switches_G-Switch-GT-TC018A-H0375-L1_C963235.html" + (at 153.67 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 140.97 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC Part" "C963235" + (at 156.21 120.65 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "3" + (uuid "06b57d48-695d-4799-8ade-2c798f07b417") + ) + (pin "1" + (uuid "faa44afe-e425-4847-9e20-1fa17767e730") + ) + (pin "2" + (uuid "ae1b9c96-7586-4f3c-a865-5748c6f48a6b") + ) + (pin "4" + (uuid "9227ff7b-68fc-40f2-a21b-0c7fc31b9c20") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "SW1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3V3") + (at 76.2 95.25 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d22e6cfb-4dd7-4616-b6d7-cc3436004c96") + (property "Reference" "#PWR07" + (at 76.2 99.06 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3V3" + (at 76.2 90.17 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 76.2 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 76.2 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3V3\"" + (at 76.2 95.25 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "81faa322-920f-43a9-a598-1dbc5027e7c8") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Regulator_Linear:AP2112K-3.3") + (at 256.54 88.9 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "ddab69ec-b375-4cab-9e8d-2023bc1adc91") + (property "Reference" "U6" + (at 256.54 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "AP2112K-3.3" + (at 256.54 82.55 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (at 256.54 80.645 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" + (at 256.54 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "600mA low dropout linear regulator, with enable pin, 3.8V-6V input voltage range, 3.3V fixed positive output, SOT-23-5" + (at 256.54 88.9 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "b080a0c5-9696-40de-abcf-4a7148701fe7") + ) + (pin "5" + (uuid "aa660db0-5864-445b-8c80-752584f3dbbe") + ) + (pin "4" + (uuid "82386005-830d-4cb5-9f36-a3aaff295043") + ) + (pin "1" + (uuid "8b36f1e1-1f02-4f13-9a72-7b0fa443927d") + ) + (pin "3" + (uuid "5a75f2ab-8c42-4ba2-a50b-865966a34a04") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 106.68 55.88 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "dff4eb60-96ba-4b14-9fa7-c7892a3cd23a") + (property "Reference" "#PWR09" + (at 106.68 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 106.68 60.96 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 106.68 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 106.68 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 106.68 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b48dd295-9d6e-493c-9de3-cf146db5c83a") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 54.61 125.73 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e1754c5c-2d5e-49b1-b7ec-d6a1604c066a") + (property "Reference" "R3" + (at 57.15 124.4599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10K" + (at 57.15 126.9999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 52.832 125.73 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 54.61 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 54.61 125.73 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3dca6ec9-c60b-47a0-96b1-53ff7d7867db") + ) + (pin "2" + (uuid "0bca8ff9-4d65-4f99-977b-d4eb512b49bb") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "dw01:DW01") + (at 168.91 38.1 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e32ac876-98b6-4958-bca3-65eb82a9d3e8") + (property "Reference" "U3" + (at 175.895 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "DW01" + (at 175.895 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (at 173.99 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 168.91 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "" + (at 168.91 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "d3e4f757-68c0-40dd-a0ae-ffd6ad1f9068") + ) + (pin "5" + (uuid "7c048036-d5d0-4902-bb91-94fd151004e8") + ) + (pin "6" + (uuid "79ad6eca-3b35-4112-8114-46c54116965b") + ) + (pin "2" + (uuid "19d57e71-27e5-49a7-ab1b-9dff7f032b0e") + ) + (pin "3" + (uuid "0a8a8cc3-08e2-4ed6-ac70-d6b0393fb850") + ) + (pin "1" + (uuid "979dc6ca-5fd9-4c55-bd66-8f0942ada442") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "U3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 201.93 30.48 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e4db8a33-143b-4073-8652-0a18929aef7d") + (property "Reference" "R18" + (at 201.93 24.13 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "100" + (at 201.93 26.67 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 201.93 32.258 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 201.93 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 201.93 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9e331095-c71c-49d7-8224-1308b2721eeb") + ) + (pin "2" + (uuid "d76efe4f-42eb-45c1-be3c-fb47c04361d6") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R18") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 17.78 162.56 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "eceb3c78-9415-4496-a41a-5c8a6e15bd80") + (property "Reference" "#PWR01" + (at 17.78 168.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 17.78 167.64 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 17.78 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 17.78 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 17.78 162.56 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fe439b6d-bab8-4db2-8bff-136834548336") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Transistor_BJT:MMBT2222A") + (at 88.9 114.3 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f0a236ff-e448-4f10-b47e-6927bf5fba7a") + (property "Reference" "Q4" + (at 93.98 113.0299 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "MMBT2222A" + (at 93.98 115.5699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23" + (at 93.98 116.205 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (justify left) + (hide yes) + ) + ) + (property "Datasheet" "https://assets.nexperia.com/documents/data-sheet/MMBT2222A.pdf" + (at 88.9 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "600mA Ic, 40V Vce, NPN Transistor, SOT-23" + (at 88.9 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "a9e89694-c970-4ceb-886c-0756443b229b") + ) + (pin "3" + (uuid "cb277cd3-410d-4046-a55a-c79e9fffff53") + ) + (pin "1" + (uuid "bc792e02-65fd-4e3a-8c6b-00d524c69808") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "Q4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:D_Schottky") + (at 251.46 25.4 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f3593008-b61d-40af-8cb9-863aa6456d70") + (property "Reference" "D5" + (at 254 24.4474 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "D_Schottky" + (at 254 26.9874 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Diode_SMD:D_SOD-523" + (at 251.46 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 251.46 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "RB521S30T1G" + (at 251.46 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fe9ff8da-9806-4531-be7b-fca8c4d9db59") + ) + (pin "2" + (uuid "9bc4d5b2-11ff-4e51-ad96-69ed0b480384") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "D5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:R") + (at 157.48 41.91 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "fbe6e54a-6a27-4a89-bdee-c53b34482231") + (property "Reference" "R16" + (at 160.02 43.1801 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "1k" + (at 160.02 40.6401 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Resistor_SMD:R_0603_1608Metric" + (at 159.258 41.91 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 157.48 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Resistor" + (at 157.48 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b44d254d-a7a4-4dc1-9247-ca755afd7026") + ) + (pin "2" + (uuid "c33c1feb-ebe9-4dc4-8469-84a6a1b713a8") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "R16") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Device:C") + (at 85.09 168.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "fd158313-948f-4a82-9e08-06983d4b2268") + (property "Reference" "C3" + (at 88.9 167.6399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1uF" + (at 88.9 170.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric" + (at 86.0552 172.72 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 85.09 168.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 85.09 168.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "55782331-1da4-44ed-99a3-034bad651df8") + ) + (pin "1" + (uuid "fbf86d5f-f6ce-4579-a379-cff3abee19f6") + ) + (instances + (project "caliper_esp32" + (path "/0f19020f-b69e-4e2c-a951-2e6ffe820141" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) +) diff --git a/dw01.kicad_sym b/dw01.kicad_sym new file mode 100644 index 0000000..72a50e0 --- /dev/null +++ b/dw01.kicad_sym @@ -0,0 +1,48 @@ +(kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) + (symbol "DW01" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "DW01" (id 1) (at 11.43 10.16 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (id 2) (at 5.08 -7.62 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "DW01_0_1" + (rectangle (start 0 8.89) (end 13.97 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "DW01_1_1" + (pin input line (at 8.89 -2.54 90) (length 2.54) + (name "OD" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 3.81 0) (length 2.54) + (name "CS" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 5.08 -2.54 90) (length 2.54) + (name "OC" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 7.62 0) (length 2.54) + (name "TD" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 16.51 7.62 180) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 16.51 3.81 180) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) +) diff --git a/fs8205.kicad_sym b/fs8205.kicad_sym new file mode 100644 index 0000000..88d5e39 --- /dev/null +++ b/fs8205.kicad_sym @@ -0,0 +1,51 @@ +(kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) + (symbol "FS8205A" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "FS8205A" (id 1) (at -1.27 8.89 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" (id 2) (at 3.81 -12.7 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "FS8205A" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "FS8205A_0_1" + (rectangle (start 0 11.43) (end 16.51 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "FS8205A_1_1" + (pin input line (at 7.62 13.97 270) (length 2.54) + (name "S1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 -2.54 90) (length 2.54) + (name "D1D2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 7.62 -2.54 90) (length 2.54) + (name "S2" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 2.54 -2.54 90) (length 2.54) + (name "G2" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 12.7 13.97 270) (length 2.54) + (name "D1D2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 2.54 13.97 270) (length 2.54) + (name "G1" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) +) diff --git a/res/render.png b/res/render.png new file mode 100644 index 0000000..948b660 Binary files /dev/null and b/res/render.png differ diff --git a/sym-lib-table b/sym-lib-table new file mode 100644 index 0000000..ce9b0cf --- /dev/null +++ b/sym-lib-table @@ -0,0 +1,6 @@ +(sym_lib_table + (version 7) + (lib (name "dw01")(type "KiCad")(uri "${KIPRJMOD}/dw01.kicad_sym")(options "")(descr "")) + (lib (name "tp4056")(type "KiCad")(uri "${KIPRJMOD}/tp4056.kicad_sym")(options "")(descr "")) + (lib (name "fs8205")(type "KiCad")(uri "${KIPRJMOD}/fs8205.kicad_sym")(options "")(descr "")) +) diff --git a/tp4056.kicad_sym b/tp4056.kicad_sym new file mode 100644 index 0000000..dcda25e --- /dev/null +++ b/tp4056.kicad_sym @@ -0,0 +1,63 @@ +(kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) + (symbol "TP4056" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 1.27 13.97 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "TP4056" (id 1) (at 8.89 13.97 0) + (effects (font (size 1.1 1.1))) + ) + (property "Footprint" "Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "TP4056" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TP4056_0_1" + (rectangle (start 0 12.7) (end 12.7 0) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "TP4056_1_1" + (pin input line (at 15.24 5.08 180) (length 2.54) + (name "TEMP" (effects (font (size 1 1)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 15.24 1.27 180) (length 2.54) + (name "PROG" (effects (font (size 1 1)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 6.35 -2.54 90) (length 2.54) + (name "GND" (effects (font (size 1 1)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 11.43 0) (length 2.54) + (name "VCC" (effects (font (size 1 1)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 15.24 11.43 180) (length 2.54) + (name "BAT" (effects (font (size 1 1)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 1.27 0) (length 2.54) + (name "~{STDBY}" (effects (font (size 1 1)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 3.81 0) (length 2.54) + (name "~{CHRG}" (effects (font (size 1 1)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 8.89 0) (length 2.54) + (name "CE" (effects (font (size 1 1)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -2.54 6.35 0) (length 2.54) + (name "PP" (effects (font (size 1 1)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) +)