diff --git a/.claude/skills/kicad-bom-edit/SKILL.md b/.claude/skills/kicad-bom-edit/SKILL.md new file mode 100644 index 0000000..f12f72c --- /dev/null +++ b/.claude/skills/kicad-bom-edit/SKILL.md @@ -0,0 +1,114 @@ +--- +name: kicad-bom-edit +description: Use when adding or editing BOM/part fields (MPN, LCSC, Manufacturer, tolerance, voltage/current ratings, DNP) on KiCad .kicad_sch symbols by hand or script, or when a kicad-cli BOM export is missing parts. Covers safe property insertion, the "malformed property silently drops a whole sheet" pitfall, and the netlist-vs-BOM count verification that catches it. KiCad 7/8/9/10 S-expression schematics. +--- + +# Editing KiCad schematics for BOM + +Adding manufacturer part numbers (MPN), LCSC codes, ratings, etc. to a KiCad +`.kicad_sch` so the BOM can be ordered/assembled (e.g. JLCPCB). **Prefer the +KiCad GUI** (Symbol Fields Table / per-symbol properties) — it can't corrupt the +file. Only hand/script-edit when the GUI isn't available, and then follow this +exactly. + +## How symbols store fields + +Each placed symbol is `(symbol (lib_id ...) (at ...) ... (instances ...))`. +A field is a **property**, a direct child of the symbol: + +``` +(property "MPN" "FNR4018S3R3MT" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects (font (size 1.27 1.27))) +) +``` + +Properties `Reference`, `Value`, `Footprint`, `Datasheet`, `Description` are +mandatory; `MPN`/`LCSC`/`Manufacturer`/`V`/`Type`/`Current`/etc. are custom BOM +fields. Field **names must be unique** within a symbol. `kicad-cli sch export +bom --fields '...'` selects which show up as columns. + +## ⚠️ THE PITFALL: a malformed property silently drops the WHOLE sheet + +New BOM fields must be **siblings** of `Value` (direct children of the symbol) — +NOT nested inside another property. If you accidentally place them *inside* the +`Value` property, `kicad-cli sch export bom` will **silently omit every component +on that sheet** — no warning, exit code 0 — while `kicad-cli sch export netlist` +still parses fine and shows nothing wrong. A whole page of parts (regulators, +connectors…) can vanish from the BOM you send to the fab. + +**Root cause seen in practice:** naive regex insertion. Property indentation +**varies by file** (some use 2 tabs for `(property`, some 1). A regex like +`.*?\n\t\t\t\)` grabs the first 3-tab close — which is the inner `effects`/`font` +close, not the property's own close — so the insert lands *inside* `Value`. + +## Safe insertion (script) + +1. **Match the entire target property block by balanced parens**, keyed on its + unique content (e.g. `Value` = "2.2uH" at a known `(at ...)`), from the + `(property "Value"` line to *its own* closing paren at the property's indent + level. Don't rely on a fixed tab count guessed from another file — detect the + file's actual property indentation first. +2. Insert new `(property ...)` blocks **after** that close, at the **same indent + level** as `Value` (siblings), with children one level deeper. +3. Keep every block paren-balanced (each `(property` / `(effects` / `(font` has + its close). + +Robust pattern (Python) — replace the whole Value block and append siblings: + +```python +import re +src=open(f).read() +# whole L1 Value property: 2-tab property line, 3+tab children, 2-tab close +pat=re.compile(r'\t\t\(property "Value" "2\.2uH"\n(?:\t\t\t.*\n)*?\t\t\)\n') +m=pat.search(src) +def prop(n,v): + return (f'\t\t(property "{n}" "{v}"\n\t\t\t(at 139.7 87.63 0)\n\t\t\t(hide yes)\n' + f'\t\t\t(show_name no)\n\t\t\t(do_not_autoplace no)\n\t\t\t(effects\n\t\t\t\t(font\n' + f'\t\t\t\t\t(size 1.27 1.27)\n\t\t\t\t)\n\t\t\t)\n\t\t)\n') +block=m.group(0).replace('"2.2uH"','"3.3uH"') # keep Value block intact +add=prop("MPN","FNR4018S3R3MT")+prop("LCSC","C167805")+prop("Manufacturer","cjiang") +src=src[:m.start()]+block+add+src[m.end():] +open(f,'w').write(src) +``` + +(Whitespace inside S-expressions is not significant to KiCad — matching indent +is only for legibility and to hit the right closing paren. KiCad rewrites +formatting on its next save.) + +## ✅ ALWAYS verify: netlist component count must equal BOM row count + +This is the check that catches the silent-drop bug. After any schematic edit: + +```bash +kicad-cli sch export netlist --format kicadsexpr -o /tmp/n.net project.kicad_sch +kicad-cli sch export bom --fields 'Reference,Value,MPN,LCSC' -o /tmp/b.csv project.kicad_sch +# count components in each; they MUST match +``` + +Parse the netlist `(components (comp (ref ...)))` for the ref set, and the BOM +CSV first column for its ref set, and print the difference. If the BOM set is +smaller, some sheet was dropped — you have a malformed property. Confirm the +specific row (`grep '"L1"' /tmp/b.csv`) shows its new fields populated. + +## Dual-project-instance sheets + +A sub-sheet that was once its own standalone project (e.g. `Power.kicad_sch` +reused in `re-bba-rb`) has `(instances (project "power" ...) (project +"re-bba-rb" ...))` on each symbol. This is normal, but it makes such sheets +extra-sensitive to malformed properties in BOM export — always run the +count check after editing these. + +## Part selection for JLCPCB / LCSC + +- Fill `MPN`, `Manufacturer`, and the **`LCSC` C-number** (e.g. `C167805`) — the + LCSC code is what JLC assembly needs. Don't invent C-numbers; verify each on + lcsc.com / jlcpcb.com/parts (existence, stock, **Basic vs Extended** — Extended + = small one-time fee). +- For power inductors, record and check **Isat** (saturation ≥ peak current) and + **Irms**; a value/footprint alone isn't enough. +- Match the field-naming already used in the project (this repo uses `V`, + `Type`, `Current`, `MPN`, `LCSC`, `Manufacturer`). diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 407fd65..61c35f9 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -31,4 +31,13 @@ RUN pip install --no-cache-dir -r /tmp/requirements.txt RUN useradd -m -u 1000 -s /bin/bash vscode USER vscode + +# KiCad global library tables (copied from the installed templates) so kicad-cli +# can run the library-parity DRC/ERC checks. Without these, every standard +# footprint/symbol reports "library not configured". KiCad's built-in defaults +# resolve the ${KICAD10_*_DIR} paths inside the templates, so no env vars needed. +RUN mkdir -p /home/vscode/.config/kicad/10.0 \ + && cp /usr/share/kicad/template/fp-lib-table /home/vscode/.config/kicad/10.0/fp-lib-table \ + && cp /usr/share/kicad/template/sym-lib-table /home/vscode/.config/kicad/10.0/sym-lib-table + WORKDIR /workspace diff --git a/.gitignore b/.gitignore index 6e092c9..97875cb 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,9 @@ fp-info-cache *-backups/ _autosave-* .history/ +hardware/re-bba-rb/gerbers +*-bom.csv +*-cpl.csv # Editor / OS cruft .DS_Store diff --git a/exi_bba/bba_top.py b/exi_bba/bba_top.py index 76e2acd..e45116f 100644 --- a/exi_bba/bba_top.py +++ b/exi_bba/bba_top.py @@ -2,7 +2,10 @@ Clock domains ------------- -capture : 54 MHz, from 12 MHz crystal via SB_PLL40_PAD (DIVR=0 DIVF=71 DIVQ=4) +capture : 54 MHz, from 12 MHz oscillator via SB_PLL40_CORE (REFERENCECLK fed + from a global-buffer input pin; DIVR=0 DIVF=71 DIVQ=4). CORE (not + PAD) so the reference clock is not tied to the dedicated PLL pad — it + enters on a clock-capable GBIN pin, leaving board routing free. exi/sync : 24 MHz, from the iCE40UP5K internal SB_HFOSC (÷2, CLKHF_DIV=0b01) Submodule instantiation and signal wiring @@ -119,15 +122,14 @@ class BBATop(Elaboratable): # ~91 MHz on this device; the byte-FIFO read path brings the # integrated capture domain to ~62 MHz, so 54 closes with margin. m.domains += ClockDomain("capture") - platform.lookup(platform.default_clk).attrs["GLOBAL"] = False m.submodules.pll = Instance( - "SB_PLL40_PAD", + "SB_PLL40_CORE", p_FEEDBACK_PATH = "SIMPLE", p_DIVR = 0, p_DIVF = 71, p_DIVQ = 4, p_FILTER_RANGE = 1, - i_PACKAGEPIN = platform.request("clk12", dir="-").io, + i_REFERENCECLK = platform.request("clk12").i, i_RESETB = Const(1, 1), i_BYPASS = Const(0, 1), o_PLLOUTGLOBAL = ClockSignal("capture"), diff --git a/exi_bba/synth.py b/exi_bba/synth.py index de53847..e344113 100644 --- a/exi_bba/synth.py +++ b/exi_bba/synth.py @@ -41,7 +41,7 @@ class IceBreakerPlatform(LatticeICE40Platform): resources = [ Resource("clk12", 0, - Pins("35", dir="i"), + Pins("20", dir="i"), Clock(12e6), Attrs(GLOBAL=True, IO_STANDARD="SB_LVCMOS")), @@ -62,7 +62,7 @@ class IceBreakerPlatform(LatticeICE40Platform): Subsignal("rd_n", Pins("19", dir="o")), Subsignal("wr_n", Pins("26", dir="o")), Subsignal("int_n", Pins("23", dir="i")), - Subsignal("rst_n", Pins("20", dir="o")), + Subsignal("rst_n", Pins("18", dir="o")), Attrs(IO_STANDARD="SB_LVCMOS")), # Bring-up status panel → iCEbreaker ONBOARD parts (dedicated pins, not diff --git a/hardware/HR911105A.kicad_sym b/hardware/HR911105A.kicad_sym index 39e9df8..697ac07 100644 --- a/hardware/HR911105A.kicad_sym +++ b/hardware/HR911105A.kicad_sym @@ -1,1156 +1,3885 @@ (kicad_symbol_lib (version 20211014) (generator kicad_symbol_editor) - (symbol "HR911105A" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "J" (id 0) (at -33.1783 36.2409 0) - (effects (font (size 1.27 1.27)) (justify bottom left)) - ) - (property "Value" "HR911105A" (id 1) (at -33.1242 -38.2202 0) - (effects (font (size 1.27 1.27)) (justify bottom left)) - ) - (property "Footprint" "HR911105A:HANRUN_HR911105A" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "MF" "hanrun" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "DESCRIPTION" "DIP RJ45 Connector;" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "PACKAGE" "None" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "PRICE" "None" (id 7) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "Package" "None" (id 8) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "Check_prices" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=eda" (id 9) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "STANDARD" "Manufacturer Recommendation" (id 10) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "PARTREV" "A" (id 11) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "SnapEDA_Link" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=snap" (id 12) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "MP" "HR911105A" (id 13) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "Price" "None" (id 14) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "Availability" "In Stock" (id 15) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "AVAILABILITY" "Unavailable" (id 16) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (property "Description" "\n \n \n \n" (id 17) (at 0 0 0) - (effects (font (size 1.27 1.27)) (justify bottom) hide) - ) - (symbol "HR911105A_0_0" - (polyline - (pts (xy 23.495 32.385) (xy 16.51 32.385)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 16.51 32.385) (xy 16.51 29.845)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 16.51 29.845) (xy 23.495 29.845)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 16.51 29.845) (xy 16.51 4.445)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 16.51 4.445) (xy 15.875 3.81)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 15.875 3.81) (xy 17.145 3.175)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 17.145 3.175) (xy 15.875 2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 15.875 2.54) (xy 17.145 1.905)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 17.145 1.905) (xy 15.875 1.27)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 15.875 1.27) (xy 17.145 0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 17.145 0.635) (xy 15.875 0.0)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 15.875 0.0) (xy 16.51 -0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 16.51 -0.635) (xy 16.51 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 23.495 24.765) (xy 19.05 24.765)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.05 24.765) (xy 19.05 22.225)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.05 22.225) (xy 23.495 22.225)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.05 4.445) (xy 18.415 3.81)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 18.415 3.81) (xy 19.685 3.175)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.685 3.175) (xy 18.415 2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 18.415 2.54) (xy 19.685 1.905)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.685 1.905) (xy 18.415 1.27)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 18.415 1.27) (xy 19.685 0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.685 0.635) (xy 18.415 0.0)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 18.415 0.0) (xy 19.05 -0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.05 -0.635) (xy 19.05 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.05 22.225) (xy 19.05 4.445)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 23.495 27.305) (xy 12.7 27.305)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 12.7 27.305) (xy 12.7 30.48)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 12.7 30.48) (xy 6.985 30.48)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 6.985 30.48) (xy 6.985 27.305)) (stroke (width 0.254)) - ) - (arc (start 6.35 26.67) (mid 6.799 26.856) (end 6.985 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.715 27.305) (mid 5.901 26.856) (end 6.35 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.08 26.67) (mid 5.529 26.856) (end 5.715 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 4.445 27.305) (mid 4.631 26.856) (end 5.08 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.81 26.67) (mid 4.259 26.856) (end 4.445 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.175 27.305) (mid 3.361 26.856) (end 3.81 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 2.54 26.67) (mid 2.989 26.856) (end 3.175 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 1.905 27.305) (mid 2.091 26.856) (end 2.54 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 1.27 26.67) (mid 1.719 26.856) (end 1.905 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 0.635 27.305) (mid 0.821 26.856) (end 1.27 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy 0.635 27.305) (xy 0.635 30.48)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.635 30.48) (xy -7.62 30.48)) (stroke (width 0.254)) - ) - (arc (start -8.255 29.845) (mid -8.069 30.294) (end -7.62 30.48) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 29.21) (mid -8.069 29.396) (end -8.255 29.845) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 28.575) (mid -8.0226 28.9776) (end -7.62 29.21) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 27.94) (mid -8.069 28.126) (end -8.255 28.575) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 27.305) (mid -8.069 27.754) (end -7.62 27.94) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 26.67) (mid -8.069 26.856) (end -8.255 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 26.035) (mid -8.069 26.484) (end -7.62 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 25.4) (mid -8.069 25.586) (end -8.255 26.035) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 24.765) (mid -8.069 25.214) (end -7.62 25.4) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 24.13) (mid -8.069 24.316) (end -8.255 24.765) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 23.495) (mid -8.069 23.944) (end -7.62 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 22.86) (mid -8.069 23.046) (end -8.255 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 22.225) (mid -8.069 22.674) (end -7.62 22.86) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 21.59) (mid -8.069 21.776) (end -8.255 22.225) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 20.955) (mid -8.069 21.404) (end -7.62 21.59) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 20.32) (mid -8.069 20.506) (end -8.255 20.955) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -7.62 20.32) (xy -3.175 20.32)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 20.32) (xy 0.635 20.32)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.635 20.32) (xy 0.635 23.495)) (stroke (width 0.254)) - ) - (arc (start 1.27 24.13) (mid 0.821 23.944) (end 0.635 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 1.905 23.495) (mid 1.719 23.944) (end 1.27 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 2.54 24.13) (mid 2.091 23.944) (end 1.905 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.175 23.495) (mid 2.989 23.944) (end 2.54 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.81 24.13) (mid 3.361 23.944) (end 3.175 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 4.445 23.495) (mid 4.259 23.944) (end 3.81 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.08 24.13) (mid 4.631 23.944) (end 4.445 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.715 23.495) (mid 5.529 23.944) (end 5.08 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 6.35 24.13) (mid 5.901 23.944) (end 5.715 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 6.985 23.495) (mid 6.799 23.944) (end 6.35 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy 6.985 23.495) (xy 6.985 19.685)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.0 26.035) (xy 7.62 26.035)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.0 24.765) (xy 7.62 24.765)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 23.495 19.685) (xy 6.985 19.685)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -8.89 31.115) (xy -8.89 19.685)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -10.16 31.115) (xy -10.16 19.685)) (stroke (width 0.254)) - ) - (arc (start -10.795 20.955) (mid -10.981 20.506) (end -11.43 20.32) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 21.59) (mid -10.981 21.404) (end -10.795 20.955) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 22.225) (mid -11.0274 21.8224) (end -11.43 21.59) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 22.86) (mid -10.981 22.674) (end -10.795 22.225) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 23.495) (mid -10.981 23.046) (end -11.43 22.86) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 24.13) (mid -10.981 23.944) (end -10.795 23.495) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 24.765) (mid -10.981 24.316) (end -11.43 24.13) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 25.4) (mid -10.981 25.214) (end -10.795 24.765) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 26.035) (mid -10.981 25.586) (end -11.43 25.4) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 26.67) (mid -10.981 26.484) (end -10.795 26.035) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 27.305) (mid -10.981 26.856) (end -11.43 26.67) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 27.94) (mid -10.981 27.754) (end -10.795 27.305) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 28.575) (mid -10.981 28.126) (end -11.43 27.94) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 29.21) (mid -10.981 29.024) (end -10.795 28.575) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 29.845) (mid -10.981 29.396) (end -11.43 29.21) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 30.48) (mid -10.981 30.294) (end -10.795 29.845) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -11.43 30.48) (xy -33.02 30.48)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -33.02 20.32) (xy -11.43 20.32)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -11.43 25.4) (xy -33.02 25.4)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 23.495 17.145) (xy 6.985 17.145)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 6.985 17.145) (xy 6.985 14.605)) (stroke (width 0.254)) - ) - (arc (start 6.35 13.97) (mid 6.799 14.156) (end 6.985 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.715 14.605) (mid 5.901 14.156) (end 6.35 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.08 13.97) (mid 5.529 14.156) (end 5.715 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 4.445 14.605) (mid 4.631 14.156) (end 5.08 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.81 13.97) (mid 4.259 14.156) (end 4.445 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.175 14.605) (mid 3.361 14.156) (end 3.81 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 2.54 13.97) (mid 2.989 14.156) (end 3.175 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 1.905 14.605) (mid 2.091 14.156) (end 2.54 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 1.27 13.97) (mid 1.719 14.156) (end 1.905 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 0.635 14.605) (mid 0.821 14.156) (end 1.27 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy 0.635 14.605) (xy 0.635 17.78)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.635 17.78) (xy -3.175 17.78)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 17.78) (xy -7.62 17.78)) (stroke (width 0.254)) - ) - (arc (start -8.255 17.145) (mid -8.069 17.594) (end -7.62 17.78) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 16.51) (mid -8.069 16.696) (end -8.255 17.145) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 15.875) (mid -8.0226 16.2776) (end -7.62 16.51) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 15.24) (mid -8.069 15.426) (end -8.255 15.875) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 14.605) (mid -8.069 15.054) (end -7.62 15.24) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 13.97) (mid -8.069 14.156) (end -8.255 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 13.335) (mid -8.069 13.784) (end -7.62 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 12.7) (mid -8.069 12.886) (end -8.255 13.335) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 12.065) (mid -8.069 12.514) (end -7.62 12.7) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 11.43) (mid -8.069 11.616) (end -8.255 12.065) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 10.795) (mid -8.069 11.244) (end -7.62 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 10.16) (mid -8.069 10.346) (end -8.255 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 9.525) (mid -8.069 9.974) (end -7.62 10.16) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 8.89) (mid -8.069 9.076) (end -8.255 9.525) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -8.255 8.255) (mid -8.069 8.704) (end -7.62 8.89) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -7.62 7.62) (mid -8.069 7.806) (end -8.255 8.255) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -7.62 7.62) (xy -5.715 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.715 7.62) (xy -3.175 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 7.62) (xy 0.635 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.635 7.62) (xy 0.635 10.795)) (stroke (width 0.254)) - ) - (arc (start 1.27 11.43) (mid 0.821 11.244) (end 0.635 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 1.905 10.795) (mid 1.719 11.244) (end 1.27 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 2.54 11.43) (mid 2.091 11.244) (end 1.905 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.175 10.795) (mid 2.989 11.244) (end 2.54 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 3.81 11.43) (mid 3.361 11.244) (end 3.175 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 4.445 10.795) (mid 4.259 11.244) (end 3.81 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.08 11.43) (mid 4.631 11.244) (end 4.445 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 5.715 10.795) (mid 5.529 11.244) (end 5.08 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 6.35 11.43) (mid 5.901 11.244) (end 5.715 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start 6.985 10.795) (mid 6.799 11.244) (end 6.35 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy 6.985 10.795) (xy 6.985 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.0 13.335) (xy 7.62 13.335)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 0.0 12.065) (xy 7.62 12.065)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 23.495 14.605) (xy 12.7 14.605)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 12.7 14.605) (xy 12.7 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 12.7 7.62) (xy 6.985 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -8.89 18.415) (xy -8.89 6.985)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -10.16 18.415) (xy -10.16 6.985)) (stroke (width 0.254)) - ) - (arc (start -10.795 8.255) (mid -10.981 7.806) (end -11.43 7.62) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 8.89) (mid -10.981 8.704) (end -10.795 8.255) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 9.525) (mid -11.0274 9.1224) (end -11.43 8.89) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 10.16) (mid -10.981 9.974) (end -10.795 9.525) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 10.795) (mid -10.981 10.346) (end -11.43 10.16) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 11.43) (mid -10.981 11.244) (end -10.795 10.795) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 12.065) (mid -10.981 11.616) (end -11.43 11.43) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 12.7) (mid -10.981 12.514) (end -10.795 12.065) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 13.335) (mid -10.981 12.886) (end -11.43 12.7) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 13.97) (mid -10.981 13.784) (end -10.795 13.335) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 14.605) (mid -10.981 14.156) (end -11.43 13.97) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 15.24) (mid -10.981 15.054) (end -10.795 14.605) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 15.875) (mid -10.981 15.426) (end -11.43 15.24) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 16.51) (mid -10.981 16.324) (end -10.795 15.875) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -10.795 17.145) (mid -10.981 16.696) (end -11.43 16.51) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -11.43 17.78) (mid -10.981 17.594) (end -10.795 17.145) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -11.43 17.78) (xy -33.02 17.78)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -11.43 7.62) (xy -33.02 7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -7.62 25.4) (xy -2.54 25.4)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -2.54 25.4) (xy -2.54 20.955)) (stroke (width 0.254)) - ) - (arc (start -3.175 20.32) (mid -2.989 20.769) (end -2.54 20.955) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -2.54 19.685) (mid -2.989 19.871) (end -3.175 20.32) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -2.54 19.685) (xy -2.54 18.415)) (stroke (width 0.254)) - ) - (arc (start -3.175 17.78) (mid -2.989 18.229) (end -2.54 18.415) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -2.54 17.145) (mid -2.989 17.331) (end -3.175 17.78) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -2.54 17.145) (xy -2.54 8.255)) (stroke (width 0.254)) - ) - (arc (start -3.175 7.62) (mid -2.989 8.069) (end -2.54 8.255) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -2.54 6.985) (mid -2.989 7.171) (end -3.175 7.62) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -2.54 6.985) (xy -2.54 4.445)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -2.54 4.445) (xy -3.175 3.81)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 3.81) (xy -1.905 3.175)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -1.905 3.175) (xy -3.175 2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 2.54) (xy -1.905 1.905)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -1.905 1.905) (xy -3.175 1.27)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 1.27) (xy -1.905 0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -1.905 0.635) (xy -3.175 0.0)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -3.175 0.0) (xy -2.54 -0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -2.54 -0.635) (xy -2.54 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.08 6.985) (xy -5.08 4.445)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.08 4.445) (xy -5.715 3.81)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.715 3.81) (xy -4.445 3.175)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -4.445 3.175) (xy -5.715 2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.715 2.54) (xy -4.445 1.905)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -4.445 1.905) (xy -5.715 1.27)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.715 1.27) (xy -4.445 0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -4.445 0.635) (xy -5.715 0.0)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.715 0.0) (xy -5.08 -0.635)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.08 -0.635) (xy -5.08 -2.54)) (stroke (width 0.254)) - ) - (arc (start -5.715 7.62) (mid -5.529 8.069) (end -5.08 8.255) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -5.08 6.985) (mid -5.529 7.171) (end -5.715 7.62) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts (xy -5.08 8.255) (xy -5.08 12.7)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.08 12.7) (xy -7.62 12.7)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -33.02 12.7) (xy -11.43 12.7)) (stroke (width 0.254)) - ) - (polyline - (pts (xy 19.05 -2.54) (xy -5.08 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -5.08 -2.54) (xy -15.24 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -15.24 -2.54) (xy -15.24 -3.81)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -15.24 -2.54) (xy -15.24 -1.27)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -15.875 -1.27) (xy -15.875 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -15.875 -2.54) (xy -15.875 -3.81)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -15.875 -2.54) (xy -33.02 -2.54)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -20.32) (xy -29.845 -22.86)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -22.86) (xy -29.845 -25.4)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -25.4) (xy -27.305 -22.86)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -22.86) (xy -28.829 -21.336)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -28.829 -21.336) (xy -29.464 -20.701)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.464 -20.701) (xy -29.845 -20.32)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -20.32) (xy -27.305 -22.86)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -22.86) (xy -27.305 -25.4)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -22.86) (xy -33.02 -22.86)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -22.86) (xy -22.86 -22.86)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.464 -20.701) (xy -27.559 -18.796)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -28.829 -21.336) (xy -26.924 -19.431)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.559 -18.796) (xy -28.448 -19.05)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.559 -18.796) (xy -27.813 -19.685)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -26.924 -19.431) (xy -27.813 -19.685)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -26.924 -19.431) (xy -27.178 -20.32)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -12.7) (xy -29.845 -10.16)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -10.16) (xy -29.845 -7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -7.62) (xy -27.305 -10.16)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -10.16) (xy -28.829 -11.684)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -28.829 -11.684) (xy -29.464 -12.319)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.464 -12.319) (xy -29.845 -12.7)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -12.7) (xy -27.305 -10.16)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -10.16) (xy -27.305 -7.62)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.845 -10.16) (xy -33.02 -10.16)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.305 -10.16) (xy -22.86 -10.16)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -29.464 -12.319) (xy -27.559 -14.224)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -28.829 -11.684) (xy -26.924 -13.589)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.559 -14.224) (xy -28.448 -13.97)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -27.559 -14.224) (xy -27.813 -13.335)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -26.924 -13.589) (xy -27.813 -13.335)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -26.924 -13.589) (xy -27.178 -12.7)) (stroke (width 0.254)) - ) - (circle (center 19.05 22.225) (radius 0.1796) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center 16.51 29.845) (radius 0.1796) - (stroke (width 0.254)) (fill (type none)) - ) - (text "J8" (at 27.4681 31.9296 0) - (effects (font (size 1.27768 1.27768)) (justify bottom left)) - ) - (text "J7" (at 27.469 29.3671 0) - (effects (font (size 1.27781 1.27781)) (justify bottom left)) - ) - (text "J6 RX-" (at 27.4683 26.8166 0) - (effects (font (size 1.27772 1.27772)) (justify bottom left)) - ) - (text "J5" (at 27.4773 24.265 0) - (effects (font (size 1.27818 1.27818)) (justify bottom left)) - ) - (text "J4" (at 27.4594 21.7053 0) - (effects (font (size 1.27725 1.27725)) (justify bottom left)) - ) - (text "J3 RX+" (at 27.4566 19.1518 0) - (effects (font (size 1.27708 1.27708)) (justify bottom left)) - ) - (text "J2 TX-" (at 27.4571 16.5812 0) - (effects (font (size 1.27726 1.27726)) (justify bottom left)) - ) - (text "J1 TX+" (at 27.4391 14.0069 0) - (effects (font (size 1.27652 1.27652)) (justify bottom left)) - ) - (text "Yellow LED" (at -25.5352 -21.705 0) - (effects (font (size 1.27913 1.27913)) (justify bottom left)) - ) - (text "Green LED" (at -25.4919 -8.92218 0) - (effects (font (size 1.27572 1.27572)) (justify bottom left)) - ) - (text "75ohm" (at 21.6925 -0.655166 900) - (effects (font (size 1.27602 1.27602)) (justify bottom left)) - ) - (text "75ohm" (at 15.335 -0.661764 900) - (effects (font (size 1.27793 1.27793)) (justify bottom left)) - ) - (text "75ohm" (at 0.0 -0.667329 900) - (effects (font (size 1.27579 1.27579)) (justify bottom left)) - ) - (text "75ohm" (at -6.39002 -0.65492 900) - (effects (font (size 1.27801 1.27801)) (justify bottom left)) - ) - (text "1000pF" (at -18.5009 1.24181 0) - (effects (font (size 1.27592 1.27592)) (justify bottom left)) - ) - (text "2KV" (at -17.2312 -0.671995 0) - (effects (font (size 1.27638 1.27638)) (justify bottom left)) - ) - (rectangle (start 22.9195 31.8326) (end 26.67 33.02) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 22.9894 29.3755) (end 26.67 30.48) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 22.895 26.7109) (end 26.67 27.94) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 22.9642 24.24) (end 26.67 25.4) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 22.9856 21.7087) (end 26.67 22.86) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 22.9601 19.1332) (end 26.67 20.32) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 23.0037 16.6138) (end 26.67 17.78) - (stroke (width 0.1)) (fill (type outline)) - ) - (rectangle (start 22.9148 14.0035) (end 26.67 15.24) - (stroke (width 0.1)) (fill (type outline)) - ) - (circle (center -5.08 -2.54) (radius 0.1778) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -2.54 -2.54) (radius 0.1778) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center 16.51 -2.54) (radius 0.1778) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -12.065 29.845) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -12.065 24.765) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -12.065 17.145) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -12.065 12.065) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -6.985 29.845) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -6.985 24.765) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -6.985 17.145) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center -6.985 12.065) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center 1.27 27.94) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center 1.27 22.86) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center 1.27 15.24) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (circle (center 1.27 10.16) (radius 0.1524) - (stroke (width 0.254)) (fill (type none)) - ) - (text "RD-" (at -32.4987 31.2242 0) - (effects (font (size 1.27446 1.27446)) (justify bottom left)) - ) - (text "P5" (at -32.5348 26.1555 0) - (effects (font (size 1.27587 1.27587)) (justify bottom left)) - ) - (text "RD+" (at -32.4935 21.0252 0) - (effects (font (size 1.27425 1.27425)) (justify bottom left)) - ) - (text "TD-" (at -32.5142 18.4885 0) - (effects (font (size 1.27506 1.27506)) (justify bottom left)) - ) - (text "P4" (at -32.5444 13.4006 0) - (effects (font (size 1.27625 1.27625)) (justify bottom left)) - ) - (text "TD+" (at -32.5695 8.30204 0) - (effects (font (size 1.27724 1.27724)) (justify bottom left)) - ) - (text "GND" (at -32.5483 -1.9146 0) - (effects (font (size 1.2764 1.2764)) (justify bottom left)) - ) - (polyline - (pts (xy -33.02 -15.24) (xy -22.86 -15.24)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -22.86 -15.24) (xy -22.86 -10.16)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -33.02 -27.94) (xy -22.86 -27.94)) (stroke (width 0.254)) - ) - (polyline - (pts (xy -22.86 -27.94) (xy -22.86 -22.86)) (stroke (width 0.254)) - ) - (rectangle (start -33.02 -35.56) (end 33.02 35.56) - (stroke (width 0.254)) (fill (type background)) - ) - (pin passive line (at -38.1 -10.16 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "9" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 -15.24 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "10" - (effects (font (size 1.016 1.016))) - ) - ) - (pin power_in line (at -38.1 -2.54 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "8" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 12.7 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "4" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 25.4 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "5" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 20.32 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "3" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 30.48 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "6" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 -33.02 0) (length 5.08) - (name "SHIELD" - (effects (font (size 1.016 1.016))) - ) - (number "15" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 -33.02 0) (length 5.08) hide - (name "SHIELD" - (effects (font (size 1.016 1.016))) - ) - (number "16" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 7.62 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "1" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 17.78 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "2" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 -22.86 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "12" - (effects (font (size 1.016 1.016))) - ) - ) - (pin passive line (at -38.1 -27.94 0) (length 5.08) - (name "~" - (effects (font (size 1.016 1.016))) - ) - (number "11" - (effects (font (size 1.016 1.016))) - ) - ) - ) - ) + (symbol "HR911105A" + (pin_names + (offset 1.016) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "J" + (at -33.1783 36.2409 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Value" "HR911105A" + (at -33.1242 -38.2202 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + ) + (property "Footprint" "hardware:HANRUN_HR911105A" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MF" "hanrun" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "PACKAGE" "None" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "PRICE" "None" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Package" "None" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=eda" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "STANDARD" "Manufacturer Recommendation" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "PARTREV" "A" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=snap" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MP" "HR911105A" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Price" "None" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Availability" "In Stock" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "AVAILABILITY" "Unavailable" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (symbol "HR911105A_0_0" + (polyline + (pts + (xy -33.02 20.32) (xy -11.43 20.32) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -33.02 12.7) (xy -11.43 12.7) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -33.02 -15.24) (xy -22.86 -15.24) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -33.02 -27.94) (xy -22.86 -27.94) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -33.02 -35.56) + (end 33.02 35.56) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -29.845 -7.62) (xy -27.305 -10.16) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -10.16) (xy -33.02 -10.16) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -10.16) (xy -29.845 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -12.7) (xy -29.845 -10.16) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -20.32) (xy -29.845 -22.86) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -22.86) (xy -33.02 -22.86) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -22.86) (xy -29.845 -25.4) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.845 -25.4) (xy -27.305 -22.86) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.464 -12.319) (xy -29.845 -12.7) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.464 -12.319) (xy -27.559 -14.224) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.464 -20.701) (xy -29.845 -20.32) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -29.464 -20.701) (xy -27.559 -18.796) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -28.829 -11.684) (xy -29.464 -12.319) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -28.829 -11.684) (xy -26.924 -13.589) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -28.829 -21.336) (xy -29.464 -20.701) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -28.829 -21.336) (xy -26.924 -19.431) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.559 -14.224) (xy -28.448 -13.97) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.559 -14.224) (xy -27.813 -13.335) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.559 -18.796) (xy -28.448 -19.05) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.559 -18.796) (xy -27.813 -19.685) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -10.16) (xy -28.829 -11.684) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -10.16) (xy -27.305 -7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -10.16) (xy -22.86 -10.16) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -12.7) (xy -27.305 -10.16) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -20.32) (xy -27.305 -22.86) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -22.86) (xy -28.829 -21.336) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -22.86) (xy -27.305 -25.4) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -27.305 -22.86) (xy -22.86 -22.86) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -26.924 -13.589) (xy -27.813 -13.335) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -26.924 -13.589) (xy -27.178 -12.7) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -26.924 -19.431) (xy -27.813 -19.685) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -26.924 -19.431) (xy -27.178 -20.32) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -22.86 -15.24) (xy -22.86 -10.16) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -22.86 -27.94) (xy -22.86 -22.86) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.875 -1.27) (xy -15.875 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.875 -2.54) (xy -33.02 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.875 -2.54) (xy -15.875 -3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.24 -2.54) (xy -15.24 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -15.24 -2.54) (xy -15.24 -3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -12.065 29.845) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -12.065 24.765) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -12.065 17.145) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -12.065 12.065) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 22.225) + (mid -11.0274 21.8224) + (end -11.43 21.59) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 9.525) + (mid -11.0274 9.1224) + (end -11.43 8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 30.48) (xy -33.02 30.48) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 30.48) + (mid -10.981 30.294) + (end -10.795 29.845) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 29.845) + (mid -10.981 29.396) + (end -11.43 29.21) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 29.21) + (mid -10.981 29.024) + (end -10.795 28.575) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 28.575) + (mid -10.981 28.126) + (end -11.43 27.94) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 27.94) + (mid -10.981 27.754) + (end -10.795 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 27.305) + (mid -10.981 26.856) + (end -11.43 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 26.67) + (mid -10.981 26.484) + (end -10.795 26.035) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 26.035) + (mid -10.981 25.586) + (end -11.43 25.4) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 25.4) (xy -33.02 25.4) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 25.4) + (mid -10.981 25.214) + (end -10.795 24.765) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 24.765) + (mid -10.981 24.316) + (end -11.43 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 24.13) + (mid -10.981 23.944) + (end -10.795 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 23.495) + (mid -10.981 23.046) + (end -11.43 22.86) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 22.86) + (mid -10.981 22.674) + (end -10.795 22.225) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 21.59) + (mid -10.981 21.404) + (end -10.795 20.955) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 20.955) + (mid -10.981 20.506) + (end -11.43 20.32) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 17.78) (xy -33.02 17.78) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 17.78) + (mid -10.981 17.594) + (end -10.795 17.145) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 17.145) + (mid -10.981 16.696) + (end -11.43 16.51) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 16.51) + (mid -10.981 16.324) + (end -10.795 15.875) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 15.875) + (mid -10.981 15.426) + (end -11.43 15.24) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 15.24) + (mid -10.981 15.054) + (end -10.795 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 14.605) + (mid -10.981 14.156) + (end -11.43 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 13.97) + (mid -10.981 13.784) + (end -10.795 13.335) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 13.335) + (mid -10.981 12.886) + (end -11.43 12.7) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 12.7) + (mid -10.981 12.514) + (end -10.795 12.065) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 12.065) + (mid -10.981 11.616) + (end -11.43 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 11.43) + (mid -10.981 11.244) + (end -10.795 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 10.795) + (mid -10.981 10.346) + (end -11.43 10.16) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 10.16) + (mid -10.981 9.974) + (end -10.795 9.525) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -11.43 8.89) + (mid -10.981 8.704) + (end -10.795 8.255) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -10.795 8.255) + (mid -10.981 7.806) + (end -11.43 7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -11.43 7.62) (xy -33.02 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 31.115) (xy -10.16 19.685) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -10.16 18.415) (xy -10.16 6.985) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.89 31.115) (xy -8.89 19.685) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -8.89 18.415) (xy -8.89 6.985) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 29.845) + (mid -8.069 30.294) + (end -7.62 30.48) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 29.21) + (mid -8.069 29.396) + (end -8.255 29.845) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 27.94) + (mid -8.069 28.126) + (end -8.255 28.575) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 27.305) + (mid -8.069 27.754) + (end -7.62 27.94) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 26.67) + (mid -8.069 26.856) + (end -8.255 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 26.035) + (mid -8.069 26.484) + (end -7.62 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 25.4) + (mid -8.069 25.586) + (end -8.255 26.035) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 25.4) (xy -2.54 25.4) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 24.765) + (mid -8.069 25.214) + (end -7.62 25.4) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 24.13) + (mid -8.069 24.316) + (end -8.255 24.765) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 23.495) + (mid -8.069 23.944) + (end -7.62 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 22.86) + (mid -8.069 23.046) + (end -8.255 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 22.225) + (mid -8.069 22.674) + (end -7.62 22.86) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 21.59) + (mid -8.069 21.776) + (end -8.255 22.225) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 20.955) + (mid -8.069 21.404) + (end -7.62 21.59) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 20.32) + (mid -8.069 20.506) + (end -8.255 20.955) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 20.32) (xy -3.175 20.32) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 17.145) + (mid -8.069 17.594) + (end -7.62 17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 16.51) + (mid -8.069 16.696) + (end -8.255 17.145) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 15.24) + (mid -8.069 15.426) + (end -8.255 15.875) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 14.605) + (mid -8.069 15.054) + (end -7.62 15.24) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 13.97) + (mid -8.069 14.156) + (end -8.255 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 13.335) + (mid -8.069 13.784) + (end -7.62 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 12.7) + (mid -8.069 12.886) + (end -8.255 13.335) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 12.065) + (mid -8.069 12.514) + (end -7.62 12.7) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 11.43) + (mid -8.069 11.616) + (end -8.255 12.065) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 10.795) + (mid -8.069 11.244) + (end -7.62 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 10.16) + (mid -8.069 10.346) + (end -8.255 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 9.525) + (mid -8.069 9.974) + (end -7.62 10.16) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 8.89) + (mid -8.069 9.076) + (end -8.255 9.525) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 8.255) + (mid -8.069 8.704) + (end -7.62 8.89) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 7.62) + (mid -8.069 7.806) + (end -8.255 8.255) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -7.62 7.62) (xy -5.715 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 28.575) + (mid -8.0226 28.9776) + (end -7.62 29.21) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -8.255 15.875) + (mid -8.0226 16.2776) + (end -7.62 16.51) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -6.985 29.845) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -6.985 24.765) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -6.985 17.145) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -6.985 12.065) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.715 7.62) (xy -3.175 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.715 3.81) (xy -4.445 3.175) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.715 2.54) (xy -4.445 1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.715 1.27) (xy -4.445 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.715 0) (xy -5.08 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 12.7) (xy -7.62 12.7) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 8.255) (xy -5.08 12.7) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -5.715 7.62) + (mid -5.529 8.069) + (end -5.08 8.255) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -5.08 6.985) + (mid -5.529 7.171) + (end -5.715 7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 6.985) (xy -5.08 4.445) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 4.445) (xy -5.715 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -0.635) (xy -5.08 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -5.08 -2.54) + (radius 0.1778) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -2.54) (xy -15.24 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.445 3.175) (xy -5.715 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.445 1.905) (xy -5.715 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -4.445 0.635) (xy -5.715 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 20.32) (xy 0.635 20.32) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 17.78) (xy -7.62 17.78) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 7.62) (xy 0.635 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 3.81) (xy -1.905 3.175) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 2.54) (xy -1.905 1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 1.27) (xy -1.905 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.175 0) (xy -2.54 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 25.4) (xy -2.54 20.955) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -3.175 20.32) + (mid -2.989 20.769) + (end -2.54 20.955) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 19.685) + (mid -2.989 19.871) + (end -3.175 20.32) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 19.685) (xy -2.54 18.415) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -3.175 17.78) + (mid -2.989 18.229) + (end -2.54 18.415) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 17.145) + (mid -2.989 17.331) + (end -3.175 17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 17.145) (xy -2.54 8.255) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -3.175 7.62) + (mid -2.989 8.069) + (end -2.54 8.255) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -2.54 6.985) + (mid -2.989 7.171) + (end -3.175 7.62) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 6.985) (xy -2.54 4.445) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 4.445) (xy -3.175 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -0.635) (xy -2.54 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.54 -2.54) + (radius 0.1778) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 3.175) (xy -3.175 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 1.905) (xy -3.175 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 0.635) (xy -3.175 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 26.035) (xy 7.62 26.035) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 24.765) (xy 7.62 24.765) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 13.335) (xy 7.62 13.335) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 12.065) (xy 7.62 12.065) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 30.48) (xy -7.62 30.48) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 27.305) (xy 0.635 30.48) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 20.32) (xy 0.635 23.495) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 17.78) (xy -3.175 17.78) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 14.605) (xy 0.635 17.78) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 7.62) (xy 0.635 10.795) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.27 27.94) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 26.67) + (mid 0.821 26.856) + (end 0.635 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.905 27.305) + (mid 1.719 26.856) + (end 1.27 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.635 23.495) + (mid 0.821 23.944) + (end 1.27 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 24.13) + (mid 1.719 23.944) + (end 1.905 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.27 22.86) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.27 15.24) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 13.97) + (mid 0.821 14.156) + (end 0.635 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.905 14.605) + (mid 1.719 14.156) + (end 1.27 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0.635 10.795) + (mid 0.821 11.244) + (end 1.27 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.27 11.43) + (mid 1.719 11.244) + (end 1.905 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 1.27 10.16) + (radius 0.1524) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 2.54 26.67) + (mid 2.091 26.856) + (end 1.905 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.175 27.305) + (mid 2.989 26.856) + (end 2.54 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.905 23.495) + (mid 2.091 23.944) + (end 2.54 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 2.54 24.13) + (mid 2.989 23.944) + (end 3.175 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 2.54 13.97) + (mid 2.091 14.156) + (end 1.905 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.175 14.605) + (mid 2.989 14.156) + (end 2.54 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 1.905 10.795) + (mid 2.091 11.244) + (end 2.54 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 2.54 11.43) + (mid 2.989 11.244) + (end 3.175 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 26.67) + (mid 3.361 26.856) + (end 3.175 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 4.445 27.305) + (mid 4.259 26.856) + (end 3.81 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.175 23.495) + (mid 3.361 23.944) + (end 3.81 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 24.13) + (mid 4.259 23.944) + (end 4.445 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 13.97) + (mid 3.361 14.156) + (end 3.175 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 4.445 14.605) + (mid 4.259 14.156) + (end 3.81 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.175 10.795) + (mid 3.361 11.244) + (end 3.81 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 3.81 11.43) + (mid 4.259 11.244) + (end 4.445 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.715 27.305) + (mid 5.5273 26.8592) + (end 5.08 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.715 14.605) + (mid 5.5273 14.1592) + (end 5.08 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.08 26.67) + (mid 4.631 26.856) + (end 4.445 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.08 24.13) + (mid 5.529 23.944) + (end 5.715 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.08 13.97) + (mid 4.631 14.156) + (end 4.445 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.08 11.43) + (mid 5.529 11.244) + (end 5.715 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 4.445 23.495) + (mid 4.6327 23.9408) + (end 5.08 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 4.445 10.795) + (mid 4.6327 11.2408) + (end 5.08 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 6.985 27.305) + (mid 6.7973 26.8592) + (end 6.35 26.67) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 6.985 14.605) + (mid 6.7973 14.1592) + (end 6.35 13.97) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 6.35 26.67) + (mid 5.901 26.856) + (end 5.715 27.305) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 6.35 24.13) + (mid 6.799 23.944) + (end 6.985 23.495) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 6.35 13.97) + (mid 5.901 14.156) + (end 5.715 14.605) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 6.35 11.43) + (mid 6.799 11.244) + (end 6.985 10.795) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.715 23.495) + (mid 5.9027 23.9408) + (end 6.35 24.13) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 5.715 10.795) + (mid 5.9027 11.2408) + (end 6.35 11.43) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.985 30.48) (xy 6.985 27.305) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.985 23.495) (xy 6.985 19.685) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.985 17.145) (xy 6.985 14.605) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.985 10.795) (xy 6.985 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 30.48) (xy 6.985 30.48) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 27.305) (xy 12.7 30.48) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 14.605) (xy 12.7 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 12.7 7.62) (xy 6.985 7.62) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.875 3.81) (xy 17.145 3.175) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.875 2.54) (xy 17.145 1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.875 1.27) (xy 17.145 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 15.875 0) (xy 16.51 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 16.51 32.385) (xy 16.51 29.845) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 16.51 29.845) (xy 16.51 4.445) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 16.51 29.845) (xy 23.495 29.845) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 16.51 29.845) + (radius 0.1796) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 16.51 4.445) (xy 15.875 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 16.51 -0.635) (xy 16.51 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 16.51 -2.54) + (radius 0.1778) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 17.145 3.175) (xy 15.875 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 17.145 1.905) (xy 15.875 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 17.145 0.635) (xy 15.875 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 18.415 3.81) (xy 19.685 3.175) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 18.415 2.54) (xy 19.685 1.905) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 18.415 1.27) (xy 19.685 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 18.415 0) (xy 19.05 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.05 24.765) (xy 19.05 22.225) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.05 22.225) (xy 19.05 4.445) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.05 22.225) (xy 23.495 22.225) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 19.05 22.225) + (radius 0.1796) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.05 4.445) (xy 18.415 3.81) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.05 -0.635) (xy 19.05 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.05 -2.54) (xy -5.08 -2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.685 3.175) (xy 18.415 2.54) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.685 1.905) (xy 18.415 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 19.685 0.635) (xy 18.415 0) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 22.895 26.7109) + (end 26.67 27.94) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 22.9148 14.0035) + (end 26.67 15.24) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 22.9195 31.8326) + (end 26.67 33.02) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 22.9601 19.1332) + (end 26.67 20.32) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 22.9642 24.24) + (end 26.67 25.4) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 22.9856 21.7087) + (end 26.67 22.86) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 22.9894 29.3755) + (end 26.67 30.48) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 23.0037 16.6138) + (end 26.67 17.78) + (stroke + (width 0.1) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 23.495 32.385) (xy 16.51 32.385) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 23.495 27.305) (xy 12.7 27.305) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 23.495 24.765) (xy 19.05 24.765) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 23.495 19.685) (xy 6.985 19.685) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 23.495 17.145) (xy 6.985 17.145) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 23.495 14.605) (xy 12.7 14.605) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (text "TD+" + (at -32.5695 8.302 0) + (effects + (font + (size 1.2772 1.2772) + ) + (justify left bottom) + ) + ) + (text "GND" + (at -32.5483 -1.9146 0) + (effects + (font + (size 1.2764 1.2764) + ) + (justify left bottom) + ) + ) + (text "P4" + (at -32.5444 13.4006 0) + (effects + (font + (size 1.2763 1.2763) + ) + (justify left bottom) + ) + ) + (text "P5" + (at -32.5348 26.1555 0) + (effects + (font + (size 1.2759 1.2759) + ) + (justify left bottom) + ) + ) + (text "TD-" + (at -32.5142 18.4885 0) + (effects + (font + (size 1.2751 1.2751) + ) + (justify left bottom) + ) + ) + (text "RD-" + (at -32.4987 31.2242 0) + (effects + (font + (size 1.2745 1.2745) + ) + (justify left bottom) + ) + ) + (text "RD+" + (at -32.4935 21.0252 0) + (effects + (font + (size 1.2743 1.2743) + ) + (justify left bottom) + ) + ) + (text "Yellow LED" + (at -25.5352 -21.705 0) + (effects + (font + (size 1.2791 1.2791) + ) + (justify left bottom) + ) + ) + (text "Green LED" + (at -25.4919 -8.9222 0) + (effects + (font + (size 1.2757 1.2757) + ) + (justify left bottom) + ) + ) + (text "1000pF" + (at -18.5009 1.2418 0) + (effects + (font + (size 1.2759 1.2759) + ) + (justify left bottom) + ) + ) + (text "2KV" + (at -17.2312 -0.672 0) + (effects + (font + (size 1.2764 1.2764) + ) + (justify left bottom) + ) + ) + (text "75ohm" + (at -6.39 -0.6549 900) + (effects + (font + (size 1.278 1.278) + ) + (justify left bottom) + ) + ) + (text "75ohm" + (at 0 -0.6673 900) + (effects + (font + (size 1.2758 1.2758) + ) + (justify left bottom) + ) + ) + (text "75ohm" + (at 15.335 -0.6618 900) + (effects + (font + (size 1.2779 1.2779) + ) + (justify left bottom) + ) + ) + (text "75ohm" + (at 21.6925 -0.6552 900) + (effects + (font + (size 1.276 1.276) + ) + (justify left bottom) + ) + ) + (text "J1 TX+" + (at 27.4391 14.0069 0) + (effects + (font + (size 1.2765 1.2765) + ) + (justify left bottom) + ) + ) + (text "J3 RX+" + (at 27.4566 19.1518 0) + (effects + (font + (size 1.2771 1.2771) + ) + (justify left bottom) + ) + ) + (text "J2 TX-" + (at 27.4571 16.5812 0) + (effects + (font + (size 1.2773 1.2773) + ) + (justify left bottom) + ) + ) + (text "J4" + (at 27.4594 21.7053 0) + (effects + (font + (size 1.2773 1.2773) + ) + (justify left bottom) + ) + ) + (text "J8" + (at 27.4681 31.9296 0) + (effects + (font + (size 1.2777 1.2777) + ) + (justify left bottom) + ) + ) + (text "J6 RX-" + (at 27.4683 26.8166 0) + (effects + (font + (size 1.2777 1.2777) + ) + (justify left bottom) + ) + ) + (text "J7" + (at 27.469 29.3671 0) + (effects + (font + (size 1.2778 1.2778) + ) + (justify left bottom) + ) + ) + (text "J5" + (at 27.4773 24.265 0) + (effects + (font + (size 1.2782 1.2782) + ) + (justify left bottom) + ) + ) + (pin passive line + (at -38.1 7.62 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "1" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 17.78 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "2" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 20.32 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "3" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 12.7 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "4" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 25.4 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "5" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 30.48 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "6" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin power_in line + (at -38.1 -2.54 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "8" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 -10.16 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "9" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 -15.24 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "10" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 -27.94 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "11" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 -22.86 0) + (length 5.08) + (name "" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "12" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 -33.02 0) + (length 5.08) + (name "SHIELD" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "15" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + (pin passive line + (at -38.1 -33.02 0) + (length 5.08) + (hide yes) + (name "SHIELD" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + (number "16" + (effects + (font + (size 1.016 1.016) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) ) \ No newline at end of file diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/gc.pretty/SP1 BoardConnector.kicad_mod b/hardware/SP1 BoardConnector.kicad_mod similarity index 95% rename from hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/gc.pretty/SP1 BoardConnector.kicad_mod rename to hardware/SP1 BoardConnector.kicad_mod index 73eec27..7e792af 100644 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/gc.pretty/SP1 BoardConnector.kicad_mod +++ b/hardware/SP1 BoardConnector.kicad_mod @@ -7,7 +7,7 @@ (at 0 -4.5 0) (unlocked yes) (layer "F.SilkS") - (uuid "c46ae6a3-2d2f-46bc-a737-e78ed0c07f3e") + (uuid "917a9844-9f3a-4c94-80e8-8d354a4083a8") (effects (font (size 1 1) @@ -19,7 +19,7 @@ (at 0 1 0) (unlocked yes) (layer "F.Fab") - (uuid "3461c71a-c46f-4810-ae09-08ec5ca1d1cc") + (uuid "2c5be931-9722-41ff-9fd9-0c6278ebec77") (effects (font (size 1 1) @@ -32,7 +32,7 @@ (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "a3844c29-105c-4f8c-a6e8-4df990e08a1f") + (uuid "d81ac225-7558-4cfe-88bf-1696c7a12cd4") (effects (font (size 1 1) @@ -45,7 +45,7 @@ (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "272fbb69-9f5f-42a4-b05b-36c2fcb45dff") + (uuid "f01d2e45-e29f-4513-a1a9-6b2973a1d3f4") (effects (font (size 1 1) @@ -166,6 +166,7 @@ (at 12 -4.2) (size 1.5 2) (layers "F.Cu" "F.Mask" "F.Paste") + (zone_connect 2) (uuid "b399b7b5-f95d-42af-b6ad-b8005e0e220a") ) (pad "2" thru_hole circle @@ -174,6 +175,7 @@ (drill 1) (layers "*.Cu" "F.Mask") (remove_unused_layers no) + (zone_connect 2) (thermal_bridge_angle 90) (uuid "c081903f-06d0-49e6-8b65-f59af44fab20") ) @@ -303,6 +305,7 @@ (drill 1) (layers "*.Cu" "F.Mask") (remove_unused_layers no) + (zone_connect 2) (thermal_bridge_angle 90) (uuid "e1c2f8b8-87e1-4dad-8d12-a793452e85f2") ) @@ -310,12 +313,14 @@ (at 3 -0.8) (size 1.5 2) (layers "F.Cu" "F.Mask" "F.Paste") + (zone_connect 2) (uuid "2aa85fd9-17bc-4938-9c98-fa1edc53590c") ) (pad "12" smd rect (at 2 -4.2) (size 1.5 2) (layers "F.Cu" "F.Mask" "F.Paste") + (zone_connect 2) (uuid "edc0cec0-2ddb-44d7-8cae-959b588c39d2") ) (pad "12" thru_hole circle @@ -324,6 +329,7 @@ (drill 1) (layers "*.Cu" "F.Mask") (remove_unused_layers no) + (zone_connect 2) (thermal_bridge_angle 90) (uuid "4bb3c4fe-a697-41c9-a6b4-979c545a78c0") ) diff --git a/hardware/TPS562201DDCR.kicad_sym b/hardware/TPS562201DDCR.kicad_sym index eae2124..5bdb2ca 100644 --- a/hardware/TPS562201DDCR.kicad_sym +++ b/hardware/TPS562201DDCR.kicad_sym @@ -7,7 +7,7 @@ (property "Value" "TPS562201DDCR" (id 1) (at -12.7 -16.7 0.0) (effects (font (size 1.27 1.27)) (justify bottom left)) ) - (property "Footprint" "TPS562201DDCR:SOT95P280X110-6N" (id 2) (at 0 0 0) + (property "Footprint" "hardware:SOT95P280X110-6N" (id 2) (at 0 0 0) (effects (font (size 1.27 1.27)) (justify bottom) hide) ) (property "MF" "Texas Instruments" (id 4) (at 0 0 0) diff --git a/hardware/re-bba-rb/Fpga.kicad_sch b/hardware/re-bba-rb/Fpga.kicad_sch index ac553b5..10025fe 100644 --- a/hardware/re-bba-rb/Fpga.kicad_sch +++ b/hardware/re-bba-rb/Fpga.kicad_sch @@ -264,7 +264,7 @@ (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -282,7 +282,7 @@ (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -1570,6 +1570,194 @@ ) (embedded_fonts no) ) + (symbol "Oscillator:ASE-xxxMHz" + (pin_names + (offset 0.254) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (duplicate_pin_numbers_are_jumpers no) + (property "Reference" "Y" + (at -5.08 6.35 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "ASE-xxxMHz" + (at 1.27 -6.35 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" + (at 17.78 -8.89 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "http://www.abracon.com/Oscillators/ASV.pdf" + (at -2.54 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "3.3V CMOS SMD Crystal Clock Oscillator, Abracon" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "3.3V CMOS SMD Crystal Clock Oscillator" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_fp_filters" "Oscillator*SMD*Abracon*ASE*3.2x2.5mm*" + (at 0 0 0) + (show_name no) + (do_not_autoplace no) + (hide yes) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (symbol "ASE-xxxMHz_0_1" + (rectangle + (start -5.08 5.08) + (end 5.08 -5.08) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -1.27 -0.762) (xy -1.016 -0.762) (xy -1.016 0.762) (xy -0.508 0.762) (xy -0.508 -0.762) (xy 0 -0.762) + (xy 0 0.762) (xy 0.508 0.762) (xy 0.508 -0.762) (xy 0.762 -0.762) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "ASE-xxxMHz_1_1" + (pin input line + (at -7.62 0 0) + (length 2.54) + (name "EN" + (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 output line + (at 7.62 0 180) + (length 2.54) + (name "OUT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 7.62 270) + (length 2.54) + (name "Vdd" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) (symbol "Oscillator:SiT2001" (pin_names (offset 1.016) @@ -2025,16 +2213,6 @@ ) (uuid "286daa84-5a20-4e12-b681-27f7cb8c48c2") ) - (wire - (pts - (xy 184.15 93.98) (xy 186.69 93.98) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2c7ccff3-5148-486f-bc2d-43d664ffb07a") - ) (wire (pts (xy 123.19 29.21) (xy 123.19 38.1) @@ -2057,7 +2235,7 @@ ) (wire (pts - (xy 185.42 130.81) (xy 187.96 130.81) + (xy 185.42 132.08) (xy 187.96 132.08) ) (stroke (width 0) @@ -2067,7 +2245,7 @@ ) (wire (pts - (xy 195.58 140.97) (xy 195.58 138.43) + (xy 195.58 140.97) (xy 195.58 139.7) ) (stroke (width 0) @@ -2365,6 +2543,16 @@ ) (uuid "87034ff6-d5a3-4c6c-9f50-e2b28e7817a2") ) + (wire + (pts + (xy 166.37 96.52) (xy 176.53 96.52) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8c07416b-1802-4117-9072-8d2e2d769a64") + ) (wire (pts (xy 39.37 50.8) (xy 41.91 50.8) @@ -2395,6 +2583,16 @@ ) (uuid "94ea7ac6-4a0a-465b-9cab-43d2f33e5190") ) + (wire + (pts + (xy 166.37 93.98) (xy 168.91 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "99568f33-12b8-40a2-8433-c3c6eab0f28a") + ) (wire (pts (xy 39.37 143.51) (xy 41.91 143.51) @@ -2407,7 +2605,7 @@ ) (wire (pts - (xy 195.58 123.19) (xy 195.58 125.73) + (xy 195.58 123.19) (xy 195.58 124.46) ) (stroke (width 0) @@ -2475,6 +2673,16 @@ ) (uuid "b1a73295-7d6a-480d-a8a8-92cfe28ea7b4") ) + (wire + (pts + (xy 176.53 93.98) (xy 186.69 93.98) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b2e33525-257a-4304-a72b-404ac6d228a8") + ) (wire (pts (xy 39.37 66.04) (xy 41.91 66.04) @@ -2775,16 +2983,6 @@ ) (uuid "0d15dd4a-8398-49ef-b27b-9f607f3e20b6") ) - (label "3V3" - (at 184.15 96.52 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "0f2eb8a9-4738-4d29-ae42-66126f3b06a7") - ) (label "FLASH_CS" (at 184.15 83.82 180) (effects @@ -2845,6 +3043,16 @@ ) (uuid "5e301351-1d76-4e02-be0d-6e1c16e96187") ) + (label "3V3" + (at 166.37 93.98 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "66ef94b6-9416-4a24-a569-9acc6b688f0f") + ) (label "1V2" (at 106.68 129.54 0) (effects @@ -2856,7 +3064,7 @@ (uuid "79b778e2-0065-4a07-9e15-66c7903f2ac4") ) (label "3V3" - (at 185.42 130.81 180) + (at 185.42 132.08 180) (effects (font (size 1.27 1.27) @@ -2875,6 +3083,16 @@ ) (uuid "b5a97a17-e349-48e4-8c55-4e87804a6727") ) + (label "3V3" + (at 166.37 96.52 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "bc56a5b0-ebde-40e3-98a7-1e1b79dc9458") + ) (label "FLASH_SCK" (at 184.15 86.36 180) (effects @@ -2895,16 +3113,6 @@ ) (uuid "dc05034f-9997-4088-9a47-d27e1c3c7799") ) - (label "3V3" - (at 184.15 93.98 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "e7a31534-9082-41b4-8959-183b00530401") - ) (hierarchical_label "3V3" (shape input) (at 196.85 71.12 90) @@ -3312,7 +3520,7 @@ (justify left) ) ) - (property "Value" "4.7uF" + (property "Value" "10uF" (at 109.22 137.16 0) (show_name no) (do_not_autoplace no) @@ -3344,8 +3552,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 106.68 135.89 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -3354,7 +3563,40 @@ ) ) ) - (property "Type" "X7R" + (property "MPN" "CL10A106KP8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C19702" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Type" "X5R" (at 106.68 135.89 0) (hide yes) (show_name no) @@ -3443,8 +3685,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 140.97 116.84 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -3519,8 +3762,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 129.54 106.68 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -3620,8 +3897,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 111.76 114.3 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -3734,6 +4045,39 @@ ) ) ) + (property "MPN" "W25Q32JVSSIQ" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Winbond" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C179173" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "1" (uuid "0694693b-7575-4d8b-888b-09b3d549ab26") ) @@ -3821,8 +4165,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 58.42 29.21 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -3920,8 +4298,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 120.65 149.86 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -3996,8 +4375,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 200.66 74.93 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4043,6 +4456,130 @@ ) ) ) + (symbol + (lib_id "Device:R") + (at 180.34 96.52 90) + (unit 1) + (body_style 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (dnp no) + (uuid "2edcfebc-4b88-41d8-aeb6-d819daf340ac") + (property "Reference" "R23" + (at 180.34 98.806 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10k" + (at 184.15 98.806 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" + (at 180.34 96.52 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 180.34 96.52 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 180.34 96.52 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 138.43 199.39 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 138.43 199.39 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 138.43 199.39 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Tolerance" "5%" + (at 180.34 96.52 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin "1" + (uuid "33a33ccd-47fa-454e-9e5c-ddde205ce973") + ) + (pin "2" + (uuid "0f71f86c-b50d-4818-884e-f34eaadee49e") + ) + (instances + (project "re-bba-rb" + (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" + (reference "R23") + (unit 1) + ) + ) + ) + ) (symbol (lib_id "Device:C") (at 140.97 106.68 180) @@ -4097,8 +4634,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 140.97 106.68 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4196,8 +4767,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 62.23 109.22 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4270,8 +4842,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 129.54 102.87 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4344,8 +4917,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 140.97 102.87 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4420,8 +4994,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 102.87 41.91 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4510,8 +5118,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 58.42 109.22 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4624,6 +5266,39 @@ ) ) ) + (property "MPN" "ICE40UP5K-SG48I" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Lattice" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C2678152" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "22" (uuid "30c9b1fa-9b7c-4f5f-a7a5-a636e2920feb") ) @@ -4834,8 +5509,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 148.59 118.11 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1000TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25076" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4922,8 +5631,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 204.47 74.93 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -4996,8 +5706,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 196.85 106.68 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5072,8 +5783,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 199.39 123.19 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5171,8 +5916,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 95.25 142.24 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5193,6 +5939,130 @@ ) ) ) + (symbol + (lib_id "Device:R") + (at 172.72 93.98 90) + (unit 1) + (body_style 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (dnp no) + (uuid "82134b94-7df9-47aa-a1a3-2cc47ae2d232") + (property "Reference" "R22" + (at 172.466 96.012 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10k" + (at 176.276 96.012 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" + (at 172.72 93.98 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 172.72 93.98 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 172.72 93.98 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 130.81 196.85 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 130.81 196.85 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 130.81 196.85 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Tolerance" "5%" + (at 172.72 93.98 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin "1" + (uuid "a4fa8c03-f8ab-48a0-b680-bdb1f7a2a96e") + ) + (pin "2" + (uuid "06f5bd3a-aeb4-46c1-a517-bdb15d5df87a") + ) + (instances + (project "re-bba-rb" + (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" + (reference "R22") + (unit 1) + ) + ) + ) + ) (symbol (lib_id "power:GND") (at 106.68 142.24 0) @@ -5245,8 +6115,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 106.68 142.24 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5321,8 +6192,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 139.7 41.91 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5409,8 +6314,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 62.23 29.21 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5485,8 +6391,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 140.97 120.65 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5598,6 +6538,39 @@ ) ) ) + (property "MPN" "ICE40UP5K-SG48I" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Lattice" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C2678152" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "22" (uuid "30c9b1fa-9b7c-4f5f-a7a5-a636e2920fe9") ) @@ -5755,7 +6728,7 @@ ) ) (symbol - (lib_id "Oscillator:SiT2001") + (lib_id "Oscillator:ASE-xxxMHz") (at 195.58 132.08 0) (unit 1) (body_style 1) @@ -5787,7 +6760,7 @@ (justify left) ) ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" + (property "Footprint" "Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (at 195.58 132.08 0) (hide yes) (show_name no) @@ -5798,8 +6771,9 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "http://www.abracon.com/Oscillators/ASV.pdf" (at 195.58 132.08 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5808,8 +6782,64 @@ ) ) ) - (property "Description" "" + (property "Description" "3.3V CMOS SMD Crystal Clock Oscillator, Abracon" (at 195.58 132.08 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "1532H4-12000JWPDTSNL" + (at 202.58 133.58 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C5383163" + (at 202.58 133.58 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "HCI" + (at 202.58 133.58 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "V" "1.8~3.3V" + (at 202.58 133.58 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Type" "XO 12MHz +/-10ppm HCMOS 3225-4P" + (at 202.58 133.58 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5827,7 +6857,7 @@ (pin "3" (uuid "43aee7d5-f014-4261-b841-aeb919c0ab2d") ) - (pin "5" + (pin "4" (uuid "476a3a82-556f-4236-8193-c4bc82705daa") ) (instances @@ -5893,8 +6923,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 95.25 135.89 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL10A475KO8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C19666" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -5994,8 +7058,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 129.54 29.21 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -6093,8 +7191,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 107.95 114.3 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -6167,8 +7266,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 203.2 123.19 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -6243,8 +7343,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 129.54 120.65 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B103KB5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15195" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -6342,8 +7476,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 133.35 29.21 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -6430,6 +7565,39 @@ ) ) ) + (property "MPN" "ICE40UP5K-SG48I" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Lattice" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C2678152" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "22" (uuid "30c9b1fa-9b7c-4f5f-a7a5-a636e2920fea") ) @@ -6638,8 +7806,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 129.54 116.84 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -6725,6 +7894,39 @@ ) ) ) + (property "MPN" "ICE40UP5K-SG48I" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Lattice" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C2678152" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "22" (uuid "9983ece7-e07a-4ddf-90fc-ebd4381ffdcd") ) @@ -6933,8 +8135,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 195.58 140.97 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects diff --git a/hardware/re-bba-rb/Power.kicad_sch b/hardware/re-bba-rb/Power.kicad_sch index 4fb52a4..ea91ec7 100644 --- a/hardware/re-bba-rb/Power.kicad_sch +++ b/hardware/re-bba-rb/Power.kicad_sch @@ -442,7 +442,7 @@ (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -460,7 +460,7 @@ (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -950,7 +950,7 @@ (justify left bottom) ) ) - (property "Footprint" "TPS562201DDCR:SOT95P280X110-6N" + (property "Footprint" "hardware:SOT95P280X110-6N" (at 0 0 0) (show_name no) (do_not_autoplace no) @@ -1994,7 +1994,7 @@ (uuid "ffb6ac39-6c86-4f59-ad05-b5a1374fd30d") ) (label "12V_EXI" - (at 74.93 67.31 0) + (at 71.12 62.23 0) (effects (font (size 1.27 1.27) @@ -2213,7 +2213,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 151.13 91.44 0) (hide yes) (show_name no) @@ -2224,6 +2224,39 @@ ) ) ) + (property "MPN" "CL31A226KAHNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12891" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 151.13 91.44 0) (hide yes) @@ -2235,7 +2268,7 @@ ) ) ) - (property "V" "10V" + (property "V" "25V" (at 151.13 91.44 0) (hide yes) (show_name no) @@ -2316,7 +2349,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 82.55 71.12 0) (hide yes) (show_name no) @@ -2327,6 +2360,39 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 82.55 71.12 0) (hide yes) @@ -2419,7 +2485,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 60.96 26.67 0) (hide yes) (show_name no) @@ -2430,6 +2496,39 @@ ) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 60.96 26.67 0) (hide yes) @@ -2522,7 +2621,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 82.55 27.94 0) (hide yes) (show_name no) @@ -2533,6 +2632,39 @@ ) ) ) + (property "MPN" "0402WGF2003TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25764" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 82.55 27.94 0) (hide yes) @@ -2561,7 +2693,7 @@ ) (symbol (lib_id "Device:C") - (at 74.93 71.12 0) + (at 71.12 66.04 0) (unit 1) (body_style 1) (exclude_from_sim no) @@ -2571,7 +2703,7 @@ (dnp no) (uuid "17d4e916-c91e-4b00-87a8-a49e744912b2") (property "Reference" "C3" - (at 77.47 69.85 0) + (at 73.66 64.77 0) (show_name no) (do_not_autoplace no) (effects @@ -2582,7 +2714,7 @@ ) ) (property "Value" "10uF" - (at 77.47 72.39 0) + (at 73.66 67.31 0) (show_name no) (do_not_autoplace no) (effects @@ -2593,7 +2725,7 @@ ) ) (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2604,7 +2736,7 @@ ) ) (property "Datasheet" "" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2614,8 +2746,42 @@ ) ) ) - (property "Description" "" - (at 74.93 71.12 0) + (property "Description" "Unpolarized capacitor" + (at 71.12 66.04 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL21A106KAYNNNE" + (at -3.81 -5.08 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at -3.81 -5.08 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at -3.81 -5.08 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -2625,7 +2791,7 @@ ) ) (property "Type" "X5R" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2636,7 +2802,7 @@ ) ) (property "V" "25V" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2663,7 +2829,7 @@ ) (symbol (lib_id "power:GND") - (at 74.93 74.93 0) + (at 71.12 69.85 0) (unit 1) (body_style 1) (exclude_from_sim no) @@ -2673,7 +2839,7 @@ (dnp no) (uuid "2b6789c2-e304-45d0-ae60-2f8a65837eaf") (property "Reference" "#PWR0C01" - (at 74.93 78.74 0) + (at 71.12 73.66 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2684,7 +2850,7 @@ ) ) (property "Value" "GND" - (at 74.93 78.74 0) + (at 71.12 73.66 0) (show_name no) (do_not_autoplace no) (effects @@ -2694,7 +2860,7 @@ ) ) (property "Footprint" "" - (at 74.93 74.93 0) + (at 71.12 69.85 0) (show_name no) (do_not_autoplace no) (effects @@ -2704,7 +2870,7 @@ ) ) (property "Datasheet" "" - (at 74.93 74.93 0) + (at 71.12 69.85 0) (show_name no) (do_not_autoplace no) (effects @@ -2713,8 +2879,9 @@ ) ) ) - (property "Description" "" - (at 74.93 74.93 0) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 71.12 69.85 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -2757,7 +2924,7 @@ (justify left) ) ) - (property "Value" "2.2uH" + (property "Value" "3.3uH" (at 142.494 89.154 90) (show_name no) (do_not_autoplace no) @@ -2790,7 +2957,51 @@ ) ) ) - (property "Description" "" + (property "Description" "Inductor" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "FNR4018S3R3MT" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "cjiang" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C167805" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Current" "2.9A" (at 139.7 87.63 0) (hide yes) (show_name no) @@ -2870,7 +3081,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 82.55 39.37 0) (hide yes) (show_name no) @@ -2948,7 +3159,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 82.55 35.56 0) (hide yes) (show_name no) @@ -2959,6 +3170,39 @@ ) ) ) + (property "MPN" "0402WGF1003TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25741" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 82.55 35.56 0) (hide yes) @@ -3029,7 +3273,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps2116.pdf" (at 115.57 34.29 0) (hide yes) (show_name no) @@ -3040,7 +3284,7 @@ ) ) ) - (property "Description" "" + (property "Description" "2 Channnels Power Mux with Manual and Priority Switchover, 1.6-5.5V Input Voltage, 2.5A Output Current, Ron 40 mOhm, SOT-583-8" (at 115.57 34.29 0) (hide yes) (show_name no) @@ -3051,6 +3295,39 @@ ) ) ) + (property "MPN" "TPS2116DRLR" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C3235557" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "1" (uuid "db164c94-fa66-4d3b-ab73-7cc62e4e6786") ) @@ -3139,7 +3416,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 62.23 83.82 0) (hide yes) (show_name no) @@ -3150,6 +3427,39 @@ ) ) ) + (property "MPN" "0402WGF3302TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25779" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 62.23 83.82 0) (hide yes) @@ -3231,7 +3541,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 27.94 26.67 0) (hide yes) (show_name no) @@ -3242,6 +3552,39 @@ ) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 27.94 26.67 0) (hide yes) @@ -3334,7 +3677,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 161.29 91.44 0) (hide yes) (show_name no) @@ -3345,6 +3688,39 @@ ) ) ) + (property "MPN" "CL31A226KAHNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12891" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 161.29 91.44 0) (hide yes) @@ -3356,7 +3732,7 @@ ) ) ) - (property "V" "10V" + (property "V" "25V" (at 161.29 91.44 0) (hide yes) (show_name no) @@ -3436,7 +3812,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 161.29 95.25 0) (hide yes) (show_name no) @@ -3514,7 +3890,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 128.27 25.4 0) (hide yes) (show_name no) @@ -3525,6 +3901,39 @@ ) ) ) + (property "MPN" "CL31A226KAHNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12891" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 128.27 25.4 0) (hide yes) @@ -3536,7 +3945,7 @@ ) ) ) - (property "V" "10V" + (property "V" "25V" (at 128.27 25.4 0) (hide yes) (show_name no) @@ -3616,7 +4025,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 171.45 95.25 0) (hide yes) (show_name no) @@ -3694,7 +4103,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 171.45 91.44 0) (hide yes) (show_name no) @@ -3705,6 +4114,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 171.45 91.44 0) (hide yes) @@ -3796,7 +4238,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 82.55 67.31 0) (hide yes) (show_name no) @@ -3885,6 +4327,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 102.87 45.72 0) (hide yes) @@ -3977,7 +4452,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 90.17 92.71 0) (hide yes) (show_name no) @@ -3988,6 +4463,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 90.17 92.71 0) (hide yes) @@ -3999,7 +4507,7 @@ ) ) ) - (property "V" "50V" + (property "V" "16V" (at 90.17 92.71 0) (hide yes) (show_name no) @@ -4079,7 +4587,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 133.35 100.33 0) (hide yes) (show_name no) @@ -4146,7 +4654,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" (at 45.72 25.4 0) (hide yes) (show_name no) @@ -4157,7 +4665,7 @@ ) ) ) - (property "Description" "" + (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.2V fixed positive output, SOT-23-5" (at 45.72 25.4 0) (hide yes) (show_name no) @@ -4168,6 +4676,39 @@ ) ) ) + (property "MPN" "AP2112K-1.2TRG1" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Diodes Incorporated" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C460310" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "1" (uuid "d6901e1c-f0fb-461e-894d-dec2407a9d5f") ) @@ -4225,7 +4766,7 @@ (justify left) ) ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 92.71 71.12 0) (hide yes) (show_name no) @@ -4247,7 +4788,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 92.71 71.12 0) (hide yes) (show_name no) @@ -4258,6 +4799,39 @@ ) ) ) + (property "MPN" "CC0603KRX7R9BB104" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "YAGEO" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C14663" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 92.71 71.12 0) (hide yes) @@ -4350,7 +4924,7 @@ ) ) ) - (property "Description" "" + (property "Description" "4.5 V to 17 V input, 2 A output, synchronous step-down converter in Eco-mode" (at 115.57 87.63 0) (hide yes) (show_name no) @@ -4361,6 +4935,171 @@ ) ) ) + (property "MPN" "TPS562201DDCR" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C90061" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MF" "Texas Instruments" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "1.10 mm" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Package" "SOT-23-THN-6 Texas Instruments" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Price" "None" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=eda" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "STANDARD" "IPC-7351B" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "PARTREV" "A" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=snap" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MP" "TPS562201DDCR" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Availability" "In Stock" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MANUFACTURER" "Texas Instruments" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) (pin "1" (uuid "99c0d954-326f-449b-97d7-f85d920b1f05") ) @@ -4454,6 +5193,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 102.87 22.86 0) (hide yes) @@ -4545,7 +5317,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 60.96 30.48 0) (hide yes) (show_name no) @@ -4622,7 +5394,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 115.57 46.99 0) (hide yes) (show_name no) @@ -4699,7 +5471,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 128.27 21.59 0) (hide yes) (show_name no) @@ -4776,7 +5548,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 62.23 95.25 0) (hide yes) (show_name no) @@ -4853,7 +5625,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 102.87 19.05 0) (hide yes) (show_name no) @@ -4930,7 +5702,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 92.71 67.31 0) (hide yes) (show_name no) @@ -5008,7 +5780,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 127 45.72 0) (hide yes) (show_name no) @@ -5019,6 +5791,39 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "5%" (at 127 45.72 0) (hide yes) @@ -5099,7 +5904,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 102.87 49.53 0) (hide yes) (show_name no) @@ -5177,7 +5982,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 62.23 91.44 0) (hide yes) (show_name no) @@ -5188,6 +5993,39 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 62.23 91.44 0) (hide yes) @@ -5268,7 +6106,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 45.72 35.56 0) (hide yes) (show_name no) @@ -5345,7 +6183,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 27.94 30.48 0) (hide yes) (show_name no) @@ -5422,7 +6260,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 151.13 95.25 0) (hide yes) (show_name no) @@ -5497,8 +6335,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 105.41 29.21 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects diff --git a/hardware/re-bba-rb/Usb Connector.kicad_sch b/hardware/re-bba-rb/Usb Connector.kicad_sch index 4f194f0..f953fff 100644 --- a/hardware/re-bba-rb/Usb Connector.kicad_sch +++ b/hardware/re-bba-rb/Usb Connector.kicad_sch @@ -6320,6 +6320,16 @@ ) (uuid "aba34c6a-30da-41dd-a28c-beea18de0588") ) + (wire + (pts + (xy 148.59 82.55) (xy 146.05 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac6de758-e54c-45ff-a084-bbac96c3dae0") + ) (wire (pts (xy 100.33 99.06) (xy 102.87 99.06) @@ -7588,8 +7598,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 363.22 64.77 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7679,7 +7723,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" (at 92.71 101.6 0) (hide yes) (show_name no) @@ -7690,8 +7734,42 @@ ) ) ) - (property "Description" "" + (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 92.71 101.6 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "AP2112K-3.3TRG1" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Diodes Incorporated" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C51118" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7776,8 +7854,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 326.39 35.56 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL10A475KO8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C19666" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8088,7 +8200,7 @@ ) ) ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (at 152.4 73.66 0) (hide yes) (show_name no) @@ -8109,17 +8221,7 @@ ) ) ) - (property "Description" "" - (at 152.4 73.66 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "C0G" + (property "Description" "Unpolarized capacitor" (at 152.4 73.66 0) (hide yes) (show_name no) @@ -8130,7 +8232,51 @@ ) ) ) - (property "V" "100V" + (property "MPN" "1206B102K202NT" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C9196" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Type" "X7R" + (at 152.4 73.66 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "V" "2kV" (at 152.4 73.66 0) (hide yes) (show_name no) @@ -8208,8 +8354,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 107.95 135.89 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8282,8 +8429,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 92.71 109.22 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8304,6 +8452,128 @@ ) ) ) + (symbol + (lib_id "Device:R") + (at 142.24 82.55 270) + (unit 1) + (body_style 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (in_pos_files yes) + (dnp no) + (uuid "1877149c-1083-469c-b3d7-88f374a026d7") + (property "Reference" "R19" + (at 139.446 80.264 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "1M" + (at 142.24 85.598 90) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" + (at 142.24 82.55 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Datasheet" "" + (at 142.24 82.55 0) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 142.24 82.55 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "1206W4F1004T5E" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C17927" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Tolerance" "1%" + (at 142.24 82.55 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (pin "1" + (uuid "28036792-e8bf-402b-b17e-ac5103fd5a93") + ) + (pin "2" + (uuid "950d82fc-313e-44d7-bf2b-54d9b275861a") + ) + (instances + (project "re-bba-rb" + (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" + (reference "R19") + (unit 1) + ) + ) + ) + ) (symbol (lib_id "Device:C") (at 313.69 205.74 90) @@ -8369,6 +8639,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 313.69 205.74 0) (hide yes) @@ -8458,8 +8761,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 74.93 60.96 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF5101TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25905" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8735,7 +9072,7 @@ ) (symbol (lib_id "power:GND") - (at 148.59 82.55 270) + (at 138.43 82.55 270) (unit 1) (body_style 1) (exclude_from_sim no) @@ -8746,7 +9083,7 @@ (fields_autoplaced yes) (uuid "24df6952-417e-4cb4-aaaf-156b17e393f0") (property "Reference" "#PWR017" - (at 142.24 82.55 0) + (at 132.08 82.55 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -8757,7 +9094,7 @@ ) ) (property "Value" "GND" - (at 143.51 82.55 0) + (at 133.35 82.55 0) (show_name no) (do_not_autoplace no) (effects @@ -8767,7 +9104,7 @@ ) ) (property "Footprint" "" - (at 148.59 82.55 0) + (at 138.43 82.55 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -8778,7 +9115,7 @@ ) ) (property "Datasheet" "" - (at 148.59 82.55 0) + (at 138.43 82.55 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -8789,7 +9126,7 @@ ) ) (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 148.59 82.55 0) + (at 138.43 82.55 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -8833,7 +9170,7 @@ (justify left) ) ) - (property "Value" "0.1uF" + (property "Value" "100nF" (at 251.46 146.05 0) (show_name no) (do_not_autoplace no) @@ -8866,8 +9203,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 248.92 144.78 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8944,7 +9315,7 @@ ) ) ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" (at 109.22 52.07 0) (hide yes) (show_name no) @@ -8955,8 +9326,9 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (at 109.22 52.07 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8965,8 +9337,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (at 109.22 52.07 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "USBLC6-2SC6" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C7519" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9039,7 +9445,7 @@ ) ) ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (property "Footprint" "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (at 152.4 82.55 0) (hide yes) (show_name no) @@ -9060,8 +9466,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 152.4 82.55 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9070,7 +9477,40 @@ ) ) ) - (property "Tolerance" "5%" + (property "MPN" "1206W4F1004T5E" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C17927" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Tolerance" "1%" (at 152.4 82.55 0) (hide yes) (show_name no) @@ -9148,8 +9588,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 242.57 160.02 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9212,8 +9653,9 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 36.83 62.23 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9222,8 +9664,42 @@ ) ) ) - (property "Description" "" + (property "Description" "USB 2.0-only 16P Type-C Receptacle connector" (at 36.83 62.23 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "MC-711-H72" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Hanbo Electronic" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C6332303" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9352,8 +9828,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 289.56 171.45 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9504,8 +9981,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 72.39 139.7 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9593,7 +10104,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM6000.PDF" (at 229.87 149.86 0) (hide yes) (show_name no) @@ -9604,8 +10115,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Isolated 5 kV DC-to-DC Converter" (at 229.87 149.86 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "ADUM5000ARWZ" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Analog Devices" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C579411" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9723,8 +10268,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 267.97 63.5 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9915,6 +10494,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 287.02 71.12 0) (hide yes) @@ -10004,8 +10616,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 173.99 36.83 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10109,8 +10755,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 342.9 64.77 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10286,8 +10966,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Ferrite bead, small symbol" (at 307.34 48.26 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "GZ1608D601TF" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Sunlord" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1002" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10536,8 +11250,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 67.31 60.96 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF5101TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25905" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10709,8 +11457,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 273.05 152.4 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402CG180J500NT" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10971,8 +11753,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 273.05 170.18 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402CG180J500NT" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11076,8 +11892,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 85.09 99.06 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11150,8 +11967,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 273.05 161.29 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11214,8 +12032,9 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001749K.pdf" (at 307.34 217.17 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11224,8 +12043,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Serial EEPROM, 93 Series, 2.5V, DIP-8/SOIC-8" (at 307.34 217.17 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "93LC46BT-I/SN" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Microchip" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C16253" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11319,8 +12172,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 250.19 109.22 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11407,8 +12294,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 80.01 139.7 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11506,8 +12427,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 373.38 64.77 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11605,8 +12560,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 307.34 69.85 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11679,8 +12635,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 242.57 144.78 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11753,8 +12710,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 107.95 139.7 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11930,8 +12921,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Four pin crystal, GND on pins 2 and 4" (at 278.13 161.29 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "X322512MOB4SI" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "YXC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C70565" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12155,8 +13180,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 78.74 104.14 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12254,8 +13313,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 326.39 41.91 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12353,8 +13446,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 297.18 60.96 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12452,8 +13579,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 283.21 110.49 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1202TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25752" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12510,7 +13671,7 @@ (justify left) ) ) - (property "Value" "0.1uF" + (property "Value" "100nF" (at 213.36 146.05 0) (show_name no) (do_not_autoplace no) @@ -12543,8 +13704,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 210.82 144.78 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12642,8 +13837,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 242.57 149.86 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12716,8 +13912,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 326.39 54.61 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12794,7 +14024,7 @@ ) ) ) - (property "Footprint" "Package_QFP:LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm" + (property "Footprint" "Package_QFP:LQFP-64_10x10mm_P0.5mm" (at 320.04 125.73 0) (hide yes) (show_name no) @@ -12805,8 +14035,9 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf" (at 320.04 125.73 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -12815,8 +14046,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Hi Speed Double Channel USB UART/FIFO, LQFP-64" (at 320.04 125.73 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "FT2232HL-REEL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "FTDI" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C27882" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -13162,8 +14427,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 353.06 64.77 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -13261,8 +14560,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 248.92 148.59 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -13335,8 +14635,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 143.51 36.83 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -13597,8 +14931,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Ferrite bead, small symbol" (at 309.88 43.18 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "GZ1608D601TF" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Sunlord" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1002" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -13770,8 +15138,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 326.39 48.26 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -13947,8 +15349,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 250.19 121.92 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -14128,8 +15564,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 102.87 104.14 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -14227,8 +15697,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 297.18 54.61 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -14316,8 +15820,9 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM4160.pdf" (at 158.75 53.34 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -14326,8 +15831,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Full/Low Speed, iCoupler USB Digital Isolator, 5kV protection, SOIC-16" (at 158.75 53.34 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "ADUM4160BRWZ" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Analog Devices" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C579406" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Fpga.kicad_sch b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Fpga.kicad_sch deleted file mode 100644 index f307c8c..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Fpga.kicad_sch +++ /dev/null @@ -1,6958 +0,0 @@ -(kicad_sch - (version 20260306) - (generator "eeschema") - (generator_version "10.0") - (uuid "c7c83e02-be8e-41db-b6ef-f2991287a9cc") - (paper "A4") - (lib_symbols - (symbol "Device:C" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "C" - (at 0.635 2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "C" - (at 0.635 -2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0.9652 -3.81 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "cap capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "C_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:R" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "R" - (at 2.032 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "R" - (at 0 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "R res resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "R_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "FPGA_Lattice:ICE40UP5K-SG48ITR" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -8.89 -29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 0 -31.75 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (at 0 -34.29 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at -10.16 25.4 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_locked" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "FPGA programmable logic" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "QFN*1EP*7x7mm*P0.5mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "ICE40UP5K-SG48ITR_1_1" - (rectangle - (start -7.62 25.4) - (end 7.62 -27.94) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin bidirectional line - (at -10.16 12.7 0) - (length 2.54) - (name "IOT_37a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 15.24 0) - (length 2.54) - (name "IOT_36b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 7.62 0) - (length 2.54) - (name "IOT_39a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 10.16 0) - (length 2.54) - (name "IOT_38b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 5.08 0) - (length 2.54) - (name "IOT_41a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 2.54 0) - (length 2.54) - (name "IOT_42b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 0 0) - (length 2.54) - (name "IOT_43a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 27.94 270) - (length 2.54) - (name "VCCIO_0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -2.54 0) - (length 2.54) - (name "IOT_44b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "34" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -7.62 0) - (length 2.54) - (name "IOT_46b_G0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "35" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -10.16 0) - (length 2.54) - (name "IOT_48b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "36" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -5.08 0) - (length 2.54) - (name "IOT_45a_G1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "37" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -15.24 0) - (length 2.54) - (name "IOT_50b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "38" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at -10.16 -20.32 0) - (length 2.54) - (name "RGB0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "39" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at -10.16 -22.86 0) - (length 2.54) - (name "RGB1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "40" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at -10.16 -25.4 0) - (length 2.54) - (name "RGB2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "41" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -17.78 0) - (length 2.54) - (name "IOT_51a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "42" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -12.7 0) - (length 2.54) - (name "IOT_49a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "43" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "ICE40UP5K-SG48ITR_2_1" - (rectangle - (start -10.16 25.4) - (end 10.16 -25.4) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin bidirectional line - (at -12.7 10.16 0) - (length 2.54) - (name "IOB_13b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 12.7 17.78 180) - (length 2.54) - (name "CDONE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -12.7 17.78 0) - (length 2.54) - (name "~{CRESET}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 7.62 0) - (length 2.54) - (name "IOB_16a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 5.08 0) - (length 2.54) - (name "IOB_18a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 2.54 0) - (length 2.54) - (name "IOB_20a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 0 0) - (length 2.54) - (name "IOB_22a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -5.08 0) - (length 2.54) - (name "IOB_24a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -15.24 0) - (length 2.54) - (name "IOB_32a_SPI_SO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -20.32 0) - (length 2.54) - (name "IOB_34a_SPI_SCK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -22.86 0) - (length 2.54) - (name "IOB_35b_SPI_SS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -17.78 0) - (length 2.54) - (name "IOB_33b_SPI_SI" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -12.7 0) - (length 2.54) - (name "IOB_31b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -10.16 0) - (length 2.54) - (name "IOB_29b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -7.62 0) - (length 2.54) - (name "IOB_25b_G3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 -2.54 0) - (length 2.54) - (name "IOB_23b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 27.94 270) - (length 2.54) - (name "SPI_VCCIO1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "ICE40UP5K-SG48ITR_3_1" - (rectangle - (start -7.62 15.24) - (end 7.62 -15.24) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin power_in line - (at 0 17.78 270) - (length 2.54) - (name "VCCIO_2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -7.62 0) - (length 2.54) - (name "IOB_6a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -12.7 0) - (length 2.54) - (name "IOB_9b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -10.16 0) - (length 2.54) - (name "IOB_8a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 0 0) - (length 2.54) - (name "IOB_3b_G6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "44" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -5.08 0) - (length 2.54) - (name "IOB_5b" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "45" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 5.08 0) - (length 2.54) - (name "IOB_0a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "46" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 2.54 0) - (length 2.54) - (name "IOB_2a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "47" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -2.54 0) - (length 2.54) - (name "IOB_4a" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "48" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "ICE40UP5K-SG48ITR_4_1" - (rectangle - (start -5.08 7.62) - (end 5.08 -7.62) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin power_in line - (at 0 10.16 270) - (length 2.54) - (name "VCC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 10.16 270) - (length 2.54) - (name "VPP_2V5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 2.54 10.16 270) - (length 2.54) - (name "VCCPLL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 10.16 270) - (length 2.54) - (hide yes) - (name "VCC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -10.16 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "49" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Memory_Flash:W25Q32JVSS" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -6.35 11.43 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "W25Q32JVSS" - (at 7.62 11.43 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_SO:SOIC-8_5.3x5.3mm_P1.27mm" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "32Mbit / 4MiB Serial Flash Memory, Standard/Dual/Quad SPI, 2.7-3.6V, SOIC-8 (208 mil)" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "flash memory SPI" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "*SOIC*5.3x5.3mm*P1.27mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "W25Q32JVSS_0_1" - (rectangle - (start -7.62 10.16) - (end 10.16 -10.16) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "W25Q32JVSS_1_1" - (pin input line - (at -10.16 7.62 0) - (length 2.54) - (name "~{CS}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 0 0) - (length 2.54) - (name "DO/IO_{1}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -2.54 0) - (length 2.54) - (name "~{WP}/IO_{2}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -12.7 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 2.54 0) - (length 2.54) - (name "DI/IO_{0}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -10.16 5.08 0) - (length 2.54) - (name "CLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -10.16 -5.08 0) - (length 2.54) - (name "~{HOLD}/~{RESET}/IO_{3}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 12.7 270) - (length 2.54) - (name "VCC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Oscillator:SiT2001" - (pin_names - (offset 1.016) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "X" - (at 0 6.35 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "12MHz" - (at 0 -6.35 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "12MHz SiTime SiT2001 MEMS oscillator SOT-23-5 (as iCEbreaker)" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "SiT2001_0_1" - (rectangle - (start -5.08 3.81) - (end 5.08 -3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "SiT2001_1_1" - (pin input line - (at -7.62 1.27 0) - (length 2.54) - (name "OE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -6.35 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 7.62 0 180) - (length 2.54) - (name "OUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 6.35 270) - (length 2.54) - (name "VDD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:GND" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#PWR" - (at 0 -6.35 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 0 -3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "global power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - ) - (junction - (at 129.54 124.46) - (diameter 0) - (color 0 0 0 0) - (uuid "0bba66ac-fa59-4c46-abca-7f12cdf802b3") - ) - (junction - (at 118.11 114.3) - (diameter 0) - (color 0 0 0 0) - (uuid "2d8b24d9-9e3f-46e0-b88f-bc27aa355415") - ) - (junction - (at 52.07 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "3b9b0c7f-ce79-4bbd-935b-c8665db4e642") - ) - (junction - (at 195.58 123.19) - (diameter 0) - (color 0 0 0 0) - (uuid "496d737d-6509-4341-ab52-53da76fd12b9") - ) - (junction - (at 140.97 110.49) - (diameter 0) - (color 0 0 0 0) - (uuid "5008639a-2407-4e56-9012-4900e4a9c8ab") - ) - (junction - (at 129.54 110.49) - (diameter 0) - (color 0 0 0 0) - (uuid "51624b04-0060-40d8-bf1e-69e0691feab7") - ) - (junction - (at 148.59 124.46) - (diameter 0) - (color 0 0 0 0) - (uuid "6fd5ee49-6ce3-425c-aec8-9685819ddb97") - ) - (junction - (at 139.7 48.26) - (diameter 0) - (color 0 0 0 0) - (uuid "71f53a51-ec5d-4bd9-a2a0-0e6c772c4f9d") - ) - (junction - (at 148.59 110.49) - (diameter 0) - (color 0 0 0 0) - (uuid "81eaf643-bb48-45d1-a140-661e8b092a2c") - ) - (junction - (at 52.07 109.22) - (diameter 0) - (color 0 0 0 0) - (uuid "a45fd404-92bc-4494-9dd3-35de01150310") - ) - (junction - (at 140.97 124.46) - (diameter 0) - (color 0 0 0 0) - (uuid "ae0386bd-dac2-41f2-b3e9-98656bc87c19") - ) - (junction - (at 123.19 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "b457255d-f388-4364-aa4d-a605a0c79f6d") - ) - (junction - (at 196.85 74.93) - (diameter 0) - (color 0 0 0 0) - (uuid "b9937ba9-134b-4b16-9771-bb7248af9681") - ) - (junction - (at 102.87 48.26) - (diameter 0) - (color 0 0 0 0) - (uuid "ecbc5de0-214e-4678-b9db-6ca16f0df3ef") - ) - (no_connect - (at 41.91 83.82) - (uuid "06b488ce-19e3-428c-83a6-0188a2a2c383") - ) - (no_connect - (at 41.91 86.36) - (uuid "0933d6a7-7a26-44eb-a394-af332f6039da") - ) - (no_connect - (at 110.49 58.42) - (uuid "0bffc346-58c0-42f7-a8c7-b9e97afe1b2f") - ) - (no_connect - (at 41.91 133.35) - (uuid "29a72b31-9471-4c17-bbb8-909f374448b8") - ) - (no_connect - (at 110.49 71.12) - (uuid "54f191fd-ff87-4747-8d83-ec64cd4b3fef") - ) - (no_connect - (at 41.91 88.9) - (uuid "860da88c-c750-458f-88fb-19ea57a68896") - ) - (no_connect - (at 110.49 60.96) - (uuid "8f671921-929e-4854-912c-28c8989b8262") - ) - (no_connect - (at 110.49 55.88) - (uuid "a1882c3f-7739-483f-9cc2-7401aff33f10") - ) - (no_connect - (at 110.49 63.5) - (uuid "b46d3387-78e6-4e74-b472-de4833fec90a") - ) - (no_connect - (at 110.49 66.04) - (uuid "d902fc60-7a32-44eb-8185-0def775d4edc") - ) - (no_connect - (at 41.91 128.27) - (uuid "efd1c77f-4e47-43df-b6db-2b8e47e4b2af") - ) - (wire - (pts - (xy 106.68 129.54) (xy 106.68 132.08) - ) - (stroke - (width 0) - (type default) - ) - (uuid "11c2a369-6819-4071-ba4d-be78f0a172c0") - ) - (wire - (pts - (xy 148.59 121.92) (xy 148.59 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "13d6f27c-4a72-45eb-adaa-8c2691040af9") - ) - (wire - (pts - (xy 39.37 60.96) (xy 41.91 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1b1ac23b-4501-4571-a54e-53f57957d403") - ) - (wire - (pts - (xy 184.15 83.82) (xy 186.69 83.82) - ) - (stroke - (width 0) - (type default) - ) - (uuid "238aadc9-fa1d-428d-bc11-710629cdd9a4") - ) - (wire - (pts - (xy 52.07 29.21) (xy 52.07 35.56) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2550b1ef-2d40-4900-a649-b2544d83c3b0") - ) - (wire - (pts - (xy 107.95 78.74) (xy 110.49 78.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "286daa84-5a20-4e12-b681-27f7cb8c48c2") - ) - (wire - (pts - (xy 184.15 93.98) (xy 186.69 93.98) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2c7ccff3-5148-486f-bc2d-43d664ffb07a") - ) - (wire - (pts - (xy 123.19 29.21) (xy 123.19 38.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2e0b2eb1-f979-4ea3-a354-4ddc31b0c9bd") - ) - (wire - (pts - (xy 107.95 83.82) (xy 110.49 83.82) - ) - (stroke - (width 0) - (type default) - ) - (uuid "30c54519-1a86-4a1c-a8d9-671f8fb806e2") - ) - (wire - (pts - (xy 185.42 130.81) (xy 187.96 130.81) - ) - (stroke - (width 0) - (type default) - ) - (uuid "31cf8ad5-6f35-4c3f-a895-4423fc536f13") - ) - (wire - (pts - (xy 195.58 140.97) (xy 195.58 138.43) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3554a0db-4963-4e62-af51-331d18bf176e") - ) - (wire - (pts - (xy 120.65 149.86) (xy 120.65 147.32) - ) - (stroke - (width 0) - (type default) - ) - (uuid "365cb4e9-6cfc-4807-9615-e29f8f8050de") - ) - (wire - (pts - (xy 102.87 45.72) (xy 102.87 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "375f100f-acac-4970-807b-13ee009982a4") - ) - (wire - (pts - (xy 123.19 124.46) (xy 123.19 127) - ) - (stroke - (width 0) - (type default) - ) - (uuid "39dae946-994c-4ece-9874-80130e2b491d") - ) - (wire - (pts - (xy 102.87 35.56) (xy 102.87 38.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3acc67d9-d8fb-4aed-a5d5-d4b6004d6983") - ) - (wire - (pts - (xy 102.87 48.26) (xy 110.49 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3c9479b5-5942-4532-b2d8-7035eb03d7a1") - ) - (wire - (pts - (xy 184.15 91.44) (xy 186.69 91.44) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3f2c825b-cca0-4d45-89f8-3928a1458e0b") - ) - (wire - (pts - (xy 39.37 73.66) (xy 41.91 73.66) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4b6ffaad-6f58-49bd-9e63-6aa4af82bc5c") - ) - (wire - (pts - (xy 39.37 130.81) (xy 41.91 130.81) - ) - (stroke - (width 0) - (type default) - ) - (uuid "53c199c4-cec2-453d-afcc-9715fa70f9a3") - ) - (wire - (pts - (xy 54.61 29.21) (xy 52.07 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "57f82d31-a21b-4476-b9c5-d7f62f792661") - ) - (wire - (pts - (xy 107.95 81.28) (xy 110.49 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "583d2123-a546-4537-8687-818d143ca756") - ) - (wire - (pts - (xy 184.15 88.9) (xy 186.69 88.9) - ) - (stroke - (width 0) - (type default) - ) - (uuid "584ef9ea-2c3c-4f21-9cc7-c6bdbc1f43da") - ) - (wire - (pts - (xy 140.97 110.49) (xy 148.59 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5b5945c7-5044-4fb5-b74f-121717a8caa4") - ) - (wire - (pts - (xy 39.37 140.97) (xy 41.91 140.97) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6112353b-c85e-40b4-95ae-6441b1c2a8d9") - ) - (wire - (pts - (xy 148.59 110.49) (xy 156.21 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "642ee901-46a2-443e-be4f-82cdd2cfa3b5") - ) - (wire - (pts - (xy 107.95 76.2) (xy 110.49 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "65077916-d6b2-4628-8e99-169a156b2a75") - ) - (wire - (pts - (xy 196.85 74.93) (xy 196.85 78.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6891bec8-dbf4-4494-a3b8-c09d3aca19bf") - ) - (wire - (pts - (xy 39.37 55.88) (xy 41.91 55.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "68b0b619-58b6-4903-88f9-f647398043c2") - ) - (wire - (pts - (xy 39.37 78.74) (xy 41.91 78.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6946ddc4-365e-4272-b376-9d47d8f89607") - ) - (wire - (pts - (xy 139.7 45.72) (xy 139.7 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6988b231-5201-45e9-8e5f-1b13d6bf31ee") - ) - (wire - (pts - (xy 123.19 124.46) (xy 129.54 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6a6a5b54-27cf-48af-948b-756f38f16c05") - ) - (wire - (pts - (xy 120.65 110.49) (xy 120.65 127) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6b785ff0-b3a0-40c4-b1de-f569e4165988") - ) - (wire - (pts - (xy 125.73 29.21) (xy 123.19 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6ccdd6c7-2a31-497f-ac39-5c96d50b6805") - ) - (wire - (pts - (xy 52.07 105.41) (xy 52.07 109.22) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6f8e2b42-7958-4566-b8b2-150101d9a3ca") - ) - (wire - (pts - (xy 118.11 110.49) (xy 118.11 114.3) - ) - (stroke - (width 0) - (type default) - ) - (uuid "73946a4e-a35d-40ef-bce0-2a4d779d6549") - ) - (wire - (pts - (xy 184.15 86.36) (xy 186.69 86.36) - ) - (stroke - (width 0) - (type default) - ) - (uuid "74aa6941-e235-4561-bf10-9f7fcf4c6466") - ) - (wire - (pts - (xy 139.7 35.56) (xy 139.7 38.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "75ef069b-d678-43f6-a0fe-070c368155ff") - ) - (wire - (pts - (xy 39.37 76.2) (xy 41.91 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "81dace34-569c-4f6d-a185-eee875b16fa9") - ) - (wire - (pts - (xy 39.37 68.58) (xy 41.91 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "84bb99e7-231e-4da3-a1fd-a5aa1e250528") - ) - (wire - (pts - (xy 195.58 120.65) (xy 195.58 123.19) - ) - (stroke - (width 0) - (type default) - ) - (uuid "87034ff6-d5a3-4c6c-9f50-e2b28e7817a2") - ) - (wire - (pts - (xy 39.37 50.8) (xy 41.91 50.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "912c9381-cb7d-4b17-8dd4-4560450e2a66") - ) - (wire - (pts - (xy 205.74 132.08) (xy 203.2 132.08) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9247c00e-e382-4999-b8e7-9b6f7056a609") - ) - (wire - (pts - (xy 52.07 25.4) (xy 52.07 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "94ea7ac6-4a0a-465b-9cab-43d2f33e5190") - ) - (wire - (pts - (xy 39.37 143.51) (xy 41.91 143.51) - ) - (stroke - (width 0) - (type default) - ) - (uuid "99ec9368-e429-440a-9812-d3dd5220e345") - ) - (wire - (pts - (xy 195.58 123.19) (xy 195.58 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9dd4f681-60e3-41ec-9708-8676b2edaa5d") - ) - (wire - (pts - (xy 54.61 109.22) (xy 52.07 109.22) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a1acc6e3-62e7-4e81-8bb3-1b58a10c42c2") - ) - (wire - (pts - (xy 146.05 48.26) (xy 139.7 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a42e4e18-c21a-49bb-b4ee-8f994b38042a") - ) - (wire - (pts - (xy 39.37 58.42) (xy 41.91 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a7dd833a-d2ab-4f8d-81d6-dc4e1df57a79") - ) - (wire - (pts - (xy 39.37 138.43) (xy 41.91 138.43) - ) - (stroke - (width 0) - (type default) - ) - (uuid "af3b0d9b-9acd-433f-b4d5-9cb163334449") - ) - (wire - (pts - (xy 107.95 86.36) (xy 110.49 86.36) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b0fe948a-bdad-4736-9794-821a2d1a537a") - ) - (wire - (pts - (xy 39.37 63.5) (xy 41.91 63.5) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b1a73295-7d6a-480d-a8a8-92cfe28ea7b4") - ) - (wire - (pts - (xy 39.37 66.04) (xy 41.91 66.04) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b7ff38a5-e39d-4ce8-8ff1-bff036036d6b") - ) - (wire - (pts - (xy 115.57 114.3) (xy 118.11 114.3) - ) - (stroke - (width 0) - (type default) - ) - (uuid "bbc4b014-5c52-4e78-a3dd-8a8ad425db8b") - ) - (wire - (pts - (xy 107.95 88.9) (xy 110.49 88.9) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c3dda08d-d45c-49a0-b08b-a57403b1ec49") - ) - (wire - (pts - (xy 39.37 135.89) (xy 41.91 135.89) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c74cf580-c774-439e-a7a4-69ce5239d46f") - ) - (wire - (pts - (xy 39.37 71.12) (xy 41.91 71.12) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c987dede-7023-49a8-b781-2093f7242e9e") - ) - (wire - (pts - (xy 39.37 53.34) (xy 41.91 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cbe483b6-b9ce-436a-a287-117ed94b8f57") - ) - (wire - (pts - (xy 106.68 142.24) (xy 106.68 139.7) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d6a13704-8f19-4405-898d-5e26fed557a2") - ) - (wire - (pts - (xy 196.85 106.68) (xy 196.85 104.14) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d6f75d00-e806-4375-a7ae-7388e013d452") - ) - (wire - (pts - (xy 148.59 110.49) (xy 148.59 114.3) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d95b120b-0cdc-408a-9349-f121c2653545") - ) - (wire - (pts - (xy 52.07 109.22) (xy 52.07 113.03) - ) - (stroke - (width 0) - (type default) - ) - (uuid "da414f4a-1989-4495-a9b8-e5e9373f3e8d") - ) - (wire - (pts - (xy 95.25 139.7) (xy 95.25 142.24) - ) - (stroke - (width 0) - (type default) - ) - (uuid "da55a4c5-c450-4910-9ceb-768e74e866fc") - ) - (wire - (pts - (xy 184.15 96.52) (xy 186.69 96.52) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dad0dd8e-457b-4b64-9444-7ea56c2e9a4a") - ) - (wire - (pts - (xy 118.11 114.3) (xy 118.11 127) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dbcd24c0-c4bd-4dbf-bf58-9d5e7f88422e") - ) - (wire - (pts - (xy 39.37 81.28) (xy 41.91 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "deeb25c6-aea2-43d3-b588-1596f1b788ca") - ) - (wire - (pts - (xy 123.19 25.4) (xy 123.19 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e03bce4e-2f92-4db8-8f48-5e3293ab7469") - ) - (wire - (pts - (xy 107.95 68.58) (xy 110.49 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e3a270e6-42d3-4e3d-bca1-c17ca68bf0e0") - ) - (wire - (pts - (xy 39.37 48.26) (xy 41.91 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e5b4738e-c0c4-4e12-802f-17615a092f9e") - ) - (wire - (pts - (xy 140.97 110.49) (xy 129.54 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e5bcf58f-2ba5-4593-b6d6-46ff773968a7") - ) - (wire - (pts - (xy 129.54 110.49) (xy 120.65 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e6a4ca0f-f78e-4952-9f2e-57aeffad8320") - ) - (wire - (pts - (xy 139.7 48.26) (xy 135.89 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e76eb04e-2774-4ffa-84cd-252d8bc6b3e8") - ) - (wire - (pts - (xy 39.37 125.73) (xy 41.91 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e89d20ab-5c7b-4429-a3ea-4300182c22cb") - ) - (wire - (pts - (xy 196.85 71.12) (xy 196.85 74.93) - ) - (stroke - (width 0) - (type default) - ) - (uuid "eb06f15f-5643-4295-9329-3a06df4c79f2") - ) - (wire - (pts - (xy 107.95 73.66) (xy 110.49 73.66) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f2645fb5-aced-4ca3-96c4-e404bd2c3cf2") - ) - (wire - (pts - (xy 129.54 124.46) (xy 140.97 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fafff3b3-9510-4755-9cba-ea23d6152d39") - ) - (wire - (pts - (xy 140.97 124.46) (xy 148.59 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fb23d7c2-5a04-4dea-b544-35ccec260a1f") - ) - (wire - (pts - (xy 148.59 124.46) (xy 156.21 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fb3a759f-4ff1-486e-856c-d4cf8e7b73f3") - ) - (wire - (pts - (xy 99.06 48.26) (xy 102.87 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fc124576-bcf0-4858-9dab-6244aaa8f3df") - ) - (wire - (pts - (xy 95.25 132.08) (xy 95.25 129.54) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ffe32331-ddc6-41db-85ef-1494b3911ef5") - ) - (label "3V3" - (at 95.25 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "0391f954-e286-4216-a02e-7a8c7e6601af") - ) - (label "3V3" - (at 102.87 35.56 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "0d15dd4a-8398-49ef-b27b-9f607f3e20b6") - ) - (label "3V3" - (at 184.15 96.52 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "0f2eb8a9-4738-4d29-ae42-66126f3b06a7") - ) - (label "FLASH_CS" - (at 184.15 83.82 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "11c6990e-0304-4c45-a596-024a6c0cc044") - ) - (label "CLK12" - (at 205.74 132.08 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "2d3cd013-08f3-45b2-b9af-1d263a8f3650") - ) - (label "3V3" - (at 139.7 35.56 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "3038cddb-d0da-45d5-ab91-c34fabed8f07") - ) - (label "VCCPLL_F" - (at 156.21 124.46 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "458b83e2-069e-40a9-ae8e-2e130fb07b92") - ) - (label "FLASH_MISO" - (at 184.15 91.44 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "4b047138-e13e-45cd-afa7-59baae2a725f") - ) - (label "FLASH_MOSI" - (at 184.15 88.9 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "5e301351-1d76-4e02-be0d-6e1c16e96187") - ) - (label "1V2" - (at 106.68 129.54 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "79b778e2-0065-4a07-9e15-66c7903f2ac4") - ) - (label "3V3" - (at 185.42 130.81 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "83b357f8-eb08-4c02-9c58-048880eb1fa2") - ) - (label "CLK12" - (at 107.95 73.66 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "b5a97a17-e349-48e4-8c55-4e87804a6727") - ) - (label "FLASH_SCK" - (at 184.15 86.36 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "cce9526e-9a71-4ad2-99cd-ae368c719b30") - ) - (label "3V3" - (at 195.58 120.65 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "dc05034f-9997-4088-9a47-d27e1c3c7799") - ) - (label "3V3" - (at 184.15 93.98 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "e7a31534-9082-41b4-8959-183b00530401") - ) - (hierarchical_label "3V3" - (shape input) - (at 196.85 71.12 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "07460a39-32b4-4f41-a20a-4a9aa8b61888") - ) - (hierarchical_label "EXI_CS" - (shape bidirectional) - (at 39.37 135.89 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "1263a374-a091-46fb-835b-d4113957a468") - ) - (hierarchical_label "EXI_MOSI" - (shape bidirectional) - (at 39.37 143.51 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "18cec611-7eaa-4cee-b5cc-25afefabf371") - ) - (hierarchical_label "ETH_RD" - (shape bidirectional) - (at 39.37 68.58 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "1a1c3025-e3ff-4f26-8782-d057f066557b") - ) - (hierarchical_label "UART_RXD" - (shape bidirectional) - (at 107.95 76.2 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "1ccc1428-c724-4938-8070-ab760e09c9a1") - ) - (hierarchical_label "3V3" - (shape input) - (at 52.07 25.4 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "255bf0af-074b-410c-870f-cd71a0cb3bcb") - ) - (hierarchical_label "3V3" - (shape input) - (at 118.11 110.49 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "27a5f079-a71c-4004-bf8f-90b050c25b9a") - ) - (hierarchical_label "ETH_A0" - (shape bidirectional) - (at 39.37 81.28 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "37e1082e-ecfd-4d34-97b9-1e947fede732") - ) - (hierarchical_label "EXI_INT" - (shape bidirectional) - (at 39.37 125.73 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "39dc8d7b-8fb3-4c7d-8330-a871347859ac") - ) - (hierarchical_label "ETH_D1" - (shape bidirectional) - (at 39.37 63.5 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "3c870a50-8682-4e13-96ab-099f5e7e5e0d") - ) - (hierarchical_label "3V3" - (shape input) - (at 52.07 105.41 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "45ed2477-42b0-4913-8341-202eed26f086") - ) - (hierarchical_label "ETH_WR" - (shape bidirectional) - (at 39.37 73.66 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4790ff94-610f-44e0-ba46-c1c6c20cb8bf") - ) - (hierarchical_label "ETH_D5" - (shape bidirectional) - (at 39.37 55.88 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4c74b684-93f7-461a-95ac-39b485497b43") - ) - (hierarchical_label "ETH_CS" - (shape bidirectional) - (at 39.37 76.2 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4de88071-4848-4727-b3d6-df0b929314aa") - ) - (hierarchical_label "CDONE" - (shape output) - (at 146.05 48.26 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "6a166f17-c189-4df9-a6ff-3f0ebc12b4b1") - ) - (hierarchical_label "ETH_D6" - (shape bidirectional) - (at 39.37 48.26 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "6eea2b41-9ae4-4f1d-85e3-95191de3096e") - ) - (hierarchical_label "UART_TXD" - (shape bidirectional) - (at 107.95 78.74 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "7a327469-4f85-4407-8e6a-d018c1f0ea8a") - ) - (hierarchical_label "ETH_D2" - (shape bidirectional) - (at 39.37 60.96 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "7bbb99fb-b0eb-4df1-86fb-653acfafa4e8") - ) - (hierarchical_label "ETH_A1" - (shape bidirectional) - (at 39.37 78.74 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "9c02af83-8f1f-45aa-94ea-b61aaa80952b") - ) - (hierarchical_label "FLASH_SCK" - (shape bidirectional) - (at 107.95 86.36 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "9e39d8d7-f209-4efc-b946-2c37917520a3") - ) - (hierarchical_label "ETH_INT" - (shape bidirectional) - (at 39.37 71.12 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "a491afec-0681-4963-ac44-f490ab064c1d") - ) - (hierarchical_label "ETH_D0" - (shape bidirectional) - (at 39.37 66.04 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "a9b1810e-c7c1-49e4-8126-1e7fcea92b20") - ) - (hierarchical_label "3V3" - (shape input) - (at 123.19 25.4 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "aa4264f9-68e2-405f-82b4-586de6531b0a") - ) - (hierarchical_label "GC_ON" - (shape input) - (at 107.95 68.58 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "abcfdbbc-3857-472b-8b32-561260b0da99") - ) - (hierarchical_label "FLASH_MOSI" - (shape bidirectional) - (at 107.95 81.28 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "b01f227b-7e86-4d0e-83b2-5de764edeec9") - ) - (hierarchical_label "EXI_MISO" - (shape bidirectional) - (at 39.37 140.97 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "bd52e2f1-2520-40de-9cda-2a6ebab041e6") - ) - (hierarchical_label "1V2" - (shape input) - (at 156.21 110.49 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "bf42ca48-4052-4a9b-a415-bfe1d0e697b2") - ) - (hierarchical_label "EXI_CLK" - (shape bidirectional) - (at 39.37 130.81 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "bfe338e1-7c27-4cab-8e07-76dfab348ed4") - ) - (hierarchical_label "ETH_RST" - (shape bidirectional) - (at 39.37 138.43 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "c06c8c93-7e92-4589-a426-2508f35abf1c") - ) - (hierarchical_label "ETH_D4" - (shape bidirectional) - (at 39.37 53.34 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "c305b73f-ae26-416f-91cd-c749d0806e41") - ) - (hierarchical_label "ETH_D7" - (shape bidirectional) - (at 39.37 50.8 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "c314d2e0-f09b-4731-b75b-9949a5e1e91a") - ) - (hierarchical_label "FLASH_MISO" - (shape bidirectional) - (at 107.95 83.82 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "c3a84cf0-7071-40d0-a0ee-27b1719086a2") - ) - (hierarchical_label "ETH_D3" - (shape bidirectional) - (at 39.37 58.42 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d7c03764-aed9-481c-a72e-50902750354b") - ) - (hierarchical_label "FLASH_CS" - (shape bidirectional) - (at 107.95 88.9 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "ebaa0659-7fac-4f9e-99f9-df0315469336") - ) - (hierarchical_label "CRESET" - (shape input) - (at 99.06 48.26 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "f562d4e1-24b4-40cf-ba11-9a9c8cbbff90") - ) - (symbol - (lib_id "Device:C") - (at 106.68 135.89 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "170fb1df-3975-4fe7-a89c-98fb9f597901") - (property "Reference" "C40" - (at 109.22 134.62 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "4.7uF" - (at 109.22 137.16 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 106.68 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 106.68 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 106.68 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 106.68 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 106.68 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "764b0d9b-1029-4a47-860d-8142e7b18f12") - ) - (pin "2" - (uuid "edcc5767-cf52-4911-b8f9-7080421bec88") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C40") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 140.97 116.84 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "18326570-aa06-45a2-b79a-7cd3ed549d4f") - (property "Reference" "#PWR076f01" - (at 140.97 113.03 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 140.97 112.522 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 140.97 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 140.97 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 140.97 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c753b529-92fb-4f87-a125-77652e96d329") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR076f01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 129.54 106.68 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1a586e8e-5eb2-46d2-a8b1-0287b1ce1c01") - (property "Reference" "C43" - (at 127 107.95 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 127 105.41 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 129.54 106.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 129.54 106.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 129.54 106.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "32be0889-33a0-43f3-bbc5-ab9485763e47") - ) - (pin "2" - (uuid "c1e05671-74a5-4958-8299-c503cb068be2") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C43") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 111.76 114.3 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1b0091f4-0628-436b-b8e4-f629b2ec0d83") - (property "Reference" "C41" - (at 113.03 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 110.49 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 111.76 114.3 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 111.76 114.3 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 111.76 114.3 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 111.76 114.3 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 111.76 114.3 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "54c2164c-81b3-46b7-ada8-86f91d4897cc") - ) - (pin "2" - (uuid "6c1ddb0d-2c0b-4c79-8053-c3bb69215755") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C41") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Memory_Flash:W25Q32JVSS") - (at 196.85 91.44 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "214cd199-1209-4a06-972b-71421959b7f3") - (property "Reference" "U10" - (at 208.28 90.1699 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "W25Q32JVSS" - (at 208.28 92.7099 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_SO:SOIC-8_5.3x5.3mm_P1.27mm" - (at 196.85 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" - (at 196.85 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "32Mbit / 4MiB Serial Flash Memory, Standard/Dual/Quad SPI, 2.7-3.6V, SOIC-8 (208 mil)" - (at 196.85 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0694693b-7575-4d8b-888b-09b3d549ab26") - ) - (pin "6" - (uuid "4004f8f3-9222-4da0-bbdd-718d7033ae15") - ) - (pin "4" - (uuid "e5031d17-2c3b-41e9-8f01-79caea5e7bb2") - ) - (pin "3" - (uuid "30385370-adfc-4ea5-8825-9643ea57d1fd") - ) - (pin "2" - (uuid "85ca04c3-a54c-40d0-a0e4-0a5a9bfc1ac7") - ) - (pin "8" - (uuid "759382e5-1328-4718-8e7b-db7f12ced08f") - ) - (pin "5" - (uuid "e1485b91-9415-43f0-8609-a327d35c0301") - ) - (pin "7" - (uuid "b7401153-49e2-4e9e-a1f9-da1bcec865d1") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "U10") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 58.42 29.21 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2654a7e3-3523-44af-99fa-0d7b07654129") - (property "Reference" "C37" - (at 57.15 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 59.69 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 58.42 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 58.42 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 58.42 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 58.42 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 58.42 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "26fed921-94ab-4ad7-aaa6-622874a63160") - ) - (pin "2" - (uuid "c37453fa-ab98-4446-b20d-893341b93a5e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C37") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 120.65 149.86 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "269ed7dd-e5af-4127-b37d-1c108233b126") - (property "Reference" "#PWR0ffa01" - (at 120.65 153.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 120.65 153.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 120.65 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 120.65 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 120.65 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "efee4dd4-3091-436d-a432-93e867dc8a1f") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0ffa01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 200.66 74.93 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2d6c9bb8-a909-4391-8586-56fae18c5d19") - (property "Reference" "C48" - (at 199.39 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 201.93 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 200.66 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 200.66 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 200.66 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 200.66 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 200.66 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "4924bf71-0056-4a99-a6a3-5ff7c3e5b835") - ) - (pin "2" - (uuid "493ad204-2845-4d0e-bf09-1924197f67cb") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C48") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 140.97 106.68 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "32fb54c4-87ff-496a-b533-4c8b556284e3") - (property "Reference" "C45" - (at 138.43 107.95 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 138.43 105.41 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 140.97 106.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 140.97 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 140.97 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 140.97 106.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 140.97 106.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "5d4312dc-095c-4068-acde-ecd0a0bad719") - ) - (pin "2" - (uuid "38d5a9f4-c275-4e22-92ca-b3cba5a07f2c") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C45") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 62.23 109.22 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "3bf437ff-d441-4b59-bf2a-2dfc3e3fcdbf") - (property "Reference" "#PWR0670d01" - (at 66.04 109.22 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 67.31 109.22 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 62.23 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "9bc812c3-b914-4281-933c-a39cb49c5f32") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0670d01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 129.54 102.87 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "3f7cecb8-21c3-42fd-8b58-674e2e4aad6c") - (property "Reference" "#PWR0fa01" - (at 129.54 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 129.708 98.942 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 129.54 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e6636cf8-4a0a-4c90-827e-7c2ae754d518") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0fa01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 140.97 102.87 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "42b5ec55-acde-43e0-b7fe-76cfe5992b74") - (property "Reference" "#PWR0fa02" - (at 140.97 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 141.138 98.942 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 140.97 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 140.97 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 140.97 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e01337cc-49e7-4314-883b-7ec27927cfdd") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0fa02") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 102.87 41.91 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4f677ad0-bb05-4434-8c1e-5d3a6ddffd4b") - (property "Reference" "R11" - (at 105.41 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10k" - (at 105.41 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 102.87 41.91 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 102.87 41.91 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 102.87 41.91 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 102.87 41.91 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "cfa904b7-7d03-4e26-8097-619deb0643cd") - ) - (pin "2" - (uuid "be88fb32-2293-4432-8a67-ed7b685527b7") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "R11") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 58.42 109.22 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4f7d5035-f167-47a3-afbd-9e69d8524e27") - (property "Reference" "C38" - (at 57.15 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 59.69 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 58.42 109.22 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 58.42 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 58.42 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 58.42 109.22 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 58.42 109.22 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c0a7d2c9-1969-4d76-a5c5-ef420aa7092a") - ) - (pin "2" - (uuid "eb8ebb69-1422-47b1-bdb5-5c137a2915e4") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C38") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "FPGA_Lattice:ICE40UP5K-SG48ITR") - (at 120.65 137.16 0) - (unit 4) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "51ac40f3-e5aa-4838-88fd-17a94668700e") - (property "Reference" "U9" - (at 127 135.8899 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 127 138.4299 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (at 120.65 171.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at 110.49 111.76 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 120.65 137.16 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "22" - (uuid "30c9b1fa-9b7c-4f5f-a7a5-a636e2920feb") - ) - (pin "19" - (uuid "ac662881-963b-4c04-8d27-c63d04ae8f8f") - ) - (pin "2" - (uuid "94725479-0013-4e5c-bd2e-8b104b1130e2") - ) - (pin "6" - (uuid "57a08a68-b616-4d61-9d84-12dd152ec94f") - ) - (pin "18" - (uuid "b87890d9-3955-41c0-aea3-fc0de461390e") - ) - (pin "17" - (uuid "4adafa9a-4b7a-4073-8d6f-a81481f47818") - ) - (pin "13" - (uuid "55665886-41ae-4e8f-b668-f3cfd57b2532") - ) - (pin "15" - (uuid "6ea45240-327e-4b43-8520-f36770a51132") - ) - (pin "14" - (uuid "1c7c1d75-e652-460a-97a5-5922ee9bcd94") - ) - (pin "12" - (uuid "99599b3d-0291-4d13-a8e7-0fa6c550b8c7") - ) - (pin "11" - (uuid "f7a6ace2-2c96-411d-bba4-a35991474e78") - ) - (pin "21" - (uuid "a79badbb-4feb-4bbe-8791-c6c00ac61a4e") - ) - (pin "39" - (uuid "16aef5fd-6b2e-40d3-8532-587f9720c3e6") - ) - (pin "8" - (uuid "a4f4c2a8-a261-41a0-8b22-f8d764e56795") - ) - (pin "49" - (uuid "20b0a0b4-9032-4696-b186-c08f3cada20e") - ) - (pin "38" - (uuid "b6e3874a-658e-4478-9a18-cf8013ef647d") - ) - (pin "37" - (uuid "d0c00a0a-ed27-4954-8596-d23f677c77a1") - ) - (pin "36" - (uuid "b811ada2-3ce3-40cc-8afb-c8d598360188") - ) - (pin "35" - (uuid "313914a4-011f-4750-b2e0-880d631a2f0c") - ) - (pin "34" - (uuid "3bed9516-c181-4549-98ba-4e10d05997a6") - ) - (pin "4" - (uuid "46efdbfa-267d-4a91-afa8-391db0863bfb") - ) - (pin "44" - (uuid "ac20952f-ca87-4a8e-9814-72b78cef8dec") - ) - (pin "16" - (uuid "5eed9223-5c83-4125-97d3-452791f63a6b") - ) - (pin "10" - (uuid "7351ff21-193d-4c8d-aaa2-2e7094f9fa40") - ) - (pin "9" - (uuid "23d7d422-289e-438a-a0db-3c34041c4f3b") - ) - (pin "1" - (uuid "48178d27-4fa1-4a71-adde-ac85993155f7") - ) - (pin "45" - (uuid "f38bcd38-1c02-4896-81d9-6512b64a0435") - ) - (pin "7" - (uuid "248a71a0-b434-4b4b-86a7-cb5d45dd5b2c") - ) - (pin "3" - (uuid "d626918c-f0b5-4c92-9c00-6b100dc8ef69") - ) - (pin "46" - (uuid "e8bc60d7-ec70-4b52-bb1a-c6e8f1eceb02") - ) - (pin "20" - (uuid "6868ee3f-ef86-4449-8940-2f98d7d80f28") - ) - (pin "29" - (uuid "ea64af20-9770-416d-b906-4e9609cef83f") - ) - (pin "41" - (uuid "9c48c7d8-5833-4af8-acef-b67ce0a24715") - ) - (pin "40" - (uuid "aa4fd230-972c-4555-915f-130a8712936e") - ) - (pin "33" - (uuid "0dab9214-a465-4355-a27e-6680b7fe9ae8") - ) - (pin "32" - (uuid "06efc75e-be7b-4f19-b73b-01fd8fe6200e") - ) - (pin "31" - (uuid "31f24736-e782-46c6-816d-cc3d2e82ec56") - ) - (pin "28" - (uuid "ef9ddd0b-5501-4b54-8f75-d502215d52c1") - ) - (pin "27" - (uuid "9b6126ee-8cea-46d4-98e2-3cdc0c3a467b") - ) - (pin "26" - (uuid "857d2974-82ca-48e4-8e1c-357baace8084") - ) - (pin "25" - (uuid "39f3f4b0-e0ad-4f34-826b-ca7a592ded6d") - ) - (pin "23" - (uuid "a32bb7fa-afd0-4703-874d-2bd4d1a6bbb4") - ) - (pin "43" - (uuid "b32b7cb3-ea58-4b23-ac93-4e8c50b69e16") - ) - (pin "24" - (uuid "4452209b-fe78-4a87-8914-38f436ee4458") - ) - (pin "5" - (uuid "fe2c7df1-c287-4787-ace2-f5508b92aeca") - ) - (pin "30" - (uuid "a603fd78-2ec6-481e-ba69-6378f0157991") - ) - (pin "47" - (uuid "a5ed0170-78d0-4345-9582-1f0f5fae17fe") - ) - (pin "48" - (uuid "0a2f3fce-1035-4377-ae4d-768423beb407") - ) - (pin "42" - (uuid "14adcc71-f8e3-4b94-947c-36b59fd192e7") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "U9") - (unit 4) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 148.59 118.11 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "5dd7b07d-4f90-45ca-9c8c-fbd5a40e7801") - (property "Reference" "R13" - (at 151.13 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100" - (at 151.13 119.38 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 148.59 118.11 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 148.59 118.11 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 148.59 118.11 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 148.59 118.11 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c54ecf3b-4ddd-4c58-a716-d2f74a1fe0b2") - ) - (pin "2" - (uuid "e0005cc9-32d7-43ca-907d-17194c3f7691") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "R13") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 204.47 74.93 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "6a38190f-d5cc-4e2a-b91e-d602823fe848") - (property "Reference" "#PWR039" - (at 208.28 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 200.66 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 204.47 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 204.47 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 204.47 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "21036b61-485a-4e4f-a096-d8a5f704eeeb") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR039") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 196.85 106.68 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "6d0077f2-292b-48c6-ab69-081d14daaf0c") - (property "Reference" "#PWR0772b01" - (at 196.85 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 196.85 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 196.85 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 196.85 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 196.85 106.68 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ce687f24-c05e-4d57-ab43-64076895970b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0772b01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 199.39 123.19 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "6f1678d1-05c7-42c0-a0a5-eb125f5a6c53") - (property "Reference" "C47" - (at 204.724 120.904 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 206.756 125.73 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 199.39 123.19 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 199.39 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 199.39 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 199.39 123.19 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 199.39 123.19 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "95306f31-dd99-4388-88bc-1958057b9ec2") - ) - (pin "2" - (uuid "bc865960-2073-4aa4-b991-94ad522b1860") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C47") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 95.25 142.24 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "7001b484-efaf-4776-9585-734a7326d84c") - (property "Reference" "#PWR07dc01" - (at 95.25 146.05 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 95.336 146.568 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 95.25 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 95.25 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 95.25 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c4d25b83-7c00-4056-94aa-99edbb04ca8a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR07dc01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 106.68 142.24 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "9073f1bd-ff2f-4354-9bce-93e8c9b9c4af") - (property "Reference" "#PWR037" - (at 106.68 146.05 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 106.68 146.558 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 106.68 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 106.68 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 106.68 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "9cca1377-e717-4910-87d1-bd9d89f6e7b7") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR037") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 139.7 41.91 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "9a32e9a6-0619-4f80-a056-6d0e2f66bc71") - (property "Reference" "R12" - (at 142.24 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10k" - (at 142.24 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 139.7 41.91 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 139.7 41.91 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 139.7 41.91 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 139.7 41.91 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "87d45fe6-b826-4e23-ac68-e4bf1851b564") - ) - (pin "2" - (uuid "7d48ea1c-afae-4469-816c-b6edb38bb5d6") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "R12") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 62.23 29.21 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "9a41d05e-4619-40b9-8bbd-5e9d5ba452b7") - (property "Reference" "#PWR0b0ce01" - (at 66.04 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 67.31 29.21 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 62.23 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0e57e75d-5761-4814-93e4-b218e9b4442d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0b0ce01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 140.97 120.65 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a0f9d5a2-4857-4091-bc6b-c353047234c9") - (property "Reference" "C46" - (at 138.43 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 138.43 119.38 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 140.97 120.65 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 140.97 120.65 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 140.97 120.65 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 140.97 120.65 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 140.97 120.65 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "3fde2f0a-e407-4b88-aff9-10080d4268ee") - ) - (pin "2" - (uuid "f05d2889-6e0a-4542-abd7-3c9e25e00281") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C46") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "FPGA_Lattice:ICE40UP5K-SG48ITR") - (at 52.07 130.81 0) - (unit 3) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a8dbf6f7-bf33-4035-aa2a-a16373a624ef") - (property "Reference" "U9" - (at 50.038 147.574 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 42.164 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (at 52.07 165.1 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at 41.91 105.41 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 52.07 130.81 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "22" - (uuid "30c9b1fa-9b7c-4f5f-a7a5-a636e2920fe9") - ) - (pin "19" - (uuid "ac662881-963b-4c04-8d27-c63d04ae8f8d") - ) - (pin "2" - (uuid "9b718593-1fe4-4243-8514-3487fd614bcf") - ) - (pin "6" - (uuid "57a08a68-b616-4d61-9d84-12dd152ec94d") - ) - (pin "18" - (uuid "b87890d9-3955-41c0-aea3-fc0de461390c") - ) - (pin "17" - (uuid "4adafa9a-4b7a-4073-8d6f-a81481f47816") - ) - (pin "13" - (uuid "55665886-41ae-4e8f-b668-f3cfd57b2530") - ) - (pin "15" - (uuid "6ea45240-327e-4b43-8520-f36770a51130") - ) - (pin "14" - (uuid "1c7c1d75-e652-460a-97a5-5922ee9bcd92") - ) - (pin "12" - (uuid "99599b3d-0291-4d13-a8e7-0fa6c550b8c5") - ) - (pin "11" - (uuid "f7a6ace2-2c96-411d-bba4-a35991474e76") - ) - (pin "21" - (uuid "a79badbb-4feb-4bbe-8791-c6c00ac61a4c") - ) - (pin "39" - (uuid "16aef5fd-6b2e-40d3-8532-587f9720c3e4") - ) - (pin "8" - (uuid "a4f4c2a8-a261-41a0-8b22-f8d764e56793") - ) - (pin "49" - (uuid "6dc73ddc-997a-463f-921a-b7a5b1565252") - ) - (pin "38" - (uuid "b6e3874a-658e-4478-9a18-cf8013ef647b") - ) - (pin "37" - (uuid "d0c00a0a-ed27-4954-8596-d23f677c779f") - ) - (pin "36" - (uuid "b811ada2-3ce3-40cc-8afb-c8d598360186") - ) - (pin "35" - (uuid "313914a4-011f-4750-b2e0-880d631a2f0a") - ) - (pin "34" - (uuid "3bed9516-c181-4549-98ba-4e10d05997a4") - ) - (pin "4" - (uuid "5ddda67b-4a5a-4814-a0ae-f2882841d346") - ) - (pin "44" - (uuid "9d0acf93-5e29-4612-93e0-19949dd5b69e") - ) - (pin "16" - (uuid "5eed9223-5c83-4125-97d3-452791f63a69") - ) - (pin "10" - (uuid "7351ff21-193d-4c8d-aaa2-2e7094f9fa3e") - ) - (pin "9" - (uuid "23d7d422-289e-438a-a0db-3c34041c4f39") - ) - (pin "1" - (uuid "fd23e787-6442-4887-be22-372fafaaa5ac") - ) - (pin "45" - (uuid "0604720e-102f-4386-8707-cf27cd818397") - ) - (pin "7" - (uuid "248a71a0-b434-4b4b-86a7-cb5d45dd5b2a") - ) - (pin "3" - (uuid "e6c34e1c-6ac3-46cc-ad40-28db87c4ce42") - ) - (pin "46" - (uuid "8407ba49-0b1b-40b0-b432-26025ba37253") - ) - (pin "20" - (uuid "6868ee3f-ef86-4449-8940-2f98d7d80f26") - ) - (pin "29" - (uuid "9d72edc7-a51b-4233-9b12-0051cc768f28") - ) - (pin "41" - (uuid "9c48c7d8-5833-4af8-acef-b67ce0a24713") - ) - (pin "40" - (uuid "aa4fd230-972c-4555-915f-130a8712936c") - ) - (pin "33" - (uuid "0dab9214-a465-4355-a27e-6680b7fe9ae6") - ) - (pin "32" - (uuid "06efc75e-be7b-4f19-b73b-01fd8fe6200c") - ) - (pin "31" - (uuid "31f24736-e782-46c6-816d-cc3d2e82ec54") - ) - (pin "28" - (uuid "ef9ddd0b-5501-4b54-8f75-d502215d52bf") - ) - (pin "27" - (uuid "9b6126ee-8cea-46d4-98e2-3cdc0c3a4679") - ) - (pin "26" - (uuid "857d2974-82ca-48e4-8e1c-357baace8082") - ) - (pin "25" - (uuid "39f3f4b0-e0ad-4f34-826b-ca7a592ded6b") - ) - (pin "23" - (uuid "a32bb7fa-afd0-4703-874d-2bd4d1a6bbb2") - ) - (pin "43" - (uuid "b32b7cb3-ea58-4b23-ac93-4e8c50b69e14") - ) - (pin "24" - (uuid "e9216d0b-f166-425e-8478-486611dca324") - ) - (pin "5" - (uuid "b030b04f-2a38-4a61-9d15-1e5c9b107c8d") - ) - (pin "30" - (uuid "fe1dda3f-77d0-487f-b208-191025b46191") - ) - (pin "47" - (uuid "d43d807b-8542-4201-a0c8-ad218406ce10") - ) - (pin "48" - (uuid "12e529e9-bfce-4acb-8ed8-dff2fae04e4d") - ) - (pin "42" - (uuid "14adcc71-f8e3-4b94-947c-36b59fd192e5") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "U9") - (unit 3) - ) - ) - ) - ) - (symbol - (lib_id "Oscillator:SiT2001") - (at 195.58 132.08 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "b6ef64c5-65dd-47eb-8855-4631e64d1b5d") - (property "Reference" "X1" - (at 202.58 131.08 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "12MHz" - (at 202.58 133.58 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 195.58 132.08 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 195.58 132.08 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 195.58 132.08 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e859742a-9792-4e4c-8976-11d8550e710a") - ) - (pin "2" - (uuid "0ac15b37-b96c-4cd5-ad70-17ecf9eafaf6") - ) - (pin "3" - (uuid "43aee7d5-f014-4261-b841-aeb919c0ab2d") - ) - (pin "5" - (uuid "476a3a82-556f-4236-8193-c4bc82705daa") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "X1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 95.25 135.89 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "bb67f8f2-1f89-4a5d-88e9-74c8d61d245d") - (property "Reference" "C39" - (at 97.79 134.62 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "4.7uF" - (at 97.79 137.16 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 95.25 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 95.25 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 95.25 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 95.25 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 95.25 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "219c9ac7-8bcb-4440-b045-8e26af868a79") - ) - (pin "2" - (uuid "fd6171a3-02f9-4e2c-bfa8-5049a8d171bb") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C39") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 129.54 29.21 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "bbbc01cb-ff9a-4efe-a15e-d40dca5053a3") - (property "Reference" "C42" - (at 128.27 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 130.81 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 129.54 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 129.54 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 129.54 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "5be1571d-fe73-4767-96ac-74037f8541f5") - ) - (pin "2" - (uuid "e03d612e-089d-4510-b869-fe2adba8ab0a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C42") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 107.95 114.3 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c25cb459-7291-4403-b2ed-bdc9cd959c35") - (property "Reference" "#PWR038" - (at 104.14 114.3 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 103.124 114.3 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 107.95 114.3 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 107.95 114.3 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 107.95 114.3 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ac3a0237-6a36-4748-9265-5d18ee70f15c") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR038") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 203.2 123.19 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c4e5869e-271d-4db1-9044-4773957a3e8a") - (property "Reference" "#PWR0a5b01" - (at 207.01 123.19 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 208.026 123.19 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 203.2 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 203.2 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 203.2 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "db753a4d-36fe-42f1-94fa-9df43adaa563") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0a5b01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 129.54 120.65 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d1e24540-41c7-4c30-ba19-966c89396a11") - (property "Reference" "C44" - (at 127 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10nF" - (at 127 119.38 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 129.54 120.65 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 120.65 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 120.65 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 129.54 120.65 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 129.54 120.65 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "fd9ac12d-ef87-4085-9b44-b5fe60a6e9f1") - ) - (pin "2" - (uuid "98818801-ec91-400d-a5b5-6cfe8c913c5e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "C44") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 133.35 29.21 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "edcde5d2-6905-421c-aaf2-fb20b0a438a6") - (property "Reference" "#PWR0df01" - (at 137.16 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 138.176 29.21 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 133.35 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 133.35 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 133.35 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "28ec0e68-6bea-4920-b159-68c2f835e91d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0df01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "FPGA_Lattice:ICE40UP5K-SG48ITR") - (at 52.07 63.5 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "ee044096-bb64-4238-8f5f-8cebd262006a") - (property "Reference" "U9" - (at 50.038 92.964 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 41.656 95.504 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (at 52.07 97.79 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at 41.91 38.1 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 52.07 63.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "22" - (uuid "30c9b1fa-9b7c-4f5f-a7a5-a636e2920fea") - ) - (pin "19" - (uuid "ac662881-963b-4c04-8d27-c63d04ae8f8e") - ) - (pin "2" - (uuid "94725479-0013-4e5c-bd2e-8b104b1130e1") - ) - (pin "6" - (uuid "57a08a68-b616-4d61-9d84-12dd152ec94e") - ) - (pin "18" - (uuid "b87890d9-3955-41c0-aea3-fc0de461390d") - ) - (pin "17" - (uuid "4adafa9a-4b7a-4073-8d6f-a81481f47817") - ) - (pin "13" - (uuid "55665886-41ae-4e8f-b668-f3cfd57b2531") - ) - (pin "15" - (uuid "6ea45240-327e-4b43-8520-f36770a51131") - ) - (pin "14" - (uuid "1c7c1d75-e652-460a-97a5-5922ee9bcd93") - ) - (pin "12" - (uuid "99599b3d-0291-4d13-a8e7-0fa6c550b8c6") - ) - (pin "11" - (uuid "f7a6ace2-2c96-411d-bba4-a35991474e77") - ) - (pin "21" - (uuid "a79badbb-4feb-4bbe-8791-c6c00ac61a4d") - ) - (pin "39" - (uuid "be92571f-e31c-40a3-af6b-e424ad9b7474") - ) - (pin "8" - (uuid "a4f4c2a8-a261-41a0-8b22-f8d764e56794") - ) - (pin "49" - (uuid "6dc73ddc-997a-463f-921a-b7a5b1565253") - ) - (pin "38" - (uuid "7168908a-251a-4b7c-8742-c7dd65e750d2") - ) - (pin "37" - (uuid "100824b6-4c38-4ea0-bdc9-dee869fb8cc5") - ) - (pin "36" - (uuid "dbe8a173-9fbd-41cb-aeb8-da1860daab34") - ) - (pin "35" - (uuid "a83a7d9a-55dd-4129-a1e8-bcd9b117d3b6") - ) - (pin "34" - (uuid "983e8f6b-5fc9-48ac-af92-548f50a3fec2") - ) - (pin "4" - (uuid "46efdbfa-267d-4a91-afa8-391db0863bfa") - ) - (pin "44" - (uuid "ac20952f-ca87-4a8e-9814-72b78cef8deb") - ) - (pin "16" - (uuid "5eed9223-5c83-4125-97d3-452791f63a6a") - ) - (pin "10" - (uuid "7351ff21-193d-4c8d-aaa2-2e7094f9fa3f") - ) - (pin "9" - (uuid "23d7d422-289e-438a-a0db-3c34041c4f3a") - ) - (pin "1" - (uuid "48178d27-4fa1-4a71-adde-ac85993155f6") - ) - (pin "45" - (uuid "f38bcd38-1c02-4896-81d9-6512b64a0434") - ) - (pin "7" - (uuid "248a71a0-b434-4b4b-86a7-cb5d45dd5b2b") - ) - (pin "3" - (uuid "d626918c-f0b5-4c92-9c00-6b100dc8ef68") - ) - (pin "46" - (uuid "e8bc60d7-ec70-4b52-bb1a-c6e8f1eceb01") - ) - (pin "20" - (uuid "6868ee3f-ef86-4449-8940-2f98d7d80f27") - ) - (pin "29" - (uuid "9d72edc7-a51b-4233-9b12-0051cc768f29") - ) - (pin "41" - (uuid "c0991113-de1e-41e8-a910-01bbfc9d8c08") - ) - (pin "40" - (uuid "10f918ba-10a4-484b-a051-17fc46b1101c") - ) - (pin "33" - (uuid "3bc45938-0c88-4a6f-854d-e23728480915") - ) - (pin "32" - (uuid "7d75700c-4397-436d-88d7-4c207a6664d3") - ) - (pin "31" - (uuid "10adbb50-076f-418f-8020-90431086e10d") - ) - (pin "28" - (uuid "b23c12f2-1364-4a21-a012-e7511feda994") - ) - (pin "27" - (uuid "9c68acb0-6223-455d-bc8e-27d0fc4c7685") - ) - (pin "26" - (uuid "5f5be551-e611-42a1-993b-e96a90fb8c49") - ) - (pin "25" - (uuid "3dc12b65-96b4-4f84-b2e4-7f2a28f10456") - ) - (pin "23" - (uuid "e8304bb3-d0c8-4f11-bf37-6a86376664ab") - ) - (pin "43" - (uuid "6a796eb9-c339-437b-bb12-d8bf5646427f") - ) - (pin "24" - (uuid "e9216d0b-f166-425e-8478-486611dca325") - ) - (pin "5" - (uuid "b030b04f-2a38-4a61-9d15-1e5c9b107c8e") - ) - (pin "30" - (uuid "fe1dda3f-77d0-487f-b208-191025b46192") - ) - (pin "47" - (uuid "a5ed0170-78d0-4345-9582-1f0f5fae17fd") - ) - (pin "48" - (uuid "0a2f3fce-1035-4377-ae4d-768423beb406") - ) - (pin "42" - (uuid "756e4719-3e84-4a2c-87db-0bc50143f7f6") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "U9") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 129.54 116.84 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "f0291548-5d07-4507-9a04-04d38735195d") - (property "Reference" "#PWR091b01" - (at 129.54 113.03 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 129.454 112.766 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 129.54 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 116.84 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "127deaa3-b3ba-4b18-97d2-2b10b5f629af") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR091b01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "FPGA_Lattice:ICE40UP5K-SG48ITR") - (at 123.19 66.04 0) - (unit 2) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "f52dbf71-c858-4ecb-99f5-da7bfda0998e") - (property "Reference" "U9" - (at 123.19 93.98 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 123.19 96.52 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (at 123.19 100.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at 113.03 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 123.19 66.04 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "22" - (uuid "9983ece7-e07a-4ddf-90fc-ebd4381ffdcd") - ) - (pin "19" - (uuid "95dbbf51-027e-40b1-8885-64e1616f485a") - ) - (pin "2" - (uuid "94725479-0013-4e5c-bd2e-8b104b1130df") - ) - (pin "6" - (uuid "124ef65c-0054-46c4-9ecb-a3b74294a793") - ) - (pin "18" - (uuid "8d521eea-54ff-4051-bb1a-b8d1f7e3fd09") - ) - (pin "17" - (uuid "efb000e7-3e44-4d68-91df-c9ba3c37d5e3") - ) - (pin "13" - (uuid "bbe7c207-2864-47a7-909b-a799572f5ddf") - ) - (pin "15" - (uuid "5499d8c6-c6fa-4224-be5a-c0064b40c8db") - ) - (pin "14" - (uuid "b186a145-5c50-4e5b-ab07-4ad10abdd6b6") - ) - (pin "12" - (uuid "9b0d9283-6e7c-4cd5-9df8-e50ff2306427") - ) - (pin "11" - (uuid "5c33c429-85b2-44f7-aeb8-d2351e4fad40") - ) - (pin "21" - (uuid "5a27ffed-a6b6-4a5a-9324-8649ed2107ee") - ) - (pin "39" - (uuid "16aef5fd-6b2e-40d3-8532-587f9720c3e3") - ) - (pin "8" - (uuid "768e3ab4-3e1b-432d-b186-2d9f05a9484c") - ) - (pin "49" - (uuid "6dc73ddc-997a-463f-921a-b7a5b1565251") - ) - (pin "38" - (uuid "b6e3874a-658e-4478-9a18-cf8013ef647a") - ) - (pin "37" - (uuid "d0c00a0a-ed27-4954-8596-d23f677c779e") - ) - (pin "36" - (uuid "b811ada2-3ce3-40cc-8afb-c8d598360185") - ) - (pin "35" - (uuid "313914a4-011f-4750-b2e0-880d631a2f09") - ) - (pin "34" - (uuid "3bed9516-c181-4549-98ba-4e10d05997a3") - ) - (pin "4" - (uuid "46efdbfa-267d-4a91-afa8-391db0863bf8") - ) - (pin "44" - (uuid "ac20952f-ca87-4a8e-9814-72b78cef8de9") - ) - (pin "16" - (uuid "07f245f5-ea49-4441-a377-04332ddc0aa6") - ) - (pin "10" - (uuid "0e251b3b-7af9-4000-ab4e-2b2ec7407b49") - ) - (pin "9" - (uuid "a7252490-7b26-4438-b5c2-05fd61ff3c0f") - ) - (pin "1" - (uuid "48178d27-4fa1-4a71-adde-ac85993155f4") - ) - (pin "45" - (uuid "f38bcd38-1c02-4896-81d9-6512b64a0432") - ) - (pin "7" - (uuid "9c2d6bda-360f-4bc2-99c3-e51ce7869213") - ) - (pin "3" - (uuid "d626918c-f0b5-4c92-9c00-6b100dc8ef66") - ) - (pin "46" - (uuid "e8bc60d7-ec70-4b52-bb1a-c6e8f1eceaff") - ) - (pin "20" - (uuid "f2df2d62-2e6b-4675-9429-01034f81ae3d") - ) - (pin "29" - (uuid "9d72edc7-a51b-4233-9b12-0051cc768f27") - ) - (pin "41" - (uuid "9c48c7d8-5833-4af8-acef-b67ce0a24712") - ) - (pin "40" - (uuid "aa4fd230-972c-4555-915f-130a8712936b") - ) - (pin "33" - (uuid "0dab9214-a465-4355-a27e-6680b7fe9ae5") - ) - (pin "32" - (uuid "06efc75e-be7b-4f19-b73b-01fd8fe6200b") - ) - (pin "31" - (uuid "31f24736-e782-46c6-816d-cc3d2e82ec53") - ) - (pin "28" - (uuid "ef9ddd0b-5501-4b54-8f75-d502215d52be") - ) - (pin "27" - (uuid "9b6126ee-8cea-46d4-98e2-3cdc0c3a4678") - ) - (pin "26" - (uuid "857d2974-82ca-48e4-8e1c-357baace8081") - ) - (pin "25" - (uuid "39f3f4b0-e0ad-4f34-826b-ca7a592ded6a") - ) - (pin "23" - (uuid "a32bb7fa-afd0-4703-874d-2bd4d1a6bbb1") - ) - (pin "43" - (uuid "b32b7cb3-ea58-4b23-ac93-4e8c50b69e13") - ) - (pin "24" - (uuid "e9216d0b-f166-425e-8478-486611dca323") - ) - (pin "5" - (uuid "b030b04f-2a38-4a61-9d15-1e5c9b107c8c") - ) - (pin "30" - (uuid "fe1dda3f-77d0-487f-b208-191025b46190") - ) - (pin "47" - (uuid "a5ed0170-78d0-4345-9582-1f0f5fae17fb") - ) - (pin "48" - (uuid "0a2f3fce-1035-4377-ae4d-768423beb404") - ) - (pin "42" - (uuid "14adcc71-f8e3-4b94-947c-36b59fd192e4") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "U9") - (unit 2) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 195.58 140.97 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "f60cdae4-8b31-469f-8a82-73dedc920a57") - (property "Reference" "#PWR0e01" - (at 195.58 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 195.58 144.78 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 195.58 140.97 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 195.58 140.97 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 195.58 140.97 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "197bf249-1e6f-47d7-bc23-e26ea146c5b3") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/73763384-ff95-4826-8da6-2de53070e62f" - (reference "#PWR0e01") - (unit 1) - ) - ) - ) - ) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Power.kicad_sch b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Power.kicad_sch deleted file mode 100644 index 4fb52a4..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Power.kicad_sch +++ /dev/null @@ -1,5527 +0,0 @@ -(kicad_sch - (version 20260306) - (generator "eeschema") - (generator_version "10.0") - (uuid "41d2e1c3-0449-4600-b58a-e05d566dda63") - (paper "A5") - (lib_symbols - (symbol "Device:C" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "C" - (at 0.635 2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "C" - (at 0.635 -2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0.9652 -3.81 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "cap capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "C_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:L" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 1.016) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "L" - (at -1.27 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "L" - (at 1.905 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Inductor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "inductor choke coil reactor magnetic" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "Choke_* *Coil* Inductor_* L_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "L_0_1" - (arc - (start 0 2.54) - (mid 0.6323 1.905) - (end 0 1.27) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 1.27) - (mid 0.6323 0.635) - (end 0 0) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 0) - (mid 0.6323 -0.635) - (end 0 -1.27) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0 -1.27) - (mid 0.6323 -1.905) - (end 0 -2.54) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "L_1_1" - (pin passive line - (at 0 3.81 270) - (length 1.27) - (name "1" - (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 "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:R" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "R" - (at 2.032 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "R" - (at 0 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "R res resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "R_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Power_Management:TPS2116DRL" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -7.874 9.144 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "TPS2116DRL" - (at 0.508 -8.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-583-8" - (at 0 -22.352 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps2116.pdf" - (at 0 1.27 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "2 Channnels Power Mux with Manual and Priority Switchover, 1.6-5.5V Input Voltage, 2.5A Output Current, Ron 40 mOhm, SOT-583-8" - (at 0 -1.016 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "Texas-Instruments power-mux switchover" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOT?5?3*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "TPS2116DRL_0_1" - (rectangle - (start -7.62 7.62) - (end 7.62 -7.62) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "TPS2116DRL_1_0" - (pin power_out line - (at 10.16 5.08 180) - (length 2.54) - (hide yes) - (name "VOUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "TPS2116DRL_1_1" - (pin power_in line - (at 0 -10.16 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 10.16 5.08 180) - (length 2.54) - (name "VOUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -10.16 5.08 0) - (length 2.54) - (name "VIN1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -10.16 2.54 0) - (length 2.54) - (name "PR1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -10.16 -2.54 0) - (length 2.54) - (name "MODE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -10.16 -5.08 0) - (length 2.54) - (name "VIN2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 10.16 -5.08 180) - (length 2.54) - (name "ST" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Regulator_Linear:AP2112K-1.2" - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -5.08 5.715 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "AP2112K-1.2" - (at 0 5.715 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 0 8.255 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" - (at 0 2.54 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.2V fixed positive output, SOT-23-5" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "linear regulator ldo fixed positive" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOT?23?5*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "AP2112K-1.2_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.2_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 yes) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "TPS562201DDCR:TPS562201DDCR" - (pin_names - (offset 1.016) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -12.7 13.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Value" "TPS562201DDCR" - (at -12.7 -16.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Footprint" "TPS562201DDCR:SOT95P280X110-6N" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "4.5 V to 17 V input, 2 A output, synchronous step-down converter in Eco-mode" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MF" "Texas Instruments" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MAXIMUM_PACKAGE_HEIGHT" "1.10 mm" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Package" "SOT-23-THN-6 Texas Instruments" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Price" "None" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Check_prices" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=eda" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "STANDARD" "IPC-7351B" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PARTREV" "A" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "SnapEDA_Link" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=snap" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MP" "TPS562201DDCR" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Availability" "In Stock" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MANUFACTURER" "Texas Instruments" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (symbol "TPS562201DDCR_0_0" - (rectangle - (start -12.7 -12.7) - (end 12.7 12.7) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin power_in line - (at 17.78 -10.16 180) - (length 5.08) - (name "GND" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "1" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin bidirectional line - (at 17.78 0 180) - (length 5.08) - (name "SW" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "2" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin power_in line - (at -17.78 10.16 0) - (length 5.08) - (name "VIN" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "3" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin input line - (at -17.78 0 0) - (length 5.08) - (name "VFB" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "4" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin input line - (at -17.78 5.08 0) - (length 5.08) - (name "EN" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "5" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin input line - (at -17.78 -5.08 0) - (length 5.08) - (name "VBST" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "6" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:GND" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#PWR" - (at 0 -6.35 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 0 -3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "global power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:PWR_FLAG" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#FLG" - (at 0 1.905 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 0 3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Special symbol for telling ERC where power comes from" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "flag power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "PWR_FLAG_0_0" - (pin power_out 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 "PWR_FLAG_0_1" - (polyline - (pts - (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (embedded_fonts no) - ) - ) - (junction - (at 151.13 87.63) - (diameter 0) - (color 0 0 0 0) - (uuid "0737f8ed-a95c-49bc-b7af-45305fc3e634") - ) - (junction - (at 92.71 77.47) - (diameter 0) - (color 0 0 0 0) - (uuid "0fcd745f-f0c9-4850-b6a3-574c63b90473") - ) - (junction - (at 60.96 22.86) - (diameter 0) - (color 0 0 0 0) - (uuid "13ae588d-1725-4312-98b9-94071c6293ce") - ) - (junction - (at 96.52 77.47) - (diameter 0) - (color 0 0 0 0) - (uuid "1fde9cf5-24ca-42f9-9f65-553eb194dcf8") - ) - (junction - (at 82.55 31.75) - (diameter 0) - (color 0 0 0 0) - (uuid "2e2f5618-92a4-447d-9fe5-96fbacb05b9f") - ) - (junction - (at 146.05 87.63) - (diameter 0) - (color 0 0 0 0) - (uuid "2fd99dcb-eaab-48d5-99ef-c8f2f4f58e8e") - ) - (junction - (at 127 39.37) - (diameter 0) - (color 0 0 0 0) - (uuid "3a79a378-0ee8-4ff3-b905-5abdca941f10") - ) - (junction - (at 134.62 87.63) - (diameter 0) - (color 0 0 0 0) - (uuid "4eceb77b-83a6-4278-8255-1f7e55e16bee") - ) - (junction - (at 82.55 77.47) - (diameter 0) - (color 0 0 0 0) - (uuid "6049bc6c-6d14-44ce-864b-a7245a9c6711") - ) - (junction - (at 137.16 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "6ce521a5-9c9f-4b54-8356-dadf6454ca2f") - ) - (junction - (at 161.29 87.63) - (diameter 0) - (color 0 0 0 0) - (uuid "b73b0be9-19f2-444f-ad82-fb9506cc0bfc") - ) - (junction - (at 62.23 87.63) - (diameter 0) - (color 0 0 0 0) - (uuid "b8b82d02-f509-46ff-97c1-845728d133ee") - ) - (junction - (at 102.87 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "bcf4dbdd-d696-4205-b06e-d19219b474c1") - ) - (junction - (at 102.87 39.37) - (diameter 0) - (color 0 0 0 0) - (uuid "d1d41515-e4b9-4ef5-a798-5d03baa24550") - ) - (junction - (at 27.94 22.86) - (diameter 0) - (color 0 0 0 0) - (uuid "d2407da0-f9aa-4828-a3ca-e72239d1292a") - ) - (junction - (at 35.56 22.86) - (diameter 0) - (color 0 0 0 0) - (uuid "d89d3ba0-c186-41a3-8b80-5d3c06b6754e") - ) - (junction - (at 128.27 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "fb3c90e2-94db-4baa-b9a9-29ca078403d0") - ) - (wire - (pts - (xy 99.06 29.21) (xy 102.87 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "02d4e34f-6f40-42b5-bae4-3f4ca19fb849") - ) - (wire - (pts - (xy 125.73 39.37) (xy 127 39.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0cf722a9-e782-4196-b950-bdd03f8a4ee3") - ) - (wire - (pts - (xy 96.52 77.47) (xy 96.52 82.55) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0ecdb7db-296a-4839-9ae9-b2591fe4ca15") - ) - (wire - (pts - (xy 143.51 87.63) (xy 146.05 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "11448130-8730-4593-aded-bfd317a0093c") - ) - (wire - (pts - (xy 35.56 22.86) (xy 38.1 22.86) - ) - (stroke - (width 0) - (type default) - ) - (uuid "158f76d5-fe6c-4624-b86b-dad9dc721d6a") - ) - (wire - (pts - (xy 35.56 25.4) (xy 38.1 25.4) - ) - (stroke - (width 0) - (type default) - ) - (uuid "19861d6f-3140-4a9b-99e4-1003b546de02") - ) - (wire - (pts - (xy 115.57 44.45) (xy 115.57 46.99) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3dbc4255-b0e2-463d-857b-2bbe975a3752") - ) - (wire - (pts - (xy 137.16 29.21) (xy 140.97 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3fdb5155-4a48-4643-a640-f6f7a659d178") - ) - (wire - (pts - (xy 146.05 83.82) (xy 146.05 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "40b8294e-5a4f-4df5-a4ba-5239ecc51595") - ) - (wire - (pts - (xy 97.79 77.47) (xy 96.52 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "472250bf-3887-4330-95bc-612e4665fb65") - ) - (wire - (pts - (xy 82.55 77.47) (xy 80.01 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "60d23d8d-0495-43aa-b8f0-ace5f86a4b53") - ) - (wire - (pts - (xy 82.55 74.93) (xy 82.55 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "675fad9c-da03-427b-86c8-c1541e24aa52") - ) - (wire - (pts - (xy 134.62 83.82) (xy 134.62 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6b675737-7aae-4a4d-aa0a-2c6825034f6c") - ) - (wire - (pts - (xy 22.86 22.86) (xy 35.56 22.86) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6dc2788b-483b-4310-9705-798c1a1f74ee") - ) - (wire - (pts - (xy 97.79 82.55) (xy 96.52 82.55) - ) - (stroke - (width 0) - (type default) - ) - (uuid "70a3cf56-1bf7-4a96-ac7e-21be555a387a") - ) - (wire - (pts - (xy 62.23 87.63) (xy 97.79 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7bc21e32-ea29-488f-a155-e03308f3f015") - ) - (wire - (pts - (xy 137.16 26.67) (xy 137.16 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7f500cdf-38ba-480c-95f2-d5c51450d9a8") - ) - (wire - (pts - (xy 102.87 26.67) (xy 102.87 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8317f232-03c0-4d4c-8f15-81bd8f98519c") - ) - (wire - (pts - (xy 128.27 29.21) (xy 137.16 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "961bb491-b3c7-446e-b9f4-cc5269553168") - ) - (wire - (pts - (xy 82.55 24.13) (xy 82.55 22.86) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9749ae1b-5217-4b5a-9e45-36a5cdb40c83") - ) - (wire - (pts - (xy 45.72 33.02) (xy 45.72 35.56) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9c29deb5-d7e8-4bda-87ab-55e962ba5e3f") - ) - (wire - (pts - (xy 93.98 92.71) (xy 97.79 92.71) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a4375ab0-5f15-4bdb-a5a5-22435d9719e8") - ) - (wire - (pts - (xy 146.05 87.63) (xy 171.45 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a6bf2fe4-5278-44c8-ad9d-270a6333e440") - ) - (wire - (pts - (xy 82.55 31.75) (xy 105.41 31.75) - ) - (stroke - (width 0) - (type default) - ) - (uuid "afc8d575-f835-4607-8b97-61ec7c4da1d6") - ) - (wire - (pts - (xy 102.87 39.37) (xy 105.41 39.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b050d684-0524-49a6-991e-1392d6201e9b") - ) - (wire - (pts - (xy 133.35 97.79) (xy 133.35 100.33) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b20331fe-bdd1-4920-85e2-75d78dc0ab0b") - ) - (wire - (pts - (xy 134.62 87.63) (xy 135.89 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b3eddac2-f171-4a86-8096-b3d49ca0139b") - ) - (wire - (pts - (xy 127 39.37) (xy 129.54 39.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b95e658d-60c4-440a-ba32-b8fc0314f864") - ) - (wire - (pts - (xy 92.71 74.93) (xy 92.71 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c0ac94ba-57d7-4645-ad85-b6bd1bdfb2ed") - ) - (wire - (pts - (xy 35.56 22.86) (xy 35.56 25.4) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c2c5b6a9-caf3-4acd-844f-59d26f07f15f") - ) - (wire - (pts - (xy 127 41.91) (xy 127 39.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c755fc4d-5252-4b96-b813-74f2404cd409") - ) - (wire - (pts - (xy 127 49.53) (xy 127 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cef5cb30-07fc-4a03-94bb-973fc4cdfeb2") - ) - (wire - (pts - (xy 53.34 22.86) (xy 66.04 22.86) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d3fa5df0-427c-4fc0-a0b2-30abaa4bcf7c") - ) - (wire - (pts - (xy 99.06 36.83) (xy 105.41 36.83) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dc84fdaa-1e9e-465b-9ecc-f6feb1a70ee7") - ) - (wire - (pts - (xy 82.55 77.47) (xy 92.71 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dd406685-db91-4f9b-bf7c-eff54e417c11") - ) - (wire - (pts - (xy 102.87 41.91) (xy 102.87 39.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e2dbf912-b270-4270-b8c4-67f41068e2f3") - ) - (wire - (pts - (xy 133.35 87.63) (xy 134.62 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ed0e9f45-2965-435c-a850-e1565fd81332") - ) - (wire - (pts - (xy 102.87 29.21) (xy 105.41 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ee234b4a-d5fa-4eca-8390-19811606e2b4") - ) - (wire - (pts - (xy 83.82 92.71) (xy 86.36 92.71) - ) - (stroke - (width 0) - (type default) - ) - (uuid "eed99385-e5ec-4e82-b6ad-fc7507eb324b") - ) - (wire - (pts - (xy 92.71 77.47) (xy 96.52 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f4d5f287-2eaa-40b9-8d5d-12f3e11bf90e") - ) - (wire - (pts - (xy 99.06 39.37) (xy 102.87 39.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f738dc9d-f3ba-4c17-9ea6-5854f7885aa2") - ) - (wire - (pts - (xy 125.73 29.21) (xy 128.27 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ffb6ac39-6c86-4f59-ad05-b5a1374fd30d") - ) - (label "12V_EXI" - (at 74.93 67.31 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "20bdffca-8f4c-4f99-a74a-c9c720883cac") - ) - (label "GC_3V3" - (at 62.23 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "24a5e3a5-7e14-49b8-b168-462fa6026856") - ) - (label "GC_3V3" - (at 99.06 36.83 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "52b0dd44-8380-47ea-ac87-44519978d376") - ) - (label "3V3" - (at 127 52.07 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "648e4d63-f213-40fb-ab83-aae3761f06b6") - ) - (label "GC_3V3" - (at 99.06 29.21 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "685161da-2cdf-4c1b-80dc-958129f73b82") - ) - (label "3V3" - (at 22.86 22.86 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "6f1a0afd-a174-436f-9104-89f683691d49") - ) - (label "GC_3V3" - (at 146.05 83.82 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "7120ed81-dd31-48e4-ab1b-d669d1322667") - ) - (label "3V3" - (at 137.16 26.67 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "71ea9cf8-39c4-449c-a9d2-e650ab415d0e") - ) - (label "SWN" - (at 134.62 83.82 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "8a0af4fb-9bc6-43cd-9935-7e0972cf9651") - ) - (label "GC_3V3" - (at 82.55 22.86 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "ce724406-6536-48e5-9e29-909c5efdcdea") - ) - (label "SWN" - (at 83.82 92.71 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "e456964b-75fb-4e2a-99c8-73f770f80143") - ) - (hierarchical_label "3V3" - (shape output) - (at 140.97 29.21 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "185e45d0-a647-4878-bfde-10b1d5135d81") - ) - (hierarchical_label "1V2" - (shape output) - (at 66.04 22.86 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "44e0ee48-7416-4151-96ba-4ff4000b2fd3") - ) - (hierarchical_label "GC_ON" - (shape output) - (at 129.54 39.37 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "73b8d648-206b-4b96-ab6b-fed966e03c81") - ) - (hierarchical_label "12V_EXI" - (shape input) - (at 80.01 77.47 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "87844e30-7b53-4e7e-968a-9d5094cb57a6") - ) - (hierarchical_label "USB_3V3" - (shape input) - (at 99.06 39.37 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "f56a60e2-7046-4bcc-b711-fac7b07a937e") - ) - (symbol - (lib_id "Device:C") - (at 151.13 91.44 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "061562c8-1c03-4562-a12a-753df40e89e5") - (property "Reference" "C10" - (at 153.67 90.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "22uF" - (at 153.67 92.71 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (at 151.13 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 151.13 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 151.13 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 151.13 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 151.13 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a9d514c0-6556-4171-aa6d-61af2291b485") - ) - (pin "2" - (uuid "70fcfd7b-531e-48fd-8d93-e4319e214dcd") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C10") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 82.55 71.12 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "0abc5ec0-734c-4ff0-a352-5b251befe437") - (property "Reference" "C4" - (at 85.09 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10uF" - (at 85.09 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 82.55 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 82.55 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 82.55 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 82.55 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "25V" - (at 82.55 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "8bb5a4a1-3e4d-4d19-91d6-afeda0768c95") - ) - (pin "2" - (uuid "ff363f77-8e24-4374-88a9-2a686f928409") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C4") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 60.96 26.67 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "15183678-c2b8-4762-8391-d50dbec9b01f") - (property "Reference" "C2" - (at 63.5 25.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1uF" - (at 63.5 27.94 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 60.96 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 60.96 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 60.96 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 60.96 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 60.96 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "25979844-a6cc-495c-b52a-175319c95642") - ) - (pin "2" - (uuid "f07005c1-920b-4618-ac04-2b26e8a429ba") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 82.55 27.94 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "15194bd9-79db-4391-90a1-5d3f68e56164") - (property "Reference" "R3" - (at 83.566 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "200k" - (at 83.566 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 82.55 27.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 82.55 27.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 82.55 27.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "1%" - (at 82.55 27.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "388ba853-95fd-4014-8922-f6786fec1f5a") - ) - (pin "2" - (uuid "d4f5d3d8-f8c6-486a-9218-4a3ed59b68e8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "R3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 74.93 71.12 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "17d4e916-c91e-4b00-87a8-a49e744912b2") - (property "Reference" "C3" - (at 77.47 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10uF" - (at 77.47 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 74.93 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 74.93 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 74.93 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 74.93 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "25V" - (at 74.93 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0a8d6f9a-5426-4b72-9067-d7434f0fe302") - ) - (pin "2" - (uuid "36ce5c24-f90a-4266-be60-4eed07f540cb") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 74.93 74.93 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2b6789c2-e304-45d0-ae60-2f8a65837eaf") - (property "Reference" "#PWR0C01" - (at 74.93 78.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 74.93 78.74 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 74.93 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 74.93 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 74.93 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "bdc23804-debb-408e-bc3e-b0c1afabba71") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR0C01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:L") - (at 139.7 87.63 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2c31491d-3762-4175-b904-210bd0b09ed2") - (property "Reference" "L1" - (at 139.7 85.852 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "2.2uH" - (at 142.494 89.154 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Inductor_SMD:L_Changjiang_FNR4018S" - (at 139.7 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 139.7 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 139.7 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7e3db2b0-1cb6-413b-9641-9e6b0ca4d1be") - ) - (pin "2" - (uuid "317998ee-f735-45f4-a7bf-f327dfac27d0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "L1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 82.55 39.37 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2d0c6441-90dd-46af-8d1a-5609f32ee303") - (property "Reference" "#PWR05" - (at 82.55 43.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 84.836 39.624 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 82.55 39.37 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 82.55 39.37 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 82.55 39.37 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7fef03ee-01d8-496a-9df9-67729b632297") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR05") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 82.55 35.56 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "33ce72fd-76d9-4897-b8ff-3769cd2a7734") - (property "Reference" "R4" - (at 83.566 34.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100k" - (at 83.566 36.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 82.55 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 82.55 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 82.55 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "1%" - (at 82.55 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "344c45b3-c0e8-4d2e-b7da-5c74c74d560a") - ) - (pin "2" - (uuid "fa60e8d1-e6e1-42f6-893f-b2297b70fb2a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "R4") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Power_Management:TPS2116DRL") - (at 115.57 34.29 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "37da5052-c537-4eaf-931c-04725a54b211") - (property "Reference" "U2" - (at 123.444 34.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "TPS2116DRL" - (at 109.982 25.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-583-8" - (at 115.57 34.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 115.57 34.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 115.57 34.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "db164c94-fa66-4d3b-ab73-7cc62e4e6786") - ) - (pin "2" - (uuid "6100f2e4-2423-4ae5-abdc-2b5f6ef12865") - ) - (pin "3" - (uuid "3afd9cc8-1695-47b3-a37e-7de03a3fb2e1") - ) - (pin "4" - (uuid "12a24e06-fc8d-4f3d-83f2-46d34aa4f940") - ) - (pin "5" - (uuid "7f448601-7eb6-4e78-a145-0a906f059e40") - ) - (pin "6" - (uuid "fed58cd6-4839-4556-9b8f-01a81bfcfb4a") - ) - (pin "7" - (uuid "a2afcc3d-8ad0-4199-b8f1-e8549b469948") - ) - (pin "8" - (uuid "2cf70875-a9f1-4653-8e21-609aabafde67") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "U2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 62.23 83.82 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "3af0a60c-0acb-4283-ae24-9e595fefdf76") - (property "Reference" "R1" - (at 64.77 82.55 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "33k" - (at 64.77 85.09 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 62.23 83.82 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 83.82 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 83.82 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "1%" - (at 62.23 83.82 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ac78edd6-4dda-41c3-9ce9-9c7b3e94c443") - ) - (pin "2" - (uuid "035d96ad-7048-4bdc-bf17-45e0d7929ece") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "R1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 27.94 26.67 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "40418d5d-4330-4011-bbd6-b7348f3de494") - (property "Reference" "C1" - (at 30.48 25.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1uF" - (at 30.48 27.94 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 27.94 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 27.94 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 27.94 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 27.94 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 27.94 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "89e56ccc-9537-4d91-a1b0-a339129063e6") - ) - (pin "2" - (uuid "f79bf680-605b-4818-8609-f687264ddeab") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 161.29 91.44 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "41c047ab-784c-4a5c-a507-14eec8340455") - (property "Reference" "C11" - (at 163.83 90.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "22uF" - (at 163.83 92.71 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (at 161.29 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 161.29 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 161.29 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 161.29 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 161.29 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "b1ffebf3-a858-42a0-9ea5-a42d963a0920") - ) - (pin "2" - (uuid "10037fba-a549-4506-b663-2ac419cd2fa8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C11") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 161.29 95.25 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "42b70a71-894c-42e6-94ee-22b4392c5f2d") - (property "Reference" "#PWR014" - (at 161.29 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 163.322 95.504 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 161.29 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 161.29 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 161.29 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "24034697-2a63-4273-b063-c2b0076436c0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR014") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 128.27 25.4 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4958bf79-3bd3-40cb-921a-918c2513cac6") - (property "Reference" "C9" - (at 130.81 24.13 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "22uF" - (at 130.81 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (at 128.27 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 128.27 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 128.27 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 128.27 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 128.27 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c23ba78e-179d-40a2-8f1f-c081ec24ff9e") - ) - (pin "2" - (uuid "fd5cdf24-f741-4df6-b6c3-db7c45484786") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C9") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 171.45 95.25 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4a50d1fe-28eb-4764-b9e5-866bfe48ec9e") - (property "Reference" "#PWR015" - (at 171.45 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 173.482 95.504 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 171.45 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 171.45 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 171.45 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "9f33f524-ec95-40d4-bb15-1f9064f92140") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR015") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 171.45 91.44 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "53ffa1a8-eeb5-4671-8e4b-3b28c92f6fbe") - (property "Reference" "C12" - (at 173.99 90.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 173.99 92.71 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 171.45 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 171.45 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 171.45 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 171.45 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 171.45 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0978ae6b-cfc6-4a9b-af76-3ae6d3872a16") - ) - (pin "2" - (uuid "a0f5e1d5-4e5c-4748-9d36-823e79e80015") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C12") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 82.55 67.31 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "63e65b40-e1d8-4efe-9730-3b805ba1b049") - (property "Reference" "#PWR06" - (at 82.55 63.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 80.518 67.056 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 82.55 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 82.55 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 82.55 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "17c690c7-127d-4e2f-b2da-ed1ace7bd28d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR06") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 102.87 45.72 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "66fe99cb-c32f-475c-a312-9024c18895ef") - (property "Reference" "C8" - (at 100.33 43.434 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 103.378 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 103.8352 49.53 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 102.87 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 102.87 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 102.87 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 102.87 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "2" - (uuid "cd71f894-771c-4035-9d80-858b214ed6d6") - ) - (pin "1" - (uuid "f1d97b1b-0b8f-414c-bd91-cc310d85000d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C8") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 90.17 92.71 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "69c1caed-4aed-487e-8a01-11a407bf27c4") - (property "Reference" "C5" - (at 95.504 89.662 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 93.218 96.266 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 90.17 92.71 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 90.17 92.71 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 90.17 92.71 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 90.17 92.71 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "50V" - (at 90.17 92.71 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "3df600ee-d1ea-4839-8bd5-7453b28c3639") - ) - (pin "2" - (uuid "dc88cc82-f52a-4dc9-8cae-e80fed6d8fa3") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C5") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 133.35 100.33 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "6f91a2be-e051-49fe-9b87-b8f26c829315") - (property "Reference" "#PWR012" - (at 133.35 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 133.35 96.52 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 133.35 100.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 133.35 100.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 133.35 100.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a4b24061-b51d-45eb-a4db-ea6d94f90247") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR012") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Regulator_Linear:AP2112K-1.2") - (at 45.72 25.4 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "716fa60f-7749-409d-a712-77c479795cf7") - (property "Reference" "U1" - (at 50.8 25.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "AP2112K-1.2" - (at 39.37 19.812 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 45.72 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 45.72 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 45.72 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d6901e1c-f0fb-461e-894d-dec2407a9d5f") - ) - (pin "2" - (uuid "9958d1e7-dfe5-4199-9e9b-67df23d80875") - ) - (pin "3" - (uuid "92df05ab-42f9-4842-a371-d46698a5d022") - ) - (pin "4" - (uuid "91362c0a-002f-4d22-8740-88cd140d871f") - ) - (pin "5" - (uuid "05e34268-618f-4336-82cc-f4090b795ca8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "U1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 92.71 71.12 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "7686a45c-971a-4307-b5b9-b2b911dd1aae") - (property "Reference" "C6" - (at 95.25 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 95.25 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 92.71 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 92.71 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 92.71 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 92.71 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "50V" - (at 92.71 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7fa6668a-e01c-4a88-9fcb-bc8cddf9401f") - ) - (pin "2" - (uuid "44cbb38a-f106-4fde-820f-5190648fdcb3") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C6") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "TPS562201DDCR:TPS562201DDCR") - (at 115.57 87.63 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "8949102c-9b07-42a5-8fc0-460e3ea3148a") - (property "Reference" "U3" - (at 128.27 83.312 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "TPS562201DDCR" - (at 107.696 73.914 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "hardware:SOT95P280X110-6N" - (at 115.57 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 115.57 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 115.57 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "99c0d954-326f-449b-97d7-f85d920b1f05") - ) - (pin "2" - (uuid "f2e9a245-56c5-49b3-a4cd-6d76b368d2a6") - ) - (pin "3" - (uuid "4dbf28df-c38c-4673-9f63-0592d3a6bb7f") - ) - (pin "4" - (uuid "d4d8235d-03e4-4507-a21a-135fd934ef92") - ) - (pin "5" - (uuid "999dd056-e7c6-4970-b2ed-f8ed16b6ed06") - ) - (pin "6" - (uuid "4801fc65-b142-46de-be18-8436a2c3f7eb") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "U3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 102.87 22.86 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "8f54c9f3-e53d-4118-884b-00d1cdd5d9be") - (property "Reference" "C7" - (at 100.076 20.574 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 103.378 25.146 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 103.8352 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 102.87 22.86 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 102.87 22.86 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 102.87 22.86 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 102.87 22.86 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "2" - (uuid "728a088d-47da-4b3b-8c20-60d4f6db9392") - ) - (pin "1" - (uuid "9a0805f7-5a2d-498e-aef5-d2bb3a9a9ee9") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "C7") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 60.96 30.48 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "921502ae-2db2-43df-90db-53e69846c1cb") - (property "Reference" "#PWR03" - (at 60.96 34.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 62.992 30.734 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 60.96 30.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 60.96 30.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 60.96 30.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "06f56c06-4845-4955-9434-d7c77ee51d26") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR03") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 115.57 46.99 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "98c0d80a-85e4-43eb-b3c5-dde77f78aaa2") - (property "Reference" "#PWR010" - (at 115.57 50.8 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 117.602 47.244 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 115.57 46.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 115.57 46.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 115.57 46.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e58d9444-e5b0-4f88-8a77-8d2bf41677f0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR010") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 128.27 21.59 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "9cc052e4-c794-4f49-b983-07eb8c834921") - (property "Reference" "#PWR011" - (at 128.27 17.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 130.302 21.59 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 128.27 21.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 128.27 21.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 128.27 21.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d25d2671-f02f-43b5-b013-1e0f5997b792") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR011") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 62.23 95.25 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a0167489-15d1-4797-b8c8-4cae98d1f965") - (property "Reference" "#PWR04" - (at 62.23 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 64.516 95.504 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 62.23 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "abad485a-2631-4f98-9109-83a638d2a3e0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR04") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 102.87 19.05 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c3e9555b-5320-4346-ac40-737c81a118de") - (property "Reference" "#PWR08" - (at 102.87 15.24 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 102.87 14.986 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 102.87 19.05 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 102.87 19.05 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 102.87 19.05 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "f902ecbc-4ff9-4983-b85c-70293f6b889a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR08") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 92.71 67.31 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d2d4f3fb-59d7-4a11-99c1-cb7631b273c7") - (property "Reference" "#PWR07" - (at 92.71 63.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 90.678 67.056 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 92.71 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 92.71 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 92.71 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e1373c6d-1b70-4774-9506-fde22ad41bf7") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR07") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 127 45.72 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d3f8a728-ecb0-4726-bcef-5f87406081d8") - (property "Reference" "R5" - (at 132.334 46.99 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10k" - (at 132.08 44.45 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 127 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 127 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 127 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 127 45.72 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "be9a83cc-02e3-485e-85fd-f932720edef2") - ) - (pin "2" - (uuid "40813e1f-2a5e-42e1-b87f-1fd99d1d8b31") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "R5") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 102.87 49.53 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d42ebf44-17ca-4cb7-83f5-fed4043b48e0") - (property "Reference" "#PWR09" - (at 102.87 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 102.87 53.594 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 102.87 49.53 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 102.87 49.53 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 102.87 49.53 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "bdc05294-184d-448a-9c6e-786517dc3a16") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR09") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 62.23 91.44 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "dbd2e12a-da5d-4b10-9a44-b30c81d5cd46") - (property "Reference" "R2" - (at 64.77 90.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10k" - (at 64.77 92.71 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 62.23 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "1%" - (at 62.23 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "8587e157-04fd-4e46-92df-9559ee1955b2") - ) - (pin "2" - (uuid "6c5ae298-994a-473d-99f9-9639b693a37f") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "R2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 45.72 35.56 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e237ef34-abaa-4c34-9e38-598df8bdb2c3") - (property "Reference" "#PWR02" - (at 45.72 39.37 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 48.006 35.814 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 45.72 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 45.72 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 45.72 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "bb1091b4-1c83-4c88-b488-8c30cec3b8d7") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR02") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 27.94 30.48 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e2652310-d772-4dbe-be6c-bffb1d0dff4e") - (property "Reference" "#PWR01" - (at 27.94 34.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 29.972 30.734 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 27.94 30.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 27.94 30.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 27.94 30.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ee4e1e34-7f40-4ebd-baf1-6c7a1a8f903a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 151.13 95.25 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e323df81-ba3f-4590-abae-1b2c3847fd9e") - (property "Reference" "#PWR013" - (at 151.13 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 153.162 95.504 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 151.13 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 151.13 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 151.13 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "41f9bb88-ced9-4acc-b715-1c7ac63539b3") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#PWR013") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 105.41 29.21 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "edffd2ca-932c-4ceb-8fa8-76473208d68a") - (property "Reference" "#FLG0GC3V01" - (at 105.41 25.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 105.41 31.75 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 105.41 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 105.41 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 105.41 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "8371f3ef-04fd-47ce-bad4-24c450c2726f") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/69f32f10-d46b-43fd-9030-7f4135d40b78" - (reference "#FLG0GC3V01") - (unit 1) - ) - ) - ) - ) - (sheet_instances - (path "/" - (page "2") - ) - ) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/ReBbaRb-lib b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/ReBbaRb-lib deleted file mode 100644 index 7d09c38..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/ReBbaRb-lib +++ /dev/null @@ -1,5 +0,0 @@ -(kicad_symbol_lib - (version 20251024) - (generator "kicad_symbol_editor") - (generator_version "10.0") -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Usb Connector.kicad_sch b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Usb Connector.kicad_sch deleted file mode 100644 index e5fe859..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/Usb Connector.kicad_sch +++ /dev/null @@ -1,14010 +0,0 @@ -(kicad_sch - (version 20260306) - (generator "eeschema") - (generator_version "10.0") - (uuid "11111111-2222-3333-4444-555555555555") - (paper "A3") - (lib_symbols - (symbol "Connector:USB_C_Receptacle_USB2.0_16P" - (pin_names - (offset 1.016) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "J" - (at 0 22.225 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "USB_C_Receptacle_USB2.0_16P" - (at 0 19.685 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 3.81 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" - (at 3.81 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "USB 2.0-only 16P Type-C Receptacle connector" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "usb universal serial bus type-C USB2.0" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "USB*C*Receptacle*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "USB_C_Receptacle_USB2.0_16P_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 15.494) - (end 9.144 14.986) - (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 7.874) - (end 9.144 7.366) - (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 0.254) - (end 9.144 -0.254) - (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 -4.826) - (end 9.144 -5.334) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -12.446) - (end 9.144 -12.954) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 10.16 -14.986) - (end 9.144 -15.494) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "USB_C_Receptacle_USB2.0_16P_0_1" - (rectangle - (start -10.16 17.78) - (end 10.16 -17.78) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (polyline - (pts - (xy -8.89 -3.81) (xy -8.89 3.81) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -7.62 -3.81) - (end -6.35 3.81) - (stroke - (width 0.254) - (type default) - ) - (fill - (type outline) - ) - ) - (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) - ) - ) - (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 -5.08 -3.81) - (mid -6.985 -5.7067) - (end -8.89 -3.81) - (stroke - (width 0.508) - (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 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) - ) - ) - (polyline - (pts - (xy -5.08 3.81) (xy -5.08 -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) - ) - ) - (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) - ) - ) - (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 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 -5.842) (xy 0 4.318) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 0 -5.842) - (radius 1.27) - (stroke - (width 0) - (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_16P_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 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 bidirectional line - (at 15.24 -12.7 180) - (length 5.08) - (name "SBU1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 15.24 15.24 180) - (length 5.08) - (hide yes) - (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 yes) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "A12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -22.86 90) - (length 5.08) - (hide yes) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 15.24 15.24 180) - (length 5.08) - (hide yes) - (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 bidirectional line - (at 15.24 -15.24 180) - (length 5.08) - (name "SBU2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 15.24 15.24 180) - (length 5.08) - (hide yes) - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -22.86 90) - (length 5.08) - (hide yes) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "B12" - (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 "SH" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:C" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "C" - (at 0.635 2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "C" - (at 0.635 -2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0.9652 -3.81 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "cap capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "C_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:Crystal_GND24" - (pin_names - (offset 1.016) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "Y" - (at 3.175 5.08 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "Crystal_GND24" - (at 3.175 3.175 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Four pin crystal, GND on pins 2 and 4" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property private "KLC_S3.3" "The rectangle is not a symbol body but a graphical element" - (at 0 -12.7 0) - (show_name yes) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property private "KLC_S4.1" "Some pins are on 50mil grid to make the symbol small" - (at 0 -15.24 0) - (show_name yes) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "quartz ceramic resonator oscillator" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "Crystal*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "Crystal_GND24_0_1" - (polyline - (pts - (xy -2.54 2.286) (xy -2.54 3.556) (xy 2.54 3.556) (xy 2.54 2.286) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 0) (xy -2.032 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 -2.286) (xy -2.54 -3.556) (xy 2.54 -3.556) (xy 2.54 -2.286) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.032 -1.27) (xy -2.032 1.27) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -1.143 2.54) - (end 1.143 -2.54) - (stroke - (width 0.3048) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -3.81) (xy 0 -3.556) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.032 0) (xy 2.54 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.032 -1.27) (xy 2.032 1.27) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "Crystal_GND24_1_1" - (pin passive line - (at -3.81 0 0) - (length 1.27) - (name "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -5.08 90) - (length 1.27) - (name "G" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 3.81 0 180) - (length 1.27) - (name "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -5.08 90) - (length 1.27) - (hide yes) - (name "G" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:FerriteBead_Small" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "FB" - (at 1.905 1.27 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "FerriteBead_Small" - (at 1.905 -1.27 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Ferrite bead, small symbol" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "L ferrite bead inductor filter" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "FerriteBead_Small_0_1" - (polyline - (pts - (xy -1.8288 0.2794) (xy -1.1176 1.4986) (xy 1.8288 -0.2032) (xy 1.1176 -1.4224) (xy -1.8288 0.2794) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 0.889) (xy 0 1.2954) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -1.27) (xy 0 -0.7874) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "FerriteBead_Small_1_1" - (pin passive line - (at 0 2.54 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 -2.54 90) - (length 1.27) - (name "" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:R" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "R" - (at 2.032 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "R" - (at 0 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "R res resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "R_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Interface_USB:ADUM4160" - (pin_names - (offset 1.016) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -10.16 13.97 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "ADUM4160" - (at 3.81 13.97 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (at 0 -17.78 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM4160.pdf" - (at -5.08 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Full/Low Speed, iCoupler USB Digital Isolator, 5kV protection, SOIC-16" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "usb isolation" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOIC*7.5x10.3mm*P1.27mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "ADUM4160_0_0" - (text "Logic" - (at 8.89 -12.065 900) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - ) - (symbol "ADUM4160_0_1" - (rectangle - (start -10.16 12.7) - (end 10.16 -12.7) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (polyline - (pts - (xy -1.27 12.7) (xy -1.27 10.16) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 8.89) (xy -1.27 6.35) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 5.08) (xy -1.27 2.54) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 1.27) (xy -1.27 -1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 -2.54) (xy -1.27 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 -6.35) (xy -1.27 -8.89) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 -10.16) (xy -1.27 -12.7) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 12.7) (xy 1.27 10.16) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 8.89) (xy 1.27 6.35) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 5.08) (xy 1.27 2.54) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 1.27) (xy 1.27 -1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 -2.54) (xy 1.27 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 -6.35) (xy 1.27 -8.89) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.27 -10.16) (xy 1.27 -12.7) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "ADUM4160_1_0" - (text "USB" - (at -8.89 -12.065 900) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - ) - (symbol "ADUM4160_1_1" - (pin power_in line - (at -2.54 15.24 270) - (length 2.54) - (name "VBUS1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 -15.24 90) - (length 2.54) - (name "GND1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 10.16 0) - (length 2.54) - (name "VDD1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -12.7 -2.54 0) - (length 2.54) - (name "PDEN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -12.7 -5.08 0) - (length 2.54) - (name "SPU" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 0 0) - (length 2.54) - (name "UD-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -12.7 2.54 0) - (length 2.54) - (name "UD+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 -15.24 90) - (length 2.54) - (name "GND1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -15.24 90) - (length 2.54) - (name "GND2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 12.7 2.54 180) - (length 2.54) - (name "DD+" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 12.7 0 180) - (length 2.54) - (name "DD-" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 12.7 7.62 180) - (length 2.54) - (name "PIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 12.7 -5.08 180) - (length 2.54) - (name "SPD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 12.7 10.16 180) - (length 2.54) - (name "VDD2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 -15.24 90) - (length 2.54) - (name "GND2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 15.24 270) - (length 2.54) - (name "VBUS2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Interface_USB:FT2232HL" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -26.67 53.34 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "FT2232HL" - (at 19.05 53.34 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_QFP:LQFP-64_10x10mm_P0.5mm" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Hi Speed Double Channel USB UART/FIFO, LQFP-64" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "USB Double UART FIFO" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "LQFP*10x10mm*P0.5mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "FT2232HL_0_1" - (rectangle - (start -26.67 -52.07) - (end 26.67 52.07) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "FT2232HL_1_1" - (pin power_in line - (at -10.16 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -30.48 -30.48 0) - (length 3.81) - (name "OSCI" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -30.48 -40.64 0) - (length 3.81) - (name "OSCO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 55.88 270) - (length 3.81) - (name "VPHY" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -7.62 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -30.48 15.24 0) - (length 3.81) - (name "REF" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -30.48 22.86 0) - (length 3.81) - (name "DM" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -30.48 20.32 0) - (length 3.81) - (name "DP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -10.16 55.88 270) - (length 3.81) - (name "VPLL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -15.24 -55.88 90) - (length 3.81) - (name "AGND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 55.88 270) - (length 3.81) - (name "VCORE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -30.48 -45.72 0) - (length 3.81) - (name "TEST" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -30.48 10.16 0) - (length 3.81) - (name "~{RESET}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 48.26 180) - (length 3.81) - (name "ADBUS0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 45.72 180) - (length 3.81) - (name "ADBUS1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 43.18 180) - (length 3.81) - (name "ADBUS2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 40.64 180) - (length 3.81) - (name "ADBUS3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 55.88 270) - (length 3.81) - (name "VCCIO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 38.1 180) - (length 3.81) - (name "ADBUS4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 35.56 180) - (length 3.81) - (name "ADBUS5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 33.02 180) - (length 3.81) - (name "ADBUS6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 30.48 180) - (length 3.81) - (name "ADBUS7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 25.4 180) - (length 3.81) - (name "ACBUS0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 22.86 180) - (length 3.81) - (name "ACBUS1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 20.32 180) - (length 3.81) - (name "ACBUS2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 17.78 180) - (length 3.81) - (name "ACBUS3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 15.24 180) - (length 3.81) - (name "ACBUS4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 7.62 55.88 270) - (length 3.81) - (name "VCCIO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 12.7 180) - (length 3.81) - (name "ACBUS5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 10.16 180) - (length 3.81) - (name "ACBUS6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 7.62 180) - (length 3.81) - (name "ACBUS7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "34" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "35" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 30.48 -45.72 180) - (length 3.81) - (name "~{SUSPEND}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "36" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 55.88 270) - (length 3.81) - (name "VCORE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "37" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 2.54 180) - (length 3.81) - (name "BDBUS0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "38" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 0 180) - (length 3.81) - (name "BDBUS1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "39" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -2.54 180) - (length 3.81) - (name "BDBUS2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "40" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -5.08 180) - (length 3.81) - (name "BDBUS3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "41" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 10.16 55.88 270) - (length 3.81) - (name "VCCIO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "42" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -7.62 180) - (length 3.81) - (name "BDBUS4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "43" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -10.16 180) - (length 3.81) - (name "BDBUS5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "44" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -12.7 180) - (length 3.81) - (name "BDBUS6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "45" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -15.24 180) - (length 3.81) - (name "BDBUS7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "46" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "47" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -20.32 180) - (length 3.81) - (name "BCBUS0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "48" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at -30.48 43.18 0) - (length 3.81) - (name "VREGOUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "49" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -30.48 48.26 0) - (length 3.81) - (name "VREGIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "50" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 7.62 -55.88 90) - (length 3.81) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "51" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -22.86 180) - (length 3.81) - (name "BCBUS1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "52" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -25.4 180) - (length 3.81) - (name "BCBUS2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "53" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -27.94 180) - (length 3.81) - (name "BCBUS3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "54" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -30.48 180) - (length 3.81) - (name "BCBUS4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "55" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 12.7 55.88 270) - (length 3.81) - (name "VCCIO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "56" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -33.02 180) - (length 3.81) - (name "BCBUS5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "57" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -35.56 180) - (length 3.81) - (name "BCBUS6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "58" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at 30.48 -38.1 180) - (length 3.81) - (name "BCBUS7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "59" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 30.48 -43.18 180) - (length 3.81) - (name "~{PWREN}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "60" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -30.48 -22.86 0) - (length 3.81) - (name "EEDATA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "61" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -30.48 -20.32 0) - (length 3.81) - (name "EECLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "62" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -30.48 -17.78 0) - (length 3.81) - (name "EECS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "63" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 55.88 270) - (length 3.81) - (name "VCORE" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "64" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Memory_EEPROM:93LCxxB" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -7.62 6.35 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "93LCxxB" - (at 2.54 -6.35 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001749K.pdf" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Serial EEPROM, 93 Series, 2.5V, DIP-8/SOIC-8" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "EEPROM memory Microwire" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "DIP*W7.62mm* SOIC*3.9x4.9mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "93LCxxB_1_1" - (rectangle - (start -7.62 5.08) - (end 7.62 -5.08) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin input line - (at -10.16 2.54 0) - (length 2.54) - (name "CS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 10.16 2.54 180) - (length 2.54) - (name "SCLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 10.16 0 180) - (length 2.54) - (name "DI" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin tri_state line - (at 10.16 -2.54 180) - (length 2.54) - (name "DO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (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 "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at -7.62 0 0) - (length 2.54) - (hide yes) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at -7.62 -2.54 0) - (length 2.54) - (hide yes) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 0 7.62 270) - (length 2.54) - (name "VCC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Power_Protection:USBLC6-2SC6" - (pin_names - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at 0.635 5.715 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "USBLC6-2SC6" - (at 0.635 3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" - (at 1.27 -6.35 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - (italic yes) - ) - (justify left) - ) - ) - (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" - (at 1.27 -8.255 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "usb ethernet video" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOT?23*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "USBLC6-2SC6_0_0" - (circle - (center -1.524 0) - (radius 0.0001) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -0.508 2.032) - (radius 0.0001) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -0.508 -4.572) - (radius 0.0001) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 0.508 2.032) - (radius 0.0001) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 0.508 -4.572) - (radius 0.0001) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 1.524 -2.54) - (radius 0.0001) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "USBLC6-2SC6_0_1" - (polyline - (pts - (xy -2.54 0) (xy 2.54 0) - ) - (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.032 0.508) (xy -1.016 0.508) (xy -1.524 1.524) (xy -2.032 0.508) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.032 -3.048) (xy -1.016 -3.048) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.016 1.524) (xy -2.032 1.524) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.016 -4.064) (xy -2.032 -4.064) (xy -1.524 -3.048) (xy -1.016 -4.064) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -0.508 -1.143) (xy -0.508 -0.762) (xy 0.508 -0.762) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 2.54) (xy -0.508 2.032) (xy 0.508 2.032) (xy 0 1.524) (xy 0 -4.064) (xy -0.508 -4.572) (xy 0.508 -4.572) - (xy 0 -5.08) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.508 -1.778) (xy -0.508 -1.778) (xy 0 -0.762) (xy 0.508 -1.778) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.016 1.524) (xy 2.032 1.524) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 1.016 -3.048) (xy 2.032 -3.048) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.032 0.508) (xy 1.016 0.508) (xy 1.524 1.524) (xy 2.032 0.508) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.032 -4.064) (xy 1.016 -4.064) (xy 1.524 -3.048) (xy 2.032 -4.064) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "USBLC6-2SC6_1_1" - (rectangle - (start -2.54 2.794) - (end 2.54 -5.334) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (polyline - (pts - (xy -0.508 2.032) (xy -1.524 2.032) (xy -1.524 -4.572) (xy -0.508 -4.572) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.508 -4.572) (xy 1.524 -4.572) (xy 1.524 2.032) (xy 0.508 2.032) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (pin passive line - (at -5.08 0 0) - (length 2.54) - (name "I/O1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive 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 passive line - (at -5.08 -2.54 0) - (length 2.54) - (name "I/O2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 5.08 -2.54 180) - (length 2.54) - (name "I/O2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 5.08 270) - (length 2.54) - (name "VBUS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 5.08 0 180) - (length 2.54) - (name "I/O1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Regulator_Linear:AP2112K-3.3" - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -5.08 5.715 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "AP2112K-3.3" - (at 0 5.715 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 0 8.255 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" - (at 0 2.54 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (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 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "linear regulator ldo fixed positive" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOT?23?5*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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 yes) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Regulator_Switching:ADuM6000" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at -10.16 12.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "ADuM6000" - (at 0 12.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0 -17.78 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM6000.PDF" - (at -12.7 7.62 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Isolated 5 kV DC-to-DC Converter" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "Isolated DC-to-DC Converter 5kV" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOIC*7.5x12.8mm*P1.27mm* SOIC*7.5x10.3mm*P1.27mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "ADuM6000_0_1" - (rectangle - (start -10.16 11.43) - (end 10.16 -13.97) - (stroke - (width 0) - (type default) - ) - (fill - (type background) - ) - ) - (rectangle - (start -1.27 11.43) - (end 1.27 -13.97) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "ADuM6000_1_1" - (pin power_in line - (at -12.7 7.62 0) - (length 2.54) - (name "VDD1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 5.08 0) - (length 2.54) - (name "GND1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at -12.7 2.54 0) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -12.7 0 0) - (length 2.54) - (name "RC_IN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -12.7 -2.54 0) - (length 2.54) - (name "RC_OUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -12.7 -5.08 0) - (length 2.54) - (name "RC_SEL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 -7.62 0) - (length 2.54) - (name "VDD1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -12.7 -10.16 0) - (length 2.54) - (name "GND1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 12.7 -10.16 180) - (length 2.54) - (name "GND_ISO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 12.7 -7.62 180) - (length 2.54) - (name "V_ISO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 12.7 -5.08 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 12.7 -2.54 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 12.7 0 180) - (length 2.54) - (name "V_SEL" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin no_connect line - (at 12.7 2.54 180) - (length 2.54) - (name "NC" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 12.7 5.08 180) - (length 2.54) - (name "GND_ISO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 12.7 7.62 180) - (length 2.54) - (name "V_ISO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:GND" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#PWR" - (at 0 -6.35 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 0 -3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "global power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:PWR_FLAG" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#FLG" - (at 0 1.905 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 0 3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Special symbol for telling ERC where power comes from" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "flag power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "PWR_FLAG_0_0" - (pin power_out 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 "PWR_FLAG_0_1" - (polyline - (pts - (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (embedded_fonts no) - ) - ) - (junction - (at 309.88 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "11f2c86f-d339-446c-a084-00f26993da28") - ) - (junction - (at 156.21 73.66) - (diameter 0) - (color 0 0 0 0) - (uuid "15c51c49-289c-4512-b718-989703ba46fe") - ) - (junction - (at 287.02 77.47) - (diameter 0) - (color 0 0 0 0) - (uuid "1837c395-d3c2-45e0-8cda-c3aee2c7ae2b") - ) - (junction - (at 320.04 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "2bb4a3bb-4552-46c5-9ba8-e5a26bb05fa8") - ) - (junction - (at 314.96 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "2da40e25-3e16-4258-a2b8-23bdd775083a") - ) - (junction - (at 330.2 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "41390e83-518b-44ab-85e5-73a9c81ae443") - ) - (junction - (at 278.13 166.37) - (diameter 0) - (color 0 0 0 0) - (uuid "4620f465-35d7-43b8-a40e-d10a3fad72d5") - ) - (junction - (at 156.21 82.55) - (diameter 0) - (color 0 0 0 0) - (uuid "4e0cfdb9-ebfb-4a3b-af23-7a6ee0aec477") - ) - (junction - (at 278.13 156.21) - (diameter 0) - (color 0 0 0 0) - (uuid "51dbf901-d9bb-446d-a8bc-7bf2429f8e47") - ) - (junction - (at 264.16 115.57) - (diameter 0) - (color 0 0 0 0) - (uuid "5764c64c-2c58-4495-81b9-f314d840b48a") - ) - (junction - (at 325.12 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "5bcb545d-89da-4292-b070-e2b913bfb6b9") - ) - (junction - (at 312.42 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "670d02ef-41c8-4fd7-8d44-29a0f446a691") - ) - (junction - (at 317.5 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "68b76cec-5cba-41f1-8902-47a10ca7c826") - ) - (junction - (at 373.38 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "697922d8-e277-4896-abe2-926eaec75f62") - ) - (junction - (at 320.04 53.34) - (diameter 0) - (color 0 0 0 0) - (uuid "6f76b9d7-a24b-4722-97dd-edb6af39e933") - ) - (junction - (at 363.22 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "76af78ef-e8d4-424a-b44b-cbf9b678b502") - ) - (junction - (at 144.78 58.42) - (diameter 0) - (color 0 0 0 0) - (uuid "785611d4-b316-4973-9abd-ebece7db47d8") - ) - (junction - (at 163.83 69.85) - (diameter 0) - (color 0 0 0 0) - (uuid "7bd43888-cf0e-46f1-b40d-be6a85734728") - ) - (junction - (at 342.9 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "7cd8323d-f848-4e5c-b6b3-07754c413107") - ) - (junction - (at 143.51 43.18) - (diameter 0) - (color 0 0 0 0) - (uuid "7dd6e9ad-7028-4a5d-940e-6b43d71e1178") - ) - (junction - (at 83.82 99.06) - (diameter 0) - (color 0 0 0 0) - (uuid "83e53538-a7b0-4e79-9143-da413429b6de") - ) - (junction - (at 78.74 99.06) - (diameter 0) - (color 0 0 0 0) - (uuid "91cf276e-0270-4bb3-865f-8d75d04cfe58") - ) - (junction - (at 309.88 54.61) - (diameter 0) - (color 0 0 0 0) - (uuid "95ba9f27-cdc5-4a70-b04b-a8d8354d7df0") - ) - (junction - (at 332.74 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "96a7b1ef-58de-4bd1-ab39-13fb23e77347") - ) - (junction - (at 320.04 44.45) - (diameter 0) - (color 0 0 0 0) - (uuid "9ec83df2-668e-4ca0-86ed-c0f2b837c73d") - ) - (junction - (at 67.31 52.07) - (diameter 0) - (color 0 0 0 0) - (uuid "a2a09ae6-6a1a-43c9-9486-8b395419363c") - ) - (junction - (at 304.8 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "a40bad94-8cbb-4951-89e3-551d50a7c87d") - ) - (junction - (at 72.39 146.05) - (diameter 0) - (color 0 0 0 0) - (uuid "ab4bd30d-0ddd-4262-ab75-416bc3593646") - ) - (junction - (at 322.58 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "aca4eb1b-cfc8-44a6-8f6d-31eb7b92714c") - ) - (junction - (at 307.34 60.96) - (diameter 0) - (color 0 0 0 0) - (uuid "ad26314d-4d95-42b7-9139-1f707c8e96b6") - ) - (junction - (at 156.21 69.85) - (diameter 0) - (color 0 0 0 0) - (uuid "af12269a-cf83-4c08-a9d5-f67d44432584") - ) - (junction - (at 307.34 205.74) - (diameter 0) - (color 0 0 0 0) - (uuid "c458abd7-77d0-4196-8c91-6c32c99e903e") - ) - (junction - (at 102.87 99.06) - (diameter 0) - (color 0 0 0 0) - (uuid "c5cd95eb-bced-42e8-82fd-13da85a48378") - ) - (junction - (at 317.5 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "d43a1604-5987-495a-8b24-21118ccf5bad") - ) - (junction - (at 74.93 54.61) - (diameter 0) - (color 0 0 0 0) - (uuid "d4e67606-109a-4a72-bf5e-6deef631c6c8") - ) - (junction - (at 327.66 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "dbca6131-15a8-433b-b897-624d6e028c12") - ) - (junction - (at 353.06 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "ef2588e6-8cb3-480d-87e8-04c07db82b58") - ) - (junction - (at 173.99 43.18) - (diameter 0) - (color 0 0 0 0) - (uuid "f504f4e7-44a0-4596-b0cc-2c97cfa5a301") - ) - (junction - (at 36.83 87.63) - (diameter 0) - (color 0 0 0 0) - (uuid "f69324c0-0712-47c8-9368-7194d502fa65") - ) - (junction - (at 320.04 182.88) - (diameter 0) - (color 0 0 0 0) - (uuid "f86c44ca-834a-4980-a6f1-104a8362a8be") - ) - (no_connect - (at 52.07 74.93) - (uuid "01a23b75-6f39-4883-8f19-e9df17ff3445") - ) - (no_connect - (at 350.52 163.83) - (uuid "03fa41fd-8b89-46f1-a42d-a34b4f0121c9") - ) - (no_connect - (at 350.52 151.13) - (uuid "0492a54a-c41b-41e0-a963-c6fb2563967a") - ) - (no_connect - (at 242.57 147.32) - (uuid "0b795d61-3254-4918-8963-94f3b369776e") - ) - (no_connect - (at 217.17 147.32) - (uuid "1315df40-f48c-4ad7-857e-4d1526b26dd0") - ) - (no_connect - (at 350.52 158.75) - (uuid "1d32d965-50db-4ea3-ac37-eff00240d6c8") - ) - (no_connect - (at 350.52 92.71) - (uuid "1e22b8c4-f6cc-4165-9d6e-40dd2ddab855") - ) - (no_connect - (at 52.07 77.47) - (uuid "1f0b71fa-6308-4ac1-9492-c9ba20cab6de") - ) - (no_connect - (at 350.52 90.17) - (uuid "203e6e0d-9c30-4cc6-a936-da87c5a091f6") - ) - (no_connect - (at 350.52 146.05) - (uuid "2bda2392-e49b-4e1f-a34e-2f9bc85c3960") - ) - (no_connect - (at 217.17 152.4) - (uuid "2c7911e8-455a-41b3-a815-8c85efe32e2a") - ) - (no_connect - (at 350.52 148.59) - (uuid "4004ea97-790d-41aa-9212-7fdd5aa2132c") - ) - (no_connect - (at 350.52 113.03) - (uuid "40d09228-a49f-4192-95d8-38fa3c43b736") - ) - (no_connect - (at 350.52 168.91) - (uuid "4a36d658-1796-48a8-9591-bebb1cfa8494") - ) - (no_connect - (at 242.57 154.94) - (uuid "4e96ed96-f162-4a94-8d81-ef98e188d70b") - ) - (no_connect - (at 350.52 140.97) - (uuid "524b1d00-819a-41de-bf7f-6f758c4c1534") - ) - (no_connect - (at 350.52 105.41) - (uuid "52592d6d-3bed-4674-a759-4a912521f625") - ) - (no_connect - (at 350.52 161.29) - (uuid "56f08c1a-2896-4bfd-a17e-45644810465c") - ) - (no_connect - (at 350.52 107.95) - (uuid "5976d288-d202-496f-b3f3-2fccd9d7ccfa") - ) - (no_connect - (at 350.52 118.11) - (uuid "69108421-3399-43a1-bb5d-6e5812ecfc76") - ) - (no_connect - (at 350.52 130.81) - (uuid "6f48ef3f-71a8-40c1-a2ec-4a2611e7c9a8") - ) - (no_connect - (at 350.52 135.89) - (uuid "70a1a9d4-10da-4fc9-90d4-765dee99c98f") - ) - (no_connect - (at 350.52 110.49) - (uuid "70d5cc86-eb49-41a5-acc7-b53ffb2eb3a2") - ) - (no_connect - (at 350.52 133.35) - (uuid "9c9ac97f-de89-4fd6-a39c-38c557590464") - ) - (no_connect - (at 350.52 153.67) - (uuid "9fd01c30-b685-48b1-ae37-ab5b9ea40510") - ) - (no_connect - (at 350.52 171.45) - (uuid "ae02f081-d1cd-4c05-b1d3-e32d37573cab") - ) - (no_connect - (at 350.52 156.21) - (uuid "b925eff3-14ed-4f30-9921-6245b0facf32") - ) - (no_connect - (at 242.57 152.4) - (uuid "bef081e4-ee8e-425c-9d06-d5ddfa605103") - ) - (no_connect - (at 350.52 138.43) - (uuid "cfe3732a-d4a6-437d-b747-2faee84ea7fd") - ) - (no_connect - (at 350.52 128.27) - (uuid "d4d6bdc8-1cd8-4c3b-8f3c-d7b7d09b42cc") - ) - (no_connect - (at 350.52 95.25) - (uuid "e1e2ed38-79ca-478c-9ef4-aea660fe4a36") - ) - (no_connect - (at 350.52 87.63) - (uuid "e3816d9e-97cc-4a5e-a385-6e8cb45d3d9f") - ) - (no_connect - (at 350.52 115.57) - (uuid "f250de11-3d72-4ddb-8a0f-5f79eae94b40") - ) - (wire - (pts - (xy 320.04 219.71) (xy 317.5 219.71) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0275aa8d-0b29-4d96-9cfb-d3d079d94c76") - ) - (wire - (pts - (xy 320.04 181.61) (xy 320.04 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "06ad214a-262a-469a-aa4a-4c67baa9e8fc") - ) - (wire - (pts - (xy 332.74 68.58) (xy 332.74 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "097dc1d2-1a98-4580-b938-c0fc46955859") - ) - (wire - (pts - (xy 173.99 50.8) (xy 171.45 50.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "09a64c19-1007-4f89-b21e-663ce42c1f94") - ) - (wire - (pts - (xy 153.67 69.85) (xy 153.67 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0ae6667b-7ba5-486b-91ff-5e8ca2efbc22") - ) - (wire - (pts - (xy 314.96 68.58) (xy 317.5 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0c37eb65-473c-46b7-aacf-9f8386ae8f33") - ) - (wire - (pts - (xy 304.8 182.88) (xy 304.8 181.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0ca281b3-7c2b-4675-b403-86008ad07c3f") - ) - (wire - (pts - (xy 144.78 55.88) (xy 146.05 55.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0decb1ed-d922-4ceb-a762-0b7830034b57") - ) - (wire - (pts - (xy 325.12 68.58) (xy 327.66 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0ee35e6e-c9b0-4d71-bb71-9122fd928969") - ) - (wire - (pts - (xy 317.5 68.58) (xy 317.5 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0feca4e3-473f-4699-a0ce-95c4ab541bd2") - ) - (wire - (pts - (xy 287.02 74.93) (xy 287.02 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "105f74c4-a6fa-4222-8176-2b030c1c9861") - ) - (wire - (pts - (xy 116.84 54.61) (xy 114.3 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "11b728f6-a11d-47a3-a792-a5b43177f816") - ) - (wire - (pts - (xy 67.31 52.07) (xy 52.07 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "139aa198-778c-466d-b221-4140422e79a7") - ) - (wire - (pts - (xy 78.74 109.22) (xy 78.74 107.95) - ) - (stroke - (width 0) - (type default) - ) - (uuid "16685616-4755-434a-b6ee-ab7c07c08a58") - ) - (wire - (pts - (xy 327.66 68.58) (xy 330.2 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "19791247-e642-4a90-b9a4-2e7d1761c7ac") - ) - (wire - (pts - (xy 36.83 88.9) (xy 36.83 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1c741045-2717-47ca-87d8-614630c8e74e") - ) - (wire - (pts - (xy 322.58 44.45) (xy 320.04 44.45) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1d4a1b14-1b2c-4bcd-9c54-020e0cdce21a") - ) - (wire - (pts - (xy 69.85 146.05) (xy 72.39 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1fd655e2-0fd8-4630-aea7-97e5fd3500cb") - ) - (wire - (pts - (xy 317.5 68.58) (xy 320.04 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2078bccb-77e2-4826-9d2e-c30c7b11c822") - ) - (wire - (pts - (xy 320.04 214.63) (xy 317.5 214.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "20dd61a3-f2eb-47e7-b1f7-d30d9e9d3545") - ) - (wire - (pts - (xy 143.51 43.18) (xy 146.05 43.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2280d7af-4b20-4eeb-a4cf-2c002aaffa7d") - ) - (wire - (pts - (xy 173.99 53.34) (xy 171.45 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "28ef8f48-f9f3-4b05-a64c-a74e8d0b8499") - ) - (wire - (pts - (xy 317.5 182.88) (xy 320.04 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2aedeb62-03cf-459b-b692-a13c364f887a") - ) - (wire - (pts - (xy 320.04 53.34) (xy 320.04 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2e4092af-11e0-4b5e-89a0-7881ac2c7e6a") - ) - (wire - (pts - (xy 314.96 182.88) (xy 317.5 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "300bdd89-961e-4bae-a304-85c6bec69d5b") - ) - (wire - (pts - (xy 287.02 148.59) (xy 289.56 148.59) - ) - (stroke - (width 0) - (type default) - ) - (uuid "31470706-fdf5-4e32-b7b7-cde8e126fb3a") - ) - (wire - (pts - (xy 161.29 69.85) (xy 163.83 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3291b049-5888-4135-bd79-c28843c66240") - ) - (wire - (pts - (xy 287.02 102.87) (xy 289.56 102.87) - ) - (stroke - (width 0) - (type default) - ) - (uuid "34554484-3e7a-4f46-9914-a91e8b5e3fa9") - ) - (wire - (pts - (xy 267.97 55.88) (xy 267.97 59.69) - ) - (stroke - (width 0) - (type default) - ) - (uuid "34aea1e8-4fce-4325-9832-1210b7c91d37") - ) - (wire - (pts - (xy 373.38 68.58) (xy 363.22 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "381f1b56-7743-44f9-a4c8-bd51d11a2804") - ) - (wire - (pts - (xy 312.42 181.61) (xy 312.42 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3a2949d4-6817-4e03-b555-87d93227dd63") - ) - (wire - (pts - (xy 85.09 101.6) (xy 83.82 101.6) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3d165c5d-afbd-4c55-b3a8-640dae677385") - ) - (wire - (pts - (xy 278.13 166.37) (xy 289.56 166.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3e9612a6-a6eb-4556-b579-7d8eba99d266") - ) - (wire - (pts - (xy 92.71 114.3) (xy 92.71 109.22) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3fdc77a3-036e-4ab2-aa5e-568a2086e92c") - ) - (wire - (pts - (xy 116.84 52.07) (xy 114.3 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4047f7f7-fc32-4b66-9906-c95b79e7fa2e") - ) - (wire - (pts - (xy 173.99 40.64) (xy 173.99 43.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4299363c-8d91-4fa0-b7bb-aa79f14bd83e") - ) - (wire - (pts - (xy 300.99 60.96) (xy 307.34 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "43cb8496-0a23-4f9b-9f1f-aa845020da30") - ) - (wire - (pts - (xy 143.51 40.64) (xy 143.51 43.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "43e877cb-7273-44be-95ae-92f036ba9baf") - ) - (wire - (pts - (xy 320.04 31.75) (xy 320.04 44.45) - ) - (stroke - (width 0) - (type default) - ) - (uuid "45bf75fd-2a66-4844-802b-504908702838") - ) - (wire - (pts - (xy 29.21 85.09) (xy 29.21 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4814a83f-47de-4337-a2df-c4a42380345b") - ) - (wire - (pts - (xy 322.58 181.61) (xy 322.58 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4bcceea6-14da-407b-b30e-252ba23e4e8b") - ) - (wire - (pts - (xy 109.22 60.96) (xy 109.22 59.69) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4cbadf78-1178-49f5-9b8e-3f3de60f9658") - ) - (wire - (pts - (xy 143.51 53.34) (xy 146.05 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4d1ee091-7f31-4813-8255-03773e084859") - ) - (wire - (pts - (xy 278.13 156.21) (xy 278.13 157.48) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4e8c9283-1233-4337-8664-3b91b889fea1") - ) - (wire - (pts - (xy 156.21 87.63) (xy 156.21 82.55) - ) - (stroke - (width 0) - (type default) - ) - (uuid "519bcdd3-0243-417e-9a77-f19d08979348") - ) - (wire - (pts - (xy 264.16 115.57) (xy 264.16 118.11) - ) - (stroke - (width 0) - (type default) - ) - (uuid "520432a6-4042-4b4a-b43b-13e311040ea2") - ) - (wire - (pts - (xy 264.16 113.03) (xy 264.16 115.57) - ) - (stroke - (width 0) - (type default) - ) - (uuid "528a6dd7-4664-4a70-b0d1-0c9105b17a60") - ) - (wire - (pts - (xy 287.02 105.41) (xy 289.56 105.41) - ) - (stroke - (width 0) - (type default) - ) - (uuid "54fb4053-a2ba-4906-a2cd-f843c44bb444") - ) - (wire - (pts - (xy 58.42 62.23) (xy 52.07 62.23) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5553f384-9af2-4533-bf01-5ff9376e7047") - ) - (wire - (pts - (xy 58.42 64.77) (xy 52.07 64.77) - ) - (stroke - (width 0) - (type default) - ) - (uuid "56bf0142-a5fa-4689-a162-23cb0e83f0eb") - ) - (wire - (pts - (xy 309.88 205.74) (xy 307.34 205.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5ae2793d-ae17-4ce9-8593-b2960132df55") - ) - (wire - (pts - (xy 317.5 181.61) (xy 317.5 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5afa0843-9adf-407a-94c6-498c1c10278b") - ) - (wire - (pts - (xy 156.21 73.66) (xy 156.21 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5d350890-3e25-4357-b5f4-a64e73d39273") - ) - (wire - (pts - (xy 143.51 31.75) (xy 143.51 33.02) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5f0413dd-a638-46f8-a7d3-59dfbcac8a5e") - ) - (wire - (pts - (xy 156.21 69.85) (xy 156.21 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5f4417c2-1012-4dbe-bcf5-79c060e76478") - ) - (wire - (pts - (xy 29.21 87.63) (xy 36.83 87.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6363d358-526f-4be1-a9da-c051ed1289e3") - ) - (wire - (pts - (xy 327.66 181.61) (xy 327.66 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "668189b7-f492-4d38-b5c0-b3b3f8663083") - ) - (wire - (pts - (xy 325.12 182.88) (xy 327.66 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "68f2aa9b-8ac6-4a85-90a5-eaba16165f83") - ) - (wire - (pts - (xy 304.8 184.15) (xy 304.8 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "69b84334-6af2-4d91-bdd6-234e6da45195") - ) - (wire - (pts - (xy 342.9 68.58) (xy 353.06 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6aaf7dec-ab58-4f8c-b020-d699e6481ca2") - ) - (wire - (pts - (xy 102.87 100.33) (xy 102.87 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6b362035-d478-4a3b-b7d7-a9d406274b0b") - ) - (wire - (pts - (xy 109.22 45.72) (xy 109.22 46.99) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6d216789-44ab-4759-a72f-05225d33d780") - ) - (wire - (pts - (xy 278.13 156.21) (xy 289.56 156.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6debcf54-2746-4321-910e-c58fe10924d9") - ) - (wire - (pts - (xy 287.02 82.55) (xy 289.56 82.55) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6e0bdb51-2dec-4f2e-9c1f-3f0ae2689d2a") - ) - (wire - (pts - (xy 74.93 57.15) (xy 74.93 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6e766c3a-644a-41cd-babd-00855415206e") - ) - (wire - (pts - (xy 307.34 41.91) (xy 307.34 45.72) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6f6d98d7-5e91-4075-b684-a6661d154ea8") - ) - (wire - (pts - (xy 278.13 110.49) (xy 279.4 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "725059db-f08f-471a-bfcd-a21212685a64") - ) - (wire - (pts - (xy 102.87 99.06) (xy 109.22 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "72aa17ec-5c9b-4fb6-a562-c907549daa80") - ) - (wire - (pts - (xy 67.31 52.07) (xy 78.74 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "74e6b0f1-450b-44be-97d3-ddfbd067f87b") - ) - (wire - (pts - (xy 161.29 35.56) (xy 161.29 38.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "758b0937-8929-4388-8755-6a5c80bb7134") - ) - (wire - (pts - (xy 325.12 69.85) (xy 325.12 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7729af81-953f-4436-80c9-8c647a5dc36e") - ) - (wire - (pts - (xy 278.13 165.1) (xy 278.13 166.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "77490517-733a-4f06-9a7b-bdd1d62daa42") - ) - (wire - (pts - (xy 52.07 46.99) (xy 58.42 46.99) - ) - (stroke - (width 0) - (type default) - ) - (uuid "775fe269-3323-417a-a92d-ffe400b11fb8") - ) - (wire - (pts - (xy 287.02 171.45) (xy 289.56 171.45) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7761fc52-dd9e-436c-9384-1d09b44b4b01") - ) - (wire - (pts - (xy 284.48 77.47) (xy 287.02 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7815a221-59cd-43d6-b22e-03be4445a68c") - ) - (wire - (pts - (xy 80.01 143.51) (xy 80.01 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "792179d7-efac-4a92-ae08-8fa3e40904c5") - ) - (wire - (pts - (xy 309.88 54.61) (xy 309.88 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "79f3f80e-8381-41f1-9999-e5e724fa754f") - ) - (wire - (pts - (xy 58.42 59.69) (xy 52.07 59.69) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7a2ade7b-6d9a-4362-9d3f-958cf5d216c3") - ) - (wire - (pts - (xy 353.06 68.58) (xy 363.22 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7b161d6f-b386-42c8-a9fc-542da25ac3b5") - ) - (wire - (pts - (xy 287.02 77.47) (xy 289.56 77.47) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7bc63831-f70e-44b6-ac97-1202e16e88b1") - ) - (wire - (pts - (xy 85.09 99.06) (xy 83.82 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7f6e32de-5ba1-40c4-8c04-0539d7711fed") - ) - (wire - (pts - (xy 330.2 68.58) (xy 330.2 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "81c840fa-7047-4f9e-9c43-e2d839511d36") - ) - (wire - (pts - (xy 78.74 99.06) (xy 72.39 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8233998e-ab79-41b4-a285-f7ea8b7f25c9") - ) - (wire - (pts - (xy 140.97 43.18) (xy 143.51 43.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "857e48ce-37c9-46f9-b437-f81f9930809a") - ) - (wire - (pts - (xy 314.96 181.61) (xy 314.96 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "87011e02-332e-41f5-9b05-04aa2d6d830d") - ) - (wire - (pts - (xy 307.34 50.8) (xy 307.34 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "88b43752-c3ef-4728-b5c9-2bcb2a4ac66f") - ) - (wire - (pts - (xy 307.34 60.96) (xy 307.34 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8fc176d1-9c8f-472e-85cf-ec3655e4b50a") - ) - (wire - (pts - (xy 163.83 73.66) (xy 163.83 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9039e036-5554-4f9c-a3ca-36da58651e1b") - ) - (wire - (pts - (xy 312.42 182.88) (xy 314.96 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "921f95f7-9dde-4645-9a5f-547480d5de37") - ) - (wire - (pts - (xy 320.04 182.88) (xy 322.58 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "93b6eb7e-dd0c-4421-a389-c82b18d8d7f3") - ) - (wire - (pts - (xy 322.58 53.34) (xy 320.04 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "945685f0-7add-4fa4-be6f-60ded72198f5") - ) - (wire - (pts - (xy 83.82 99.06) (xy 78.74 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "95871894-66b1-4e18-b221-5d1aa04c32ff") - ) - (wire - (pts - (xy 72.39 146.05) (xy 80.01 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "960c415c-6d7a-4261-aa6d-e4481c33d946") - ) - (wire - (pts - (xy 300.99 54.61) (xy 309.88 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "964ffdd7-2cfd-4a36-bc8e-276822a34df4") - ) - (wire - (pts - (xy 373.38 68.58) (xy 381 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "966a0e39-20fb-4f0d-8e74-d43937c754ae") - ) - (wire - (pts - (xy 156.21 35.56) (xy 156.21 38.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "986449b6-a0c1-43fd-b6ae-cd54febe2dd5") - ) - (wire - (pts - (xy 74.93 54.61) (xy 78.74 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9978d911-414d-4020-b3ee-a2f872a317fa") - ) - (wire - (pts - (xy 307.34 227.33) (xy 307.34 224.79) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9a44f873-e91d-48ac-bce9-38cd3ac6b646") - ) - (wire - (pts - (xy 58.42 67.31) (xy 52.07 67.31) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9c22c1dc-fd16-495a-b3c3-0a0ade7d5f26") - ) - (wire - (pts - (xy 264.16 115.57) (xy 289.56 115.57) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9c9a6eab-25cc-4877-8f3d-f7f4ec14cd07") - ) - (wire - (pts - (xy 307.34 200.66) (xy 307.34 205.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9f092088-3d68-4792-9bed-f778fad9a787") - ) - (wire - (pts - (xy 173.99 45.72) (xy 171.45 45.72) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a18b68e8-bda1-4873-8e16-661c70e54d9c") - ) - (wire - (pts - (xy 309.88 181.61) (xy 309.88 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a1d42435-2f5f-4b23-b179-b1a2a344d861") - ) - (wire - (pts - (xy 153.67 69.85) (xy 156.21 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a348768a-9049-45fa-9d5a-6845da227d4c") - ) - (wire - (pts - (xy 264.16 129.54) (xy 264.16 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a36f6993-dcc3-4542-ab7b-8bc1e4958cb8") - ) - (wire - (pts - (xy 83.82 101.6) (xy 83.82 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a50312fd-e300-45d6-9347-73c2d32deb8a") - ) - (wire - (pts - (xy 309.88 182.88) (xy 312.42 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a8b02238-bcd7-4190-8f37-7fd9cc259704") - ) - (wire - (pts - (xy 144.78 58.42) (xy 146.05 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a991107e-610d-4a37-b194-d83aba3d943f") - ) - (wire - (pts - (xy 325.12 181.61) (xy 325.12 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "aba34c6a-30da-41dd-a28c-beea18de0588") - ) - (wire - (pts - (xy 100.33 99.06) (xy 102.87 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b0884c52-3777-4f04-a4de-126e8bd21073") - ) - (wire - (pts - (xy 143.51 50.8) (xy 146.05 50.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b09bc4a1-dba6-4132-ae15-508c76de263f") - ) - (wire - (pts - (xy 294.64 214.63) (xy 297.18 214.63) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b2b7fcec-b21b-4a31-b8ba-52a65dd1be73") - ) - (wire - (pts - (xy 381 63.5) (xy 381 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b3419d88-f718-4e88-b8b0-c14022aa0278") - ) - (wire - (pts - (xy 102.87 107.95) (xy 102.87 109.22) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b35519f6-d02d-4c9e-beda-fef7b5cb1c21") - ) - (wire - (pts - (xy 163.83 69.85) (xy 163.83 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b3cab595-9134-4212-8a0f-225111cb0386") - ) - (wire - (pts - (xy 287.02 143.51) (xy 289.56 143.51) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b495558d-18df-4732-9508-d065818a9d43") - ) - (wire - (pts - (xy 67.31 52.07) (xy 67.31 57.15) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b4ee8bb6-a340-4f54-8bd7-632525da17e0") - ) - (wire - (pts - (xy 320.04 68.58) (xy 320.04 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b9c94d6b-ab52-405b-8046-c3ec7b33057a") - ) - (wire - (pts - (xy 173.99 43.18) (xy 171.45 43.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ba03d184-7f37-41d0-b91b-66e5a9a08318") - ) - (wire - (pts - (xy 161.29 69.85) (xy 161.29 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ba5a188e-b636-4b3a-9839-5e7e3be7f6e3") - ) - (wire - (pts - (xy 78.74 100.33) (xy 78.74 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c0c93883-b716-4502-a690-31da81765c45") - ) - (wire - (pts - (xy 304.8 182.88) (xy 309.88 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c0f18cac-d70f-4e8b-829f-08674deb680e") - ) - (wire - (pts - (xy 143.51 58.42) (xy 144.78 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c3977242-0530-4165-a1e6-27d55dbd0fe3") - ) - (wire - (pts - (xy 107.95 143.51) (xy 107.95 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c775ffa3-8a51-4630-93af-130d9f1c246d") - ) - (wire - (pts - (xy 36.83 87.63) (xy 36.83 85.09) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c8fe3119-2dcc-435b-8649-356ae3cd6803") - ) - (wire - (pts - (xy 287.02 146.05) (xy 289.56 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ca3eb18e-3aaa-4c53-a8ac-b7fd40b16b9b") - ) - (wire - (pts - (xy 171.45 58.42) (xy 173.99 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ce1e2b52-3630-439f-986b-b96a6b7a37ac") - ) - (wire - (pts - (xy 101.6 54.61) (xy 104.14 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cf6788c9-ec62-4cdf-a07a-b58d48ed4ae1") - ) - (wire - (pts - (xy 309.88 40.64) (xy 309.88 36.83) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cf980cb8-a22f-49e2-81ed-d49aeb0738a8") - ) - (wire - (pts - (xy 176.53 43.18) (xy 173.99 43.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d15ee73f-5b9e-472c-8d8e-672619c6fe05") - ) - (wire - (pts - (xy 273.05 156.21) (xy 278.13 156.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d364e555-6e2e-494f-958a-eeb32600217f") - ) - (wire - (pts - (xy 111.76 146.05) (xy 107.95 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d38b1b89-15f6-4102-b892-7c4d3d0a344e") - ) - (wire - (pts - (xy 330.2 68.58) (xy 332.74 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d632f456-2589-4474-9b6a-7f3c94c22969") - ) - (wire - (pts - (xy 52.07 54.61) (xy 74.93 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dad30aa0-3652-432d-bd9b-66b75873f058") - ) - (wire - (pts - (xy 332.74 68.58) (xy 342.9 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "db9b8cc2-1e80-4cb6-9cba-c7b7c79eb8cc") - ) - (wire - (pts - (xy 320.04 44.45) (xy 320.04 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "dd704963-b5ef-4725-b14e-bc04e956cb04") - ) - (wire - (pts - (xy 144.78 55.88) (xy 144.78 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e20cef1b-e5b4-4a16-9265-6b95fd710eac") - ) - (wire - (pts - (xy 72.39 143.51) (xy 72.39 146.05) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e305a6bf-058b-482a-a468-03e18ab7c495") - ) - (wire - (pts - (xy 322.58 182.88) (xy 325.12 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e400ad35-3e38-46db-85ee-cb6f4be3986b") - ) - (wire - (pts - (xy 264.16 102.87) (xy 264.16 105.41) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e4bdb85b-1273-4c02-8000-44f10d487dc3") - ) - (wire - (pts - (xy 320.04 217.17) (xy 317.5 217.17) - ) - (stroke - (width 0) - (type default) - ) - (uuid "edca10ad-fce6-42d7-9f90-6845fe9f5830") - ) - (wire - (pts - (xy 156.21 82.55) (xy 156.21 73.66) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ee6093d6-f278-435b-9f7d-ea0ed6935727") - ) - (wire - (pts - (xy 307.34 205.74) (xy 307.34 209.55) - ) - (stroke - (width 0) - (type default) - ) - (uuid "eea61b2c-2f91-465e-b5f9-9233118751a6") - ) - (wire - (pts - (xy 273.05 166.37) (xy 278.13 166.37) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f334526d-fd51-456d-b168-9e720614647a") - ) - (wire - (pts - (xy 287.02 110.49) (xy 289.56 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f550b7d1-cbca-4de8-8610-accfa2ced2d1") - ) - (wire - (pts - (xy 309.88 45.72) (xy 309.88 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fb8cae8f-8fa9-41e0-8a5c-192297def1da") - ) - (wire - (pts - (xy 314.96 69.85) (xy 314.96 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fee4aa8e-ce8d-4b76-8957-173d260d9a6b") - ) - (wire - (pts - (xy 101.6 52.07) (xy 104.14 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ffbc8424-3f85-4107-9de8-6714dcb2dcff") - ) - (wire - (pts - (xy 327.66 68.58) (xy 327.66 69.85) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ffede4c2-b98b-486d-ba26-28351ee55beb") - ) - (label "FT_DN" - (at 287.02 102.87 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "03874e89-e74a-411e-8936-62ca5d6e9ec0") - ) - (label "3V3" - (at 381 63.5 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "06b7e54e-e588-4cf1-8942-4f585b456968") - ) - (label "USB_3V3" - (at 242.57 157.48 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "07951dfa-bec9-4527-b924-eae9f293e8b7") - ) - (label "UDP" - (at 58.42 67.31 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "0bd97773-5e69-4c7e-adc7-f28133c1c2d7") - ) - (label "USB_GND" - (at 36.83 88.9 270) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "14df445c-9c4b-4520-9747-348af0339788") - ) - (label "VCORE" - (at 320.04 31.75 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "18a4af90-f1a3-4882-b7d2-3f19f114da2b") - ) - (label "UDP" - (at 58.42 64.77 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "24a5c72f-2b36-49f6-ad92-87ea71e8d522") - ) - (label "EE_CS" - (at 287.02 143.51 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "2c6863f1-4c23-4d79-9409-ca1b0bbda422") - ) - (label "USB_GND" - (at 74.93 64.77 270) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "2fbd1146-14c3-4279-b43c-bbd235728506") - ) - (label "USB_VBUS" - (at 109.22 45.72 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "340ad197-eb20-48ad-a549-5ffc18471a5f") - ) - (label "USB_GND" - (at 143.51 31.75 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "38aaa907-e1d8-42ae-91b5-6172b67196f0") - ) - (label "USB_GND" - (at 109.22 60.96 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "39be6b4f-1950-4819-bad4-43bc0606bd5a") - ) - (label "USB_GND" - (at 80.01 135.89 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "3b4d8929-14bd-488c-bf9e-e97a2560b8bf") - ) - (label "FT_DN" - (at 173.99 53.34 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "47865a74-7f7d-44cb-a9d1-02b20f2aa306") - ) - (label "3V3" - (at 264.16 105.41 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "47d7f3de-103a-47c4-825d-8d9187f497aa") - ) - (label "USB_GND" - (at 102.87 109.22 270) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "48f33d48-e41f-4ae6-a3e1-a5d751f1b3f6") - ) - (label "UDP" - (at 101.6 52.07 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4c2c8bf1-6cba-45d8-acc8-fd13d16c0804") - ) - (label "USB_VBUS" - (at 217.17 157.48 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "4e70f64f-59c3-4253-9e98-1340ef344c93") - ) - (label "USB_VBUS" - (at 156.21 35.56 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "50fbb0b3-96e0-4502-a215-928cae1d64a4") - ) - (label "EE_DATA" - (at 320.04 217.17 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "54db58eb-375d-4b32-861d-d41f56bdc1e3") - ) - (label "USB_GND" - (at 78.74 109.22 270) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "597bbb7d-1a86-4591-bf3b-bdb8eb42845c") - ) - (label "USB_GND" - (at 217.17 144.78 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "5b1eec63-f688-4c89-938f-0e8c638f85c6") - ) - (label "3V3" - (at 173.99 58.42 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "5c18bdd4-43e6-497f-9e50-bd14b8a996f7") - ) - (label "USB_VBUS" - (at 69.85 146.05 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "5d686dc8-6b0a-48d7-90dc-1942ae8f9770") - ) - (label "USB_GND" - (at 92.71 114.3 270) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "634b87df-6145-41ae-987a-64ff6e55d534") - ) - (label "3V3" - (at 176.53 43.18 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "65dfd6dd-3cd5-4f18-9369-7b317eceea3d") - ) - (label "USB_GND" - (at 210.82 148.59 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "67020153-5edb-4ef2-8016-197f4770b6bb") - ) - (label "VDD1_ISO" - (at 109.22 99.06 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "680e08fa-21d4-4294-bb92-5288b1c86982") - ) - (label "USB_VBUS" - (at 72.39 99.06 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "6a2b3aa9-7c03-443a-823d-620b114c308d") - ) - (label "EE_CLK" - (at 287.02 146.05 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "6ce39730-0f7b-4936-8fd2-c2e6da178d67") - ) - (label "USB_3V3" - (at 248.92 140.97 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "6fde58ff-2db6-49fb-b68f-5680d9f698a7") - ) - (label "3V3" - (at 173.99 45.72 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "7359f56c-73df-429d-8af5-668c6f74337a") - ) - (label "USB_VBUS" - (at 217.17 142.24 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "752041b5-0754-46c8-860b-d7bdf581e58d") - ) - (label "FT_DP" - (at 173.99 50.8 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "785fc22e-7711-43b8-9bb7-3091dda8ec1f") - ) - (label "3V3" - (at 264.16 102.87 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "7cdaf746-f714-4426-8aab-d0f4f3a871db") - ) - (label "UDN" - (at 116.84 54.61 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "7eb70790-0bb2-4cc6-8c38-75cb25ceb9d7") - ) - (label "VCORE" - (at 307.34 41.91 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "7f539310-808d-4c03-8317-4c8fbf7ecc2e") - ) - (label "EE_DATA" - (at 287.02 148.59 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "8a897aa7-2350-4d8f-86d8-9e10f5c649eb") - ) - (label "VCORE" - (at 287.02 82.55 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "8b003061-98cb-47d8-a815-f25d4bca9a71") - ) - (label "USB_GND" - (at 217.17 149.86 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "8c2f07ca-2ba8-4d1c-aef2-a2eb6dae33e3") - ) - (label "FT_DP" - (at 287.02 105.41 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "962c720d-d07e-4e10-a00f-90daefac46cb") - ) - (label "USB_VBUS" - (at 210.82 140.97 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "968de0c3-9149-4050-bac4-ace1577e9b5e") - ) - (label "USB_3V3" - (at 242.57 142.24 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "9cbac1a0-1b83-47bc-ae2d-9953147a8ee1") - ) - (label "CC1" - (at 78.74 52.07 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "a074da62-38f1-4e59-99a5-3e5e9dfd5c8c") - ) - (label "UDN" - (at 101.6 54.61 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "a774d0bd-1d90-4f4c-9df6-38fcc877ffdf") - ) - (label "EE_CS" - (at 294.64 214.63 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "a7ce16b2-6b06-4abe-8693-a7293dc90de6") - ) - (label "VCORE" - (at 309.88 36.83 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "ac105397-d5dc-45f9-9806-a0e2c2bae52f") - ) - (label "UDN" - (at 58.42 62.23 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "b56667e4-9a43-4823-8251-868cd26139bf") - ) - (label "UDN" - (at 58.42 59.69 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "b92c7e59-646b-4e07-85d4-1b69af135e02") - ) - (label "USB_GND" - (at 217.17 160.02 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "bbc1009c-359f-4a88-8ea4-d52306441611") - ) - (label "USB_GND" - (at 67.31 64.77 270) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "c052f8c2-2047-4b37-a604-032c89772b13") - ) - (label "UDN" - (at 143.51 53.34 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "c224a530-78e4-4b8a-94ee-b7e800cc5d53") - ) - (label "EE_DATA" - (at 320.04 219.71 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "c544e7a1-1910-4b21-8032-0f0b6c0e9fe6") - ) - (label "VDD1_ISO" - (at 140.97 43.18 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d24e38ed-3d3b-4f6f-b045-c3e47763f316") - ) - (label "UDP" - (at 116.84 52.07 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "d85a5aee-9736-46d8-b66a-fd10893cb8b7") - ) - (label "UDP" - (at 143.51 50.8 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "db0c82d6-ddbf-4a17-8e35-3b4a13e8d9e3") - ) - (label "VDD1_ISO" - (at 143.51 58.42 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "e051010d-aebe-45df-acd0-2163dc30cbd9") - ) - (label "USB_VBUS" - (at 217.17 154.94 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "ec6f2c07-1991-454e-9fd2-a077a4d2bcbb") - ) - (label "CC2" - (at 78.74 54.61 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "ecbf7e69-3ac1-4fe4-852c-aa77e40369c9") - ) - (label "EE_CLK" - (at 320.04 214.63 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "ed009a96-ac1c-4881-9959-6adaf8aee24f") - ) - (label "USB_GND" - (at 156.21 87.63 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "ed4254ff-c50c-4050-a364-508a5cfeef31") - ) - (label "USB_GND" - (at 72.39 135.89 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "ee85fd2e-75b5-449b-9692-46503e93187a") - ) - (label "USB_VBUS" - (at 58.42 46.99 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "f22ecc3b-c860-4b43-b825-9646490e7286") - ) - (global_label "GND" - (shape bidirectional) - (at 287.02 171.45 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "2b235e7f-d222-42ff-9309-89f725968e15") - (property "Intersheetrefs" "${INTERSHEET_REFS}" - (at 287.02 171.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (hierarchical_label "CRESET" - (shape bidirectional) - (at 350.52 100.33 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "0c6118db-1bc2-4415-99e3-953beb3adce9") - ) - (hierarchical_label "UART_RXD" - (shape bidirectional) - (at 350.52 125.73 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "1feb3f3a-0ed0-4071-a00d-14b901bb9d8b") - ) - (hierarchical_label "CDONE" - (shape bidirectional) - (at 350.52 102.87 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "3764c5ab-4179-4b05-b386-111d86ab885b") - ) - (hierarchical_label "UART_TXD" - (shape bidirectional) - (at 350.52 123.19 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "480ec728-8fd8-42af-b91a-fb562b5eb3ca") - ) - (hierarchical_label "FLASH_MISO" - (shape bidirectional) - (at 350.52 82.55 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "5d475ac7-4ac2-4aee-a11a-de96b43de28d") - ) - (hierarchical_label "3V3" - (shape input) - (at 325.12 69.85 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "666487a4-1a6d-46e5-9180-ae476fb7837a") - ) - (hierarchical_label "3V3" - (shape input) - (at 161.29 35.56 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "8a109560-efbf-498d-97c2-e76ff9b8dd66") - ) - (hierarchical_label "FLASH_MOSI" - (shape bidirectional) - (at 350.52 80.01 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "95de822e-4701-4dbb-a6b3-b1f9869be84f") - ) - (hierarchical_label "FLASH_SCK" - (shape bidirectional) - (at 350.52 77.47 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "a7eda0cb-f11a-451b-a11c-d8f3ec09d141") - ) - (hierarchical_label "3V3" - (shape input) - (at 267.97 55.88 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "bb93a043-2d03-4bc2-91fc-433218efa1fd") - ) - (hierarchical_label "3V3" - (shape input) - (at 284.48 77.47 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "e290d665-a10b-4908-b346-53deb22278fa") - ) - (hierarchical_label "FLASH_CS" - (shape bidirectional) - (at 350.52 85.09 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "e97525d3-28ef-4198-b1d8-eb96d1f3db60") - ) - (hierarchical_label "USB_3V3" - (shape output) - (at 111.76 146.05 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "f0c5aecb-11b3-44a4-b582-d4095bedde89") - ) - (hierarchical_label "3V3" - (shape input) - (at 307.34 200.66 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "ff635389-7387-4153-87cc-0d418d7584e0") - ) - (symbol - (lib_id "Device:C") - (at 363.22 64.77 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "038bed8f-e394-4f9a-b327-b6d4caf6d69d") - (property "Reference" "C35" - (at 360.934 62.484 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 366.776 67.056 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 363.22 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 363.22 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 363.22 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 363.22 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 363.22 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a1cce43a-0565-4648-9e52-76356b5df582") - ) - (pin "2" - (uuid "94dfdfbd-8615-49fd-90c1-edcdd9cf606d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C35") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Regulator_Linear:AP2112K-3.3") - (at 92.71 101.6 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "0394838e-c9f7-440c-8ab0-df38480a28e5") - (property "Reference" "U4" - (at 91.186 95.758 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "AP2112K-3.3" - (at 86.614 93.218 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-5" - (at 92.71 101.6 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 92.71 101.6 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 92.71 101.6 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7b6442a9-4b35-4603-857a-1f31b5aed39d") - ) - (pin "2" - (uuid "6fbf965e-9c5c-4c8f-9dfb-b9da1fe20197") - ) - (pin "3" - (uuid "5412da02-be36-4567-8908-b1c77939c493") - ) - (pin "4" - (uuid "7cca3e76-2007-4c60-bcb0-6819af2cf687") - ) - (pin "5" - (uuid "e769bc5a-afe3-4788-b03a-e30a16fcd27c") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "U4") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 326.39 44.45 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "05f0dc12-4220-4878-a923-954d49d73d25") - (property "Reference" "C31" - (at 323.088 42.926 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "4.7uF" - (at 330.708 46.482 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 326.39 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 326.39 44.45 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 326.39 44.45 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 326.39 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 326.39 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "19eec84a-bd50-4619-8150-da991c7d4083") - ) - (pin "2" - (uuid "53ca5f59-edf5-41b5-a43a-466ea898fb2a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C31") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 293.37 60.96 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "0738287e-597d-4e73-849c-83c62c40dcb2") - (property "Reference" "#PWR027" - (at 287.02 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 290.576 60.96 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 293.37 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 293.37 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 293.37 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ca8f6e8e-67aa-4e85-8764-874ab63efafe") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR027") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 307.34 227.33 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "0aabe986-e175-4951-a2cb-e77ad5a9ad8a") - (property "Reference" "#PWR029" - (at 307.34 233.68 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 307.34 232.41 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 307.34 227.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 307.34 227.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 307.34 227.33 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "8583ba09-9ffc-4cf1-9f81-d41f9f433076") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR029") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 148.59 73.66 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "0c532f9b-c6f8-4a6d-9fae-50dfbe20f076") - (property "Reference" "#PWR016" - (at 142.24 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 143.51 73.66 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 148.59 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 148.59 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 148.59 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0097d667-4bc7-44e0-a82d-8863b47e1360") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR016") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 152.4 73.66 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1006d730-cbe8-4183-807f-f1d51470c9d2") - (property "Reference" "C19" - (at 149.352 70.358 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "1nF" - (at 152.4 77.47 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 152.4 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 152.4 73.66 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 152.4 73.66 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "C0G" - (at 152.4 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "100V" - (at 152.4 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "17b684a0-ee28-4e04-bd16-aa93bf30b53f") - ) - (pin "2" - (uuid "96f748b9-99e4-45ec-9096-941046f2dd9e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C19") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 107.95 135.89 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "12bcff78-e4d9-4703-9af0-5c6ececc4c08") - (property "Reference" "#PWR090e01" - (at 107.95 132.08 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 107.95 132.334 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 107.95 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 107.95 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 107.95 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7e048725-2ed9-423e-9471-b06be782358e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR090e01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 92.71 109.22 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "182a0972-f26e-4e03-86c1-36ffa7b90900") - (property "Reference" "#FLG0USBGND01" - (at 92.71 105.41 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 92.71 111.76 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 92.71 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 92.71 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 92.71 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "f69387e3-fd31-402a-a4bd-55611ff907bc") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#FLG0USBGND01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 313.69 205.74 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "19d0fbca-0635-4f4e-9e3b-e407a6625f21") - (property "Reference" "C30" - (at 313.69 198.12 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 313.69 200.66 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 317.5 204.7748 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 313.69 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 313.69 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 313.69 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 313.69 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "2" - (uuid "bccd9737-66fe-4ca2-bca9-876d39ae28a8") - ) - (pin "1" - (uuid "05afd9ed-9e40-465e-a3c2-407fee5d85a3") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C30") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 74.93 60.96 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1b8b4c9f-a016-46ef-9284-f933dbb33750") - (property "Reference" "R7" - (at 77.978 59.436 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "5.1k" - (at 78.232 62.484 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 74.93 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 74.93 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 74.93 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 74.93 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "5688a349-fbb0-4842-a2b2-3e4805e70249") - ) - (pin "2" - (uuid "196c5877-453e-40e1-a88d-b0467fa52e8f") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "R21") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "R7") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 267.97 67.31 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "22631208-a4ca-4b28-b188-e30ba976bd51") - (property "Reference" "#PWR021" - (at 267.97 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 267.97 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 267.97 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 267.97 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 267.97 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "f6e3efc4-2348-4a0e-922b-48ceede42052") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR021") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 287.02 67.31 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "230860a2-5b19-4172-889c-6a4824fc59cb") - (property "Reference" "#PWR025" - (at 287.02 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 287.02 63.5 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 287.02 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 287.02 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 287.02 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "cf19c643-93df-4408-a1c8-62ad628de554") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR025") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 363.22 60.96 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "244619b3-8f42-4552-b4ea-4b14acac6821") - (property "Reference" "#PWR035" - (at 363.22 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 363.22 55.88 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 363.22 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 363.22 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 363.22 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "482a7335-5c85-40f7-9d95-b231f59d6608") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR035") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 148.59 82.55 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "24df6952-417e-4cb4-aaaf-156b17e393f0") - (property "Reference" "#PWR017" - (at 142.24 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 143.51 82.55 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 148.59 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 148.59 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 148.59 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "9a4f3c7b-cfa2-4351-ae87-f0675abbe9db") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR017") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 248.92 144.78 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "26f94877-53fb-4e1b-9ef1-bc02520ab9aa") - (property "Reference" "C22" - (at 251.46 143.51 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "0.1uF" - (at 251.46 146.05 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 248.92 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 248.92 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 248.92 144.78 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 248.92 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 248.92 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "18f0ecb6-2ee0-49c7-a996-a5cfdd080af8") - ) - (pin "2" - (uuid "c5678b15-61d5-4c37-94d1-0086838e0e9f") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C22") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Power_Protection:USBLC6-2SC6") - (at 109.22 52.07 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "27722f23-032f-40c9-94fb-40c1d2d7f26f") - (property "Reference" "D1" - (at 106.68 46.736 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "USBLC6-2SC6" - (at 109.22 64.07 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" - (at 109.22 52.07 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 109.22 52.07 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 109.22 52.07 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "37dc9b4a-eaa1-4194-8ffa-ab90bcf192ac") - ) - (pin "2" - (uuid "9cf3ef2d-31f1-485b-9ce5-3c0505288e17") - ) - (pin "3" - (uuid "0e07759d-6956-48a5-bd8b-16b1eb8b919e") - ) - (pin "4" - (uuid "09e874ff-74d5-4d04-808a-73ebc687c0ec") - ) - (pin "5" - (uuid "eb4dc882-f292-497f-b113-aea0c3655622") - ) - (pin "6" - (uuid "7060e50e-ca34-4d72-95ab-61cf7c8e037a") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "D10") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "D1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 152.4 82.55 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "28c94766-2630-4d68-bc34-7f94731bafd4") - (property "Reference" "R8" - (at 149.606 80.264 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "1M" - (at 152.4 85.598 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" - (at 152.4 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 152.4 82.55 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 152.4 82.55 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 152.4 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "3d6dfce1-fa68-4c1e-8e4e-c2f4edbc2c22") - ) - (pin "2" - (uuid "af69d0ae-f0f5-434e-9a88-6bdff049a967") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "R8") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 242.57 160.02 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2f07bae1-1612-40cb-a526-7b12bbb471a2") - (property "Reference" "#PWR0AD03" - (at 242.57 163.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 242.57 163.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 242.57 160.02 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 242.57 160.02 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 242.57 160.02 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "fe493427-a1da-454d-bdc2-0a91d8551245") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR0AD03") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Connector:USB_C_Receptacle_USB2.0_16P") - (at 36.83 62.23 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "32dd254f-fa86-4d6e-911b-5e9f063226e2") - (property "Reference" "J1" - (at 36.83 50.23 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "USB_C" - (at 36.83 74.23 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "hardware:USB_C_Receptacle_Hanbo-MC-711-H72" - (at 36.83 62.23 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 36.83 62.23 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 36.83 62.23 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "A1" - (uuid "011f680a-0141-4e26-97e7-819c20496b84") - ) - (pin "A4" - (uuid "2531bca0-55cb-4f5d-ac90-123ca5394cee") - ) - (pin "A5" - (uuid "515ea435-a134-4671-b26f-dd0f449d8739") - ) - (pin "A6" - (uuid "4963ad8a-b724-468c-b67f-f6fea3c09724") - ) - (pin "A7" - (uuid "bde93a28-2000-4e67-a8e3-d249eed6e649") - ) - (pin "A8" - (uuid "bdbef2a1-83f0-4ba3-85e7-f71e71e843ef") - ) - (pin "A9" - (uuid "58b3e932-e897-47c8-943b-4d2bb2282f96") - ) - (pin "A12" - (uuid "1214b1fc-5a93-4454-927b-9fbfd89fe15e") - ) - (pin "B1" - (uuid "d40ac5c9-dc90-4bcf-b1d1-c3d826f96d47") - ) - (pin "B4" - (uuid "44b9747b-9319-4a56-a138-74a4399c0a84") - ) - (pin "B5" - (uuid "56fd8d8c-20d3-46ea-8899-b57e69730110") - ) - (pin "B6" - (uuid "ac6487f5-92d5-47cd-853c-6e3ecd016708") - ) - (pin "B7" - (uuid "588a024c-8438-497c-a535-243ac1d0f30d") - ) - (pin "B8" - (uuid "7c31bcde-ff04-46f8-91e1-a794978537b9") - ) - (pin "B9" - (uuid "e1cd8046-55bc-45fe-af4a-747c9b782037") - ) - (pin "B12" - (uuid "53f813a1-e847-46de-aad7-4e41c19824e3") - ) - (pin "SH" - (uuid "a1ef86c5-d111-4afd-87d0-09f81da53010") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "J10") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "J1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 289.56 171.45 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "342944a2-fcad-4786-806b-cc40d2445a3c") - (property "Reference" "#PWR03bde01" - (at 289.56 175.26 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 289.56 167.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 289.56 171.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 289.56 171.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 289.56 171.45 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "36ce780c-9f54-4df7-b582-f3dc8ccb0bb4") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR03bde01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 353.06 60.96 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "382b949d-5ad9-4784-84d1-5a246f54d11b") - (property "Reference" "#PWR034" - (at 353.06 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 353.06 55.88 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 353.06 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 353.06 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 353.06 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "f1747038-f8a4-43d7-98b8-36f9d394fa62") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR034") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 72.39 139.7 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "3dbfa4c5-ddf9-4f40-8a34-fb081e2dc3a2") - (property "Reference" "C13" - (at 74.676 137.668 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "10uF" - (at 75.184 141.986 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 72.39 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 72.39 139.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 72.39 139.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 72.39 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "16V" - (at 72.39 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "176331e1-2c29-4ecf-8888-6a16d5522502") - ) - (pin "2" - (uuid "4e3f109b-cdb4-424a-892b-ce0963b77fad") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C13") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Regulator_Switching:ADuM6000") - (at 229.87 149.86 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "45129354-a44a-4ad2-b22b-df2c62835b6e") - (property "Reference" "U6" - (at 229.87 134.62 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ADuM5000ARWZ" - (at 229.87 167.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (at 229.87 149.86 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 229.87 149.86 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 229.87 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c7016f30-b966-4666-a828-894f1b1f34b7") - ) - (pin "2" - (uuid "a5ab00e3-87c7-40d9-b644-103e7dc033e1") - ) - (pin "3" - (uuid "e277760d-2228-4689-8464-260e440dab2f") - ) - (pin "4" - (uuid "b838519e-f3bb-46fb-bba9-312bd84214c7") - ) - (pin "5" - (uuid "e0143105-44fa-4aad-9cef-5059acd3f210") - ) - (pin "6" - (uuid "badc4ff0-9c52-42e5-a649-473cbe680b90") - ) - (pin "7" - (uuid "810ef2fb-6f6d-4609-bbe2-affe4b841e0e") - ) - (pin "8" - (uuid "3ee18e9a-c923-4d53-8cea-58e622ff94df") - ) - (pin "9" - (uuid "6fbfd2f8-ee6c-4442-a03d-a163c4658f55") - ) - (pin "10" - (uuid "f0cf771f-9433-4331-8ccf-d51d1f923664") - ) - (pin "11" - (uuid "30b0ccc4-c3c1-4977-b2fb-33af5be384e5") - ) - (pin "12" - (uuid "9063fdf7-d937-4cc0-914d-cf57023102f0") - ) - (pin "13" - (uuid "350f51ce-8452-4469-bc12-af64bfed1923") - ) - (pin "14" - (uuid "9bf51fc8-5153-414e-829b-8b5c0edc18a2") - ) - (pin "15" - (uuid "81d09664-1341-4442-8c72-a0d85cd0c4ed") - ) - (pin "16" - (uuid "76612205-fd01-49a9-bd4f-dafc41ae7285") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "U6") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 267.97 63.5 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "484b0d90-fa80-433f-bd28-bf3b887bd62b") - (property "Reference" "C24" - (at 270.51 66.04 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "10uF" - (at 264.922 61.214 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 267.97 63.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 267.97 63.5 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 267.97 63.5 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 267.97 63.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 267.97 63.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c44ae9aa-5c60-4046-89fa-d9e73f28cde8") - ) - (pin "2" - (uuid "323c7290-266d-4b41-8c23-f343a96120a8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C24") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 273.05 173.99 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "489240ea-a8f9-4d99-99ae-53adf8ec8c7a") - (property "Reference" "#PWR023" - (at 273.05 180.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 273.05 179.07 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 273.05 173.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 273.05 173.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 273.05 173.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "4e8cb9c2-b9d2-435f-a8ff-c2040314753b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR023") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 287.02 71.12 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "4ba1fb55-31b4-4fae-890d-32ed7ee02c28") - (property "Reference" "C27" - (at 290.83 69.8499 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 290.83 72.3899 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 287.9852 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 287.02 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 287.02 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 287.02 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 287.02 71.12 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c7b90c7b-5c2a-4bd6-a69f-ceb220548ddb") - ) - (pin "2" - (uuid "28f7420f-6ab1-4eec-9b00-a0b09538de7a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C27") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 173.99 36.83 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4c941593-b81d-4a2e-a6a5-787c20d5f444") - (property "Reference" "C20" - (at 171.958 34.544 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 177.292 39.116 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 173.99 36.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 173.99 36.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 173.99 36.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 173.99 36.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 173.99 36.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d7a426e7-d575-4de6-854d-15de10d3315e") - ) - (pin "2" - (uuid "872b11e1-7a20-4aa4-ad11-4ff9710f6ff4") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "C33") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C20") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 342.9 64.77 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4d7819e8-1253-4696-a4fe-93a881eaa454") - (property "Reference" "C33" - (at 340.614 62.23 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 346.202 67.31 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 342.9 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 342.9 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 342.9 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 342.9 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 342.9 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e836e324-d197-4519-a363-08eec9801dce") - ) - (pin "2" - (uuid "a31332e5-6f7b-478f-afca-6d92d7145afb") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C33") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 304.8 184.15 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "4e1f1bd9-ac35-45a6-ad4d-3af7725ff50b") - (property "Reference" "#PWR028" - (at 304.8 190.5 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 304.8 189.23 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 304.8 184.15 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 304.8 184.15 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 304.8 184.15 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "21cc41e3-721d-47b4-a622-6bbf01c3b10e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR028") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:FerriteBead_Small") - (at 307.34 48.26 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "5b37f370-0a43-4f87-b9aa-18f15d5a7a01") - (property "Reference" "FB1" - (at 305.054 44.958 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "600R@100MHz" - (at 305.054 51.054 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" - (at 307.34 48.26 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 307.34 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 307.34 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Current" "200mA" - (at 307.34 48.26 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "be208342-7df6-4914-8a12-459c64dec005") - ) - (pin "2" - (uuid "91b76037-3761-4d59-a622-0d4c0b5e4b27") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "FB2") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "FB1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 273.05 148.59 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "5bb99d24-e8ef-46f4-b79c-c26c5a61e5d2") - (property "Reference" "#PWR022" - (at 273.05 142.24 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 273.05 143.51 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 273.05 148.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 273.05 148.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 273.05 148.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "f5ad759f-f54c-4d86-94a3-42bcf00e298b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR022") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 373.38 60.96 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "603f3269-0012-4002-9fbb-5a0fb9d37351") - (property "Reference" "#PWR036" - (at 373.38 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 373.38 55.88 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 373.38 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 373.38 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 373.38 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "27416b7b-2b51-4a90-b3a5-3ba46dfee54b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR036") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 67.31 60.96 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "6163b4dd-eb2a-43f3-ae4c-e626325177d6") - (property "Reference" "R6" - (at 70.358 59.436 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "5.1k" - (at 70.612 62.484 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 67.31 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 67.31 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 67.31 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 67.31 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "2ca8d649-56d7-44dc-a463-38e7bc428fc0") - ) - (pin "2" - (uuid "4ff88084-1b2c-4892-824e-4dd38b3b65ce") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "R20") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "R6") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 273.05 152.4 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "71b1b0ac-e62b-4c4c-8e59-42aad42b2606") - (property "Reference" "C25" - (at 270.764 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "18pF" - (at 275.844 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 273.05 152.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 273.05 152.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 273.05 152.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "C0G" - (at 273.05 152.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "50V" - (at 273.05 152.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "9460d28e-dc6d-49a5-a6df-c812fee153cb") - ) - (pin "2" - (uuid "2e03932d-a5c1-4bf2-ac90-bf1f3e837cee") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "C40") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C25") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 293.37 54.61 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "72a82238-a789-414a-8e52-852de22b1eef") - (property "Reference" "#PWR026" - (at 287.02 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 290.576 54.61 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 293.37 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 293.37 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 293.37 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "31e211c4-d3a4-46ff-a781-2bd72ca77c1e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR026") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 330.2 53.34 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "79066cc4-40d4-4735-b86a-cdd11934f446") - (property "Reference" "#PWR032" - (at 336.55 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 334.01 53.3399 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 330.2 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 330.2 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 330.2 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "5abeb6c9-babe-4840-87cc-d44a574b1345") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR032") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 273.05 170.18 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "7e1a2e99-229f-4098-8ab3-a13ae887d595") - (property "Reference" "C26" - (at 270.764 172.466 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "18pF" - (at 275.59 172.466 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 273.05 170.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 273.05 170.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 273.05 170.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "C0G" - (at 273.05 170.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "50V" - (at 273.05 170.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "65aa3938-4fab-476d-8e10-093fb20f3bc9") - ) - (pin "2" - (uuid "da5d2cc4-5f12-4dc1-a77d-2fcb44baece9") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "C41") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C26") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 85.09 99.06 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "7e4530fd-c62f-4b5a-bb17-148332cf8a38") - (property "Reference" "#FLG0USBVBUS01" - (at 85.09 95.25 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 85.09 101.6 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 85.09 99.06 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 85.09 99.06 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 85.09 99.06 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "927fff35-5564-472c-a6c5-d36d365375d2") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#FLG0USBVBUS01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 273.05 161.29 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "8bde056f-39cb-46bd-89b9-80bbbd1573b2") - (property "Reference" "#PWR0Y01" - (at 273.05 165.1 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 273.05 165.1 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 273.05 161.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 273.05 161.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 273.05 161.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e46553a5-265e-4d8a-a90a-a05e70fc3105") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR0Y01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Memory_EEPROM:93LCxxB") - (at 307.34 217.17 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "91b7168e-7e94-4d63-a038-c800c3ac6d9b") - (property "Reference" "U7" - (at 303.022 210.82 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "93LC46B" - (at 312.166 224.028 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" - (at 307.34 217.17 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 307.34 217.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 307.34 217.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "fbbd1313-4296-43aa-9379-252823a71ff8") - ) - (pin "2" - (uuid "ee77b083-7f3e-4c58-978a-6bcba602d598") - ) - (pin "3" - (uuid "464d0f28-bbec-47e1-bf59-d259b5b20259") - ) - (pin "4" - (uuid "9bf8bd78-b982-41cc-852a-29fce465daa8") - ) - (pin "5" - (uuid "82322787-581c-41a5-ade8-485120b31977") - ) - (pin "6" - (uuid "a5f9c3e6-5bd2-4182-bbe8-99c455b44e78") - ) - (pin "7" - (uuid "e7bc4e46-891d-4962-a6cb-5d55b895f431") - ) - (pin "8" - (uuid "65929b3b-42ae-4c14-9b8f-f5828bba1ce8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "U7") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 264.16 109.22 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "93aff3cc-9831-4437-b1aa-0e5dbb35883c") - (property "Reference" "R9" - (at 260.858 107.188 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "10k" - (at 267.208 110.998 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 264.16 109.22 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 264.16 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 264.16 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 264.16 109.22 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "6e66e8be-e4f1-4d41-973b-c40c756e231a") - ) - (pin "2" - (uuid "671ab969-6baf-4710-9ade-c4c7440cde7a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "R9") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 80.01 139.7 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "96c56b86-fd5a-49db-93bd-6bdb9369ace0") - (property "Reference" "C15" - (at 82.042 137.414 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 83.566 141.986 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 80.01 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 80.01 139.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 80.01 139.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 80.01 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "16V" - (at 80.01 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d59f2b1a-0ea9-4cf5-a297-0fa2fb2c9937") - ) - (pin "2" - (uuid "87f60e0c-81d8-4f30-9f92-1402bbb37b31") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C15") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 373.38 64.77 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a0ff8352-595a-4cd8-b36e-256eb1cc7db0") - (property "Reference" "C36" - (at 371.348 62.484 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 376.682 67.056 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 373.38 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 373.38 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 373.38 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 373.38 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 373.38 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "eb77fd47-6c4e-47bc-9094-515dda5e3d44") - ) - (pin "2" - (uuid "7e265b5d-7163-45a9-96fc-ec0d3715bd7b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C36") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 307.34 69.85 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a938ce75-d751-485e-a653-b7236746d773") - (property "Reference" "#FLG0VPHY01" - (at 307.34 66.04 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 307.34 72.39 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 307.34 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 307.34 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 307.34 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "664b8e52-5c38-4bbe-9754-8b59db222370") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#FLG0VPHY01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 242.57 144.78 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a93cc382-4f69-4ea8-9e51-670f7ccc5da0") - (property "Reference" "#PWR0AD01" - (at 242.57 148.59 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 242.57 148.59 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 242.57 144.78 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 242.57 144.78 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 242.57 144.78 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "32df4db8-2b62-4fea-9c50-585f5c26d29c") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR0AD01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 107.95 139.7 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "abfcc5d9-af5d-4a76-88e5-5d0838395d84") - (property "Reference" "C17" - (at 110.236 137.414 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "10uF" - (at 110.744 142.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 107.95 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 107.95 139.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 107.95 139.7 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 107.95 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 107.95 139.7 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a26ad488-c0bd-48e1-abce-7f4bdcdb61ca") - ) - (pin "2" - (uuid "a2cb1749-e915-4d03-85a4-06d93520d9c8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C17") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 278.13 110.49 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "ac2f78ec-ca7e-4325-ad14-8febeca59cb8") - (property "Reference" "#PWR024" - (at 271.78 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 274.32 110.4899 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 278.13 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 278.13 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 278.13 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e8bc12dc-397a-4567-ac80-6ac66465bfbd") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR024") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:Crystal_GND24") - (at 278.13 161.29 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "b2c46570-9a02-4535-8cfa-bbcb003e9ab5") - (property "Reference" "Y1" - (at 282.956 159.512 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "12MHz" - (at 284.226 162.052 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" - (at 278.13 161.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 278.13 161.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 278.13 161.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ESR" "50R" - (at 278.13 161.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "±30ppm" - (at 278.13 161.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "CL" "18pF" - (at 278.13 161.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 278.13 161.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 278.13 161.29 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "5661b541-b0c7-42d3-b505-f08c624244b6") - ) - (pin "2" - (uuid "9b0233b2-7e84-4ddc-86b4-188dcbbf4079") - ) - (pin "3" - (uuid "9ed5b24d-dfed-48d6-88e9-984cd732595c") - ) - (pin "4" - (uuid "f0b6444c-d6b5-4bec-b637-ad63533ceaca") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "Y10") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "Y1") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 163.83 73.66 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "ba6dc9fa-1a83-49f4-a6fd-de9d571c25f6") - (property "Reference" "#PWR018" - (at 163.83 80.01 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 163.83 78.74 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 163.83 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 163.83 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 163.83 73.66 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "844c7ad4-32f0-4558-9058-3e3a266f0b25") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR018") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 78.74 104.14 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c042288a-20e3-4624-9f2a-65dd79c19569") - (property "Reference" "C14" - (at 81.28 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1uF" - (at 81.28 105.41 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 78.74 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 78.74 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 78.74 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 78.74 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "16V" - (at 78.74 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "80ea9b83-3fed-4b11-b8f9-9f6a0ab0230c") - ) - (pin "2" - (uuid "31729aed-4ae1-4489-ac55-e51f9a9f75d5") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C14") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 326.39 53.34 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c136e02e-260c-444e-bce9-b2e169355f5f") - (property "Reference" "C32" - (at 323.342 52.07 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 330.708 55.118 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 326.39 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 326.39 53.34 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 326.39 53.34 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 326.39 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 326.39 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ef5ff6be-fa1a-4e1e-9455-d1635d4d357e") - ) - (pin "2" - (uuid "b86e68c4-3507-4ead-8185-79b38ad40d94") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C32") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 297.18 60.96 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c6375d09-4912-4f54-9d1f-c93aa166d641") - (property "Reference" "C29" - (at 294.132 59.944 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 301.498 62.484 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 297.18 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 297.18 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 297.18 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 297.18 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 297.18 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "caa4c8cd-8c28-4ea8-bce8-06c06fa192f6") - ) - (pin "2" - (uuid "9b07a03e-9cb0-4f1e-918d-2425fd3a08e9") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C29") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 283.21 110.49 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c8b06b44-7310-4191-8477-73fae983e5e1") - (property "Reference" "R10" - (at 279.908 109.22 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "12k" - (at 287.528 112.014 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 283.21 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 283.21 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 283.21 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "1%" - (at 283.21 110.49 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7d6bdb45-8bf5-4b8f-acad-14e7a5ae158c") - ) - (pin "2" - (uuid "db796424-4e66-4be9-959d-b430b3789cac") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "R10") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 210.82 144.78 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "cfcbd4b1-9213-400e-b190-98fbf7ce450c") - (property "Reference" "C21" - (at 213.36 143.51 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "0.1uF" - (at 213.36 146.05 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 210.82 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 210.82 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 210.82 144.78 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 210.82 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "16V" - (at 210.82 144.78 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c2cd9952-3884-4a37-a2bf-ff854f06b4cb") - ) - (pin "2" - (uuid "9894f3f2-1fcf-41e6-9ed6-3dd0cad208c8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C21") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 242.57 149.86 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d0277259-caf0-46ee-9497-c023eb5436a5") - (property "Reference" "#PWR0AD02" - (at 242.57 153.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 242.57 153.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 242.57 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 242.57 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 242.57 149.86 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a5429a19-4093-4a03-9926-53f97e1b89c2") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR0AD02") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Interface_USB:FT2232HL") - (at 320.04 125.73 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d1b9caea-74c5-4464-b810-6fbc52cf0d32") - (property "Reference" "U8" - (at 320.04 113.73 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "FT2232HL" - (at 320.04 137.73 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_QFP:LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm" - (at 320.04 125.73 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 320.04 125.73 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 320.04 125.73 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "06fca39b-0fe0-47f9-bbed-9c811f24edc5") - ) - (pin "2" - (uuid "8562d5ee-ab66-4a16-bba5-a7eb50f1428a") - ) - (pin "3" - (uuid "c02c5b78-85b3-4d8b-9a2c-55468f22ce67") - ) - (pin "4" - (uuid "762c2d7e-3cef-480b-ada3-1580225ca8e8") - ) - (pin "5" - (uuid "9cde623e-1fcf-4113-b5e9-271807b19abb") - ) - (pin "6" - (uuid "dbe67d61-3745-4447-a145-5ea1623438b6") - ) - (pin "7" - (uuid "462c9e6c-d6e6-458c-ae6d-a684ce7414a3") - ) - (pin "8" - (uuid "300bd3cd-9125-40e1-8527-89344580a460") - ) - (pin "9" - (uuid "c61932e8-7d9d-4346-9998-468a678aff24") - ) - (pin "10" - (uuid "bd3462d5-c742-4fb0-b32b-147f3b3f5670") - ) - (pin "11" - (uuid "7bf23070-1948-4523-9dc6-0985a2b86a38") - ) - (pin "12" - (uuid "386cdae5-580c-4039-ace6-f45c865a6815") - ) - (pin "13" - (uuid "b74ddcbf-f502-4a55-bcee-171b82252da8") - ) - (pin "14" - (uuid "94ec5341-57a2-4937-b36f-af523b105e31") - ) - (pin "15" - (uuid "9acc92fa-48f9-4229-8449-6e5ea533d14e") - ) - (pin "16" - (uuid "acb19a5b-1fa6-4efa-a7c9-65afc923d4b6") - ) - (pin "17" - (uuid "5f84534b-5257-4c13-bee4-d5ceca9d8c99") - ) - (pin "18" - (uuid "99f98e14-bf46-43a3-ad68-96ba336aa20a") - ) - (pin "19" - (uuid "c5db1414-17da-44c3-ab22-f483e6de4d0b") - ) - (pin "20" - (uuid "bff02dba-0bf8-4d4f-bdbf-b596d74d5122") - ) - (pin "21" - (uuid "57741cf4-e505-4e71-947a-966075818d50") - ) - (pin "22" - (uuid "b1498516-b132-4f91-858a-dbc3571e9eef") - ) - (pin "23" - (uuid "721c8345-0c88-4143-9bc2-dd8e062b63d5") - ) - (pin "24" - (uuid "84ff2fd8-6156-4c38-8f63-89db5e820755") - ) - (pin "25" - (uuid "4b85d318-e365-460b-8c82-69054e7ab648") - ) - (pin "26" - (uuid "28d96002-51a7-4911-9072-254cce7b9c9c") - ) - (pin "27" - (uuid "e2c3536a-6e47-48c7-a6dc-a8e19d66d940") - ) - (pin "28" - (uuid "d024d565-89ba-4a19-b9d3-d2b81dfbcb43") - ) - (pin "29" - (uuid "c8e6cd49-fe43-4707-b105-5598c594a91c") - ) - (pin "30" - (uuid "8f7fc36f-bd4d-4500-baba-6f6fd220d041") - ) - (pin "31" - (uuid "5de08045-383c-425f-8933-04b862cd3cd3") - ) - (pin "32" - (uuid "24b65f61-7ffa-48a8-a78d-1b41e1a1c221") - ) - (pin "33" - (uuid "3aad41b0-fed8-46c5-b113-e71b91a49475") - ) - (pin "34" - (uuid "3a44e73d-f278-4926-a38e-ed71d63b5dba") - ) - (pin "35" - (uuid "94f583c3-7d4c-4d01-b824-ee9ffb2c3f84") - ) - (pin "36" - (uuid "a5ab4e76-5d77-4c3b-8bc6-f353f3f1a3f2") - ) - (pin "37" - (uuid "0bf6b394-d8e2-43f4-b2d5-b0c2a0232369") - ) - (pin "38" - (uuid "3e65f669-619e-41d6-afdc-faa50789e64b") - ) - (pin "39" - (uuid "d1742eba-a9d8-499e-b7e1-a7ae7aa0ef03") - ) - (pin "40" - (uuid "5da14852-bb73-4724-b99a-c7ef3ce307f5") - ) - (pin "41" - (uuid "311809d7-53e4-4653-bd5b-2e8a62158f67") - ) - (pin "42" - (uuid "e9ad84ec-4b9a-451c-b129-5e2c9e4b6c30") - ) - (pin "43" - (uuid "8aed1484-c613-43a6-8d22-e1755b95ca0a") - ) - (pin "44" - (uuid "2de9986f-410a-47ba-a397-87b1ae537a17") - ) - (pin "45" - (uuid "b608e77e-a95c-40a0-aa7e-54f5a3853243") - ) - (pin "46" - (uuid "983c093a-8c03-49ed-98dc-2a7e69678826") - ) - (pin "47" - (uuid "eae80b78-5112-4928-8c74-9f01f4c7b49b") - ) - (pin "48" - (uuid "bf6454d0-1bec-4f53-8c22-c7c4820c63ac") - ) - (pin "49" - (uuid "089fd518-251e-47bf-835b-76fab9d9e8f9") - ) - (pin "50" - (uuid "a6ec4c83-36fa-4e15-acac-22444f74aa5a") - ) - (pin "51" - (uuid "538c4887-da1d-4e8f-b05e-e6321c606ae6") - ) - (pin "52" - (uuid "1708078e-1570-4ffc-b9f9-4d2b2f20d154") - ) - (pin "53" - (uuid "2e20435b-44ef-48fe-9765-14db4b8b9c53") - ) - (pin "54" - (uuid "92b1c559-1dc7-4129-81d9-1edf5314f3c9") - ) - (pin "55" - (uuid "1005aba3-d95f-4cfb-8882-b5236747593a") - ) - (pin "56" - (uuid "29a01ba9-92de-42c7-8bae-ec97319808d4") - ) - (pin "57" - (uuid "3c6e1b2b-2131-4267-bebd-e23243c7aa6a") - ) - (pin "58" - (uuid "ee602b62-c23d-4627-909f-be6b1bfffa98") - ) - (pin "59" - (uuid "a3f0aacb-50fe-4caa-9d2b-7bc76c092f59") - ) - (pin "60" - (uuid "7cba7ef2-3c9c-4794-b9fc-8fd5cdabfbdf") - ) - (pin "61" - (uuid "50545e92-2f11-4327-a12f-43a463a32c10") - ) - (pin "62" - (uuid "d3654b8b-f193-4f66-a49a-0ee206de6c38") - ) - (pin "63" - (uuid "d6ab11ed-56a8-4fe3-8a8e-a5d8a2221011") - ) - (pin "64" - (uuid "74749c44-aa65-49a4-9314-1434a536fff4") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "U30") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "U8") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 173.99 33.02 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "d26ea23f-c872-4ca3-8673-c4e1e4ced336") - (property "Reference" "#PWR019" - (at 173.99 26.67 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 173.99 27.94 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 173.99 33.02 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 173.99 33.02 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 173.99 33.02 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "53beb243-e961-4a0a-8b89-34dc91ddf9db") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR019") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 353.06 64.77 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "dad5042a-47c2-4667-854c-aeaf6e74a8be") - (property "Reference" "C34" - (at 350.52 62.484 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 356.616 67.056 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 353.06 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 353.06 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 353.06 64.77 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 353.06 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 353.06 64.77 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "1fde722a-7e00-4d5f-a9e2-a40854a5b735") - ) - (pin "2" - (uuid "566dd359-1185-4b6e-9ca1-21858bfc327a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C34") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 248.92 148.59 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "db768a43-bf24-48d5-898a-6fa69cd64bc4") - (property "Reference" "#PWR0AD04" - (at 248.92 152.4 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 248.92 152.4 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 248.92 148.59 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 248.92 148.59 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 248.92 148.59 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d7f15956-3e53-45a0-ba61-e9dcafea95e9") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR0AD04") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 143.51 36.83 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "dd827515-66c6-49b7-bdf5-68265814dd48") - (property "Reference" "C18" - (at 141.478 34.544 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 146.812 39.37 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 143.51 36.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 143.51 36.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 143.51 36.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 143.51 36.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 143.51 36.83 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e100c76d-b29b-43e4-a206-fceeb835a2b1") - ) - (pin "2" - (uuid "f899c261-3623-4007-9b5f-f5d81267346b") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "C32") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C18") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 342.9 60.96 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "de971e05-4125-4865-8cf1-5460b9214c08") - (property "Reference" "#PWR033" - (at 342.9 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 342.9 55.88 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 342.9 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 342.9 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 342.9 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d0a169e1-10ce-4bff-9e3e-9560ecf1772e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR033") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:FerriteBead_Small") - (at 309.88 43.18 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e5f506f5-b7d3-4532-bead-734eb617ac9a") - (property "Reference" "FB2" - (at 312.166 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "600R@100MHz" - (at 312.166 46.736 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" - (at 309.88 43.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 309.88 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 309.88 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Current" "200mA" - (at 309.88 43.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "38141efb-b649-4ac7-a2cd-db4f582c03c2") - ) - (pin "2" - (uuid "d297bf58-f344-4dd4-8895-b6cf566b1bdc") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "FB1") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "FB2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 317.5 205.74 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "f11e8b04-e025-4483-a741-90acb5be16b3") - (property "Reference" "#PWR030" - (at 323.85 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 321.31 205.7399 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 317.5 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 317.5 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 317.5 205.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "33e76f7a-0c24-46c0-8e79-896f36aad778") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR030") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 264.16 129.54 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "f512a609-f6e4-47d9-8649-2a3e0649dc1f") - (property "Reference" "#PWR020" - (at 264.16 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 264.16 134.62 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 264.16 129.54 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 264.16 129.54 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 264.16 129.54 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "eba3ae4f-5e30-4838-9fd7-185eda2a0e87") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR020") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 264.16 121.92 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "f818f753-a2ba-416e-840b-85744c6dd0b5") - (property "Reference" "C23" - (at 261.62 119.38 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 267.716 123.952 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 264.16 121.92 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 264.16 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 264.16 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 264.16 121.92 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 264.16 121.92 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c4aead45-3705-4562-a394-739f29631f93") - ) - (pin "2" - (uuid "1d1ee693-5556-4fb7-bfb2-0d283a955a3b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C23") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 330.2 44.45 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "fce97e1a-3b02-4dac-b3c1-5e8699adcedd") - (property "Reference" "#PWR031" - (at 336.55 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 334.01 44.4499 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "" - (at 330.2 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 330.2 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 330.2 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "2091f889-e7bb-4bf2-af2b-1d53e0c6b0c0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "#PWR031") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 102.87 104.14 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "fd75998f-f65c-4a86-b2a4-20e7c515341f") - (property "Reference" "C16" - (at 105.41 102.87 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1uF" - (at 105.41 105.41 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 102.87 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 102.87 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 102.87 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 102.87 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 102.87 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a32a7aec-e1db-4a76-981c-bc68dd1feec7") - ) - (pin "2" - (uuid "21a0ead0-949f-477f-b02f-e26a5d7de4e8") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C16") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 297.18 54.61 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "fefa453b-a56a-4d1e-9e90-e2119d111222") - (property "Reference" "C28" - (at 293.878 53.086 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "100nF" - (at 301.498 55.88 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 297.18 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 297.18 54.61 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 297.18 54.61 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 297.18 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 297.18 54.61 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e94d4a34-0bda-421c-9094-dc50893bfd44") - ) - (pin "2" - (uuid "b9798230-6a68-4ed5-bc14-16b18e3c0fb6") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "C28") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Interface_USB:ADUM4160") - (at 158.75 53.34 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "ff0840fa-64d2-4c4f-a5f2-0a6f744a930a") - (property "Reference" "U5" - (at 151.384 39.116 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "ADUM4160" - (at 167.132 39.116 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (at 158.75 53.34 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 158.75 53.34 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 158.75 53.34 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "36f8af41-151f-4ee1-b3e9-6a8c71133952") - ) - (pin "2" - (uuid "b4a1dd4d-8661-43e7-bfaf-9aadf4b7c606") - ) - (pin "3" - (uuid "fc8c5c3d-95e0-46cb-b31b-22f5b26c9d4c") - ) - (pin "4" - (uuid "4815ee10-f3ee-4438-92e7-e7dd24a8b062") - ) - (pin "5" - (uuid "ee874256-5153-44a5-849f-9ffc7a2bec5c") - ) - (pin "6" - (uuid "0d20eba0-ee1e-42c0-9347-8ebb10992dda") - ) - (pin "7" - (uuid "81d974ab-01e0-4175-88a2-137d3d141710") - ) - (pin "8" - (uuid "89f82495-5471-4747-981d-ae6455b98f6e") - ) - (pin "9" - (uuid "1dbe0121-4a5e-4afa-a8a5-c3ec75b0ed93") - ) - (pin "10" - (uuid "bc7acbae-f2b5-405e-ae77-0dcc003a81db") - ) - (pin "11" - (uuid "b9710110-4fa0-4b27-b764-835f57ed097f") - ) - (pin "12" - (uuid "7452a282-a907-454c-b058-7b7a91ae7417") - ) - (pin "13" - (uuid "b008ef2e-9cee-4d44-914c-5018da3684b4") - ) - (pin "14" - (uuid "f6258a19-280f-4bd7-b080-d4da63abdbaa") - ) - (pin "15" - (uuid "37de5ae8-f161-43df-a15b-d9fc9c1f1c7e") - ) - (pin "16" - (uuid "74868ec1-7b86-472b-800c-732d3a4ad6e7") - ) - (instances - (project "usb" - (path "/11111111-2222-3333-4444-555555555555" - (reference "U20") - (unit 1) - ) - ) - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/64033f5d-a512-44d7-9483-4c31ef84bd56" - (reference "U5") - (unit 1) - ) - ) - ) - ) - (sheet_instances - (path "/" - (page "1") - ) - ) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/bom.csv b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/bom.csv deleted file mode 100644 index d03de86..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/bom.csv +++ /dev/null @@ -1,53 +0,0 @@ -Qty,Value,Footprint,Specs,References -30,100nF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=X7R V=10V,"C6,C7,C11,C17,C19,C22,C26,C27,C28,C29,C31,C32,C33,C34,C35,C36,C37,C40,C41,C42,C44,C45,C46,C47,C48,C49,C51,C52,C53,C54" -5,10k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=5%,"R5,R9,R11,R12,R18" -4,1uF,C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Type=X7R V=10V,"C1,C2,C15,C55" -3,10uF,C_0805_2012Metric_Pad1.18x1.45mm_HandSolder,Type=X5R V=10V,"C16,C23,C50" -3,22uF,C_1206_3216Metric_Pad1.33x1.80mm_HandSolder,Type=X5R V=10V,"C8,C9,C10" -3,4.7uF,C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Type=X7R V=10V,"C30,C38,C39" -2,100nF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=X7R V=50V,"C4,C5" -2,10pF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=C0G V=50V,"C57,C58" -2,10uF,C_0805_2012Metric_Pad1.18x1.45mm_HandSolder,Type=X5R V=25V,"C3,C60" -2,18pF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=C0G V=50V,"C24,C25" -2,330,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=5%,"R14,R15" -2,5.1k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=5%,"R6,R7" -2,600R@100MHz,L_0603_1608Metric_Pad1.05x0.95mm_HandSolder,Current=200mA,"FB1,FB2" -1,0.1uF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=X7R V=10V,C21 -1,0.1uF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=X7R V=16V,C20 -1,100,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=5%,R13 -1,100k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=1%,R4 -1,100nF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=X7R V=16V,C14 -1,100uF,CP_Elec_6.3x7.7,Type=Aluminum V=25V,C59 -1,10k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=1%,R2 -1,10nF,C_0402_1005Metric_Pad0.74x0.62mm_HandSolder,Type=X7R V=10V,C43 -1,10uF,C_0805_2012Metric_Pad1.18x1.45mm_HandSolder,Type=X5R V=16V,C12 -1,12.4k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=1%,R16 -1,120R@100MHz,L_0805_2012Metric_Pad1.05x1.20mm_HandSolder,Current=1A,FB3 -1,12MHz,Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering,CL=18pF ESR=50R Tolerance=±30ppm Type=X7R V=10V,Y1 -1,12MHz,SOT-23-5,,X1 -1,12k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=1%,R10 -1,1M,R_0603_1608Metric_Pad0.98x0.95mm_HandSolder,Tolerance=5%,R8 -1,1M,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=5%,R17 -1,1nF,C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Type=C0G V=100V,C18 -1,1uF,C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Type=X7R V=16V,C13 -1,2.2uH,L_Changjiang_FNR4018S,,L1 -1,200k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=1%,R3 -1,25MHz,Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering,C0=7pF CL=8pF ESR=30R Tolerance=±50ppm Type=X7R V=10V,Y2 -1,3.3uF,C_0603_1608Metric_Pad1.08x0.95mm_HandSolder,Type=X7R V=10V,C56 -1,33k,R_0402_1005Metric_Pad0.72x0.64mm_HandSolder,Tolerance=1%,R1 -1,93LC46B,SOIC-8_3.9x4.9mm_P1.27mm,,U7 -1,ADUM4160,SOIC-16W_7.5x10.3mm_P1.27mm,,U5 -1,ADuM5000ARWZ,SOIC-16W_7.5x10.3mm_P1.27mm,,U6 -1,AP2112K-1.2,SOT-23-5,,U1 -1,AP2112K-3.3,SOT-23-5,,U4 -1,FT2232HL,LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm,,U8 -1,HR911105A,HANRUN_HR911105A,,J2 -1,ICE40UP5K-SG48ITR,QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm,,U9 -1,Sp1_Connector,SP1 BoardConnector,,J3 -1,TPS2116DRL,SOT-583-8,,U2 -1,TPS22810DBV,SOT-23-6,,U12 -1,TPS562201DDCR,SOT95P280X110-6N,,U3 -1,USBLC6-2SC6,SOT-23-6_Handsoldering,,D1 -1,USB_C,USB_C_Receptacle_Hanbo-MC-711-H72,,J1 -1,W25Q32JVSS,SOIC-8_5.3x5.3mm_P1.27mm,,U10 -1,W5100S-L,LQFP-48_7x7mm_P0.5mm,,U11 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/HR961160C.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/HR961160C.pdf deleted file mode 100644 index fb22d80..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/HR961160C.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1fd81d1f493e6e723c6f7f7fdf43d1337ab5e8e4fb75969540512fe89a1c581d -size 236381 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/j1b1211ccd.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/j1b1211ccd.pdf deleted file mode 100644 index 2dd9204..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/j1b1211ccd.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8524cf8917d8aeb3c28a2507767500c7d552e340d46051734aa2605f9ef29649 -size 183184 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/w5100s_ds_v125e.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/w5100s_ds_v125e.pdf deleted file mode 100644 index 6edba09..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/ethernet/w5100s_ds_v125e.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e60f18e9ed355925a9fc062a46f0f561300a0d1c257ea75173b3c585d7f73de3 -size 2317469 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/ICE40UP5K-SG48I.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/ICE40UP5K-SG48I.pdf deleted file mode 100644 index 037d655..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/ICE40UP5K-SG48I.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8dd9d8fbe92a17b1a49b239fe89486f7a282c3d5542a64c2a366c65fd31d4ed7 -size 3205086 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/SiT2001B-datasheet_0.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/SiT2001B-datasheet_0.pdf deleted file mode 100644 index 439cce2..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/SiT2001B-datasheet_0.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:414cbe2af99d88b753313cd7bafc1d99dc0ba825015800d4faf70cf7ea3b5e2e -size 1060955 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/w25q32jv_revg_03272018_plus-1489806.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/w25q32jv_revg_03272018_plus-1489806.pdf deleted file mode 100644 index 4aae200..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/fpga/w25q32jv_revg_03272018_plus-1489806.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5a2d886f0601e5570707b3337f440f3accb4fd63f38b453f6804a28479fede2b -size 2096499 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/AP2112-271550.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/AP2112-271550.pdf deleted file mode 100644 index 7cc2cf9..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/AP2112-271550.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:93e7f8ec58b84edd5de9263a75ed0a68c8e671c99c45966d5af673a66ca05833 -size 720494 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/tps2116.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/tps2116.pdf deleted file mode 100644 index 449f763..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/tps2116.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5babd88afb84e2e65c9c0da23b75f85758c0c730e34102a0fb746ac9573ed1d5 -size 2924080 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/tps562201.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/tps562201.pdf deleted file mode 100644 index 33eac09..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/power/tps562201.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e4bddc8d38c6f95204e9a0af509751cf8ac581150c7ab7c9e125c1cf460d5420 -size 1691692 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/93LC46B.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/93LC46B.pdf deleted file mode 100644 index c9e3037..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/93LC46B.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:979133d99be10a4839c438e3c6d8a45ee861f94289722210a92b94b5434c042b -size 1131506 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/ADuM4160.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/ADuM4160.pdf deleted file mode 100644 index c1c75c3..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/ADuM4160.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:73c2148ca6e284572646602d1c9658e9baf4952ece5b8501a409149b08c90fe3 -size 373117 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/DS_FT2232H.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/DS_FT2232H.pdf deleted file mode 100644 index 6396675..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/DS_FT2232H.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e2c6745b2c5eab03e41e81d7b0b0cbc4c2dcddc3d0af3802897bc73f0483ac4f -size 1996089 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/Global_Connector_Technology_usb4105.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/Global_Connector_Technology_usb4105.pdf deleted file mode 100644 index cf87c6f..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/Global_Connector_Technology_usb4105.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7816c99667ec362970d8050730674d4a16bf16201a7e48248130ad3b6c5c760d -size 164510 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/MC-711-H72.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/MC-711-H72.pdf deleted file mode 100644 index 7e57408..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/MC-711-H72.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6f4bb5d547365f8c143583b8e584059398a0b085815f0488836d022e064cfc7f -size 580582 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/USBLC6-2SC6.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/USBLC6-2SC6.pdf deleted file mode 100644 index 299bd89..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/USBLC6-2SC6.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bc30154f310cd631043214ed52571daefe04270587ec55072d49a23bd18b9068 -size 575521 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/adum5000.pdf b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/adum5000.pdf deleted file mode 100644 index 25365c5..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/datasheets/usb/adum5000.pdf +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5c10980e2933fccf092f1d61fab44b51a91d5147b69bb4acac084543cd14920e -size 335290 diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/docs/layout_checklist.md b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/docs/layout_checklist.md deleted file mode 100644 index fd57244..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/docs/layout_checklist.md +++ /dev/null @@ -1,54 +0,0 @@ -# re-BBA-RB — PCB Layout Checklist / Floor-Plan Plan - -Board: ~40 × 100 mm, **1.2 mm, 4-layer, ENIG**. Interposer is a break-off tab of the same panel. - -## 1. Stackup (1.2 mm 4-layer) -- **L1 SIG** · **L2 GND (GC_Ground)** · **L3 PWR (3V3)** · **L4 SIG** — ground image plane directly under the top-side parts. -- Thin prepreg on L1–L2 and L3–L4; thick core L2–L3 (so PWR↔GND plane cap is weak → lean on discrete decoupling). -- On L2, the ground plane carries **GC_Ground** everywhere **except a `USB_GND` island** in the isolated corner. -- Put the cleanest/fastest GC-referenced nets (EXI, Ethernet pairs) on **L1 over L2 GND**; slower/tolerant nets on L4. - -## 2. Isolation barrier (the #1 rule) -- One continuous **gap on all four layers** separating the floating section from the board. **Zero signals cross it** — only U5 (ADuM4160) and U6 (ADuM5000) bridge it, internally. -- **Floating section** (put together in one corner, over the L2 `USB_GND` island): J1 (USB-C), D1 (USBLC6), U4 (AP2112K floating LDO), primary sides of U5/U6. -- Cross-barrier parts: **R8 (1 MΩ)** + **C18 (1 nF Y-cap)** — place C18 hard across the gap, short loop. -- USB-C **CC Rd resistors R6/R7** present; keep near the connector. - -## 3. isoPower (U6 ADuM5000) EMI — 180 MHz radiator -- Keep the isolated island **small**; solid ground under U6. -- Bypass **C60/C61 (0.1 µF)** right at VDD1/VISO; the 10 µF bulk (C16/C18 on the rail) near U6 too. -- Keep U6 **away from the W5100 PHY, the Ethernet magnetics, and the USB/EXI signal lines**. -- Optional (only if chasing compliance): **overlapping-plane stitching** — extend L1 GC_Ground over the L2 USB_GND across the gap (vias to GND only on the GC side; no vias in the overlap). Otherwise the discrete C18 handles the 180 MHz fundamental. - -## 4. Buck (U3 TPS562201) — hot loop -- **C3 ∥ C60 (2× 10 µF, input)** tight to VIN with a short, wide return — this is the hot loop. -- **L1 (2.2 µH)** and **C9 ∥ C10 (2× 22 µF, output)** close; keep the **SWN** copper small (min area, no sensitive traces near it). -- **C4 (bootstrap)** right at SW/VBST. Feedback divider **R1/R2** away from SWN, FB trace short. -- **C59 (100 µF electrolytic, 12 V bulk)** at the EXI 12 V entry; **C5** decoupling near VIN. - -## 5. W5100S (U11) + Ethernet -- **Y2 (25 MHz) + C57/C58 (10 pF, CL=8 pF)** hard against XI/XO, guard with ground. -- **R16 (RSET 12.4 k)** close to RSET_BG; **FB3 (120R, 1 A) + C56 (3.3 µF)** on the 1V2O→1V2A/D path, short and low-DCR. -- **TX/RX differential pairs → magjack (J2):** short, **100 Ω differential**, matched length, over solid GC_Ground; keep the two pairs apart. Center-tap caps + terminations close. -- LED resistors **R14/R15 (330)** near the magjack LEDs. -- **Load switch U12** on the W5100 3.3 V feed, enabled by `GC_ON`; place at the W5100 power entry. - -## 6. FT2232H (U8) + USB -- **Y1 (12 MHz) + C24/C25 (18 pF)** at OSCI/OSCO — verify frequency at bring-up, tune caps if off. -- **FB1/FB2 (600R) + C27/C28** on VPHY/VPLL, close to the pins; **C22+R9** reset RC near RESET#; **R10 (12 k)** on REF. -- **USB D+/D−:** floating side (J1↔U5) on **L1 over USB_GND**; board side (U5↔U8) on **L4 over GC_Ground**. ~90 Ω diff (full-speed via ADuM4160, so forgiving) but keep references clean. - -## 7. iCE40 (U9) + support -- Decoupling (C36/C37/C40/C41/C46/C47 etc.) one per VCC pin, tight. -- **VCCPLL filter R13 (100) + C43/C45** right at VCCPLL; **U1 (1V2 LDO) + C39/C42/C44** near the core. -- **X1 (12 MHz osc) + C80** near the clock input pin; **U10 (SPI flash)** close to the config pins. - -## 8. EXI / SP1 interposer (J3) -- EXI signals (CLK/CS/MOSI/MISO/INT) reference **GC_Ground continuously** to the edge fingers. -- **EXTIN → 10 k (R18) → SP1_3V3**; the 12 V bulk near the connector. -- Interposer: **1.2 mm, ENIG, edge chamfer** on the gold fingers; **break-off tab on a different edge** than the fingers. - -## 9. General -- Every decoupling cap next to its pin (values/positions already specced in the schematic). -- Via-stitch the two ground pours generously; via-fence the isolated island edge. -- Confirm before order: **X1 package**, **SP1 footprint geometry**, magjack/USB-C footprints vs datasheets. diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/ethernet.kicad_sch b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/ethernet.kicad_sch deleted file mode 100644 index 0950831..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/ethernet.kicad_sch +++ /dev/null @@ -1,11394 +0,0 @@ -(kicad_sch - (version 20260306) - (generator "eeschema") - (generator_version "10.0") - (uuid "a88c6b60-53c5-4c5b-a4f8-dc5df82b7e8a") - (paper "A4") - (lib_symbols - (symbol "Device:C" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "C" - (at 0.635 2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "C" - (at 0.635 -2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0.9652 -3.81 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "cap capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "C_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:Crystal_GND24" - (pin_names - (offset 1.016) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "Y" - (at 3.175 5.08 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "Crystal_GND24" - (at 3.175 3.175 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Four pin crystal, GND on pins 2 and 4" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property private "KLC_S3.3" "The rectangle is not a symbol body but a graphical element" - (at 0 -12.7 0) - (show_name yes) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property private "KLC_S4.1" "Some pins are on 50mil grid to make the symbol small" - (at 0 -15.24 0) - (show_name yes) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "quartz ceramic resonator oscillator" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "Crystal*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "Crystal_GND24_0_1" - (polyline - (pts - (xy -2.54 2.286) (xy -2.54 3.556) (xy 2.54 3.556) (xy 2.54 2.286) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 0) (xy -2.032 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 -2.286) (xy -2.54 -3.556) (xy 2.54 -3.556) (xy 2.54 -2.286) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.032 -1.27) (xy -2.032 1.27) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -1.143 2.54) - (end 1.143 -2.54) - (stroke - (width 0.3048) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -3.81) (xy 0 -3.556) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.032 0) (xy 2.54 0) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 2.032 -1.27) (xy 2.032 1.27) - ) - (stroke - (width 0.508) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "Crystal_GND24_1_1" - (pin passive line - (at -3.81 0 0) - (length 1.27) - (name "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -5.08 90) - (length 1.27) - (name "G" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 3.81 0 180) - (length 1.27) - (name "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 0 -5.08 90) - (length 1.27) - (hide yes) - (name "G" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:FerriteBead_Small" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "FB" - (at 1.905 1.27 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "FerriteBead_Small" - (at 1.905 -1.27 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Ferrite bead, small symbol" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "L ferrite bead inductor filter" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "Inductor_* L_* *Ferrite*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "FerriteBead_Small_0_1" - (polyline - (pts - (xy -1.8288 0.2794) (xy -1.1176 1.4986) (xy 1.8288 -0.2032) (xy 1.1176 -1.4224) (xy -1.8288 0.2794) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 0.889) (xy 0 1.2954) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 -1.27) (xy 0 -0.7874) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (symbol "FerriteBead_Small_1_1" - (pin passive line - (at 0 2.54 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 -2.54 90) - (length 1.27) - (name "" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:R" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "R" - (at 2.032 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "R" - (at 0 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "R res resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "R_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "HR911105A:HR911105A" - (pin_names - (offset 1.016) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "J" - (at -33.1783 36.2409 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Value" "HR911105A" - (at -33.1242 -38.2202 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Footprint" "HR911105A:HANRUN_HR911105A" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MF" "hanrun" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PACKAGE" "None" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PRICE" "None" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Package" "None" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Check_prices" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=eda" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "STANDARD" "Manufacturer Recommendation" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PARTREV" "A" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "SnapEDA_Link" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=snap" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MP" "HR911105A" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Price" "None" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Availability" "In Stock" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "AVAILABILITY" "Unavailable" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (symbol "HR911105A_0_0" - (polyline - (pts - (xy -33.02 20.32) (xy -11.43 20.32) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -33.02 12.7) (xy -11.43 12.7) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -33.02 -15.24) (xy -22.86 -15.24) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -33.02 -27.94) (xy -22.86 -27.94) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start -33.02 -35.56) - (end 33.02 35.56) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (polyline - (pts - (xy -29.845 -7.62) (xy -27.305 -10.16) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -10.16) (xy -33.02 -10.16) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -10.16) (xy -29.845 -7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -12.7) (xy -29.845 -10.16) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -20.32) (xy -29.845 -22.86) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -22.86) (xy -33.02 -22.86) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -22.86) (xy -29.845 -25.4) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.845 -25.4) (xy -27.305 -22.86) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.464 -12.319) (xy -29.845 -12.7) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.464 -12.319) (xy -27.559 -14.224) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.464 -20.701) (xy -29.845 -20.32) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -29.464 -20.701) (xy -27.559 -18.796) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -28.829 -11.684) (xy -29.464 -12.319) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -28.829 -11.684) (xy -26.924 -13.589) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -28.829 -21.336) (xy -29.464 -20.701) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -28.829 -21.336) (xy -26.924 -19.431) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.559 -14.224) (xy -28.448 -13.97) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.559 -14.224) (xy -27.813 -13.335) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.559 -18.796) (xy -28.448 -19.05) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.559 -18.796) (xy -27.813 -19.685) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -10.16) (xy -28.829 -11.684) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -10.16) (xy -27.305 -7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -10.16) (xy -22.86 -10.16) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -12.7) (xy -27.305 -10.16) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -20.32) (xy -27.305 -22.86) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -22.86) (xy -28.829 -21.336) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -22.86) (xy -27.305 -25.4) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -27.305 -22.86) (xy -22.86 -22.86) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -26.924 -13.589) (xy -27.813 -13.335) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -26.924 -13.589) (xy -27.178 -12.7) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -26.924 -19.431) (xy -27.813 -19.685) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -26.924 -19.431) (xy -27.178 -20.32) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -22.86 -15.24) (xy -22.86 -10.16) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -22.86 -27.94) (xy -22.86 -22.86) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -15.875 -1.27) (xy -15.875 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -15.875 -2.54) (xy -33.02 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -15.875 -2.54) (xy -15.875 -3.81) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -15.24 -2.54) (xy -15.24 -1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -15.24 -2.54) (xy -15.24 -3.81) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -12.065 29.845) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -12.065 24.765) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -12.065 17.145) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -12.065 12.065) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 22.225) - (mid -11.0274 21.8224) - (end -11.43 21.59) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 9.525) - (mid -11.0274 9.1224) - (end -11.43 8.89) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -11.43 30.48) (xy -33.02 30.48) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 30.48) - (mid -10.981 30.294) - (end -10.795 29.845) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 29.845) - (mid -10.981 29.396) - (end -11.43 29.21) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 29.21) - (mid -10.981 29.024) - (end -10.795 28.575) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 28.575) - (mid -10.981 28.126) - (end -11.43 27.94) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 27.94) - (mid -10.981 27.754) - (end -10.795 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 27.305) - (mid -10.981 26.856) - (end -11.43 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 26.67) - (mid -10.981 26.484) - (end -10.795 26.035) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 26.035) - (mid -10.981 25.586) - (end -11.43 25.4) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -11.43 25.4) (xy -33.02 25.4) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 25.4) - (mid -10.981 25.214) - (end -10.795 24.765) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 24.765) - (mid -10.981 24.316) - (end -11.43 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 24.13) - (mid -10.981 23.944) - (end -10.795 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 23.495) - (mid -10.981 23.046) - (end -11.43 22.86) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 22.86) - (mid -10.981 22.674) - (end -10.795 22.225) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 21.59) - (mid -10.981 21.404) - (end -10.795 20.955) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 20.955) - (mid -10.981 20.506) - (end -11.43 20.32) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -11.43 17.78) (xy -33.02 17.78) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 17.78) - (mid -10.981 17.594) - (end -10.795 17.145) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 17.145) - (mid -10.981 16.696) - (end -11.43 16.51) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 16.51) - (mid -10.981 16.324) - (end -10.795 15.875) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 15.875) - (mid -10.981 15.426) - (end -11.43 15.24) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 15.24) - (mid -10.981 15.054) - (end -10.795 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 14.605) - (mid -10.981 14.156) - (end -11.43 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 13.97) - (mid -10.981 13.784) - (end -10.795 13.335) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 13.335) - (mid -10.981 12.886) - (end -11.43 12.7) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 12.7) - (mid -10.981 12.514) - (end -10.795 12.065) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 12.065) - (mid -10.981 11.616) - (end -11.43 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 11.43) - (mid -10.981 11.244) - (end -10.795 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 10.795) - (mid -10.981 10.346) - (end -11.43 10.16) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 10.16) - (mid -10.981 9.974) - (end -10.795 9.525) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -11.43 8.89) - (mid -10.981 8.704) - (end -10.795 8.255) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -10.795 8.255) - (mid -10.981 7.806) - (end -11.43 7.62) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -11.43 7.62) (xy -33.02 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -10.16 31.115) (xy -10.16 19.685) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -10.16 18.415) (xy -10.16 6.985) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -8.89 31.115) (xy -8.89 19.685) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -8.89 18.415) (xy -8.89 6.985) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 29.845) - (mid -8.069 30.294) - (end -7.62 30.48) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 29.21) - (mid -8.069 29.396) - (end -8.255 29.845) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 27.94) - (mid -8.069 28.126) - (end -8.255 28.575) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 27.305) - (mid -8.069 27.754) - (end -7.62 27.94) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 26.67) - (mid -8.069 26.856) - (end -8.255 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 26.035) - (mid -8.069 26.484) - (end -7.62 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 25.4) - (mid -8.069 25.586) - (end -8.255 26.035) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -7.62 25.4) (xy -2.54 25.4) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 24.765) - (mid -8.069 25.214) - (end -7.62 25.4) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 24.13) - (mid -8.069 24.316) - (end -8.255 24.765) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 23.495) - (mid -8.069 23.944) - (end -7.62 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 22.86) - (mid -8.069 23.046) - (end -8.255 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 22.225) - (mid -8.069 22.674) - (end -7.62 22.86) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 21.59) - (mid -8.069 21.776) - (end -8.255 22.225) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 20.955) - (mid -8.069 21.404) - (end -7.62 21.59) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 20.32) - (mid -8.069 20.506) - (end -8.255 20.955) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -7.62 20.32) (xy -3.175 20.32) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 17.145) - (mid -8.069 17.594) - (end -7.62 17.78) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 16.51) - (mid -8.069 16.696) - (end -8.255 17.145) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 15.24) - (mid -8.069 15.426) - (end -8.255 15.875) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 14.605) - (mid -8.069 15.054) - (end -7.62 15.24) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 13.97) - (mid -8.069 14.156) - (end -8.255 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 13.335) - (mid -8.069 13.784) - (end -7.62 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 12.7) - (mid -8.069 12.886) - (end -8.255 13.335) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 12.065) - (mid -8.069 12.514) - (end -7.62 12.7) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 11.43) - (mid -8.069 11.616) - (end -8.255 12.065) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 10.795) - (mid -8.069 11.244) - (end -7.62 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 10.16) - (mid -8.069 10.346) - (end -8.255 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 9.525) - (mid -8.069 9.974) - (end -7.62 10.16) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 8.89) - (mid -8.069 9.076) - (end -8.255 9.525) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 8.255) - (mid -8.069 8.704) - (end -7.62 8.89) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -7.62 7.62) - (mid -8.069 7.806) - (end -8.255 8.255) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -7.62 7.62) (xy -5.715 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 28.575) - (mid -8.0226 28.9776) - (end -7.62 29.21) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -8.255 15.875) - (mid -8.0226 16.2776) - (end -7.62 16.51) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -6.985 29.845) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -6.985 24.765) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -6.985 17.145) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -6.985 12.065) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.715 7.62) (xy -3.175 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.715 3.81) (xy -4.445 3.175) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.715 2.54) (xy -4.445 1.905) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.715 1.27) (xy -4.445 0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.715 0) (xy -5.08 -0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 12.7) (xy -7.62 12.7) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 8.255) (xy -5.08 12.7) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -5.715 7.62) - (mid -5.529 8.069) - (end -5.08 8.255) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -5.08 6.985) - (mid -5.529 7.171) - (end -5.715 7.62) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 6.985) (xy -5.08 4.445) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 4.445) (xy -5.715 3.81) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 -0.635) (xy -5.08 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -5.08 -2.54) - (radius 0.1778) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -5.08 -2.54) (xy -15.24 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -4.445 3.175) (xy -5.715 2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -4.445 1.905) (xy -5.715 1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -4.445 0.635) (xy -5.715 0) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 20.32) (xy 0.635 20.32) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 17.78) (xy -7.62 17.78) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 7.62) (xy 0.635 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 3.81) (xy -1.905 3.175) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 2.54) (xy -1.905 1.905) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 1.27) (xy -1.905 0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -3.175 0) (xy -2.54 -0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 25.4) (xy -2.54 20.955) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -3.175 20.32) - (mid -2.989 20.769) - (end -2.54 20.955) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -2.54 19.685) - (mid -2.989 19.871) - (end -3.175 20.32) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 19.685) (xy -2.54 18.415) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -3.175 17.78) - (mid -2.989 18.229) - (end -2.54 18.415) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -2.54 17.145) - (mid -2.989 17.331) - (end -3.175 17.78) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 17.145) (xy -2.54 8.255) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -3.175 7.62) - (mid -2.989 8.069) - (end -2.54 8.255) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start -2.54 6.985) - (mid -2.989 7.171) - (end -3.175 7.62) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 6.985) (xy -2.54 4.445) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 4.445) (xy -3.175 3.81) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -2.54 -0.635) (xy -2.54 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center -2.54 -2.54) - (radius 0.1778) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.905 3.175) (xy -3.175 2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.905 1.905) (xy -3.175 1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.905 0.635) (xy -3.175 0) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 26.035) (xy 7.62 26.035) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 24.765) (xy 7.62 24.765) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 13.335) (xy 7.62 13.335) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0 12.065) (xy 7.62 12.065) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 30.48) (xy -7.62 30.48) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 27.305) (xy 0.635 30.48) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 20.32) (xy 0.635 23.495) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 17.78) (xy -3.175 17.78) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 14.605) (xy 0.635 17.78) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 0.635 7.62) (xy 0.635 10.795) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 1.27 27.94) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 26.67) - (mid 0.821 26.856) - (end 0.635 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.905 27.305) - (mid 1.719 26.856) - (end 1.27 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0.635 23.495) - (mid 0.821 23.944) - (end 1.27 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 24.13) - (mid 1.719 23.944) - (end 1.905 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 1.27 22.86) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 1.27 15.24) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 13.97) - (mid 0.821 14.156) - (end 0.635 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.905 14.605) - (mid 1.719 14.156) - (end 1.27 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 0.635 10.795) - (mid 0.821 11.244) - (end 1.27 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.27 11.43) - (mid 1.719 11.244) - (end 1.905 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 1.27 10.16) - (radius 0.1524) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 2.54 26.67) - (mid 2.091 26.856) - (end 1.905 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.175 27.305) - (mid 2.989 26.856) - (end 2.54 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.905 23.495) - (mid 2.091 23.944) - (end 2.54 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 2.54 24.13) - (mid 2.989 23.944) - (end 3.175 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 2.54 13.97) - (mid 2.091 14.156) - (end 1.905 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.175 14.605) - (mid 2.989 14.156) - (end 2.54 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 1.905 10.795) - (mid 2.091 11.244) - (end 2.54 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 2.54 11.43) - (mid 2.989 11.244) - (end 3.175 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 26.67) - (mid 3.361 26.856) - (end 3.175 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 4.445 27.305) - (mid 4.259 26.856) - (end 3.81 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.175 23.495) - (mid 3.361 23.944) - (end 3.81 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 24.13) - (mid 4.259 23.944) - (end 4.445 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 13.97) - (mid 3.361 14.156) - (end 3.175 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 4.445 14.605) - (mid 4.259 14.156) - (end 3.81 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.175 10.795) - (mid 3.361 11.244) - (end 3.81 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 3.81 11.43) - (mid 4.259 11.244) - (end 4.445 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.715 27.305) - (mid 5.5273 26.8592) - (end 5.08 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.715 14.605) - (mid 5.5273 14.1592) - (end 5.08 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.08 26.67) - (mid 4.631 26.856) - (end 4.445 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.08 24.13) - (mid 5.529 23.944) - (end 5.715 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.08 13.97) - (mid 4.631 14.156) - (end 4.445 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.08 11.43) - (mid 5.529 11.244) - (end 5.715 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 4.445 23.495) - (mid 4.6327 23.9408) - (end 5.08 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 4.445 10.795) - (mid 4.6327 11.2408) - (end 5.08 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 6.985 27.305) - (mid 6.7973 26.8592) - (end 6.35 26.67) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 6.985 14.605) - (mid 6.7973 14.1592) - (end 6.35 13.97) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 6.35 26.67) - (mid 5.901 26.856) - (end 5.715 27.305) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 6.35 24.13) - (mid 6.799 23.944) - (end 6.985 23.495) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 6.35 13.97) - (mid 5.901 14.156) - (end 5.715 14.605) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 6.35 11.43) - (mid 6.799 11.244) - (end 6.985 10.795) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.715 23.495) - (mid 5.9027 23.9408) - (end 6.35 24.13) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (arc - (start 5.715 10.795) - (mid 5.9027 11.2408) - (end 6.35 11.43) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.985 30.48) (xy 6.985 27.305) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.985 23.495) (xy 6.985 19.685) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.985 17.145) (xy 6.985 14.605) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 6.985 10.795) (xy 6.985 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 12.7 30.48) (xy 6.985 30.48) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 12.7 27.305) (xy 12.7 30.48) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 12.7 14.605) (xy 12.7 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 12.7 7.62) (xy 6.985 7.62) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 15.875 3.81) (xy 17.145 3.175) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 15.875 2.54) (xy 17.145 1.905) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 15.875 1.27) (xy 17.145 0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 15.875 0) (xy 16.51 -0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 16.51 32.385) (xy 16.51 29.845) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 16.51 29.845) (xy 16.51 4.445) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 16.51 29.845) (xy 23.495 29.845) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 16.51 29.845) - (radius 0.1796) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 16.51 4.445) (xy 15.875 3.81) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 16.51 -0.635) (xy 16.51 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 16.51 -2.54) - (radius 0.1778) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 17.145 3.175) (xy 15.875 2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 17.145 1.905) (xy 15.875 1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 17.145 0.635) (xy 15.875 0) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 18.415 3.81) (xy 19.685 3.175) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 18.415 2.54) (xy 19.685 1.905) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 18.415 1.27) (xy 19.685 0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 18.415 0) (xy 19.05 -0.635) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.05 24.765) (xy 19.05 22.225) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.05 22.225) (xy 19.05 4.445) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.05 22.225) (xy 23.495 22.225) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (circle - (center 19.05 22.225) - (radius 0.1796) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.05 4.445) (xy 18.415 3.81) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.05 -0.635) (xy 19.05 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.05 -2.54) (xy -5.08 -2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.685 3.175) (xy 18.415 2.54) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.685 1.905) (xy 18.415 1.27) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 19.685 0.635) (xy 18.415 0) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 22.895 26.7109) - (end 26.67 27.94) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 22.9148 14.0035) - (end 26.67 15.24) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 22.9195 31.8326) - (end 26.67 33.02) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 22.9601 19.1332) - (end 26.67 20.32) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 22.9642 24.24) - (end 26.67 25.4) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 22.9856 21.7087) - (end 26.67 22.86) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 22.9894 29.3755) - (end 26.67 30.48) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (rectangle - (start 23.0037 16.6138) - (end 26.67 17.78) - (stroke - (width 0.1) - (type default) - ) - (fill - (type outline) - ) - ) - (polyline - (pts - (xy 23.495 32.385) (xy 16.51 32.385) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 23.495 27.305) (xy 12.7 27.305) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 23.495 24.765) (xy 19.05 24.765) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 23.495 19.685) (xy 6.985 19.685) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 23.495 17.145) (xy 6.985 17.145) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy 23.495 14.605) (xy 12.7 14.605) - ) - (stroke - (width 0.254) - (type default) - ) - (fill - (type none) - ) - ) - (text "TD+" - (at -32.5695 8.302 0) - (effects - (font - (size 1.2772 1.2772) - ) - (justify left bottom) - ) - ) - (text "GND" - (at -32.5483 -1.9146 0) - (effects - (font - (size 1.2764 1.2764) - ) - (justify left bottom) - ) - ) - (text "P4" - (at -32.5444 13.4006 0) - (effects - (font - (size 1.2763 1.2763) - ) - (justify left bottom) - ) - ) - (text "P5" - (at -32.5348 26.1555 0) - (effects - (font - (size 1.2759 1.2759) - ) - (justify left bottom) - ) - ) - (text "TD-" - (at -32.5142 18.4885 0) - (effects - (font - (size 1.2751 1.2751) - ) - (justify left bottom) - ) - ) - (text "RD-" - (at -32.4987 31.2242 0) - (effects - (font - (size 1.2745 1.2745) - ) - (justify left bottom) - ) - ) - (text "RD+" - (at -32.4935 21.0252 0) - (effects - (font - (size 1.2743 1.2743) - ) - (justify left bottom) - ) - ) - (text "Yellow LED" - (at -25.5352 -21.705 0) - (effects - (font - (size 1.2791 1.2791) - ) - (justify left bottom) - ) - ) - (text "Green LED" - (at -25.4919 -8.9222 0) - (effects - (font - (size 1.2757 1.2757) - ) - (justify left bottom) - ) - ) - (text "1000pF" - (at -18.5009 1.2418 0) - (effects - (font - (size 1.2759 1.2759) - ) - (justify left bottom) - ) - ) - (text "2KV" - (at -17.2312 -0.672 0) - (effects - (font - (size 1.2764 1.2764) - ) - (justify left bottom) - ) - ) - (text "75ohm" - (at -6.39 -0.6549 900) - (effects - (font - (size 1.278 1.278) - ) - (justify left bottom) - ) - ) - (text "75ohm" - (at 0 -0.6673 900) - (effects - (font - (size 1.2758 1.2758) - ) - (justify left bottom) - ) - ) - (text "75ohm" - (at 15.335 -0.6618 900) - (effects - (font - (size 1.2779 1.2779) - ) - (justify left bottom) - ) - ) - (text "75ohm" - (at 21.6925 -0.6552 900) - (effects - (font - (size 1.276 1.276) - ) - (justify left bottom) - ) - ) - (text "J1 TX+" - (at 27.4391 14.0069 0) - (effects - (font - (size 1.2765 1.2765) - ) - (justify left bottom) - ) - ) - (text "J3 RX+" - (at 27.4566 19.1518 0) - (effects - (font - (size 1.2771 1.2771) - ) - (justify left bottom) - ) - ) - (text "J2 TX-" - (at 27.4571 16.5812 0) - (effects - (font - (size 1.2773 1.2773) - ) - (justify left bottom) - ) - ) - (text "J4" - (at 27.4594 21.7053 0) - (effects - (font - (size 1.2773 1.2773) - ) - (justify left bottom) - ) - ) - (text "J8" - (at 27.4681 31.9296 0) - (effects - (font - (size 1.2777 1.2777) - ) - (justify left bottom) - ) - ) - (text "J6 RX-" - (at 27.4683 26.8166 0) - (effects - (font - (size 1.2777 1.2777) - ) - (justify left bottom) - ) - ) - (text "J7" - (at 27.469 29.3671 0) - (effects - (font - (size 1.2778 1.2778) - ) - (justify left bottom) - ) - ) - (text "J5" - (at 27.4773 24.265 0) - (effects - (font - (size 1.2782 1.2782) - ) - (justify left bottom) - ) - ) - (pin passive line - (at -38.1 7.62 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "1" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 17.78 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "2" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 20.32 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "3" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 12.7 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "4" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 25.4 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "5" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 30.48 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "6" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin power_in line - (at -38.1 -2.54 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "8" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 -10.16 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "9" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 -15.24 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "10" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 -27.94 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "11" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 -22.86 0) - (length 5.08) - (name "" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "12" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 -33.02 0) - (length 5.08) - (name "SHIELD" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "15" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - (pin passive line - (at -38.1 -33.02 0) - (length 5.08) - (hide yes) - (name "SHIELD" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - (number "16" - (effects - (font - (size 1.016 1.016) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Interface_Ethernet:W5100S-L" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U" - (at 15.24 -30.48 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Value" "W5100S-L" - (at 15.24 -33.02 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" - (at 0 -53.34 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://docs.wiznet.io/img/products/w5100s/w5100s-ds-v128e.pdf" - (at 0 -45.72 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "10/100Mb Ethernet controller with TCP/IP stack, LQFP-48" - (at 0 -48.26 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Manufacturer" "WIZnet" - (at 0 -50.8 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "Wiznet" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "W5100S-L_0_1" - (rectangle - (start -15.24 27.94) - (end 15.24 -27.94) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - ) - (symbol "W5100S-L_1_0" - (pin input line - (at -17.78 25.4 0) - (length 2.54) - (name "~{RST}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "48" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (symbol "W5100S-L_1_1" - (pin power_in line - (at -2.54 -30.48 90) - (length 2.54) - (name "GNDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 17.78 180) - (length 2.54) - (name "TXON" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 20.32 180) - (length 2.54) - (name "TXOP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -5.08 30.48 270) - (length 2.54) - (name "1V2A" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 10.16 180) - (length 2.54) - (name "RXIN" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 12.7 180) - (length 2.54) - (name "RXIP" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -2.54 -30.48 90) - (length 2.54) - (hide yes) - (name "GNDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 30.48 270) - (length 2.54) - (name "3V3A" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -17.78 -25.4 0) - (length 2.54) - (name "RSET_BG" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 2.54 -30.48 90) - (length 2.54) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 -10.16 180) - (length 2.54) - (name "XSCO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 -12.7 180) - (length 2.54) - (name "XSCI" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at -2.54 30.48 270) - (length 2.54) - (name "1V2D" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "13" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 17.78 25.4 180) - (length 2.54) - (name "1V2O" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "14" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 30.48 270) - (length 2.54) - (hide yes) - (name "3V3A" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "15" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -2.54 -30.48 90) - (length 2.54) - (hide yes) - (name "GNDA" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "16" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 5.08 180) - (length 2.54) - (name "~{LNK}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "17" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 2.54 180) - (length 2.54) - (name "~{SPD}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "18" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 0 180) - (length 2.54) - (name "~{DPX}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "19" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 -2.54 180) - (length 2.54) - (name "~{ACT}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "20" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 17.78 -5.08 180) - (length 2.54) - (name "~{COL}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "21" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -2.54 30.48 270) - (length 2.54) - (hide yes) - (name "1V2D" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "22" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 -30.48 90) - (length 2.54) - (hide yes) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "23" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 5.08 30.48 270) - (length 2.54) - (name "3V3D" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "24" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 -17.78 180) - (length 2.54) - (name "MOD[0]" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "25" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 -20.32 180) - (length 2.54) - (name "MOD[1]" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "26" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 -22.86 180) - (length 2.54) - (name "MOD[2]" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "27" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 17.78 -25.4 180) - (length 2.54) - (name "MOD[3]" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "28" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -17.78 15.24 0) - (length 2.54) - (name "~{CS}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "29" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -17.78 17.78 0) - (length 2.54) - (name "SCLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "30" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -2.54 30.48 270) - (length 2.54) - (hide yes) - (name "1V2D" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "31" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -17.78 12.7 0) - (length 2.54) - (name "MOSI" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "32" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (alternate "ADDR0" input line) - ) - (pin output line - (at -17.78 10.16 0) - (length 2.54) - (name "MISO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "33" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (alternate "ADDR1" input line) - ) - (pin input line - (at -17.78 2.54 0) - (length 2.54) - (name "~{RD}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "34" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at -17.78 5.08 0) - (length 2.54) - (name "~{WR}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "35" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 5.08 30.48 270) - (length 2.54) - (hide yes) - (name "3V3D" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "36" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -2.54 0) - (length 2.54) - (name "DATA0" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "37" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -5.08 0) - (length 2.54) - (name "DATA1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "38" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -7.62 0) - (length 2.54) - (name "DATA2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "39" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -10.16 0) - (length 2.54) - (name "DATA3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "40" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -12.7 0) - (length 2.54) - (name "DATA4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "41" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -15.24 0) - (length 2.54) - (name "DATA5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "42" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -17.78 0) - (length 2.54) - (name "DATA6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "43" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin bidirectional line - (at -17.78 -20.32 0) - (length 2.54) - (name "DATA7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "44" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at -2.54 30.48 270) - (length 2.54) - (hide yes) - (name "1V2D" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "45" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 2.54 -30.48 90) - (length 2.54) - (hide yes) - (name "GND" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "46" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at -17.78 22.86 0) - (length 2.54) - (name "~{INT}" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "47" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Power_Management:TPS22810DBV" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "U2" - (at 0 10.16 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "TPS22810DBV" - (at 0 7.62 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" - (at 0 -17.78 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps22810.pdf" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "2.7..18V, 2A, 79mohms On-Resistance Load Switch With Thermal Protection, SOT-23-6" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "thermal-protection QOD quick-output-discharge" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "SOT?23*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "TPS22810DBV_1_1" - (rectangle - (start -7.62 5.08) - (end 7.62 -5.08) - (stroke - (width 0.254) - (type default) - ) - (fill - (type background) - ) - ) - (pin power_in line - (at -10.16 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 -10.16 0 0) - (length 2.54) - (name "EN/UVLO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 10.16 -2.54 180) - (length 2.54) - (name "CT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin open_collector line - (at 10.16 0 180) - (length 2.54) - (name "QOD" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_out line - (at 10.16 2.54 180) - (length 2.54) - (name "VOUT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:GND" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#PWR" - (at 0 -6.35 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 0 -3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "global power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:PWR_FLAG" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#FLG" - (at 0 1.905 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 0 3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Special symbol for telling ERC where power comes from" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "flag power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "PWR_FLAG_0_0" - (pin power_out 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 "PWR_FLAG_0_1" - (polyline - (pts - (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (embedded_fonts no) - ) - ) - (junction - (at 167.64 81.28) - (diameter 0) - (color 0 0 0 0) - (uuid "0cb9ce27-2f87-4c73-bd1a-ee4c1e8b6af2") - ) - (junction - (at 114.3 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "21ff44c8-1e07-4da4-894c-3ed981992a89") - ) - (junction - (at 66.04 129.54) - (diameter 0) - (color 0 0 0 0) - (uuid "26d42247-1b54-4c93-8e4a-c02ce2434ed0") - ) - (junction - (at 106.68 29.21) - (diameter 0) - (color 0 0 0 0) - (uuid "34d7af43-b652-44b0-8c08-f4963d3c081d") - ) - (junction - (at 104.14 40.64) - (diameter 0) - (color 0 0 0 0) - (uuid "3e81f6ae-0358-4295-9144-8f172377efdc") - ) - (junction - (at 146.05 53.34) - (diameter 0) - (color 0 0 0 0) - (uuid "602a5ada-dc5c-4020-9155-b95cfd4bb93a") - ) - (junction - (at 134.62 53.34) - (diameter 0) - (color 0 0 0 0) - (uuid "86f23440-d4cc-4a2b-ac74-21750dc3b0af") - ) - (junction - (at 57.15 142.24) - (diameter 0) - (color 0 0 0 0) - (uuid "b53bacdd-6762-41b9-9f9e-59e5c45b1b30") - ) - (junction - (at 111.76 40.64) - (diameter 0) - (color 0 0 0 0) - (uuid "b8ebd65d-f4fc-46d0-bdb5-545499214eab") - ) - (junction - (at 180.34 81.28) - (diameter 0) - (color 0 0 0 0) - (uuid "c42a0469-fbd0-453a-ae46-8cb8efe8f756") - ) - (no_connect - (at 127 76.2) - (uuid "2e6569ea-5b73-405a-aa98-e9c05c050977") - ) - (no_connect - (at 215.9 124.46) - (uuid "9be9d9b1-429d-4025-a348-0c49c6503dea") - ) - (no_connect - (at 215.9 121.92) - (uuid "9ead3dcb-9adb-403f-81c0-2472e5a14021") - ) - (no_connect - (at 127 78.74) - (uuid "e5dca6e2-1c10-4bb0-98df-0bb6ec50ca63") - ) - (no_connect - (at 127 83.82) - (uuid "e86414cc-b080-4cf4-b33d-027dc8e007ca") - ) - (wire - (pts - (xy 91.44 73.66) (xy 88.9 73.66) - ) - (stroke - (width 0) - (type default) - ) - (uuid "02429fc6-8669-4f79-97c0-386aa84a71d4") - ) - (wire - (pts - (xy 88.9 81.28) (xy 91.44 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "071cd564-d9a9-49f5-9ea9-0d345da59126") - ) - (wire - (pts - (xy 134.62 50.8) (xy 134.62 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0a64e192-434a-403e-9c13-9960f51de8d4") - ) - (wire - (pts - (xy 134.62 53.34) (xy 146.05 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0e14c72b-cde3-41e4-a77e-85c4486032a4") - ) - (wire - (pts - (xy 180.34 81.28) (xy 177.8 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "18321dd3-9c99-4518-8e7f-ca1360ba6a89") - ) - (wire - (pts - (xy 81.28 157.48) (xy 85.09 157.48) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1ca2cdab-b189-4261-be1b-df4f73e18cde") - ) - (wire - (pts - (xy 170.18 91.44) (xy 167.64 91.44) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1e59f732-e856-4452-99bf-86a2e703dac0") - ) - (wire - (pts - (xy 82.55 177.8) (xy 85.09 177.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1e6fea8c-bf0b-4df9-9aba-72bd898e4abb") - ) - (wire - (pts - (xy 88.9 104.14) (xy 91.44 104.14) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2221825b-8ab5-4170-bc29-750ab68f6f39") - ) - (wire - (pts - (xy 146.05 50.8) (xy 146.05 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2af46450-30c0-4cff-8738-1c006a5fca5f") - ) - (wire - (pts - (xy 111.76 110.49) (xy 111.76 109.22) - ) - (stroke - (width 0) - (type default) - ) - (uuid "34914baa-3443-40f1-adb1-62ae91067cf6") - ) - (wire - (pts - (xy 106.68 29.21) (xy 106.68 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "34c27447-c8a4-4452-9a45-45cf7b292ddd") - ) - (wire - (pts - (xy 127 66.04) (xy 129.54 66.04) - ) - (stroke - (width 0) - (type default) - ) - (uuid "410a692d-7103-4243-bb4f-4924bc99e676") - ) - (wire - (pts - (xy 127 99.06) (xy 129.54 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4228b800-01a5-4ad0-888a-d1a43e1fa88a") - ) - (wire - (pts - (xy 127 104.14) (xy 129.54 104.14) - ) - (stroke - (width 0) - (type default) - ) - (uuid "4f49f2b0-bfb4-4498-94e5-59092a820eba") - ) - (wire - (pts - (xy 88.9 91.44) (xy 91.44 91.44) - ) - (stroke - (width 0) - (type default) - ) - (uuid "59fcaede-5013-4168-b718-303c53603170") - ) - (wire - (pts - (xy 88.9 76.2) (xy 91.44 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5ad65086-8222-41df-b588-e6db0a0d90d6") - ) - (wire - (pts - (xy 82.55 165.1) (xy 85.09 165.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5af5f70c-e745-4fb4-b46d-9608d0504108") - ) - (wire - (pts - (xy 72.39 165.1) (xy 74.93 165.1) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5b03ddab-9fb2-4b24-8678-23b774f3c536") - ) - (wire - (pts - (xy 91.44 68.58) (xy 88.9 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "5e9b45f5-9f0c-493f-8d6c-21687184bfb7") - ) - (wire - (pts - (xy 101.6 40.64) (xy 104.14 40.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "69c08ee2-55cf-4550-855a-40aa5395ccae") - ) - (wire - (pts - (xy 106.68 109.22) (xy 106.68 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6cb58ee9-c975-4693-a5d8-62736a388ecb") - ) - (wire - (pts - (xy 180.34 91.44) (xy 180.34 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6feac242-a9f5-40d0-b9c5-a34f891273cd") - ) - (wire - (pts - (xy 127 60.96) (xy 129.54 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "715e6418-cbd5-46dc-9148-5ed008bba3f5") - ) - (wire - (pts - (xy 104.14 26.67) (xy 104.14 40.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "718c775d-30b7-4286-95df-c9fc3665c115") - ) - (wire - (pts - (xy 91.44 55.88) (xy 88.9 55.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "78706596-35f9-40f1-913b-b40b2ce0ad74") - ) - (wire - (pts - (xy 127 73.66) (xy 129.54 73.66) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7b830a52-81ec-4c0b-bced-906f0ce030e0") - ) - (wire - (pts - (xy 82.55 170.18) (xy 85.09 170.18) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7ccac76c-99d7-4430-a856-57d53630d6d5") - ) - (wire - (pts - (xy 101.6 29.21) (xy 106.68 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7e134dcc-1f71-4f2a-a927-3eeb46e7ec52") - ) - (wire - (pts - (xy 127 101.6) (xy 129.54 101.6) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7e8be96d-1364-453e-a5f9-ee0da7792ff3") - ) - (wire - (pts - (xy 177.8 91.44) (xy 180.34 91.44) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8249d585-28e3-4af8-b7fa-63ab34497c2f") - ) - (wire - (pts - (xy 81.28 187.96) (xy 85.09 187.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "85826863-1473-4fdd-a5c3-20ff596909c4") - ) - (wire - (pts - (xy 82.55 147.32) (xy 85.09 147.32) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8c996c75-fdca-4283-b110-da960895b16d") - ) - (wire - (pts - (xy 91.44 60.96) (xy 88.9 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8ca97988-f019-414c-9add-3f94fa004185") - ) - (wire - (pts - (xy 127 96.52) (xy 129.54 96.52) - ) - (stroke - (width 0) - (type default) - ) - (uuid "915ceeb7-a663-4048-a110-68eeb3d97713") - ) - (wire - (pts - (xy 57.15 139.7) (xy 57.15 142.24) - ) - (stroke - (width 0) - (type default) - ) - (uuid "944f5e90-70ed-4bf8-ad3f-29f679beeda3") - ) - (wire - (pts - (xy 82.55 134.62) (xy 85.09 134.62) - ) - (stroke - (width 0) - (type default) - ) - (uuid "96103d88-982e-4fac-bf08-edccdeac2952") - ) - (wire - (pts - (xy 127 88.9) (xy 129.54 88.9) - ) - (stroke - (width 0) - (type default) - ) - (uuid "97bc1864-bc1c-4e73-8046-a7daa6559858") - ) - (wire - (pts - (xy 88.9 86.36) (xy 91.44 86.36) - ) - (stroke - (width 0) - (type default) - ) - (uuid "98834d29-3585-492e-8bc3-a56fbc466ef5") - ) - (wire - (pts - (xy 91.44 63.5) (xy 88.9 63.5) - ) - (stroke - (width 0) - (type default) - ) - (uuid "995308c8-1783-4b65-a223-e10b3037b2cb") - ) - (wire - (pts - (xy 72.39 177.8) (xy 74.93 177.8) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9db978f1-9315-4d41-b59c-b9744beb049e") - ) - (wire - (pts - (xy 63.5 129.54) (xy 66.04 129.54) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9dcce027-f55b-44d5-80e6-4eca78a83ec1") - ) - (wire - (pts - (xy 54.61 142.24) (xy 57.15 142.24) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9e1e1b7d-7091-4936-bcda-7c19c90c72f4") - ) - (wire - (pts - (xy 111.76 26.67) (xy 111.76 40.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a1f2e079-d9b0-4bb9-9a9f-be0bb18b8499") - ) - (wire - (pts - (xy 66.04 129.54) (xy 85.09 129.54) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a295f4ff-3517-40fd-933a-69f6cfe9e35f") - ) - (wire - (pts - (xy 165.1 81.28) (xy 167.64 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a6162e18-6488-46bd-b878-78b731cda36d") - ) - (wire - (pts - (xy 57.15 129.54) (xy 57.15 132.08) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a932224e-35d2-4f64-884b-6ff784d71f74") - ) - (wire - (pts - (xy 167.64 81.28) (xy 170.18 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ae706efc-bcf2-475a-bd86-f2095bbcbdbd") - ) - (wire - (pts - (xy 127 53.34) (xy 134.62 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "af5b133d-da6d-4a00-9143-f6b3ca50affe") - ) - (wire - (pts - (xy 114.3 26.67) (xy 114.3 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "af9e5caf-c8dc-4114-8454-70caba183eac") - ) - (wire - (pts - (xy 127 58.42) (xy 129.54 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b151decd-9a01-4c5b-8dd6-750e97c62826") - ) - (wire - (pts - (xy 88.9 83.82) (xy 91.44 83.82) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b9339662-f4e9-4263-83e1-b1fa22ccfa29") - ) - (wire - (pts - (xy 182.88 81.28) (xy 180.34 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "baf6fe02-ed75-4324-a9c4-3e54aaefff50") - ) - (wire - (pts - (xy 146.05 53.34) (xy 153.67 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "bb46052e-56ab-4978-9092-fce12b63aca4") - ) - (wire - (pts - (xy 114.3 29.21) (xy 114.3 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "bbf8c212-efce-4d03-9e85-004fe704623b") - ) - (wire - (pts - (xy 106.68 26.67) (xy 106.68 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c4971275-0648-4c19-b7dd-850a586f3ea0") - ) - (wire - (pts - (xy 127 91.44) (xy 129.54 91.44) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c5447471-3cc8-49ce-8da5-b8eca3a793bf") - ) - (wire - (pts - (xy 111.76 40.64) (xy 116.84 40.64) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c55fa8c6-7077-41fc-ae90-16dcc69af790") - ) - (wire - (pts - (xy 134.62 41.91) (xy 134.62 45.72) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c7e07e4a-c050-418a-81d7-78e297952c9c") - ) - (wire - (pts - (xy 180.34 78.74) (xy 180.34 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ca92c71c-793b-4845-be2f-5dc4385f7e63") - ) - (wire - (pts - (xy 57.15 142.24) (xy 85.09 142.24) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d139c36d-f913-4316-89ca-20dc512e8b1f") - ) - (wire - (pts - (xy 127 68.58) (xy 129.54 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d5025ca2-d295-4d4f-9cf3-7f21918e7b83") - ) - (wire - (pts - (xy 82.55 182.88) (xy 85.09 182.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d71c0acb-7140-4a57-920f-a1a891dc054a") - ) - (wire - (pts - (xy 111.76 40.64) (xy 111.76 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d8c17353-c65e-422c-8a36-b494dd12590e") - ) - (wire - (pts - (xy 91.44 53.34) (xy 88.9 53.34) - ) - (stroke - (width 0) - (type default) - ) - (uuid "de8f8836-d4f2-490e-937f-7848e3f690e7") - ) - (wire - (pts - (xy 88.9 93.98) (xy 91.44 93.98) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e1844ecf-48fb-496c-bbea-f27ba4b187ca") - ) - (wire - (pts - (xy 88.9 96.52) (xy 91.44 96.52) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ecde0c9a-7c2f-4a2a-b975-618f26e2706d") - ) - (wire - (pts - (xy 104.14 40.64) (xy 104.14 48.26) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ef679c47-5b86-4f6e-91b8-48a8092b6135") - ) - (wire - (pts - (xy 127 81.28) (xy 129.54 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f1707bb6-7faf-48a3-ad8d-defde59c6d90") - ) - (wire - (pts - (xy 88.9 88.9) (xy 91.44 88.9) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f2d9d86e-cab5-4b3c-ae25-3109a473ddc7") - ) - (wire - (pts - (xy 167.64 78.74) (xy 167.64 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f55b1ffe-fddb-4bd6-86f2-62d1f858dfa6") - ) - (wire - (pts - (xy 88.9 66.04) (xy 91.44 66.04) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f5ea0f77-3d61-4193-a335-1cfb8000ab84") - ) - (wire - (pts - (xy 88.9 99.06) (xy 91.44 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f61f4d30-59f3-4009-aaa1-5aa8a1121021") - ) - (wire - (pts - (xy 82.55 124.46) (xy 85.09 124.46) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f7ba4c19-05a4-4740-9f46-59940040017f") - ) - (wire - (pts - (xy 167.64 91.44) (xy 167.64 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f7d021be-8913-4b26-980b-4c67ae03779f") - ) - (wire - (pts - (xy 114.3 29.21) (xy 116.84 29.21) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f8ed11a8-097a-494c-8b86-bc2fae482d71") - ) - (wire - (pts - (xy 82.55 137.16) (xy 85.09 137.16) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fb47ed93-73c6-4a06-ab2e-373882e177b0") - ) - (label "XTAL_I" - (at 165.1 81.28 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "02b7239b-676c-4ab3-b07f-d66ceaa9ca12") - ) - (label "1V2O_RAW" - (at 153.67 53.34 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "09ce00c1-79a4-4bb7-893c-5f1da9206128") - ) - (label "XTAL_I" - (at 129.54 91.44 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "252523dc-dcb8-42f7-b712-07a8851e68da") - ) - (label "ETH_3V3" - (at 72.39 165.1 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "306cb602-5cda-4da1-a133-05687233bf1e") - ) - (label "ETH_3V3" - (at 215.9 119.38 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "5ee9cb4d-583a-4210-a16e-3724c59b2c35") - ) - (label "LED_LNK" - (at 82.55 170.18 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "61801716-571d-418f-b23c-04485e640186") - ) - (label "LED_ACT" - (at 82.55 182.88 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "67054e61-bfde-4b5e-94df-78875e9bce6b") - ) - (label "LED_LNK" - (at 129.54 73.66 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "6dc87e69-1258-4a33-9f37-ae08c78fab5e") - ) - (label "ETH_TXN" - (at 82.55 137.16 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "73e7dbdb-8a31-4092-8b8d-070542be10ca") - ) - (label "1V2_ETH" - (at 106.68 26.67 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "7a8c2288-a860-4f9f-8a8d-5b25ec733eea") - ) - (label "ETH_RXP" - (at 82.55 134.62 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "7adea066-7f1f-48b2-a32c-2087e9f69649") - ) - (label "3V3" - (at 181.61 115.57 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "7bdfa686-0901-4b0a-9bf1-04dfe5046bd1") - ) - (label "ETH_3V3" - (at 54.61 142.24 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "7c70a341-5799-4f85-a736-e762d2343cfa") - ) - (label "ETH_3V3" - (at 129.54 101.6 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "7f9a48a1-bdea-4dd0-9753-8362a81a01ce") - ) - (label "ETH_TXN" - (at 129.54 60.96 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "80e9b736-cff0-460a-a7b3-943a33bd90bd") - ) - (label "ETH_TXP" - (at 129.54 58.42 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "9812c21f-68fa-4eec-a005-36018fc57d1c") - ) - (label "ETH_TXP" - (at 82.55 147.32 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "a288a770-6102-4d6d-afaa-2123de801821") - ) - (label "ETH_RXN" - (at 82.55 124.46 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "ad04fed8-83b8-4463-ad61-9b32a1b91602") - ) - (label "ETH_RXN" - (at 129.54 68.58 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "b355926e-186a-467d-ac33-c22eb9706b5f") - ) - (label "XTAL_O" - (at 129.54 88.9 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "bd39d98a-da0c-4e5a-b04d-26a7fcb298a5") - ) - (label "ETH_3V3" - (at 63.5 129.54 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "c6b754b9-99e3-4201-8956-7bd5cc57d7b6") - ) - (label "ETH_3V3" - (at 114.3 26.67 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "cc45769c-1d09-4412-9831-20576de01e04") - ) - (label "ETH_3V3" - (at 111.76 26.67 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "d006e20b-b115-4f7a-a602-64c2e14898f6") - ) - (label "XTAL_O" - (at 182.88 81.28 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "d76dbeb7-a006-43f4-9ee5-e1f4df0245b6") - ) - (label "ETH_3V3" - (at 72.39 177.8 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right bottom) - ) - (uuid "d8392ffb-f715-4d53-a1ae-867b70a51d91") - ) - (label "ETH_3V3" - (at 80.01 31.75 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "db89e3bf-8ba3-48ba-a00f-1f9065506040") - ) - (label "1V2_ETH" - (at 134.62 41.91 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "dc2ba5eb-bfc1-4ebc-8075-d0104b310e93") - ) - (label "LED_ACT" - (at 129.54 81.28 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "e22d7d65-069d-4eba-a49d-f7e825017209") - ) - (label "1V2_ETH" - (at 104.14 26.67 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "ee67e318-d9ee-4705-a53b-1d4c192c9793") - ) - (label "ETH_RXP" - (at 129.54 66.04 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "f67b4d6e-5a6c-4082-a72b-1bdd649f649b") - ) - (hierarchical_label "ETH_D5" - (shape bidirectional) - (at 88.9 93.98 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "015b8ea4-37bf-4b2f-9f8d-317b233a8ccb") - ) - (hierarchical_label "GC_ON" - (shape input) - (at 195.58 121.92 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "0b17b5ed-aa45-4d0b-95b7-3786d875e15b") - ) - (hierarchical_label "3V3" - (shape input) - (at 195.58 119.38 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "1ab889fb-15dd-40e2-bc2f-f62a822948bc") - ) - (hierarchical_label "ETH_D1" - (shape bidirectional) - (at 88.9 83.82 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "229bb1df-5813-4205-a2b0-f7d168bcf297") - ) - (hierarchical_label "ETH_A1" - (shape bidirectional) - (at 88.9 68.58 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "2331033b-72af-4e34-a9f6-d54cd0c58a92") - ) - (hierarchical_label "ETH_D2" - (shape bidirectional) - (at 88.9 86.36 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "249299dd-3574-48ba-9150-81a74fc073bf") - ) - (hierarchical_label "ETH_D4" - (shape bidirectional) - (at 88.9 91.44 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "6e36708d-8fdc-47df-a4fb-cad90c17382d") - ) - (hierarchical_label "ETH_D3" - (shape bidirectional) - (at 88.9 88.9 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "79e122ec-1694-4dca-86b8-fdede39df555") - ) - (hierarchical_label "ETH_WR" - (shape bidirectional) - (at 88.9 73.66 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "8fbaccdf-1828-4e5e-af60-5536dbcd19ee") - ) - (hierarchical_label "ETH_RD" - (shape bidirectional) - (at 88.9 76.2 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "8fe80d7c-22a7-499d-982e-577ef660797e") - ) - (hierarchical_label "ETH_INT" - (shape bidirectional) - (at 88.9 55.88 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "baaff3fe-e87b-4291-acba-66839803e4c5") - ) - (hierarchical_label "ETH_RST" - (shape bidirectional) - (at 88.9 53.34 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d15da46d-5fef-470c-8b6f-f179cadbfccf") - ) - (hierarchical_label "ETH_A0" - (shape bidirectional) - (at 88.9 66.04 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "d41e7c38-b4ad-429e-b23f-b9bb643f6bc4") - ) - (hierarchical_label "ETH_D0" - (shape bidirectional) - (at 88.9 81.28 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "dfb46f2f-6ca9-46c7-b07c-e656d917b871") - ) - (hierarchical_label "ETH_CS" - (shape bidirectional) - (at 88.9 63.5 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "ebe94de7-7a3b-42c3-895d-b873d144be56") - ) - (hierarchical_label "ETH_D6" - (shape bidirectional) - (at 88.9 96.52 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "f290ac30-106c-4d84-b6fe-422dfec5631f") - ) - (hierarchical_label "ETH_D7" - (shape bidirectional) - (at 88.9 99.06 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "fd679af8-5918-429a-ab3f-9aedd974b442") - ) - (symbol - (lib_id "power:GND") - (at 66.04 121.92 0) - (mirror x) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "11035acb-220b-456b-aab5-3f7e945b9871") - (property "Reference" "#PWR0d9d01" - (at 66.04 118.11 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 66.04 118.11 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 66.04 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 66.04 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 66.04 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "4b70ae0a-034b-4e24-9fb4-2b2cd9e915d9") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0d9d01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 129.54 99.06 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "129adaea-a58f-4d1e-b6a0-773b1e626778") - (property "Reference" "#PWR05fc01" - (at 133.35 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 134.366 99.06 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 129.54 99.06 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 99.06 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 99.06 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7af69b66-7f67-4f80-b38b-0b54e2d379db") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR05fc01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 129.54 96.52 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1303fe9c-714e-4d70-b616-61f4ce31f445") - (property "Reference" "#PWR040" - (at 133.35 96.52 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 134.366 96.52 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 129.54 96.52 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 96.52 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 96.52 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7cfc1e7b-b99c-4492-96a5-4ca7153b9df5") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR040") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Power_Management:TPS22810DBV") - (at 205.74 121.92 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "14b6366d-fad4-4f08-9680-8b51b64ae65b") - (property "Reference" "U12" - (at 205.74 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "TPS22810DBV" - (at 205.74 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "Package_TO_SOT_SMD:SOT-23-6" - (at 205.74 121.92 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 205.74 121.92 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 205.74 121.92 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e9be6a84-f9fb-4fa8-9826-d40f4b43f354") - ) - (pin "2" - (uuid "a7f3752f-dbe2-4f6b-9109-1c5c1c9ca058") - ) - (pin "3" - (uuid "ff847c21-d21f-44b4-b2a4-7380e69f31ae") - ) - (pin "4" - (uuid "6509ca04-4094-4184-a817-0e4a1020de60") - ) - (pin "5" - (uuid "f1931632-f33a-4222-8305-4cffe55550b9") - ) - (pin "6" - (uuid "27284dac-ebca-4536-a513-130be856978e") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "U12") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 81.28 187.96 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1e831454-a10f-47ea-8d2f-3141af32ff53") - (property "Reference" "#PWR064c02" - (at 77.47 187.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 76.708 187.96 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 81.28 187.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 81.28 187.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 81.28 187.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "03b8710d-6033-463a-85b8-8122be6b5a49") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR064c02") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 106.68 110.49 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2632cb2c-598d-46a0-90f3-6b907c8231e7") - (property "Reference" "#PWR0fb6f01" - (at 106.68 114.3 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 106.68 114.554 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 106.68 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 106.68 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 106.68 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "4d020440-f0a2-4d5a-840b-1f7a9a5c195b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0fb6f01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 146.05 46.99 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "2e143cd8-1f59-45d9-9bde-f16efc92d953") - (property "Reference" "C57" - (at 143.51 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "3.3uF" - (at 143.51 45.72 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 146.05 46.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 146.05 46.99 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 146.05 46.99 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 146.05 46.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 146.05 46.99 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e189cff2-d36a-4ba0-b619-2b9a0e1640ab") - ) - (pin "2" - (uuid "7168688d-c2e6-4ebc-9781-a9abe6a5b17d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C57") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:FerriteBead_Small") - (at 134.62 48.26 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "37825bb5-a52b-44e9-a948-b80f4dcc7d17") - (property "Reference" "FB3" - (at 132.08 49.53 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "120R@100MHz" - (at 132.08 46.99 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Inductor_SMD:L_0805_2012Metric_Pad1.05x1.20mm_HandSolder" - (at 134.62 48.26 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 134.62 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 134.62 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Current" "1A" - (at 134.62 48.26 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "eb342623-45b3-47dc-838e-6799e7904402") - ) - (pin "2" - (uuid "0a2fdafc-c7fe-4104-b07f-ed0d36c5f025") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "FB3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 180.34 74.93 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "3d74239c-f05b-463f-9923-62e57271a748") - (property "Reference" "C59" - (at 177.8 76.2 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10pF" - (at 177.8 73.66 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 180.34 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 180.34 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 180.34 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "C0G" - (at 180.34 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "50V" - (at 180.34 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "4c6cb936-7f6c-4753-8425-295c3cf2b3b5") - ) - (pin "2" - (uuid "3e86b6c3-56ba-4b0b-b04d-859e685cda54") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C59") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 124.46 29.21 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "44570fe2-e911-489e-acc2-0968093d7b97") - (property "Reference" "#PWR0c3b01" - (at 128.27 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 129.032 29.338 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 124.46 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 124.46 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 124.46 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "022ee435-cf80-4a53-99ce-09b9c8e0deec") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0c3b01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 97.79 40.64 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "486c8abb-72e7-4ccc-8cb5-14ff7c4e50c0") - (property "Reference" "C53" - (at 99.06 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 96.52 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 97.79 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 97.79 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 97.79 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 97.79 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 97.79 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "91f6fc12-3795-448b-a40b-0efb90484286") - ) - (pin "2" - (uuid "220ce5a6-4705-4ad6-9c12-0c216af541c7") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C53") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 81.28 104.14 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "48da1091-5839-4922-b73b-3766535d97b7") - (property "Reference" "#PWR04fe01" - (at 77.47 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 76.454 104.14 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 81.28 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 81.28 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 81.28 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "df6ae764-3888-4136-aac7-1d8c7960e327") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR04fe01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 78.74 177.8 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "491a3ca2-910b-44fb-9a75-16317be08099") - (property "Reference" "R15" - (at 80.518 175.768 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "330" - (at 80.518 180.086 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 78.74 177.8 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 78.74 177.8 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 78.74 177.8 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 78.74 177.8 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ecc979de-1105-4fc8-90c7-b806af130ae9") - ) - (pin "2" - (uuid "8d02890b-1384-4220-91d6-b52f58379320") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "R15") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 104.14 48.26 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4f97d637-07ba-4ccb-b174-bfd052e60ece") - (property "Reference" "#FLG01V2ETH01" - (at 104.14 44.45 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 104.14 50.8 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 104.14 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 104.14 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 104.14 48.26 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "93846db6-246d-44b9-9891-bfa73d01bb76") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#FLG01V2ETH01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 57.15 135.89 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "5732288c-e135-4e01-a857-b7c1cdd85e89") - (property "Reference" "C49" - (at 54.61 137.16 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 54.61 134.62 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 57.15 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 57.15 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 57.15 135.89 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 57.15 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 57.15 135.89 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "bccbe8a1-a167-4efd-9ae1-88490b3ee8ba") - ) - (pin "2" - (uuid "a4325c97-c317-499a-b9b5-95fce69d04d9") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C49") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 81.28 157.48 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "5e07fc8e-eb61-473f-8f85-df900d82b761") - (property "Reference" "#PWR064c01" - (at 77.47 157.48 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 76.708 157.48 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 81.28 157.48 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 81.28 157.48 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 81.28 157.48 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "83e5382d-86cf-4819-aec5-7d0286456357") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR064c01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 120.65 40.64 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "6f202e5c-3771-4e1c-a64b-882d9195bdf4") - (property "Reference" "C55" - (at 119.38 38.1 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 121.92 38.1 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 120.65 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 120.65 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 120.65 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 120.65 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 120.65 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a189053f-7439-48e8-b158-402b5b3b7b7b") - ) - (pin "2" - (uuid "83f9ac0a-27ad-4001-a3fc-a8567764d5c5") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C55") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Interface_Ethernet:W5100S-L") - (at 109.22 78.74 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "71fdeaba-68dd-41c1-b431-48a573ddbded") - (property "Reference" "U11" - (at 113.9033 109.22 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "W5100S-L" - (at 113.9033 111.76 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Package_QFP:LQFP-48_7x7mm_P0.5mm" - (at 109.22 132.08 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "https://docs.wiznet.io/img/products/w5100s/w5100s-ds-v128e.pdf" - (at 109.22 124.46 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "10/100Mb Ethernet controller with TCP/IP stack, LQFP-48" - (at 109.22 127 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Manufacturer" "WIZnet" - (at 109.22 129.54 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "30" - (uuid "94668889-a439-4f51-8d9d-f25e7c4cd8dc") - ) - (pin "31" - (uuid "8f00e474-eff2-4241-b418-af50d7df6eb3") - ) - (pin "29" - (uuid "ab233fbd-ea2d-44c2-a487-0e282d467518") - ) - (pin "28" - (uuid "50287239-1bf6-4cd1-b496-2f8fb338a0eb") - ) - (pin "27" - (uuid "98cd9eb9-d4ff-413f-9cd1-7949e3b7ff69") - ) - (pin "26" - (uuid "fd8ec445-1914-47f6-a0b6-3884c2761b30") - ) - (pin "25" - (uuid "588508c4-da71-4dd7-9649-1b21c15f4040") - ) - (pin "24" - (uuid "4eb92d4b-9e03-45f6-9f31-117e76bbe167") - ) - (pin "23" - (uuid "6c3578f0-f1bd-4fbe-862b-ff9cd9635046") - ) - (pin "22" - (uuid "07b08e05-984d-4e7a-8e92-a65bc61a7e0f") - ) - (pin "21" - (uuid "20d20899-0939-45fe-8e40-44c3562d5c1d") - ) - (pin "20" - (uuid "c9d40c6c-7ce0-47e0-91ce-3d0594b33c5f") - ) - (pin "19" - (uuid "e79186ff-9d68-4c3c-ade2-e358d65fadfa") - ) - (pin "18" - (uuid "8ce901fd-9a7b-4f2b-bcb5-2c5e4076f8e6") - ) - (pin "17" - (uuid "56e1cfea-2743-4904-b1f0-bfc86acf9191") - ) - (pin "33" - (uuid "7867f88d-0071-4b78-85c7-27a842f15606") - ) - (pin "47" - (uuid "60c78e86-9567-438e-8a1a-929863448ba7") - ) - (pin "46" - (uuid "e274f949-a0b9-43c8-986b-1b6ef79f508f") - ) - (pin "45" - (uuid "18b69c39-a74f-4fab-a673-52d98abf4ffb") - ) - (pin "32" - (uuid "d249171e-ea7a-4944-bf4e-d8c2628c309b") - ) - (pin "16" - (uuid "17ef591f-cc12-41f7-a59f-61ad040a7ce5") - ) - (pin "43" - (uuid "09444713-0ffb-4c1d-931f-2707be7d9750") - ) - (pin "44" - (uuid "7ef485fb-0d3c-4afa-bdec-0c4ab321c591") - ) - (pin "42" - (uuid "28546a0b-6a0a-4bbe-b221-189904dc1030") - ) - (pin "9" - (uuid "67e09b9e-ed18-49d3-8e14-53571dc5a7b8") - ) - (pin "10" - (uuid "f829fbdc-348a-481d-a574-db7160c131dc") - ) - (pin "15" - (uuid "026633bf-8c18-4714-9689-c78d0d7769b2") - ) - (pin "5" - (uuid "d7d02c52-273c-4b66-be93-334ca44f7dea") - ) - (pin "41" - (uuid "ad928dc8-bab0-4e33-8805-c06086d426c1") - ) - (pin "39" - (uuid "abe2e191-a82d-426e-89ba-bdda45b17ad0") - ) - (pin "35" - (uuid "5c0d2ad7-747f-4328-b34e-6b6d5ee26e87") - ) - (pin "8" - (uuid "7d717167-2f50-480e-854c-9b5486a1c2ed") - ) - (pin "11" - (uuid "6d6dadf4-7fe9-4ac0-b4d1-fe079d290608") - ) - (pin "12" - (uuid "15c39f48-0e69-455f-b299-21adc29ddc92") - ) - (pin "13" - (uuid "0bc80aa9-406d-4b69-abaf-f8f134bb8873") - ) - (pin "14" - (uuid "75c73c25-0cfd-475b-9a93-c801b26ce011") - ) - (pin "34" - (uuid "8cea3c22-1240-4cbc-9a51-5c9f0800c771") - ) - (pin "36" - (uuid "5b77487b-a204-4f2f-bd9b-ae71840110c7") - ) - (pin "7" - (uuid "73aa752b-4971-4278-af98-9605b40f7bd8") - ) - (pin "37" - (uuid "7760e4ff-be18-479a-a813-c63c75ca8a03") - ) - (pin "48" - (uuid "963987c2-f405-4ba9-9d14-e0f3d9ec3790") - ) - (pin "3" - (uuid "0cdede4f-6dc5-4fbb-aa4f-f1eb1afecb37") - ) - (pin "4" - (uuid "d6bb6a78-9651-40cc-9856-374e7b8e37e5") - ) - (pin "40" - (uuid "1461f870-163f-43b7-b1a2-6f4ceaeb50f1") - ) - (pin "38" - (uuid "9da9c979-d43b-476e-816c-c39e93979c4a") - ) - (pin "2" - (uuid "baba4ada-acd3-4c74-a733-df2ef4a910f5") - ) - (pin "1" - (uuid "0474b65d-414a-4a05-b004-5574dd0569f8") - ) - (pin "6" - (uuid "c4d2bf3e-63ea-4864-a5d6-08fced197962") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "U11") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 181.61 119.38 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "799dac55-4653-4856-af6e-ddab4a32162e") - (property "Reference" "C56" - (at 184.15 118.11 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1uF" - (at 184.15 120.65 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (at 181.61 119.38 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 181.61 119.38 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 181.61 119.38 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 181.61 119.38 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 181.61 119.38 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "4446ad14-e260-4935-a81f-eebe3307700d") - ) - (pin "2" - (uuid "a8652d85-b122-41ab-95bf-c028425e23bd") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C56") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 80.01 35.56 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "87c8bbff-7aad-43d6-9b68-36ac5beb18c2") - (property "Reference" "C51" - (at 82.55 34.29 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10uF" - (at 82.55 36.83 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 80.01 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 80.01 35.56 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 80.01 35.56 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X5R" - (at 80.01 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 80.01 35.56 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "8c188e9b-b1d1-4172-8f91-42712eb76f88") - ) - (pin "2" - (uuid "8de55bc4-867a-463c-8ff8-c2cd811c2881") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C51") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 173.99 91.44 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "898b0f99-8d06-4f04-99d2-0a5c3f3f25d0") - (property "Reference" "R17" - (at 175.768 89.408 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "1M" - (at 175.006 93.726 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 173.99 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 173.99 91.44 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 173.99 91.44 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 173.99 91.44 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7c0702b5-e3fd-482e-9896-c0ec60e07b03") - ) - (pin "2" - (uuid "0844f8af-c590-4b8a-85fc-4a4d919092fe") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "R17") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 205.74 129.54 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "8abd50eb-ca5c-466e-8948-8888a7755852") - (property "Reference" "#PWR0SW02" - (at 205.74 133.35 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 205.74 133.35 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 205.74 129.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 205.74 129.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 205.74 129.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "7e28782a-46ef-4586-a6aa-03e60288a982") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0SW02") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "HR911105A:HR911105A") - (at 123.19 154.94 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (fields_autoplaced yes) - (uuid "8f518aff-5efc-4392-8598-de9e0aaf1c56") - (property "Reference" "J2" - (at 160.02 153.6699 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "HR911105A" - (at 160.02 156.2099 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "hardware:HANRUN_HR911105A" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Datasheet" "" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MF" "hanrun" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PACKAGE" "None" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PRICE" "None" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Package" "None" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Check_prices" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=eda" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "STANDARD" "Manufacturer Recommendation" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "PARTREV" "A" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "SnapEDA_Link" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=snap" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "MP" "HR911105A" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Price" "None" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "Availability" "In Stock" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (property "AVAILABILITY" "Unavailable" - (at 123.19 154.94 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify bottom) - ) - ) - (pin "3" - (uuid "920a9b25-f059-41ec-b3f7-da7a5e1b2ffd") - ) - (pin "4" - (uuid "590dc718-8299-4881-b9bb-faed0dae0af6") - ) - (pin "6" - (uuid "0151ab3a-7ea9-4889-89e7-e86449b557b4") - ) - (pin "11" - (uuid "693e3580-a55c-424d-81ff-e769c362ef06") - ) - (pin "12" - (uuid "78719822-7381-4c19-99dd-253d706115fb") - ) - (pin "9" - (uuid "64cf494c-c42c-4316-90d6-9f544afcf2d6") - ) - (pin "8" - (uuid "2115355b-77c1-49a1-bdcf-6fc5ff847185") - ) - (pin "10" - (uuid "b9e9ba19-043b-4fc1-ae11-e074f629685f") - ) - (pin "15" - (uuid "894fd2ea-c112-4b6e-a8d0-446ba60f21ad") - ) - (pin "16" - (uuid "1813b182-9eb4-429e-8cec-076f092c069e") - ) - (pin "5" - (uuid "178868dd-6df7-4d3d-a16c-d3509b9d6314") - ) - (pin "1" - (uuid "5ed69740-2e41-4635-a01c-d765e2a668f5") - ) - (pin "2" - (uuid "202a0b03-8fe3-4ea8-8d03-71f642c98d0a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "J2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 85.09 104.14 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "8fa0e05f-7b05-4576-a7f1-bee85be14a55") - (property "Reference" "R16" - (at 83.058 101.854 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "12.4k" - (at 82.55 106.426 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 85.09 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 85.09 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 85.09 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "1%" - (at 85.09 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "df8e9ec4-dbbc-44b3-92c5-c6a3563e377b") - ) - (pin "2" - (uuid "864ba3c3-c339-4811-9fe8-31a9da32797a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "R16") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:Crystal_GND24") - (at 173.99 81.28 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "92b8bfce-4f9e-4b91-88ed-4544f0888ee3") - (property "Reference" "Y2" - (at 172.72 77.724 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "25MHz" - (at 170.688 85.09 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 173.99 81.28 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 173.99 81.28 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "C0" "7pF" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ESR" "30R" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "±50ppm" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "CL" "8pF" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 173.99 81.28 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d479f1ee-60be-4ea2-8f4c-a18dc56feba9") - ) - (pin "2" - (uuid "c78157e9-2f9e-4a74-8eea-4b0169555551") - ) - (pin "3" - (uuid "834a42c9-1349-4c76-8502-9f92b8e5cc19") - ) - (pin "4" - (uuid "65ea3add-4932-4404-951b-db180ac50b2b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "Y2") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 80.01 39.37 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "9ef38dc6-bb39-400e-8dec-54ec57fc0aa8") - (property "Reference" "#PWR0cb01" - (at 80.01 43.18 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 80.01 43.434 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 80.01 39.37 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 80.01 39.37 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 80.01 39.37 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d8ad91aa-6793-4ac6-938a-cc0839df1517") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0cb01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 78.74 165.1 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a3738cfe-a3fb-4236-85b3-1a7829a89d7d") - (property "Reference" "R14" - (at 80.772 163.068 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "330" - (at 80.772 167.386 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 78.74 165.1 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 78.74 165.1 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 78.74 165.1 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 78.74 165.1 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d0591626-676b-463f-a8dd-67a609cf8bc6") - ) - (pin "2" - (uuid "5b36877b-53f5-46b5-953b-68f52749f29b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "R14") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 97.79 29.21 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "a68469bc-94a6-40c1-92f5-6966ad8047ea") - (property "Reference" "C52" - (at 99.06 31.75 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 96.52 31.75 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 97.79 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 97.79 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 97.79 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 97.79 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 97.79 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "b284b8d0-22b2-40c1-aeb1-9a41cd0e8054") - ) - (pin "2" - (uuid "3a57117b-85e5-4417-a5e4-54be3746d068") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C52") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 124.46 40.64 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "aaf5ff3c-c142-4a31-b718-d88327f8a9e1") - (property "Reference" "#PWR08d01" - (at 128.27 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 128.778 40.642 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 124.46 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 124.46 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 124.46 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "6dc78ca2-1101-4a45-a4bf-044030ff97b0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR08d01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 93.98 29.21 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "b05c2812-50b7-4ea9-b53c-6c89471d5973") - (property "Reference" "#PWR019b01" - (at 90.17 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 89.916 29.336 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 93.98 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 93.98 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 93.98 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "82462e7d-6eda-48fa-afda-93e35bfa3151") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR019b01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 173.99 86.36 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "b2460bbf-d30a-4587-9050-5d42324e02de") - (property "Reference" "#PWR0Y02" - (at 173.99 90.17 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 173.99 90.17 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 173.99 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 173.99 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 173.99 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "84ca7a1e-6912-4d96-868f-c0db622e1bed") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0Y02") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 88.9 60.96 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c4e21835-5fd9-46c9-b1f2-3bf62ea4c705") - (property "Reference" "#PWR04cfa01" - (at 85.09 60.96 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 84.074 60.96 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 88.9 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 88.9 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 88.9 60.96 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0c920413-f8b0-477e-bf24-042c4b89062b") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR04cfa01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 129.54 104.14 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "c980a539-8c7b-470c-89ee-7bb1160a78ab") - (property "Reference" "#PWR035b01" - (at 133.35 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 134.366 104.14 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 129.54 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 129.54 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 129.54 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "872bc9ee-39fb-4b51-8c68-24f3bc98abce") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR035b01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 181.61 123.19 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "cb141b43-9b70-4664-8b17-82959b54e11b") - (property "Reference" "#PWR0SW01" - (at 181.61 127 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 181.61 127 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 181.61 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 181.61 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 181.61 123.19 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "a82dc65a-425f-44d4-b1a9-4373943d9ea0") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0SW01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 93.98 40.64 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "d89d17ae-504a-4f9f-b4b8-379dab78fcef") - (property "Reference" "#PWR050d01" - (at 90.17 40.64 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 89.408 40.638 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 93.98 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 93.98 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 93.98 40.64 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "b82f21f4-d87c-4250-a9fa-ab2a8192779d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR050d01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 167.64 71.12 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "dde66668-6680-4234-99b1-7329f7e4d348") - (property "Reference" "#PWR0b4ee01" - (at 167.64 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 167.64 67.31 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 167.64 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 167.64 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 167.64 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "ce652158-7e34-48a3-afb0-64163bf0b555") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR0b4ee01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 57.15 129.54 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e073d463-7b3d-483a-bfa8-f159d95ca6a2") - (property "Reference" "#PWR09e01" - (at 57.15 125.73 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 57.278 125.476 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 57.15 129.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 57.15 129.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 57.15 129.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "604b9926-26ba-4bb3-8e22-a3684c59701d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR09e01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 180.34 71.12 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e944790c-db11-40cc-84c1-0cd6b8824b80") - (property "Reference" "#PWR06d01" - (at 180.34 67.31 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 180.354 67.31 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 180.34 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 180.34 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 180.34 71.12 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c8ece611-7cc4-4548-8ffa-a4f06effd2a2") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR06d01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 167.64 74.93 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "f8520a63-5936-4326-8d7f-ee8f61969721") - (property "Reference" "C58" - (at 165.1 76.2 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10pF" - (at 165.1 73.66 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 167.64 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 167.64 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 167.64 74.93 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "C0G" - (at 167.64 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "50V" - (at 167.64 74.93 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c6817562-0164-4b35-8291-490ea35155ba") - ) - (pin "2" - (uuid "a6e3c83d-c71f-43bb-8b05-5d791da11860") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C58") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 66.04 125.73 0) - (mirror x) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "f90fe6ac-e8e3-4366-ad0c-21a6d851e853") - (property "Reference" "C50" - (at 68.58 127 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 68.58 124.46 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 66.04 125.73 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 66.04 125.73 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 66.04 125.73 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 66.04 125.73 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 66.04 125.73 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "2c814a1c-727c-48b4-8904-14936dad923d") - ) - (pin "2" - (uuid "228daef2-ff72-4324-8445-1b58f70b2ba3") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C50") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C") - (at 120.65 29.21 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "fb9de64d-1cb0-4a56-9731-147f67552985") - (property "Reference" "C54" - (at 119.38 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100nF" - (at 121.92 26.67 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (at 120.65 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 120.65 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 120.65 29.21 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "X7R" - (at 120.65 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "10V" - (at 120.65 29.21 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "bad60afc-eebd-42c2-a4a7-1e0ad7dd4be6") - ) - (pin "2" - (uuid "b29de8f3-5e2e-4826-83b2-144df3d55d8d") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "C54") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 146.05 43.18 180) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "ff61553b-f36d-4b64-970c-476bd403b0d4") - (property "Reference" "#PWR041" - (at 146.05 39.37 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 146.05 38.1 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 146.05 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 146.05 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 146.05 43.18 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "e9dfa450-02ab-4a4c-8ee3-b639f786ecf1") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR041") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 111.76 110.49 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "ffa52b31-7716-4e61-8812-d2bf9e0f7753") - (property "Reference" "#PWR082e01" - (at 111.76 114.3 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 111.76 114.554 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 111.76 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 111.76 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 111.76 110.49 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "44ac6ab7-c957-44d9-a5fb-4a6a03ca79b1") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a" - (reference "#PWR082e01") - (unit 1) - ) - ) - ) - ) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/exi.kicad_sch b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/exi.kicad_sch deleted file mode 100644 index 1665d00..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/exi.kicad_sch +++ /dev/null @@ -1,1842 +0,0 @@ -(kicad_sch - (version 20260306) - (generator "eeschema") - (generator_version "10.0") - (uuid "20788b51-5673-46ad-ab64-2b0114a2f1ae") - (paper "A4") - (lib_symbols - (symbol "Device:C_Polarized" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0.254) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "C" - (at 0.635 2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "C_Polarized" - (at 0.635 -2.54 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "" - (at 0.9652 -3.81 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Polarized capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "cap capacitor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "CP_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "C_Polarized_0_1" - (rectangle - (start -2.286 0.508) - (end 2.286 1.016) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.778 2.286) (xy -0.762 2.286) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (polyline - (pts - (xy -1.27 2.794) (xy -1.27 1.778) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - (rectangle - (start 2.286 -0.508) - (end -2.286 -1.016) - (stroke - (width 0) - (type default) - ) - (fill - (type outline) - ) - ) - ) - (symbol "C_Polarized_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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "Device:R" - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "R" - (at 2.032 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "R" - (at 0 0 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at -1.778 0 90) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "R res resistor" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_fp_filters" "R_*" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "GameCube:Sp1_Connector" - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "J" - (at 0 16.764 0) - (show_name no) - (do_not_autoplace yes) - (effects - (font - (size 1.27 1.27) - ) - (justify top) - ) - ) - (property "Value" "" - (at 1.27 15.24 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 1.27 15.24 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 1.27 15.24 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 1.27 15.24 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "Sp1_Connector_1_1" - (pin input line - (at 1.27 12.7 180) - (length 2.54) - (name "ExtIn" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "1" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin passive line - (at 1.27 10.16 180) - (length 2.54) - (name "Ground(Shield)" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "2" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 1.27 7.62 180) - (length 2.54) - (name "INT" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "3" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 1.27 5.08 180) - (length 2.54) - (name "CLK" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "4" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 2.54 180) - (length 2.54) - (name "12V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "5" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin output line - (at 1.27 0 180) - (length 2.54) - (name "DO" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "6" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 -2.54 180) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "7" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 -5.08 180) - (length 2.54) - (name "3.3V" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "8" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 1.27 -7.62 180) - (length 2.54) - (name "DI" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "9" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin input line - (at 1.27 -10.16 180) - (length 2.54) - (name "CS" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "10" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 -12.7 180) - (length 2.54) - (name "Ground" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "11" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - (pin power_in line - (at 1.27 -15.24 180) - (length 2.54) - (name "Ground" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (number "12" - (effects - (font - (size 1.27 1.27) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:GND" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#PWR" - (at 0 -6.35 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 0 -3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Power symbol creates a global label with name \"GND\" , ground" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "global power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (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) - ) - ) - ) - ) - ) - (embedded_fonts no) - ) - (symbol "power:PWR_FLAG" - (power global) - (pin_numbers - (hide yes) - ) - (pin_names - (offset 0) - (hide yes) - ) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (duplicate_pin_numbers_are_jumpers no) - (property "Reference" "#FLG" - (at 0 1.905 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 0 3.81 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Special symbol for telling ERC where power comes from" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "ki_keywords" "flag power" - (at 0 0 0) - (show_name no) - (do_not_autoplace no) - (hide yes) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (symbol "PWR_FLAG_0_0" - (pin power_out 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 "PWR_FLAG_0_1" - (polyline - (pts - (xy 0 0) (xy 0 1.27) (xy -1.016 1.905) (xy 0 2.54) (xy 1.016 1.905) (xy 0 1.27) - ) - (stroke - (width 0) - (type default) - ) - (fill - (type none) - ) - ) - ) - (embedded_fonts no) - ) - ) - (wire - (pts - (xy 96.52 76.2) (xy 96.52 82.55) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1071df36-5eb7-412a-90fe-594fc2f8fa3f") - ) - (wire - (pts - (xy 72.39 76.2) (xy 74.93 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "13a40c48-4f89-4c4e-8411-59d9604bfd17") - ) - (wire - (pts - (xy 96.52 90.17) (xy 96.52 95.25) - ) - (stroke - (width 0) - (type default) - ) - (uuid "268f92c5-adf1-4088-97b2-7c1076c8e4ae") - ) - (wire - (pts - (xy 74.93 86.36) (xy 62.23 86.36) - ) - (stroke - (width 0) - (type default) - ) - (uuid "304db342-725c-47df-a1f9-5279cbbd0c46") - ) - (wire - (pts - (xy 74.93 96.52) (xy 62.23 96.52) - ) - (stroke - (width 0) - (type default) - ) - (uuid "3118fc2f-f7dd-4ffc-9e77-e19d817437b9") - ) - (wire - (pts - (xy 74.93 99.06) (xy 62.23 99.06) - ) - (stroke - (width 0) - (type default) - ) - (uuid "39504d66-79aa-4b38-baa9-40e3fe7bd216") - ) - (wire - (pts - (xy 74.93 83.82) (xy 62.23 83.82) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6e4490bc-f28e-4893-ace2-9698bca1733c") - ) - (wire - (pts - (xy 74.93 91.44) (xy 62.23 91.44) - ) - (stroke - (width 0) - (type default) - ) - (uuid "82ecec2c-3982-4626-a385-dc2caf1f9bcd") - ) - (wire - (pts - (xy 74.93 78.74) (xy 62.23 78.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8b4d7be2-41b4-408e-ae02-e15e7db5ad78") - ) - (wire - (pts - (xy 64.77 76.2) (xy 62.23 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a177b836-18aa-4987-b3e8-6eb3c293cc36") - ) - (wire - (pts - (xy 74.93 104.14) (xy 62.23 104.14) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a9b98f12-4996-44d1-ae46-2792ac2046f7") - ) - (wire - (pts - (xy 74.93 93.98) (xy 62.23 93.98) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ac10f016-ef9e-402a-8ae0-3b78bd758afa") - ) - (wire - (pts - (xy 74.93 81.28) (xy 62.23 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f34bf7e3-f9ca-46e4-8427-6979e6e860f3") - ) - (wire - (pts - (xy 74.93 101.6) (xy 62.23 101.6) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f5e53c2b-f30e-458d-b2ca-a713702cadf7") - ) - (wire - (pts - (xy 74.93 88.9) (xy 62.23 88.9) - ) - (stroke - (width 0) - (type default) - ) - (uuid "fd73b349-d700-4bfa-9b20-b662f3b5fa69") - ) - (label "SP1_3V3" - (at 74.93 91.44 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "70f96782-2886-4b5b-94ad-95906cdd520c") - ) - (label "SP1_3V3" - (at 74.93 93.98 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "c7b67f23-09bd-44ca-b5b5-da1d46bac5fb") - ) - (label "SP1_3V3" - (at 74.93 76.2 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - (uuid "c9d70ab0-2af1-490e-becd-c3978fe3fe26") - ) - (hierarchical_label "12V_EXI" - (shape output) - (at 96.52 76.2 90) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "383b1019-a08f-4ac4-a6a3-4c7d97fe728e") - ) - (hierarchical_label "12V_EXI" - (shape output) - (at 74.93 86.36 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "76606160-8e6c-4a89-92bf-200eaf9d9f75") - ) - (hierarchical_label "EXI_CS" - (shape bidirectional) - (at 74.93 99.06 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "a7933167-c81c-41fc-a28b-3d624d2c6c3c") - ) - (hierarchical_label "EXI_MISO" - (shape bidirectional) - (at 74.93 88.9 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "b924aab5-50c1-424e-a3d3-13ce8719e03c") - ) - (hierarchical_label "EXI_INT" - (shape bidirectional) - (at 74.93 81.28 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "d8101c24-4fbe-49d0-a9c8-3adfc57b1ed6") - ) - (hierarchical_label "EXI_MOSI" - (shape bidirectional) - (at 74.93 96.52 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "dca13659-788a-4f66-a808-793200444596") - ) - (hierarchical_label "EXI_CLK" - (shape bidirectional) - (at 74.93 83.82 0) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - (uuid "fe58658d-223d-451d-a212-6fc9cc475e79") - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 62.23 86.36 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "1143c10a-f8cf-4ae6-80ca-05c941a59f3c") - (property "Reference" "#FLG012VEXI01" - (at 62.23 82.55 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 62.23 88.9 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 62.23 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "d6122bb9-93cd-47c8-b584-2d13a89f1d64") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "#FLG012VEXI01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:C_Polarized") - (at 96.52 86.36 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "11c5a587-7b43-454b-8483-cecc6ffb0da5") - (property "Reference" "C60" - (at 99.06 85.09 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "100uF" - (at 99.06 87.63 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Capacitor_SMD:CP_Elec_6.3x7.7" - (at 96.52 86.36 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 96.52 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 96.52 86.36 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Type" "Aluminum" - (at 96.52 86.36 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "V" "25V" - (at 96.52 86.36 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "0f92f322-0ede-49af-90ef-25e63ed152a8") - ) - (pin "2" - (uuid "c2eda0a8-74c4-4c8e-bcd3-494fff83950a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "C60") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:PWR_FLAG") - (at 62.23 91.44 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "19242058-1254-4f49-86dc-28094f339ab2") - (property "Reference" "#FLG0SP13V01" - (at 62.23 87.63 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "PWR_FLAG" - (at 62.23 93.98 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 62.23 91.44 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 62.23 91.44 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 62.23 91.44 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c752ebfe-d94a-4a3d-a3e3-89396f94a611") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "#FLG0SP13V01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "Device:R") - (at 68.58 76.2 270) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "3fc0980d-551b-49f7-a302-ce717c6df384") - (property "Reference" "R18" - (at 68.834 73.914 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "10k" - (at 65.024 73.914 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (at 68.58 76.2 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 68.58 76.2 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 68.58 76.2 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Tolerance" "5%" - (at 68.58 76.2 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "07fd2c64-e06f-4c80-a24f-4d67a1f3bcd6") - ) - (pin "2" - (uuid "ec8a18fa-1237-4865-813d-7b6916ac099a") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "R18") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 74.93 101.6 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "4c4b74d5-d80e-41ad-a77c-0bb15b9defd8") - (property "Reference" "#PWR0eff01" - (at 78.74 101.6 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 79.502 101.6 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 74.93 101.6 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 74.93 101.6 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 74.93 101.6 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "c287f10d-7b3f-45ba-b597-132dc1cad929") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "#PWR0eff01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 74.93 104.14 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "b7128703-9472-4d87-981b-84d13e349a2b") - (property "Reference" "#PWR0c80c01" - (at 78.74 104.14 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 79.502 104.14 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 74.93 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 74.93 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 74.93 104.14 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "95638818-9b5e-440b-bc1d-fa3c03893049") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "#PWR0c80c01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "GameCube:Sp1_Connector") - (at 60.96 88.9 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "e1d71023-db8e-47ed-9ae2-d0237788b46a") - (property "Reference" "J3" - (at 49.53 72.136 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Value" "Sp1_Connector" - (at 48.26 69.85 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (property "Footprint" "gc:SP1 BoardConnector" - (at 60.96 88.9 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 60.96 88.9 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 60.96 88.9 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "79ab49e0-06ff-4451-bd30-4c7f80f53b51") - ) - (pin "2" - (uuid "6ce63fb9-1bd1-4686-9d62-aad4430ea889") - ) - (pin "3" - (uuid "6c8a9ba0-bcb8-4bfc-9f72-3015371eb865") - ) - (pin "4" - (uuid "2b7e07d8-37f1-49e3-b8fe-e9b30cb04f3e") - ) - (pin "5" - (uuid "2e54a81f-e5e4-4cb7-853e-8e12111ad3e0") - ) - (pin "6" - (uuid "fd3b62a9-39e0-4129-b527-7a54c2805503") - ) - (pin "7" - (uuid "62f1c38a-3bba-4f41-b29c-3eb028315745") - ) - (pin "8" - (uuid "4a6dbcc8-b7e1-4b41-8d2b-b8f342990a55") - ) - (pin "9" - (uuid "866128e0-5ce2-42ad-afa6-dfeacad1fe60") - ) - (pin "10" - (uuid "94957b23-7505-4abb-8e26-ccdc9570c989") - ) - (pin "11" - (uuid "642ae124-1996-4a8c-8d60-ffb4b4c4e838") - ) - (pin "12" - (uuid "b9880793-f385-4a7e-aae7-f86f32f9cf70") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "J3") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 96.52 95.25 0) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "ef19b682-da4b-4509-b903-3029f0beaedf") - (property "Reference" "#PWR0d01" - (at 96.52 99.06 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 96.52 99.314 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 96.52 95.25 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 96.52 95.25 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 96.52 95.25 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "bf029ea1-4594-41c6-afee-4bb0b7d7fb76") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "#PWR0d01") - (unit 1) - ) - ) - ) - ) - (symbol - (lib_id "power:GND") - (at 74.93 78.74 90) - (unit 1) - (body_style 1) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (in_pos_files yes) - (dnp no) - (uuid "fc79a3f2-5ed4-4db9-9715-e54d687310ea") - (property "Reference" "#PWR0f01" - (at 78.74 78.74 0) - (hide yes) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Value" "GND" - (at 79.502 78.74 90) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Footprint" "" - (at 74.93 78.74 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Datasheet" "" - (at 74.93 78.74 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 74.93 78.74 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (pin "1" - (uuid "dec12933-8788-4329-b251-ba8327400046") - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a/1b071f68-b4ea-469c-942f-de06380c9077" - (reference "#PWR0f01") - (unit 1) - ) - ) - ) - ) - (sheet_instances - (path "/" - (page "6") - ) - ) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/fp-lib-table b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/fp-lib-table deleted file mode 100644 index d04448b..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/fp-lib-table +++ /dev/null @@ -1,4 +0,0 @@ -(fp_lib_table - (version 7) - (lib (name "gc") (type "KiCad") (uri "${KIPRJMOD}/gc.pretty") (options "") (descr "")) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb-erc.rpt b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb-erc.rpt deleted file mode 100644 index b5aecf1..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb-erc.rpt +++ /dev/null @@ -1,22 +0,0 @@ -ERC report (2026-07-03T13:46:21, Encoding UTF8) -Report includes: Errors - -***** Sheet / - -***** Sheet /Power/ - -***** Sheet /Usb Connector/ - -***** Sheet /fpga/ - -***** Sheet /ethernet/ - -***** Sheet /exi/ - - ** ERC messages: 0 Errors 0 Warnings 0 - - ** Ignored checks: - - Global label only appears once in the schematic - - Four connection points are joined together - - SPICE model issue - - Assigned footprint doesn't match footprint filters diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.csv b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.csv deleted file mode 100644 index c4186e8..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.csv +++ /dev/null @@ -1,42 +0,0 @@ -"Reference","Qty","Value","DNP","Exclude from BOM","Exclude from Board","Footprint","Datasheet" -"C1,C2,C3,C4,C16,C17","6","1uF","","","","Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder","" -"C5,C10,C11,C12","4","22uF","","","","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","" -"C6,C7,C8,C9,C13,C15,C19,C21,C22,C26,C27,C28,C29,C31,C32,C33,C34,C35,C36,C37,C40,C41,C42,C44,C45,C46,C47,C49,C50,C51,C52,C56,C57","33","100nF","","","","Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder","" -"C14,C18,C23,C48","4","10uF","","","","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","" -"C20","1","1nF","","","","Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder","" -"C24,C25","2","18pF","","","","Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder","" -"C30,C38,C39","3","4.7uF","","","","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","" -"C43","1","10nF","","","","Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder","" -"C53","1","3.3uF","","","","Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder","" -"C54,C55","2","10pF","","","","Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder","" -"C58","1","100uF","","","","Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder","" -"D1","1","USBLC6-2SC6","","","","","" -"FB1,FB2,FB3","3","BLM","","","","","" -"J1","1","USB_C","","","","Connector_USB:USB_C_Plug_ShenzhenJingTuoJin_918-118A2021Y40002_Vertical","" -"J2","1","Sp1_Connector","","","","","" -"L1","1","6.8uH","","","","","" -"P1","1","J1B1211CCD","","","","hardware:J1B1211CCD","" -"R1","1","33k","","","","","" -"R2,R5,R9,R11,R12,R18","6","10k","","","","","" -"R3","1","200k","","","","","" -"R4","1","100k","","","","","" -"R6,R7","2","5.1k","","","","","" -"R8,R15","2","1M","","","","","" -"R10","1","12k","","","","","" -"R13","1","100","","","","","" -"R14","1","12.4k","","","","","" -"R16,R17","2","330","","","","","" -"U1","1","AP2112K-1.2","","","","Package_TO_SOT_SMD:SOT-23-5","" -"U2,U5","2","AP2112K-3.3","","","","Package_TO_SOT_SMD:SOT-23-5","" -"U3","1","TPS2116DRL","","","","Package_TO_SOT_SMD:SOT-583-8","" -"U4","1","TPS562201DDCR","","","","TPS562201DDCR:SOT95P280X110-6N","" -"U6","1","IH0505S","","","","","" -"U7","1","ADUM4160","","","","","" -"U8","1","93LC46B","","","","","" -"U9","1","FT2232HL","","","","","" -"U10","1","ICE40UP5K-SG48ITR","","","","Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm","http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" -"U11","1","W25Q32JVSS","","","","Package_SO:SOIC-8_5.3x5.3mm_P1.27mm","http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" -"U12","1","W5100S-L","","","","Package_QFP:LQFP-48_7x7mm_P0.5mm","https://docs.wiznet.io/img/products/w5100s/w5100s-ds-v128e.pdf" -"X1","1","12MHz","","","","Package_TO_SOT_SMD:SOT-23-5","" -"Y1","1","12MHz","","","","","" -"Y2","1","25MHz","","","","","" diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb deleted file mode 100644 index cde21a1..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb +++ /dev/null @@ -1,32690 +0,0 @@ -(kicad_pcb - (version 20260206) - (generator "pcbnew") - (generator_version "10.0") - (general - (thickness 1.1412) - (legacy_teardrops no) - ) - (paper "A4") - (layers - (0 "F.Cu" signal) - (4 "In1.Cu" signal) - (6 "In2.Cu" signal) - (2 "B.Cu" signal) - (9 "F.Adhes" user "F.Adhesive") - (11 "B.Adhes" user "B.Adhesive") - (13 "F.Paste" user) - (15 "B.Paste" user) - (5 "F.SilkS" user "F.Silkscreen") - (7 "B.SilkS" user "B.Silkscreen") - (1 "F.Mask" user) - (3 "B.Mask" user) - (17 "Dwgs.User" user "User.Drawings") - (19 "Cmts.User" user "User.Comments") - (21 "Eco1.User" user "User.Eco1") - (23 "Eco2.User" user "User.Eco2") - (25 "Edge.Cuts" user) - (27 "Margin" user) - (31 "F.CrtYd" user "F.Courtyard") - (29 "B.CrtYd" user "B.Courtyard") - (35 "F.Fab" user) - (33 "B.Fab" user) - (39 "User.1" user) - (41 "User.2" user) - (43 "User.3" user) - (45 "User.4" user) - ) - (setup - (stackup - (layer "F.SilkS" - (type "Top Silk Screen") - ) - (layer "F.Paste" - (type "Top Solder Paste") - ) - (layer "F.Mask" - (type "Top Solder Mask") - (thickness 0.01) - ) - (layer "F.Cu" - (type "copper") - (thickness 0.035) - ) - (layer "dielectric 1" - (type "prepreg") - (thickness 0.2104) - (material "FR4") - (epsilon_r 4.5) - (loss_tangent 0.02) - ) - (layer "In1.Cu" - (type "copper") - (thickness 0.0152) - ) - (layer "dielectric 2" - (type "core") - (thickness 0.6) - (material "FR4") - (epsilon_r 4.5) - (loss_tangent 0.02) - ) - (layer "In2.Cu" - (type "copper") - (thickness 0.0152) - ) - (layer "dielectric 3" - (type "prepreg") - (thickness 0.2104) - (material "FR4") - (epsilon_r 4.5) - (loss_tangent 0.02) - ) - (layer "B.Cu" - (type "copper") - (thickness 0.035) - ) - (layer "B.Mask" - (type "Bottom Solder Mask") - (thickness 0.01) - ) - (layer "B.Paste" - (type "Bottom Solder Paste") - ) - (layer "B.SilkS" - (type "Bottom Silk Screen") - ) - (copper_finish "None") - (dielectric_constraints no) - ) - (pad_to_mask_clearance 0) - (allow_soldermask_bridges_in_footprints no) - (tenting - (front yes) - (back yes) - ) - (covering - (front no) - (back no) - ) - (plugging - (front no) - (back no) - ) - (capping no) - (filling no) - (pcbplotparams - (layerselection 0x00000000_00000000_55555555_5755f5ff) - (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) - (disableapertmacros no) - (usegerberextensions no) - (usegerberattributes yes) - (usegerberadvancedattributes yes) - (creategerberjobfile yes) - (dashed_line_dash_ratio 12) - (dashed_line_gap_ratio 3) - (svgprecision 4) - (plotframeref no) - (mode 1) - (useauxorigin no) - (pdf_front_fp_property_popups yes) - (pdf_back_fp_property_popups yes) - (pdf_metadata yes) - (pdf_single_document no) - (dxfpolygonmode yes) - (dxfimperialunits yes) - (dxfusepcbnewfont yes) - (psnegative no) - (psa4output no) - (plot_black_and_white yes) - (sketchpadsonfab no) - (plotpadnumbers no) - (hidednponfab no) - (sketchdnponfab yes) - (crossoutdnponfab yes) - (subtractmaskfromsilk no) - (outputformat 1) - (mirror no) - (drillshape 1) - (scaleselection 1) - (outputdirectory "") - ) - ) - (footprint "Package_SO:SOIC-8_5.3x5.3mm_P1.27mm" - (layer "F.Cu") - (uuid "08f41b78-c68b-4f46-a398-9b5830d958ea") - (at 159.47 55.7225) - (descr "SOIC, 8 Pin (JEITA/EIAJ ED-7311-19 variation 08-001-BBA and Atmel/Microchip, 208 mils width, https://www.jeita.or.jp/japanese/standard/book/ED-7311-19/#target/page_no=21, https://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23, https://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=162)") - (tags "SOIC SO P-SOP SOP SOP-8 SO SO-8 8S2 S2AE/F K04-056 CASE-751BE SO8W 8-Pin-SOIC PSA W8-2 W8-4 W8MS-1 FPT-8P-M08") - (property "Reference" "U10" - (at 0 -3.6 0) - (layer "F.SilkS") - (uuid "89dc6ecf-83c8-4c7b-8344-ef5d3876e109") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "W25Q32JVSS" - (at 0 3.6 0) - (layer "F.Fab") - (uuid "7aae8818-706b-4815-8a39-63e262cb8a42") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "dbe7e179-f7db-49ab-a564-29fdb9c4cfd4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "32Mbit / 4MiB Serial Flash Memory, Standard/Dual/Quad SPI, 2.7-3.6V, SOIC-8 (208 mil)" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "1bb592a4-10c2-4cbb-8424-26d11bba3198") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "536aabfc-df54-43cc-844c-04d71eb1338b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "*SOIC*5.3x5.3mm*P1.27mm*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/214cd199-1209-4a06-972b-71421959b7f3") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "6" "5" "2" "3" "7" "8" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 -2.76) - (end 2.76 -2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1d5c7ba0-7ae6-481e-9469-14fcd1da58ee") - ) - (fp_line - (start -2.76 -2.49) - (end -2.76 -2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "30da8f6e-5b89-43b2-86a1-3bc951756d1c") - ) - (fp_line - (start -2.76 2.76) - (end -2.76 2.49) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "21268947-e1aa-4595-a76d-ff0a1de307e7") - ) - (fp_line - (start 2.76 -2.76) - (end 2.76 -2.49) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8fc27a6f-0160-4cfe-bb96-353684d422a8") - ) - (fp_line - (start 2.76 2.49) - (end 2.76 2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4631d7eb-d054-47f8-b83d-8c4cbb583d60") - ) - (fp_line - (start 2.76 2.76) - (end -2.76 2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7784cee3-1a99-4be3-8c0a-fea3cdf46e45") - ) - (fp_poly - (pts - (xy -3.59 -2.5) (xy -3.93 -2.97) (xy -3.25 -2.97) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "ad90df24-48e2-404d-a2d5-2b0e0b8018bb") - ) - (fp_line - (start -4.65 -2.48) - (end -2.9 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "42d3b423-89e4-41d6-83d8-f2110d6dea56") - ) - (fp_line - (start -4.65 2.48) - (end -4.65 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f4833197-ef08-417f-a12b-bbfd87a0bf19") - ) - (fp_line - (start -2.9 -2.9) - (end 2.9 -2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "784ca6e4-e5c8-463e-88e8-8f95a4a8b0c2") - ) - (fp_line - (start -2.9 -2.48) - (end -2.9 -2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1c48744e-8153-437b-b5a9-8d4f4bebbdc6") - ) - (fp_line - (start -2.9 2.48) - (end -4.65 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6b4a3881-c2f0-4dfa-bfe0-eb7452df3520") - ) - (fp_line - (start -2.9 2.9) - (end -2.9 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bb738ce2-a9aa-4a87-8036-e50878027d71") - ) - (fp_line - (start 2.9 -2.9) - (end 2.9 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8697b0a8-291f-4db8-88ea-4215b6aba06c") - ) - (fp_line - (start 2.9 -2.48) - (end 4.65 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f54fa2fd-1aad-452f-b3c7-03256b4bc172") - ) - (fp_line - (start 2.9 2.48) - (end 2.9 2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e4361cb8-eef3-4059-93b3-de0f4e0669a8") - ) - (fp_line - (start 2.9 2.9) - (end -2.9 2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2e3b9afc-f33d-4fad-aada-977b05bbd069") - ) - (fp_line - (start 4.65 -2.48) - (end 4.65 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e9156d2a-0ae2-4469-9517-8bd6a862a24f") - ) - (fp_line - (start 4.65 2.48) - (end 2.9 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "19adb54b-718f-43c1-9655-eef3466b073e") - ) - (fp_poly - (pts - (xy -1.65 -2.65) (xy 2.65 -2.65) (xy 2.65 2.65) (xy -2.65 2.65) (xy -2.65 -1.65) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "c99d1c7f-0a36-435b-971b-fbfc5f5cb380") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "40a62b8c-5eba-425f-b710-441c7dda60ba") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -3.5875 -1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_CS") - (pinfunction "~{CS}_1") - (pintype "input") - (uuid "5c58330b-2070-41b8-b029-f036d518bfb7") - ) - (pad "2" smd roundrect - (at -3.5875 -0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MISO") - (pinfunction "DO/IO_{1}_2") - (pintype "bidirectional") - (uuid "a28dbcab-1bc0-4ddd-a6ae-665bbc8a508a") - ) - (pad "3" smd roundrect - (at -3.5875 0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~{WP}/IO_{2}_3") - (pintype "bidirectional") - (uuid "1f4be114-2e80-4658-8328-5b5a20794b3a") - ) - (pad "4" smd roundrect - (at -3.5875 1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_4") - (pintype "power_in") - (uuid "921b0408-e8a9-4df0-8f4b-1edff3926e9f") - ) - (pad "5" smd roundrect - (at 3.5875 1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MOSI") - (pinfunction "DI/IO_{0}_5") - (pintype "bidirectional") - (uuid "6e1adbab-979b-4db1-ad18-31460c27469b") - ) - (pad "6" smd roundrect - (at 3.5875 0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_SCK") - (pinfunction "CLK_6") - (pintype "input") - (uuid "4ebb6769-1207-4253-bf35-49bd97863a62") - ) - (pad "7" smd roundrect - (at 3.5875 -0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~{HOLD}/~{RESET}/IO_{3}_7") - (pintype "bidirectional") - (uuid "184126b7-b85d-431f-83b1-33f506936199") - ) - (pad "8" smd roundrect - (at 3.5875 -1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCC_8") - (pintype "power_in") - (uuid "62bebcb2-7025-42a3-baa7-0e0f20f4e9d0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_5.3x5.3mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "0b4796cd-9d60-4582-a868-28b28de074fd") - (at 170.465 84.385) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C31" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "cd968f2f-877e-4696-9846-06950ecf9832") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "4.7uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "5d6bbf9c-d059-4cbb-87f3-6a0311159b62") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "400375fc-5429-4dcd-8499-e3a5b73da2a0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9a21a652-2d55-4c08-bb9d-93d61fbe2fa1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "1586ed06-2bfb-40ad-8dd2-bce08214ee67") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "660a83bc-8620-4d1b-ae96-3dd724072555") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a01eb187-88ac-42e9-b9d6-9d29c754c405") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/05f0dc12-4220-4878-a923-954d49d73d25") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "08109ee6-d298-423e-a991-b42ae37a3739") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "af666b1a-1d70-4982-ba7d-9a86b7a5eda4") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f200b29e-1862-4546-8a99-b587c74093e3") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e24cc30a-8f70-4d78-bce5-425b4a6567b0") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "6f651295-5332-421a-956f-759bb6f7f15b") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "86f2c462-f243-4dd3-a953-c78a12b80027") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "f164380d-5331-4176-b89c-3fbee2503a72") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "0c184f77-5097-46a4-b7d0-78dbd6427139") - (at 137.7625 71.1) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C57" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "fb34e2f2-766e-42d1-a625-c2806cb51d56") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "3.3uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "73ffa3de-963e-4553-9b8c-a19a6bb6727c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2b5c2bcc-6caa-4948-9287-79f6a140f423") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5b5c2988-33f8-4675-b332-5b00b3185576") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "280aecda-255f-4e65-85e3-0cd3047b04b3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "53c4d7a4-fa65-4e0c-bc6c-d22c05f41d72") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5597e68f-e9c8-44e5-be8b-98f6293e3384") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/2e143cd8-1f59-45d9-9bde-f16efc92d953") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "14f27f85-ff8a-4af8-a576-9cd9150778d0") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c08f1475-8e63-499e-80a0-0fedb5cae5bc") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f2b3966b-4901-496b-9c55-06e1c39dbca2") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0af26461-0a43-4aa2-8eaf-a2437c8dc5df") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a52dea89-9c3f-424f-a358-602027e533e8") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2O_RAW") - (pintype "passive") - (uuid "e627d978-fae5-49ea-88db-4e0fba89d3c2") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2ef77f0d-1048-4f7a-a148-862fff182af7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "0c474c4a-e62b-440d-b54d-5669b0a28aab") - (at 140.2725 85.0975) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C42" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "16cf1b82-7608-4c19-898f-a80d00034c16") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "d059a8c2-45bc-47ef-ba92-946522ce2b71") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6975e0c2-4d6b-4570-b868-cba045e3dc42") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d28d4f7b-549f-496d-8395-e03decd9f7e6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "0a509e71-af34-4cce-a59a-ad675d2c6426") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b2f011fb-5fad-4f55-bc76-90f16a666d20") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "84d896ed-dedc-4661-82be-8bf4e50bda4a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/bbbc01cb-ff9a-4efe-a15e-d40dca5053a3") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9f5e2f0a-bc8c-42ae-9590-278f0550253e") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "714a9253-df4e-421e-9f14-30383c304124") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "006dfd35-1210-4637-9b56-79f752cb3c9b") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b3a003f0-648e-485e-83c5-0e60e51ea61c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "9547ee81-7c9d-4f55-a643-21aa028c2aee") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "84ba425f-155a-4251-9811-645ab20fcdba") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "afdd6824-37f2-467c-b7b6-8cecb192cf31") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "0e3de586-8a61-43b9-90a9-3cd6c2a8cbc5") - (at 129.8075 57.89) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C49" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "8e7b91a4-8a08-417c-b06d-dd5601773110") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "92f70fb6-47b8-4552-ab40-b0e5be474076") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0fa0d538-b799-4e06-b3b0-971b4d27719f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "adba838b-8572-4b51-ade4-ca28e5f006c5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "fc5bd7ab-5f54-44b1-941b-58ce88d2db8f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fa128a4e-ece9-4cfb-921a-8f5f4b1bbfa0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e252ee3b-4506-47db-851e-d5067313d1c4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/5732288c-e135-4e01-a857-b7c1cdd85e89") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6dca4d3b-7033-4097-abad-9178ca8f9f72") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d4654d6a-e23d-4cff-8afd-5c17a9f941f1") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "eaece99e-8f6f-463e-8044-95b666b78925") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "6c920900-b692-41f6-abe2-ae61c14097d0") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "85eb4599-b234-4136-b7b1-540965240d39") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "a2fbe51a-94e7-4c2f-98c7-e7c4d94294df") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "35b9929e-9908-450f-8e33-97b4da790ad7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "1382341e-8291-4297-9dde-2ef38214694b") - (at 153.04 56.14 90) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "X1" - (at 0 -2.4 90) - (layer "F.SilkS") - (uuid "41cd7c0e-d310-4ab6-9346-667dcbc595ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12MHz" - (at 0 2.4 90) - (layer "F.Fab") - (uuid "e6f6736c-1de3-4c9e-8b69-49a9996583b4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "7a48de5a-cf3c-4e67-9735-b7ce1f27aa85") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ff3900d8-0b39-476c-bb32-35e324d792df") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "3af42075-4943-4d85-97d8-ab6cf0a4bbcd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (path "/73763384-ff95-4826-8da6-2de53070e62f/b6ef64c5-65dd-47eb-8855-4631e64d1b5d") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "5" "2" "3") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cd63b8c6-e5bf-4efb-a29c-f9f8ec82f380") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d0c6e968-2c52-49c7-872e-72946976f025") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fa3e7b15-b7d4-4fb1-9f51-4fc54b5867aa") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e7e9341f-ced6-47ba-9c42-e874b4144f94") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4bbe2527-6a70-48ad-8cd5-2c2f6d249da3") - ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7fccb362-b425-4fc7-9869-da3950e3d182") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1598fd96-a389-4551-b4eb-fbd6fa4f7723") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "fe6340bf-c0f8-4681-ae3d-f73d74440b81") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5de25389-cfcd-4de0-8eb0-0f0d88badedb") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "de9040ab-4492-498c-b221-d88ddf126602") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf2477b8-3094-41f2-bcc3-e3584269d7ca") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0932faa9-29c7-4138-8d56-546218238110") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5137902e-e349-447f-9d4f-7fae43ead330") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bd53d289-a109-425f-9e54-ab14c19e3187") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f16015df-7187-41ba-b8fc-4c12ebd52753") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f77521cc-371b-4a8e-bbe9-1947799ea864") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b9baa640-aba1-4ce4-baf6-22f3a3d5a247") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ad914ada-bf61-451c-aa55-6865487b50be") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f76040a6-96ed-4e2e-bc3f-0edfdf703633") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6dc756b9-724f-4c39-ad08-25384a1c5ee4") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b27df0b4-de03-40fe-b202-35acb6f30326") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dcc7c7ff-001b-4b4b-a287-7e636a2bfc9b") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2eb58f7a-2d62-4256-8231-8d5006e2058b") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5f81db38-6d77-4943-8c4f-958d80db37ac") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "43f59af4-6aa3-446d-9329-94e9452309be") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "0775f8ab-a6cb-443f-8baf-0352deba0779") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "OE_1") - (pintype "input") - (uuid "8fb2f277-9fb5-4467-91af-b9a13222be25") - ) - (pad "2" smd roundrect - (at -1.1375 0 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "062860a0-8fe7-491c-b5b3-343edbadbf20") - ) - (pad "3" smd roundrect - (at -1.1375 0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/CLK12") - (pinfunction "OUT_3") - (pintype "output") - (uuid "32e8683a-78df-4186-a82e-d08c5e19de73") - ) - (pad "4" smd roundrect - (at 1.1375 0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (uuid "7c8dac01-255b-4394-846b-54461459f20f") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VDD_5") - (pintype "power_in") - (uuid "abdd9b7e-e9bc-4769-a13f-c4e171f52321") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "13bc0e4e-a101-4269-b64a-edbd05dceac1") - (at 183.3025 65.58) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C12" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "8bd93207-8879-4748-b330-a04f94ee0f89") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "1e35d98b-2ca3-4edd-9e56-68d0175f2ee3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6426d9f4-54f0-4540-b914-070fd01efd01") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4e7968e1-fcf6-4e45-b013-c3dcdce307f8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "230c5b4a-1ddd-446b-b1b9-9d96d8605279") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "01eb3d61-a4e3-4965-bf7f-9724a8c4db4a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "72aa749a-1dc7-49a2-b83b-304d49a73c8f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/53ffa1a8-eeb5-4671-8e4b-3b28c92f6fbe") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f8ac0574-6455-46ae-a470-d5c61e6cb96d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f0afce72-59be-48ca-a654-bff1aea7ccb0") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d15c15c1-4696-4012-a047-42ac7bad1bdd") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1d9bff44-b80c-4db4-81f1-8ad4495b5e4f") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "ee8be7ae-9444-4e6c-b042-4cbc57679d57") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "125f652a-9906-4676-b3f1-67099dea2a93") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "13933250-55a4-42f8-8e81-87bc8ab6244e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "hardware:SOT95P280X110-6N" - (layer "F.Cu") - (uuid "156cee70-df37-4cb5-97d0-0a70589fa301") - (at 193.735 67.7) - (property "Reference" "U3" - (at -0.068 -2.2064 0) - (layer "F.SilkS") - (uuid "5654de19-f1cc-4924-9879-372f727ed23a") - (effects - (font - (size 0.64 0.64) - (thickness 0.15) - ) - ) - ) - (property "Value" "TPS562201DDCR" - (at 4.4024 2.2064 0) - (layer "F.Fab") - (uuid "bd509639-91b8-4d10-a2c6-d54d60de6424") - (effects - (font - (size 0.64 0.64) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8c073f2b-87d6-4a51-b877-e7b63d663a54") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "86e9f51f-da4e-4a76-858f-31d591eccf3b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/8949102c-9b07-42a5-8fc0-460e3ea3148a") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "3" "5" "4" "6" "2" "1") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.8 -1.565) - (end 0.8 -1.565) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "ba901b82-49d2-43b4-b04e-5d25f648eab5") - ) - (fp_line - (start -0.8 1.565) - (end 0.8 1.565) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "3565f46e-da26-4029-bb5b-087f2a73cf9c") - ) - (fp_circle - (center -2.4 -1.2) - (end -2.3 -1.2) - (stroke - (width 0.2) - (type solid) - ) - (fill no) - (layer "F.SilkS") - (uuid "f1db9257-9c4e-40d2-b857-c2809ebb5b15") - ) - (fp_line - (start -2.13 -1.495) - (end -2.13 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b4f96a1f-b587-4b06-b17d-9645135caf3d") - ) - (fp_line - (start -2.13 1.495) - (end -1.05 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4f7650b8-658d-4c0a-a3c9-7967b3aa58a9") - ) - (fp_line - (start -1.05 -1.7) - (end -1.05 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9a5ca592-d11a-45ad-840a-7fb1390c3412") - ) - (fp_line - (start -1.05 -1.495) - (end -2.13 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "3825d10d-d655-465b-8bce-95c9aa34bb9f") - ) - (fp_line - (start -1.05 1.495) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "da0fdf58-e210-463b-a2b4-a5faeccfbbd8") - ) - (fp_line - (start -1.05 1.7) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f00df159-ac2d-465d-ab92-edca6b0a6048") - ) - (fp_line - (start 1.05 -1.7) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7f4a82fa-7da5-4d55-b338-b1383c1af128") - ) - (fp_line - (start 1.05 -1.495) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "190e1cd1-5754-4db9-be33-ec045fedb38d") - ) - (fp_line - (start 1.05 1.495) - (end 2.13 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4eabbaa3-3adb-4cbc-91cc-5fc8476fa48a") - ) - (fp_line - (start 1.05 1.7) - (end 1.05 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6cf196c4-330e-41d7-9d4b-92119b2d9e93") - ) - (fp_line - (start 2.13 -1.495) - (end 1.05 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a6c46d08-71af-4e07-b786-714336f5d9b2") - ) - (fp_line - (start 2.13 1.495) - (end 2.13 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0358a155-a302-4fb3-857a-25a175cf6031") - ) - (fp_line - (start -0.8 -1.45) - (end -0.8 1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "986c4240-a414-4f3b-89df-85ad59d429c1") - ) - (fp_line - (start -0.8 1.45) - (end 0.8 1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "423e625f-43af-466d-82fa-f175a197fd81") - ) - (fp_line - (start 0.8 -1.45) - (end -0.8 -1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "318283b2-5588-4053-a2f0-73ae01ade4cb") - ) - (fp_line - (start 0.8 1.45) - (end 0.8 -1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "bc08a930-2f4e-4e94-b46f-69873bdb8336") - ) - (fp_circle - (center -2.4 -1.2) - (end -2.3 -1.2) - (stroke - (width 0.2) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a3e2050d-1c55-437a-a6c8-186597d56e1d") - ) - (pad "1" smd roundrect - (at -1.255 -0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "GND") - (pinfunction "GND_1") - (pintype "power_in") - (solder_mask_margin 0.102) - (uuid "b33f81e7-81fe-4f64-bf89-3ff0ea0c4ce0") - ) - (pad "2" smd roundrect - (at -1.255 0) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "/Power/SWN") - (pinfunction "SW_2") - (pintype "bidirectional") - (solder_mask_margin 0.102) - (uuid "190ee918-89c5-4db3-b78f-ca5667ef5ad2") - ) - (pad "3" smd roundrect - (at -1.255 0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "/Power/12V_EXI") - (pinfunction "VIN_3") - (pintype "power_in") - (solder_mask_margin 0.102) - (uuid "c1a04dc6-b805-4802-b120-9d62f8f14a17") - ) - (pad "4" smd roundrect - (at 1.255 0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "Net-(U3-VFB)") - (pinfunction "VFB_4") - (pintype "input") - (solder_mask_margin 0.102) - (uuid "5005a7ed-04db-4225-adf1-9a6e04ea0473") - ) - (pad "5" smd roundrect - (at 1.255 0) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "/Power/12V_EXI") - (pinfunction "EN_5") - (pintype "input") - (solder_mask_margin 0.102) - (uuid "ece7407a-1664-45c9-814c-f38614690fe1") - ) - (pad "6" smd roundrect - (at 1.255 -0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "Net-(U3-VBST)") - (pinfunction "VBST_6") - (pintype "input") - (solder_mask_margin 0.102) - (uuid "68fc9d9a-2760-4975-a130-72acf14be92d") - ) - (embedded_fonts no) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "18387136-61a5-47eb-9453-b61209d12cd8") - (at 143.4325 68.35) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C54" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "9cda29c2-14e5-41a3-ab27-9fd433f29b1c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "6e02de99-a646-4d5d-932e-1e789fa9e65c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9ac44590-9eb8-4abb-b109-dc72ab356ce2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8da954cc-ed81-4d08-b455-134241179204") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6c92b82d-0ac2-49da-9540-2aabd6feaefe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "2ebe4620-96e7-47cb-ad55-2c67391786d8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "40de1b1d-d99d-49b0-9200-eed53af3e0cf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/fb9de64d-1cb0-4a56-9731-147f67552985") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bf251061-19dd-4853-84fc-2120896777b6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "906302d5-e57e-42fe-8f76-1a273494eda0") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a1097b06-c063-4fa3-9aa6-9dd106e7ffe8") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "da428313-1370-487a-b14f-03da070edcfb") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f6c29d07-a63b-4ba7-be31-d51522427d4f") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "4426bd93-4914-4991-bd75-8bdb9838acc4") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "24ba53bb-512a-47ab-bcd7-0e02506932b6") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1985dd31-8465-409e-bb91-80505a030b45") - (at 141.94 86.9975 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C47" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "400ce3bb-8bce-4d58-b308-e2bfbd6200fb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "c8cd4f9f-1b61-47a6-99c1-471afc2fba08") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "abc8f753-cc18-45b0-b495-fe4e598d267b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "079a2b06-dec0-49ee-9631-cb13148fdbb8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "07542b42-3600-4c37-b68d-44cd2cd70352") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "361f51a9-b746-4be9-9880-2dc28f43ec2e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6dc0007e-5926-42df-a22f-ffe78e11d417") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/6f1678d1-05c7-42c0-a0a5-eb125f5a6c53") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4f82855e-21e7-49ae-adb8-ce8c2ff282ae") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46c7230e-835e-464d-a629-54a5bea39368") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a43966ad-3d23-4d86-8a76-9853060ee536") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d42538ac-d2c8-46d1-bb55-eb3b9d993316") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "f3576ae7-c585-43f7-9497-052cc1ac69ef") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "45f08b39-4704-4c3a-8dbf-70a063912784") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "18cc0c90-5ea7-43cf-9bc9-e699dfebcb09") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1a46d491-0abb-4f40-b8ef-8dadec8c3368") - (at 131.6225 91.4475 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C38" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "0d563637-b54e-4635-b5b6-4efc04b48d03") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "12c1eb29-c287-4aa5-89a8-95f947601094") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9610c290-ec59-4fe8-a0a9-5c399ee81a15") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "aa267e5e-4b98-4fcb-a7ed-5c7552609ffb") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "24450d57-9e33-4fb7-b18b-b654fe916f80") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9745a4b3-66b7-4e07-9f6b-ab38da40e249") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "207bc65d-9884-47a8-bca7-06342b64b4fa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/4f7d5035-f167-47a3-afbd-9e69d8524e27") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a3793fcc-b1d0-491d-ae0a-b59284b6f447") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b5ad4bd4-03c4-4302-bc22-323aaff5f935") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "3379ce9b-2434-4f20-9fa4-a20b0c3eab87") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "fc8fcf04-5ca8-4c70-8bbc-2396fc24aca5") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "cb6ffa5c-e715-441e-90c3-b35e10d411d5") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "8d543866-9e21-4363-974f-25b14688add8") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "5917d075-6ac7-4cc4-b55d-048714f72486") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1c2098ca-2dab-4fe1-b160-61f4020fbb28") - (at 140.2725 84.0475) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C41" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "fb7dc97b-6f89-45e5-a5c2-7f89270e8857") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "bdd28d69-323f-4c13-98df-e996fb3b945c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "65de4fe0-14a6-4c4c-a87b-7a14b5116564") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6327330d-06ea-49fe-a863-db0fe13a7290") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "cf152032-7928-4b9f-898d-915bf99c31cc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d0176cbf-f5c8-4e5d-b90c-e211de53ec23") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "54d9f5c9-94c8-4c20-b3d4-e89bc56f8cb3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/1b0091f4-0628-436b-b8e4-f629b2ec0d83") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "140b8fc9-aed4-4efe-a381-9642f4759d00") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "93ff22a9-2a3d-4171-9c0f-1736f8c0fd3d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ed8ccdfd-3ab8-43e3-9353-99cb65bf951c") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "27e55d7a-7bb4-4d47-8d54-2728f8999e63") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "9f8e5d78-6bea-403f-a544-cd6953f97985") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "af2b99b8-3f16-4330-9aee-f50dfc476f62") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "6ca67925-10bb-417b-8a3d-6c369ce8a2b2") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "1ffb36af-aa16-4b33-aacb-1f499ded280d") - (at 146.4 41.3625 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C14" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "1b3b1834-b466-4197-823f-da4b797f870b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "975efd24-3ad8-4254-96f9-ac6bfafd8cd6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "d206403d-6ea6-4d41-9056-c2cb0142b062") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "c49626ab-b463-44e8-b512-b70e945550c7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "b523e927-ca60-4361-b4dc-0f4fff5da6ab") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "06ed196b-1ce8-48c2-b1c9-863fc1d73411") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "18ed65f1-18e2-422a-b542-5ef6b0702f52") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c042288a-20e3-4624-9f2a-65dd79c19569") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f1832d26-371b-4e5a-83ba-ba7549825c2f") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "278da63b-2aee-4840-b5b3-6dd3ed125620") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "66309a50-1833-4f19-990b-8817341b3ca6") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ca792882-a0d5-4e3d-a387-ff826a5340b4") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "01c5a7a1-c55b-4530-8aa2-42a87e86c1e5") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "c107a84c-f02e-40f7-b7a4-88203db18112") - ) - (pad "2" smd roundrect - (at 0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "91cdac53-d4ab-45c5-8f08-84d7cdc66d94") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Inductor_SMD:L_Changjiang_FNR4018S" - (layer "F.Cu") - (uuid "2371072c-73ae-47ff-bc0a-cd38d18feea7") - (at 189.23 68.7 -90) - (descr "Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf)") - (tags "wirewound power shielded") - (property "Reference" "L1" - (at 0 -2.95 90) - (layer "F.SilkS") - (uuid "867d593f-363b-4c9c-8b32-6b8006cdc712") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "2.2uH" - (at -3.3 5.405 0) - (layer "F.Fab") - (uuid "0f224377-1de4-4635-b0aa-a2bab52c4856") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "a002d8f2-737b-479a-ae53-dd1a2d6ac0da") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "97f999da-46a2-44f6-9582-cb3a23aa486d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "inductor/SMD" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "28756305-af7f-4257-b38c-d012f9d87ced") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/2c31491d-3762-4175-b904-210bd0b09ed2") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 2.11 2.11) - (end -2.11 2.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7f032e21-5fa1-4efe-81e1-b9e3aaaa8744") - ) - (fp_line - (start -2.11 -2.11) - (end 2.11 -2.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "44c87ec1-dec2-4ce0-ac0a-53d262828cc6") - ) - (fp_line - (start -2.25 2.25) - (end -2.25 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d905864c-07ae-4372-bb61-886493aad0b3") - ) - (fp_line - (start 2.25 2.25) - (end -2.25 2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "92cd5b64-5364-485a-9a8c-6ae0a89d2f08") - ) - (fp_line - (start -2.3 2.1) - (end -2.3 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "fcd374e8-a639-4a26-8d6c-2eb789c22bbb") - ) - (fp_line - (start -2.25 2.1) - (end -2.3 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "996ffd58-77ea-4afa-bced-c890d2cd8cfe") - ) - (fp_line - (start 2.25 2.1) - (end 2.25 2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "005f216e-d0c6-4fad-9b9c-fdc740c50fb4") - ) - (fp_line - (start 2.3 2.1) - (end 2.25 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6f997148-17c3-4690-aae2-c43db1846d2a") - ) - (fp_line - (start -2.3 -2.1) - (end -2.25 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5f143363-49e8-465a-8df0-002353087a5d") - ) - (fp_line - (start -2.25 -2.1) - (end -2.25 -2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "317f7900-4095-4ef5-8468-fb681c6443a7") - ) - (fp_line - (start 2.25 -2.1) - (end 2.3 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5fe2068f-83f3-4595-a4df-9c6bce9390c2") - ) - (fp_line - (start 2.3 -2.1) - (end 2.3 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "3363b4db-32fe-447f-8c0c-7e0ba0fd7ec3") - ) - (fp_line - (start -2.25 -2.25) - (end 2.25 -2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e167c986-f838-4eea-a063-75bf318d75db") - ) - (fp_line - (start 2.25 -2.25) - (end 2.25 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "86998acc-255d-4477-9e30-747dd1c68e27") - ) - (fp_rect - (start -2 -2) - (end 2 2) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a1770bae-17f9-4104-91db-004d43d93678") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "6c05959d-b558-4c6e-9310-16e48784b00a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5 0 270) - (size 1.1 3.7) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.227273) - (net "/Power/SWN") - (pinfunction "1_1") - (pintype "passive") - (uuid "bf3fc92f-d972-4034-a023-717beb8707f2") - ) - (pad "2" smd roundrect - (at 1.5 0 270) - (size 1.1 3.7) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.227273) - (net "/Power/GC_3V3") - (pinfunction "2_2") - (pintype "passive") - (uuid "2f72ebfb-59d6-4034-9bf2-464edd318b94") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Changjiang_FNR4018S.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "2683d76a-303d-4a7f-9922-3313f60e368f") - (at 157.46 90.5875 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C48" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "1bf6fde2-5c55-49fb-9515-a381d4a4a962") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "1c974e55-e324-4f21-b6bc-f7f3ba3d13e9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "af7a68f2-4a0e-41b5-96fe-b6da5362b6f4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "33b81ffb-ac9d-403e-85f8-8100364b2cca") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "134550df-0006-49ea-8f39-00c7202cb935") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f3b4b98b-4c50-49e0-b52b-6941ac449712") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "2fa5cbde-1b35-4ecc-9020-cad0012c606c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/2d6c9bb8-a909-4391-8586-56fae18c5d19") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4888959e-ccde-405a-9523-291b4f3b2560") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bac3b67a-d9fc-473e-a94e-e54f257c97de") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "fb09e648-eb2c-40a9-980e-67fc0437aaaf") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "2fc57774-b762-4e74-ba92-6aef6a0f1419") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "2e02a717-e3b6-488f-9c22-40195999eef7") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "cfb12b64-7024-49b8-8bfc-c2bf9e044d5f") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "b06a084b-bb68-402a-988e-5dd73d309e08") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "27c3518c-0fd1-4608-a6bf-8da22ce4d478") - (at 136.8075 79.3975) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C46" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "5318cc43-b05f-4b28-aa7b-4e33a08993f7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "6eb0cdbc-266c-4bd9-a392-8f5047e88797") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b385eabc-354d-45ce-8938-0ad4d1f37fda") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "50449700-27cc-44ef-a1f9-ae419665c06f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "fe140552-7a43-4453-b411-3eb771a321b9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ede0b73a-9001-4d3e-b8c6-38d572c15572") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "03bcd20c-13cd-4ed7-a28a-39373b933635") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/a0f9d5a2-4857-4091-bc6b-c353047234c9") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c4a5de5b-0a09-4d52-a0bb-53422dbc7262") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2631f737-d7dc-4dd9-b268-a272d514bc1d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f40b553e-1618-4968-b720-102fbe89d3c5") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d5542a2f-d5b7-4c03-8169-2d1227ee0bf4") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "97fdc80c-9487-4297-84ac-3ff0bb890411") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pintype "passive") - (uuid "a4fa1ed4-467f-442f-a8fe-a7e6289bd4bb") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "8f7347ed-d535-4106-a38c-b29ecca5b025") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-6" - (layer "F.Cu") - (uuid "297087d7-297e-4acb-bfb1-314d336fa245") - (at 148.18 74.0525 180) - (descr "SOT, 6 Pin (JEDEC MO-178 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U12" - (at 0 -2.4 0) - (layer "F.SilkS") - (uuid "685afc6d-3d65-41a9-8a5b-3a5fa51d530f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "TPS22810DBV" - (at 0 2.4 0) - (layer "F.Fab") - (uuid "0be5c046-7d03-48b5-b8bc-3de2e5f3deaa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0ebae55b-bf74-4105-8356-3beef27977ba") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e12762f9-1c71-4635-86dd-dd22b192b8ca") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "a2eec779-94dd-4b07-b208-dbfc06d8ce6c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/14b6366d-fad4-4f08-9680-8b51b64ae65b") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "6" "5" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "df9e8d6f-172c-4ee7-bcfe-68792ecbdf00") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "5e6666cd-b994-42c5-ba33-db527ab0f97f") - ) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dfdc5b18-d4d1-4109-a936-7ed570f57b58") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2890ad46-3afe-4a54-af30-08e86ab170d0") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1b75f609-3ff5-4caf-8cba-5ea7522ef36d") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cf370a80-f0d7-4377-b1b8-fa4c0931bce7") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "bd706280-3c6a-465a-9300-f101e0a2c50a") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c95031d5-39b8-4f65-a38c-90123f924531") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "345e2950-dab4-46c6-953d-1f7d6da3ac40") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "23d88f6d-140d-4cf7-a035-b7d6e830456e") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "36f00780-ba11-4dd5-99f2-625b211232b5") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "57c5eb0b-ba18-460c-94e5-700bccb31c30") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "184886ab-979a-4ff5-8e71-4c855749cc51") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf2a998c-8fae-4fad-806c-17d6d6bdd905") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6c248dc5-ed47-45e9-b591-08a6d25362c3") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8a7cd5d0-8457-4486-a7d0-7d9709543770") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8b3758ef-57cc-45b3-9ad8-979c932155d5") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ffd8ad42-b3d4-4026-b060-0de538528060") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c411e0c7-6752-454a-88db-a31bf1c76c20") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0ec3980b-0bd2-40ec-8f2a-77006b6617b6") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "4d52caca-f048-4723-a052-7ee4aade6a89") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "1d07deb3-cdea-4bd9-b41a-7920e909e2ba") - ) - (pad "2" smd roundrect - (at -1.1375 0 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "5baa042e-b272-4535-a9e2-3d75e402b66e") - ) - (pad "3" smd roundrect - (at -1.1375 0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/GC_ON") - (pinfunction "EN/UVLO_3") - (pintype "input") - (uuid "7234d640-82fc-4325-ba1f-3e1afb3f5a2f") - ) - (pad "4" smd roundrect - (at 1.1375 0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U12-CT-Pad4)") - (pinfunction "CT_4") - (pintype "output+no_connect") - (uuid "1d5c00fe-0f52-4f54-84a2-6770916d9d58") - ) - (pad "5" smd roundrect - (at 1.1375 0 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U12-QOD-Pad5)") - (pinfunction "QOD_5") - (pintype "open_collector+no_connect") - (uuid "7cde1cbb-0b26-4ad9-9e58-2d7bfeb8af48") - ) - (pad "6" smd roundrect - (at 1.1375 -0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "VOUT_6") - (pintype "power_out") - (uuid "c68afff5-9b75-4857-b059-a01048256d16") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "2a5ccf93-941c-4c6c-a1e6-e153fd963c45") - (at 195.12 82.4075 -90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R10" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "8e0283ea-5238-40b5-b417-f27f2ac69e1b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "44731937-32bc-4a0c-898e-1f0aafff165f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "b657c618-4498-441b-acff-03c853fbec4e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "af9269f1-b682-4ec4-9a45-ebe7b134c982") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "6d54a1bc-e6a4-4cc4-bda6-85faa32dd80e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "cab71a75-b698-4f5f-8e3f-ea2b40c59397") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c8b06b44-7310-4191-8477-73fae983e5e1") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "105ef5d9-3cb7-417c-9eb8-0dbf8c34cf0b") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d97db0a1-0303-42f4-9a26-675d64fa34ad") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "96f607ac-cb76-4f39-85f4-699386a0cdd7") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "41e9f49f-0511-4364-9535-8ead035361f3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "5a717e08-e0f5-47af-a9b6-794343177c9f") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "7061bb98-8bcf-45ee-b8bf-8c232037ef47") - ) - (pad "2" smd roundrect - (at 0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-REF)") - (pintype "passive") - (uuid "5ca8ed43-b693-43c2-8168-1b7c7ae6ba51") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:CP_Elec_6.3x7.7" - (layer "F.Cu") - (uuid "2f2d2a2b-1f01-4378-939e-ca124fda8b8d") - (at 203.76 67.71) - (descr "SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm") - (tags "capacitor electrolytic") - (property "Reference" "C60" - (at 0 -4.35 0) - (layer "F.SilkS") - (uuid "c4716c8c-9f53-45b3-a34e-310eb57456d6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100uF" - (at 0 4.35 0) - (layer "F.Fab") - (uuid "6577bcaa-f482-4204-9b9f-723b10a7d048") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "37c02abd-f58c-43ca-a6a8-5718f5788e11") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "68355537-1578-412f-9ce6-0ce3cf1aa8a8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "capacitor/SMD/elec_round_polarized" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4c12efbe-8af7-4560-a20c-f984f1eaf136") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "Aluminum" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5a952cca-359c-4973-b6f8-b3dcfb5cf509") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "25V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6b4bc850-1ba1-4f92-aaae-7b8fcf9dae3a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "CP_*") - (path "/1b071f68-b4ea-469c-942f-de06380c9077/11c5a587-7b43-454b-8483-cecc6ffb0da5") - (sheetname "/exi/") - (sheetfile "exi.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -4.4375 -1.8475) - (end -3.65 -1.8475) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0cecf6e4-0ed1-494b-8202-11d954615e5d") - ) - (fp_line - (start -4.04375 -2.24125) - (end -4.04375 -1.45375) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d2263f77-9b13-4c51-810a-f966182c0bdc") - ) - (fp_line - (start -3.41 -2.345563) - (end -3.41 -1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ba93305f-f4d8-4d6d-946f-761becc900a3") - ) - (fp_line - (start -3.41 -2.345563) - (end -2.345563 -3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e3a32a03-623b-4017-810f-e2fd953287ab") - ) - (fp_line - (start -3.41 2.345563) - (end -3.41 1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f9e6e9d8-3c6f-47e7-b232-6f38a054ac74") - ) - (fp_line - (start -3.41 2.345563) - (end -2.345563 3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2a22139b-056a-4431-9e7b-72306e99b6c1") - ) - (fp_line - (start -2.345563 -3.41) - (end 3.41 -3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "86c6e830-ebdd-4f7a-bdff-93e0322b6824") - ) - (fp_line - (start -2.345563 3.41) - (end 3.41 3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d6617d81-a883-4e55-ae11-587071d6587b") - ) - (fp_line - (start 3.41 -3.41) - (end 3.41 -1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "acda3028-ceed-4704-949e-bd5de2831b93") - ) - (fp_line - (start 3.41 3.41) - (end 3.41 1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "64c28d4d-6d87-4c7f-94ae-85ce49a2785b") - ) - (fp_line - (start -4.7 -1.05) - (end -4.7 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f2800f91-8bca-4d5c-9ed6-df55d404b098") - ) - (fp_line - (start -4.7 1.05) - (end -3.55 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf96187b-2005-4c8b-abd6-48e5ea71f1b3") - ) - (fp_line - (start -3.55 -2.4) - (end -3.55 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "04efa6b6-df87-4953-8315-0cb48f187f4d") - ) - (fp_line - (start -3.55 -2.4) - (end -2.4 -3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b9d8bf19-f1c9-4fc6-b088-d20fd961e6dc") - ) - (fp_line - (start -3.55 -1.05) - (end -4.7 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d016184b-7993-4e67-8c44-95808feda68a") - ) - (fp_line - (start -3.55 1.05) - (end -3.55 2.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a4b5d702-39b3-4279-acb7-864613353b16") - ) - (fp_line - (start -3.55 2.4) - (end -2.4 3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7d616806-9c0f-4aea-9a7e-3de5a182670c") - ) - (fp_line - (start -2.4 -3.55) - (end 3.55 -3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e9ad1600-d6ac-4eec-84fb-60754ac5d578") - ) - (fp_line - (start -2.4 3.55) - (end 3.55 3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "45d15478-b164-404b-aa9a-35971580645f") - ) - (fp_line - (start 3.55 -3.55) - (end 3.55 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9880ed6f-e029-4796-9356-66a04bb464ea") - ) - (fp_line - (start 3.55 -1.05) - (end 4.7 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dba8ee9a-7610-4690-9086-4a65aee3b72d") - ) - (fp_line - (start 3.55 1.05) - (end 3.55 3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "032d4401-651d-4dae-acd9-a5897d69632d") - ) - (fp_line - (start 4.7 -1.05) - (end 4.7 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "35ec88c7-2b5f-495e-87c0-2a21703611f0") - ) - (fp_line - (start 4.7 1.05) - (end 3.55 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "fc9d2522-c6d1-4d32-a53c-76cbb6f14b17") - ) - (fp_line - (start -3.3 -2.3) - (end -3.3 2.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "bbd47c8b-50e3-464b-9b96-7c312166ba06") - ) - (fp_line - (start -3.3 -2.3) - (end -2.3 -3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "dc87f9d8-1495-4150-ab78-26ffa1e26ad5") - ) - (fp_line - (start -3.3 2.3) - (end -2.3 3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "2bfb5c5e-7ec0-47dd-a9b6-6d5a2a0c15c8") - ) - (fp_line - (start -2.704838 -1.33) - (end -2.074838 -1.33) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "f87fc1d0-5b84-4b49-841c-cc40ffa30095") - ) - (fp_line - (start -2.389838 -1.645) - (end -2.389838 -1.015) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "c91efb6c-373b-4478-a714-b133d104e2e8") - ) - (fp_line - (start -2.3 -3.3) - (end 3.3 -3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "477170b2-f94e-466f-97bf-5de28c44c152") - ) - (fp_line - (start -2.3 3.3) - (end 3.3 3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "280f2351-6b5c-4539-9a34-446a24aa7b68") - ) - (fp_line - (start 3.3 -3.3) - (end 3.3 3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "08932a9b-56a4-459c-882c-7111eaf8674a") - ) - (fp_circle - (center 0 0) - (end 3.15 0) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "824ab9a6-38b5-40b6-8805-d937cb8ad552") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a0453b90-a0c9-43cd-a87b-210dd218c2f2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -2.7 0) - (size 3.5 1.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.15625) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "013ac8a4-2e8e-4fda-a494-3a1db37e7fca") - ) - (pad "2" smd roundrect - (at 2.7 0) - (size 3.5 1.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.15625) - (net "GND") - (pintype "passive") - (uuid "81f433e7-867f-48fd-84d8-4eff9ad145e3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_6.3x7.7.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_QFP:LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm" - (layer "F.Cu") - (uuid "35059d9a-7553-4f0b-98a3-a470b2935ec7") - (at 169.5 62.52 -90) - (descr "LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf)") - (tags "LQFP QFP") - (property "Reference" "U8" - (at 0 -7.4 90) - (layer "F.SilkS") - (uuid "30838efa-757a-4464-a441-194e2679a5c7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "FT2232HL" - (at 0 7.4 90) - (layer "F.Fab") - (hide yes) - (uuid "47f052fe-3f48-44b7-9991-0df6d9acf35d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "821788ff-f0e9-49fe-b8dd-5291fa34e003") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "62d60d3a-7615-4f2c-baa4-13744a0fc9bd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "65d9c53a-3892-4c94-9a61-0f25de12e8ca") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "LQFP*10x10mm*P0.5mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/d1b9caea-74c5-4464-b810-6fbc52cf0d32") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "50" "49" "7" "8" "6" "14" "63" "62" "61" "2" "3" "13" "10" "4" - "9" "1" "5" "12" "11" "37" "15" "64" "25" "35" "20" "47" "31" "51" "42" - "56" "16" "17" "18" "19" "21" "22" "23" "24" "26" "27" "28" "29" "30" - "32" "33" "34" "38" "39" "40" "41" "43" "44" "45" "46" "48" "52" "53" - "54" "55" "57" "58" "59" "60" "36" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -5.11 5.11) - (end -5.11 4.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f70948ef-371b-4e53-8e0b-08a2adeb6506") - ) - (fp_line - (start -4.16 5.11) - (end -5.11 5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c22752fe-2368-4cb9-b804-5138a4840d2c") - ) - (fp_line - (start 5.11 5.11) - (end 4.16 5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ac66d53c-8251-4bf4-a212-28eaa09f3642") - ) - (fp_line - (start 5.11 4.16) - (end 5.11 5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a61cf6b8-4993-4b00-a375-6513a1676181") - ) - (fp_line - (start -5.11 -4.16) - (end -5.11 -5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eba0c97c-6d24-42dd-96d6-8b9c440e5395") - ) - (fp_line - (start -5.11 -5.11) - (end -4.16 -5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a7b6b6cb-0f22-448c-9574-afff3b345b18") - ) - (fp_line - (start 4.16 -5.11) - (end 5.11 -5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "96a9861e-894e-4f4d-96f7-e20f87bd98d5") - ) - (fp_line - (start 5.11 -5.11) - (end 5.11 -4.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "75950dc6-bcb1-47d6-a380-9e66399095b6") - ) - (fp_poly - (pts - (xy -5.75 -4.16) (xy -6.09 -4.63) (xy -5.41 -4.63) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "8c7df22f-0bb7-44f2-8389-6756868d0cdb") - ) - (fp_line - (start -4.15 6.7) - (end -4.15 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b2bab7a7-59ac-4da7-928a-64606339bcbf") - ) - (fp_line - (start 4.15 6.7) - (end -4.15 6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a0f429cc-8768-45cd-8b98-b1f8425a23ab") - ) - (fp_line - (start -5.25 5.25) - (end -5.25 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cd90c92d-9c1e-4cc0-bf5f-fef16b321451") - ) - (fp_line - (start -4.15 5.25) - (end -5.25 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "765535c7-4356-4620-8cd5-408dcdb4f7f3") - ) - (fp_line - (start 4.15 5.25) - (end 4.15 6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bae9058b-08b7-43d9-8453-44aa7878ae85") - ) - (fp_line - (start 5.25 5.25) - (end 4.15 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9810ba7f-be7d-4b42-a0a7-dd0055037889") - ) - (fp_line - (start -6.7 4.15) - (end -6.7 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1c4a690e-ab05-478c-a295-c7f6ecb67167") - ) - (fp_line - (start -5.25 4.15) - (end -6.7 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f08f8cdc-8927-4615-b73d-1e3bf359a1f0") - ) - (fp_line - (start 5.25 4.15) - (end 5.25 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ad0d3601-03cc-498a-8785-36a8c77366fe") - ) - (fp_line - (start 6.7 4.15) - (end 5.25 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "efe8fac2-d226-467b-87b6-38d4981fe428") - ) - (fp_line - (start -6.7 -4.15) - (end -5.25 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b7c11902-a273-457e-9d18-4146f1c69c10") - ) - (fp_line - (start -5.25 -4.15) - (end -5.25 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bcd2f846-9df8-49c7-9612-29a86f6a2529") - ) - (fp_line - (start 5.25 -4.15) - (end 6.7 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "38e1c255-874b-4f05-8f4c-04f315c3237a") - ) - (fp_line - (start 6.7 -4.15) - (end 6.7 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dfe343c1-0604-49b1-8790-3e182da98e02") - ) - (fp_line - (start -5.25 -5.25) - (end -4.15 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4071f45f-e475-44a0-9225-882f9fd8130b") - ) - (fp_line - (start -4.15 -5.25) - (end -4.15 -6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a309dd7f-0b30-412f-9808-946971437472") - ) - (fp_line - (start 4.15 -5.25) - (end 5.25 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2ccfe64b-5924-4b38-9680-575a974b9c5c") - ) - (fp_line - (start 5.25 -5.25) - (end 5.25 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "96524ba7-7cab-4c0b-a623-670beea7dd90") - ) - (fp_line - (start -4.15 -6.7) - (end 4.15 -6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "59d14a37-a929-488d-b2c8-cc9136489943") - ) - (fp_line - (start 4.15 -6.7) - (end 4.15 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7b2e0487-814c-4a2b-a868-645abd453b39") - ) - (fp_poly - (pts - (xy -4 -5) (xy 5 -5) (xy 5 5) (xy -5 5) (xy -5 -4) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a2748875-f6a4-41dc-ab96-b496ff0eed50") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "d10a15a7-84b3-4eaf-ab22-11cf0675fa9f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" smd roundrect - (at -2 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "db2d48d1-f177-4026-97ef-48cea6ac3573") - ) - (pad "" smd roundrect - (at -2 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "494a4020-7b57-4ed2-8a45-86afac25bfc5") - ) - (pad "" smd roundrect - (at -2 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e1e7becd-2672-4f3f-975e-2f69abeac23f") - ) - (pad "" smd roundrect - (at -2 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "2130ccfc-4b6d-4528-9573-d0c6b6449870") - ) - (pad "" smd roundrect - (at -2 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "0758b787-8f21-4176-a55e-484d0c0027aa") - ) - (pad "" smd roundrect - (at -1 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "6f48af39-b389-48e6-aa8b-4438a62d5784") - ) - (pad "" smd roundrect - (at -1 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "8d69aa02-fadf-4538-9a13-339dc98583ab") - ) - (pad "" smd roundrect - (at -1 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "accd75ce-80d2-4d46-b034-34a5fb9182f2") - ) - (pad "" smd roundrect - (at -1 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "a36141ae-4b59-41dd-ba6f-da8fb87524f3") - ) - (pad "" smd roundrect - (at -1 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "046cafad-81a0-4378-8421-06834afb23d9") - ) - (pad "" smd roundrect - (at 0 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3d1a3435-185e-4a8c-94e7-9e05ebdc4fb4") - ) - (pad "" smd roundrect - (at 0 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "2078a1db-7144-4761-ae0d-3f1245837683") - ) - (pad "" smd roundrect - (at 0 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "1fe1bcd9-d2ef-4367-b616-fb5e093f0da8") - ) - (pad "" smd roundrect - (at 0 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "ad276b9c-207d-43e5-967f-db34d9a4e3c6") - ) - (pad "" smd roundrect - (at 0 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "b674240b-f422-45f0-841c-480f52306cb6") - ) - (pad "" smd roundrect - (at 1 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "88d38414-51f4-4fce-8f84-e78e4be2b0af") - ) - (pad "" smd roundrect - (at 1 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e626a7f1-8e3a-4b30-9d4f-b638baa4eac4") - ) - (pad "" smd roundrect - (at 1 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e28f5301-c416-4a07-87d5-55ab55640510") - ) - (pad "" smd roundrect - (at 1 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "675804a1-6a0d-4490-889b-002c852012dd") - ) - (pad "" smd roundrect - (at 1 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3ea5c9f7-f4b7-4bf7-aade-9338437d11ee") - ) - (pad "" smd roundrect - (at 2 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "6cfde6e7-97fa-4895-9d88-e74bb834c096") - ) - (pad "" smd roundrect - (at 2 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e7799405-36a5-4c90-93e3-adebe10affe0") - ) - (pad "" smd roundrect - (at 2 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "85198cc0-419e-443f-a546-710c1aa38fd2") - ) - (pad "" smd roundrect - (at 2 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "77a318fd-e776-4805-afc1-07b86c02a179") - ) - (pad "" smd roundrect - (at 2 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "311080df-3326-4fca-b905-0e8c28df18f1") - ) - (pad "1" smd roundrect - (at -5.675 -3.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_1") - (pintype "power_in") - (uuid "5eae1ad3-99d4-4498-b1c7-3fb1b15c4b38") - ) - (pad "2" smd roundrect - (at -5.675 -3.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCI)") - (pinfunction "OSCI_2") - (pintype "input") - (uuid "ea67379a-d447-4e46-97e1-680e7c7299cd") - ) - (pad "3" smd roundrect - (at -5.675 -2.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCO)") - (pinfunction "OSCO_3") - (pintype "output") - (uuid "f3c1a7b2-4fe9-4e2a-a73f-ce4ca9034eee") - ) - (pad "4" smd roundrect - (at -5.675 -2.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPHY)") - (pinfunction "VPHY_4") - (pintype "power_in") - (uuid "1424f044-e510-405d-945c-bfc5a0ff0cfb") - ) - (pad "5" smd roundrect - (at -5.675 -1.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_5") - (pintype "power_in") - (uuid "47314542-a9fb-4384-bb51-2d7be918d0ee") - ) - (pad "6" smd roundrect - (at -5.675 -1.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-REF)") - (pinfunction "REF_6") - (pintype "output") - (uuid "2412c42b-d586-469f-a17c-0aa8ce45a1fd") - ) - (pad "7" smd roundrect - (at -5.675 -0.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DN") - (pinfunction "DM_7") - (pintype "bidirectional") - (uuid "75d7b157-297a-4bbf-8014-4ea787226711") - ) - (pad "8" smd roundrect - (at -5.675 -0.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DP") - (pinfunction "DP_8") - (pintype "bidirectional") - (uuid "d26bf912-0e95-4b0a-ade9-6c741b4f5c4b") - ) - (pad "9" smd roundrect - (at -5.675 0.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPLL)") - (pinfunction "VPLL_9") - (pintype "input") - (uuid "7f40ca0f-5a05-4bff-b1e9-7e0a96acdaee") - ) - (pad "10" smd roundrect - (at -5.675 0.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "AGND_10") - (pintype "power_in") - (uuid "e512c402-b7e5-45cc-b0a2-e3d3ce5df9a5") - ) - (pad "11" smd roundrect - (at -5.675 1.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_11") - (pintype "power_in") - (uuid "3526c6d2-b302-45e7-9f65-cb3ece364bed") - ) - (pad "12" smd roundrect - (at -5.675 1.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VCORE_12") - (pintype "power_in") - (uuid "a65f9645-8c38-4825-a3ed-2f07624059ef") - ) - (pad "13" smd roundrect - (at -5.675 2.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "TEST_13") - (pintype "input") - (uuid "a2d568c6-8d25-46d8-8120-10543b56edcf") - ) - (pad "14" smd roundrect - (at -5.675 2.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-~{RESET})") - (pinfunction "~{RESET}_14") - (pintype "input") - (uuid "ad8c8962-a82c-4225-85b2-c5186b8e1bdc") - ) - (pad "15" smd roundrect - (at -5.675 3.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_15") - (pintype "power_in") - (uuid "2f519dbb-31a1-49fa-9eed-f55ae3905dce") - ) - (pad "16" smd roundrect - (at -5.675 3.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_SCK") - (pinfunction "ADBUS0_16") - (pintype "bidirectional") - (uuid "f9624793-2b96-4d79-a081-4b3657132c04") - ) - (pad "17" smd roundrect - (at -3.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MOSI") - (pinfunction "ADBUS1_17") - (pintype "bidirectional") - (uuid "e5fa158d-00f7-4a46-a480-c31a415a57c5") - ) - (pad "18" smd roundrect - (at -3.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MISO") - (pinfunction "ADBUS2_18") - (pintype "bidirectional") - (uuid "96f55f0f-441f-4e0f-9dfd-bdbecb709a62") - ) - (pad "19" smd roundrect - (at -2.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_CS") - (pinfunction "ADBUS3_19") - (pintype "bidirectional") - (uuid "0cfb1455-3a78-4822-9354-11d40f55004c") - ) - (pad "20" smd roundrect - (at -2.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_20") - (pintype "power_in") - (uuid "9d7e933c-803f-4d7e-9c80-44c3637c191f") - ) - (pad "21" smd roundrect - (at -1.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS4-Pad21)") - (pinfunction "ADBUS4_21") - (pintype "bidirectional+no_connect") - (uuid "c098ed01-62cd-46a4-a96b-eddc862dabe0") - ) - (pad "22" smd roundrect - (at -1.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS5-Pad22)") - (pinfunction "ADBUS5_22") - (pintype "bidirectional+no_connect") - (uuid "e20c2302-6773-4e11-a980-8052a121bab0") - ) - (pad "23" smd roundrect - (at -0.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS6-Pad23)") - (pinfunction "ADBUS6_23") - (pintype "bidirectional+no_connect") - (uuid "63f45bd9-5dd2-4fec-95e2-e5d904496cf4") - ) - (pad "24" smd roundrect - (at -0.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS7-Pad24)") - (pinfunction "ADBUS7_24") - (pintype "bidirectional+no_connect") - (uuid "6bb8f5cd-8686-46ec-a6f0-1e22372db591") - ) - (pad "25" smd roundrect - (at 0.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_25") - (pintype "power_in") - (uuid "704f673c-6ea2-4a91-95a3-ae253b73a8c8") - ) - (pad "26" smd roundrect - (at 0.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CRESET") - (pinfunction "ACBUS0_26") - (pintype "bidirectional") - (uuid "b06013f6-645a-4d8f-b71a-86a3de218db4") - ) - (pad "27" smd roundrect - (at 1.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CDONE") - (pinfunction "ACBUS1_27") - (pintype "bidirectional") - (uuid "75e0438b-7c41-488f-99d7-874cf04265d8") - ) - (pad "28" smd roundrect - (at 1.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS2-Pad28)") - (pinfunction "ACBUS2_28") - (pintype "bidirectional+no_connect") - (uuid "c252acb7-00b3-4539-a4eb-47c28f3d502c") - ) - (pad "29" smd roundrect - (at 2.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS3-Pad29)") - (pinfunction "ACBUS3_29") - (pintype "bidirectional+no_connect") - (uuid "bc63f175-85ec-4d53-b9bf-0f9906a5c417") - ) - (pad "30" smd roundrect - (at 2.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS4-Pad30)") - (pinfunction "ACBUS4_30") - (pintype "bidirectional+no_connect") - (uuid "0fbefe0d-70ab-424e-be33-ac45a8d777d6") - ) - (pad "31" smd roundrect - (at 3.25 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_31") - (pintype "power_in") - (uuid "e2aead27-d938-4ff5-8abf-255df18d01f8") - ) - (pad "32" smd roundrect - (at 3.75 5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS5-Pad32)") - (pinfunction "ACBUS5_32") - (pintype "bidirectional+no_connect") - (uuid "19d5d717-df9b-41d8-8f55-a4fc8d914f7c") - ) - (pad "33" smd roundrect - (at 5.675 3.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS6-Pad33)") - (pinfunction "ACBUS6_33") - (pintype "bidirectional+no_connect") - (uuid "047e83e3-ce77-4cc0-968e-5752114e107b") - ) - (pad "34" smd roundrect - (at 5.675 3.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS7-Pad34)") - (pinfunction "ACBUS7_34") - (pintype "bidirectional+no_connect") - (uuid "f2087f21-7250-42fc-a3c6-34b4a7ed328f") - ) - (pad "35" smd roundrect - (at 5.675 2.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_35") - (pintype "power_in") - (uuid "f0745073-8dd7-4c0b-bebd-d87bb63c0f4f") - ) - (pad "36" smd roundrect - (at 5.675 2.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-~{SUSPEND}-Pad36)") - (pinfunction "~{SUSPEND}_36") - (pintype "output+no_connect") - (uuid "0824d93b-4805-43b3-ba0c-ab980af95bf7") - ) - (pad "37" smd roundrect - (at 5.675 1.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VCORE_37") - (pintype "power_in") - (uuid "e742f856-a3b5-4067-8e17-93dd669e5bc1") - ) - (pad "38" smd roundrect - (at 5.675 1.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_TXD") - (pinfunction "BDBUS0_38") - (pintype "bidirectional") - (uuid "011454c6-3262-4058-ba35-eabbf57bcbd5") - ) - (pad "39" smd roundrect - (at 5.675 0.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_RXD") - (pinfunction "BDBUS1_39") - (pintype "bidirectional") - (uuid "050375a3-21a5-4add-b1b6-9d2d1e9a5422") - ) - (pad "40" smd roundrect - (at 5.675 0.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS2-Pad40)") - (pinfunction "BDBUS2_40") - (pintype "bidirectional+no_connect") - (uuid "8f5ab02d-9fdf-4acd-a6ff-9c4e94879e0e") - ) - (pad "41" smd roundrect - (at 5.675 -0.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS3-Pad41)") - (pinfunction "BDBUS3_41") - (pintype "bidirectional+no_connect") - (uuid "d6ac19f6-3687-4a3e-be7c-63d819afa9ca") - ) - (pad "42" smd roundrect - (at 5.675 -0.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_42") - (pintype "power_in") - (uuid "1e206977-7932-48a9-8afc-8e18efbd6f63") - ) - (pad "43" smd roundrect - (at 5.675 -1.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS4-Pad43)") - (pinfunction "BDBUS4_43") - (pintype "bidirectional+no_connect") - (uuid "2096a2e2-74b2-414d-a517-1dad63138e14") - ) - (pad "44" smd roundrect - (at 5.675 -1.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS5-Pad44)") - (pinfunction "BDBUS5_44") - (pintype "bidirectional+no_connect") - (uuid "56837aa5-e9b5-4e2e-bac6-6ae53b1609e2") - ) - (pad "45" smd roundrect - (at 5.675 -2.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS6-Pad45)") - (pinfunction "BDBUS6_45") - (pintype "bidirectional+no_connect") - (uuid "b990df6f-008d-4e1e-9ff7-3d3f8de0974b") - ) - (pad "46" smd roundrect - (at 5.675 -2.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS7-Pad46)") - (pinfunction "BDBUS7_46") - (pintype "bidirectional+no_connect") - (uuid "7d575942-8312-43ce-a5fa-9883915bdc43") - ) - (pad "47" smd roundrect - (at 5.675 -3.25 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_47") - (pintype "power_in") - (uuid "0095e02a-a119-4574-a535-a6b7ca84727e") - ) - (pad "48" smd roundrect - (at 5.675 -3.75 270) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS0-Pad48)") - (pinfunction "BCBUS0_48") - (pintype "bidirectional+no_connect") - (uuid "28f5c814-50de-4260-b073-b361a32f2ea5") - ) - (pad "49" smd roundrect - (at 3.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VREGOUT_49") - (pintype "power_out") - (uuid "da533a94-9006-4d7d-a5f5-05c29e5feb26") - ) - (pad "50" smd roundrect - (at 3.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VREGIN_50") - (pintype "power_in") - (uuid "255d245c-f418-4552-988b-c09c6ef140a1") - ) - (pad "51" smd roundrect - (at 2.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_51") - (pintype "power_in") - (uuid "cfcfb5ca-1c9a-4827-a437-0c3164042457") - ) - (pad "52" smd roundrect - (at 2.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS1-Pad52)") - (pinfunction "BCBUS1_52") - (pintype "bidirectional+no_connect") - (uuid "b9709352-0887-44d9-894f-a7bff72f5188") - ) - (pad "53" smd roundrect - (at 1.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS2-Pad53)") - (pinfunction "BCBUS2_53") - (pintype "bidirectional+no_connect") - (uuid "a82db837-f2f3-4e5a-8609-21fa58724fc7") - ) - (pad "54" smd roundrect - (at 1.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS3-Pad54)") - (pinfunction "BCBUS3_54") - (pintype "bidirectional+no_connect") - (uuid "4a882d93-ea9a-4c5e-ab58-72ba59066a78") - ) - (pad "55" smd roundrect - (at 0.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS4-Pad55)") - (pinfunction "BCBUS4_55") - (pintype "bidirectional+no_connect") - (uuid "21dda8d3-e210-49f0-bfb7-fb0f299043e8") - ) - (pad "56" smd roundrect - (at 0.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_56") - (pintype "power_in") - (uuid "2f700c1e-110f-4c8d-89a8-7848a33f2128") - ) - (pad "57" smd roundrect - (at -0.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS5-Pad57)") - (pinfunction "BCBUS5_57") - (pintype "bidirectional+no_connect") - (uuid "63ca6b38-6398-438a-9b28-bf5a1bd4cafc") - ) - (pad "58" smd roundrect - (at -0.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS6-Pad58)") - (pinfunction "BCBUS6_58") - (pintype "bidirectional+no_connect") - (uuid "072d641f-ad43-404e-b44c-afc7487a0739") - ) - (pad "59" smd roundrect - (at -1.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS7-Pad59)") - (pinfunction "BCBUS7_59") - (pintype "bidirectional+no_connect") - (uuid "2e81fa94-bbdf-4609-8543-8c808dad1973") - ) - (pad "60" smd roundrect - (at -1.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-~{PWREN}-Pad60)") - (pinfunction "~{PWREN}_60") - (pintype "output+no_connect") - (uuid "6cf70cfc-0a97-47c4-989e-bbb5532fa5bd") - ) - (pad "61" smd roundrect - (at -2.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_DATA") - (pinfunction "EEDATA_61") - (pintype "bidirectional") - (uuid "4647de6d-90c2-4d5c-bae2-33e9199b68d5") - ) - (pad "62" smd roundrect - (at -2.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CLK") - (pinfunction "EECLK_62") - (pintype "output") - (uuid "4160e4ce-5cc7-430b-9d2b-433ff876a9b5") - ) - (pad "63" smd roundrect - (at -3.25 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CS") - (pinfunction "EECS_63") - (pintype "output") - (uuid "21c9140d-ed56-4ac8-b679-0980e09350be") - ) - (pad "64" smd roundrect - (at -3.75 -5.675 270) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VCORE_64") - (pintype "power_in") - (uuid "a2c5ebce-88e6-4b8c-80f6-b9346ae5c1a5") - ) - (pad "65" smd rect - (at 0 0 270) - (size 5 5) - (property pad_prop_heatsink) - (layers "F.Cu" "F.Mask") - (zone_connect 2) - (uuid "45d7604a-0471-4ad2-9d25-bf294f02ad56") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "3ab67f65-3050-46c2-b90a-0f315fd4b540") - (at 132.6325 62.7 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C53" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "94c6f7b9-9002-4133-afab-00b0ea38b9e6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "de7c0d36-b10c-4cba-9bb2-eb751bbc8ee5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c869d48a-a563-4e9c-a880-b2a6067bcd49") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b862b111-94f0-4513-9a50-a82749ed5476") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "8ebdbebc-3960-4ac0-b79f-870ec15e580a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "691baae2-f3fa-43db-85e4-4ac21060a2ee") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f5ab0080-ad0c-4d98-be07-faef5babc996") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/486c8abb-72e7-4ccc-8cb5-14ff7c4e50c0") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b31c22dd-1f3a-44ea-9d40-c8a7a51e5134") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c4f871be-9bf4-414a-9c60-0a2e5f5fe774") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "196b01d3-dd10-48e3-ab74-7adae5dd3fb6") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a19a806f-362e-41df-825e-472c4cbb1981") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "26dd6081-eb7c-4a5c-a9fc-22a5ffbd6274") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pintype "passive") - (uuid "563672e9-0b42-47fe-89a6-2ae385a1433c") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "45d38fb7-0ca9-4697-abb5-ee68c319b736") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "3f528407-f3e0-415d-a5ea-d1295dcc01f2") - (at 182.2875 78.15) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C32" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "1d1d2b54-2322-41b3-8cc6-310168aecf86") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ae0c8b2b-c47d-4737-8855-143175585d6e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8aa7612f-7efd-49b9-a26f-da6939b8bdc1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2c3a438b-b631-4be5-b222-cccd74b8cca0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "989eb90f-72cf-4cf8-8b80-092ffc684a22") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0a973edc-3066-476b-a72f-62e8f347ec31") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3cdfc440-f51a-4a06-b568-8a23d0a43d79") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c136e02e-260c-444e-bce9-b2e169355f5f") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a664da84-2c50-4b3d-94f0-0032f8eb8d1c") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fd04d58e-6aff-46a3-a856-272c8de40a05") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "950735a2-4c29-4a05-a556-37b5fa1d11f8") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "7d110a96-6709-4e4c-9ae5-a1c06d710406") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "364f7dd0-13d7-4b08-98f4-28d873c1a451") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "f94908dd-1e2f-4f7b-9f87-f9772e37f312") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "c3599d7b-36c0-4ef9-b596-92a551f294e4") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "488053ea-d4b9-4bf2-ba90-07030fd93991") - (at 163.63 83.5975 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C61" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "1233cd6e-488f-4b0e-b2c3-38b1b69484e6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "d606593f-6596-4584-81be-ddd571e2c201") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "726f6501-eec3-41b7-9cfe-9bd467ec8994") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "0634b7b0-e7b7-4e0b-9098-679e9d8e307a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "ad4c8325-c7e9-4bb0-8507-44b50772fe0c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "bf7c943b-e76e-4f49-9f7c-18e1c497aa7e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "98df5496-524e-47bd-a6d8-bab3e82facb1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c5268b31-2e44-42b1-992f-9ddda8eb7aba") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b546ac9e-f595-49fd-b45d-111a415500c0") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "888edef8-390e-47c5-8787-d6375c52ed09") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "c3d046dd-39ef-4460-9f43-f647cb084c99") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "d70e710e-4e46-41da-9cb7-87468a1cd649") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "17904a0b-fa2b-41c3-aa5d-534743dc9be1") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "097349a9-b87c-4854-8f2b-4a5cbb016678") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "4a45a937-d131-47f4-b575-d6acc1a7fd14") - (at 130.54 81.035 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C56" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "07a8d50d-a3da-4d50-969e-0d653f996ae2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "e8e8cf0a-9749-45f5-ac45-1d8f3d9d6248") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "9350ce8c-e6dc-44ab-856c-7c95bb9d8f17") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "f56aa524-a6d2-4569-97c7-cd00b1410191") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "c4864094-17df-44e8-9517-197d1fec6593") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5fee8ea5-cdf2-4226-aa22-a9405b2a64ea") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e1e28b18-a1a1-4624-b0b1-57d7fa279c68") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/799dac55-4653-4856-af6e-ddab4a32162e") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d4950416-ef83-4687-a942-47dc22945fa9") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62a7b8a7-ba20-4794-bd10-0ba02a7206ba") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "283a82eb-b998-4b90-9541-2914aa13852d") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a6ac314a-ff33-4a59-a6b9-2fc0d82fa555") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "320c06d5-f870-4d64-adb1-591d25f84fd8") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 90) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "602e469f-7e34-44ac-b1b6-234b107ad925") - ) - (pad "2" smd roundrect - (at 0.8625 0 90) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2a9cc8b5-68a8-4a77-98ab-6db00489cbc7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (layer "F.Cu") - (uuid "4ff03b1a-6b5b-484f-ba3d-bff2199e4a2e") - (at 164.115 46.06 -90) - (descr "SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf)") - (tags "SOIC SO") - (property "Reference" "U5" - (at 0 -6.1 90) - (layer "F.SilkS") - (uuid "4b047a4d-210c-48d3-8063-4e3d1248a654") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "ADUM4160" - (at 0 6.1 90) - (layer "F.Fab") - (uuid "95c13ff2-b816-40f8-aed3-19de870a597b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "94b59f02-7189-42a0-ba74-254a8fa73964") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "2d0391c5-bda9-4124-8f16-0f6f614b876e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "8ee52761-4dcb-4862-9f8b-27b611275389") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOIC*7.5x10.3mm*P1.27mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/ff0840fa-64d2-4c4f-a5f2-0a6f744a930a") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "3" "7" "6" "4" "5" "2" "1" "8" "16" "9" "15" "14" "12" "10" "11" - "13" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -3.86 5.26) - (end -3.86 5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2dab0359-8948-4075-bb05-61ca596c748e") - ) - (fp_line - (start 3.86 5.26) - (end -3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eff0a01f-0a93-4a59-9d2c-ee22337dddd9") - ) - (fp_line - (start 3.86 5.005) - (end 3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e5491438-d61e-46b9-b097-98f5a5b6ab17") - ) - (fp_line - (start -3.86 -5.005) - (end -3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "676b89e4-5b97-4d37-afdf-cae22a8abaa4") - ) - (fp_line - (start -3.86 -5.26) - (end 3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "47309a08-da81-425a-91e3-752927c3d7b8") - ) - (fp_line - (start 3.86 -5.26) - (end 3.86 -5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ae9582e2-e4a4-4604-9910-4cd17a1fb5a2") - ) - (fp_poly - (pts - (xy -4.65 -5.01) (xy -4.99 -5.48) (xy -4.31 -5.48) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "7bcfbbf7-b808-4961-8cf9-433b53a92100") - ) - (fp_line - (start -4 5.4) - (end -4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "726ef55d-aa22-44f7-99be-d5434ea34ea5") - ) - (fp_line - (start 4 5.4) - (end -4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "497c6035-c613-40c2-9ee8-345a3ab79eb3") - ) - (fp_line - (start -5.93 5) - (end -5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a6730c27-3381-40b7-9630-af866b9f7590") - ) - (fp_line - (start -4 5) - (end -5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e87a6f04-ed30-4e96-befd-fa4de0a2a119") - ) - (fp_line - (start 4 5) - (end 4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d171f013-3f0b-4458-bbd3-4669c1f24a9a") - ) - (fp_line - (start 5.93 5) - (end 4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4a8a0b00-32d3-4eba-8704-6539789109ba") - ) - (fp_line - (start -5.93 -5) - (end -4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9285d1e0-4f4c-46c4-94b8-b5511371a962") - ) - (fp_line - (start -4 -5) - (end -4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bda7ef33-3ce0-497d-a43a-95bf07a6c2f8") - ) - (fp_line - (start 4 -5) - (end 5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d54105d6-7896-4b62-b67e-2ed700a6a312") - ) - (fp_line - (start 5.93 -5) - (end 5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6c2487c7-ce51-4c5c-bf0b-c51116b1083e") - ) - (fp_line - (start -4 -5.4) - (end 4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a49c8de6-3a4b-4799-8263-d38dca3d7486") - ) - (fp_line - (start 4 -5.4) - (end 4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "61598a95-047a-42a8-899e-913e793a540b") - ) - (fp_poly - (pts - (xy -2.75 -5.15) (xy 3.75 -5.15) (xy 3.75 5.15) (xy -3.75 5.15) (xy -3.75 -4.15) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ef123b81-fc80-4cfe-8914-377bf5681bec") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "8776e08b-40db-4ac5-b505-963f50b15c16") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS1_1") - (pintype "power_in") - (uuid "00dbc59e-ec47-4df6-a726-39334c923fea") - ) - (pad "2" smd roundrect - (at -4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_2") - (pintype "power_in") - (uuid "6ea59f75-7f35-4b01-840f-3dd3d761fdbf") - ) - (pad "3" smd roundrect - (at -4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "VDD1_3") - (pintype "power_in") - (uuid "805a4c48-8ccb-4721-b3dd-e9ff2616c222") - ) - (pad "4" smd roundrect - (at -4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "PDEN_4") - (pintype "input") - (uuid "5cda192c-002e-4a49-a45b-49c172e49f80") - ) - (pad "5" smd roundrect - (at -4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "SPU_5") - (pintype "input") - (uuid "96b9e2fc-e7b9-4ba9-bb11-d5bdf167b1d9") - ) - (pad "6" smd roundrect - (at -4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDN") - (pinfunction "UD-_6") - (pintype "bidirectional") - (uuid "a7341022-865d-4482-9953-402a3590bbab") - ) - (pad "7" smd roundrect - (at -4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDP") - (pinfunction "UD+_7") - (pintype "bidirectional") - (uuid "b5f0a259-6940-400f-b89d-fdbb46c1a55c") - ) - (pad "8" smd roundrect - (at -4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_8") - (pintype "power_in") - (uuid "109204a4-48da-4623-9b7e-0aab41b8a9c4") - ) - (pad "9" smd roundrect - (at 4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND2_9") - (pintype "power_in") - (uuid "18d60504-6f0e-45bc-910d-738d089b1f9d") - ) - (pad "10" smd roundrect - (at 4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DP") - (pinfunction "DD+_10") - (pintype "bidirectional") - (uuid "e109c5ce-44a0-49a6-9b07-127257aa4373") - ) - (pad "11" smd roundrect - (at 4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DN") - (pinfunction "DD-_11") - (pintype "bidirectional") - (uuid "2f80fe3b-394f-4af1-aefe-4d21ba741819") - ) - (pad "12" smd roundrect - (at 4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "PIN_12") - (pintype "input") - (uuid "d7fc8278-2cd6-4baf-aa42-802309d2198f") - ) - (pad "13" smd roundrect - (at 4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "SPD_13") - (pintype "input") - (uuid "44435fa1-4bf7-45ec-8711-edda38d3ee3c") - ) - (pad "14" smd roundrect - (at 4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VDD2_14") - (pintype "power_in") - (uuid "2b42d223-b5a8-49bc-8948-5defe808b37a") - ) - (pad "15" smd roundrect - (at 4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND2_15") - (pintype "power_in") - (uuid "91382652-a62f-431b-987c-99f84ae5675d") - ) - (pad "16" smd roundrect - (at 4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VBUS2_16") - (pintype "power_in") - (uuid "79c15ca3-d24a-480a-8ed3-d3b16b3ee78b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16W_7.5x10.3mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "hardware:HANRUN_HR911105A" - (layer "F.Cu") - (uuid "521e335c-0864-4816-9cc9-3557aa04e0a9") - (at 117.9 57.35 90) - (property "Reference" "J2" - (at -3.18815 -12.50276 90) - (layer "F.SilkS") - (uuid "6b35bd3f-56f9-46d9-b223-fd79fe571fed") - (effects - (font - (size 1.607654 1.607654) - (thickness 0.15) - ) - ) - ) - (property "Value" "HR911105A" - (at -0.3 2.92 90) - (layer "F.Fab") - (uuid "0af39388-0215-4859-9ee7-dac6b2934c97") - (effects - (font - (size 1.605063 1.605063) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4448c7cb-1932-4a34-9dac-092bd0490ba6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4504b0f7-a72a-49bb-beb0-d58ebc8fe880") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "MF" "hanrun" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "91e8eb2c-12d9-42d4-be0b-c103ac204d5c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "PACKAGE" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "13497901-ad2d-46a1-b9af-c5783f4c1ea4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "PRICE" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "006e7bac-7994-4962-a520-bb3beaa92c6f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Package" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "452082cc-5893-4927-b5ec-e0f2dc471291") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Check_prices" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=eda" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "05ae92be-f086-4c02-bda6-b3d94fede90f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "STANDARD" "Manufacturer Recommendation" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "484bc848-798b-4ad0-9620-a822d14cd5e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "PARTREV" "A" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7861048c-871d-4361-9c16-3dad99daaa4c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "SnapEDA_Link" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=snap" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7fc0498d-9625-4c30-b794-1fbf2bdc6000") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "MP" "HR911105A" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "87bdc2ff-df13-435b-a5f7-fd389280ea66") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Price" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5b313edd-8c01-4e45-a9bd-25688deed5e2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Availability" "In Stock" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "66f5a8c4-1202-45c7-ad8f-c7b833a17b64") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "AVAILABILITY" "Unavailable" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9f6982c1-fe85-47ff-964e-e6422116dca6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/8f518aff-5efc-4392-8598-de9e0aaf1c56") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "6" "5" "3" "2" "4" "1" "8" "9" "10" "12" "11" "15" "16") - ) - ) - (attr through_hole) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 8 -10.92) - (end -8 -10.92) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "81b60a3c-ca8e-4483-99cd-7df598ec6777") - ) - (fp_line - (start 8 -10.92) - (end 8 1.5) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "75823637-9980-43a0-a565-21a3e8b23357") - ) - (fp_line - (start -8 -10.92) - (end -8 1.5) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "3132aaa5-867c-4751-a9c0-527c5ccf593c") - ) - (fp_line - (start 8 4.6) - (end 8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "1de4be88-9c51-4437-a091-a9bf63a96f31") - ) - (fp_line - (start -8 4.6) - (end -8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "8be05a5b-7b63-4279-8bd6-870bce58b21f") - ) - (fp_line - (start 8 10.48) - (end -8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "54c0e719-d78c-4fb0-9bb9-c7bba01ce1e7") - ) - (fp_circle - (center 9 6.3) - (end 9.15 6.3) - (stroke - (width 0.3) - (type solid) - ) - (fill no) - (layer "F.SilkS") - (uuid "1d9c1c9a-8076-432c-a81d-1682ae7ff7c2") - ) - (fp_line - (start 9.25 -11.17) - (end -9.25 -11.17) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "482fc930-e7da-4ad5-80fb-6b46084ab46e") - ) - (fp_line - (start -9.25 -11.17) - (end -9.25 10.73) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "68d8921c-c045-4620-8cb9-20294d50858d") - ) - (fp_line - (start 9.25 10.73) - (end 9.25 -11.17) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "46f0cd57-e9c1-4948-982a-848a4d9dde91") - ) - (fp_line - (start -9.25 10.73) - (end 9.25 10.73) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "57b0c5be-6ba7-47ea-a748-0a3394a240ef") - ) - (fp_line - (start 8 -10.92) - (end -8 -10.92) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "c91cf679-c8ac-447b-bfdc-4e322d2455f7") - ) - (fp_line - (start -8 -10.92) - (end -8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "5fa8ecd9-1609-49b5-abe1-dae36aeca4ad") - ) - (fp_line - (start 8 10.48) - (end 8 -10.92) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "5e175e43-1ad1-4fb2-bdc0-2efb98561b1b") - ) - (fp_line - (start -8 10.48) - (end 8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "eb960d75-47cc-4647-bde0-2c8915678f31") - ) - (fp_circle - (center 5.8 6.3) - (end 5.95 6.3) - (stroke - (width 0.3) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "283cda7f-d902-4cf0-b79e-60e92138e416") - ) - (pad "" np_thru_hole circle - (at -5.715 0 90) - (size 3.25 3.25) - (drill 3.25) - (layers "*.Cu" "*.Mask") - (uuid "ffc2d2f6-24b5-490b-9c40-d193a6f29c78") - ) - (pad "" np_thru_hole circle - (at 5.715 0 90) - (size 3.25 3.25) - (drill 3.25) - (layers "*.Cu" "*.Mask") - (uuid "bb852d8f-b598-4781-84b1-6173c5f42994") - ) - (pad "1" thru_hole rect - (at 4.45 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_TXP") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "ae24bcee-0964-46cc-ac77-f97ef13ff3da") - ) - (pad "2" thru_hole circle - (at 3.18 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_TXN") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "b1eb2d4f-e8a3-4dd5-aa17-7258093a2bcd") - ) - (pad "3" thru_hole circle - (at 1.91 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_RXP") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "448f1ef7-87dc-40a0-9872-e93185a90d02") - ) - (pad "4" thru_hole circle - (at 0.64 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "80635e10-5fcc-4f08-b0a3-0f25cf32d903") - ) - (pad "5" thru_hole circle - (at -0.63 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "908d949e-5eee-435e-9eb1-3943d5c04f8d") - ) - (pad "6" thru_hole circle - (at -1.9 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_RXN") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "ee2938b8-b995-42d7-9c97-b01482a5c02e") - ) - (pad "7" thru_hole circle - (at -3.17 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (solder_mask_margin 0.102) - (uuid "2c9f0157-5b1f-40b7-b4bf-57a663d827e4") - ) - (pad "8" thru_hole circle - (at -4.44 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "GND") - (pintype "power_in") - (solder_mask_margin 0.102) - (uuid "caaa692d-1682-4e4f-8cea-34b026097491") - ) - (pad "9" thru_hole circle - (at 6.625 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "Net-(J2-Pad9)") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "14a4b2ec-7590-4d76-be05-2c3871f4028d") - ) - (pad "10" thru_hole circle - (at 4.085 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/LED_LNK") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "f5169c4e-e83d-4942-8e69-aad8ec68d11f") - ) - (pad "11" thru_hole circle - (at -4.085 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/LED_ACT") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "9a882b9b-4d57-46e6-8153-6d77ee6b2da1") - ) - (pad "12" thru_hole circle - (at -6.625 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "Net-(J2-Pad12)") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "a6bf3dcd-db63-4bac-b5f0-b7d9bd514a1b") - ) - (pad "15" thru_hole circle - (at 7.745 3.05 90) - (size 2.445 2.445) - (drill 1.63) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "SHIELD_15") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "df12a71c-5eff-43ba-8111-fdc47150d598") - ) - (pad "16" thru_hole circle - (at -7.745 3.05 90) - (size 2.445 2.445) - (drill 1.63) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "SHIELD_16") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "343a55f3-9ede-4704-8018-84285e92ed61") - ) - (embedded_fonts no) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "530973c5-b0ff-4577-b434-91c6afcef4cd") - (at 127.5 69.3025 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R17" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "23e79e2c-c0a0-4d64-b160-0caf008da575") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1M" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "659c6a0a-2e7a-4a82-aa15-f51bd0e2c317") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ba625bd4-f199-48c8-be42-bf5865325f7f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "e39e00e4-cf2f-4b6e-85d2-ad81833f40b7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "2c1718f3-3599-4ec0-853d-5bbed678b342") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "06ae575a-80a2-4a81-8820-bb227cc4c59b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/898b0f99-8d06-4f04-99d2-0a5c3f3f25d0") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3172b5b7-7bd7-4961-9041-c4dd97805d36") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9f4e43dc-da35-4c6b-9cd4-ce5784a6f681") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "157f264a-1301-43fa-950b-24368921089b") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "bcf0e561-9727-4061-8529-23d26d6c8f5b") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "e4af14d3-5724-4e66-8f46-609b2f8b78fb") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_I") - (pinfunction "~_1") - (pintype "passive") - (uuid "3d6aab5c-b7f3-4ff6-a4d5-396bf9848f94") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_O") - (pinfunction "~_2") - (pintype "passive") - (uuid "4ac0b233-eb5e-4554-87a5-5d215f1ac976") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "53adbd27-e38f-408c-aa72-91c9085cc45c") - (at 135.14 81.365 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C43" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "eff0c79b-cba8-4acd-a4d4-75bc85ca43c9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "fa0af32e-9d7c-44e2-bb4d-f2a4c9201cf3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "01a2d74f-a0ff-4039-8b38-70112e2a2d96") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4f21a174-22cc-48d5-8dea-f58ac16dcd71") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d9a67ac2-b6c3-412f-8657-f7b5e1ec6bdd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b6c89282-ed7b-4b3d-a117-857ed4045765") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "902bc6bc-213f-43d4-8fa0-54582b4c059e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/1a586e8e-5eb2-46d2-a8b1-0287b1ce1c01") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6f93544c-1731-4a78-aa5c-c58bf61bfb95") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "779ca31d-c91a-42e8-900d-9d06851da9a8") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b78f1504-b6ed-4ffe-ab36-eb5ed5dcb604") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "56f71654-c903-46c0-af54-e819b566f631") - ) - (fp_text user "${REFERENCE}" - (at -0.0325 0 90) - (layer "F.Fab") - (uuid "25e73632-3d79-423f-8457-58c988071327") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "dbe5f659-9f2b-437f-85ae-d264a666bbbe") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "040201ab-81ac-4617-841a-7e8ea88b75bb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-583-8" - (placed yes) - (layer "F.Cu") - (uuid "586c6e68-cdfe-49ca-8117-968981fc91e1") - (at 184.7 62.76 -90) - (descr "https://www.ti.com/lit/ds/symlink/tps62933.pdf") - (tags "SOT-583-8") - (property "Reference" "U2" - (at 0 -2.2 270) - (unlocked yes) - (layer "F.SilkS") - (uuid "c64243b8-b612-4f0b-b6ca-09195c035369") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "TPS2116DRL" - (at 0 2.8 270) - (unlocked yes) - (layer "F.Fab") - (uuid "2f6a78a5-92cb-4e2d-a902-0a2373148647") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0cfeb2e3-0230-486a-b12d-3969affc81ba") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7b0880d4-adf5-4d50-b0bc-e63b82f967a8") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?5?3*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/37da5052-c537-4eaf-931c-04725a54b211") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "3" "4" "5" "6" "1" "7" "2" "8") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.65 1.16) - (end -0.65 1.16) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "93974e8e-773b-428c-bb50-cecc5c8746b6") - ) - (fp_line - (start 0.65 -1.16) - (end -0.4 -1.16) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5db605d3-510c-4791-b0d7-b899f11320fc") - ) - (fp_poly - (pts - (xy -0.76 -1.16) (xy -1.04 -1.16) (xy -0.76 -1.44) (xy -0.76 -1.16) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "4d2e1fd8-df8c-4aa6-b64c-4bf49d51b9ea") - ) - (fp_line - (start -1.32 1.3) - (end -1.32 -1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "d9e6d426-0a6d-4eb1-8dc3-fb013c538136") - ) - (fp_line - (start 1.32 1.3) - (end -1.32 1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "7acc8eed-23e8-4f90-bf52-11b5a0ecd251") - ) - (fp_line - (start -1.32 -1.3) - (end 1.32 -1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "936ef50f-c3e0-431e-8e79-3f21b09948e0") - ) - (fp_line - (start 1.32 -1.3) - (end 1.32 1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "687e12c7-16c4-4edf-bea5-6dfc06d1ebbb") - ) - (fp_line - (start -0.6 1.05) - (end 0.6 1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "fc426de8-ce22-41c1-8149-7ed678ea6934") - ) - (fp_line - (start -0.6 -0.75) - (end -0.6 1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "d4c21844-e502-431a-a377-ab6d5b593a8a") - ) - (fp_line - (start -0.3 -1.05) - (end -0.6 -0.75) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "1d56c46e-e23d-4058-955c-591f4bc467d3") - ) - (fp_line - (start 0.6 -1.05) - (end 0.6 1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "8e159aeb-43e3-4827-ab2e-c7af1bbcbdaa") - ) - (fp_line - (start 0.6 -1.05) - (end -0.3 -1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "13307562-e306-4bbb-bd81-3ea84e50ad9d") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (uuid "5d4b8b0e-6c49-48a9-8c73-7c597ddc6677") - (effects - (font - (size 0.5 0.5) - (thickness 0.075) - ) - ) - ) - (pad "1" smd roundrect - (at -0.74 -0.75 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "GND") - (pinfunction "GND_1") - (pintype "power_in") - (thermal_bridge_angle 45) - (uuid "d1c9f5ae-cc27-4582-b0dc-03a216a24a85") - ) - (pad "2" smd roundrect - (at -0.74 -0.25 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/3V3") - (pinfunction "VOUT_2") - (pintype "power_out") - (thermal_bridge_angle 45) - (uuid "d63f7b19-c6b3-4e26-8b67-ce5a593c05d8") - ) - (pad "3" smd roundrect - (at -0.74 0.25 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/GC_3V3") - (pinfunction "VIN1_3") - (pintype "power_in") - (thermal_bridge_angle 45) - (uuid "855a3b44-d479-486e-9bef-ce2677027912") - ) - (pad "4" smd roundrect - (at -0.74 0.75 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "Net-(U2-PR1)") - (pinfunction "PR1_4") - (pintype "input") - (thermal_bridge_angle 45) - (uuid "54dfb963-66ca-4eb2-b3dd-662e035fa312") - ) - (pad "5" smd roundrect - (at 0.74 0.75 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/GC_3V3") - (pinfunction "MODE_5") - (pintype "input") - (thermal_bridge_angle 45) - (uuid "16e95e8f-6682-46a6-bc2f-2247520744f2") - ) - (pad "6" smd roundrect - (at 0.74 0.25 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Usb Connector/USB_3V3") - (pinfunction "VIN2_6") - (pintype "power_in") - (thermal_bridge_angle 45) - (uuid "79e681ef-8f04-445b-abc8-8a3b7514f2a8") - ) - (pad "7" smd roundrect - (at 0.74 -0.25 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/3V3") - (pinfunction "VOUT_7") - (pintype "power_out") - (thermal_bridge_angle 45) - (uuid "4ebf12b2-13b1-415f-8dbc-f72eb43db2fd") - ) - (pad "8" smd roundrect - (at 0.74 -0.75 270) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/GC_ON") - (pinfunction "ST_8") - (pintype "open_collector") - (thermal_bridge_angle 45) - (uuid "ce2d9624-3dac-493e-b292-b8a5b3acce47") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-583-8.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "5c97a8e6-e149-4beb-b2ec-be108da5b4bc") - (at 182.2575 62.82) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C7" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "dbcfd571-2955-41b5-93ee-c9ba3c210fe5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "c9f975cc-5f06-4b99-bf96-196b253fa1b5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9170c44a-2517-4948-a690-fde4d6005d4c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "3f581d94-675e-454f-b513-02ff74e15d45") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "60d6f030-a6e4-4bef-bebf-ee0c9b88e28e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6664c3f8-8eba-43fe-aeb0-d735a073b832") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d4b066cf-7f66-4e8c-99d9-2101f87d7461") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/8f54c9f3-e53d-4118-884b-00d1cdd5d9be") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "85fbc9e4-0623-4cd2-8f8d-2429afa365e8") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f51ee647-8e1c-4113-b025-dfc2e3a1b8a1") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "e057ed89-e86b-4930-9c1c-0c4408172fe5") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a5c49b02-e080-46e2-8480-aee4b87134ce") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "e606db54-c18e-4f1e-83eb-2e6eb7b73d5d") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "72e2a970-9835-4273-a5b0-3becbf3c5f37") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "a1751dc3-0abb-4b42-8bb0-d81869f7e9ac") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "5e81f266-bfd4-4077-9203-e0c25e701577") - (at 129.8175 60.7) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C50" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "43ec681f-00e3-497b-8461-fd8107e08fcb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "f3b75f5e-9616-4a83-9ef3-c44a3832ee76") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2af4aa72-2d34-4db7-bc60-23765f6aa647") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ff1a38a4-2a96-4750-9ebb-24a716bbd906") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "2e72b3be-08c5-4661-8dbd-ce62219379d3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "bffd27ad-b3e0-4b0d-a670-2e49e87ca51d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "15a2434b-46e5-4f68-9f51-3769d0e302b6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/f90fe6ac-e8e3-4366-ad0c-21a6d851e853") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "135b731b-bce7-41e1-8248-7d89e95beec1") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d585b2f4-e93d-49aa-bfff-6ed7fbdd6136") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a5fe289d-4878-4e59-bb9a-839a950487a7") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "3dd2a3e4-e223-4344-ab56-22cb39ab07a9") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "1acd6e9f-408e-4391-b35f-417d367d01ce") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "e954d696-5932-4c27-be14-5bc07f283df4") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "42cf1aa9-efdd-4104-99b1-772dae269c6d") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "5ee539d8-2b2f-486c-aa29-484d053bbc18") - (at 177.08 54.18) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C25" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "75228834-5d5f-447d-ba61-235a738122c1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "18pF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "3c10b598-7545-44f0-a166-ad0b04be8e3d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a4ef6249-fd5e-4a1e-b4fa-adafd6eb8672") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "42b4b389-dd49-4483-bddf-d140dfda48e9") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "48a5d0e0-37fa-402e-9647-e6e4226aaf88") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9ae39416-c28b-4f50-bd75-a4951c7c0312") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f6864eed-0a85-4fc4-9598-dc65e5a509df") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/71b1b0ac-e62b-4c4c-8e59-42aad42b2606") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d955cf24-2c4b-4d53-8d33-f2176ebe0931") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4b30a475-0b37-49c7-bd4d-a51935707d46") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "fc643f20-e6e2-45a6-9d01-1925e2249ce9") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "dade0596-1714-41f8-8b62-aabb971dc680") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "d9201ad9-5950-4ee9-ba25-ffd1de846ba9") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCI)") - (pintype "passive") - (uuid "267e6054-8ddd-4870-b254-f833b88276cb") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "f8bf68a3-ad8b-4fd3-bdb9-fb24d4d1feca") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "623e4200-fd04-4a6c-89c8-6e2d26b86e4b") - (at 139.8025 79.0975 180) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C39" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "f927b61f-6f8e-48bf-84a2-bc0a1f4e4b61") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "4.7uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "9d11d353-10e1-4b6f-b8c5-1128fa27bdce") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "266d3467-b692-42f8-a094-7b267ec66bae") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7371a3d7-80ee-4c4a-940e-a7fc0d5c147a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "79d5b6dd-19cb-449c-ae91-86c9abf1bef9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a9c0df90-514f-487a-a441-ceec0bd76f77") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "24deb6fd-8137-4c49-a2e9-be4ca4df0247") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/bb67f8f2-1f89-4a5d-88e9-74c8d61d245d") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "85772e29-d045-46db-a316-1e49fc99e4a9") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3c78afde-0baf-42ad-85f4-43211e9f1bc2") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "460c701d-33cb-4f92-ab2b-78d5c775e932") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "40a4ff69-fe0f-4cd4-9a15-229756ed415c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "8310f508-1532-403b-ad99-ffdebc39c21b") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "ea61de9b-ab11-438c-a84e-12ae643ab576") - ) - (pad "2" smd roundrect - (at 0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2d7e84b5-2e10-4a84-910d-cb5ccba4c01a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "629711e3-87d9-4db0-9012-6a8cbdad1db7") - (at 205.9425 53.025 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C22" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "d6b43e8d-5e23-4fae-9aa7-2c02d80d8bf9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "0.1uF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "9e0f5fc9-c2a0-4aa5-98ba-79f16a28d68e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "469279d7-5859-40e1-a9e3-889eb1f0b1e2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "7556c4b7-fedb-440d-8650-e3963c85a54e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "f389554e-3924-4313-87e6-d0e0a3233c2b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f72c67c4-3e4b-48de-a4b0-855eeb9cfc4e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7fdfb5ac-1b2a-47dc-8c63-b2d9f6ced7e2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/26f94877-53fb-4e1b-9ef1-bc02520ab9aa") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ab2d906c-3a89-41b9-9ad5-e27a51c63437") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "395e80d5-70fd-4cc4-97b1-c7f3f1600b6c") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "4ae522ee-6597-4bf4-8705-63f8438c7074") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f56cab2e-7b15-4d62-ac3c-f10f051d1591") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "ecc70b6d-bce0-49c5-a8f8-f383cbe00977") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pintype "passive") - (uuid "64b5775e-f2c0-42ec-b393-6c3c656029b2") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "b20774da-2f2a-4b51-900b-1d5b79c3ba35") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "65bd00fa-60c2-4078-9001-f376c7e5bb5f") - (at 127.64 83.6975) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C51" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "a13706c9-7bbf-4af9-b55a-54f93c51010d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "5caf65cd-88b6-4821-bc63-a0db7cd4f784") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7f9eaa2c-849e-4e57-952f-2ac7e0f5e642") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "bdbdc848-b3f4-41bd-aa43-bf567d4543a0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4544f874-3c2e-4ed5-8e76-d1a59223445d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "090fb5d5-5bb4-4247-b1d6-4448dba9dcfc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "016f489d-586f-4057-914d-6ed79d300877") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/87c8bbff-7aad-43d6-9b68-36ac5beb18c2") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "031d788d-a90b-4833-b525-152c17a9d96d") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f5f664cb-1db5-4557-9aa0-e848c1bbb748") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c19be927-8773-4fbd-87ef-9c4466f10bb7") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "78e68869-4cf3-4ad1-a2c7-4664d1639b9e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "c31587c3-fc5f-4b8f-9cf4-0f4165f97c8c") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "b74ab4df-ba41-4894-bdc4-ce06f19c468d") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "1262f48b-de3d-43e1-9263-99eefc9a5329") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "68e2604f-248b-41cf-bcc8-c4599877f6b8") - (at 133.74 81.465 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C37" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "d32de583-1d83-4450-92d7-ef91ce3e4b2b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "186efd1a-235f-445e-b5fe-26c0342380a7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "fe2b91b2-d7e2-485b-aac3-058c998491f4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ef3e1629-74f2-4ca8-8b56-52f9dc2a9355") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "f3e9cd74-c59f-4cfb-b502-e44bfbb4c81c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c1df0e03-f08a-4792-a4d4-35a5f9931ff5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3e95a8a3-602e-4ab9-a06c-51df88214f28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/2654a7e3-3523-44af-99fa-0d7b07654129") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "290cf7eb-b0c6-4e81-b86e-1a2362eccc0d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "835d5d7f-44d5-45dc-b9c3-bd9958db3ce7") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b193bcdb-7033-4d2c-95b0-0507033b3a20") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ffc8d766-8379-44b1-996a-8af02af30449") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "a80a3e65-573a-412b-af21-83c3e3496755") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "ae3969fd-2b2d-4c9a-8178-8cda5ad1208f") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "bfac238e-42d5-4d92-93ac-fd349f6265f6") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "6c65f523-273a-4e34-a25b-808f20bd660b") - (at 135.14 79 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R13" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "215abfa1-9250-4a12-a71d-85a17abeeb53") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "b8b94f85-ca95-4100-82fc-04b55aad7812") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "437ab88a-aeae-4c0a-a30d-d309181ece22") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "694f4ba5-5981-498f-93aa-05fab2b88d92") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "7e693285-bf36-4c79-af29-92829bdf278e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "842b7967-9ffe-4f86-bf9f-e29c32384ed8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/5dd7b07d-4f90-45ca-9c8c-fbd5a40e7801") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ea298741-516d-4816-b1e1-eb08e2cea7d4") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2eb36eb0-050a-4ad7-8b79-2626fba4ea14") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "490fd39c-9953-4104-b953-5c03c154eba6") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0314fc94-5177-4d70-91df-e96f95443dc3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "c4aa8195-3e88-47ef-9f38-52cbe4bd59ee") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "~_1") - (pintype "passive") - (uuid "9fa52f17-ae15-433f-b2c3-3f5bb80c33db") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pinfunction "~_2") - (pintype "passive") - (uuid "6bac5041-b184-4b01-ab59-5d52751758e7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "6d1ed517-e2ff-474b-a5e2-c66235e6c0e6") - (at 149.3 41.425) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U4" - (at 0 -2.4 0) - (layer "F.SilkS") - (uuid "520154fc-491d-4d16-96a8-d088f0f20a10") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "AP2112K-3.3" - (at 0 2.4 0) - (layer "F.Fab") - (uuid "415a0477-b0c8-4031-a6a4-cba591ba8835") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "dbb993b6-9282-46ca-a036-a825c4f00b03") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "3ccf38c0-bd79-4d8f-960e-8b9f573c85b0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "3875b5c8-d66a-4217-9eb4-2be91761f695") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23?5*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/0394838e-c9f7-440c-8ab0-df38480a28e5") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "4" "5") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7c9c4933-348f-494d-8b56-d2138c0203d1") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e1d274f5-cc6a-4cde-b139-6c9dae6b209a") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ee63b0e6-e701-4110-bfbe-67c487932ca4") - ) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "539c2fed-895f-422f-9fc4-8cb1520f1b0e") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "992a8a10-d7ca-450f-b4aa-2a4c2540dfa6") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2ce48bf1-db2a-4bab-ab42-d461384ee13c") - ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "63fe66b5-082c-48cb-bdbd-a94560360262") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "f47a90d8-55cf-4819-bddf-194ecae1837c") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6ddf0ec0-db09-49df-adcf-b33689f3681f") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "70ed7c2d-ee19-4ce3-9ddf-547ffb7e0484") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dd0882b4-7cbe-4414-b350-12f2b08dd367") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cc61cc1c-43a2-402d-ac57-3b5673a0282e") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "42bcef50-5f5a-4973-a20f-babf3f125a99") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e83173a1-7710-48a9-ae1e-8de4172659a5") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ef656a16-775d-40fd-8076-9d27c6f6ce20") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "085a23cf-ed40-4935-841f-1816bd1ab13b") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6393a7d4-f109-4e41-ac51-b8c800be7fec") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "72a4aae2-2791-436c-a189-096dc541c3f4") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "23b82f20-3d71-4891-9273-a8a2238dcfb7") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b7807e77-c22d-4aa5-8fb4-353b6c4785a3") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "eba83466-7035-4c12-91f8-b057153c2a5f") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8166ce9b-72e5-4d53-a8c0-a2a1f42355ad") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "40ad2210-17a3-48ee-8e4e-8ae1365d5cb0") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "81e0f017-9ffc-478d-8d63-c536c3025a6d") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "7b526acd-e2de-4876-bc19-cb00b6254299") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "a93fd992-76f8-42dd-85f2-bd3b49c09442") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "82b92111-08c3-42a1-9dea-7e6ec3a9a0cc") - ) - (pad "2" smd roundrect - (at -1.1375 0) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "82049951-62c3-47af-b359-f2c9ee440e8b") - ) - (pad "3" smd roundrect - (at -1.1375 0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "EN_3") - (pintype "input") - (uuid "6fa91cdc-fca9-4115-964a-bbcb949af965") - ) - (pad "4" smd roundrect - (at 1.1375 0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U4-NC-Pad4)") - (pinfunction "NC_4") - (pintype "no_connect") - (uuid "7f6db9ca-e0ce-438b-8b6a-88f535cfcfc2") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "VOUT_5") - (pintype "power_out") - (uuid "6ccae78e-ac37-41e5-9b8b-ef23daaf9e8a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (layer "F.Cu") - (uuid "6d2c80b1-3aec-410c-9e53-f2717f904ddc") - (at 191.5825 63.53 180) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C9" - (at 0 -1.85 0) - (layer "F.SilkS") - (uuid "4e2ec4b8-3105-4ebc-a6f8-fcbdebe99077") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "22uF" - (at 0 1.85 0) - (layer "F.Fab") - (uuid "30405ecf-f9c7-4284-bc01-f5c17d482d1c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "1de4f5f7-cead-4067-be1a-1199058102c7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "db922612-8b48-4da9-b0e9-e5c8e72f2439") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "d0c32d74-0876-4df1-bc2f-7dbadf81576b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "2a899072-c69d-4167-9da2-bb578efa2274") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5c4e7819-9420-423e-ac0d-140e7ccca481") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/4958bf79-3bd3-40cb-921a-918c2513cac6") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.711252 0.91) - (end 0.711252 0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "49a51dcd-240d-4e5d-aaa6-7e411c37c36d") - ) - (fp_line - (start -0.711252 -0.91) - (end 0.711252 -0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1706fd82-e136-4b02-8481-607159087ca3") - ) - (fp_rect - (start -2.48 -1.15) - (end 2.48 1.15) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a4a0a0ee-5e6f-42cd-996f-1715f81248fe") - ) - (fp_rect - (start -1.6 -0.8) - (end 1.6 0.8) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "60022012-d1aa-41d9-8b9e-f6f49ba562f6") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "bec67791-9e75-41a5-9b3e-18cdaeebf8ca") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5625 0 180) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "GND") - (pintype "passive") - (uuid "5628dcca-5aa1-4081-9ee9-c268a52980d2") - ) - (pad "2" smd roundrect - (at 1.5625 0 180) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "/Power/3V3") - (pintype "passive") - (uuid "db728723-4a6a-4344-9bbb-6c564834aa5e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (layer "F.Cu") - (uuid "6fc75293-c30e-483f-ad7f-f6bf6624a805") - (at 183.38 68.6075 90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C10" - (at 0 -1.85 90) - (layer "F.SilkS") - (uuid "7283d097-d247-46c5-a0a4-c268819df2be") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "22uF" - (at 0 1.85 90) - (layer "F.Fab") - (uuid "1c89139a-b564-46d9-ba31-300c9d72d9ab") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "3a1af3e8-6d1f-48ec-bf54-67b36ad65e60") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "d98b8c4e-d35f-42f0-81e2-4de105591d06") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "fcb2dd4b-295f-447d-a2cd-8643cbf6b906") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "967dcc26-2067-46dd-ba18-58f74bd952b4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a8648f5c-b052-48dd-bad2-14cac79a4a36") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/061562c8-1c03-4562-a12a-753df40e89e5") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.711252 -0.91) - (end 0.711252 -0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c0f98569-cc26-4e86-ab26-b55ec0cf1dbc") - ) - (fp_line - (start -0.711252 0.91) - (end 0.711252 0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "66dad8df-8a34-48ca-8319-f7a469d5d4db") - ) - (fp_rect - (start -2.48 -1.15) - (end 2.48 1.15) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "e42d2756-1f88-4098-8f8a-c37d363cc107") - ) - (fp_rect - (start -1.6 -0.8) - (end 1.6 0.8) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "574ff217-ff61-488b-9996-fddab0880c32") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "1ea2c9e6-fdf0-40fb-a313-fe3c07f7962a") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5625 0 90) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "cf37c3f8-ee53-4cc1-93e0-079af1e13e00") - ) - (pad "2" smd roundrect - (at 1.5625 0 90) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "GND") - (pintype "passive") - (uuid "646a490b-b88a-4e19-ba14-ea96f0c3040a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "7438e2b7-73a3-4a47-be02-5913cc5de695") - (at 193.62 86.1425 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C28" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "def62922-7219-4d1d-83a9-97d305c15ada") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "82e8a62d-630a-4255-ab22-9ddcbc1c917e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "72aeaf98-0706-45dd-8931-7058d3630ea3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "da945cd4-203c-497c-bae5-7395dbbb0a5b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "0480645e-0977-425b-911a-854bccffccb7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e29f1265-594b-48cd-b5f3-1a2838964b06") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e2a88e8b-af75-4974-8567-3f7d0ab96b67") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/fefa453b-a56a-4d1e-9e90-e2119d111222") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9470a375-f7ba-42df-9727-ca4bfe3f2f32") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "71e06ea3-2496-4853-868b-2630807ebd73") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "68cc7a0b-52d8-4c64-b8dc-ff51fee6e109") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "4abef09a-cd93-4ebb-a320-767791995013") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "cd8370b6-0ab0-4bfc-b5e0-70982dfdf1de") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "c40a2965-1021-4b7d-8a98-66e29a503225") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPLL)") - (pintype "passive") - (uuid "27f7a09b-3e80-4127-b401-927d889f0047") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "75c0ce49-4e5b-4b8e-9461-a2b1163da311") - (at 158.2 41.16 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C18" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "4f5f0c16-ad89-48e6-9623-6cb6f6964cf8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "ce216181-5fee-4bb4-beff-e4297084567a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "672008dd-1a6b-4667-af0b-a5a7fb2e68da") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4495ccc1-9a73-4f70-9d88-10cc39f5d4ae") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "66c8f735-d072-4d01-90f6-3acd49330e23") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0ed4aac8-4d51-4fc1-bb30-83e0ccb81fae") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "110b3a60-a656-421b-a9e6-fe4cfda21c5f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/dd827515-66c6-49b7-bdf5-68265814dd48") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "71950bbc-ddd8-4a68-8b50-df1cb6329eae") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "5ed0057b-f43d-48fa-866f-84f32c7b431b") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "9b1ab91d-d106-43db-b1e8-7e76b90bc03c") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "56a29929-c366-499e-bfeb-b91d8fb7a5e2") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "35ed914c-86c4-4097-b936-c17df57b46f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "1c7044f4-d9d3-4453-8d06-d44ce8f2a1c3") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pintype "passive") - (uuid "c5dade5c-2231-468c-a99b-bb8d1d37bfab") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "7628a846-ea65-4cec-9002-6d9c0f4108df") - (at 128.5 68.0675 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C59" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "609f0362-e2a5-47c8-b873-5b5682cb2ae5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10pF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "8ec7bf36-f84a-4448-890c-432e7d3e2a1f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "63a8fda2-32ee-4878-8bd7-39c1845abd5d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "33fb0900-d965-47c2-bf59-7ff61990a598") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "8e8ee958-4a30-45b5-b344-396ffd2c9231") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e3ab0870-2f24-4029-b304-da3aa418558e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "102149c3-9edc-4b11-be21-6f166275a376") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/3d74239c-f05b-463f-9923-62e57271a748") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0b4d1f46-33a4-410e-9e41-91b8276b630d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ec2b0e24-2938-4abb-a7d9-63b12e115501") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a021b833-f943-4f1a-89ea-449268665dae") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f4504076-30cb-4af3-8a67-a1d45d44c5fd") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "174c3490-1b1b-4405-b667-b6a716a15b6a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_O") - (pintype "passive") - (uuid "83fd3974-9577-4375-b710-9edf34583413") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "31322488-3ca2-4748-9607-c7dfbe92ab41") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "7e8d105c-9c67-41e9-9db5-e4fdc991bfeb") - (at 184.2 46.3125 -90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R8" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "0ef0c512-5420-4681-9c7c-e7b53c63b674") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1M" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "c6374b3e-f158-4357-98ae-358cfc213c8d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "8d512f31-416f-4047-8a5a-c8d7438070bc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "e5deab54-cea4-4c90-a94e-066666dc9e19") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "4817d285-1ed6-40b6-8c79-8cafffaf2f2b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fde5ba80-77eb-4ccc-beed-93cf1810b26f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/28c94766-2630-4d68-bc34-7f94731bafd4") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.254724 0.5225) - (end 0.254724 0.5225) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "83816f3a-4f3e-4efd-83ba-39b412589de8") - ) - (fp_line - (start -0.254724 -0.5225) - (end 0.254724 -0.5225) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "494d9d1f-7805-4a74-b5e3-56c599752914") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "efc28274-732a-48d0-9218-98f2ec56c2ad") - ) - (fp_rect - (start -0.8 -0.4125) - (end 0.8 0.4125) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b35eb987-b74e-4fd1-b3bb-86b0e9d5ce17") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "f36d2064-250b-456a-a4ae-fdfc8b4c0aeb") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.9125 0 270) - (size 0.975 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "7fda4ea7-2be8-4401-bddd-ba4ac8702090") - ) - (pad "2" smd roundrect - (at 0.9125 0 270) - (size 0.975 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "31714dba-f7e2-420c-82c5-72d45779b1fb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "7f312c74-96a7-4289-9c95-b4f9291a170e") - (at 124.9025 68.3 180) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R15" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "bca0aec0-1aa8-4ecc-b0ef-834af7b9e9bc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "330" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "ec2f463b-dcf7-4ba8-ba5e-cf90b807a4c0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a89ba424-2b18-4b51-847b-5dfc232080f3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "3f94f317-5b24-4fbe-bbd7-a7398ca19b60") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "870fb649-97a8-4c1f-b1bb-4552d64b184c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c115c806-6b8d-4351-a3f9-1c307f834bf7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/491a3ca2-910b-44fb-9a75-16317be08099") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bffe7d3d-4da9-4ab4-89e8-887d725705ce") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "71a6b10b-513a-4868-835e-49c518a8aa43") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "84502127-71b9-4be1-bf22-10f3e8f4659c") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "6cc20de4-9d35-411c-a49d-889e35381a39") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "8cd96f05-7c41-48fa-88e5-834c429eb487") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "928385b9-c58a-49dd-b77f-544bfd9593f8") - ) - (pad "2" smd roundrect - (at 0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J2-Pad12)") - (pinfunction "~_2") - (pintype "passive") - (uuid "d899925f-c977-41a5-8b83-19a6499db383") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "80ab0590-af4b-4cb9-b111-6be526b55885") - (at 177.72 83.9875 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C27" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "967bdf37-83ff-4821-a7a5-a211c93ce865") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "01e2f372-ecdb-4730-be35-96c89795da4e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "604b9a34-2050-4a29-bfcd-5aa39ed75b52") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ddddd959-6e15-443e-ba86-d12e58d72b31") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "7fc60e36-8b6f-461a-96f8-47bb5b988b29") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f4f32f23-d12f-49d8-8b3a-5e127ad2848a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "19e8ed50-8f5a-41ea-87dc-2b354c66fad6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4ba1fb55-31b4-4fae-890d-32ed7ee02c28") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "728d515c-69b1-4644-b1af-058800415099") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "956b587b-004d-46ad-8eff-801493a7a3a5") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "2018f6fb-1245-466f-8a46-ea30f4c15d51") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "48587b31-42f6-41ea-bdf4-6b7949b91610") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "749c51f2-412d-4b5d-bea1-e5d9fba7f3e6") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "5ed5f6e3-ed60-46b6-9545-8dd824fd6448") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "5d8d3101-b61e-4b15-bfc1-8c82809bbe57") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "81ea70a0-e437-49db-83f1-cde0288b1148") - (at 136.8075 78.3975) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C44" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "f0531d99-5ca5-448b-8ca3-652b94aaf2ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "d2702429-0c2e-4049-8ce0-9573cc99358e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b678c5da-df7c-443a-82a2-08dd2b726831") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ad12a913-db91-466d-a089-07a8440f8853") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "d97909be-9b6a-4edb-9b09-e1c51a286fb8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "45f2cf21-bb91-403d-8141-4565e1c30031") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a66f1925-5ab4-42a6-b0e3-5d931d873d40") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/d1e24540-41c7-4c30-ba19-966c89396a11") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fc98525f-71cb-47f4-a23d-31bed0d696a6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f963c977-1f6e-4ebb-82b1-519ebf404b34") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d457a79e-55a4-4498-a278-5dc925294f5e") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0ce1a481-538d-480f-ac59-a21f5fef7d2c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "b87911b7-aaac-4dcd-b02b-2277fc68da1a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pintype "passive") - (uuid "4910aee7-1242-4dc3-af76-e16f9a0eac48") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d2221115-48f7-4f8d-a7e3-2c4a45407bd7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "821da867-56f7-4a36-86d4-e7da9c8c57d9") - (at 186.525 63.0225 -90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R5" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "aa02f449-3288-4dae-a8fe-4040c574a093") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "83a76322-fb2e-4bc8-9597-65bf760ffbcd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "e8875f2d-a97e-4ae7-9f0e-42b3cbcd264c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "e456ed84-23ac-4e7a-81f6-f39b93e021cc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "25469d4d-9e33-446c-9d36-7b4bd632b8c3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7a87772e-6076-48f0-9276-1005472faa38") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/d3f8a728-ecb0-4726-bcef-5f87406081d8") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fbdd5589-849f-42be-92cb-ed715d02a8ce") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b9def87f-569d-45a5-a31b-9694a121d2ee") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ceb3d98c-8cfe-45f0-8403-d0bb31f42963") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "991007c4-8128-4a88-a60a-35bc7a7fa8db") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "2914e7d6-d34e-4df3-80a6-802328cc9aad") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "677a30a0-36de-4148-b185-8cf83c5d68e6") - ) - (pad "2" smd roundrect - (at 0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/GC_ON") - (pinfunction "~_2") - (pintype "passive") - (uuid "74746c5b-cea6-4078-9c34-5ac08e32ff16") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "863f96cd-6abd-4268-a4b9-8a171cea15fc") - (at 174.1925 77.64) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C30" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "e8e50628-5854-4046-8820-2098b14741be") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "17844d92-c073-490d-b7e7-3728d8057a00") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "797aa1a8-5a30-45eb-b5e9-076d00c41d6a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "98cab10d-5943-41eb-8a0b-be9792bfbbb5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "1be4a317-b106-4d14-8f19-064551d975eb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5bbbcb71-e750-49b8-9365-88114a4f6d6a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "addb4513-a2e3-4cd6-8066-6c815c0c978c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/19d0fbca-0635-4f4e-9e3b-e407a6625f21") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dc0bf41e-acdc-4a03-972f-71c9b50f2d73") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "67ed31aa-8a3f-4559-a358-20416e4b6fb9") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ba17f9e6-a39c-48c3-a8ba-1cc610cc7c99") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "42bd4e68-ed87-45e5-873b-9637d17159f1") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "04906e5f-260b-4313-b442-1048663cb5f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "20d43b10-064c-4e0e-93fa-207dc574c679") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d9f2ca70-f6c3-45bb-9b99-7904e3ca9dd7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "866a77c6-ea40-4eec-bc9d-d74587b6542a") - (at 152.3 41.3625 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C16" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "21d37c69-1bff-4f4a-844e-7652f9c805e0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "fc58f4a4-8a4e-4099-8891-4d4ac4d892ec") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4c216ec4-6e5d-434d-99bb-90780aef3404") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "5b52917b-2c81-410f-bdd8-a69744965b47") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "e4b953f9-615a-4884-a05f-a2fe043197d3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "57ecfb4a-3838-4e68-bed3-b16179647724") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "508650db-8144-4603-998d-d266303f7749") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/fd75998f-f65c-4a86-b2a4-20e7c515341f") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "125c77ec-d99b-41dc-9458-d63fe300ae08") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f894caf1-2b63-4446-bf2e-3a8e2f8993ac") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d74d6864-0dd7-4701-8715-9d9f403767fa") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b484827f-5cb7-4f9a-91ba-dec3b3d2d742") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "c776aacf-4058-4ccd-8971-bb8a5fd16993") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pintype "passive") - (uuid "dc5f9fb6-6c8d-43d5-9b3c-090e529bc674") - ) - (pad "2" smd roundrect - (at 0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "2a2c5342-279c-4752-ad31-f16b92f10348") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "hardware:USB_C_Receptacle_Hanbo-MC-711-H72" - (layer "F.Cu") - (uuid "86fa67db-403c-4428-b380-0473feb20b96") - (at 136.575 45.6 -90) - (descr "USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf") - (tags "USB Type-C Receptacle Through-hole Right angle") - (property "Reference" "J1" - (at 0 -5.25 90) - (layer "F.SilkS") - (uuid "6a687eea-b8e8-404c-add2-4866d47f7b49") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "USB_C" - (at 0 10.95 90) - (layer "F.Fab") - (uuid "356409cb-c7af-4b32-9ae1-e85e5d71c4cc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "705851f9-bd5d-4846-ac4c-522ccd58d394") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "458aa5c7-90d7-4497-91bc-ea28f7f44c3b") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "USB*C*Receptacle*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/32dd254f-fa86-4d6e-911b-5e9f063226e2") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "SH" "B1" "B12" "A1" "A12" "A9" "B4" "B9" "A4" "A5" "B5" "A7" "B7" - "A6" "B6" "A8" "B8" - ) - ) - ) - (attr through_hole) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -1.5 4.25) - (end 1.5 4.25) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9ad1a202-072b-4a78-8ec9-3276d7c7ce11") - ) - (fp_line - (start -1.75 -1.2) - (end -1.75 1.25) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "057dc51b-214d-4f62-bc36-d509bab8658a") - ) - (fp_line - (start 1.75 -1.225) - (end 1.75 1.225) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a2a87633-6285-43a2-8966-2746601a936b") - ) - (fp_line - (start -1.5 -4.25) - (end 1.5 -4.25) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2865d3b9-5cce-4604-9b02-03e57a0ed61d") - ) - (fp_line - (start -3 9.95) - (end 3 9.95) - (stroke - (width 0.1) - (type solid) - ) - (layer "Dwgs.User") - (uuid "f552fcc9-55cf-4c28-a947-192552194852") - ) - (fp_rect - (start -2.08 -4.25) - (end 2.08 10.25) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "50ccd192-24a6-4819-97f9-8d8af994c721") - ) - (fp_rect - (start -1.5 -3.95) - (end 1.5 10.05) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "40d0f202-db94-4dc4-8ca5-c5b3c1ea955a") - ) - (fp_text user "PCB Edge" - (at 0 9.55 90) - (layer "Dwgs.User") - (uuid "609002a6-cb22-4b82-bb58-e8b5551762f3") - (effects - (font - (size 0.5 0.5) - (thickness 0.1) - ) - ) - ) - (fp_text user "${REFERENCE}" - (at 0 5.1 90) - (layer "F.Fab") - (uuid "847b6b02-8524-4469-90d1-b61bf57033d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" np_thru_hole circle - (at 0 -3.575 270) - (size 0.85 0.85) - (drill 0.85) - (layers "*.Mask") - (thermal_bridge_angle 90) - (uuid "1dac2e1c-5147-4035-926a-3ed8c3b9dabb") - ) - (pad "" np_thru_hole circle - (at 0 3.575 270) - (size 0.85 0.85) - (drill 0.85) - (layers "*.Mask") - (thermal_bridge_angle 90) - (uuid "2023c469-4c27-4271-af4f-d21bf110025b") - ) - (pad "A1" smd rect - (at 0.875 -2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_A1") - (pintype "passive") - (uuid "114b2575-3c1a-4c29-9c4d-3dec3974c62d") - ) - (pad "A4" smd rect - (at 0.875 -1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_A4") - (pintype "passive") - (uuid "954f30a5-e4a9-44d7-85dd-07c53a3e8759") - ) - (pad "A5" smd rect - (at 0.875 -1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/CC1") - (pinfunction "CC1_A5") - (pintype "bidirectional") - (uuid "6ec79e3e-2a0a-4957-8fb2-c5d5842e09f2") - ) - (pad "A6" smd rect - (at 0.875 -0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDP") - (pinfunction "D+_A6") - (pintype "bidirectional") - (uuid "7fe8d9ac-ce1c-417b-9a1e-71c0bf4c575b") - ) - (pad "A7" smd rect - (at 0.875 0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDN") - (pinfunction "D-_A7") - (pintype "bidirectional") - (uuid "72d2eeba-184e-4680-8c62-420bd457d78b") - ) - (pad "A8" smd rect - (at 0.875 1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "unconnected-(J1-SBU1-PadA8)") - (pinfunction "SBU1_A8") - (pintype "bidirectional+no_connect") - (uuid "9000cf7e-52c0-4fb7-bd1d-40e19ea64baf") - ) - (pad "A9" smd rect - (at 0.875 1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_A9") - (pintype "passive") - (uuid "de7ddd79-50d0-43c8-a1b9-da47e98f5933") - ) - (pad "A12" smd rect - (at 0.875 2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_A12") - (pintype "passive") - (uuid "cfc8102b-679d-4a2c-87ce-47835991d9b2") - ) - (pad "B1" smd rect - (at -0.875 2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_B1") - (pintype "passive") - (uuid "f1f6ed21-55c4-485d-aab7-6aa5cbd4d234") - ) - (pad "B4" smd rect - (at -0.875 1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_B4") - (pintype "passive") - (uuid "1e3a0536-51e1-4dcd-b7d5-be3236ca0fee") - ) - (pad "B5" smd rect - (at -0.875 1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/CC2") - (pinfunction "CC2_B5") - (pintype "bidirectional") - (uuid "f56fb2fc-5a28-4810-b37e-ebba688c93b4") - ) - (pad "B6" smd rect - (at -0.875 0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDP") - (pinfunction "D+_B6") - (pintype "bidirectional") - (uuid "78cb2df7-a72a-4499-b7b2-da005587efa4") - ) - (pad "B7" smd rect - (at -0.875 -0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDN") - (pinfunction "D-_B7") - (pintype "bidirectional") - (uuid "5d14e0aa-d319-4aec-8d71-63e4295e8cbc") - ) - (pad "B8" smd rect - (at -0.875 -1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "unconnected-(J1-SBU2-PadB8)") - (pinfunction "SBU2_B8") - (pintype "bidirectional+no_connect") - (uuid "37303c62-72cc-4128-aed9-373ffedf48d3") - ) - (pad "B9" smd rect - (at -0.875 -1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_B9") - (pintype "passive") - (uuid "bf94e7f9-d51c-4cfa-a871-585f8449edf0") - ) - (pad "B12" smd rect - (at -0.875 -2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_B12") - (pintype "passive") - (uuid "b2485dc3-787d-4d00-99b7-685c1898614b") - ) - (pad "S1" thru_hole oval - (at -2.03 -3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "d160eed9-db64-46ec-b42e-7961142db926") - ) - (pad "S1" thru_hole oval - (at -2.03 3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "c0cf3bee-872f-423a-a1db-7e13f00bdbd3") - ) - (pad "S1" thru_hole oval - (at 2.03 -3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "715c4809-06a3-424a-ab31-c5944487f1f0") - ) - (pad "S1" thru_hole oval - (at 2.03 3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "aeed4d96-1603-4d6f-af05-ee2a3b45a34e") - ) - (embedded_fonts no) - ) - (footprint "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "89d56981-4acf-41a4-9b0d-635b363983c0") - (at 192.195 84.11) - (descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)") - (tags "inductor handsolder") - (property "Reference" "FB2" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "cefd4be2-40c5-4833-8808-876e2c216773") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "600R@100MHz" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "0a087b35-e50a-4c55-80e2-fe0b00d7e252") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "36d60433-74d4-4ca5-8f0a-ff1246e8c76a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7514fc5b-df8d-4782-ac9e-3bfd1d3eec57") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4ca3f6b7-1624-41b7-bc1a-daafa96ba3fa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Current" "200mA" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c0de3cb0-0764-45ea-abfb-21bfed516c6c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Inductor_* L_* *Ferrite*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/e5f506f5-b7d3-4532-bead-734eb617ac9a") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.171267 -0.51) - (end 0.171267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6794d30a-e1ab-4fbd-a186-01795d06e86d") - ) - (fp_line - (start -0.171267 0.51) - (end 0.171267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "abd23de2-dc7c-40f8-a816-4007bcd1109c") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "4a2f3652-9ad1-483f-a876-86587b1ba80c") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "9a5a8cdd-0cd3-44e4-be0e-38956ac0ea2c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "061b963a-9d7e-442a-bff1-92fe3047627d") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.875 0) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "c5655258-7c4d-4dde-9623-2e603a31b63b") - ) - (pad "2" smd roundrect - (at 0.875 0) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPLL)") - (pintype "passive") - (uuid "672af969-4833-460e-86de-e026d67233d2") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" - (layer "F.Cu") - (uuid "8c305726-92ff-4da8-800b-c73b350b5c90") - (at 175.7425 51.27 180) - (descr "SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf") - (property "Reference" "Y1" - (at 0 -3 0) - (layer "F.SilkS") - (uuid "3aaaa999-7f3f-4b91-97d7-51bb47dda106") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12MHz" - (at 0 3 0) - (layer "F.Fab") - (uuid "8ee958da-60d3-4d3f-9221-a43fb9263de5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a65973b8-d010-44c4-bd00-e5861293d921") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "66e0281d-3ed7-46de-a33e-36349f7dce44") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "crystal_resonator_oscillator" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "bde986bc-3723-4146-ab15-f834d055944a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "ESR" "50R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "edc34289-0f3c-43f5-b44f-92b916c7adbe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "±30ppm" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3df3e657-bad4-4273-a325-0b2e1145544a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "CL" "18pF" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "475d8c13-4a10-4c76-8413-8ffe84ce0c82") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3daa6205-ddcd-4d67-b981-61883d853608") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c11a0060-8ef9-404b-83c0-79558044b1d5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Crystal*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/b2c46570-9a02-4535-8cfa-bbcb003e9ab5") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "4" "3") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 2.31) - (end 2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d3cc83ed-507e-4546-834c-bd499df50724") - ) - (fp_line - (start -2.76 -2.31) - (end -2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e8956a0c-025b-46b7-9a73-08a9f12318f2") - ) - (fp_rect - (start -2.75 -2.3) - (end 2.75 2.3) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "06563fb3-858a-42ed-b44b-6a7670e80fcc") - ) - (fp_poly - (pts - (xy 1.6 -1.25) (xy 1.6 1.25) (xy -0.975 1.25) (xy -1.6 0.625) (xy -1.6 -1.25) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "c93b5313-8878-4ff5-9000-65b1cf115068") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "af9f39ac-bb36-4495-bb08-c2e3d6325405") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.45 1.15 180) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "Net-(U8-OSCI)") - (pinfunction "1_1") - (pintype "passive") - (uuid "08115c2d-2b68-40cd-b274-39caaaf2616e") - ) - (pad "2" smd roundrect - (at 1.45 1.15 180) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_2") - (pintype "passive") - (uuid "225bf9dc-e584-4b9a-910b-c4968bbc8e53") - ) - (pad "3" smd roundrect - (at 1.45 -1.15 180) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "Net-(U8-OSCO)") - (pinfunction "3_3") - (pintype "passive") - (uuid "b9b9bb81-146a-47a0-82a9-578a60b60cb7") - ) - (pad "4" smd roundrect - (at -1.45 -1.15 180) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_4") - (pintype "passive") - (uuid "f2115665-d12c-4bf0-8b3d-1cad15c4eb89") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "92916c2c-57c7-4230-91dd-4160bcea946c") - (at 194.1075 101.17) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C1" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "e62d7952-4471-48f2-a883-e261298684f2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "f92c69ca-5988-4a04-a1a2-83db5a61d120") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d4044a84-52d9-4066-a0ab-24bd14b260fd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2e463618-aec6-490d-b543-6c404d540cf7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "160d21fd-4d82-43f7-8b09-e3f80122f4ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d43879ab-0728-432e-a9a1-80909b1f72aa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8137fcf0-cb18-4e8f-8d66-e341c8771306") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/40418d5d-4330-4011-bbd6-b7348f3de494") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d954100e-7dda-49f4-882e-b228eeb35926") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f4b4042c-f843-4d00-8308-7640270a2dfd") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b8a01f91-405c-4f4a-b373-cbf12f9f4249") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "afd5bed7-4be4-429c-8bbd-ff7b7724e8a5") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "163baaf8-9a6c-4723-b36d-1ef4408488ca") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "35a80c8f-703b-46db-90d7-e35cba078b75") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "cb13b773-9d90-46a5-a19e-25797344ad8f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "929e91c4-bff6-4c50-9d6c-240b11b0f952") - (at 142.4675 40.9 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C15" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "a137246c-99ef-4798-9ae8-619f3620b7bf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "f7a5cb7a-7620-4d11-ad2b-c94f11006d5e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "fe11cf9a-99ac-4246-8b9c-b00ea92316c5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "50df0a04-44b1-42d1-8192-2789cc2c809d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "1623f590-5f2b-4046-b346-c8be98e81b83") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c4e9fc9f-ba38-4a6c-acf4-361a80d8b938") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0dcc861f-7cf7-49bf-94ca-7a0adb7415f3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/96c56b86-fd5a-49db-93bd-6bdb9369ace0") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e71d6c93-b997-4403-a980-952699de4998") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bd000af7-3b29-46c8-9f43-94b1ae4f3a6d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d2bb86e3-1714-4fb6-9dfa-613693ac40a9") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "5306786d-8c9b-475a-9ba9-cf8e10788e6e") - ) - (fp_text user "${REFERENCE}" - (at 0.4925 0.125 0) - (layer "F.Fab") - (uuid "e460dbf2-5609-417e-83c9-d5c7752f5c4a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "94cc2f19-b6c7-4035-a59b-71b044480a81") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "1b691923-3557-4397-be39-7f9671fca1a3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "940cca17-41bd-4227-a61f-c95d5891f7c1") - (at 135.8325 69.75 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C52" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "04fd2a25-cfeb-4ea5-8718-a4580e440a46") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "b0278df4-0914-4729-a9df-da8c2da26229") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "326a3c64-033d-4adf-b869-d7041402649b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "729be991-5a15-4528-b639-c8e7794f55bd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "177aad15-cb7b-49e5-9cc5-815dd803c627") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "031e03ec-6cbe-4068-8039-019867c2bc28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9153293c-65ad-4260-8e7c-abd2c251de55") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/a68469bc-94a6-40c1-92f5-6966ad8047ea") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "756ade61-7582-49da-97a8-4c9a49a2ad8c") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8d130511-cb3d-412a-808b-2612af39de56") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a17c0159-9a03-47bb-845c-4afda65855c7") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "113e5333-f053-462d-b780-27301b244abf") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "c9d4f059-d68a-4429-866d-d3435240830d") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pintype "passive") - (uuid "b0e3827f-0a0e-435b-a3ba-2e9429144430") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "e44177dc-00b4-4fa8-8976-7598893b7263") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Inductor_SMD:L_0805_2012Metric_Pad1.05x1.20mm_HandSolder" - (layer "F.Cu") - (uuid "9ce11538-72c1-4f03-89f9-5821c9dbcc2f") - (at 146.54 80.34 180) - (descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "inductor handsolder") - (property "Reference" "FB3" - (at 0 -1.55 0) - (layer "F.SilkS") - (uuid "1ad88574-bc2a-417e-9fea-b81117c6f254") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "120R@100MHz" - (at 0 1.55 0) - (layer "F.Fab") - (uuid "8354c1b5-aac5-4cb2-bc55-db28059b7603") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e96cf68e-8782-4381-b32d-2c0ccbdda656") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c98a6ef7-8b38-4173-83ff-c01825b09d6b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "20058ee7-33fc-47df-8f21-7a995c323820") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Current" "1A" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "540280b3-1c86-4ef3-bf5f-a2196fd4788f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Inductor_* L_* *Ferrite*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/37825bb5-a52b-44e9-a948-b80f4dcc7d17") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.410242 0.56) - (end 0.410242 0.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2487d98b-f770-4420-ad40-12e2884851bb") - ) - (fp_line - (start -0.410242 -0.56) - (end 0.410242 -0.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9a8d9ce4-a64d-4cd0-a9d0-e269b32e641e") - ) - (fp_rect - (start -1.93 -0.85) - (end 1.93 0.85) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "0fe02217-6ca6-497b-a4b6-beff60e96022") - ) - (fp_rect - (start -1 -0.45) - (end 1 0.45) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "4bc2c340-1566-45cc-bd6c-27fc8446aefe") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "29f58963-517c-4118-bccd-bf77ca890237") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.15 0 180) - (size 1.05 1.2) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.238095) - (net "/ethernet/1V2O_RAW") - (pintype "passive") - (uuid "b110656f-b358-4c4b-853b-b2f46931e9d0") - ) - (pad "2" smd roundrect - (at 1.15 0 180) - (size 1.05 1.2) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.238095) - (net "/ethernet/1V2_ETH") - (pintype "passive") - (uuid "450e274b-3afc-465c-907f-9e7ca292e944") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "9e066c71-e4b5-4905-be6b-36c5c99661e4") - (at 193.2475 69.95) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R1" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "7abf33fc-b2a7-44c9-b556-ac5dc97b0468") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "33k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "63fa27f9-ceeb-4910-9b52-b44b70999a97") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "dc7e91cc-ecc5-41ec-970b-1ca768c3f4ed") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e76de0ea-a32a-4861-8e6e-5f8b82ab3146") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6e43aa8d-11ec-41f7-8e46-1fff133eed5a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c0f41243-d9ad-4ed9-8749-d97efd174951") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/3af0a60c-0acb-4283-ae24-9e595fefdf76") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c6267495-fd49-4d11-831e-09ff53e01148") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e7761c7e-621b-4e70-936a-60f7db75232e") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8151369b-62af-44de-9350-596a1e4e28e8") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d8880813-bad9-412c-bd9c-b23e73bf3a2a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "de2748b4-01a1-4e15-b1c7-339861d9971e") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "d939b488-03a3-4c1e-89e9-7bac39309436") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U3-VFB)") - (pinfunction "~_2") - (pintype "passive") - (uuid "671732b0-afb6-4f16-b1da-c4d7b7c25710") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "a496ae6e-986f-44a4-a6d5-accc0d7e1ccf") - (at 135.24 92.095 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R12" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "cd193f73-7e34-47ab-bff5-9f2abab1be37") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "af2294dc-6c27-49b3-8d98-440b527c4912") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "d35c7a36-bc21-4a73-ac62-843ad1353de0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "1df0e0ed-a5e1-42be-a1ce-6737109257d4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "ccc06b5e-2f9a-471c-a64d-daf6f6343382") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "69f6f505-c589-4a79-b8c2-1190fef7c958") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/9a32e9a6-0619-4f80-a056-6d0e2f66bc71") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "82bc2917-5571-4337-896d-472b4bc89a3d") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b004e965-2748-4512-9211-5e5ea13b0116") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "7203b409-501a-4599-9151-043ab3d41ec0") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "5b2e1b99-4447-4628-9152-edc139544431") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "590da29e-5d05-4bb1-9528-054f865a5306") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "1b05e904-42d1-45b2-8720-3fdccfc36378") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CDONE") - (pinfunction "~_2") - (pintype "passive") - (uuid "a8e9db9b-b46a-4496-800a-7187c5d54bbf") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "a83c1071-65c7-4230-9253-a63e58f8cccc") - (at 143.2375 42.4) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C13" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "bb81bd1e-433b-40d1-ac07-8ce9c62566e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "fce74ae2-ce95-4f58-a80b-4c39963008ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "85877b65-0fce-47fc-a212-e5d3d9616dc0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "405ea2fc-8bae-4e05-a75d-306f9ba1888f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "12dd3b85-a54c-4bf0-ba6b-6646a3cab61d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c6efc2cf-08ac-4d96-a9e5-3924d822586f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0335e6a8-f3cf-4162-8a04-04e53dac1097") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/3dbfa4c5-ddf9-4f40-8a34-fb081e2dc3a2") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ed59599b-5727-45fd-8a59-779d2f10ffe1") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "53f0d492-f099-475f-9741-b6db9008f88b") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "29941ced-8a2c-4f54-bd90-3f091c6206af") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a795de32-c0b7-41c1-ad8b-d4cf82294d5d") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "1b8b3254-e34d-4a7d-bcdf-f22cdb8dac08") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "c2fad89b-ce00-4b36-8ebe-565f9f723a4b") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "1c9411c2-e2d8-4c8b-9f32-d150c876728a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "aa074606-8c91-42cb-a377-d72d946a75f5") - (at 179.52 84.0875 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C36" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "2bb4c4aa-09d0-4279-b7f1-888fc5a7aab1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "05e738d4-56b7-4aed-a773-9665cdd6f84a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4e3afc26-19ee-4a6c-adea-9ec115d8b695") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "d46ae1a2-4982-4adc-acc9-77f331735717") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "57615ba8-4edb-4bf4-9fb9-774d41560f6b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7ebb34e9-7c18-44fa-b939-8cfcd42d16bb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "220f3d1a-4794-4b29-9828-b110b3f50473") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/a0ff8352-595a-4cd8-b36e-256eb1cc7db0") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8ed32892-cfea-49f1-b68b-fd16f888e188") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "60c3f880-a657-4e18-b6da-5920b06c0042") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "23b9c4b0-5b1c-489d-a1fe-a5033b7e5e88") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "167b537f-dfcf-4ed5-993f-c81cfffcb280") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "fc56aa21-c6f5-4b85-8eb1-2cace234b701") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "8d2b94d7-5ce6-4509-a06b-bd296a7212a2") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "f176d8a5-d296-4cf8-b012-b06347c45b2e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "af2471ca-806c-49ef-badb-6eb09c9b2cb3") - (at 195.7225 69.975) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R2" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "79117000-dda9-4e72-a5cc-0d8f0f7bd7c4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "533d4526-e50e-4dc7-a1b9-2e75c70ed32d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e494c949-3da8-4f99-8640-1ee9c6a4c0ec") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "45381e23-c5f5-47bf-a839-0734e499315b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "2d3bd7e8-802f-4667-85b0-340c06a35134") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ec0ecf8f-99d3-4e53-a49a-406ab23a062d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/dbd2e12a-da5d-4b10-9a44-b30c81d5cd46") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "32c918fc-a021-4864-a77e-52f59a64ebf7") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fb709a67-a2cc-4cd6-9ccb-67fd687bf633") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f90c1a5f-c16f-4272-acbf-f78dffec6b38") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e0a232aa-f75d-48d5-a273-e87ed8c0bed8") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "447ef2fc-aa27-42b9-a8e3-74e0b72bec78") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U3-VFB)") - (pinfunction "~_1") - (pintype "passive") - (uuid "4f5f5a85-5fea-4df0-b8fd-3f93c611757b") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "~_2") - (pintype "passive") - (uuid "0984da66-9d43-47bd-84b0-a424cb61253f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "b08302fb-19f5-43fe-8c9f-f458f6756d0c") - (at 124.8975 67.2 180) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R14" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "3e1b8621-f69d-462a-b069-22ea124ee150") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "330" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "dce16bf5-9fa5-4953-af37-8392e33b825d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2209fd1b-6873-430a-a9a1-539fc304c1ed") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d93006b3-8a07-47d7-935b-8cf207d88a2b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6d464373-990c-4515-9354-7e84b644b545") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "65b2b300-8c5d-4c3a-acd2-6232914eb8fc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/a3738cfe-a3fb-4236-85b3-1a7829a89d7d") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "864397af-bd97-4ccd-8680-94dcbfa3c856") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c82f0597-7870-4c7f-8cad-db60f516e75d") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c437bf07-75b7-49c4-a4dc-b870fb4ff080") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "67df279e-05df-4909-af3b-599f7e32a52a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "77c69883-f4ce-4d25-9f17-fed6cb17ca3b") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "98439891-ab68-415f-9c31-66a7af04bf29") - ) - (pad "2" smd roundrect - (at 0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J2-Pad9)") - (pinfunction "~_2") - (pintype "passive") - (uuid "46ab6650-9622-41a1-8a9c-71fc2b2e0513") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "b576066a-b83e-4dae-80e3-399980203c51") - (at 140.7775 92.8975 180) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C2" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "d5330a23-ebe5-42bf-9a11-acb3340c5e4d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "90531504-d588-4bf3-8281-be7fab787b4c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "748cfe96-8567-4004-839c-66cf13679e73") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "dff5e934-a044-4e7a-93b8-9d5839785d78") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "b3256fc4-018d-478a-b8f5-773509dec974") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e937ee4e-33bc-477e-9309-09257ac54ca9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d78e1f2c-1245-4d8a-9e1e-9ca7cc2697d3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/15183678-c2b8-4762-8391-d50dbec9b01f") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8546d7fd-da37-41b4-9778-1a547a764ee3") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "37e75254-0d5c-4db0-bb20-ea7dd051dfa3") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ca42a9da-ff94-476c-8eff-48f6f81bd5aa") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "df4c7081-dc9f-4e92-a15c-91730745f232") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "4fe8f1ad-850c-4e11-b237-3fbe616e4a7f") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "d1daa785-71c2-4b0d-bb1e-c8daefccd0a2") - ) - (pad "2" smd roundrect - (at 0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "a995351d-6c37-422a-9047-66aca142767c") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "b5784b0b-c967-4032-a800-cf176c42c27f") - (at 189.82 86.11 -90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R9" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "272d22c9-d450-4f2b-bcd8-2f6e66ef6811") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "3ec70551-c228-4050-90c0-a09ab07f0dc5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "103beb1a-fa98-4581-a8d0-997130f9c78c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4d3c78d8-5bbe-4c01-82ad-cc96c5de97ac") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "9109ccd8-7a7e-40da-be3e-de9261aa0c2f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9b4a851a-93fa-43e6-91e5-52576250d431") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/93aff3cc-9831-4437-b1aa-0e5dbb35883c") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cf846334-6a95-49c7-8a22-f620a3d974a7") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7b6a0f32-18e2-4dc9-a85a-915a068cf063") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "da41dd46-289c-4b6d-bcbf-ec661895807b") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d2e8cdd5-5b12-4ca6-ad4e-11e539fc106c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "70adb9e7-7015-4c7f-9f94-bad60856187a") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "7a935e6c-5b57-45cb-b23f-988814769af7") - ) - (pad "2" smd roundrect - (at 0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-~{RESET})") - (pintype "passive") - (uuid "1fd53e42-a1bd-4dd0-b6fa-587b7274214e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "b7d45de1-4fdd-40ce-b3a6-486e9388c867") - (at 205.9375 62 180) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C17" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "d370df9b-4e37-4863-9016-240207276421") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "3c8e1522-b989-44a3-aad5-2e08d2341fc2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "342fd633-3bb4-4dfb-9073-b2c8ccbf75cc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "299319b5-99bf-4ab0-8569-71415e668e82") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "ec8ef108-2685-45a7-849c-d15b46d7c447") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "4d3bce7c-a0e5-4031-a153-7ba46d1ddad6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "29c04c62-730a-4911-b77a-7e6fa3884513") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/abfcc5d9-af5d-4a76-88e5-5d0838395d84") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9bb02661-0b13-4efd-9ec2-3ac4880055d3") - ) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d87ad5a8-8ce2-4151-bfa3-d81daec1c6a6") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "02f9314d-1a9f-4eb4-bc44-25a441a908f9") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "2319f1d9-d8c0-4a3f-8114-5bd421ef61e9") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "dfe80639-31f1-4a3d-847e-61a08d226c00") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0 180) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Usb Connector/USB_3V3") - (pintype "passive") - (uuid "ce23b9d2-67e7-432f-985a-568f02c2e659") - ) - (pad "2" smd roundrect - (at 1.0375 0 180) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "73db575a-c873-4155-948f-da78bf4a74a5") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "b8954cb6-6bb3-493a-aab1-c48a35f16f69") - (at 132.7975 65.4 180) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R16" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "50a0a5cd-ef71-48ad-b9c9-d7d31ddccfc3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12.4k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "9ea4dde6-bf58-479f-be52-83e056e4571d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "711bbcb6-489c-4fd2-be96-324f3edac1e4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a563d6ea-e570-4a32-9ea7-acee77866ddd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "97d02ed6-77a0-471b-b1c5-506967352e9e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "45c422bb-ec14-4f7d-9dbc-e377e0fdc8e4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/8fa0e05f-7b05-4576-a7f1-bee85be14a55") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3ca52b01-42da-436a-b904-f6c45abe1f7f") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "67c457d3-b513-49dc-be5f-5a0516863435") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "dc93e5aa-9b46-4a17-ad80-c561271996ed") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "eb30723b-e8c1-4e16-b0ca-4825a0c14ada") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "82a31124-ed7e-42ec-b62f-1737f55b2b87") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U11-RSET_BG)") - (pinfunction "~_1") - (pintype "passive") - (uuid "7052f03a-1ee6-48be-a2b3-5e3f5411b1bd") - ) - (pad "2" smd roundrect - (at 0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "~_2") - (pintype "passive") - (uuid "0440f1f7-b88c-4585-8058-141f1d3d8e8a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c021fe7e-0fbc-4bf9-9de2-522e6d86dca4") - (at 134.24 92.065 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C45" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "47848cee-aa6e-447a-a740-fd6352720c62") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "f36ab971-a5e5-43e6-8544-ec1095104abe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "0f9555eb-1cfd-4414-8bdb-c02a4e13c908") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "72ae21f0-1e9d-423d-8bf5-ae60c94585cf") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "94a0d6d4-7f97-4948-bbf3-6bc6234ae3b4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "47caeaf0-dcc9-4478-959a-02e185695eef") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6d4d6dd1-2e1d-40eb-b823-667080876889") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/32fb54c4-87ff-496a-b533-4c8b556284e3") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "aa0c0db5-2f03-45ed-b626-aa02e18e4230") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e8f2fc26-daa4-4710-8dba-455c6275cf7d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "21df449f-13c6-4531-80e0-2325e7a7a377") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "eb47062c-b030-498f-b53c-e24d954a2306") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "c5c9ff7f-ef4f-4920-a9e7-ca23e34dce32") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "f996233a-2b36-4b7f-8b49-450ff3c7ee25") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "4ba0f02b-9034-4422-b193-f9f78cf54cf3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c07dd216-a17f-410d-a491-8fa27f87c791") - (at 156.5275 85.22) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C34" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "572f9dca-177a-4393-b63a-43cb1bc56f8e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "38c011fb-1a66-49ec-9c4d-027376aa7aa1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "228a29ad-347c-4120-ac84-47a2e5a73d16") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "666a26e5-2b9b-4ccd-abf1-152bdd4828c3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f76213c3-1925-4e82-8a1d-afecf259a93c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6ff7658a-e625-41ba-9905-546e17bb309f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "195998f0-0a37-41eb-b42c-fdd57fdcd7e2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/dad5042a-47c2-4667-854c-aeaf6e74a8be") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ab487f74-75ae-43ee-8221-e15ee93cd1d4") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7b153ddd-1a6f-480f-b714-dd59dc34b244") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "08cc0534-ffb0-467d-8c6a-c187f5495680") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ce31b416-3ca4-463d-8acd-214deb979eb2") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "61d83665-5cff-428d-9389-66098385b4f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "97a3ed37-c445-467d-bf5a-593fb851b64d") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "6708ee57-343f-441f-b006-6fc2e78b58c8") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (layer "F.Cu") - (uuid "c0b72339-e39a-4698-81c1-a381ade62344") - (at 203.25 46 -90) - (descr "SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf)") - (tags "SOIC SO") - (property "Reference" "U6" - (at 0 -6.1 90) - (layer "F.SilkS") - (uuid "a47cb010-0f3c-4f43-b4c5-f45f77228b54") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "ADuM5000ARWZ" - (at 0 6.1 90) - (layer "F.Fab") - (uuid "007b1a1e-ea93-48a1-9574-010f4d595b87") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "bedff438-fdf4-4f9e-8504-1899c4b029c0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "99aa5176-b25d-4457-b2e8-afe6f5480655") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d4af2a86-84df-402f-add9-7cfc2c4c643b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOIC*7.5x12.8mm*P1.27mm* SOIC*7.5x10.3mm*P1.27mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/45129354-a44a-4ad2-b22b-df2c62835b6e") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "3" "4" "5" "6" "7" "8" "16" "15" "14" "13" "12" "11" "10" - "9" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -3.86 5.26) - (end -3.86 5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6ee5be6f-11ca-45de-87c8-57541efd0ee5") - ) - (fp_line - (start 3.86 5.26) - (end -3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "03393eae-658b-4b8e-9c18-3066080de165") - ) - (fp_line - (start 3.86 5.005) - (end 3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "938f2315-3e45-4812-ba9b-75ab3ac3b8e5") - ) - (fp_line - (start -3.86 -5.005) - (end -3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cb05baab-2e1e-4e98-8eae-9f5237b87826") - ) - (fp_line - (start -3.86 -5.26) - (end 3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d71acec2-9908-4be2-bf0b-c79331073bb0") - ) - (fp_line - (start 3.86 -5.26) - (end 3.86 -5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "864fee73-07e8-49ae-9017-b1d0c91000bb") - ) - (fp_poly - (pts - (xy -4.65 -5.01) (xy -4.99 -5.48) (xy -4.31 -5.48) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "a3c77662-0a08-41cd-bc95-87e21155816b") - ) - (fp_line - (start -4 5.4) - (end -4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9edd5735-fd30-440f-b30a-1aac311cb112") - ) - (fp_line - (start 4 5.4) - (end -4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "53ee91e6-dc53-467f-acdd-8e76459b541b") - ) - (fp_line - (start -5.93 5) - (end -5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "22add9c6-a91b-4354-8d1f-84d0f83446d6") - ) - (fp_line - (start -4 5) - (end -5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "55675a65-97a5-4ef4-9089-dbf59ee8651e") - ) - (fp_line - (start 4 5) - (end 4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ee1665d3-ee40-477f-a601-ef1850e8b2ce") - ) - (fp_line - (start 5.93 5) - (end 4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "35f51f2d-4cbd-4c9c-b7f2-82f723e0def0") - ) - (fp_line - (start -5.93 -5) - (end -4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a4f18ff7-58f2-4225-b7b3-b56d7a6cd093") - ) - (fp_line - (start -4 -5) - (end -4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9e20d2a7-01be-404c-9190-ed561dda27bc") - ) - (fp_line - (start 4 -5) - (end 5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5eb835f9-680c-4375-8d8b-234b623ea3d1") - ) - (fp_line - (start 5.93 -5) - (end 5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7d0c360a-21d6-429a-bb5d-d32a4c53f044") - ) - (fp_line - (start -4 -5.4) - (end 4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8457740d-29f8-4f1b-b96f-028d4e0389aa") - ) - (fp_line - (start 4 -5.4) - (end 4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1302a85a-4859-4598-96bb-646239fe0073") - ) - (fp_poly - (pts - (xy -2.75 -5.15) (xy 3.75 -5.15) (xy 3.75 5.15) (xy -3.75 5.15) (xy -3.75 -4.15) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "26962bd1-4d45-48ab-8970-891da0a9fdca") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "218637f8-2a7e-43fd-bd0d-b0624a129378") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VDD1_1") - (pintype "power_in") - (uuid "44782616-03b7-48fe-8daf-d87c0e46f3b9") - ) - (pad "2" smd roundrect - (at -4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_2") - (pintype "power_in") - (uuid "ec5c03dc-4d43-41db-b7bf-5e44deeadd1e") - ) - (pad "3" smd roundrect - (at -4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad3)") - (pinfunction "NC_3") - (pintype "no_connect") - (uuid "7411bc09-e260-405c-b65d-78a3358cf764") - ) - (pad "4" smd roundrect - (at -4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "RC_IN_4") - (pintype "input") - (uuid "1feb6b33-4e44-49ee-bfc2-a7027c5ccea1") - ) - (pad "5" smd roundrect - (at -4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-RC_OUT-Pad5)") - (pinfunction "RC_OUT_5") - (pintype "output+no_connect") - (uuid "5bb413b8-c5c5-41a7-ad04-bc3d0ccb9e84") - ) - (pad "6" smd roundrect - (at -4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "RC_SEL_6") - (pintype "input") - (uuid "e260295b-6b29-455d-ab54-e1976c953f21") - ) - (pad "7" smd roundrect - (at -4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VDD1_7") - (pintype "power_in") - (uuid "73c417f5-0a53-432d-9651-0ba8ed1234c9") - ) - (pad "8" smd roundrect - (at -4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_8") - (pintype "power_in") - (uuid "96ebf3b6-93db-46b2-bc18-784918ef4a52") - ) - (pad "9" smd roundrect - (at 4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_ISO_9") - (pintype "power_out") - (uuid "fa685e1d-c075-4076-83bf-d42e1aafba64") - ) - (pad "10" smd roundrect - (at 4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pinfunction "V_ISO_10") - (pintype "passive") - (uuid "6739707d-2640-43e7-bd56-f6353d81dd1f") - ) - (pad "11" smd roundrect - (at 4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad11)") - (pinfunction "NC_11") - (pintype "no_connect") - (uuid "4a1b199e-d379-4653-a24a-38cf610ed0f0") - ) - (pad "12" smd roundrect - (at 4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad12)") - (pinfunction "NC_12") - (pintype "no_connect") - (uuid "94e4d6aa-c9c8-4f7b-a446-1a7e2ca518bf") - ) - (pad "13" smd roundrect - (at 4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "V_SEL_13") - (pintype "input") - (uuid "101b52e1-0cc6-4024-be9c-3b9d2ab03b02") - ) - (pad "14" smd roundrect - (at 4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad14)") - (pinfunction "NC_14") - (pintype "no_connect") - (uuid "2c22c2cc-852c-4426-9ad7-f70cbb1b472e") - ) - (pad "15" smd roundrect - (at 4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_ISO_15") - (pintype "passive") - (uuid "091f91fd-c3a3-4cbd-a593-2a75e00e063f") - ) - (pad "16" smd roundrect - (at 4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pinfunction "V_ISO_16") - (pintype "power_out") - (uuid "fb485f57-12fc-4b33-87c8-ad2792934d7a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16W_7.5x10.3mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c261a7a5-67a3-420d-9ac8-051327b40534") - (at 190.82 86.1425 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C23" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "97cc3018-3651-403c-98be-e2e5b638edb7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "057a3ee6-a149-4bba-906a-870f0704c1b8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "cd96184f-3957-4be0-9341-1410dffe3c98") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "98d6a71c-bf3f-4636-b19f-8292b0f4fcc7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "aa8eac92-ee54-4aac-905e-2f206b873c5c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "10e7ed18-f5d1-4560-a4ca-9a9c9f27c935") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "59d6d875-1065-412c-8441-aea3f337bdef") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/f818f753-a2ba-416e-840b-85744c6dd0b5") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2fb55908-b47b-41fa-ad52-735bcc1aea50") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e553fa8b-9776-422b-888f-a35cd35b40dd") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "14fd1ffc-6a7f-4d1e-a07b-7a1f4704cb01") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d27b204b-fdde-4811-8565-e5c5447576be") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "20859be6-e4fb-4021-bc84-15374d66c129") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-~{RESET})") - (pintype "passive") - (uuid "4ef99035-b60f-4aee-8636-4ed9106e37c7") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "224bb500-ea4f-404e-b67e-d4055c3c2462") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "c284bfd2-676d-45d6-9ddc-b35bac548015") - (at 201.06 60.9) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R18" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "f48ee49b-79a0-4003-8086-0d5931e2b021") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "55cb4a20-581a-4511-8815-e55e9eab50b0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ea235e87-3978-470e-b111-a330c77e269c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "61c66e25-4a8b-461a-a1c7-48557a17fdf5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "767f0cb0-499d-4ddb-9902-8ee092c829b8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c5d84c9a-fb34-406b-8894-26accb79e41d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/1b071f68-b4ea-469c-942f-de06380c9077/3fc0980d-551b-49f7-a302-ce717c6df384") - (sheetname "/exi/") - (sheetfile "exi.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "35ff59f6-d8b5-435c-8563-41c9b0a94faf") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2afbe7ea-7d71-4323-8552-2b70dd7b4737") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c23ec601-3acb-49ed-98dd-7fabd364cf4b") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0959503d-aaed-46b2-b0e2-77775f3e3469") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "d744ff86-4ccb-44b4-9ea8-31b53221f35e") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/SP1_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "fca4c79e-89d7-46d1-9846-308e983f986b") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J3-ExtIn)") - (pinfunction "~_2") - (pintype "passive") - (uuid "a42c0010-1e04-4227-a51c-839aedc05813") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c3c363c0-b17c-4bb9-a2e5-d1747ad04bf0") - (at 193.7625 65.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C5" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "ef51d3dd-e69b-4967-862e-db2a75a336e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "0bb62527-ab33-4164-9b7c-c2d156a367a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f919b571-0835-493b-a453-6b21a943030b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "21dfe869-2302-45fc-a999-6696ca42f72b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "b3bc1fa5-57dd-47c9-990f-5a3085cd306f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "916a098a-fd0b-436b-ae74-b0c38e5e51b1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ca3ae52c-920e-42d6-9b11-7cf9ee5fe543") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/69c1caed-4aed-487e-8a01-11a407bf27c4") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0b3a1a87-14ae-4392-b480-ae58a49b2879") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62c50dac-b47d-4625-b7be-c7f7e020663a") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c81cb127-3330-4d01-b456-2be37ff31f7e") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "9f0f8434-1248-4f45-8445-0736c97cf0fd") - ) - (fp_text user "${REFERENCE}" - (at 2.4125 0 0) - (layer "F.Fab") - (uuid "7a12fbce-7fb2-4035-91b0-5b9dd6622a31") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/SWN") - (pintype "passive") - (uuid "6e965439-2a9c-4648-8806-24cc70114e8b") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U3-VBST)") - (pintype "passive") - (uuid "3dea7fec-7368-4f85-855d-a876c83a50b0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c60b60bd-5517-465b-8f03-2fa4fbc5a63e") - (at 174.43 54.18 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C26" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "38756026-8c64-4bd1-a5f6-2ae734bfb8d2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "18pF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ec1f981c-f82e-406b-8c82-e26e940234d8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8de773a8-9c27-4fdf-9623-c7c22b87a92b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7bc2a979-ce68-413c-8a3c-ce33899ecf9a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f975c709-a5f0-4fd0-a8c5-d88b8cf1a512") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c1680b0a-7566-4817-be28-c93126e0a3ac") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "faa6a828-1c1a-438a-8f78-906c55a7fd28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/7e1a2e99-229f-4098-8ab3-a13ae887d595") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "406f5237-9815-41ee-a35b-577e50c88559") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "258b9928-b152-451d-822f-d990a8770eb2") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8d37501c-757c-4e38-ac34-a45333393af7") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "5471a8a1-dc59-443d-a8ff-a9dd86d35e21") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "5bd27fa7-5393-4516-82e2-3f77fe547acd") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCO)") - (pintype "passive") - (uuid "4bc7795b-d28e-445b-a2f1-ab4970c7406e") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "33b0a90d-bc32-40ad-adf1-68fde800cf3e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "c6c7a0f1-a6da-4dcb-8230-e365d1992ea7") - (at 194.1425 104.17 180) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U1" - (at 0 -2.4 0) - (layer "F.SilkS") - (uuid "b04ea361-fe19-4854-8439-18202f757fff") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "AP2112K-1.2" - (at 0 2.4 0) - (layer "F.Fab") - (uuid "464ed869-811f-4d48-8df4-2bda8f33310b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7039f7b8-25ce-4d2f-9111-8516ad9f950e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d5838380-ef2c-4700-b219-b6d3c0d0793c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f030f078-eb74-4da1-a017-bc29c97ad032") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23?5*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/716fa60f-7749-409d-a712-77c479795cf7") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "4" "5") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6b6a5339-4b3e-44dc-b4c6-3b6ee08da38b") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "da68e58d-492d-4ed9-8e0e-def2ebb4c657") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c3e19ec4-9645-4f20-ad29-311f53881799") - ) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "023ebee1-bc3d-4163-8d61-0d1acc903408") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9c6d09f4-86f2-4018-a1d3-bf8ab6718d0d") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9209cb92-7a20-466a-92f7-7eeb488928e5") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9f8e00de-86c0-48b0-8c27-bf057c5bbac2") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "155e0a51-24e2-4322-84e7-f09b8042fc8a") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8ab887c6-22bc-4c2f-beb3-890ec6567f63") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "74d3fd62-ea48-447d-9b53-e324082075a5") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "10c0e02a-c8f6-4bb0-a235-a08eb535fd65") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a997ffc0-4d65-409e-af80-e4a74cc31c9d") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "009054f4-27a6-4b00-b680-1866504e7296") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "eb7cb060-3b09-4801-addb-e2f7c4b1d5b9") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cc1fa3ad-101a-4a05-83e1-8dd9ff589aec") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ef51c669-348a-421c-92e3-3b233e777057") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "afbaa65f-540c-4941-acaf-7a263c4d55e9") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d4890fb7-42ea-4eb1-940c-29dee8584bc3") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b4040669-3301-4d60-913c-fefcb30e7706") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "89b89b7d-7898-414f-bd73-004452b9a1c2") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "754a375c-274f-4d0b-9ccf-4b0d91e535fb") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6bdefa31-c85e-4afb-b416-68be56e6eecd") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b4fd522b-f90d-4455-833a-1fced48fc24f") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ecd1c889-0220-48b8-a030-7075687451c7") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "707d9dfa-6bd0-46fd-95de-44c93e18a353") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "6d25502f-f099-48ce-af20-1dde0202b1a2") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "ebdfac14-0b3c-4747-82ad-c20cb8ced7f1") - ) - (pad "2" smd roundrect - (at -1.1375 0 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "beee0d64-519d-4e41-9218-e6baea237c8c") - ) - (pad "3" smd roundrect - (at -1.1375 0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "EN_3") - (pintype "input") - (uuid "9bc98da0-2a17-46a8-8c43-5290d9306a77") - ) - (pad "4" smd roundrect - (at 1.1375 0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U1-NC-Pad4)") - (pinfunction "NC_4") - (pintype "no_connect") - (uuid "a379860d-8b4d-4ca2-8a8d-60cc6da55335") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "VOUT_5") - (pintype "power_out") - (uuid "d822790b-84a9-4a1b-ba85-175a3484a6f0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "cab935b2-c71c-4335-b9d8-6336c203d352") - (at 197.43 46.3325 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C19" - (at 0 -1.43 270) - (layer "F.SilkS") - (uuid "a6bd5432-3e7f-4003-8675-cea38307a0aa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1nF" - (at 0 1.43 270) - (layer "F.Fab") - (uuid "08388fa2-b549-46a6-9e4f-9d14aae8fa43") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "8748ce67-2146-4857-8ba5-76851d0ec9b4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "d859ca14-ccb0-4b70-8c66-269a58109c13") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 270) - (layer "F.SilkS") - (hide yes) - (uuid "8a28fddb-ce22-45e8-8260-bb4679572751") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "057d92cc-ded1-42ec-ab8b-4e6494d67c60") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "100V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6798d51a-64b8-4769-8e83-e0103dbb62c0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/1006d730-cbe8-4183-807f-f1d51470c9d2") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c54b3be8-90ae-46c8-b1c8-0520b040fe49") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7cd8c776-8af5-4b08-82f4-67ac5898b719") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "20accdc4-8a58-417a-9331-e3765ca81cbd") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "6b7338e3-8b00-4558-97d6-5df5ff31264e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 270) - (layer "F.Fab") - (uuid "70f70e88-d148-475a-acbb-5ebaf546bd0c") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "4c4d3b72-5c8d-42df-b96f-8f6335930931") - ) - (pad "2" smd roundrect - (at 0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "73a01168-d427-4bf5-a6ba-9f6d2719b8e5") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "cb124df3-0fe9-4bbf-94c8-5da4918f7005") - (at 196.12 86.1425 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C29" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "e291e76e-ed6d-4ba3-bbbd-df485630450e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "b7b8cb16-b909-473f-a570-5cca1f9afac9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "c3dc7a4f-7bb4-4495-a2b9-3f209206f927") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "c5c35d35-7a64-49da-ac3b-d486afe26b96") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "f6991e4e-0b5c-40ab-af6f-ddf72ee4f88e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "59fd01b1-1574-42e0-89a8-9a94d8e945bc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "65f13628-17b2-44ca-8022-375373b41d57") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c6375d09-4912-4f54-9d1f-c93aa166d641") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46f17187-de72-4781-ab44-e4f512ce0efa") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "912f08e1-5eb7-4e68-9bb8-0e8542410ea6") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d6fb1574-85f0-49a6-adc5-203f56fbc469") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "66c1408e-3a78-46c5-b2b2-5155de5b457a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "970ea4b1-2184-44c6-a623-099525f86e12") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "681b683e-292a-4316-86f1-700d28438817") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPHY)") - (pintype "passive") - (uuid "bcbb5d5f-ad42-44ca-bb85-2d94a62167cb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "cd2d55ec-82df-458e-9588-80a2d187b71e") - (at 136.0975 41.6) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R6" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "e726717b-ef6a-4de2-aab4-a960594fc327") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "5.1k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "88be0444-d910-417f-803f-8ebdeccac5fe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "dce5a855-47f8-479c-90e9-a4b36b4307bf") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "30437a3a-60b0-4548-92e9-50bfcdcc53c2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6bd00523-a328-45b2-80b1-5b500c949a33") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b43dc895-86d9-44f3-ab23-c979b5aa6534") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/6163b4dd-eb2a-43f3-ae4c-e626325177d6") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2f7352de-b348-49ba-9dd0-97b0f41bdff8") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7a0171dc-f77a-47e9-a640-00a0283008a8") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "998d129d-4a67-4ae4-9ec4-fe576635903e") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f217ca65-ea80-410f-8cce-d7cc90b8833c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "0fa63509-2c97-4729-8bd0-2551eab74dfb") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CC1") - (pintype "passive") - (uuid "199efbea-f4df-4524-826b-fd66a91593ad") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "beeaac8e-7fe6-4213-9aaf-4845ffccf730") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" - (layer "F.Cu") - (uuid "d61ac569-e8a5-4cf1-8582-4ccfead09726") - (at 181.86 52.64 90) - (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf)") - (tags "SOIC SO") - (property "Reference" "U7" - (at 0 -3.4 90) - (layer "F.SilkS") - (uuid "daec4f47-1584-4f80-9609-526ea6834fde") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "93LC46B" - (at 0 3.4 90) - (layer "F.Fab") - (uuid "33344c3e-e273-46c8-8707-3bfdba767a96") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "b28a78d5-1207-402c-8c48-7f4d750e2a1d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ed099eb0-ae4c-48ce-b172-37610cc0ddc6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "b60ed8d7-8815-42f2-9032-e5eb32b41dea") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "DIP*W7.62mm* SOIC*3.9x4.9mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/91b7168e-7e94-4d63-a038-c800c3ac6d9b") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "6" "7" "8" "5" "2" "3" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 2.06 -2.56) - (end 2.06 -2.465) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9a150451-5214-4164-81e2-2ea20691e8fd") - ) - (fp_line - (start -2.06 -2.56) - (end 2.06 -2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "033fd9b4-6442-4a4d-afe7-de7794721f28") - ) - (fp_line - (start -2.06 -2.465) - (end -2.06 -2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eee36b19-e4f9-45f7-9efd-d131bc9d61c4") - ) - (fp_line - (start 2.06 2.465) - (end 2.06 2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3da8f250-6d3e-42c8-a79b-0e047622afa3") - ) - (fp_line - (start 2.06 2.56) - (end -2.06 2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d05ee88c-7615-46ea-b30d-d47363fe2cd5") - ) - (fp_line - (start -2.06 2.56) - (end -2.06 2.465) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d03fedf2-b0e9-4f40-b7de-cf557506e0bc") - ) - (fp_poly - (pts - (xy -2.6 -2.47) (xy -2.84 -2.8) (xy -2.36 -2.8) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "ecb05676-4392-4427-a17c-7ee4fa1842ec") - ) - (fp_line - (start 2.2 -2.7) - (end 2.2 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2340f9e9-fce9-4740-b54c-894e22aedf9a") - ) - (fp_line - (start -2.2 -2.7) - (end 2.2 -2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f02ac92a-2527-4951-9fa9-a5e6711e96fc") - ) - (fp_line - (start 3.7 -2.46) - (end 3.7 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f0b1fbc0-1af9-4001-a64f-2cec37e8f358") - ) - (fp_line - (start 2.2 -2.46) - (end 3.7 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "3b260736-e560-43c2-83d0-910da929500e") - ) - (fp_line - (start -2.2 -2.46) - (end -2.2 -2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "347bba6e-0702-42e1-8da8-a6f429144694") - ) - (fp_line - (start -3.7 -2.46) - (end -2.2 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0c4ced29-3c74-4b13-b173-559843ca3d52") - ) - (fp_line - (start 3.7 2.46) - (end 2.2 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "06bba2c1-4163-460e-88f0-f14e9343f629") - ) - (fp_line - (start 2.2 2.46) - (end 2.2 2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a148a98b-c61f-48fa-ac4d-9fef32cbb32d") - ) - (fp_line - (start -2.2 2.46) - (end -3.7 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b15b484f-c230-4397-9025-709648fbcf86") - ) - (fp_line - (start -3.7 2.46) - (end -3.7 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "40ea6401-499c-4921-99e1-7029a6773b58") - ) - (fp_line - (start 2.2 2.7) - (end -2.2 2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "efca629c-eea1-4605-997c-b8234faf1fda") - ) - (fp_line - (start -2.2 2.7) - (end -2.2 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f1bc2602-9b2b-4d13-a4c8-d277890adbb3") - ) - (fp_poly - (pts - (xy -0.975 -2.45) (xy 1.95 -2.45) (xy 1.95 2.45) (xy -1.95 2.45) (xy -1.95 -1.475) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "37e820e8-b33e-4be3-a3e8-8410f1719f6e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "102009dc-6fe2-4e57-a8c2-0fd9d748c183") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -2.475 -1.905 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CS") - (pinfunction "CS_1") - (pintype "input") - (uuid "7c009b18-f893-40b7-a1de-39e3092b8671") - ) - (pad "2" smd roundrect - (at -2.475 -0.635 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CLK") - (pinfunction "SCLK_2") - (pintype "input") - (uuid "fbc7b35e-6da5-4ca5-944d-cc493d92a2af") - ) - (pad "3" smd roundrect - (at -2.475 0.635 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_DATA") - (pinfunction "DI_3") - (pintype "input") - (uuid "b692484f-84c8-406a-8b43-b8159420dd47") - ) - (pad "4" smd roundrect - (at -2.475 1.905 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_DATA") - (pinfunction "DO_4") - (pintype "tri_state") - (uuid "a35f0e06-6fca-4c18-ae39-f327d4598a65") - ) - (pad "5" smd roundrect - (at 2.475 1.905 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_5") - (pintype "power_in") - (uuid "ab29452e-872d-4eaa-89a4-28c04b0cb28f") - ) - (pad "6" smd roundrect - (at 2.475 0.635 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U7-NC-Pad6)") - (pinfunction "NC_6") - (pintype "no_connect") - (uuid "cf1c5762-28de-4766-ae83-420b52d27b4d") - ) - (pad "7" smd roundrect - (at 2.475 -0.635 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U7-NC-Pad7)") - (pinfunction "NC_7") - (pintype "no_connect") - (uuid "df7a3108-8c6d-427d-ae7e-f2c1f30d42b2") - ) - (pad "8" smd roundrect - (at 2.475 -1.905 90) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCC_8") - (pintype "power_in") - (uuid "5cb60bfc-f2b1-4cd6-9b8f-941600fd3b7b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "d631e4a4-c0d4-449a-84d9-83084b58dd64") - (at 188.025 62.4825 -90) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C24" - (at 0 -1.68 90) - (layer "F.SilkS") - (uuid "019ff6e1-24ba-4eb9-a59a-1922b5c6c7ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 90) - (layer "F.Fab") - (uuid "d266bb8a-42f4-48f0-8c94-9328a1588594") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "58c08d51-8856-4354-b7ea-63d1c60aea60") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "623a16ce-89b9-4384-ad5e-0ad951a7b62f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "6ad840b4-c85e-4f2c-90c6-53c9352f0c34") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8ae6c3a8-3568-48bd-aa59-f0f44ce88a41") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0544e4e2-47db-4558-8e7d-1577b7b3da0a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/484b0d90-fa80-433f-bd28-bf3b887bd62b") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f812814d-74d2-4d98-ba73-f872f684f63d") - ) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3430002d-165f-4ff2-8bef-ec69b4e39d8a") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "66589248-a983-412f-9f99-9f56499a8ed8") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "55c66527-c2d7-4962-afed-5b4b606c7aeb") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "0c3ed95e-f87e-44ba-a51b-d86cc39f6401") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0 270) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "48db752d-c8a5-4b6e-9088-ec5eb575efe0") - ) - (pad "2" smd roundrect - (at 1.0375 0 270) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Power/3V3") - (pintype "passive") - (uuid "f953316c-3ba1-48cf-83dc-4290890fd577") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "d7833948-edc8-45be-bafb-4e097ba93f64") - (at 182.2575 63.855 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C8" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "a2c9a4bb-b69e-472d-9f57-a6ad1be0ad44") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "4efb815f-58a1-400d-987d-ffbd2fb13d92") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c1022388-e481-4baa-9ca1-00ddc8760edb") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "93746004-ba31-4d7b-b7a0-30aead47082b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "5a225b09-73d5-4973-8113-a8e99e33a5f8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7b418747-1377-4eb1-bf60-d56b21034686") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9ee1dd78-3d0d-4a2a-bc1c-74c3d8be3833") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/66fe99cb-c32f-475c-a312-9024c18895ef") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ee97c385-5b12-4a5d-898e-9b262c49b8cc") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f27d9e4d-0c4a-450b-ba8c-a8f330ab75d6") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "96445187-ef1c-4671-9f33-0dfed16988e0") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a045cfd3-15ed-4f13-af30-e786e612a292") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "6af9cef2-9671-45c0-a8b5-cdd62bc31455") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pintype "passive") - (uuid "825828ff-c25a-4760-911f-0cf62f0a767c") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "fb91d711-aad1-4c2c-81c1-6a2c75c929e0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "dbd14aa4-8388-4206-bb02-a00529d34685") - (at 197.91 64.9 -90) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C4" - (at 0 -1.68 90) - (layer "F.SilkS") - (uuid "3279c720-e3b5-4648-8060-c74e68c73ba1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 90) - (layer "F.Fab") - (uuid "0fa3052d-4515-4345-a3ed-ad5b5b39552d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "84d967be-0120-4b0c-a0fd-f092e1254d98") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ae6179ab-637f-453b-92c8-5dc85bac2977") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "cecf267f-e6a2-450a-943a-097a707eb537") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "86a8be43-16bc-485f-95ba-412aa4ec59de") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "25V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "862a79cf-3346-4156-ab03-acb3dd258df1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/0abc5ec0-734c-4ff0-a352-5b251befe437") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6764911b-d98d-43f7-a82d-ae9dc28c7e47") - ) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3794ce13-e88c-427a-bded-cdcba419c3a6") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "299d22e4-4640-4607-b652-01f14c889943") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "039f1301-fa86-4da8-81af-1a87aa2bb8a3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "18f3a58a-9893-4937-8dfc-cf61030c6f14") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0 270) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "254a9292-1149-4a17-8b61-3b6b2732e797") - ) - (pad "2" smd roundrect - (at 1.0375 0 270) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "ec7188cb-221a-4b1c-9206-51431c01fa49") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "dc0cd3de-5847-4f6e-af7b-b129eebd3a1f") - (at 128.5 70.4325 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C58" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "89ff363a-0f2e-4a1d-a993-81a6cea8f3bb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10pF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "455d702f-8965-424e-ba39-6a6b53afa26d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "617f5336-0c5e-4ca6-9a50-715adb002787") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "3770cf62-56c6-4b83-a3df-2b22c093c539") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "07011c47-1119-4997-8e56-57fd41f69087") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b448c8d0-df17-4f55-aed5-23aeb8def500") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "93101c07-3e91-4808-8c48-49230aa2731f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/f8520a63-5936-4326-8d7f-ee8f61969721") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a1c12362-541a-4edb-b3c7-99aa5bc74d4d") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bcff2fc3-3564-4dd3-a314-e7905852c443") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "de5e3fbd-70a4-4e31-b660-eaaf0986c5f2") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "7b300fa9-1534-4e9f-b39b-6dc662cd42df") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "f87fd437-a36a-46a4-9c1d-777f15565032") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_I") - (pintype "passive") - (uuid "2922a148-a37b-401b-8d7f-4b562cd9ff98") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "ae967515-3c19-4287-a307-7026d60c0b12") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "e081179a-d499-4c98-861e-1d3a1a9712f3") - (at 197.4 43.1 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C21" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "41ed0463-b7c5-4632-b2f9-af58f6b51397") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "0.1uF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "ee1a80c9-33cd-4bc6-91d0-7a72026c03a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "f09624f5-3906-4c70-ae37-db1b23bfe1b6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "5bc883dd-78fa-424d-a4a1-af7666036e5f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "c8b75bd7-6261-4d5f-99f7-be13e572b6d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "1d3c3cb4-617b-46e1-95e0-cd91bcfd5297") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "88a10e81-9e33-4ead-9829-afe2b270aa48") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/cfcbd4b1-9213-400e-b190-98fbf7ce450c") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ee6278c7-7b85-4b26-8574-c3fc2f2366af") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "52894814-76e2-4020-942a-6342cfe03473") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "7b7ab8c5-e089-4b93-b681-ae8b29ce8ce0") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "4f95578f-0abb-425f-a304-35e0b643d3ac") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "da1715c6-1e0f-42e7-8228-5aa4c9c08c8e") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "2d5a6c02-4d52-4b0a-9a20-55faec30c717") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "64ebb635-eefe-4104-9348-2e9e224d8f10") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "e1da88d0-1cac-42b6-8815-6605a1dabb88") - (at 185.0225 60.62 180) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R3" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "7b092813-e152-4122-81bd-94f1ca0c6e1b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "200k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "8d87fee6-a9e2-490c-ab10-bb4857428f1f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b804d4ba-e24d-44c7-a43a-f634a46e5344") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5ac7fa21-d7de-46a9-a323-6c0dea52b952") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "9595baff-e00f-4416-b897-4d493161c938") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "94fa68d2-9910-46f0-b7aa-cce63daaf90a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/15194bd9-79db-4391-90a1-5d3f68e56164") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3b7be986-6538-4767-8c92-5f7ee52a3198") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f426dfe4-4956-45ce-b748-59b63320e4ec") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "406293a4-2c8e-4eb4-90d3-da143270b67c") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "25b01029-d790-4cfe-9c42-58253189ba33") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "feefc1df-94b5-4565-b0a3-377a3c9a2aa1") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "9c05c343-d6b7-412e-993f-8276befca860") - ) - (pad "2" smd roundrect - (at 0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U2-PR1)") - (pinfunction "~_2") - (pintype "passive") - (uuid "a3d8d3c9-7218-4bf6-bb3d-9c761ef28900") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "e30171d0-c0c0-4ea1-b83e-3ee2972a83be") - (at 170.2875 50.63 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C20" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "d5465119-5eac-490e-b6a4-e0162261f73e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ef6f6b2a-3d68-4af3-9fd6-6054754c4176") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "77757ceb-8616-48c7-93aa-d9e599862921") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b4bdebb7-b9c2-4fa3-8e01-f049a1706e86") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "7ce1be09-6c3a-4b5d-a3a3-4c1f20b8205d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "38eb008d-555f-4df9-b909-b0d5dca53f9f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ad91dfb4-942f-4b44-b7ec-4afb0eeddfee") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4c941593-b81d-4a2e-a6a5-787c20d5f444") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b936ee9b-ab52-4ee2-b42d-58e59dbbb1ed") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46b9467b-eac6-43f0-a13e-ba493c0f1da3") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "98b3d3ed-0b97-445f-adf4-1b3f200f68ef") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a305ef7d-70c8-44ce-8424-26a4c9bbbbd8") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "40323839-30b8-4613-ac5e-22f77a7b04b1") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "3519e04a-b68e-4338-adfb-f258bfaf4459") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "d1642d5d-a9fd-4948-a786-63dfb21308c8") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "e3701034-27d3-4f3b-873c-4a0c806ff7ae") - (at 196.4 68.2625 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C6" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "6435f23a-e205-45bc-84fd-8fce7b0ee6bf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "224de69f-aa9b-43ba-8e63-9fac8714fde7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "e5846be7-6975-40db-a406-79af23d4a55e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "a4318d2b-8e49-4982-85aa-fedefa8368d2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "46a2f1f2-5fb2-4344-8c1e-4094baa61ca2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a282fc82-5dd2-4196-bfb5-1fccad2f4931") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7b09d662-7065-4505-9dd0-4a6e37e84913") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/7686a45c-971a-4307-b5b9-b2b911dd1aae") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "84ed9b69-f4e8-4cf3-9899-787f186f3c03") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2ef5260b-1654-40f6-9397-0ab787dac263") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "110e9238-5fe8-4eb4-83fe-231fa598d3e6") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "704d6e3f-1b51-4275-89d5-558c4fdbae5b") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "fe0e4ee3-5830-4b13-b4ca-108e662a8a82") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "aa3903ff-27b5-4cc3-9fd6-152f0becac67") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "a0f031f5-2be6-4310-97be-a60c4d69b9c3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (layer "F.Cu") - (uuid "e44608ae-4729-4a83-8086-e1eaa4ebce24") - (at 185.74 68.6 90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C11" - (at -20.525 -12.54 90) - (layer "F.SilkS") - (uuid "0578cb7b-ad3d-43ed-8484-bf198482e3bd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "22uF" - (at 0 1.85 90) - (layer "F.Fab") - (uuid "3600d0e9-6e7b-478d-883b-74f9c844c1de") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "5bac6500-abec-48a2-97d8-0e7eabf96a09") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "b64c8d35-c4a2-4f2b-88b2-bbaa452a7851") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "90941fad-1755-408a-b8a4-fe06ae94c702") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e21398d1-d4c0-48d6-b3d6-4572f0e8fe14") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f6472e83-91a4-4c0c-96ae-97d40e2ca4a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/41c047ab-784c-4a5c-a507-14eec8340455") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.711252 -0.91) - (end 0.711252 -0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d60e24ed-ad5d-47e7-853e-c1c83b2dd0c1") - ) - (fp_line - (start -0.711252 0.91) - (end 0.711252 0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0abad289-fff4-44af-ac9f-e7bb2eea6255") - ) - (fp_rect - (start -2.48 -1.15) - (end 2.48 1.15) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "4554fab9-1e4a-4642-a41f-2d7863076c1c") - ) - (fp_rect - (start -1.6 -0.8) - (end 1.6 0.8) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f577b615-7126-4904-9da3-5c8b2165ccb9") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "610e95b8-6d5d-4cff-8ae5-7a6a8504c1e7") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5625 0 90) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "93a01f8d-20d2-4652-8825-270736f24213") - ) - (pad "2" smd roundrect - (at 1.5625 0 90) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "GND") - (pintype "passive") - (uuid "c50ca624-8798-4830-abbd-a67a2c210ba2") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (layer "F.Cu") - (uuid "e5cb0313-3c2a-4088-8199-622bbd9f104f") - (at 155.779239 65.8 180) - (descr "QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94)") - (tags "QFN NoLead ST_UFQFPN48 Analog_CP-48-13 JEDEC_MO-220-WKKD-4") - (property "Reference" "U9" - (at 0 -4.83 0) - (layer "F.SilkS") - (uuid "b3696794-2ba1-4021-b8c4-ff8732506d06") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 0 4.83 0) - (layer "F.Fab") - (uuid "14aa2b3f-4378-4b3e-a015-da6f48796ac5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6c3ebe30-fc63-4ea1-88b3-2509b4458eec") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9c635ac0-d8e9-4be2-8c28-1a0fbadc3227") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/no_lead" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "143accc9-8a25-490b-9a62-cb31aa4eb312") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "QFN*1EP*7x7mm*P0.5mm*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/a8dbf6f7-bf33-4035-aa2a-a16373a624ef") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "25" "23" "27" "26" "28" "31" "32" "34" "37" "35" "36" "43" "38" - "42" "39" "40" "41" "33" - ) - ) - (unit - (name "B") - (pins "8" "6" "9" "10" "11" "12" "21" "13" "20" "19" "18" "14" "17" "15" - "16" "22" "7" - ) - ) - (unit - (name "C") - (pins "46" "47" "44" "48" "45" "2" "4" "3" "1") - ) - (unit - (name "D") - (pins "24" "5" "30" "49" "29") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 3.61 3.61) - (end 3.135 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f2edc755-b6da-493f-ae0c-95b8defcc8c5") - ) - (fp_line - (start 3.61 3.135) - (end 3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f641bea2-b54b-4455-980b-d2f239742531") - ) - (fp_line - (start 3.61 -3.61) - (end 3.61 -3.135) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0594c990-8994-4b72-82e9-19092056d006") - ) - (fp_line - (start 3.135 -3.61) - (end 3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "839b3487-f6e3-410e-8ef3-5a5a6841b132") - ) - (fp_line - (start -3.135 3.61) - (end -3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eba6dbfb-1fa3-45bf-98ab-d5b262127e69") - ) - (fp_line - (start -3.61 3.61) - (end -3.61 3.135) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "961f2790-43e2-4c38-8279-8fa6e37be874") - ) - (fp_line - (start -3.61 -3.135) - (end -3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3781e87c-ed49-4cac-a077-c5dfabb792bd") - ) - (fp_line - (start -3.61 -3.61) - (end -3.135 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6ddcc88a-5939-4168-ac2f-27b54b113297") - ) - (fp_poly - (pts - (xy -4.14 -2.75) (xy -4.47 -2.51) (xy -4.47 -2.99) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "6cc0c0f2-6951-4bf9-830d-2fe495f1b868") - ) - (fp_line - (start 4.13 3.13) - (end 3.75 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cf3066e8-a10d-4272-aa9f-86c5b7be48fa") - ) - (fp_line - (start 4.13 -3.13) - (end 4.13 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c0d7cb41-22f0-477d-b786-78e3cee03a1e") - ) - (fp_line - (start 3.75 3.75) - (end 3.13 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a1ee38c8-75d1-4f65-a3a7-b643ab707bd5") - ) - (fp_line - (start 3.75 3.13) - (end 3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c8708c5c-18c5-4647-b686-3ebe2531f4ef") - ) - (fp_line - (start 3.75 -3.13) - (end 4.13 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "107c73d7-ab4e-4f95-af2c-b032a9aef0fb") - ) - (fp_line - (start 3.75 -3.75) - (end 3.75 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8222445f-435d-4bac-a449-8ddf7f7fd516") - ) - (fp_line - (start 3.13 4.13) - (end -3.13 4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "94a6070b-25d5-4ed0-97f3-0cc3bd81c8e9") - ) - (fp_line - (start 3.13 3.75) - (end 3.13 4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "28e0816b-5f46-4b0c-8844-93160a9f421b") - ) - (fp_line - (start 3.13 -3.75) - (end 3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9a862026-3f9a-40ed-ac27-837adb975290") - ) - (fp_line - (start 3.13 -4.13) - (end 3.13 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6899f165-512c-4276-94f1-ff88a4cb9c49") - ) - (fp_line - (start -3.13 4.13) - (end -3.13 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "aa4e370a-13e9-4308-be74-054c7599946f") - ) - (fp_line - (start -3.13 3.75) - (end -3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5521ff53-6dd5-4e70-aa76-b6059fd4c9fd") - ) - (fp_line - (start -3.13 -3.75) - (end -3.13 -4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "80ca85dd-9d23-43bb-a072-19984a0e91fa") - ) - (fp_line - (start -3.13 -4.13) - (end 3.13 -4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e6e08043-5087-438c-8f4a-fe7a19e62ac2") - ) - (fp_line - (start -3.75 3.75) - (end -3.75 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9b5a0c42-5330-4462-b3e4-eb8b98146e70") - ) - (fp_line - (start -3.75 3.13) - (end -4.13 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bffa22b6-0efd-4435-aca3-d04c60079552") - ) - (fp_line - (start -3.75 -3.13) - (end -3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "57cc49cf-3e7c-435c-b8fe-8b34332c9c4c") - ) - (fp_line - (start -3.75 -3.75) - (end -3.13 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e2e3b852-e703-4691-a7dd-b816552ccf60") - ) - (fp_line - (start -4.13 3.13) - (end -4.13 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "684adac4-3a94-4712-809f-06823d798765") - ) - (fp_line - (start -4.13 -3.13) - (end -3.75 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0e5f40b3-f0ad-4410-9741-b3aa06cceb26") - ) - (fp_poly - (pts - (xy -2.5 -3.5) (xy 3.5 -3.5) (xy 3.5 3.5) (xy -3.5 3.5) (xy -3.5 -2.5) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "37dc81cd-dfe3-4ac6-8b81-7713f86df567") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "643bcc20-6831-4540-840b-61cd71f12eb4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" smd roundrect - (at -2.1 -2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "78a65cf9-8a4c-43fa-b909-825b79fead9a") - ) - (pad "" smd roundrect - (at -2.1 -0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "6a1cc03b-9edf-4f84-8808-61b05e2d15af") - ) - (pad "" smd roundrect - (at -2.1 0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "6574190a-d2db-4c52-97b3-eaa0a5040732") - ) - (pad "" smd roundrect - (at -2.1 2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "18952964-e729-4d3b-b5e1-61f9e3f0778b") - ) - (pad "" smd roundrect - (at -0.7 -2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "e7292e98-036f-42aa-ba58-3fd44798370f") - ) - (pad "" smd roundrect - (at -0.7 -0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "7d6f74b2-f0da-41a9-8683-4b0bfe7510cb") - ) - (pad "" smd roundrect - (at -0.7 0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "fda5bf31-2fbc-48cf-8201-549b0d6cda58") - ) - (pad "" smd roundrect - (at -0.7 2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "bc2e552e-e19f-47aa-912a-d516ce1d1e07") - ) - (pad "" smd roundrect - (at 0.7 -2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "0b35e7fb-460d-4266-a521-47fe197f745a") - ) - (pad "" smd roundrect - (at 0.7 -0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "40c889fd-72c4-49e8-8d2d-48ba5de10f19") - ) - (pad "" smd roundrect - (at 0.7 0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "37e75116-b9e6-45e7-a1e6-97ba0df0590f") - ) - (pad "" smd roundrect - (at 0.7 2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "589c57aa-ca1e-4533-bdcc-df462e59aee8") - ) - (pad "" smd roundrect - (at 2.1 -2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "d12563ed-6272-4ff8-852e-89cddac1341c") - ) - (pad "" smd roundrect - (at 2.1 -0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "c755c264-890d-4883-8a64-5b0b1f64f468") - ) - (pad "" smd roundrect - (at 2.1 0.7 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "fb817cfe-48f5-4da6-83e7-6862aa835ae2") - ) - (pad "" smd roundrect - (at 2.1 2.1 180) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "5fa00927-1476-4a4f-b70f-f2363741b3cf") - ) - (pad "1" smd roundrect - (at -3.4375 -2.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_2_1") - (pintype "power_in") - (uuid "97c9152f-9261-441c-8acd-8e238b5125b1") - ) - (pad "2" smd roundrect - (at -3.4375 -2.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RST") - (pinfunction "IOB_6a_2") - (pintype "bidirectional") - (uuid "ca9b85a2-deb4-479f-bea2-c5cef021e3c8") - ) - (pad "3" smd roundrect - (at -3.4375 -1.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_MOSI") - (pinfunction "IOB_9b_3") - (pintype "bidirectional") - (uuid "69c14fe7-428d-4221-aa98-34ae8a2ed255") - ) - (pad "4" smd roundrect - (at -3.4375 -1.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_MISO") - (pinfunction "IOB_8a_4") - (pintype "bidirectional") - (uuid "020fbd3d-bde5-4bdb-9f25-429054419ae5") - ) - (pad "5" smd roundrect - (at -3.4375 -0.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "VCC_5") - (pintype "power_in") - (uuid "37c3ebf0-4317-40c1-a3ad-4269a203ec7e") - ) - (pad "6" smd roundrect - (at -3.4375 -0.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_13b-Pad6)") - (pinfunction "IOB_13b_6") - (pintype "bidirectional+no_connect") - (uuid "9ae40d95-7573-4992-a125-e3f045800c6f") - ) - (pad "7" smd roundrect - (at -3.4375 0.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CDONE") - (pinfunction "CDONE_7") - (pintype "open_collector") - (uuid "d3bd2682-d6ec-4333-8716-99ef376c16ef") - ) - (pad "8" smd roundrect - (at -3.4375 0.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CRESET") - (pinfunction "~{CRESET}_8") - (pintype "input") - (uuid "6e4745a1-d6b8-44c2-b855-50fd0f67068b") - ) - (pad "9" smd roundrect - (at -3.4375 1.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_16a-Pad9)") - (pinfunction "IOB_16a_9") - (pintype "bidirectional+no_connect") - (uuid "5596f31d-d74e-4273-b343-e5963f908bfd") - ) - (pad "10" smd roundrect - (at -3.4375 1.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_18a-Pad10)") - (pinfunction "IOB_18a_10") - (pintype "bidirectional+no_connect") - (uuid "64c9813b-82a5-411a-9009-2948d831e758") - ) - (pad "11" smd roundrect - (at -3.4375 2.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_20a-Pad11)") - (pinfunction "IOB_20a_11") - (pintype "bidirectional+no_connect") - (uuid "2a33948a-8d69-41bd-a017-c141ab64d06d") - ) - (pad "12" smd roundrect - (at -3.4375 2.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_22a-Pad12)") - (pinfunction "IOB_22a_12") - (pintype "bidirectional+no_connect") - (uuid "c7f2fc39-c339-42e6-9442-6fb49a47eb83") - ) - (pad "13" smd roundrect - (at -2.75 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_24a-Pad13)") - (pinfunction "IOB_24a_13") - (pintype "bidirectional+no_connect") - (uuid "edd8f48c-3653-4e6a-87c3-023c4630fcf4") - ) - (pad "14" smd roundrect - (at -2.25 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MOSI") - (pinfunction "IOB_32a_SPI_SO_14") - (pintype "bidirectional") - (uuid "84bf3cca-dc6d-43b0-9f46-9ed226e5277a") - ) - (pad "15" smd roundrect - (at -1.75 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_SCK") - (pinfunction "IOB_34a_SPI_SCK_15") - (pintype "bidirectional") - (uuid "d8b3450b-26ea-4735-828a-b305426d09fb") - ) - (pad "16" smd roundrect - (at -1.25 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_CS") - (pinfunction "IOB_35b_SPI_SS_16") - (pintype "bidirectional") - (uuid "64093dab-89c8-495c-8111-9cff9a2131ea") - ) - (pad "17" smd roundrect - (at -0.75 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MISO") - (pinfunction "IOB_33b_SPI_SI_17") - (pintype "bidirectional") - (uuid "78d7386e-9bba-4f4e-b019-f0768c00fd41") - ) - (pad "18" smd roundrect - (at -0.25 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_TXD") - (pinfunction "IOB_31b_18") - (pintype "bidirectional") - (uuid "6f21d553-c289-4927-85e9-f16e309c2a51") - ) - (pad "19" smd roundrect - (at 0.25 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_RXD") - (pinfunction "IOB_29b_19") - (pintype "bidirectional") - (uuid "e7b6a6d5-88cf-434a-8f4b-cfc867114cfb") - ) - (pad "20" smd roundrect - (at 0.75 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/CLK12") - (pinfunction "IOB_25b_G3_20") - (pintype "bidirectional") - (uuid "55956b88-e1f5-4887-b728-0ace8caebe65") - ) - (pad "21" smd roundrect - (at 1.25 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/GC_ON") - (pinfunction "IOB_23b_21") - (pintype "bidirectional") - (uuid "c7b57d1a-edb2-4131-8ee9-d23db9ccf522") - ) - (pad "22" smd roundrect - (at 1.75 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "SPI_VCCIO1_22") - (pintype "power_in") - (uuid "a93cb65d-1614-4820-8d47-fc8af0984e36") - ) - (pad "23" smd roundrect - (at 2.25 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D7") - (pinfunction "IOT_37a_23") - (pintype "bidirectional") - (uuid "c2c0a194-c820-4786-a4df-54d9560facb7") - ) - (pad "24" smd roundrect - (at 2.75 3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VPP_2V5_24") - (pintype "power_in") - (uuid "9f899368-4cbd-4987-aed9-4d48a27ad5ec") - ) - (pad "25" smd roundrect - (at 3.4375 2.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D6") - (pinfunction "IOT_36b_25") - (pintype "bidirectional") - (uuid "848df552-2451-4352-b715-04826ea53e7c") - ) - (pad "26" smd roundrect - (at 3.4375 2.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D5") - (pinfunction "IOT_39a_26") - (pintype "bidirectional") - (uuid "2103ab7c-53b2-46ad-b952-bc0a686e474e") - ) - (pad "27" smd roundrect - (at 3.4375 1.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D4") - (pinfunction "IOT_38b_27") - (pintype "bidirectional") - (uuid "888d777d-1747-4e12-891f-e61c42d1411e") - ) - (pad "28" smd roundrect - (at 3.4375 1.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D3") - (pinfunction "IOT_41a_28") - (pintype "bidirectional") - (uuid "a128e57c-d875-412a-8c17-3ca04fdb9770") - ) - (pad "29" smd roundrect - (at 3.4375 0.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pinfunction "VCCPLL_29") - (pintype "power_out") - (uuid "a365e558-3d39-44b2-a7bc-fa7f5d095136") - ) - (pad "30" smd roundrect - (at 3.4375 0.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "VCC_30") - (pintype "passive") - (uuid "6c07f0a6-5605-43c1-b1d9-0d8268f8058f") - ) - (pad "31" smd roundrect - (at 3.4375 -0.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D2") - (pinfunction "IOT_42b_31") - (pintype "bidirectional") - (uuid "ce7cb424-61ab-44cf-a961-888e669f36c3") - ) - (pad "32" smd roundrect - (at 3.4375 -0.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D1") - (pinfunction "IOT_43a_32") - (pintype "bidirectional") - (uuid "f1fa3cc1-2e49-45ae-8af2-39f6861b0c59") - ) - (pad "33" smd roundrect - (at 3.4375 -1.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_0_33") - (pintype "power_in") - (uuid "9fb2c5ed-9241-4dd8-b301-2bfe1c4bc55b") - ) - (pad "34" smd roundrect - (at 3.4375 -1.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D0") - (pinfunction "IOT_44b_34") - (pintype "bidirectional") - (uuid "f8cdeb2d-7cd9-4c26-bec0-226d36c7011c") - ) - (pad "35" smd roundrect - (at 3.4375 -2.25 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_INT") - (pinfunction "IOT_46b_G0_35") - (pintype "bidirectional") - (uuid "40f2300d-f4c1-4b57-a0c5-0fe43a3a21ea") - ) - (pad "36" smd roundrect - (at 3.4375 -2.75 180) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_WR") - (pinfunction "IOT_48b_36") - (pintype "bidirectional") - (uuid "c870849a-2974-4114-9025-cc4f6d59718c") - ) - (pad "37" smd roundrect - (at 2.75 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RD") - (pinfunction "IOT_45a_G1_37") - (pintype "bidirectional") - (uuid "939f839f-d012-4dea-8482-47a5a503659d") - ) - (pad "38" smd roundrect - (at 2.25 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A1") - (pinfunction "IOT_50b_38") - (pintype "bidirectional") - (uuid "f7eea70a-a6cf-423a-b0c5-0a48e7c32554") - ) - (pad "39" smd roundrect - (at 1.75 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9A-RGB0-Pad39)") - (pinfunction "RGB0_39") - (pintype "open_collector+no_connect") - (uuid "6f0b92e7-aaf2-435b-b398-73e7d8364f4d") - ) - (pad "40" smd roundrect - (at 1.25 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9A-RGB1-Pad40)") - (pinfunction "RGB1_40") - (pintype "open_collector+no_connect") - (uuid "e12e7764-ab38-4534-b6b0-3c2df6cb14cf") - ) - (pad "41" smd roundrect - (at 0.75 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9A-RGB2-Pad41)") - (pinfunction "RGB2_41") - (pintype "open_collector+no_connect") - (uuid "1234b6b6-f98a-485e-b659-00f0c99c3a5a") - ) - (pad "42" smd roundrect - (at 0.25 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A0") - (pinfunction "IOT_51a_42") - (pintype "bidirectional") - (uuid "16906be8-bcde-402e-ae37-26a0cceca314") - ) - (pad "43" smd roundrect - (at -0.25 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_CS") - (pinfunction "IOT_49a_43") - (pintype "bidirectional") - (uuid "36541463-dafd-48a3-8170-cde20738ce50") - ) - (pad "44" smd roundrect - (at -0.75 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_CLK") - (pinfunction "IOB_3b_G6_44") - (pintype "bidirectional") - (uuid "a0953698-fb05-4fed-836d-6bdb5ff0cdcf") - ) - (pad "45" smd roundrect - (at -1.25 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_CS") - (pinfunction "IOB_5b_45") - (pintype "bidirectional") - (uuid "5613c956-fff1-4795-bdca-a058b2eba27e") - ) - (pad "46" smd roundrect - (at -1.75 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_INT") - (pinfunction "IOB_0a_46") - (pintype "bidirectional") - (uuid "1196e2fe-ba21-4d41-9143-ba101d4322f7") - ) - (pad "47" smd roundrect - (at -2.25 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9C-IOB_2a-Pad47)") - (pinfunction "IOB_2a_47") - (pintype "bidirectional+no_connect") - (uuid "92425050-f5a5-4f97-8550-2dd408a326f8") - ) - (pad "48" smd roundrect - (at -2.75 -3.4375 180) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9C-IOB_4a-Pad48)") - (pinfunction "IOB_4a_48") - (pintype "bidirectional+no_connect") - (uuid "93921a90-9d0c-4471-ae4b-f34fa800eda3") - ) - (pad "49" smd rect - (at 0 0 180) - (size 5.6 5.6) - (property pad_prop_heatsink) - (layers "F.Cu" "F.Mask") - (net "GND") - (pinfunction "GND_49") - (pintype "power_in") - (zone_connect 2) - (uuid "65414df6-4309-4715-885f-ee8767f1d4f9") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "ea59a497-78f0-49e1-81c7-f8cbc3f93ceb") - (at 191.82 86.16 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C62" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "a16c7a30-7806-4ead-9bd1-a58fd664d5b6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "534be5d1-39dc-445c-a20e-3df741f4ef39") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "5960012d-1d04-4bbe-b046-586f7e106a46") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "1be31a8b-ffee-4075-845b-6ba4cb309214") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "c9d290a4-3832-4f34-a141-2d3480d71852") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "dc67bbb5-06d8-40bb-b9dd-45aacdb8f2f2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "1b575590-a570-4ae4-9f0a-70d2e2bcdde3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8fa66e02-5cbf-4213-a771-65e2831acfee") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9343572d-6468-4f1a-987d-f91daf8d21e6") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b9a6fdb0-f8b8-4d37-873c-22ad57034b7c") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b444da58-ca7c-4e58-a80f-607229a8fc9e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "b46e6b30-20dd-4a99-8637-a9c03f32f80b") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "1b05b8a5-88d7-4039-911e-5e6632e059e5") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "93c16ca7-00b7-4079-ad2a-252d94a0896f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "eb7a3d72-768c-4f4a-8d06-fd2ae11a3db7") - (at 132.8325 64.4 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C55" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "8d52ff2e-1341-4730-8149-bfd719e9b942") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "562835b5-93b3-4881-a9bf-52fa245f877c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "79f65b21-cda8-448d-9374-68960ed96f09") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f5dd86fa-f700-4f94-bb15-d433c1cf1964") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "db64567c-84d4-4fc7-a2d6-cf50c0c3f0c8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0c789d91-c375-48e9-a17d-a08be2629fc0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "22547acf-66f5-4352-a2ad-e8da3c14256d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/6f202e5c-3771-4e1c-a64b-882d9195bdf4") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6c7f96d2-bdd8-4855-98c4-b9bf62ae5575") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "23ced470-a49d-4078-bd28-76e28e99797d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8e185141-4094-4795-b08f-93d269d2112d") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "816e7036-c86d-48e1-8c97-bd6776101486") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "8d87cc14-727e-4f7d-98dd-b8bc68c6acb6") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "5f27b66a-18e6-4374-bdd6-103cecf22fe6") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "fe361908-31f0-44ba-a985-bb5b04c55caa") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "efd4feab-b85d-4431-abff-fcc61cc2b9d4") - (at 156.2925 79.62) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C33" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "6bcb8b05-f425-4032-9975-a15398f5d550") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "4e52a3a6-e538-4c15-a82d-8dadf16d4d25") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "742832e9-4b93-49b7-a02f-ef2461e8136c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d1337ce2-796c-4f6e-86cb-258b867e91c8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "9d4fe9ea-88b4-4e27-a078-f109f80a5650") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ae31eadc-5de5-4cf2-a74b-2f10a30bd065") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "66cd06cd-ce56-44da-bf5c-cff38b7e08e5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4d7819e8-1253-4696-a4fe-93a881eaa454") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4167903e-87ae-4e54-89c5-072c4765df77") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "004a5a66-7d1f-41bd-97c7-70e64aa4e646") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a0206a1c-0c11-4d1e-9359-0e5f90e10528") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "fe2ba287-9813-4e6f-b0d7-80aa5b702694") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "cb553b95-af33-486f-a77d-e7b04c345ea0") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "f4cfc1fa-2373-4d5a-bb35-6593f7efaef9") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "07cee171-9cbd-4d11-9b42-956c4bc45f24") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" - (layer "F.Cu") - (uuid "f0c30982-307c-4f7b-a642-89f896e19f1f") - (at 131.45 68.95 90) - (descr "SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf") - (property "Reference" "Y2" - (at 0 -3 90) - (layer "F.SilkS") - (uuid "c80c3862-dadc-4ad4-8cba-ce0dc3355941") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "25MHz" - (at 0 3 90) - (layer "F.Fab") - (uuid "01f98332-56f1-4d0b-8041-c22348188db3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "d6f63d8f-b864-4192-9807-6826f4653a2b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "60de8ea1-a680-406a-8b64-894ee80938c3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "crystal_resonator_oscillator" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "be3644c2-09e1-412b-92da-da7a96e3a0a7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "C0" "7pF" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "dba4e07a-2017-4372-8bfe-eddaa46277f7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "ESR" "30R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "22234048-7800-425c-90d3-8331d89e0c70") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "±50ppm" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "1ea3a1b8-058b-4d67-8ad4-dc82b51622ba") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "CL" "8pF" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "13c43d47-37ef-4995-88e4-3c208d77f2a2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "71255260-894d-4de4-88ba-a5560810c3e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8ff674a1-1737-424a-81f6-35751c6cebb5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Crystal*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/92b8bfce-4f9e-4b91-88ed-4544f0888ee3") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "4" "3") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 -2.31) - (end -2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2da957d8-f5b6-4e07-aefd-d19b77246a44") - ) - (fp_line - (start -2.76 2.31) - (end 2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "5fde8b1c-9fd0-441d-9c1c-c43fd887ffd2") - ) - (fp_rect - (start -2.75 -2.3) - (end 2.75 2.3) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "0c3d401b-4e9c-4fca-a4b9-2158f1735883") - ) - (fp_poly - (pts - (xy 1.6 -1.25) (xy 1.6 1.25) (xy -0.975 1.25) (xy -1.6 0.625) (xy -1.6 -1.25) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "8e6006ed-7818-4eab-848e-ef70e74fbced") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "4e5e6228-ca52-43f6-bf62-3e84d1af1664") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.45 1.15 90) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "/ethernet/XTAL_I") - (pinfunction "1_1") - (pintype "passive") - (uuid "47055341-f933-4d23-b35d-f025a7d8b23f") - ) - (pad "2" smd roundrect - (at 1.45 1.15 90) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_2") - (pintype "passive") - (uuid "8e114235-dd26-4bd8-80e2-c2a942cd98c0") - ) - (pad "3" smd roundrect - (at 1.45 -1.15 90) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "/ethernet/XTAL_O") - (pinfunction "3_3") - (pintype "passive") - (uuid "b51cde0b-a8c4-4223-b6b9-0fc81aadd96a") - ) - (pad "4" smd roundrect - (at -1.45 -1.15 90) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_4") - (pintype "passive") - (uuid "a3cb2361-f04c-41b8-abf0-da86e0489b6b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "f137e186-e29c-4761-aa5f-f8c17e2da39a") - (at 196.42 83.335 -90) - (descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)") - (tags "inductor handsolder") - (property "Reference" "FB1" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "851da48e-da4c-40a9-a429-3765c3d147d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "600R@100MHz" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "6d768df7-6841-456a-8346-90f5fc9a6ac8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "c11fa209-0a37-4064-b8ad-972e797e725a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "979e7d93-fcab-49d0-917f-6103997140cb") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "0c4037cf-6823-4ac3-bd01-cefacef91607") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Current" "200mA" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ec3e0514-8749-46f4-ba1b-c43f3e428cd0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Inductor_* L_* *Ferrite*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/5b37f370-0a43-4f87-b9aa-18f15d5a7a01") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.171267 0.51) - (end 0.171267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "09286fca-06cd-4b83-b3c6-52761355775c") - ) - (fp_line - (start -0.171267 -0.51) - (end 0.171267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c40d4675-9d98-4183-b980-612bebef3c50") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "e4e6b419-6342-483a-92ab-d296b593e9d6") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e9471652-bf40-40bc-9bbb-c4bb75a1017e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "9b6985ab-d9f0-4f27-8e5f-4c3f21e139f6") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.875 0 270) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "447c7e0a-fd1f-47e2-8fa5-73747181f3cc") - ) - (pad "2" smd roundrect - (at 0.875 0 270) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPHY)") - (pintype "passive") - (uuid "c6fe4faf-d103-4305-b84e-ef64b95b3728") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "f427671d-c70b-46c8-9595-febeeac25294") - (at 182.7525 60.62 180) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R4" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "56a950cc-34a7-4187-9a40-3c082b7674f1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "fa3fc0bd-861a-488e-af6a-e12915ac6875") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "64d7842c-11b0-4b94-a307-b86527327c11") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "27d3f979-852b-4fc8-8d8f-90cf55e616aa") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "8245d7e8-06ed-4e7d-8cc1-49ec61044e99") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fea28db9-34ff-4443-bc30-543d32713c92") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/33ce72fd-76d9-4897-b8ff-3769cd2a7734") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "42ffca12-729c-47a7-a9c4-07706fefd5ba") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1f307923-22de-4c57-8222-128ed57ee730") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "41d9f9d8-960d-4ac0-a504-5b49f7d1e464") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "8261fd66-95c3-4bbb-95d8-5916ea5f2b5c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "fa655e5e-4609-4227-ab7d-2a773ca7b0f1") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U2-PR1)") - (pinfunction "~_1") - (pintype "passive") - (uuid "33ab8c9f-4099-4935-a2db-a26455b6d7af") - ) - (pad "2" smd roundrect - (at 0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "~_2") - (pintype "passive") - (uuid "463f798b-bd3c-4114-b79d-278811bf70ea") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "f49a8535-3944-4938-8e37-c215fde9d242") - (at 197.9 68.7375 -90) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C3" - (at 0 -1.68 90) - (layer "F.SilkS") - (uuid "2a27c944-9aa3-4960-b2fd-d61076ce8a27") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 90) - (layer "F.Fab") - (uuid "3aa7e8ce-ac50-4565-8479-e362b52e28b0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "9d64d3e1-f1c7-46ee-b27c-55904b487429") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "1b9f0f76-571d-46fe-b3a2-bf8023a0e801") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "a9b9f6a0-ded8-49fa-aee3-60c347dd2e99") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d48569d2-d1e8-4fe7-a3c6-bbbaaaa67831") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "25V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "31f3ed89-3a39-484b-bf2f-7c0e4d641dba") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/17d4e916-c91e-4b00-87a8-a49e744912b2") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0c6334f7-34f1-42e1-8302-4ebdef4b9b3c") - ) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "98df4f75-81bc-4e12-85c7-4c8739ca601d") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d079f0c5-8c87-4231-a271-7d335f9f56ae") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1c871bfb-fa29-4ffd-b1e8-305b2d0aa78b") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "2e1bb677-5576-452d-8690-c4ae4a6b6990") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0 270) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "ef92a550-79d7-4fcc-bcd3-f22fd5a5fd75") - ) - (pad "2" smd roundrect - (at 1.0375 0 270) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "949a91d3-7b6a-4457-be52-d4596100bfae") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "f51111cd-3952-44c5-8344-b7c6163d18ce") - (at 140.7025 91.2975 180) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C40" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "3c12cfa1-dcd2-4114-883e-8e2b2cd0b900") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "4.7uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "03bf5dc0-69e5-449a-a8e0-55b62f9ac860") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d0d22931-1b84-45c1-a2ac-5269ef31c5ad") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "29136a45-e91b-4323-9e77-f82ef7575f62") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "377d4603-aa26-42bd-86e7-caab25859ebd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "57a44248-8fa6-4f5a-ae71-3c1e194225d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3736a9e0-6999-4d07-9e1b-e4618c4537ae") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/170fb1df-3975-4fe7-a89c-98fb9f597901") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "92490cfb-963c-4160-b59b-036693573a52") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b94381e2-4888-470c-871a-4e46e76f7ae2") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b2e9d742-6c05-43f3-817f-e1fbac300f6d") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e559f820-8cdb-4d6b-9bb3-a78896e0c065") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f58dee7d-8a78-4405-960d-3784c5883739") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "1008ca85-2122-431b-bb61-24df9a725834") - ) - (pad "2" smd roundrect - (at 0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "ed6e9786-8665-4641-8209-1d190dc3a5ec") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm" - (layer "F.Cu") - (uuid "f85c0bd7-7525-4332-b9d5-e351cabbf751") - (at 139.1375 64.05) - (descr "LQFP, 48 Pin (JEDEC MS-026 variation BBC, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfp/05081760_a_lx48.pdf)") - (tags "LQFP QFP CASE-932AA CASE-932-03 C48-1 C48-2 C48-3 C48-5 C48-6 C48-6C PT0048A") - (property "Reference" "U11" - (at 0 -5.85 0) - (layer "F.SilkS") - (uuid "96c55892-5d27-4594-9b7f-a7dccd7e2b01") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "W5100S-L" - (at 0 5.85 0) - (layer "F.Fab") - (uuid "627a2261-6390-49d3-84c0-56231fbae1fe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "https://docs.wiznet.io/img/products/w5100s/w5100s-ds-v128e.pdf" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4358e112-616c-493e-9e71-e1309ded2737") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "10/100Mb Ethernet controller with TCP/IP stack, LQFP-48" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "24c92557-4c5a-4f00-a3f6-7f9940e7f175") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "137b7b45-b01f-485f-aecd-6ff715b8d3c1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Manufacturer" "WIZnet" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0cb4e99a-74e1-4457-9848-121a954de13e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "LQFP*7x7mm*P0.5mm*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/71fdeaba-68dd-41c1-b431-48a573ddbded") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "48" "47" "30" "29" "32" "33" "35" "34" "37" "38" "39" "40" "41" - "42" "43" "44" "9" "4" "13" "31" "45" "22" "1" "7" "16" "8" "15" "23" - "46" "10" "24" "36" "14" "3" "2" "6" "5" "17" "18" "19" "20" "21" "11" - "12" "25" "26" "27" "28" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -3.61 -3.61) - (end -3.16 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "23de6516-30f2-4a0f-8259-9843660edc98") - ) - (fp_line - (start -3.61 -3.16) - (end -3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a4eb80ce-839d-447b-97ed-3aac4f9ed5c8") - ) - (fp_line - (start -3.61 3.61) - (end -3.61 3.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6aa251b4-2607-467d-8f05-41fb668af86f") - ) - (fp_line - (start -3.16 3.61) - (end -3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7f9e7ce4-161d-4157-a0f7-e8dddb8ba968") - ) - (fp_line - (start 3.16 -3.61) - (end 3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cbd2f2a9-e798-4582-acaf-76f642401375") - ) - (fp_line - (start 3.61 -3.61) - (end 3.61 -3.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a19d34c1-4760-4f7c-8132-f1335186201d") - ) - (fp_line - (start 3.61 3.16) - (end 3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "38c12610-cd09-47d3-8ef6-fff5d2787ad9") - ) - (fp_line - (start 3.61 3.61) - (end 3.16 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6e84e363-fbb3-4504-ab67-394bfe6f01ef") - ) - (fp_poly - (pts - (xy -4.25 -3.16) (xy -4.59 -3.63) (xy -3.91 -3.63) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "33a02c24-6e85-4859-9dfe-bfa9f6b020b9") - ) - (fp_line - (start -5.15 -3.15) - (end -3.75 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "08224bb5-ce17-4ec5-8a00-6eed69a1d2fc") - ) - (fp_line - (start -5.15 3.15) - (end -5.15 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b1d0b032-bdc1-42b4-85a7-69a3bf1fc69d") - ) - (fp_line - (start -3.75 -3.75) - (end -3.15 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "edfcc394-d97e-4e3c-a266-5f461c6a07ce") - ) - (fp_line - (start -3.75 -3.15) - (end -3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a22b783f-0af3-47ab-bca0-5e97b90508e0") - ) - (fp_line - (start -3.75 3.15) - (end -5.15 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "934df6ae-5d20-4627-bdd0-9981ab4d907d") - ) - (fp_line - (start -3.75 3.75) - (end -3.75 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cb5e76ac-68cf-43fa-b5f9-0b3dbcb29d32") - ) - (fp_line - (start -3.15 -5.15) - (end 3.15 -5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "417f601f-9e8c-42bc-a092-e49587800cd9") - ) - (fp_line - (start -3.15 -3.75) - (end -3.15 -5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2430fc68-f3b1-45d8-899c-ea0e1d995c40") - ) - (fp_line - (start -3.15 3.75) - (end -3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c460feaa-a566-4e5a-8972-5de88665694d") - ) - (fp_line - (start -3.15 5.15) - (end -3.15 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e1184cec-40b0-4e82-9d9b-731044f7ffb2") - ) - (fp_line - (start 3.15 -5.15) - (end 3.15 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9cfca9a4-ea9c-4cae-a549-e31cd082c76e") - ) - (fp_line - (start 3.15 -3.75) - (end 3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "de55dcdf-142e-46af-ad82-a39480c942f8") - ) - (fp_line - (start 3.15 3.75) - (end 3.15 5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c610cca1-4fc9-4742-a731-dcbe51c20853") - ) - (fp_line - (start 3.15 5.15) - (end -3.15 5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6256ce47-aa49-42aa-aacb-07d8a6cd07a3") - ) - (fp_line - (start 3.75 -3.75) - (end 3.75 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "644a8acf-8ee9-4504-ae0c-fcecab329ef8") - ) - (fp_line - (start 3.75 -3.15) - (end 5.15 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c26be3ee-4e70-4f39-8aab-2691c9a628f2") - ) - (fp_line - (start 3.75 3.15) - (end 3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c5772963-7dbe-4cce-a4cd-f223ee0bf50c") - ) - (fp_line - (start 3.75 3.75) - (end 3.15 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c79c1ed6-34d2-4875-a369-d33c6bc084ef") - ) - (fp_line - (start 5.15 -3.15) - (end 5.15 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8fdc6dac-b090-4f08-80be-53926f417feb") - ) - (fp_line - (start 5.15 3.15) - (end 3.75 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "aefedc47-c85c-40b3-ab4b-203c01407583") - ) - (fp_poly - (pts - (xy -2.5 -3.5) (xy 3.5 -3.5) (xy 3.5 3.5) (xy -3.5 3.5) (xy -3.5 -2.5) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1684d8be-6dc5-4509-9758-7b8203288dcb") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "72923af4-8c1e-4935-b0de-c17ab184cdfc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -4.1625 -2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GNDA_1") - (pintype "power_in") - (uuid "d7f07b7b-d2b0-4d55-b3ab-65ea2b028902") - ) - (pad "2" smd roundrect - (at -4.1625 -2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_TXN") - (pinfunction "TXON_2") - (pintype "output") - (uuid "6c35f71f-ce90-4038-9967-d3fc67a65e91") - ) - (pad "3" smd roundrect - (at -4.1625 -1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_TXP") - (pinfunction "TXOP_3") - (pintype "output") - (uuid "7bc2d452-a6a7-4f2a-9f6a-3349545f12d7") - ) - (pad "4" smd roundrect - (at -4.1625 -1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2A_4") - (pintype "power_in") - (uuid "87f95cd8-bcf9-47cd-b62e-4fe9113ec6b7") - ) - (pad "5" smd roundrect - (at -4.1625 -0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RXN") - (pinfunction "RXIN_5") - (pintype "input") - (uuid "b3b664a7-e58d-46d1-8ab0-3c14c26464f8") - ) - (pad "6" smd roundrect - (at -4.1625 -0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RXP") - (pinfunction "RXIP_6") - (pintype "input") - (uuid "7d4af1e5-eb5b-4028-b711-95593de26630") - ) - (pad "7" smd roundrect - (at -4.1625 0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GNDA_7") - (pintype "passive") - (uuid "5758a7b5-c0db-4480-92af-98aeb83d8717") - ) - (pad "8" smd roundrect - (at -4.1625 0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3A_8") - (pintype "power_in") - (uuid "7c48d7d3-e16e-44f4-a4c0-548e0f8b7ac2") - ) - (pad "9" smd roundrect - (at -4.1625 1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U11-RSET_BG)") - (pinfunction "RSET_BG_9") - (pintype "output") - (uuid "81942098-790e-4cda-b41c-a9ae9ca058b9") - ) - (pad "10" smd roundrect - (at -4.1625 1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_10") - (pintype "power_in") - (uuid "988969ea-64a2-40e8-b6f8-acdab024119a") - ) - (pad "11" smd roundrect - (at -4.1625 2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_O") - (pinfunction "XSCO_11") - (pintype "output") - (uuid "a2dab10b-a3f1-4749-a80a-da55f31139df") - ) - (pad "12" smd roundrect - (at -4.1625 2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_I") - (pinfunction "XSCI_12") - (pintype "input") - (uuid "950bf06e-242b-41ed-a2e7-20937678b827") - ) - (pad "13" smd roundrect - (at -2.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_13") - (pintype "power_in") - (uuid "732c32b1-6b42-4414-af6e-2c4e735bde65") - ) - (pad "14" smd roundrect - (at -2.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2O_RAW") - (pinfunction "1V2O_14") - (pintype "power_out") - (uuid "22a5aca0-e7cd-4ad3-8016-372a0325c63d") - ) - (pad "15" smd roundrect - (at -1.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3A_15") - (pintype "passive") - (uuid "5873fc2d-2d0a-4fe3-81df-78a611c874e3") - ) - (pad "16" smd roundrect - (at -1.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GNDA_16") - (pintype "passive") - (uuid "7188c7e2-a21d-46fd-9eac-bdf9cb2cbf8c") - ) - (pad "17" smd roundrect - (at -0.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/LED_LNK") - (pinfunction "~{LNK}_17") - (pintype "output") - (uuid "510066bd-1dc5-420c-a81f-731a409b51d4") - ) - (pad "18" smd roundrect - (at -0.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U11-~{SPD}-Pad18)") - (pinfunction "~{SPD}_18") - (pintype "output+no_connect") - (uuid "63e4476f-bd21-45d7-8b18-6a83d50291fb") - ) - (pad "19" smd roundrect - (at 0.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U11-~{DPX}-Pad19)") - (pinfunction "~{DPX}_19") - (pintype "output+no_connect") - (uuid "1899d3ea-98a6-4bcb-8efa-a49961aac405") - ) - (pad "20" smd roundrect - (at 0.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/LED_ACT") - (pinfunction "~{ACT}_20") - (pintype "output") - (uuid "91cc82b7-d3c9-48b9-af4e-de04994f6529") - ) - (pad "21" smd roundrect - (at 1.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U11-~{COL}-Pad21)") - (pinfunction "~{COL}_21") - (pintype "output+no_connect") - (uuid "acf1e6d5-27da-4ebb-867f-b88487198a76") - ) - (pad "22" smd roundrect - (at 1.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_22") - (pintype "passive") - (uuid "cbf6299c-abd9-4025-b81a-3f7f5d29cdc4") - ) - (pad "23" smd roundrect - (at 2.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_23") - (pintype "passive") - (uuid "b371411e-f916-4e69-9e49-01363a2080c0") - ) - (pad "24" smd roundrect - (at 2.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3D_24") - (pintype "power_in") - (uuid "cd91e46b-772e-4774-a0cd-f35e649743f4") - ) - (pad "25" smd roundrect - (at 4.1625 2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "MOD[0]_25") - (pintype "input") - (uuid "7fb85c2a-41f2-4d8a-ae9e-1ebfa9aa045d") - ) - (pad "26" smd roundrect - (at 4.1625 2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "MOD[1]_26") - (pintype "input") - (uuid "f3e8444d-1dc4-4c8c-96d8-d0c4aa06a12a") - ) - (pad "27" smd roundrect - (at 4.1625 1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "MOD[2]_27") - (pintype "input") - (uuid "63233001-8fad-4d93-aca3-6221730eee56") - ) - (pad "28" smd roundrect - (at 4.1625 1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "MOD[3]_28") - (pintype "input") - (uuid "e373bf95-e7fd-4e27-b7d4-5f3afdcd0d62") - ) - (pad "29" smd roundrect - (at 4.1625 0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_CS") - (pinfunction "~{CS}_29") - (pintype "input") - (uuid "fc91853c-aad3-4429-97f7-5c7b0fdac033") - ) - (pad "30" smd roundrect - (at 4.1625 0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "SCLK_30") - (pintype "input") - (uuid "3461640d-15ae-48f5-a73e-5abd636efc95") - ) - (pad "31" smd roundrect - (at 4.1625 -0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_31") - (pintype "passive") - (uuid "8656dfac-1583-4209-a630-4aad2e2cd0cf") - ) - (pad "32" smd roundrect - (at 4.1625 -0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A0") - (pinfunction "MOSI_32") - (pintype "input") - (uuid "c324f802-83ca-4835-9bd1-b1f9fd800b70") - ) - (pad "33" smd roundrect - (at 4.1625 -1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A1") - (pinfunction "MISO_33") - (pintype "output") - (uuid "bc08415f-fe16-4b7b-a94d-5b7a03fcc4aa") - ) - (pad "34" smd roundrect - (at 4.1625 -1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RD") - (pinfunction "~{RD}_34") - (pintype "input") - (uuid "2b676f38-1e82-4506-bb06-c07656253d1d") - ) - (pad "35" smd roundrect - (at 4.1625 -2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_WR") - (pinfunction "~{WR}_35") - (pintype "input") - (uuid "65cf3866-e0a0-475f-ac31-d505ecda5da5") - ) - (pad "36" smd roundrect - (at 4.1625 -2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3D_36") - (pintype "passive") - (uuid "2c57c54c-9340-4fb6-8b19-751e63bb7e9a") - ) - (pad "37" smd roundrect - (at 2.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D0") - (pinfunction "DATA0_37") - (pintype "bidirectional") - (uuid "fe436963-2efa-4810-9c75-3c9431b3cd78") - ) - (pad "38" smd roundrect - (at 2.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D1") - (pinfunction "DATA1_38") - (pintype "bidirectional") - (uuid "7905b715-4989-453a-9696-d11a9ce88d8c") - ) - (pad "39" smd roundrect - (at 1.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D2") - (pinfunction "DATA2_39") - (pintype "bidirectional") - (uuid "45e56692-c278-43ee-a52e-291dbe3267a2") - ) - (pad "40" smd roundrect - (at 1.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D3") - (pinfunction "DATA3_40") - (pintype "bidirectional") - (uuid "6947c1e2-2237-4702-bb10-d4de7f815173") - ) - (pad "41" smd roundrect - (at 0.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D4") - (pinfunction "DATA4_41") - (pintype "bidirectional") - (uuid "6f6bc2aa-43f4-4dcc-b39d-f808579f5e33") - ) - (pad "42" smd roundrect - (at 0.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D5") - (pinfunction "DATA5_42") - (pintype "bidirectional") - (uuid "92337047-40c9-4f6e-8c2c-bc616c8ed8f3") - ) - (pad "43" smd roundrect - (at -0.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D6") - (pinfunction "DATA6_43") - (pintype "bidirectional") - (uuid "f5850e8c-4649-4bbf-b915-d103c3e9645c") - ) - (pad "44" smd roundrect - (at -0.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D7") - (pinfunction "DATA7_44") - (pintype "bidirectional") - (uuid "8fc5e99a-03e2-4877-b879-87e51517e731") - ) - (pad "45" smd roundrect - (at -1.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_45") - (pintype "passive") - (uuid "f8fae9a7-a564-4146-a15f-511af2b9db4c") - ) - (pad "46" smd roundrect - (at -1.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_46") - (pintype "passive") - (uuid "0ece10e8-90a5-4868-8df7-e77563ef1278") - ) - (pad "47" smd roundrect - (at -2.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_INT") - (pinfunction "~{INT}_47") - (pintype "output") - (uuid "8a2548d8-e61d-43f4-948d-f1e660ccff87") - ) - (pad "48" smd roundrect - (at -2.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RST") - (pinfunction "~{RST}_48") - (pintype "input") - (uuid "9faf43b4-69a8-40f8-b48b-2fef9d290f07") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-48_7x7mm_P0.5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "fa61e35b-92cb-4dac-bffa-06050a392527") - (at 136.24 92.095 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R11" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "00eb391d-096e-49c5-8d1d-e9e91b367094") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "7c14205f-e119-469b-88a3-590db1a9c8a4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "9a189dda-7901-4eef-9e35-81fedad5d3c9") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "27de4cee-028a-48fd-8f35-8438a98d2aad") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "0bd0bef4-7b13-428e-b83b-092df1b23821") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "052fd139-8a1f-45e8-ab04-ea3143da6eff") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/4f677ad0-bb05-4434-8c1e-5d3a6ddffd4b") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b62af43b-3836-4fc1-b0a3-c8171eca6ae1") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9ee4ee11-1df3-409b-9f40-cdaf21e614e1") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8bf34b3c-3ce0-408c-a353-2f3016291b2f") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1e000d53-7711-4c4b-a7bb-9bebefc13913") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "a086d78e-ae56-4622-94ac-ba67d1198f1c") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "900e1d59-aabc-4960-8748-d28952b922ae") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CRESET") - (pinfunction "~_2") - (pintype "passive") - (uuid "ffbd2f24-e6d3-4d08-8c84-b643f64c7d02") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "fd8279ce-7d58-4db7-9c9e-458f9cafa9b7") - (at 136.1 42.7) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R7" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "365879e8-be5a-46fa-a5df-8911fd7a4d55") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "5.1k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "b781ef16-ac9d-4a10-bb0c-4aa24d1450bd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f3597313-f740-4a84-ba15-708ee4bc29f5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "976e898a-36e9-47df-875e-9fdbc8ed30a6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "5fe3ff2e-d2dd-45f1-87e1-bfcda55ad23c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b3beec92-b2c2-4199-a6b5-ef7ac3e744ae") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/1b8b4c9f-a016-46ef-9284-f933dbb33750") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c6a47f49-da45-44ef-bed5-53d9b9b4d845") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9e9a10b2-20b7-41de-af39-095a746346f0") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "52454ece-395c-494c-bcca-4ea7dff887ce") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "3b1fdb7b-7900-49a0-baa4-0dda96923b86") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "e533f054-35e5-4e3e-86d9-c3ef2620f102") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CC2") - (pintype "passive") - (uuid "25e14fa5-03fc-4613-ac5a-a3b579c5a7d6") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "b96633bd-9d3b-4d65-9882-08bbac3f04bc") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "gc:SP1 BoardConnector" - (layer "F.Cu") - (uuid "fdebdf84-5b35-4515-b08d-b01dc0d306e7") - (at 189.85 59.9) - (property "Reference" "J3" - (at 0 -4.5 0) - (unlocked yes) - (layer "F.SilkS") - (uuid "52dcffa0-3be0-41d8-82b7-45b20e70f607") - (effects - (font - (size 1 1) - (thickness 0.1) - ) - ) - ) - (property "Value" "Sp1_Connector" - (at 0 1 0) - (unlocked yes) - (layer "F.Fab") - (uuid "24800b5b-8057-47f5-9007-bf4368315af1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "17e1ca24-9fc2-4e84-a34d-96d1fa6579ec") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b190f8fc-f1c3-445a-b96e-31b9836d4641") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (path "/1b071f68-b4ea-469c-942f-de06380c9077/e1d71023-db8e-47ed-9ae2-d0237788b46a") - (sheetname "/exi/") - (sheetfile "exi.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.6 -3.2) - (end 0.6 -1.8) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "5f4ff55b-9de5-4143-ab8e-5b51848a5f6b") - ) - (fp_line - (start 0.6 -3.2) - (end 14.4 -3.2) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "84bec77c-97fd-4d95-9b77-4c499ae92d11") - ) - (fp_line - (start 0.6 -1.8) - (end 14.4 -1.8) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "a4cab787-4a86-4cff-addd-464c7476086d") - ) - (fp_line - (start 14.4 -1.8) - (end 14.4 -3.2) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "1862bbc2-cc12-473c-90ca-bb96ab8ece9e") - ) - (fp_line - (start 0 -5) - (end 0 0) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "d69c804e-982d-4131-84dc-8f18ef9e7f17") - ) - (fp_line - (start 0 -5) - (end 15 -5) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "589ec0f2-2d40-408e-b231-c36fea8b9343") - ) - (fp_line - (start 0 0) - (end 15 0) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "f30daadd-ea99-4f05-93d4-c4f914b2b4bd") - ) - (fp_line - (start 15 0) - (end 15 -5) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "49efd237-4b81-45f8-adf6-4c365bdd2014") - ) - (fp_text user "SP1 Board Connector" - (at 0 2.5 0) - (unlocked yes) - (layer "F.Fab") - (uuid "d4ed3068-ac82-441f-9725-b81ac78b30e5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" thru_hole circle - (at 13 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "Net-(J3-ExtIn)") - (pinfunction "ExtIn_1") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "40c8a448-7021-4aa0-9f2e-7a4b6b3183e8") - ) - (pad "1" smd rect - (at 13 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "Net-(J3-ExtIn)") - (pinfunction "ExtIn_1") - (pintype "input") - (uuid "2c60eedc-8995-423d-b668-0f382a43180c") - ) - (pad "2" smd rect - (at 12 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "GND") - (pinfunction "Ground(Shield)_2") - (pintype "passive") - (uuid "47e3fff4-0150-4323-82c4-eab7afb234f9") - ) - (pad "2" thru_hole circle - (at 12 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "Ground(Shield)_2") - (pintype "passive") - (thermal_bridge_angle 90) - (uuid "9b4eb775-fa52-47a4-811a-934c14b2a96d") - ) - (pad "3" thru_hole circle - (at 11 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_INT") - (pinfunction "INT_3") - (pintype "output") - (thermal_bridge_angle 90) - (uuid "cb82a50d-063f-4bc4-9d98-192002b6f807") - ) - (pad "3" smd rect - (at 11 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_INT") - (pinfunction "INT_3") - (pintype "output") - (uuid "5c4eca28-5290-41d8-b1e3-09c1b1aaa16f") - ) - (pad "4" smd rect - (at 10 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_CLK") - (pinfunction "CLK_4") - (pintype "input") - (uuid "2a7dc4dc-fd87-4d78-93e9-053bac0350ec") - ) - (pad "4" thru_hole circle - (at 10 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_CLK") - (pinfunction "CLK_4") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "8c120112-9140-4a1b-a9b8-3942c84c111b") - ) - (pad "5" thru_hole circle - (at 9 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/Power/12V_EXI") - (pinfunction "12V_5") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "49e20227-36cd-4383-b98b-66d58de483d4") - ) - (pad "5" smd rect - (at 9 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Power/12V_EXI") - (pinfunction "12V_5") - (pintype "power_in") - (uuid "d797baf0-5712-4d75-8ce1-9f3ac520cdcc") - ) - (pad "6" smd rect - (at 8 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_MISO") - (pinfunction "DO_6") - (pintype "output") - (uuid "81c570a3-a82d-4ba6-b65e-766e7a9df6fd") - ) - (pad "6" thru_hole circle - (at 8 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_MISO") - (pinfunction "DO_6") - (pintype "output") - (thermal_bridge_angle 90) - (uuid "8e46475c-faea-40c4-900c-c239b18c78d8") - ) - (pad "7" thru_hole circle - (at 7 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/SP1_3V3") - (pinfunction "3.3V_7") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "27029cf3-155a-4db0-9fd0-599a2bb24aa1") - ) - (pad "7" smd rect - (at 7 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/SP1_3V3") - (pinfunction "3.3V_7") - (pintype "power_in") - (uuid "875de5d7-f69c-43aa-9369-05c7d4a05274") - ) - (pad "8" smd rect - (at 6 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/SP1_3V3") - (pinfunction "3.3V_8") - (pintype "power_in") - (uuid "58c54eec-ab78-46cc-b8fc-4b223af26cf1") - ) - (pad "8" thru_hole circle - (at 6 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/SP1_3V3") - (pinfunction "3.3V_8") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "078b678d-fc94-40ab-823c-f90b4067d6e4") - ) - (pad "9" thru_hole circle - (at 5 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_MOSI") - (pinfunction "DI_9") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "3a15d5c3-3db2-4e16-b460-57dd90b852e7") - ) - (pad "9" smd rect - (at 5 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_MOSI") - (pinfunction "DI_9") - (pintype "input") - (uuid "773ce9d0-56f5-4743-8ff5-55c7cf07bf1a") - ) - (pad "10" smd rect - (at 4 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_CS") - (pinfunction "CS_10") - (pintype "input") - (uuid "5d4f7669-6e81-4da9-a59e-f48b8527cdf6") - ) - (pad "10" thru_hole circle - (at 4 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_CS") - (pinfunction "CS_10") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "68e69ba7-b092-40c5-885c-08409c9390fd") - ) - (pad "11" thru_hole circle - (at 3 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "Ground_11") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "490f0c70-0fd7-4116-a74f-2cc14b5c7890") - ) - (pad "11" smd rect - (at 3 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "GND") - (pinfunction "Ground_11") - (pintype "power_in") - (uuid "3ad60739-fee1-41b5-a02c-308efcbb5c56") - ) - (pad "12" smd rect - (at 2 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "GND") - (pinfunction "Ground_12") - (pintype "power_in") - (uuid "7a81e25d-662e-4370-873e-5a73dda4f5f9") - ) - (pad "12" thru_hole circle - (at 2 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "Ground_12") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "2acb085d-a18c-4b39-8a95-f84367a80d66") - ) - (embedded_fonts no) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "fef418f9-1cdf-400d-93e8-3f7c41737dde") - (at 168.9125 97.52) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C35" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "3bb15951-d433-441b-b138-55a85c7118b2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ae17c0c4-103d-415b-a497-448393c7b10f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2521dca7-f862-4ede-ac0d-66cfaf125084") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8fb720cf-caf4-4b4a-9e0d-37624c662165") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "2d255ebf-8b3b-449d-9a06-90c2898826cc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9d480538-5147-4ead-9fdd-9528bea7cd90") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "47507439-393b-454f-8baa-e4b973944e37") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/038bed8f-e394-4f9a-b327-b6d4caf6d69d") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62b844f2-3492-40fc-81f3-13886fdd607b") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0306ce20-d5f2-45d9-82a1-08aa1fd1377d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "54d2442f-ef16-4842-a8e5-7ab73f98f815") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "16279044-e9b8-4ac8-b1cc-f9ef997159ef") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "703c2ebd-cd88-462d-b40f-fa096a5f6f5d") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2715ff9e-2fcf-41a8-b8bc-14b92d2c5505") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "b26dae0a-3640-4de3-8292-94f4dc2fed56") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (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 "ff3baa05-c2af-4edf-a7c6-4d75ad08de4d") - (at 143 46 -90) - (descr "6-pin SOT-23 package, Handsoldering") - (tags "SOT-23-6 Handsoldering") - (property "Reference" "D1" - (at 0 -2.9 90) - (layer "F.SilkS") - (uuid "7f1bde79-a280-4180-a663-0fb923be2eda") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "USBLC6-2SC6" - (at 0 2.9 90) - (layer "F.Fab") - (uuid "31f5773a-40f3-405e-943b-0fa694b8d2e0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fe08319a-7b7a-4cfa-a1b1-ec050eeb50ed") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "08f0a3b9-fff2-4041-8634-cf08f76d3947") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/27722f23-032f-40c9-94fb-40c1d2d7f26f") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "5" "2" "6" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.9 1.61) - (end 0.9 1.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f8fcc3f5-4458-462f-8fbb-26128f841e54") - ) - (fp_line - (start 0.1 -1.61) - (end -0.7 -1.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2ef50698-ff51-4dd6-af3e-e9bc11a1243a") - ) - (fp_line - (start 0.1 -1.61) - (end 0.9 -1.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "595dd659-9aae-4401-ad16-57609af55c23") - ) - (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 yes) - (layer "F.SilkS") - (uuid "857cd60a-7458-4639-aa94-1ddd4b20b7fd") - ) - (fp_line - (start -2.4 1.8) - (end -2.4 -1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b18a5e1a-00a6-4d3f-b215-9ae1df01ec34") - ) - (fp_line - (start 2.4 1.8) - (end -2.4 1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "82c56d10-100b-4579-ae46-5f81e77c2210") - ) - (fp_line - (start -2.4 -1.8) - (end 2.4 -1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "46b40872-e08f-491c-87c0-761b1dd949d7") - ) - (fp_line - (start 2.4 -1.8) - (end 2.4 1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "18080685-65ba-47c8-987c-b1d1552781e6") - ) - (fp_line - (start 0.9 1.55) - (end -0.9 1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "53623668-3236-400a-b62b-2211baf67405") - ) - (fp_line - (start -0.9 -0.9) - (end -0.9 1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "239b7ce5-3285-4a09-8efc-7d762673fb18") - ) - (fp_line - (start -0.9 -0.9) - (end -0.25 -1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "c5a45b8a-bc8d-4af3-8bfa-ad31880e1fd7") - ) - (fp_line - (start 0.9 -1.55) - (end 0.9 1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "89b940b7-9ac9-4db6-9628-3747514757dd") - ) - (fp_line - (start 0.9 -1.55) - (end -0.25 -1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "0a75e851-d3cd-40b4-8773-fa53974dd62b") - ) - (fp_text user "${REFERENCE}" - (at 0 -1.6 0) - (layer "F.Fab") - (uuid "9da3f9a2-7e82-4934-b950-a618cd099cb0") - (effects - (font - (size 0.5 0.5) - (thickness 0.075) - ) - ) - ) - (pad "1" smd roundrect - (at -1.35 -0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDP") - (pinfunction "I/O1_1") - (pintype "passive") - (uuid "09a854f9-9825-44d0-aedd-4ba46edbaf09") - ) - (pad "2" smd roundrect - (at -1.35 0 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND_2") - (pintype "passive") - (uuid "12c4d0fe-1f9d-4eac-b8ee-bb8464b80bd8") - ) - (pad "3" smd roundrect - (at -1.35 0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDN") - (pinfunction "I/O2_3") - (pintype "passive") - (uuid "c0c43f69-5b41-46e2-a5f4-9035e1f007d7") - ) - (pad "4" smd roundrect - (at 1.35 0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDN") - (pinfunction "I/O2_4") - (pintype "passive") - (uuid "98dee3c4-4fda-4628-9737-755365e3f3f5") - ) - (pad "5" smd roundrect - (at 1.35 0 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_5") - (pintype "passive") - (uuid "1005ff85-35f0-470c-90ed-7506777aa17b") - ) - (pad "6" smd roundrect - (at 1.35 -0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDP") - (pinfunction "I/O1_6") - (pintype "passive") - (uuid "fdb9ec13-63fa-4938-b934-191a1e6ac6e0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (gr_line - (start 106.8 48.1) - (end 106.8 66.6) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "b763fa5d-982c-497c-be71-23a657ef059b") - ) - (gr_line - (start 106.8 66.6) - (end 116.4 66.6) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "d0227783-f880-47f8-beba-c0ce2e5e9cc1") - ) - (gr_line - (start 116.4 66.6) - (end 122.2 72.4) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "baac3044-7dcc-4294-91c7-b07d78ef8892") - ) - (gr_line - (start 122.2 72.4) - (end 208.8 72.4) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "0350637d-cd02-4e3d-97b9-f3040532ea57") - ) - (gr_line - (start 126.6 48.1) - (end 106.8 48.1) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "a50a5019-03b7-45c8-b71a-7379af0143f8") - ) - (gr_line - (start 126.6 48.1) - (end 126.6 39.5) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "b983030a-da10-4d32-afac-d6904b494608") - ) - (gr_line - (start 127.2 39) - (end 126.6 39.5) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "f2e3f409-00b6-49de-933f-104c5373d4bb") - ) - (gr_line - (start 127.2 39) - (end 208.8 39) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "b5e22815-c9cb-40eb-9be9-e82623532b92") - ) - (gr_line - (start 208.8 39) - (end 208.8 56.7) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "07d45465-7ec4-46cb-9d62-5f25495e4cd7") - ) - (gr_line - (start 208.8 56.7) - (end 208.8 72.4) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "a6cb8d27-e451-4ead-95f6-b40c4d65dd18") - ) - (segment - (start 157.52 61.088629) - (end 157.52 59.274314) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "23f9a38a-e4a6-477a-bc9f-d82ff61a997a") - ) - (segment - (start 157.72 54.842501) - (end 156.694999 53.8175) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "45d35e3a-7a9e-4961-8740-c18aaebacbf5") - ) - (segment - (start 163.825 59.77) - (end 161.83 59.77) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "565d6b33-3b3b-4abe-9f92-58e95608942f") - ) - (segment - (start 161.83 59.77) - (end 160.46 58.4) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "5ca1c3a7-eaad-4429-9516-1998b7fefb99") - ) - (segment - (start 157.029239 61.57939) - (end 157.52 61.088629) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "6bcf1ffb-0df9-459a-abbd-26a6fbca5ac3") - ) - (segment - (start 157.72 59.074314) - (end 157.72 58.38) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "764acee6-c59d-45b3-8b22-45aebba23b5e") - ) - (segment - (start 157.72 58.38) - (end 157.72 54.842501) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "b91261aa-11ad-470a-935a-976b72d3ada7") - ) - (segment - (start 157.029239 62.3625) - (end 157.029239 61.57939) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "cd2aa76d-46bf-4498-8391-4cf410d5f18b") - ) - (segment - (start 157.52 59.274314) - (end 157.72 59.074314) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "e8de8a90-2e82-4d91-9393-c1b4bafc98b4") - ) - (segment - (start 156.694999 53.8175) - (end 155.8825 53.8175) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "ffd7a8ee-c07b-4fd2-bea8-690220c07426") - ) - (via - (at 160.46 58.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/fpga/FLASH_CS") - (uuid "43608628-d0f7-4a1f-87c4-970c523f6dae") - ) - (via - (at 157.72 58.38) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/fpga/FLASH_CS") - (uuid "a16c6251-b276-4a89-8a75-29fc4d8ef60f") - ) - (segment - (start 160.46 58.4) - (end 157.74 58.4) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_CS") - (uuid "3ddb34e2-bd02-42b7-9c6b-ba2a5307e5e4") - ) - (segment - (start 157.74 58.4) - (end 157.72 58.38) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_CS") - (uuid "b6e3bba0-91ff-4110-9bf0-b0da1aa66933") - ) - (segment - (start 157.12 60.922942) - (end 157.12 59.930761) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "04b183dc-4301-4c7d-b5f1-aa4750942b4c") - ) - (segment - (start 157.05 55.442501) - (end 156.694999 55.0875) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "1a95f8bc-475a-42b4-a8e7-82619a5d8f4a") - ) - (segment - (start 164.9 59.00241) - (end 164.9 57.998924) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "3e6aa480-f04a-470b-ab78-8638d0d22f8d") - ) - (segment - (start 157.05 59.860761) - (end 157.05 55.442501) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "6250163a-38b4-43a9-95ee-b6283b19424d") - ) - (segment - (start 158.3775 55.7325) - (end 158.37 55.74) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "7ae3c46f-d0a2-4c1d-9b0e-02cfd8dc2548") - ) - (segment - (start 164.63241 59.27) - (end 164.9 59.00241) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "93e367ce-4d23-43d9-beea-bf9d7d94f15f") - ) - (segment - (start 156.529239 61.513703) - (end 157.12 60.922942) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "977bb9bb-b6e6-4ddf-a2d2-2258edc2da24") - ) - (segment - (start 161.4625 56.9825) - (end 161.44 56.96) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "a65be892-045a-4883-8b12-ff55e4e4db06") - ) - (segment - (start 164.9 57.998924) - (end 163.883576 56.9825) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "a711e880-55e3-4752-ae70-c1f56e6c465a") - ) - (segment - (start 157.12 59.930761) - (end 157.05 59.860761) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "a9185630-97b7-49fa-82f5-0cb149aad1b6") - ) - (segment - (start 156.694999 55.0875) - (end 155.8825 55.0875) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "b8947c5f-9ca2-4bfd-80df-2f54564f25d7") - ) - (segment - (start 156.529239 62.3625) - (end 156.529239 61.513703) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "c71959b2-6224-4c68-8802-3bbdba005f35") - ) - (segment - (start 163.883576 56.9825) - (end 161.4625 56.9825) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "eccc5297-4dbf-490b-9502-089a7aabb204") - ) - (segment - (start 163.825 59.27) - (end 164.63241 59.27) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "f49e4b70-95c5-468d-b917-ce042f809a77") - ) - (via - (at 157.055971 55.707157) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/fpga/FLASH_MISO") - (uuid "4a56341a-f342-4d32-a556-d64c37aeacda") - ) - (via - (at 161.44 56.96) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/fpga/FLASH_MISO") - (uuid "c3c2cb1a-3e13-442e-8e1e-37affd6732c4") - ) - (segment - (start 160.187157 55.707157) - (end 157.055971 55.707157) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_MISO") - (uuid "3957079e-7e30-48fa-8030-c19870b780e1") - ) - (segment - (start 161.44 56.96) - (end 160.187157 55.707157) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_MISO") - (uuid "85085e41-5b75-4d2d-88c9-29dc55fbc0df") - ) - (segment - (start 157.088814 55.74) - (end 157.055971 55.707157) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_MISO") - (uuid "ba9d8b2a-c7a4-4117-b1f9-25645410e87c") - ) - (segment - (start 132.19 90.235) - (end 132.19 91.4475) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "14355375-5910-4ca3-8bed-33f4ddc25a05") - ) - (segment - (start 173.625 77.64) - (end 172.7375 77.64) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "266e3692-58b1-47e8-9516-bc1e73f62096") - ) - (segment - (start 139.705 85.0975) - (end 138.4275 85.0975) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "3c90aab2-b922-4b1a-9a4a-17dab1984979") - ) - (segment - (start 184.95 62.02) - (end 184.95 63.5) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "43213d84-d0b8-46db-9db8-ad66ebf3b8eb") - ) - (segment - (start 153.954239 61.835614) - (end 153.854239 61.735614) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "44194474-ff9b-44dd-94fd-f163b5197001") - ) - (segment - (start 138.4275 85.0975) - (end 138.3775 85.0475) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "46f65a94-f9cb-419e-8f3e-f8c359a73f26") - ) - (segment - (start 133.74 82.0325) - (end 133.74 83.31) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "555d6d8e-17e4-4df2-a3b2-531ceb175615") - ) - (segment - (start 172.7375 77.64) - (end 172.4925 77.395) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "57d71dfc-3775-47d1-8610-e4a582c1dc54") - ) - (segment - (start 154.029239 62.3625) - (end 153.954239 62.2875) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "6c775f79-bb66-4496-b638-9b45a8962a59") - ) - (segment - (start 133.74 83.31) - (end 133.69 83.36) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "86fde937-4a0b-4b58-ab5d-09fc46b31cd5") - ) - (segment - (start 168.5775 50.61) - (end 169.7 50.61) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "8cd77f77-8d9b-4dc6-afc9-98846394f0dd") - ) - (segment - (start 169.7 50.61) - (end 169.72 50.63) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "8e2d0e52-6ef3-4998-8318-26f8b1a0e5ca") - ) - (segment - (start 153.344311 61.16) - (end 153.08 61.16) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "9650bf2b-f06a-484d-b3b7-2c082c94e2ab") - ) - (segment - (start 141.9575 86.4475) - (end 141.94 86.43) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "a1c3e748-9465-4a20-b238-4a94b8e2c597") - ) - (segment - (start 153.854239 61.669928) - (end 153.344311 61.16) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "b1de30a7-96db-4ed3-a6b9-e6a2f698f4b4") - ) - (segment - (start 139.85712 84.19962) - (end 139.705 84.0475) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "f21d72a2-07c2-45d2-8b89-a2f3055c8c6e") - ) - (segment - (start 153.854239 61.735614) - (end 153.854239 61.669928) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "fba97a34-94d8-4fe6-8798-455f2fafed48") - ) - (segment - (start 138.3775 84.0475) - (end 139.705 84.0475) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "fd2d5353-dd77-464e-81cf-eb531a805b76") - ) - (segment - (start 153.954239 62.2875) - (end 153.954239 61.835614) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "ffa2db3a-aacc-473f-ae43-5caec1f294f0") - ) - (via - (at 184.998153 62.750687) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "250a510b-ee14-4869-bebb-361b199db2bd") - ) - (via - (at 141.94 86.43) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "27e1cb67-97ea-47df-8dbe-ad815b0054b5") - ) - (via - (at 190.02 63.53) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "2c39476d-ec15-46b7-aba0-622e2178a1a3") - ) - (via - (at 164.7675 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "331157a1-8104-4058-8aa8-ab2bb51c42d0") - ) - (via - (at 186.525 62.425) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "4062ead8-29fc-4425-a194-a6da1910150e") - ) - (via - (at 139.705 85.0975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "569ec624-2b39-447f-84cd-06a11455ed20") - ) - (via - (at 135.24 92.6925) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "63c645a9-bc85-4e66-b41a-f1993fb58d1e") - ) - (via - (at 189.819998 85.5125) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "69089fe5-5b68-427e-8368-2be0c6718bec") - ) - (via - (at 136.24 92.6925) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "77c33baf-e25d-4b0a-8b10-652acf3673bf") - ) - (via - (at 163.0575 55.0875) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "77d9cb3f-4e98-444b-aeef-9e5a924f71eb") - ) - (via - (at 140.665 79.0975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "85469852-02ff-4090-8882-2622a87a5026") - ) - (via - (at 163.0575 53.8175) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "87a41306-bebc-4aab-83c6-a323537029bb") - ) - (via - (at 152.09 57.2775) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "89cdb298-18dc-4b33-a2a2-c82ba4f671b2") - ) - (via - (at 163.4975 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "9318de10-e24b-453f-8ddb-df3949969565") - ) - (via - (at 132.19 91.4475) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "93f6c2d7-6ecd-4d14-b7b4-c47be4a9620b") - ) - (via - (at 166.0375 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "95efb47e-723f-4fd2-8dd2-e8afe0df506f") - ) - (via - (at 139.85712 84.19962) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "b9a98f91-f456-4ed2-9453-362fa7f5d7f3") - ) - (via - (at 188.025 63.52) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "db964702-b819-4e93-ae3a-4303c000e1f2") - ) - (via - (at 152.09 55.0025) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "e5046617-e6e1-4a8d-ba72-795ed6e501e8") - ) - (via - (at 133.74 82.0325) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "ec549cfa-9b4e-4f55-bb33-dc228c2d6291") - ) - (via - (at 179.955 50.165) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "f08fa8a3-6a64-4ff0-8ce9-6275713622ed") - ) - (segment - (start 171.25 56.845) - (end 171.25 57.93) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "04690faa-6c76-4bc8-9959-014c1544bb41") - ) - (segment - (start 141.3875 68.2125) - (end 141.3875 69.3875) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "061bf236-3c29-4a07-ae7e-5cb8cac945c9") - ) - (segment - (start 137.8875 68.2125) - (end 137.8875 69.2875) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "13bbc622-6c3d-49ff-a1bf-8cf0dcf3367f") - ) - (segment - (start 184.2 47.225) - (end 184.2 48.96) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "19566521-01f9-45a8-a841-61bcee15b327") - ) - (segment - (start 168.75 56.845) - (end 168.75 57.93) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "24f7dd5a-6c2a-478b-9db4-b903fe14fdf5") - ) - (segment - (start 171.25 57.93) - (end 171.33 58.01) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "62776eb7-6cfb-48bb-b236-7a0ab59939a9") - ) - (segment - (start 197.43 46.74) - (end 197.43 49.295) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "68c47a49-d42f-48fa-a812-fe080716c280") - ) - (segment - (start 141.3875 69.3875) - (end 141.6 69.6) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "7a269a74-1740-4ee7-9eda-dae346709481") - ) - (segment - (start 166.25 56.845) - (end 166.25 57.97) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "7d4e71e4-d81f-409f-9db8-7d40feaf478c") - ) - (segment - (start 168.25 57.94) - (end 168.18 58.01) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "849ee5e6-be99-4883-9e2f-15df5a08e397") - ) - (segment - (start 173.25 57.8) - (end 173.39 57.94) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "89bc55e0-2331-4e18-abb7-4147abc9b60d") - ) - (segment - (start 166.25 57.97) - (end 166.27 57.99) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "92153619-d2cf-4f40-be84-26fa6c022c89") - ) - (segment - (start 197.425 49.3) - (end 197.425 49.975) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "952ca80e-d893-4e9b-b772-69a415125d87") - ) - (segment - (start 168.75 57.93) - (end 168.84 58.02) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "9a3da26b-68ce-4094-a454-d894bf6162bc") - ) - (segment - (start 197.43 49.295) - (end 197.425 49.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "9b594585-b797-4267-8858-e559e242b20d") - ) - (segment - (start 173.25 56.845) - (end 173.25 57.8) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "9ba3803d-3df9-4a80-823c-404d19feef1a") - ) - (segment - (start 167.25 57.99) - (end 167.25 56.845) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "9f5e1196-74eb-4181-af94-3a74374244b9") - ) - (segment - (start 184.2 48.96) - (end 184.97 49.73) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "bb5619ec-be11-40f8-a99d-5c23f20451c2") - ) - (segment - (start 168.25 56.845) - (end 168.25 57.94) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "c87200c8-3493-4846-bc93-a70399896bae") - ) - (segment - (start 185.45 62.02) - (end 185.45 61.623269) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "ca5f9da0-a243-4bbb-a807-6820fcc0a6e2") - ) - (segment - (start 134.975 61.3) - (end 136.1 61.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "d40b8f1c-fd5d-4feb-a8d4-24f4ca4cb79b") - ) - (segment - (start 134.975 64.3) - (end 136.1 64.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "e1c0b0eb-df6b-4e58-81db-4224e0b39ef4") - ) - (segment - (start 137.8875 69.2875) - (end 138 69.4) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "e8fbd906-136e-4021-b895-b58c1e886e56") - ) - (segment - (start 185.45 61.623269) - (end 185.583269 61.49) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "e9fe0a68-2da9-4e95-bf63-7aed52672393") - ) - (via - (at 137.375 78.3975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "0373d13a-5f75-426d-887e-5a4349032a61") - ) - (via - (at 193.145 63.53) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "0aa7aa72-a240-4cc9-b7cb-90153044f7e4") - ) - (via - (at 183.38 67.045) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "0ae5da56-dff9-4e1a-abb0-e29e25e0574a") - ) - (via - (at 203.885 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "0b53e954-e1d1-4d32-b278-27eeddc21d11") - ) - (via - (at 196.4 68.83) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "1084937e-643a-4bb5-b5c4-e0ad97add2ab") - ) - (via - (at 188.025 61.445) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "1209f0c6-8574-4806-a9ef-d9cec8837ee6") - ) - (via - (at 138.94 79.0975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "134d8f36-8441-490e-988f-c2bd36737cd8") - ) - (via - (at 137.375 79.3975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "14e22f3c-1ec7-490b-84c5-4945b3c8c5ee") - ) - (via - (at 159.67 50.71) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "15151a67-7170-4e60-88d3-fe8e32861923") - ) - (via - (at 138.625 71.1) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "1fa38faf-7e2e-4bdd-b693-23a73ec07b95") - ) - (via - (at 191.819998 85.5925) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "2e174e96-864a-421c-989a-e8fa618a0f7e") - ) - (via - (at 171.33 58.01) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "2f424393-5d73-4cc3-be84-c5f2fef5dceb") - ) - (via - (at 192.48 66.75) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "2fd3fe45-cae3-433d-a66f-b67fcafbe93c") - ) - (via - (at 181.689999 63.855001) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "367bcec5-f135-484f-a628-7339985ee7a8") - ) - (via - (at 155.8825 57.6275) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "367c67df-2620-4727-84dd-f829db765b91") - ) - (via - (at 167.3075 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "40138629-7fb8-4e75-a3e2-fd47061112b1") - ) - (via - (at 132.265 64.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "44a74a49-00b2-496b-ab4a-a7ad27d0d568") - ) - (via - (at 177.1925 52.42) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "45717444-d201-40f0-bd8a-b246e2fee4b7") - ) - (via - (at 181.69 62.82) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "4aeae44b-c4dd-47b2-831d-f33d39a9afe8") - ) - (via - (at 135.265 69.75) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "4c399469-2ab0-4d94-a7dc-87b50b6f5b47") - ) - (via - (at 184.97 49.73) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "4e2ba934-e338-4c06-9fbf-7e30dc84212b") - ) - (via - (at 134.24 92.6325) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "4e8594ab-bb11-4069-b678-303c0073995a") - ) - (via - (at 197.9 69.775) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "4f1a88dd-2afe-4956-a0a0-6451e2b370f4") - ) - (via - (at 170.855 50.63) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "556ec229-c9fa-4dae-b064-948e50981739") - ) - (via - (at 135.14 80.7975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "5b265c70-a652-4bec-972c-3a4239c13f94") - ) - (via - (at 206.46 67.71) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "5db58f0b-d400-4c99-991f-98bac8ec6ada") - ) - (via - (at 196.12 85.575) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "61cbe067-febe-4ab7-9b16-35df53b39547") - ) - (via - (at 196.32 69.975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "63b0cebe-0899-42b9-854e-a0450f81a88b") - ) - (via - (at 136.1 64.3) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "6455fa3f-518e-43d4-a009-1e50c86a3c2d") - ) - (via - (at 168.18 58.01) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "649da209-c139-4ce7-9fa0-389e9d820644") - ) - (via - (at 174.2925 50.12) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "65d0925b-683c-47f6-ac73-5711736cd7de") - ) - (via - (at 183.87 65.58) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "7064ad2b-fe38-4f7c-bb8f-03f89b345086") - ) - (via - (at 131.055 91.4475) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "7079c871-ad82-4f29-af05-f1b4f7c03179") - ) - (via - (at 193.62 85.575) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "70b8be20-abc2-4f96-8027-02a875a9467c") - ) - (via - (at 130.335 57.9) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "721a3263-a3d7-42cd-b839-524a3ea48515") - ) - (via - (at 141.6 69.6) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "73176592-f152-403e-8106-fa1958dd5092") - ) - (via - (at 206.425 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "768bfd29-1ee8-4ea2-91fa-0f1616f8d62f") - ) - (via - (at 177.72 84.555) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "79f47964-3580-46db-8594-d63551ca32dc") - ) - (via - (at 140.84 84.0475) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "7ea12504-09b3-4fd5-a30b-d0360ac4fd3e") - ) - (via - (at 204.9 62) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "7f4cdad1-e3f5-4243-a40b-f5e4a4797ac8") - ) - (via - (at 185.74 67.0375) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "8657bfd9-b32e-41dd-89fc-993db3bc5673") - ) - (via - (at 138 69.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "8d36f8bd-3c63-4d81-a116-ea877f9c174e") - ) - (via - (at 185.583269 61.49) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "8f29132e-50b5-41ad-bee1-85f856a43f36") - ) - (via - (at 139.84 91.2975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "92491253-61e4-4a48-934c-bbe4a818b2df") - ) - (via - (at 132.6 67.5) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "9360bebd-905d-4d35-9b50-a53e34098792") - ) - (via - (at 190.819998 85.575) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "979ccbd2-e6e8-41ee-9086-f1315cff0b7e") - ) - (via - (at 173.39 57.94) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "a257e783-b33d-4d8a-a5c9-1215f0094d5a") - ) - (via - (at 198.805 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "a278af3b-8d7d-47e7-a314-2926b5432266") - ) - (via - (at 183.765 50.165) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "a34e463b-4ca9-42f4-aac7-003a24f457a9") - ) - (via - (at 167.25 57.99) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "a5cf7b5a-a0bf-4240-9641-86e32c17873c") - ) - (via - (at 177.6475 54.18) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "a5d2c340-6a41-4390-a1f0-38f792a735d7") - ) - (via - (at 133.74 80.8975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "ac588e9b-af51-4a83-8b33-97991159d071") - ) - (via - (at 130.385 60.7) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "ac641953-5a09-4b26-99af-9c9001104d3c") - ) - (via - (at 140.84 85.0975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "ae5de20f-c0f3-4074-8d8e-9e696d1dd5f5") - ) - (via - (at 153.04 57.2775) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "b60f4301-8209-4424-8c62-963a8dcb81d5") - ) - (via - (at 132.065 62.7) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "b6a4bdf7-5ee1-4665-a436-c3477845d886") - ) - (via - (at 197.425 49.975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "b74987af-030e-4803-93a2-9ceb1c0bd845") - ) - (via - (at 130.54 80.1725) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "b7df79b6-b7b7-428a-b0f8-d2d9160d4e05") - ) - (via - (at 197.790855 64.04) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "bc328bdf-087b-41a8-ad61-a530729f179f") - ) - (via - (at 139.915 92.8975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "caa6bcd5-7417-464d-9350-290ac218dfc9") - ) - (via - (at 182.155 60.62) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "ce9f0f14-6efc-4b56-bbbb-dd2a58cc8a1f") - ) - (via - (at 173.8625 54.18) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "e0d78275-6771-4381-96d3-c7fee52ce872") - ) - (via - (at 168.84 58.02) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "e2aff099-b7b2-4ba3-8131-7daa8367c873") - ) - (via - (at 132.2 65.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "e3f54bd4-890b-4193-8a83-d770911aa3be") - ) - (via - (at 130.3 70.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "e9322cde-59d5-46c2-953f-f7fad25869fd") - ) - (via - (at 136.1 61.3) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "f63e53cb-60ad-4e82-a549-4638f953f292") - ) - (via - (at 142.082174 87.349724) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "fcf24164-f0d5-4a21-87cf-e112f153344d") - ) - (via - (at 166.27 57.99) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "fee5d241-f755-45e7-ab1c-6bb89537ebe7") - ) - (via - (at 179.52 84.655) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "ff600340-cfca-4267-86f1-cc0442e24ba4") - ) - (segment - (start 158.319999 59.610001) - (end 160.3025 57.6275) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "114c1ae4-b933-4f9b-96d4-e2d6aa72063e") - ) - (segment - (start 158.029239 62.3625) - (end 158.029239 61.71076) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "146e9e65-59dc-40ee-ad96-ecd1176094a6") - ) - (segment - (start 158.319999 61.42) - (end 158.319999 59.610001) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "53318ea7-2d35-480e-a90d-98a03f995abb") - ) - (segment - (start 158.029239 61.71076) - (end 158.319999 61.42) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "5406dba6-62e3-4e6a-9e97-f24e8a9b4e1a") - ) - (segment - (start 160.3025 57.6275) - (end 163.0575 57.6275) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "59867235-9e1b-4800-9577-eb545a0d9487") - ) - (segment - (start 163.825 58.77) - (end 163.825 58.395) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "f889e9f2-5f1c-4202-b642-b76729718f7e") - ) - (segment - (start 163.825 58.395) - (end 163.0575 57.6275) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MOSI") - (uuid "f8bc15cf-4217-4453-909e-796f8968072a") - ) - (segment - (start 157.919999 59.440001) - (end 161.0025 56.3575) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "28cb345d-77a8-4e7b-a3a8-6e9ee9b93195") - ) - (segment - (start 165.75 56.845) - (end 165.2625 56.3575) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "3613cc65-e4e3-4992-bfc7-5fb52efcf622") - ) - (segment - (start 157.919999 61.254315) - (end 157.919999 59.440001) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "693ea3d6-8f52-4e2b-b252-72ea27cb2be1") - ) - (segment - (start 165.2625 56.3575) - (end 163.0575 56.3575) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "9bc84273-ed96-43de-a2c4-364663c9c3ef") - ) - (segment - (start 157.529239 61.645075) - (end 157.919999 61.254315) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "de8a0e13-418e-4582-9954-6a4fcfe9a165") - ) - (segment - (start 157.529239 62.3625) - (end 157.529239 61.645075) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "e8ca8626-91cb-49ed-8014-d5f136e7bcce") - ) - (segment - (start 161.0025 56.3575) - (end 163.0575 56.3575) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_SCK") - (uuid "f5503d83-9d02-43e2-8d76-c91155a788dc") - ) - (segment - (start 191.82 87.26) - (end 191.85241 87.26) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "0bacd54d-672f-45eb-872f-50e60c01deb3") - ) - (segment - (start 191.85241 87.26) - (end 192.07 87.47759) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "0d4cea70-b775-4eb2-adf4-2b5dafeffa8d") - ) - (segment - (start 192.22 84.677238) - (end 192.43 84.887238) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "10894af7-fdd0-4a63-be41-bea27983143a") - ) - (segment - (start 192.07 87.47759) - (end 192.07 88.285) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "5968c60e-890e-4d3c-94ee-b19de43ffd6a") - ) - (segment - (start 191.82 86.7275) - (end 191.82 87.26) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "7d10eb0e-69dc-4439-9351-7d311379c96a") - ) - (segment - (start 191.652762 84.11) - (end 192.22 84.677238) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "9d80c2e4-3dab-4b7a-8b7f-d589d3161294") - ) - (segment - (start 192.43 84.887238) - (end 192.43 86.4175) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "a3e3e502-40e3-4daf-ac48-0f8d1192b7b2") - ) - (segment - (start 191.32 84.11) - (end 191.652762 84.11) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "baf42079-eb37-494f-8ca9-1e5e86367a3c") - ) - (segment - (start 192.43 86.4175) - (end 192.12 86.7275) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "cc694c24-ea3e-4f78-9dad-9f58c0c54d64") - ) - (segment - (start 192.12 86.7275) - (end 191.82 86.7275) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VCORE") - (uuid "d727e2c4-2aa1-4ec3-99a7-20680b3ec286") - ) - (segment - (start 137.0675 69.402238) - (end 137.0675 70.9325) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2O_RAW") - (uuid "0e6d6e07-972e-4d89-b6f4-c9b494abae20") - ) - (segment - (start 136.8875 69.222238) - (end 137.0675 69.402238) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2O_RAW") - (uuid "1140d359-97f4-4976-a333-979d6946971c") - ) - (segment - (start 136.8875 68.2125) - (end 136.8875 69.222238) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2O_RAW") - (uuid "1a08c9b7-36be-4e2d-9a19-323385e0929d") - ) - (segment - (start 137.0675 70.9325) - (end 136.9 71.1) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2O_RAW") - (uuid "4def7453-f6f2-4e6d-9be8-cddf4a0b2157") - ) - (segment - (start 127.95 57.87) - (end 127.95 57.9) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "317d871f-e810-4883-a7d7-015c9ffd1803") - ) - (segment - (start 134.975 64.8) - (end 133.8 64.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "339d97d0-157a-447a-9e2c-a935e5d653d2") - ) - (segment - (start 126.565 81.8975) - (end 126.565 83.66) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "41a77f13-3cc8-429c-a069-d9b95d048ba0") - ) - (segment - (start 126.565 83.66) - (end 126.6025 83.6975) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "49a6ee39-72e6-4bf2-acbe-37421e467a61") - ) - (segment - (start 127.95 57.9) - (end 129.2 57.9) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "7246ec90-87c1-4cd0-92f5-b90cb0d7cbad") - ) - (segment - (start 142.7275 68.2125) - (end 142.865 68.35) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "863967e1-1a99-4fe0-81a1-70f6a9270be8") - ) - (segment - (start 124.25 57.98) - (end 124.25 58.6648) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "9fadf801-64a4-44f5-8fdb-efa4ea7c5e36") - ) - (segment - (start 129.25 60.7) - (end 126.2852 60.7) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "aa8249de-a341-479b-8c62-20e66bfe7748") - ) - (segment - (start 133.8 64.8) - (end 133.4 64.4) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "c0d925e2-8134-4ec2-ae0e-25c376650956") - ) - (segment - (start 124.25 58.6648) - (end 126.2852 60.7) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "cd309c7b-f5ef-4c82-bf33-8ebd69893d95") - ) - (segment - (start 126.79 56.71) - (end 127.95 57.87) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "db4cc669-b7f3-4fd0-8fc7-24ef10920dea") - ) - (segment - (start 141.8875 68.2125) - (end 142.7275 68.2125) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_3V3") - (uuid "dd6519fa-a97e-43f3-9422-7273fa5f10d2") - ) - (segment - (start 139.177992 85.794151) - (end 138.924643 86.0475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "0f2b439d-fe05-42ef-a9af-2757b50c911a") - ) - (segment - (start 138.924643 86.0475) - (end 138.3775 86.0475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "0f724b12-215f-4987-98db-888cc6958faf") - ) - (segment - (start 140.097231 86.174912) - (end 139.71647 85.794151) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "1546a201-6263-4f59-a052-6aae927bdd02") - ) - (segment - (start 140.097231 86.737493) - (end 140.097231 86.174912) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "47a50418-aed0-4c10-b427-027788cc9f0e") - ) - (segment - (start 154.854239 61.669929) - (end 154.854239 61.684239) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "547b6c18-f88f-4ac7-ba76-918309aa5787") - ) - (segment - (start 155.029239 61.859239) - (end 155.029239 62.3625) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "5d612f9e-65f9-4fcb-96eb-c46c62d2f5a4") - ) - (segment - (start 153.99 60.674318) - (end 154.654239 61.338557) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "71091702-496a-4967-8d80-4b2daca1777a") - ) - (segment - (start 153.99 57.2775) - (end 153.99 60.674318) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "772d9fe1-d6dd-4f85-8b05-95f00ee0f674") - ) - (segment - (start 154.854239 61.684239) - (end 155.029239 61.859239) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "97ef22d7-2432-4891-98a5-40b1e4c9e29e") - ) - (segment - (start 154.654239 61.338557) - (end 154.654239 61.404243) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "a9539444-a964-44f0-a591-0e3eb1185882") - ) - (segment - (start 139.71647 85.794151) - (end 139.177992 85.794151) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "c494a55c-5bcc-4b4b-a629-c5e388ad7b30") - ) - (segment - (start 141.707238 88.3475) - (end 140.097231 86.737493) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "d1cb49c0-8b37-45d4-940c-6af9c01b85f3") - ) - (segment - (start 154.754239 61.569929) - (end 154.854239 61.669929) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "dc64b75c-88d1-4b38-a5c1-5f006824d702") - ) - (segment - (start 154.754239 61.504243) - (end 154.754239 61.569929) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "ddfde0b5-7e46-45ca-b7af-cbcfafe75d9f") - ) - (segment - (start 154.654239 61.404243) - (end 154.754239 61.504243) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "e065ef18-d647-4e28-87db-603b0ce8e6d8") - ) - (segment - (start 184.45 62.40136) - (end 184.03136 62.82) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "02921d4f-7d73-419c-b13f-4e18d987edea") - ) - (segment - (start 192.55 70) - (end 192.575 70.025) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "0964d870-e449-4408-b9b2-756bffa20620") - ) - (segment - (start 183.95 62.90136) - (end 183.95 63.5) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "17f0b5df-dfd8-4eba-a644-d00890c8c287") - ) - (segment - (start 189.48 69.95) - (end 189.23 70.2) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "1be503fd-68c7-4215-b566-fa1620e8e31e") - ) - (segment - (start 183.95 63.5) - (end 183.95 64.365) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "1d844cfd-f9c9-49fb-be7b-0f8c46427214") - ) - (segment - (start 184.03136 62.82) - (end 182.825 62.82) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "22450b0a-eb23-41dd-86fe-73aae7354d58") - ) - (segment - (start 192.65 69.95) - (end 189.48 69.95) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "29b171d5-0a1a-4eaf-b85c-5ea4bd262eb9") - ) - (segment - (start 181.95 68.74) - (end 181.95 66.365) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "2afc4b64-6cb5-445e-8898-c3c7cf4ca8cf") - ) - (segment - (start 184.45 61.63864) - (end 185.46864 60.62) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "36ee8705-e32e-4efb-aecc-8e61b013b8d3") - ) - (segment - (start 184.4 62.45136) - (end 183.95 62.90136) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "41f45a9e-5c1b-4d95-afa8-b3199e490c5f") - ) - (segment - (start 185.46864 60.62) - (end 185.62 60.62) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "55c9fb55-b810-4875-b176-ebc6b7b5e827") - ) - (segment - (start 183.38 70.17) - (end 181.95 68.74) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "69addd87-79c3-4c78-80f7-d4dbb7f191ec") - ) - (segment - (start 183.95 64.365) - (end 182.735 65.58) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "76e59e4d-3e35-4928-be4a-7ee9bf0ff49e") - ) - (segment - (start 184.45 62.02) - (end 184.45 62.40136) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "a9c209ad-483f-4d2f-8e22-fc6d013b5dc2") - ) - (segment - (start 184.4 62.07) - (end 184.4 62.45136) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "af396b25-4ea5-4242-800b-daec89d05ca7") - ) - (segment - (start 183.41 70.2) - (end 183.38 70.17) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "b8db4172-1fa2-4867-8d7c-0edadf8a6c44") - ) - (segment - (start 184.45 62.02) - (end 184.4 62.07) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "bd60fc55-10b3-4007-9f71-a5a03f1f49fd") - ) - (segment - (start 189.23 70.2) - (end 183.41 70.2) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "c802c15b-5c78-4b9d-b3ec-8b84333993d9") - ) - (segment - (start 181.95 66.365) - (end 182.735 65.58) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "f14ee193-2346-47f4-aaf6-56dbcea5e642") - ) - (segment - (start 184.45 62.02) - (end 184.45 61.63864) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "fc8484e8-7685-457a-8481-93568c612304") - ) - (segment - (start 190.93 65.5) - (end 193.195 65.5) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "5bd634d2-60fc-48ca-b5e2-e7e1e34c83a9") - ) - (segment - (start 192.48 67.7) - (end 192.833106 67.7) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "63943c17-586d-47fb-8bec-2ec9dd2ae339") - ) - (segment - (start 189.26 67.23) - (end 189.23 67.2) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "682db518-49a2-4966-a187-c63399ff50e4") - ) - (segment - (start 193.405 65.71) - (end 193.195 65.5) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "7d32ccad-93ab-404d-b4c7-736a8cb9009f") - ) - (segment - (start 189.23 67.2) - (end 190.93 65.5) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "8b7b37bc-3f5d-4d47-bbdf-8dad565138c6") - ) - (segment - (start 192.833106 67.7) - (end 193.405 67.128106) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "c95dcd91-fa54-408f-ab67-d7d0bbf4f27b") - ) - (segment - (start 193.405 67.128106) - (end 193.405 65.71) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "eb8d8b2f-f7a9-4824-9d02-cb122593b0ab") - ) - (segment - (start 199.17 59.42) - (end 199.17 62.41) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "03c2c57d-8d8f-4c65-af13-8f16bbca9895") - ) - (segment - (start 197.9 67.7) - (end 197.9 65.9475) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "04d14831-dbfd-4a37-b4ed-d5b74c0e4be5") - ) - (segment - (start 199.17 62.41) - (end 201.06 64.3) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "2d63af2c-9deb-4f89-b712-b9de9473d37a") - ) - (segment - (start 197.91 67.71) - (end 197.9 67.7) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "64a89953-636f-4bf1-bb11-a00fd8bdb275") - ) - (segment - (start 194.055 67.7) - (end 193.105 68.65) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "9c0befc7-d27b-4254-9499-94125be0df70") - ) - (segment - (start 198.85 59.1) - (end 199.17 59.42) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "a52c1bbf-c322-401a-8686-d3ec45f04017") - ) - (segment - (start 201.06 64.3) - (end 201.06 67.71) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "b2e6d080-90b2-41db-81f3-f442c3beb309") - ) - (segment - (start 197.9 65.9475) - (end 197.91 65.9375) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "b62fb1ce-ffd2-433d-8cf4-c37229d60405") - ) - (segment - (start 194.99 67.7) - (end 194.055 67.7) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "f006ff6a-a0f0-4c38-836e-b794ae5c9c3a") - ) - (segment - (start 201.06 67.71) - (end 197.91 67.71) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "f248d1e0-1471-455c-a2f4-c89bac2a7502") - ) - (segment - (start 193.845 69.95) - (end 195.1 69.95) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "199daed2-c3f3-46a7-83b7-0f40c21aea79") - ) - (segment - (start 194.99 69.84) - (end 195.125 69.975) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "a131afc7-a3c0-4252-b48a-8ab491b296ff") - ) - (segment - (start 194.9875 68.6525) - (end 194.99 68.65) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "ca9b1830-976a-48cd-a4a9-f5263b0928da") - ) - (segment - (start 194.99 68.65) - (end 194.99 69.84) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "eb42dfe1-3322-4a7e-b327-b4764f1f62e7") - ) - (segment - (start 194.3125 65.4) - (end 194.3125 66.0725) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VBST)") - (uuid "4a76d34a-b27b-4181-80d0-b128b451b2af") - ) - (segment - (start 194.3125 66.0725) - (end 194.99 66.75) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VBST)") - (uuid "cbda9e78-2719-481f-ae12-e6efaa2cbaf0") - ) - (segment - (start 134.775 41.312528) - (end 135.187528 40.9) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "0d09734a-eb27-4f65-8786-1aa24db80ea3") - ) - (segment - (start 163.720686 39.625) - (end 163.715686 39.62) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "0dd4e515-ea62-4126-a4a6-13d6498e0989") - ) - (segment - (start 136.92998 49.17998) - (end 141.950019 49.17998) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "1bbe662e-94e0-475e-82bd-e749816a8b79") - ) - (segment - (start 163.715686 39.62) - (end 149.0175 39.62) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "2090a53d-a1f0-40de-8c7e-9f7f120cfb08") - ) - (segment - (start 201.345 40.045) - (end 201.345 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "2e010a33-3086-4b56-9522-85fb4e1f0a73") - ) - (segment - (start 197.4 40.7) - (end 197.4 42.5325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "38fe92c3-28a1-4565-b028-826312be64fb") - ) - (segment - (start 147.2 41.765552) - (end 147.2 40.775001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "3c66f1d4-60f0-49d7-a3e4-c1ac654d9188") - ) - (segment - (start 147.809448 42.375) - (end 147.2 41.765552) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "3d7d1e00-5117-414a-b4e3-89a8d97ec178") - ) - (segment - (start 200.93 39.63) - (end 201.345 40.045) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "45943ef7-60ec-4935-9108-4297c5791811") - ) - (segment - (start 192.195685 39.63) - (end 192.190685 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "4e65e352-640f-452d-be75-9495ca2f462d") - ) - (segment - (start 141.950019 49.17998) - (end 142.164999 48.964999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "4eb02b41-1461-4e0e-9b83-ce1eeef79fdd") - ) - (segment - (start 168.56 40.14) - (end 168.045 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "53896a49-7d77-4c0d-921b-d76bf5cbe31d") - ) - (segment - (start 199.379999 39.63) - (end 200.93 39.63) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "58ba58f2-b0ad-46fc-a8dc-c5a486ce5c56") - ) - (segment - (start 147.500001 40.475) - (end 148.1625 40.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "58e3624d-37f4-4bba-9c8e-643724704767") - ) - (segment - (start 199.379999 39.63) - (end 200.075 40.325001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "667e0e3c-ddf7-4b72-a989-b970b9fc1cfd") - ) - (segment - (start 168.56 41.41) - (end 168.56 40.14) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "6b785a51-1867-4882-aa31-cb2386322f96") - ) - (segment - (start 196.4 39.7) - (end 196.5 39.8) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "71334354-51ad-432b-9e0d-451d0937b814") - ) - (segment - (start 196.33 39.63) - (end 192.195685 39.63) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "79fe58bd-7c84-4cb2-ac95-5cdb13e61628") - ) - (segment - (start 141.9325 40.9) - (end 141.9325 42.1325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "7a7f5ffe-8daf-41c5-880c-dbf46836b7de") - ) - (segment - (start 147.2 40.775001) - (end 147.500001 40.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "8c716a50-2627-42ec-9f1e-7168523b99f8") - ) - (segment - (start 206.999999 39.63) - (end 207.695 40.325001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "92db1937-b330-4650-9c21-f0013bcb9085") - ) - (segment - (start 143 48.129999) - (end 143 47.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "9cbe9d56-82ed-4cb9-b39c-3dbc05196572") - ) - (segment - (start 142.2 42.4) - (end 142.677756 42.4) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a39a1e52-8169-45b3-a01f-e7204e9779c9") - ) - (segment - (start 134.775 44.725) - (end 134.775 46.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a3bf193d-4b88-40d4-ac7b-d4301ae0e292") - ) - (segment - (start 207.695 40.325001) - (end 207.695 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a3ff147a-3624-4e19-9d79-1a45158cd212") - ) - (segment - (start 135.187528 40.9) - (end 141.9325 40.9) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a4920d50-1d02-4567-b54d-54cf8e95eff1") - ) - (segment - (start 134.775 44.725) - (end 134.775 41.312528) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a7d4882a-108d-4aa0-afb4-7d645b809ff5") - ) - (segment - (start 148.1625 42.375) - (end 147.809448 42.375) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "b5f7ddc3-0823-497f-9fa5-f05911c3b0d8") - ) - (segment - (start 196.4 39.7) - (end 197.4 40.7) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "b85f6ac1-7a8d-489c-a0e9-0e2b64537b16") - ) - (segment - (start 138.375 46.475) - (end 138.375 46.925002) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "bc776eea-4713-4b40-9ae7-a9ef59aaa28b") - ) - (segment - (start 196.33 39.63) - (end 199.379999 39.63) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "c0e54833-14fd-47f2-9f7e-a70a9907882f") - ) - (segment - (start 142.379998 48.75) - (end 142.164999 48.964999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "c898ab2b-6124-407c-82b6-a9c5c9b9ab6e") - ) - (segment - (start 192.190685 39.625) - (end 168.045 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d0bff989-ad89-44d5-a7d0-c65decededd7") - ) - (segment - (start 144.602756 40.475) - (end 148.1625 40.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d4075899-8ef1-4a65-beaa-99fed8be4f7d") - ) - (segment - (start 141.9325 42.1325) - (end 142.2 42.4) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d4e0b78a-de23-434c-a776-2e0ae2a0d36e") - ) - (segment - (start 168.045 39.625) - (end 163.720686 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d55b0ef5-ef45-44d5-a3d7-9b1bc4d290b5") - ) - (segment - (start 200.075 40.325001) - (end 200.075 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d93f58c2-d043-4f29-ae9d-a3c4d0cd5a95") - ) - (segment - (start 196.4 39.7) - (end 196.33 39.63) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "dde417f0-1a72-4d9a-9b0e-546aa713089e") - ) - (segment - (start 142.677756 42.4) - (end 144.602756 40.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "df66e90a-ff63-4b40-8327-407496807f20") - ) - (segment - (start 134.775 47.025) - (end 136.92998 49.17998) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "e623a784-c38b-4204-a2af-08c4eefc161b") - ) - (segment - (start 138.375 44.725) - (end 138.375 46.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "ed39f85e-6f9c-4d57-91c0-a5d487f497e2") - ) - (segment - (start 134.775 44.725) - (end 134.775 47.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "f7523a70-cf3c-485f-b74f-9d490989f795") - ) - (segment - (start 138.375 46.925002) - (end 138.449998 47) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "f7890ab2-94f3-447b-8f1c-99cd9af30f0c") - ) - (segment - (start 142.164999 48.964999) - (end 143 48.129999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "fccc4f1a-3023-44bb-be51-b23dab2bae88") - ) - (segment - (start 149.0175 39.62) - (end 148.1625 40.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "fde5ed94-a7d2-4d8c-a6f2-50fbfb9279cb") - ) - (segment - (start 200.93 39.63) - (end 206.999999 39.63) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "ffff028f-5d43-4dc0-b6ba-117d8d6a0204") - ) - (via - (at 136.92998 49.17998) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "7517c3d2-4273-41a3-be1d-82a31d1c79d5") - ) - (via - (at 138.449998 47) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "bd5cbc76-12e7-4f83-9742-7c3e7028cb45") - ) - (segment - (start 138.449998 47.659962) - (end 136.92998 49.17998) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "6037b791-c90a-4b63-9bc4-f91a77c877bb") - ) - (segment - (start 138.449998 47) - (end 138.449998 47.659962) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "f6a569dc-e772-436e-b971-a3805eb28117") - ) - (segment - (start 139.175 44.725) - (end 139.175 45.575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "45060fda-2c5e-4ee8-beb3-ba3007fbd4f0") - ) - (segment - (start 139.175 46.475) - (end 139.175 45.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "45294e5a-f7f9-4efc-abdc-b48ee208d7be") - ) - (segment - (start 133.975 45.6) - (end 133.975 46.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "50835a77-1914-43d3-8ef5-216d5456c678") - ) - (segment - (start 197.43 43.67) - (end 197.43 45.925) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "6f778b79-bbc8-48d9-a1ff-87e223747e52") - ) - (segment - (start 139.175 45.625) - (end 139.2 45.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "941ab86d-a7e8-493d-826a-4eaa43e82ba4") - ) - (segment - (start 139.175 45.575) - (end 139.2 45.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "a8450f31-36d9-43be-bb52-a1d725c1a4b1") - ) - (segment - (start 133.975 44.725) - (end 133.975 45.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "ac4436f7-d64b-4d77-b831-ff80e3976e2e") - ) - (segment - (start 197.42 43.66) - (end 197.43 43.67) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "d5aff9d6-82b9-4848-955a-5527a18f6624") - ) - (via - (at 159.67 41.41) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "1b4f5c0e-b316-4493-baea-02a4990f9d75") - ) - (via - (at 184.5 41.7) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "2218d476-110d-49ae-95a4-478c9273e2ba") - ) - (via - (at 206.425 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "23922cb7-3fec-4ec2-ad07-fe60a6226dc8") - ) - (via - (at 139.2 45.6) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Usb Connector/USB_GND") - (uuid "270b619c-9458-4f5e-8fae-d951f405b375") - ) - (via - (at 184.2 45.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "4dc1afba-5809-431a-a35a-02ab72d85b36") - ) - (via - (at 143 44.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "572703a5-5561-4e8e-86d3-c683b1e66b50") - ) - (via - (at 197.42 43.66) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Usb Connector/USB_GND") - (uuid "5b841a23-2ab1-4228-81ac-68c22f5d8ba2") - ) - (via - (at 133.975 45.6) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "617d22a3-819a-4466-b90e-02f3a212bd21") - ) - (via - (at 148.1625 41.425) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "6211ef82-4850-499d-9991-a8128c75e8da") - ) - (via - (at 143.0675 40.9) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "900645b8-ce67-407f-907a-270779e0e690") - ) - (via - (at 167.29 41.41) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "b8d107ef-b646-442b-9b91-bf6045f74f8c") - ) - (via - (at 144.275 42.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "c1a60a97-dfdf-48ac-bd3d-8a3582727cde") - ) - (via - (at 158.2 41.7275) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "d4138ac5-a2f4-465b-bc5c-597731790296") - ) - (via - (at 198.805 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "d5975161-027a-442f-b547-414bdbefea5c") - ) - (via - (at 152.3 42.225) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "e9f2eea6-67f1-427c-bd1b-b4b7c966e548") - ) - (via - (at 203.885 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "fbd6f959-6f9b-4c02-b696-14dabfcf8717") - ) - (segment - (start 184.5 42.1) - (end 184.5 41.7) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "45243923-77b0-491e-86cd-3a9b114dcb06") - ) - (segment - (start 184.2 42.4) - (end 184.5 42.1) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "7742feb2-92cd-462e-9249-f3770f5f80c1") - ) - (segment - (start 184.2 42.4) - (end 184.2 45.4) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "91a3f7e1-822e-4e11-89c8-82608bed69f9") - ) - (segment - (start 136.24 81.5975) - (end 135.69 82.1475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "01c4bc0f-2fd3-45d6-ab73-8d34513e7681") - ) - (segment - (start 136.24 78.3975) - (end 136.24 81.5975) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "08b82bf8-5f00-40b1-8838-e723f8915a34") - ) - (segment - (start 135.14 78.4025) - (end 136.235 78.4025) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "87f3f032-3ba0-4def-887f-5aa749ce89cf") - ) - (segment - (start 136.235 78.4025) - (end 136.24 78.3975) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "91cc3c19-1231-4816-8eea-3d6cadadeece") - ) - (segment - (start 135.69 82.1475) - (end 135.69 83.36) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "d915da53-095d-4fac-93be-1442754dc6ba") - ) - (segment - (start 185.905 63) - (end 185.905 62.032528) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "0c3b39a7-2d4f-4ea1-b448-55b22c676ad6") - ) - (segment - (start 154.454239 61.835614) - (end 154.354239 61.735614) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "354022f2-b320-47e5-ba24-a77e85424113") - ) - (segment - (start 154.454239 62.2875) - (end 154.454239 61.835614) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "40a4855e-d21f-4a19-ba27-3e8e21f69bd7") - ) - (segment - (start 139.39 86.5475) - (end 139.44 86.4975) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "4d81ef1f-236a-4627-b397-22ff78e1d43a") - ) - (segment - (start 154.529239 62.3625) - (end 154.454239 62.2875) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "4e0ef9fb-dd15-4aa9-8274-059941c15d10") - ) - (segment - (start 154.354239 61.735614) - (end 154.354239 61.669928) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "531cb152-97dc-4eca-8917-869c2f2fcb8a") - ) - (segment - (start 186.525 63.62) - (end 185.905 63) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "559c2036-09a8-416e-bac5-3dd3a84ed6e7") - ) - (segment - (start 185.905 62.032528) - (end 186.525 61.412528) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "55ebe99d-4730-4031-866f-aa6c7950f79a") - ) - (segment - (start 186.405 63.5) - (end 186.525 63.62) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "70304870-cac8-4230-bb61-b8dc1d4d06e6") - ) - (segment - (start 154.254239 61.504242) - (end 153.586412 60.836416) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "7d360171-d7a8-4cc3-8990-7d98bf521acc") - ) - (segment - (start 138.3775 86.5475) - (end 139.39 86.5475) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "8b9f7b8e-381d-4ccc-8076-8fe4d40e1d06") - ) - (segment - (start 185.45 63.5) - (end 186.405 63.5) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "aabb1f7c-0fd4-4c8c-a523-dac5d38d8c5c") - ) - (segment - (start 154.254239 61.569928) - (end 154.254239 61.504242) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "d6425f75-5e87-4a15-bb92-83430a419db3") - ) - (segment - (start 153.586412 60.836416) - (end 153.586412 60.833588) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "d9cc304f-7136-4679-bf7b-27de9f4c5929") - ) - (segment - (start 154.354239 61.669928) - (end 154.254239 61.569928) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "f5f4edf2-78ea-47f2-90cf-2a52e8fc734f") - ) - (via - (at 186.525 61.412528) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/GC_ON") - (uuid "360ceeaf-bc3f-4ce0-8f1c-326aea2d40c0") - ) - (via - (at 139.44 86.4975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/GC_ON") - (uuid "8e6acd68-e0e5-48e2-938a-61c0f6d2ee1e") - ) - (segment - (start 195.12 87.493884) - (end 195.12 88.335) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-REF)") - (uuid "1b37cf4b-29b8-483b-93ad-efbf6928bb3e") - ) - (segment - (start 195.12 86.844314) - (end 195.279099 87.003413) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-REF)") - (uuid "57a4a0ac-611d-460b-b16e-298a1dbc1f31") - ) - (segment - (start 195.279099 87.334785) - (end 195.12 87.493884) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-REF)") - (uuid "aa681293-6ef0-4c83-a541-74d1b89baefe") - ) - (segment - (start 195.279099 87.003413) - (end 195.279099 87.334785) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-REF)") - (uuid "d018e121-c77f-43f3-92d0-105664485087") - ) - (segment - (start 175.8425 53.51) - (end 176.5125 54.18) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "1d9d6dc9-0105-4fad-ba16-ffd9561273c2") - ) - (segment - (start 175.8425 51.47) - (end 175.8425 53.51) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "25948daf-bf98-43a0-ac2e-db48a69cb20c") - ) - (segment - (start 176.5125 54.18) - (end 175.4725 55.22) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "7429f5e5-f31a-44c6-bfb9-fcf6e551bf85") - ) - (segment - (start 172.75 56.03759) - (end 172.75 56.845) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "79251b6c-b808-4cf5-a720-19e23de15ba0") - ) - (segment - (start 177.1925 50.12) - (end 175.8425 51.47) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "896f6a80-03ba-409f-bf0d-06aaeb1cdcef") - ) - (segment - (start 173.56759 55.22) - (end 172.75 56.03759) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "bd1c8bda-2b5b-413e-9734-d7314d2cc015") - ) - (segment - (start 175.4725 55.22) - (end 173.56759 55.22) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "fe54462b-7a2a-4fa0-827f-fdf3e75f156c") - ) - (segment - (start 174.2925 53.475) - (end 174.9975 54.18) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCO)") - (uuid "23741302-2903-49bc-9a26-28c6d9c57567") - ) - (segment - (start 174.9975 54.18) - (end 174.3875 54.79) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCO)") - (uuid "355e4c30-829a-4d9d-8850-370d91a444b7") - ) - (segment - (start 172.25 55.971905) - (end 172.25 56.845) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCO)") - (uuid "42e81dda-5d90-4a19-8566-ce4e9d5d7563") - ) - (segment - (start 173.431905 54.79) - (end 172.25 55.971905) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCO)") - (uuid "5d2e4528-dd13-4feb-b242-f8ed753a7a20") - ) - (segment - (start 174.3875 54.79) - (end 173.431905 54.79) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCO)") - (uuid "bbd63b19-8470-43d5-8c35-4c9bdcda8da0") - ) - (segment - (start 174.2925 52.42) - (end 174.2925 53.475) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCO)") - (uuid "bef3e9ce-87da-422e-88bf-7c2809a47fe0") - ) - (segment - (start 196.12 88.335) - (end 196.12 86.71) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPHY)") - (uuid "05a4de3e-b04f-4e02-90be-8cbe8bfce3ac") - ) - (segment - (start 196.12 86.71) - (end 196.73 86.1) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPHY)") - (uuid "53e1cb36-7efd-4307-8e5c-0eddc658eaf4") - ) - (segment - (start 196.73 84.52) - (end 196.42 84.21) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPHY)") - (uuid "72f7fce6-813d-41a5-b05b-2747bf9d32af") - ) - (segment - (start 196.73 86.1) - (end 196.73 84.52) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPHY)") - (uuid "7f8e7fcb-eb82-4a1f-bfea-dfb99387d11c") - ) - (segment - (start 170.235 56.375) - (end 170.26 56.4) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "23ad95db-95f8-463f-8fca-2ea109ca1310") - ) - (segment - (start 194.62 88.335) - (end 194.62 87.36163) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "404d0d7e-0423-44ac-91da-2334119b3309") - ) - (segment - (start 162.2275 50.61) - (end 162.2275 51.243603) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "550d32cf-c0f7-4661-bf50-9fd85deed0d6") - ) - (segment - (start 170.26 56.4) - (end 170.26 57.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "6374c1c6-436e-413f-a919-3df5bc455304") - ) - (segment - (start 162.2275 51.243603) - (end 163.153897 52.17) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "84e7322b-88a1-4c1d-a2a6-db9026d76be0") - ) - (segment - (start 194.62 87.36163) - (end 194.67998 87.30165) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "997c4587-3aeb-49da-aa52-eb7a55008544") - ) - (segment - (start 170.235 53.639315) - (end 170.235 56.375) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "a0f16453-9f65-405c-a753-6c4f6015870e") - ) - (segment - (start 163.153897 52.17) - (end 168.765686 52.17) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "c6b6fcdf-36e7-4603-8aab-7ba06c98206d") - ) - (segment - (start 168.765686 52.17) - (end 170.235 53.639315) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DN") - (uuid "ca8e39fe-33e3-45d2-bd55-47f83904f27f") - ) - (segment - (start 162.404448 52.57) - (end 168.6 52.57) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "07d8c740-9e88-418b-a2a3-7577a912e6f2") - ) - (segment - (start 168.6 52.57) - (end 169.785 53.755) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "23b79761-4846-4d8a-b54c-1535891388b3") - ) - (segment - (start 160.9575 50.61) - (end 160.94 50.6275) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "2bc41463-76df-438e-af47-9e0c8e70b78e") - ) - (segment - (start 194.12 88.335) - (end 194.12 87.225262) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "458736d9-1ca2-4f91-b3f3-25bb8ddea18e") - ) - (segment - (start 194.23 87.115262) - (end 194.23 83.76384) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "590db361-55de-40fa-9137-21fcb9184928") - ) - (segment - (start 160.94 51.105552) - (end 162.404448 52.57) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "5d52091d-72c3-482a-8aa1-27e0df99f1ee") - ) - (segment - (start 160.94 50.6275) - (end 160.94 51.105552) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "6e54c920-4c1f-48f3-8f5f-77b8e1bac334") - ) - (segment - (start 169.785 53.755) - (end 169.785 56.375) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "6ffe0423-ff9e-416b-96c3-3c6374a6c944") - ) - (segment - (start 169.76 56.4) - (end 169.76 57.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "c3b325c5-5e34-469f-9185-b44576f393cf") - ) - (segment - (start 194.12 87.225262) - (end 194.23 87.115262) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "ee7830dd-193f-48bc-9e16-cd856b50444d") - ) - (segment - (start 169.785 56.375) - (end 169.76 56.4) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/FT_DP") - (uuid "f428cf33-dc41-4434-a444-3043be621ae4") - ) - (segment - (start 193.01 86.1) - (end 193.62 86.71) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPLL)") - (uuid "41005a1b-99e2-4f55-8391-2f5869e02cb8") - ) - (segment - (start 193.07 84.11) - (end 193.01 84.17) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPLL)") - (uuid "55916cb3-6748-47a4-8c38-907035e23dee") - ) - (segment - (start 193.62 88.335) - (end 193.62 86.71) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPLL)") - (uuid "6fd813f8-a76c-4d1c-809f-9962f1ef7f1d") - ) - (segment - (start 193.01 84.17) - (end 193.01 86.1) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-VPLL)") - (uuid "943594fa-a394-450f-b1d5-169cce53be66") - ) - (via - (at 193.62 86.71) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "Net-(U8-VPLL)") - (uuid "3ab24ea7-995e-4a77-bb35-29ab08efa1c1") - ) - (segment - (start 190.82 86.71) - (end 190.82 87.26) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-~{RESET})") - (uuid "0b2f735d-321a-4a7a-853e-b991095cd57e") - ) - (segment - (start 190.8175 86.7075) - (end 190.82 86.71) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-~{RESET})") - (uuid "20693d85-2a02-4b6a-b80c-418d1c1f0a6f") - ) - (segment - (start 190.85241 87.26) - (end 191.07 87.47759) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-~{RESET})") - (uuid "6239d17c-cd1b-4418-8093-4636a6e44742") - ) - (segment - (start 190.82 87.26) - (end 190.85241 87.26) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-~{RESET})") - (uuid "69740d16-82bc-4431-a89b-637e7e4632d2") - ) - (segment - (start 191.07 87.47759) - (end 191.07 88.285) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-~{RESET})") - (uuid "d167e980-6070-4448-9b7f-dd7dd39a09b5") - ) - (segment - (start 189.82 86.7075) - (end 190.8175 86.7075) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-~{RESET})") - (uuid "de46d7a9-b5ea-4a87-8f15-4b6a4d3db41f") - ) - (segment - (start 135.69 90.686886) - (end 136.24 91.236886) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CRESET") - (uuid "2aaf3a4e-1fc3-464f-80eb-de7be3f5a4ef") - ) - (segment - (start 135.69 90.235) - (end 135.69 90.686886) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CRESET") - (uuid "f4742c84-eae0-4b2e-ac4d-739fc35b3f22") - ) - (segment - (start 136.24 91.236886) - (end 136.24 91.4975) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CRESET") - (uuid "fdef2a1b-51ad-4f10-89a2-716068708636") - ) - (via - (at 136.24 91.4975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/CRESET") - (uuid "fc446342-20a8-42af-beca-d27d01832191") - ) - (segment - (start 135.19 90.235) - (end 135.19 91.4475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CDONE") - (uuid "c758426b-4077-4c64-b48c-9b056d066014") - ) - (segment - (start 135.19 91.4475) - (end 135.24 91.4975) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CDONE") - (uuid "df9833c2-ca01-454f-bc88-53316c39f404") - ) - (via - (at 135.24 91.4975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/CDONE") - (uuid "4bb9b9d1-a7d4-4b19-8dfd-a5a48e196b20") - ) - (segment - (start 165.51759 69.27) - (end 160.36 64.11241) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "2433e325-ef33-47d0-bab7-cb4c6b6fabfb") - ) - (segment - (start 160.36 64.11241) - (end 160.36 60.94) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "25f575b3-c5ba-4c96-9929-693ea9802760") - ) - (segment - (start 160.36 60.94) - (end 160.07962 60.65962) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "3efa5772-89d7-4482-bb6a-682d01919004") - ) - (segment - (start 168.25 69.00241) - (end 167.98241 69.27) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "70bc8994-6bb8-4cfc-a453-904ec5e26ab6") - ) - (segment - (start 167.98241 69.27) - (end 165.51759 69.27) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "9f8d8533-6f15-4835-b559-28d89a0d0cc5") - ) - (segment - (start 156.029239 61.45) - (end 156.18 61.299239) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "a72249e6-dde9-4aba-bc25-b50adc0aa257") - ) - (segment - (start 156.029239 62.3625) - (end 156.029239 61.45) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "b14c58f9-3dc3-49db-9ed5-44b7a8429c59") - ) - (segment - (start 156.18 60.49) - (end 156.345 60.325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "da862abf-8790-4069-8e46-98e16dc10791") - ) - (segment - (start 156.18 61.299239) - (end 156.18 60.49) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "eb3cb757-ac65-47d0-857c-5ff723f4390c") - ) - (segment - (start 168.25 68.195) - (end 168.25 69.00241) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "f1cdbf4d-3727-4e62-abc7-eef21e88e93d") - ) - (via - (at 160.07962 60.65962) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "6188be3d-3726-4936-8c1c-c93bd244a262") - ) - (via - (at 138.3775 89.6725) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "899e32d7-f6fd-4a96-af11-bf01542ea90a") - ) - (via - (at 156.345 60.325) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "d8dc31f0-28d1-4bba-aa06-18f536dbc648") - ) - (segment - (start 159.745 60.325) - (end 156.345 60.325) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "7f9e3219-ae04-4c78-b830-849d393a5f4b") - ) - (segment - (start 160.07962 60.65962) - (end 159.745 60.325) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "876242c9-7238-4059-a1bf-301394d6444f") - ) - (segment - (start 155.529239 61.183401) - (end 155.461813 61.115975) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "13254c7d-2baf-45c9-8dd4-f2b2e5f9f687") - ) - (segment - (start 155.529239 62.3625) - (end 155.529239 61.183401) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "230d32c5-90c3-4a04-aeb5-ae2004473a51") - ) - (segment - (start 139.421389 87.43535) - (end 139.89 87.43535) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "3fdc9e2a-89b0-4cc6-9181-13d81ff5356f") - ) - (segment - (start 159.96 64.278095) - (end 159.96 61.74) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "54dc92a8-1804-40b4-8ca3-9de6f8b2bddf") - ) - (segment - (start 168.148924 69.672) - (end 165.353905 69.672) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "5f8e2363-aa42-424f-b0d1-e74c683ab33d") - ) - (segment - (start 139.033539 87.0475) - (end 139.421389 87.43535) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "64ba7fb0-2698-48cc-b7d2-48a8a1ac80f2") - ) - (segment - (start 168.75 68.195) - (end 168.75 69.070924) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "6d6cf0b5-eb61-43fc-b86b-266a8aadf3e0") - ) - (segment - (start 165.353905 69.672) - (end 159.96 64.278095) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "755c7eb6-1dc7-4b6b-9b97-4e413de55b15") - ) - (segment - (start 138.3775 87.0475) - (end 139.033539 87.0475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "9aa366a8-3725-4ae6-bfce-df16d1672406") - ) - (segment - (start 168.75 69.070924) - (end 168.148924 69.672) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "9c04844d-46dd-4e11-82c1-01ea54d22b3a") - ) - (segment - (start 159.96 61.74) - (end 159.47962 61.25962) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "e8b9f03b-a3bf-4729-afbb-96e114990ada") - ) - (via - (at 139.89 87.43535) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "297fd782-3796-496c-bbc0-feea89df4782") - ) - (via - (at 159.47962 61.25962) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "2d2fd7ce-b664-45ea-a5c8-bc74978c34cf") - ) - (via - (at 155.461813 61.115975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "d50f87a4-32c1-4d19-ae1a-3eb0d63691d6") - ) - (segment - (start 156.349239 61.01) - (end 156.243264 61.115975) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "229a6b00-89c2-4117-b899-f874b8d054f4") - ) - (segment - (start 159.47962 61.25962) - (end 159.23 61.01) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "3d0b2443-37f0-4462-b67b-33428ab9a406") - ) - (segment - (start 159.23 61.01) - (end 156.349239 61.01) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "77bc84ed-54b1-4c79-860e-98437015370a") - ) - (segment - (start 156.243264 61.115975) - (end 155.461813 61.115975) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "e3f2a980-a270-4ebf-bf2e-db2570ec17ee") - ) - (segment - (start 182.495 55.115) - (end 182.495 55.460552) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_DATA") - (uuid "079a171c-9eb3-48ae-b1b7-1b8910ff808e") - ) - (segment - (start 177.505552 60.45) - (end 175.185 60.45) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_DATA") - (uuid "bcf88641-4769-49e0-bb19-7052eeb669fd") - ) - (segment - (start 182.495 55.460552) - (end 177.505552 60.45) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_DATA") - (uuid "d0413b21-89e3-40cd-aab6-ecaff9347ec6") - ) - (segment - (start 183.765 55.115) - (end 182.495 55.115) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_DATA") - (uuid "e18ac40b-affc-4d67-9a7a-0fa4573a95e8") - ) - (segment - (start 181.225 55.115) - (end 181.225 56.089999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_CLK") - (uuid "6374d935-ca88-45d2-8ac7-b603b3ccf4c9") - ) - (segment - (start 181.225 56.089999) - (end 177.364999 59.95) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_CLK") - (uuid "a15816ca-1dc3-4b7e-b448-243cdd41659f") - ) - (segment - (start 177.364999 59.95) - (end 175.185 59.95) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_CLK") - (uuid "e4c754e1-3d6e-4cf5-aa6c-4e54a3fb4ddb") - ) - (segment - (start 175.99241 59.45) - (end 175.185 59.45) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_CS") - (uuid "76bea83f-d893-40c9-97f8-fb42c6f57188") - ) - (segment - (start 179.955 55.115) - (end 179.955 55.48741) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_CS") - (uuid "7c0efb81-26d2-4864-8fd6-cf669d193bd2") - ) - (segment - (start 179.955 55.48741) - (end 175.99241 59.45) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/EE_CS") - (uuid "dd1dd6a6-8067-4744-bd08-8e53a70a80db") - ) - (segment - (start 133.3 62.8) - (end 134.975 62.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2_ETH") - (uuid "50033c29-b5f1-4109-8196-06285bbba9a0") - ) - (segment - (start 136.4 68.225) - (end 136.3875 68.2125) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2_ETH") - (uuid "601f84fa-687a-43f2-b3fb-0ba6d357dd5e") - ) - (segment - (start 133.2 62.7) - (end 133.3 62.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2_ETH") - (uuid "64ab8044-0578-41da-a937-95f6422fdf74") - ) - (segment - (start 136.4 69.75) - (end 136.4 68.225) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/1V2_ETH") - (uuid "eb89742e-0844-4304-a37d-c65c4f118a63") - ) - (segment - (start 164.67 40.06) - (end 164.45 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "35f39daa-0e60-4dd0-ab80-d0e90c75411e") - ) - (segment - (start 165.73 40.06) - (end 166.02 40.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "39ac8762-9e85-42c6-8681-c774315d83c3") - ) - (segment - (start 152.275 40.475) - (end 152.3 40.5) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "6091363e-64d8-4d28-b4c0-b166b1a49d4a") - ) - (segment - (start 163.48 40.32) - (end 163.48 41.41) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "66822ad4-d3ba-4c5d-8a00-997cbf15ce18") - ) - (segment - (start 162.525552 40.06) - (end 163.4 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "7cc8cda6-ba7c-4209-9b30-dfaa05d9bae4") - ) - (segment - (start 162.525552 40.06) - (end 163.22 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8882aeac-7deb-4794-b7f5-6bbb386661ae") - ) - (segment - (start 163.4 40.06) - (end 164.67 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8930a1b1-dc3e-4ae0-9d3f-85bcfcadff18") - ) - (segment - (start 158.1075 40.5) - (end 158.2 40.5925) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8c9f0773-c551-422d-8255-beb2dde24bd0") - ) - (segment - (start 166.02 40.35) - (end 166.02 41.41) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8d8ecac9-463e-434f-8edd-9fca78acac9f") - ) - (segment - (start 158.2 40.5925) - (end 158.3875 40.5925) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8e3b21ad-92e1-4c62-8b2f-60740aaf7acc") - ) - (segment - (start 163.22 40.06) - (end 163.48 40.32) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "b75f788e-51cf-4047-ab7a-331f82684a09") - ) - (segment - (start 164.75 40.36) - (end 164.75 41.41) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "d1e159e2-101d-49d7-93b2-1db7ea844733") - ) - (segment - (start 164.45 40.06) - (end 164.75 40.36) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "d9e4bef1-edca-421d-a3c7-763eedad18cb") - ) - (segment - (start 150.4375 40.475) - (end 152.275 40.475) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "ddab0487-eee4-4926-ad8d-8a8cf2a8e4fe") - ) - (segment - (start 158.92 40.06) - (end 162.525552 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "e7c26f8f-f508-4e21-8e8a-af46cc994736") - ) - (segment - (start 152.3 40.5) - (end 158.1075 40.5) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "e7dafed1-4990-45fd-9849-b20f98706d8e") - ) - (segment - (start 164.67 40.06) - (end 165.73 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "f01422f6-8a52-4f4e-91a3-25943e0f17de") - ) - (segment - (start 158.3875 40.5925) - (end 158.92 40.06) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "f405751c-ee88-4e13-be48-0e2ad8eca3bf") - ) - (segment - (start 140.725 43.280051) - (end 140.725 43.859949) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "17b22e2e-7979-40c2-a113-9f65ecc1e013") - ) - (segment - (start 137.905051 43.9) - (end 138.935051 42.87) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "1ba83a31-3b6a-46bf-a40f-55c79cf004a4") - ) - (segment - (start 142.350001 45.73) - (end 144.308576 45.73) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "24ed7423-ae98-4b7a-ae99-06ce31c41739") - ) - (segment - (start 153.888198 43.25) - (end 160.855686 43.25) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "2b7eb3d4-c85e-4640-b619-f9ef965fcf35") - ) - (segment - (start 136.925 44.661397) - (end 137.15 44.436397) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "30e3c9d2-7218-45a9-8c37-bc168098c5c0") - ) - (segment - (start 152.038198 45.1) - (end 153.888198 43.25) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "36e25eee-74be-4ab4-8e5e-dd9f8a105eed") - ) - (segment - (start 144.938576 45.1) - (end 152.038198 45.1) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "445dac05-bd31-45d3-b6f8-e3ffb149ca57") - ) - (segment - (start 137.15 44.436397) - (end 137.15 43.9) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "527c82d8-62fd-42d4-9842-00eb72a050ee") - ) - (segment - (start 138.935051 42.87) - (end 140.314949 42.87) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "54fd6f30-885d-4548-8c21-eda4b90319e6") - ) - (segment - (start 139.934949 44.65) - (end 142.05 44.65) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "81aa8c7f-3451-4b6a-8896-7ec4b6728769") - ) - (segment - (start 136.225 46.475) - (end 136.225 47.569144) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "8c9448b0-0ba7-4517-8314-477fc4ba19e4") - ) - (segment - (start 142.05 44.65) - (end 142.05 45.429999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "97b65db9-4647-4f4e-8f54-b8bc555995ce") - ) - (segment - (start 140.62002 48.77998) - (end 142.05 47.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "a9ab3a5b-d295-4530-b6f7-c1f5746f0d71") - ) - (segment - (start 137.15 43.9) - (end 137.905051 43.9) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "acf49388-b5f4-4aba-b7eb-40228d907d03") - ) - (segment - (start 137.435836 48.77998) - (end 140.62002 48.77998) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "ae596690-8784-481a-a841-d6c2af450b54") - ) - (segment - (start 136.225 47.569144) - (end 137.435836 48.77998) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "af273a06-ee80-4433-bc7a-449a51645b5f") - ) - (segment - (start 140.314949 42.87) - (end 140.725 43.280051) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "bbb15149-e646-4bdd-b0ba-3d9fce583b04") - ) - (segment - (start 136.925 44.725) - (end 136.925 44.661397) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "c9efbbb6-acfd-4a64-8310-d33d3d2f851a") - ) - (segment - (start 162.2275 41.878186) - (end 162.2275 41.31) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "ccbeb279-9cd9-411a-90d0-b99b3fe72dc6") - ) - (segment - (start 142.05 45.429999) - (end 142.350001 45.73) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "cec15f65-5829-4523-a100-a265e9cd9e98") - ) - (segment - (start 140.725 43.859949) - (end 139.934949 44.65) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "d3e807d4-184b-42a8-9e10-10529e05df7d") - ) - (segment - (start 160.855686 43.25) - (end 162.2275 41.878186) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "e4deb9a2-82c4-42f6-9307-04ef6695ea61") - ) - (segment - (start 144.308576 45.73) - (end 144.938576 45.1) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "ecc6e101-059a-4e91-b118-6b1bd7b26310") - ) - (segment - (start 153.651802 42.85) - (end 160.69 42.85) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "0d2b0919-f2b4-4589-a9a5-c4a58d1d0200") - ) - (segment - (start 137.551469 48.329927) - (end 138.934978 48.329927) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "157f3a2f-358c-4748-a1ae-700b81760a3f") - ) - (segment - (start 138.748663 42.42002) - (end 140.501337 42.42002) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "18f1ebd1-506c-4325-87f5-6585e019d77f") - ) - (segment - (start 141.651317 43.57) - (end 143.358576 43.57) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "27c4e80b-58f3-4d96-a3e0-84f35855f6b0") - ) - (segment - (start 140.314949 46.93) - (end 141.031424 46.93) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "2b37cab3-6a13-4e7a-a16b-dc5ade348a5f") - ) - (segment - (start 141.17498 43.093663) - (end 141.17498 44.046337) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "2be9b264-9202-455c-95fe-9c8aedf48706") - ) - (segment - (start 136.45 44.5) - (end 136.45 43.963632) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "3393b96a-966e-4021-88b3-43571d8e704d") - ) - (segment - (start 140.314949 48.33) - (end 140.725 47.919949) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "344aba6a-8fc5-4b49-8ab6-215d6aa031e7") - ) - (segment - (start 143.95 44.161424) - (end 143.95 44.65) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "58cd8b4b-ab00-48d3-b306-bc11e25b81c7") - ) - (segment - (start 143.625 46.536424) - (end 143.625 47.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "5fde8c69-9ceb-4009-b010-13722cd7d160") - ) - (segment - (start 141.17498 44.046337) - (end 141.651317 43.57) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "6f1a1bd4-346b-41af-ac20-4b7d6d229d63") - ) - (segment - (start 136.925 46.475) - (end 136.925 47.703458) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "6f344a2d-f33b-4731-933d-5fe86ede5503") - ) - (segment - (start 138.935051 48.33) - (end 140.314949 48.33) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "7d2b1728-cdb0-4bc2-b387-7f6bff02d5ae") - ) - (segment - (start 140.501337 42.42002) - (end 141.17498 43.093663) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "8858ae10-402e-4e33-b8b2-8be6e2b02e72") - ) - (segment - (start 137.718663 43.45002) - (end 138.748663 42.42002) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "93c574bd-9fc0-43a7-b2e4-b4e9b6264401") - ) - (segment - (start 140.725 47.919949) - (end 140.725 47.340051) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "95676052-ebf8-45d3-a361-c5ba0df8c532") - ) - (segment - (start 143.358576 43.57) - (end 143.95 44.161424) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "98175431-2b4d-49c0-a130-abe1bbee462d") - ) - (segment - (start 136.963612 43.45002) - (end 137.718663 43.45002) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "9b79e53d-b863-4c11-863b-65133d706033") - ) - (segment - (start 143.625 47.025) - (end 143.95 47.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "a1df1d36-a72e-4b91-a3c1-7e36369e4d57") - ) - (segment - (start 141.031424 46.93) - (end 141.691424 46.27) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "a4aceab6-a9b3-41d9-bdcb-4fbeaaa91dd7") - ) - (segment - (start 143.95 44.65) - (end 151.851802 44.65) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "a556523f-19b8-4ba3-be21-26e47d764c02") - ) - (segment - (start 140.725 47.340051) - (end 140.314949 46.93) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "ba141100-1b61-4572-ab77-d8489b720983") - ) - (segment - (start 136.225 44.725) - (end 136.45 44.5) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "c18463b5-ac61-4577-8ff2-015a35b056a5") - ) - (segment - (start 143.358576 46.27) - (end 143.625 46.536424) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "c97ee060-2a86-42b9-85bd-dd013a968af1") - ) - (segment - (start 138.934978 48.329927) - (end 138.935051 48.33) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "cfba0db2-c212-43e0-b875-8618b9b99142") - ) - (segment - (start 151.851802 44.65) - (end 153.651802 42.85) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "d1372767-d50e-490b-b87d-dea1c40d3b51") - ) - (segment - (start 160.69 42.85) - (end 160.9575 42.5825) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "dce4c6b9-5591-4069-a785-9be4fd8d1b21") - ) - (segment - (start 136.45 43.963632) - (end 136.963612 43.45002) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "e17354a2-ef71-4e0b-b440-804cc1aaf783") - ) - (segment - (start 136.925 47.703458) - (end 137.551469 48.329927) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "ee8e671f-4fc2-4341-b151-74c1ff30ed4c") - ) - (segment - (start 160.9575 42.5825) - (end 160.9575 41.31) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "fdc27a6d-4d0d-4851-a8bd-eb49d9dc0679") - ) - (segment - (start 141.691424 46.27) - (end 143.358576 46.27) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "fff40385-b8f1-441c-ba64-fabde0d13415") - ) - (segment - (start 133.790262 62.275) - (end 133.843749 62.275) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "3c547945-c9e7-462c-8240-01be418de28a") - ) - (segment - (start 125.791 54.441) - (end 125.791 54.5838) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "7e61a50b-cdce-439c-bd77-edffb6e2d4cf") - ) - (segment - (start 125.791 54.5838) - (end 126.9182 55.711) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "884a2c16-f1b1-447a-ba80-2d3762ad614b") - ) - (segment - (start 133.843749 62.275) - (end 133.868749 62.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "88f01253-8f6b-413e-9f2c-9ffa22e921a9") - ) - (segment - (start 131.09 59.574738) - (end 133.790262 62.275) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "914f24ba-314e-42fd-8dca-746128e1ed65") - ) - (segment - (start 133.868749 62.3) - (end 134.975 62.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "d2f3021a-1af0-4fc2-9f76-fe178e62c98d") - ) - (segment - (start 131.09 57.43) - (end 131.09 59.574738) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "d4686642-83f8-469c-84a4-75e26b4b00df") - ) - (segment - (start 124.25 52.9) - (end 125.791 54.441) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "d9e7ee77-e844-4e16-9933-d2d82da5063f") - ) - (segment - (start 129.371 55.711) - (end 131.09 57.43) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "efdd08f0-3c55-40fe-b154-b009f811aeed") - ) - (segment - (start 126.9182 55.711) - (end 129.371 55.711) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "fe5e0337-68bb-46c8-9a16-fce90521c53f") - ) - (segment - (start 133.95163 61.8) - (end 134.975 61.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "9cdb66ac-8c3b-4e76-9094-aed42953acff") - ) - (segment - (start 126.79 54.17) - (end 128.395686 54.17) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "a98c4eca-ac7f-42b3-8522-1a90fbb4575c") - ) - (segment - (start 128.395686 54.17) - (end 131.49 57.264314) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "d5bf1b54-9e26-4828-bbf3-e43ab6071009") - ) - (segment - (start 131.49 59.33837) - (end 133.95163 61.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "d87ab2f9-2053-4f80-8f40-01b23c282ccb") - ) - (segment - (start 131.49 57.264314) - (end 131.49 59.33837) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "ede87490-8861-494c-bce0-4ac21328e3f6") - ) - (segment - (start 123.453315 61.919) - (end 124.2362 61.919) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "1e2807f6-753e-4d5f-b1e3-81e03ec3852e") - ) - (segment - (start 126.1072 63.79) - (end 134.965 63.79) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "29f256ca-6fe9-49db-96df-67d851f220c6") - ) - (segment - (start 124.2362 61.919) - (end 126.1072 63.79) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "2db2f3fd-79b6-4bd1-9ef8-a0c05bc8adec") - ) - (segment - (start 122.851 61.316686) - (end 123.453315 61.919) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "7d8414d7-88ea-4a07-b84b-e0e82380552a") - ) - (segment - (start 122.851 56.839) - (end 122.851 61.316686) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "83105a73-ab07-4ae8-916d-0debfc364684") - ) - (segment - (start 124.25 55.44) - (end 122.851 56.839) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "aa049c1c-b261-4263-9cac-90cdfaa6be8e") - ) - (segment - (start 134.965 63.79) - (end 134.975 63.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXP") - (uuid "eeda60fa-9196-4fae-a3e1-053ba879da9b") - ) - (segment - (start 123.251 57.249) - (end 123.7 56.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "34d88c2f-b834-4601-9386-9bc656836272") - ) - (segment - (start 124.6638 61.519) - (end 123.619 61.519) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "57cd1a87-163c-42d5-afdf-3d556c89c8de") - ) - (segment - (start 123.251 61.151) - (end 123.251 57.249) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "5e170e72-b6dd-41c4-b266-feb4ec79f805") - ) - (segment - (start 134.975 63.3) - (end 134.965 63.31) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "690d7f07-df36-490b-881f-f80d1d0fcd71") - ) - (segment - (start 134.965 63.31) - (end 126.4548 63.31) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "99e130a3-e63d-45a1-a12d-2ac3ecc43462") - ) - (segment - (start 124.5 56.8) - (end 126.79 59.09) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "b4b6b71d-9965-4409-94df-f470ac9daf08") - ) - (segment - (start 123.619 61.519) - (end 123.251 61.151) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "c2b13b27-ab77-4739-bf6a-56eaf55ce1b1") - ) - (segment - (start 123.7 56.8) - (end 124.5 56.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "dc5856ba-e377-4008-965d-431e7d2beed2") - ) - (segment - (start 126.79 59.09) - (end 126.79 59.25) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "f06c772f-f430-427a-94c0-d03c5636e2f0") - ) - (segment - (start 126.4548 63.31) - (end 124.6638 61.519) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "f615785d-aff8-420a-b254-e35614d726fa") - ) - (segment - (start 129.315 69.05) - (end 131.25 69.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "18763780-1bf4-4595-86c5-9c56704f6aa9") - ) - (segment - (start 131.25 69.05) - (end 132.6 70.4) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "1a5b9529-ebd4-4e74-bf39-20ad32b09bae") - ) - (segment - (start 133.92 69.08) - (end 133.92 67.17) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "37264d73-d49a-4696-99fb-154b5ad1abc9") - ) - (segment - (start 127.5 69.9) - (end 128.465 69.9) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "40dc0b1c-dc9d-4b4d-a9ee-20efa8e315bd") - ) - (segment - (start 128.465 69.9) - (end 128.5 69.865) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "60f0d748-4036-43a7-a93d-1df35d7dceaa") - ) - (segment - (start 132.6 70.4) - (end 133.92 69.08) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "80617a58-84b1-4e45-828e-5f2e1a09a14b") - ) - (segment - (start 134.29 66.8) - (end 134.975 66.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "afb4b851-2601-4c3a-9d40-0b8e3b3d2510") - ) - (segment - (start 128.5 69.865) - (end 129.315 69.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "d6be8cf5-9a0e-4d2c-8ddc-87d94d8ac684") - ) - (segment - (start 133.92 67.17) - (end 134.29 66.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "f8315c6e-3435-489c-a40f-599b1388a0f4") - ) - (segment - (start 129.165 68.635) - (end 130.3 67.5) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "02a58107-d406-4282-bb2d-96b81728eb4d") - ) - (segment - (start 128.5 68.635) - (end 129.165 68.635) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "268bb52a-0386-43a9-91e2-2f08276a1504") - ) - (segment - (start 127.5 68.705) - (end 128.43 68.705) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "32411ba7-68ae-4cfc-985d-060b108fe69a") - ) - (segment - (start 134.002545 66.097455) - (end 134.20509 66.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "44d8de55-fa33-4b7f-ae62-52d9f14b862d") - ) - (segment - (start 131.702545 66.097455) - (end 134.002545 66.097455) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "6151864f-db18-408f-87e4-49568dc30461") - ) - (segment - (start 134.20509 66.3) - (end 134.975 66.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "86b3871e-71cb-4d4f-b843-fbd7f2f7e76f") - ) - (segment - (start 130.3 67.5) - (end 131.702545 66.097455) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "aaac0f4c-006c-4093-aee9-68e601746585") - ) - (segment - (start 128.43 68.705) - (end 128.5 68.635) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "bef7a8b7-ff74-4739-a921-fd5215d3a79b") - ) - (segment - (start 134.19 90.235) - (end 134.19 91.4475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "1070fbce-8e9b-43fb-9d52-87e441ee1cd8") - ) - (segment - (start 135.14 81.9325) - (end 134.53 81.3225) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "1a2feb40-2bcd-4f51-9543-b2e9a99299e1") - ) - (segment - (start 141.915 91.6475) - (end 141.565 91.2975) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "24a5b94d-4e44-45d2-9dc1-199071aa9d30") - ) - (segment - (start 142.24 91.6475) - (end 141.915 91.6475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "419a200e-4599-4912-827c-9bfae1726cfc") - ) - (segment - (start 135.19 83.36) - (end 135.19 82.1425) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "4441db2d-fe24-4a38-b0b3-06fa0dba7fa6") - ) - (segment - (start 141.64 92.8975) - (end 141.64 92.2475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "5c8a9bbc-cbf6-4071-9311-460da973031e") - ) - (segment - (start 134.19 91.4475) - (end 134.24 91.4975) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "7fc3789d-8109-4915-9c0e-f615f73493af") - ) - (segment - (start 141.64 92.2475) - (end 142.24 91.6475) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "ad335230-c74c-404a-81e2-dd471ec2f8bc") - ) - (segment - (start 134.53 80.2075) - (end 135.14 79.5975) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "dc4e270b-5683-4748-a764-fdaf98bae55f") - ) - (segment - (start 134.53 81.3225) - (end 134.53 80.2075) - (width 0.2) - (layer "F.Cu") - (net "/fpga/1V2") - (uuid "ee6f850a-e50d-4c9d-af0a-8d20c123554d") - ) - (segment - (start 184.425 60.62) - (end 183.95 61.095) - (width 0.2) - (layer "F.Cu") - (net "Net-(U2-PR1)") - (uuid "0768be3b-001a-4d9b-9580-74d0276b77f8") - ) - (segment - (start 183.95 61.22) - (end 183.35 60.62) - (width 0.2) - (layer "F.Cu") - (net "Net-(U2-PR1)") - (uuid "1a41602d-3d26-4ad7-8111-df7ab361eb21") - ) - (segment - (start 183.95 62.02) - (end 183.95 61.22) - (width 0.2) - (layer "F.Cu") - (net "Net-(U2-PR1)") - (uuid "8c2bc8a5-a86e-48d4-aed0-8d731699299f") - ) - (segment - (start 183.95 61.095) - (end 183.95 62.02) - (width 0.2) - (layer "F.Cu") - (net "Net-(U2-PR1)") - (uuid "e9ddf419-025a-4cc2-a96c-b4a0f535ce17") - ) - (segment - (start 196.25 63.39) - (end 194.84 64.8) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "1aab7b9e-55e9-4c30-b2a9-bb733755bb37") - ) - (segment - (start 206.912499 52.4575) - (end 205.9425 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "1df3b84f-df10-4aa0-b649-c85e01f602d1") - ) - (segment - (start 200.857501 52.4575) - (end 205.9425 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "28037bc1-6feb-4ad5-a13a-6a7913f41e9a") - ) - (segment - (start 200.075 50.65) - (end 200.075 51.674999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "4280fe06-babc-401a-bbb1-3ceac77519fb") - ) - (segment - (start 200.075 51.674999) - (end 200.857501 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "445dcae8-e074-4b37-bc2c-181295484fdf") - ) - (segment - (start 206.912499 52.4575) - (end 206.98 52.525001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "473491f1-f1b4-424d-b5e4-65a904a6b4b2") - ) - (segment - (start 184.45 63.88136) - (end 184.45 63.5) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "5c5ff4cb-556a-4073-a54e-1f7d34f3d13a") - ) - (segment - (start 207.695 50.65) - (end 207.695 51.674999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "66488368-7a4c-431d-b611-7ae648f88be1") - ) - (segment - (start 184.65 64.8) - (end 184.64 64.81) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "6ec04f13-d2a4-4924-af22-3f0245ac10a9") - ) - (segment - (start 194.84 64.8) - (end 185.36864 64.8) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "73cefad6-91b5-4d08-b4e0-9e3dc3a667d9") - ) - (segment - (start 185.36864 64.8) - (end 184.65 64.8) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "8ccca32f-f137-4721-ab9a-3fb123be4294") - ) - (segment - (start 182.79 64.62) - (end 182.79 63.89) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "a21c34aa-f8e1-4d47-95db-09326df04920") - ) - (segment - (start 182.79 63.89) - (end 182.825 63.855) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "a3c7b6ad-6bd1-496b-8829-078581988308") - ) - (segment - (start 206.98 52.525001) - (end 206.98 63.055256) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "b0f52eb2-e917-4889-b31a-8672f2176ac7") - ) - (segment - (start 206.98 63.055256) - (end 206.645256 63.39) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "c3373fe9-c12c-4a84-a8b4-660062f2f81f") - ) - (segment - (start 185.36864 64.8) - (end 184.45 63.88136) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "dedff00d-bae3-4a23-865b-a7a014f4aee3") - ) - (segment - (start 207.695 51.674999) - (end 206.912499 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "f06f544e-9693-4276-b6f0-e9331138715e") - ) - (segment - (start 206.645256 63.39) - (end 201.37 63.39) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "f3e20147-15b8-4631-92f6-d6ca08be2097") - ) - (segment - (start 182.825 63.855) - (end 182.825 64.45636) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "f609d26b-d562-4355-828f-b2fb72c64ccf") - ) - (via - (at 196.25 63.39) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "0ea23b5b-d155-4d33-8296-de0b908a7b5b") - ) - (via - (at 182.79 64.62) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "1cf8d772-7d28-4eb5-a99c-d3c7b027891f") - ) - (via - (at 184.64 64.81) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "62e47238-9e40-4af7-b678-58f629fec2f1") - ) - (via - (at 201.37 63.39) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "6823bb85-fb33-423b-9484-fad3187d7f37") - ) - (segment - (start 184.64 64.81) - (end 182.98 64.81) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "48fcaea9-ecb3-4dd4-8e97-6811b4f6f98d") - ) - (segment - (start 182.98 64.81) - (end 182.79 64.62) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "b3b0d54f-c299-4a21-b05b-8edd2b6bec53") - ) - (segment - (start 201.37 63.39) - (end 196.25 63.39) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "b65f6174-0f37-488d-8c50-4850f20874dc") - ) - (segment - (start 137.625 46.475) - (end 137.625 47.554929) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC1") - (uuid "3e3f43b2-ceb4-4846-b1ca-f3399536e2fe") - ) - (segment - (start 137.625 47.554929) - (end 137.630396 47.560324) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC1") - (uuid "f21e3817-4eb1-4c76-92fc-cb6d0709c842") - ) - (via - (at 137.630396 47.560324) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/CC1") - (uuid "59cea0df-21a0-4016-a851-fa71c8fa0bb1") - ) - (via - (at 135.5 41.6) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/CC1") - (uuid "fd2413aa-369d-4def-85d0-8afad1aa9a46") - ) - (segment - (start 138 43.742501) - (end 138 46.530759) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CC1") - (uuid "0caa2d07-c69b-430f-b107-6f19786cf02b") - ) - (segment - (start 135.857499 41.6) - (end 138 43.742501) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CC1") - (uuid "463b561c-19f2-430e-96fb-1dc21cb7e3c6") - ) - (segment - (start 137.630396 46.900363) - (end 137.630396 47.560324) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CC1") - (uuid "9dcc6459-1e99-4359-9d5d-7fc0b318b1a9") - ) - (segment - (start 135.5 41.6) - (end 135.857499 41.6) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CC1") - (uuid "b729ef6f-4957-4844-af36-679efee5a97f") - ) - (segment - (start 138 46.530759) - (end 137.630396 46.900363) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CC1") - (uuid "fb530737-1012-4c5b-a8fe-2717a4aa031f") - ) - (segment - (start 135.5025 42.7) - (end 135.5025 44.7025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC2") - (uuid "70c3d035-e095-4db2-91db-d7bcb1660243") - ) - (segment - (start 135.5025 44.7025) - (end 135.525 44.725) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC2") - (uuid "c489a9d8-f043-4bc7-9a36-f8ddf2cedf7d") - ) - (segment - (start 134.975 65.3) - (end 133.495 65.3) - (width 0.2) - (layer "F.Cu") - (net "Net-(U11-RSET_BG)") - (uuid "28ebc9ef-899a-4801-be47-f37bdc272782") - ) - (segment - (start 133.495 65.3) - (end 133.395 65.4) - (width 0.2) - (layer "F.Cu") - (net "Net-(U11-RSET_BG)") - (uuid "8bb49745-f5e4-4ed6-8de3-ab2d3f451b51") - ) - (via - (at 200.4625 60.9) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/exi/SP1_3V3") - (uuid "c005cefd-03f7-40f7-b839-dfb5144d919f") - ) - (via - (at 196.85 59.1) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/exi/SP1_3V3") - (uuid "d00cb11b-3e32-4e8d-b4b0-4c1efd2405a6") - ) - (segment - (start 198.65 60.9) - (end 196.85 59.1) - (width 0.2) - (layer "B.Cu") - (net "/exi/SP1_3V3") - (uuid "6e09b80c-df94-4315-bfbb-17af4a171b93") - ) - (segment - (start 200.4625 60.9) - (end 198.65 60.9) - (width 0.2) - (layer "B.Cu") - (net "/exi/SP1_3V3") - (uuid "ea2ffc18-8b74-40c3-bae9-8431ce2500f1") - ) - (segment - (start 202.85 59.7075) - (end 202.85 59.1) - (width 0.2) - (layer "F.Cu") - (net "Net-(J3-ExtIn)") - (uuid "0a12f274-4a2e-4b1c-9b9a-b96f75ae332e") - ) - (segment - (start 201.6575 60.9) - (end 202.85 59.7075) - (width 0.2) - (layer "F.Cu") - (net "Net-(J3-ExtIn)") - (uuid "426ae63d-d2d4-4d1a-bb4d-5c7f3f233fca") - ) - (segment - (start 144.405685 60.28) - (end 142.28 60.28) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "1467630e-e1d4-4784-b04d-8348a96d15ea") - ) - (segment - (start 151.675686 67.55) - (end 144.405685 60.28) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "255affee-0a74-4d7a-b55b-5d18bb83bc2a") - ) - (segment - (start 142.28 60.28) - (end 141.8875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "4dcd04cd-1091-4a4c-ba89-312d83b9a51d") - ) - (segment - (start 152.341739 67.55) - (end 151.675686 67.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "ed599730-338a-4627-910c-e52fd1b9051c") - ) - (segment - (start 143.541372 58.85) - (end 141.65509 58.85) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "0aabd28a-6a50-414b-a4d4-a1489684f11b") - ) - (segment - (start 141.65509 58.85) - (end 141.3875 59.11759) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "229cd0a2-20f2-43c5-82ad-b535f6f51712") - ) - (segment - (start 151.241372 66.55) - (end 144.57137 59.88) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "23903545-4991-4ef8-9279-a788ea36ca26") - ) - (segment - (start 144.57137 59.879998) - (end 143.541372 58.85) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "5493b8b4-0514-4188-8a47-6c9184a23e24") - ) - (segment - (start 144.57137 59.88) - (end 144.57137 59.879998) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "ba3e6f22-bef1-4525-a5da-86cf9a3bd00d") - ) - (segment - (start 141.3875 59.11759) - (end 141.3875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "cbd1c12e-56d5-4068-be68-bbf1c0855b5c") - ) - (segment - (start 152.341739 66.55) - (end 151.241372 66.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "f6926165-6c02-4cef-8252-6d738e4f29d0") - ) - (segment - (start 143.707057 58.45) - (end 141.489404 58.45) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "2e383425-38c4-40a0-8bdf-d646d9df06d5") - ) - (segment - (start 140.8875 59.051904) - (end 140.8875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "8458d4ab-5909-4a4e-98c4-0e93701d2710") - ) - (segment - (start 151.307058 66.05) - (end 143.707057 58.45) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "cc046df3-35bc-4282-909d-a2afc8fb6d16") - ) - (segment - (start 152.341739 66.05) - (end 151.307058 66.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "d269a339-6515-4f31-807c-f36567207efe") - ) - (segment - (start 141.489404 58.45) - (end 140.8875 59.051904) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "e8c9ebbb-4b69-4cb3-823c-4c2728c18001") - ) - (segment - (start 143.872742 58.05) - (end 141.323718 58.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "5c73cf0d-1671-4ae1-b50d-1559c83c271b") - ) - (segment - (start 152.341739 64.55) - (end 150.372743 64.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "8969e38d-ca07-4282-8c40-1e207bf62c45") - ) - (segment - (start 150.372743 64.55) - (end 143.872742 58.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "d2245742-a9ca-46da-ad40-b3d1eded2812") - ) - (segment - (start 141.323718 58.05) - (end 140.3875 58.986218) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "d6f65db6-2955-4ce7-be0b-488d46dac04d") - ) - (segment - (start 140.3875 58.986218) - (end 140.3875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "e58b3d4d-f7d4-41e4-8d70-3a6bc9ea08d9") - ) - (segment - (start 143.886057 57.649) - (end 141.159033 57.649) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "06e60289-b8f1-4451-a38d-c5741bad00d8") - ) - (segment - (start 139.8875 58.920533) - (end 139.8875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "1f702107-cb2f-4739-b293-29e1978b1ffb") - ) - (segment - (start 143.887057 57.65) - (end 143.886057 57.649) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "32e19458-0cdd-438b-bac2-5bd8aeaf7191") - ) - (segment - (start 150.438429 64.05) - (end 144.038427 57.65) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "5a05a918-2b0c-4fef-92c6-33ef2cd0ef76") - ) - (segment - (start 141.159033 57.649) - (end 139.8875 58.920533) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "606843fb-c840-4ae2-a070-f965edb7b6aa") - ) - (segment - (start 144.038427 57.65) - (end 143.887057 57.65) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "7c7c5621-3328-49af-a737-a787869e1fe6") - ) - (segment - (start 152.341739 64.05) - (end 150.438429 64.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "9c25ef9a-283e-4906-9b7f-144c1bbf0cb2") - ) - (segment - (start 140.991932 57.249) - (end 139.3875 58.853432) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "04c30be7-6a12-4cef-a75e-f9de577a0dfe") - ) - (segment - (start 144.204112 57.25) - (end 144.052743 57.25) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "1d592ed5-d219-4145-9c1a-c9dce47e0741") - ) - (segment - (start 152.341739 63.55) - (end 150.504115 63.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "40b45651-c454-43cf-9c6a-9fa5f020b7c9") - ) - (segment - (start 144.052743 57.25) - (end 144.051742 57.249) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "66f0359d-53fd-459c-92ad-80cfe854bf97") - ) - (segment - (start 139.3875 58.853432) - (end 139.3875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "ae56971f-a9b8-4ee5-a3fe-b1991a61743c") - ) - (segment - (start 144.051742 57.249) - (end 140.991932 57.249) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "be6b6efd-6b64-4818-8340-3f90663506d9") - ) - (segment - (start 150.504115 63.55) - (end 144.204112 57.25) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "f8b2bd1a-26ac-4320-b6f5-84302b2a6007") - ) - (segment - (start 140.826247 56.849) - (end 144.217428 56.848999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "4c0ba75b-0c4f-4089-bf12-d406156c73ef") - ) - (segment - (start 144.217428 56.848999) - (end 144.218429 56.85) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "6c4cc76a-7dff-405d-b35f-1a4a9a74cab1") - ) - (segment - (start 150.569801 63.05) - (end 152.341739 63.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "970107f7-0991-4307-8a95-110c56a0c242") - ) - (segment - (start 144.218429 56.85) - (end 144.369798 56.85) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "a384e33a-bfd4-4ca0-b99d-a89d141af536") - ) - (segment - (start 138.8875 58.787747) - (end 140.826247 56.849) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "a79c2b77-30d0-4b43-a048-bd6309f26012") - ) - (segment - (start 144.369798 56.85) - (end 150.569801 63.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "ba6af5b9-b6cf-4391-95cf-b280d4829d41") - ) - (segment - (start 138.8875 59.8875) - (end 138.8875 58.787747) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "bfc4604f-cf2b-4088-a33d-963c8e7720cf") - ) - (segment - (start 153.529239 62.3625) - (end 153.454239 62.2875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "0162dd83-14aa-4120-925c-8c54051ad225") - ) - (segment - (start 149.710486 61.625) - (end 144.535483 56.45) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "15757beb-ea22-40c5-92eb-abbf13e46513") - ) - (segment - (start 144.384114 56.45) - (end 144.383113 56.448999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "1f39d1e9-f679-4fb9-9e06-373310e6ef1e") - ) - (segment - (start 144.535483 56.45) - (end 144.384114 56.45) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "571a24c9-5758-429c-ba35-680cfc9b4464") - ) - (segment - (start 153.243625 61.625) - (end 149.710486 61.625) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "59660ce5-3d84-40c0-81d7-4f8a65c1732f") - ) - (segment - (start 144.383113 56.448999) - (end 140.541205 56.449) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "77e15e4e-abd6-4918-9054-56e3e7f4233a") - ) - (segment - (start 140.541205 56.449) - (end 138.3875 58.602705) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "8d33d5bb-7d6d-4143-a81c-62fe77beda46") - ) - (segment - (start 138.3875 58.602705) - (end 138.3875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "c6a47b91-a000-4f26-a142-49e5541ec8ad") - ) - (segment - (start 153.454239 61.835614) - (end 153.243625 61.625) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "ccba0536-ac8f-4b59-a217-c1276ec6477b") - ) - (segment - (start 153.454239 62.2875) - (end 153.454239 61.835614) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "fd56d896-586e-4353-9ef1-cb3ade465062") - ) - (segment - (start 142.55 60.68) - (end 141.84 61.39) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "1d9937fa-6752-4483-8409-c2a9d6f652bf") - ) - (segment - (start 137.27 61.39) - (end 136.8875 61.0075) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "a1fddb12-3341-40b2-b89a-61a50cfd3863") - ) - (segment - (start 141.84 61.39) - (end 137.27 61.39) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "adf4740e-3760-4bb9-adcb-a95db4b42ac7") - ) - (segment - (start 151.61 68.05) - (end 144.24 60.68) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "b8eb065f-6123-46ab-9d5f-ea96c5e4dbd6") - ) - (segment - (start 136.8875 61.0075) - (end 136.8875 59.8875) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "c01f598a-5ba8-4152-b63d-c09c0b674525") - ) - (segment - (start 144.24 60.68) - (end 142.55 60.68) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "f66285be-9910-4e2c-862a-02a283ebb048") - ) - (segment - (start 152.341739 68.05) - (end 151.61 68.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "fd80e629-51e4-41b2-accb-11ce4001d576") - ) - (segment - (start 155.529239 69.689386) - (end 154.843625 70.375) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "7ba8eb4d-6fb3-4a35-a745-3e3a115ad18a") - ) - (segment - (start 144.06991 63.3) - (end 143.3 63.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "96356cfb-0d92-4550-8eb3-f148485ca1f4") - ) - (segment - (start 155.529239 69.2375) - (end 155.529239 69.689386) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "ccee760d-79ab-4ccb-b7c6-8ea4b24f8136") - ) - (segment - (start 151.14491 70.375) - (end 144.06991 63.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "cd13b107-b631-4674-8eaf-2c2ee7d8bd0b") - ) - (segment - (start 154.843625 70.375) - (end 151.14491 70.375) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "cf90cef0-14c7-4075-94c4-b75974a288b4") - ) - (segment - (start 153.529239 69.2375) - (end 153.529239 69.689386) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "56c2e8bf-6a61-4e93-ac28-91ea5efad862") - ) - (segment - (start 153.529239 69.689386) - (end 153.243625 69.975) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "8b211454-f092-472d-a847-dce7f88caf03") - ) - (segment - (start 144.135596 62.8) - (end 143.3 62.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "924e2b47-1282-45b5-9e5b-3c0d75eeb990") - ) - (segment - (start 153.243625 69.975) - (end 151.310596 69.975) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "d735568c-fbde-4a8d-a780-a39e0b43d61d") - ) - (segment - (start 151.310596 69.975) - (end 144.135596 62.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "e6af8057-c4d5-407e-bfcc-75b5969aa0f1") - ) - (segment - (start 155.093624 70.775001) - (end 156.029239 69.839386) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "1ab4d581-1754-4e44-9f70-ef71fe7330cb") - ) - (segment - (start 150.965001 70.775001) - (end 155.093624 70.775001) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "33e2025e-aa70-4d67-91c5-044eb1fb96e8") - ) - (segment - (start 144.99 64.8) - (end 150.965001 70.775001) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "8193fc00-a9df-40ba-91a8-fe413235364b") - ) - (segment - (start 143.3 64.8) - (end 144.99 64.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "d8760af0-504e-45b4-9091-6ebc28db3077") - ) - (segment - (start 156.029239 69.839386) - (end 156.029239 69.2375) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "e395b00f-c717-425d-84dd-16f919d6d430") - ) - (segment - (start 151.4175 69.2375) - (end 144.48 62.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "10af16c0-4709-477b-b5bb-850300a4819f") - ) - (segment - (start 153.029239 69.2375) - (end 151.4175 69.2375) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "8e3c300d-045b-477f-82da-9f5753ab679a") - ) - (segment - (start 144.48 62.3) - (end 143.3 62.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "e3b1cf16-ad70-40d8-9f2a-648bdf242e95") - ) - (segment - (start 152.341739 68.55) - (end 151.295686 68.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "3ee2bb7d-63fb-42d6-bc76-d8c7ebe2a12d") - ) - (segment - (start 144.545686 61.8) - (end 143.3 61.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "a405ba21-e90c-426c-ac1a-c42e342d429b") - ) - (segment - (start 151.295686 68.55) - (end 144.545686 61.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "f231a935-8e43-45d0-a118-3d4f0a8ae018") - ) - (segment - (start 200.88 55.07) - (end 200.88 55) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "3edc0b8c-32c1-4a16-b582-efe295dbf0fb") - ) - (segment - (start 200.88 55.72) - (end 200.88 55.07) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "9e2f505c-fda9-45da-95a6-e99acbbd5b49") - ) - (zone - (net "GND") - (layer "In1.Cu") - (uuid "08ec790b-13ac-4a0a-8a2a-b6adc2150501") - (name "GND") - (hatch edge 0.5) - (connect_pads - (clearance 0.5) - ) - (min_thickness 0.25) - (fill yes - (thermal_gap 0.5) - (thermal_bridge_width 0.5) - (island_removal_mode 0) - ) - (polygon - (pts - (xy 119.258711 48.1) (xy 119.575 69.885) (xy 122.15 72.41) (xy 208.75 72.41) (xy 208.8 48.91) (xy 156.548731 48.791419) - (xy 149.117553 56.142369) (xy 131.4 56.2) (xy 123.206897 48.1) - ) - ) - (filled_polygon - (layer "In1.Cu") - (pts - (xy 123.729241 48.620185) (xy 123.749378 48.636317) (xy 131.4 56.2) (xy 149.117553 56.142369) (xy 149.637222 55.62831) - (xy 156.255471 55.62831) (xy 156.255471 55.786003) (xy 156.286232 55.940646) (xy 156.286235 55.940658) - (xy 156.346573 56.086329) (xy 156.34658 56.086342) (xy 156.434181 56.217445) (xy 156.434184 56.217449) - (xy 156.545678 56.328943) (xy 156.545682 56.328946) (xy 156.676785 56.416547) (xy 156.676798 56.416554) - (xy 156.822469 56.476892) (xy 156.822474 56.476894) (xy 156.972881 56.506812) (xy 156.977124 56.507656) - (xy 156.977127 56.507657) (xy 156.977129 56.507657) (xy 157.134815 56.507657) (xy 157.134816 56.507656) - (xy 157.289468 56.476894) (xy 157.43515 56.416551) (xy 157.56626 56.328946) (xy 157.67776 56.217446) - (xy 157.765365 56.086336) (xy 157.825708 55.940654) (xy 157.856471 55.785999) (xy 157.856471 55.628315) - (xy 157.856471 55.628312) (xy 157.85647 55.62831) (xy 157.850517 55.598381) (xy 157.825708 55.47366) - (xy 157.805911 55.425866) (xy 157.765368 55.327984) (xy 157.765361 55.327971) (xy 157.67776 55.196868) - (xy 157.677757 55.196864) (xy 157.566263 55.08537) (xy 157.566259 55.085367) (xy 157.435156 54.997766) - (xy 157.435143 54.997759) (xy 157.289472 54.937421) (xy 157.28946 54.937418) (xy 157.134816 54.906657) - (xy 157.134813 54.906657) (xy 156.977129 54.906657) (xy 156.977126 54.906657) (xy 156.822481 54.937418) - (xy 156.822469 54.937421) (xy 156.676798 54.997759) (xy 156.676785 54.997766) (xy 156.545682 55.085367) - (xy 156.545678 55.08537) (xy 156.434184 55.196864) (xy 156.434181 55.196868) (xy 156.34658 55.327971) - (xy 156.346573 55.327984) (xy 156.286235 55.473655) (xy 156.286232 55.473667) (xy 156.255471 55.62831) - (xy 149.637222 55.62831) (xy 154.790009 50.531153) (xy 162.697 50.531153) (xy 162.697 50.688846) - (xy 162.727761 50.843489) (xy 162.727764 50.843501) (xy 162.788102 50.989172) (xy 162.788109 50.989185) - (xy 162.87571 51.120288) (xy 162.875713 51.120292) (xy 162.987207 51.231786) (xy 162.987211 51.231789) - (xy 163.118314 51.31939) (xy 163.118327 51.319397) (xy 163.263998 51.379735) (xy 163.264003 51.379737) - (xy 163.418653 51.410499) (xy 163.418656 51.4105) (xy 163.418658 51.4105) (xy 163.576344 51.4105) - (xy 163.576345 51.410499) (xy 163.730997 51.379737) (xy 163.876679 51.319394) (xy 164.007789 51.231789) - (xy 164.007792 51.231786) (xy 164.044819 51.19476) (xy 164.106142 51.161275) (xy 164.175834 51.166259) - (xy 164.220181 51.19476) (xy 164.257207 51.231786) (xy 164.257211 51.231789) (xy 164.388314 51.31939) - (xy 164.388327 51.319397) (xy 164.533998 51.379735) (xy 164.534003 51.379737) (xy 164.688653 51.410499) - (xy 164.688656 51.4105) (xy 164.688658 51.4105) (xy 164.846344 51.4105) (xy 164.846345 51.410499) - (xy 165.000997 51.379737) (xy 165.146679 51.319394) (xy 165.277789 51.231789) (xy 165.277792 51.231786) - (xy 165.314819 51.19476) (xy 165.376142 51.161275) (xy 165.445834 51.166259) (xy 165.490181 51.19476) - (xy 165.527207 51.231786) (xy 165.527211 51.231789) (xy 165.658314 51.31939) (xy 165.658327 51.319397) - (xy 165.803998 51.379735) (xy 165.804003 51.379737) (xy 165.958653 51.410499) (xy 165.958656 51.4105) - (xy 165.958658 51.4105) (xy 166.116344 51.4105) (xy 166.116345 51.410499) (xy 166.270997 51.379737) - (xy 166.416679 51.319394) (xy 166.547789 51.231789) (xy 166.659289 51.120289) (xy 166.746894 50.989179) - (xy 166.807237 50.843497) (xy 166.838 50.688842) (xy 166.838 50.531158) (xy 166.838 50.531155) (xy 166.837999 50.531153) - (xy 166.815889 50.42) (xy 166.807237 50.376503) (xy 166.786833 50.327243) (xy 166.746897 50.230827) - (xy 166.74689 50.230814) (xy 166.692195 50.148957) (xy 166.659289 50.099711) (xy 166.659286 50.099707) - (xy 166.645732 50.086153) (xy 179.1545 50.086153) (xy 179.1545 50.243846) (xy 179.185261 50.398489) - (xy 179.185264 50.398501) (xy 179.245602 50.544172) (xy 179.245609 50.544185) (xy 179.33321 50.675288) - (xy 179.333213 50.675292) (xy 179.444707 50.786786) (xy 179.444711 50.786789) (xy 179.575814 50.87439) - (xy 179.575827 50.874397) (xy 179.721498 50.934735) (xy 179.721503 50.934737) (xy 179.871136 50.964501) - (xy 179.876153 50.965499) (xy 179.876156 50.9655) (xy 179.876158 50.9655) (xy 180.033844 50.9655) - (xy 180.033845 50.965499) (xy 180.188497 50.934737) (xy 180.334179 50.874394) (xy 180.465289 50.786789) - (xy 180.576789 50.675289) (xy 180.664394 50.544179) (xy 180.724737 50.398497) (xy 180.7555 50.243842) - (xy 180.7555 50.086158) (xy 180.7555 50.086155) (xy 180.755499 50.086153) (xy 180.749052 50.053741) - (xy 180.724737 49.931503) (xy 180.724735 49.931498) (xy 180.664397 49.785827) (xy 180.66439 49.785814) - (xy 180.576789 49.654711) (xy 180.576786 49.654707) (xy 180.465292 49.543213) (xy 180.465288 49.54321) - (xy 180.334185 49.455609) (xy 180.334172 49.455602) (xy 180.188501 49.395264) (xy 180.188489 49.395261) - (xy 180.033845 49.3645) (xy 180.033842 49.3645) (xy 179.876158 49.3645) (xy 179.876155 49.3645) - (xy 179.72151 49.395261) (xy 179.721498 49.395264) (xy 179.575827 49.455602) (xy 179.575814 49.455609) - (xy 179.444711 49.54321) (xy 179.444707 49.543213) (xy 179.333213 49.654707) (xy 179.33321 49.654711) - (xy 179.245609 49.785814) (xy 179.245602 49.785827) (xy 179.185264 49.931498) (xy 179.185261 49.93151) - (xy 179.1545 50.086153) (xy 166.645732 50.086153) (xy 166.547792 49.988213) (xy 166.547788 49.98821) - (xy 166.416685 49.900609) (xy 166.416672 49.900602) (xy 166.271001 49.840264) (xy 166.270989 49.840261) - (xy 166.116345 49.8095) (xy 166.116342 49.8095) (xy 165.958658 49.8095) (xy 165.958655 49.8095) - (xy 165.80401 49.840261) (xy 165.803998 49.840264) (xy 165.658327 49.900602) (xy 165.658314 49.900609) - (xy 165.527211 49.98821) (xy 165.527207 49.988213) (xy 165.490181 50.02524) (xy 165.428858 50.058725) - (xy 165.359166 50.053741) (xy 165.314819 50.02524) (xy 165.277792 49.988213) (xy 165.277788 49.98821) - (xy 165.146685 49.900609) (xy 165.146672 49.900602) (xy 165.001001 49.840264) (xy 165.000989 49.840261) - (xy 164.846345 49.8095) (xy 164.846342 49.8095) (xy 164.688658 49.8095) (xy 164.688655 49.8095) - (xy 164.53401 49.840261) (xy 164.533998 49.840264) (xy 164.388327 49.900602) (xy 164.388314 49.900609) - (xy 164.257211 49.98821) (xy 164.257207 49.988213) (xy 164.220181 50.02524) (xy 164.158858 50.058725) - (xy 164.089166 50.053741) (xy 164.044819 50.02524) (xy 164.007792 49.988213) (xy 164.007788 49.98821) - (xy 163.876685 49.900609) (xy 163.876672 49.900602) (xy 163.731001 49.840264) (xy 163.730989 49.840261) - (xy 163.576345 49.8095) (xy 163.576342 49.8095) (xy 163.418658 49.8095) (xy 163.418655 49.8095) - (xy 163.26401 49.840261) (xy 163.263998 49.840264) (xy 163.118327 49.900602) (xy 163.118314 49.900609) - (xy 162.987211 49.98821) (xy 162.987207 49.988213) (xy 162.875713 50.099707) (xy 162.87571 50.099711) - (xy 162.788109 50.230814) (xy 162.788102 50.230827) (xy 162.727764 50.376498) (xy 162.727761 50.37651) - (xy 162.697 50.531153) (xy 154.790009 50.531153) (xy 156.512379 48.827378) (xy 156.573882 48.794228) - (xy 156.599862 48.791535) (xy 208.175782 48.908583) (xy 208.242776 48.92842) (xy 208.288411 48.981328) - (xy 208.2995 49.032583) (xy 208.2995 71.7755) (xy 208.279815 71.842539) (xy 208.227011 71.888294) - (xy 208.1755 71.8995) (xy 122.458676 71.8995) (xy 122.391637 71.879815) (xy 122.370995 71.863181) - (xy 119.598525 69.090711) (xy 119.56504 69.029388) (xy 119.56222 69.004846) (xy 119.521387 66.192365) - (xy 119.542795 66.148811) (xy 119.546481 66.144964) (xy 120.222672 65.468772) (xy 120.227757 65.481047) - (xy 120.316949 65.614532) (xy 120.430468 65.728051) (xy 120.563953 65.817243) (xy 120.576225 65.822326) - (xy 119.921547 66.477004) (xy 119.921547 66.477005) (xy 119.990977 66.53028) (xy 120.186519 66.643176) - (xy 120.186529 66.64318) (xy 120.395131 66.729586) (xy 120.613239 66.788028) (xy 120.8371 66.8175) - (xy 121.0629 66.8175) (xy 121.28676 66.788028) (xy 121.504868 66.729586) (xy 121.71347 66.64318) - (xy 121.71348 66.643176) (xy 121.909018 66.530283) (xy 121.978451 66.477004) (xy 121.323773 65.822326) - (xy 121.336047 65.817243) (xy 121.469532 65.728051) (xy 121.583051 65.614532) (xy 121.672243 65.481047) - (xy 121.677326 65.468773) (xy 122.332004 66.123451) (xy 122.385283 66.054018) (xy 122.498176 65.85848) - (xy 122.49818 65.85847) (xy 122.584586 65.649868) (xy 122.643028 65.43176) (xy 122.6725 65.207899) - (xy 122.6725 64.9821) (xy 122.643028 64.758237) (xy 122.591829 64.567159) (xy 122.58486 64.541153) - (xy 181.9895 64.541153) (xy 181.9895 64.698846) (xy 182.020261 64.853489) (xy 182.020264 64.853501) - (xy 182.080602 64.999172) (xy 182.080609 64.999185) (xy 182.16821 65.130288) (xy 182.168213 65.130292) - (xy 182.279707 65.241786) (xy 182.279711 65.241789) (xy 182.410814 65.32939) (xy 182.410827 65.329397) - (xy 182.556498 65.389735) (xy 182.556503 65.389737) (xy 182.711153 65.420499) (xy 182.711156 65.4205) - (xy 182.711158 65.4205) (xy 182.868844 65.4205) (xy 182.868845 65.420499) (xy 183.023497 65.389737) - (xy 183.136166 65.343067) (xy 183.169172 65.329397) (xy 183.169172 65.329396) (xy 183.169179 65.329394) - (xy 183.300289 65.241789) (xy 183.411789 65.130289) (xy 183.499394 64.999179) (xy 183.559737 64.853497) - (xy 183.584073 64.731153) (xy 183.8395 64.731153) (xy 183.8395 64.888846) (xy 183.870261 65.043489) - (xy 183.870264 65.043501) (xy 183.930602 65.189172) (xy 183.930609 65.189185) (xy 184.01821 65.320288) - (xy 184.018213 65.320292) (xy 184.129707 65.431786) (xy 184.129711 65.431789) (xy 184.260814 65.51939) - (xy 184.260827 65.519397) (xy 184.406498 65.579735) (xy 184.406503 65.579737) (xy 184.561153 65.610499) - (xy 184.561156 65.6105) (xy 184.561158 65.6105) (xy 184.718844 65.6105) (xy 184.718845 65.610499) - (xy 184.873497 65.579737) (xy 185.019179 65.519394) (xy 185.150289 65.431789) (xy 185.261789 65.320289) - (xy 185.349394 65.189179) (xy 185.409737 65.043497) (xy 185.4405 64.888842) (xy 185.4405 64.731158) - (xy 185.4405 64.731155) (xy 185.440499 64.731153) (xy 185.409738 64.57651) (xy 185.409737 64.576503) - (xy 185.395097 64.541158) (xy 185.349397 64.430827) (xy 185.34939 64.430814) (xy 185.261789 64.299711) - (xy 185.261786 64.299707) (xy 185.150292 64.188213) (xy 185.150288 64.18821) (xy 185.019185 64.100609) - (xy 185.019172 64.100602) (xy 184.873501 64.040264) (xy 184.873489 64.040261) (xy 184.718845 64.0095) - (xy 184.718842 64.0095) (xy 184.561158 64.0095) (xy 184.561155 64.0095) (xy 184.40651 64.040261) - (xy 184.406498 64.040264) (xy 184.260827 64.100602) (xy 184.260814 64.100609) (xy 184.129711 64.18821) - (xy 184.129707 64.188213) (xy 184.018213 64.299707) (xy 184.01821 64.299711) (xy 183.930609 64.430814) - (xy 183.930602 64.430827) (xy 183.870264 64.576498) (xy 183.870261 64.57651) (xy 183.8395 64.731153) - (xy 183.584073 64.731153) (xy 183.590097 64.70087) (xy 183.5905 64.698844) (xy 183.5905 64.541155) - (xy 183.590499 64.541153) (xy 183.574744 64.461949) (xy 183.559737 64.386503) (xy 183.532398 64.3205) - (xy 183.499397 64.240827) (xy 183.49939 64.240814) (xy 183.411789 64.109711) (xy 183.411786 64.109707) - (xy 183.300292 63.998213) (xy 183.300288 63.99821) (xy 183.169185 63.910609) (xy 183.169172 63.910602) - (xy 183.023501 63.850264) (xy 183.023489 63.850261) (xy 182.868845 63.8195) (xy 182.868842 63.8195) - (xy 182.711158 63.8195) (xy 182.711155 63.8195) (xy 182.55651 63.850261) (xy 182.556498 63.850264) - (xy 182.410827 63.910602) (xy 182.410814 63.910609) (xy 182.279711 63.99821) (xy 182.279707 63.998213) - (xy 182.168213 64.109707) (xy 182.16821 64.109711) (xy 182.080609 64.240814) (xy 182.080602 64.240827) - (xy 182.020264 64.386498) (xy 182.020261 64.38651) (xy 181.9895 64.541153) (xy 122.58486 64.541153) - (xy 122.584586 64.540131) (xy 122.49818 64.331529) (xy 122.498176 64.331519) (xy 122.38528 64.135977) - (xy 122.332005 64.066547) (xy 122.332004 64.066547) (xy 121.677326 64.721225) (xy 121.672243 64.708953) - (xy 121.583051 64.575468) (xy 121.469532 64.461949) (xy 121.336047 64.372757) (xy 121.323772 64.367672) - (xy 121.978451 63.712994) (xy 121.978451 63.712993) (xy 121.90902 63.659719) (xy 121.909013 63.659714) - (xy 121.71348 63.546823) (xy 121.71347 63.546819) (xy 121.504868 63.460413) (xy 121.28676 63.401971) - (xy 121.0629 63.3725) (xy 120.8371 63.3725) (xy 120.613239 63.401971) (xy 120.395131 63.460413) - (xy 120.186529 63.546819) (xy 120.186519 63.546823) (xy 119.990977 63.659719) (xy 119.89222 63.735498) - (xy 119.827051 63.760692) (xy 119.758606 63.746653) (xy 119.708616 63.697839) (xy 119.692953 63.629748) - (xy 119.696957 63.605036) (xy 119.743409 63.431677) (xy 119.7755 63.187927) (xy 119.7755 62.942073) - (xy 119.743409 62.698323) (xy 119.679778 62.460847) (xy 119.672639 62.443613) (xy 119.642775 62.371514) - (xy 119.585694 62.233708) (xy 119.476901 62.045274) (xy 119.460303 61.985079) (xy 119.403897 58.1) - (xy 119.328374 52.898256) (xy 119.347083 52.830942) (xy 119.35398 52.82098) (xy 119.462767 52.679208) - (xy 119.585694 52.466292) (xy 119.679778 52.239153) (xy 119.702826 52.153135) (xy 123.0505 52.153135) - (xy 123.0505 53.64687) (xy 123.050501 53.646876) (xy 123.056908 53.706483) (xy 123.107202 53.841328) - (xy 123.107206 53.841335) (xy 123.193452 53.956544) (xy 123.193455 53.956547) (xy 123.308664 54.042793) - (xy 123.308671 54.042797) (xy 123.443517 54.093091) (xy 123.443516 54.093091) (xy 123.450444 54.093835) - (xy 123.503127 54.0995) (xy 123.722257 54.099499) (xy 123.789295 54.119183) (xy 123.83505 54.171987) - (xy 123.844994 54.241145) (xy 123.815969 54.304701) (xy 123.778552 54.333983) (xy 123.621326 54.414094) - (xy 123.468575 54.525075) (xy 123.335075 54.658575) (xy 123.224096 54.811324) (xy 123.138381 54.979547) - (xy 123.080035 55.159115) (xy 123.05329 55.327984) (xy 123.0505 55.345597) (xy 123.0505 55.534403) - (xy 123.051637 55.541581) (xy 123.080035 55.720884) (xy 123.138381 55.900452) (xy 123.224096 56.068675) - (xy 123.335073 56.221422) (xy 123.468578 56.354927) (xy 123.621325 56.465904) (xy 123.700804 56.5064) - (xy 123.789547 56.551618) (xy 123.789549 56.551618) (xy 123.789552 56.55162) (xy 123.857347 56.573648) - (xy 123.91404 56.592069) (xy 123.971715 56.631507) (xy 123.998913 56.695866) (xy 123.986998 56.764712) - (xy 123.939754 56.816188) (xy 123.91404 56.827931) (xy 123.789547 56.868381) (xy 123.621324 56.954096) - (xy 123.468575 57.065075) (xy 123.335075 57.198575) (xy 123.224096 57.351324) (xy 123.138381 57.519547) - (xy 123.080035 57.699115) (xy 123.0505 57.885597) (xy 123.0505 58.074402) (xy 123.080035 58.260884) - (xy 123.138381 58.440452) (xy 123.219676 58.6) (xy 123.224096 58.608675) (xy 123.335073 58.761422) - (xy 123.468578 58.894927) (xy 123.621325 59.005904) (xy 123.671864 59.031655) (xy 123.789547 59.091618) - (xy 123.789549 59.091618) (xy 123.789552 59.09162) (xy 123.844255 59.109394) (xy 123.91404 59.132069) - (xy 123.971715 59.171507) (xy 123.998913 59.235866) (xy 123.986998 59.304712) (xy 123.939754 59.356188) - (xy 123.91404 59.367931) (xy 123.789547 59.408381) (xy 123.621324 59.494096) (xy 123.468575 59.605075) - (xy 123.335075 59.738575) (xy 123.224096 59.891324) (xy 123.138381 60.059547) (xy 123.080035 60.239115) - (xy 123.0505 60.425597) (xy 123.0505 60.614402) (xy 123.080035 60.800884) (xy 123.138381 60.980452) - (xy 123.168111 61.038799) (xy 123.224096 61.148675) (xy 123.335073 61.301422) (xy 123.468578 61.434927) - (xy 123.621325 61.545904) (xy 123.688792 61.58028) (xy 123.789547 61.631618) (xy 123.789549 61.631618) - (xy 123.789552 61.63162) (xy 123.885802 61.662893) (xy 123.969115 61.689964) (xy 124.035637 61.7005) - (xy 124.155597 61.7195) (xy 124.155598 61.7195) (xy 124.344402 61.7195) (xy 124.344403 61.7195) - (xy 124.530884 61.689964) (xy 124.710448 61.63162) (xy 124.878675 61.545904) (xy 125.031422 61.434927) - (xy 125.164927 61.301422) (xy 125.275904 61.148675) (xy 125.36162 60.980448) (xy 125.419964 60.800884) - (xy 125.4495 60.614403) (xy 125.4495 60.425597) (xy 125.433664 60.325612) (xy 125.419964 60.239115) - (xy 125.361618 60.059547) (xy 125.305917 59.950229) (xy 125.275904 59.891325) (xy 125.164927 59.738578) - (xy 125.031422 59.605073) (xy 124.878675 59.494096) (xy 124.849385 59.479172) (xy 124.710452 59.408381) - (xy 124.585959 59.367931) (xy 124.528284 59.328493) (xy 124.501086 59.264134) (xy 124.513001 59.195288) - (xy 124.560245 59.143812) (xy 124.585959 59.132069) (xy 124.710448 59.09162) (xy 124.878675 59.005904) - (xy 125.031422 58.894927) (xy 125.164927 58.761422) (xy 125.275904 58.608675) (xy 125.36162 58.440448) - (xy 125.419964 58.260884) (xy 125.4495 58.074403) (xy 125.4495 57.885597) (xy 125.446983 57.869707) - (xy 125.419964 57.699115) (xy 125.361618 57.519547) (xy 125.3164 57.430804) (xy 125.275904 57.351325) - (xy 125.164927 57.198578) (xy 125.031422 57.065073) (xy 124.878675 56.954096) (xy 124.710452 56.868381) - (xy 124.585959 56.827931) (xy 124.528284 56.788493) (xy 124.501086 56.724134) (xy 124.513001 56.655288) - (xy 124.560245 56.603812) (xy 124.585959 56.592069) (xy 124.620558 56.580827) (xy 124.710448 56.55162) - (xy 124.878675 56.465904) (xy 125.031422 56.354927) (xy 125.164927 56.221422) (xy 125.275904 56.068675) - (xy 125.36162 55.900448) (xy 125.419964 55.720884) (xy 125.4495 55.534403) (xy 125.4495 55.345597) - (xy 125.446708 55.327971) (xy 125.419964 55.159115) (xy 125.361618 54.979547) (xy 125.275903 54.811324) - (xy 125.266713 54.798675) (xy 125.164927 54.658578) (xy 125.031422 54.525073) (xy 124.878675 54.414096) - (xy 124.721445 54.333983) (xy 124.67065 54.286009) (xy 124.653855 54.218188) (xy 124.676392 54.152054) - (xy 124.731107 54.108602) (xy 124.77774 54.099499) (xy 124.996872 54.099499) (xy 125.056483 54.093091) - (xy 125.191331 54.042796) (xy 125.306546 53.956546) (xy 125.390547 53.844335) (xy 125.44648 53.802465) - (xy 125.516172 53.797481) (xy 125.577495 53.830966) (xy 125.610979 53.89229) (xy 125.612286 53.938045) - (xy 125.5905 54.075597) (xy 125.5905 54.264402) (xy 125.620035 54.450884) (xy 125.678381 54.630452) - (xy 125.764096 54.798675) (xy 125.875073 54.951422) (xy 126.008578 55.084927) (xy 126.161325 55.195904) - (xy 126.240804 55.2364) (xy 126.329547 55.281618) (xy 126.329549 55.281618) (xy 126.329552 55.28162) - (xy 126.397347 55.303648) (xy 126.45404 55.322069) (xy 126.511715 55.361507) (xy 126.538913 55.425866) - (xy 126.526998 55.494712) (xy 126.479754 55.546188) (xy 126.45404 55.557931) (xy 126.329547 55.598381) - (xy 126.161324 55.684096) (xy 126.008575 55.795075) (xy 125.875075 55.928575) (xy 125.764096 56.081324) - (xy 125.678381 56.249547) (xy 125.620035 56.429115) (xy 125.5905 56.615597) (xy 125.5905 56.804402) - (xy 125.620035 56.990884) (xy 125.678381 57.170452) (xy 125.764096 57.338675) (xy 125.875073 57.491422) - (xy 126.008578 57.624927) (xy 126.161325 57.735904) (xy 126.240804 57.7764) (xy 126.329547 57.821618) - (xy 126.329549 57.821618) (xy 126.329552 57.82162) (xy 126.397347 57.843648) (xy 126.45404 57.862069) - (xy 126.511715 57.901507) (xy 126.538913 57.965866) (xy 126.526998 58.034712) (xy 126.479754 58.086188) - (xy 126.45404 58.097931) (xy 126.329547 58.138381) (xy 126.161324 58.224096) (xy 126.008575 58.335075) - (xy 125.875075 58.468575) (xy 125.764096 58.621324) (xy 125.678381 58.789547) (xy 125.620035 58.969115) - (xy 125.5905 59.155597) (xy 125.5905 59.344402) (xy 125.620035 59.530884) (xy 125.678381 59.710452) - (xy 125.728797 59.809397) (xy 125.764096 59.878675) (xy 125.875073 60.031422) (xy 126.008578 60.164927) - (xy 126.161325 60.275904) (xy 126.329552 60.36162) (xy 126.45485 60.402332) (xy 126.512524 60.441768) - (xy 126.539723 60.506127) (xy 126.527808 60.574973) (xy 126.480564 60.626449) (xy 126.45485 60.638193) - (xy 126.329739 60.678844) (xy 126.16158 60.764526) (xy 126.136386 60.782831) (xy 126.136386 60.782832) - (xy 126.705498 61.351944) (xy 126.618236 61.375326) (xy 126.516764 61.433911) (xy 126.433911 61.516764) - (xy 126.375326 61.618236) (xy 126.351944 61.705498) (xy 125.782832 61.136386) (xy 125.782831 61.136386) - (xy 125.764526 61.16158) (xy 125.678844 61.329741) (xy 125.620522 61.509236) (xy 125.591 61.695631) - (xy 125.591 61.884368) (xy 125.620522 62.070763) (xy 125.678844 62.250258) (xy 125.764523 62.418413) - (xy 125.782832 62.443612) (xy 125.782833 62.443613) (xy 126.351944 61.874501) (xy 126.375326 61.961764) - (xy 126.433911 62.063236) (xy 126.516764 62.146089) (xy 126.618236 62.204674) (xy 126.705498 62.228055) - (xy 126.136386 62.797166) (xy 126.161586 62.815476) (xy 126.329741 62.901155) (xy 126.509236 62.959477) - (xy 126.695632 62.989) (xy 126.884368 62.989) (xy 127.070763 62.959477) (xy 127.250258 62.901155) - (xy 127.418408 62.815478) (xy 127.418414 62.815475) (xy 127.443612 62.797166) (xy 127.39988 62.753434) - (xy 127.318286 62.67184) (xy 184.197653 62.67184) (xy 184.197653 62.829533) (xy 184.228414 62.984176) - (xy 184.228417 62.984188) (xy 184.288755 63.129859) (xy 184.288762 63.129872) (xy 184.376363 63.260975) - (xy 184.376366 63.260979) (xy 184.48786 63.372473) (xy 184.487864 63.372476) (xy 184.618967 63.460077) - (xy 184.61898 63.460084) (xy 184.764651 63.520422) (xy 184.764656 63.520424) (xy 184.897352 63.546819) - (xy 184.919306 63.551186) (xy 184.919309 63.551187) (xy 184.919311 63.551187) (xy 185.076997 63.551187) - (xy 185.076998 63.551186) (xy 185.23165 63.520424) (xy 185.356181 63.468842) (xy 185.377325 63.460084) - (xy 185.377325 63.460083) (xy 185.377332 63.460081) (xy 185.40566 63.441153) (xy 187.2245 63.441153) - (xy 187.2245 63.598846) (xy 187.255261 63.753489) (xy 187.255264 63.753501) (xy 187.315602 63.899172) - (xy 187.315609 63.899185) (xy 187.40321 64.030288) (xy 187.403213 64.030292) (xy 187.514707 64.141786) - (xy 187.514711 64.141789) (xy 187.645814 64.22939) (xy 187.645827 64.229397) (xy 187.791498 64.289735) - (xy 187.791503 64.289737) (xy 187.946153 64.320499) (xy 187.946156 64.3205) (xy 187.946158 64.3205) - (xy 188.103844 64.3205) (xy 188.103845 64.320499) (xy 188.258497 64.289737) (xy 188.376592 64.240821) - (xy 188.404172 64.229397) (xy 188.404172 64.229396) (xy 188.404179 64.229394) (xy 188.535289 64.141789) - (xy 188.646789 64.030289) (xy 188.734394 63.899179) (xy 188.794737 63.753497) (xy 188.8255 63.598842) - (xy 188.8255 63.451153) (xy 189.2195 63.451153) (xy 189.2195 63.608846) (xy 189.250261 63.763489) - (xy 189.250264 63.763501) (xy 189.310602 63.909172) (xy 189.310609 63.909185) (xy 189.39821 64.040288) - (xy 189.398213 64.040292) (xy 189.509707 64.151786) (xy 189.509711 64.151789) (xy 189.640814 64.23939) - (xy 189.640827 64.239397) (xy 189.78644 64.299711) (xy 189.786503 64.299737) (xy 189.941153 64.330499) - (xy 189.941156 64.3305) (xy 189.941158 64.3305) (xy 190.098844 64.3305) (xy 190.098845 64.330499) - (xy 190.253497 64.299737) (xy 190.366166 64.253067) (xy 190.399172 64.239397) (xy 190.399172 64.239396) - (xy 190.399179 64.239394) (xy 190.530289 64.151789) (xy 190.641789 64.040289) (xy 190.729394 63.909179) - (xy 190.789737 63.763497) (xy 190.8205 63.608842) (xy 190.8205 63.451158) (xy 190.8205 63.451155) - (xy 190.820499 63.451153) (xy 190.796253 63.329257) (xy 190.792651 63.311153) (xy 195.4495 63.311153) - (xy 195.4495 63.468846) (xy 195.480261 63.623489) (xy 195.480264 63.623501) (xy 195.540602 63.769172) - (xy 195.540609 63.769185) (xy 195.62821 63.900288) (xy 195.628213 63.900292) (xy 195.739707 64.011786) - (xy 195.739711 64.011789) (xy 195.870814 64.09939) (xy 195.870827 64.099397) (xy 196.016498 64.159735) - (xy 196.016503 64.159737) (xy 196.159661 64.188213) (xy 196.171153 64.190499) (xy 196.171156 64.1905) - (xy 196.171158 64.1905) (xy 196.328844 64.1905) (xy 196.328845 64.190499) (xy 196.483497 64.159737) - (xy 196.629179 64.099394) (xy 196.760289 64.011789) (xy 196.871789 63.900289) (xy 196.959394 63.769179) - (xy 197.019737 63.623497) (xy 197.0505 63.468842) (xy 197.0505 63.311158) (xy 197.0505 63.311155) - (xy 197.050499 63.311153) (xy 200.5695 63.311153) (xy 200.5695 63.468846) (xy 200.600261 63.623489) - (xy 200.600264 63.623501) (xy 200.660602 63.769172) (xy 200.660609 63.769185) (xy 200.74821 63.900288) - (xy 200.748213 63.900292) (xy 200.859707 64.011786) (xy 200.859711 64.011789) (xy 200.990814 64.09939) - (xy 200.990827 64.099397) (xy 201.136498 64.159735) (xy 201.136503 64.159737) (xy 201.279661 64.188213) - (xy 201.291153 64.190499) (xy 201.291156 64.1905) (xy 201.291158 64.1905) (xy 201.448844 64.1905) - (xy 201.448845 64.190499) (xy 201.603497 64.159737) (xy 201.749179 64.099394) (xy 201.880289 64.011789) - (xy 201.991789 63.900289) (xy 202.079394 63.769179) (xy 202.139737 63.623497) (xy 202.1705 63.468842) - (xy 202.1705 63.311158) (xy 202.1705 63.311155) (xy 202.170499 63.311153) (xy 202.145989 63.187934) - (xy 202.139737 63.156503) (xy 202.137386 63.150827) (xy 202.079397 63.010827) (xy 202.07939 63.010814) - (xy 201.991789 62.879711) (xy 201.991786 62.879707) (xy 201.880292 62.768213) (xy 201.880288 62.76821) - (xy 201.749185 62.680609) (xy 201.749172 62.680602) (xy 201.603501 62.620264) (xy 201.603489 62.620261) - (xy 201.448845 62.5895) (xy 201.448842 62.5895) (xy 201.291158 62.5895) (xy 201.291155 62.5895) - (xy 201.13651 62.620261) (xy 201.136498 62.620264) (xy 200.990827 62.680602) (xy 200.990814 62.680609) - (xy 200.859711 62.76821) (xy 200.859707 62.768213) (xy 200.748213 62.879707) (xy 200.74821 62.879711) - (xy 200.660609 63.010814) (xy 200.660602 63.010827) (xy 200.600264 63.156498) (xy 200.600261 63.15651) - (xy 200.5695 63.311153) (xy 197.050499 63.311153) (xy 197.025989 63.187934) (xy 197.019737 63.156503) - (xy 197.017386 63.150827) (xy 196.959397 63.010827) (xy 196.95939 63.010814) (xy 196.871789 62.879711) - (xy 196.871786 62.879707) (xy 196.760292 62.768213) (xy 196.760288 62.76821) (xy 196.629185 62.680609) - (xy 196.629172 62.680602) (xy 196.483501 62.620264) (xy 196.483489 62.620261) (xy 196.328845 62.5895) - (xy 196.328842 62.5895) (xy 196.171158 62.5895) (xy 196.171155 62.5895) (xy 196.01651 62.620261) - (xy 196.016498 62.620264) (xy 195.870827 62.680602) (xy 195.870814 62.680609) (xy 195.739711 62.76821) - (xy 195.739707 62.768213) (xy 195.628213 62.879707) (xy 195.62821 62.879711) (xy 195.540609 63.010814) - (xy 195.540602 63.010827) (xy 195.480264 63.156498) (xy 195.480261 63.15651) (xy 195.4495 63.311153) - (xy 190.792651 63.311153) (xy 190.789738 63.296508) (xy 190.789737 63.296507) (xy 190.789737 63.296503) - (xy 190.775023 63.260979) (xy 190.729397 63.150827) (xy 190.72939 63.150814) (xy 190.641789 63.019711) - (xy 190.641786 63.019707) (xy 190.530292 62.908213) (xy 190.530288 62.90821) (xy 190.399185 62.820609) - (xy 190.399172 62.820602) (xy 190.253501 62.760264) (xy 190.253489 62.760261) (xy 190.098845 62.7295) - (xy 190.098842 62.7295) (xy 189.941158 62.7295) (xy 189.941155 62.7295) (xy 189.78651 62.760261) - (xy 189.786498 62.760264) (xy 189.640827 62.820602) (xy 189.640814 62.820609) (xy 189.509711 62.90821) - (xy 189.509707 62.908213) (xy 189.398213 63.019707) (xy 189.39821 63.019711) (xy 189.310609 63.150814) - (xy 189.310602 63.150827) (xy 189.250264 63.296498) (xy 189.250261 63.29651) (xy 189.2195 63.451153) - (xy 188.8255 63.451153) (xy 188.8255 63.441158) (xy 188.8255 63.441155) (xy 188.825499 63.441153) - (xy 188.811838 63.372476) (xy 188.794737 63.286503) (xy 188.784165 63.260979) (xy 188.734397 63.140827) - (xy 188.73439 63.140814) (xy 188.646789 63.009711) (xy 188.646786 63.009707) (xy 188.535292 62.898213) - (xy 188.535288 62.89821) (xy 188.404185 62.810609) (xy 188.404172 62.810602) (xy 188.258501 62.750264) - (xy 188.258489 62.750261) (xy 188.103845 62.7195) (xy 188.103842 62.7195) (xy 187.946158 62.7195) - (xy 187.946155 62.7195) (xy 187.79151 62.750261) (xy 187.791498 62.750264) (xy 187.645827 62.810602) - (xy 187.645814 62.810609) (xy 187.514711 62.89821) (xy 187.514707 62.898213) (xy 187.403213 63.009707) - (xy 187.40321 63.009711) (xy 187.315609 63.140814) (xy 187.315602 63.140827) (xy 187.255264 63.286498) - (xy 187.255261 63.28651) (xy 187.2245 63.441153) (xy 185.40566 63.441153) (xy 185.508442 63.372476) - (xy 185.508445 63.372473) (xy 185.533534 63.347385) (xy 185.619939 63.260979) (xy 185.619942 63.260976) - (xy 185.707547 63.129866) (xy 185.750828 63.025373) (xy 185.794667 62.970974) (xy 185.860961 62.948908) - (xy 185.92866 62.966187) (xy 185.953069 62.985148) (xy 186.014707 63.046786) (xy 186.014711 63.046789) - (xy 186.145814 63.13439) (xy 186.145827 63.134397) (xy 186.275045 63.18792) (xy 186.291503 63.194737) - (xy 186.446153 63.225499) (xy 186.446156 63.2255) (xy 186.446158 63.2255) (xy 186.603844 63.2255) - (xy 186.603845 63.225499) (xy 186.758497 63.194737) (xy 186.904179 63.134394) (xy 187.035289 63.046789) - (xy 187.146789 62.935289) (xy 187.234394 62.804179) (xy 187.294737 62.658497) (xy 187.3255 62.503842) - (xy 187.3255 62.346158) (xy 187.3255 62.346155) (xy 187.325499 62.346153) (xy 187.303132 62.233708) - (xy 187.294737 62.191503) (xy 187.268806 62.1289) (xy 187.234397 62.045827) (xy 187.234389 62.045813) - (xy 187.195529 61.987656) (xy 187.17465 61.920979) (xy 187.193134 61.853599) (xy 187.195529 61.849872) - (xy 187.229028 61.799738) (xy 187.234394 61.791707) (xy 187.235102 61.789999) (xy 187.256064 61.73939) - (xy 187.294737 61.646025) (xy 187.3255 61.49137) (xy 187.3255 61.333686) (xy 187.3255 61.333683) - (xy 187.325499 61.333681) (xy 187.308636 61.248905) (xy 187.294737 61.179031) (xy 187.293518 61.176087) - (xy 187.234397 61.033355) (xy 187.23439 61.033342) (xy 187.146789 60.902239) (xy 187.146786 60.902235) - (xy 187.065704 60.821153) (xy 199.662 60.821153) (xy 199.662 60.978846) (xy 199.692761 61.133489) - (xy 199.692764 61.133501) (xy 199.753102 61.279172) (xy 199.753109 61.279185) (xy 199.84071 61.410288) - (xy 199.840713 61.410292) (xy 199.952207 61.521786) (xy 199.952211 61.521789) (xy 200.083314 61.60939) - (xy 200.083327 61.609397) (xy 200.228998 61.669735) (xy 200.229003 61.669737) (xy 200.35918 61.695631) - (xy 200.383653 61.700499) (xy 200.383656 61.7005) (xy 200.383658 61.7005) (xy 200.541344 61.7005) - (xy 200.541345 61.700499) (xy 200.695997 61.669737) (xy 200.841679 61.609394) (xy 200.972789 61.521789) - (xy 201.084289 61.410289) (xy 201.171894 61.279179) (xy 201.232237 61.133497) (xy 201.263 60.978842) - (xy 201.263 60.821158) (xy 201.263 60.821155) (xy 201.262999 60.821153) (xy 201.256949 60.790738) - (xy 201.232237 60.666503) (xy 201.225741 60.650821) (xy 201.171897 60.520827) (xy 201.17189 60.520814) - (xy 201.084289 60.389711) (xy 201.084286 60.389707) (xy 200.972792 60.278213) (xy 200.972788 60.27821) - (xy 200.841685 60.190609) (xy 200.841672 60.190602) (xy 200.696001 60.130264) (xy 200.695989 60.130261) - (xy 200.541345 60.0995) (xy 200.541342 60.0995) (xy 200.383658 60.0995) (xy 200.383655 60.0995) - (xy 200.22901 60.130261) (xy 200.228998 60.130264) (xy 200.083327 60.190602) (xy 200.083314 60.190609) - (xy 199.952211 60.27821) (xy 199.952207 60.278213) (xy 199.840713 60.389707) (xy 199.84071 60.389711) - (xy 199.753109 60.520814) (xy 199.753102 60.520827) (xy 199.692764 60.666498) (xy 199.692761 60.66651) - (xy 199.662 60.821153) (xy 187.065704 60.821153) (xy 187.035292 60.790741) (xy 187.035288 60.790738) - (xy 186.904185 60.703137) (xy 186.904172 60.70313) (xy 186.758501 60.642792) (xy 186.758489 60.642789) - (xy 186.603845 60.612028) (xy 186.603842 60.612028) (xy 186.446158 60.612028) (xy 186.446155 60.612028) - (xy 186.29151 60.642789) (xy 186.291498 60.642792) (xy 186.145827 60.70313) (xy 186.145814 60.703137) - (xy 186.014711 60.790738) (xy 186.014707 60.790741) (xy 185.903213 60.902235) (xy 185.90321 60.902239) - (xy 185.815609 61.033342) (xy 185.815602 61.033355) (xy 185.755264 61.179026) (xy 185.755261 61.179038) - (xy 185.7245 61.333681) (xy 185.7245 61.491374) (xy 185.755261 61.646017) (xy 185.755264 61.646029) - (xy 185.815602 61.791699) (xy 185.815603 61.7917) (xy 185.815606 61.791707) (xy 185.815609 61.791711) - (xy 185.815611 61.791715) (xy 185.854471 61.849875) (xy 185.858282 61.862049) (xy 185.866225 61.872033) - (xy 185.868523 61.894756) (xy 185.875348 61.916552) (xy 185.872138 61.930492) (xy 185.873257 61.941548) - (xy 185.864834 61.962218) (xy 185.8619 61.974965) (xy 185.858557 61.981539) (xy 185.815606 62.045821) - (xy 185.770486 62.154749) (xy 185.768296 62.159058) (xy 185.747505 62.181109) (xy 185.728484 62.204713) - (xy 185.723772 62.206281) (xy 185.720365 62.209895) (xy 185.690944 62.217207) (xy 185.662189 62.226778) - (xy 185.657377 62.22555) (xy 185.652558 62.226748) (xy 185.62386 62.216995) (xy 185.59449 62.209499) - (xy 185.588803 62.205081) (xy 185.586404 62.204266) (xy 185.584219 62.20152) (xy 185.570083 62.190538) - (xy 185.508445 62.1289) (xy 185.508441 62.128897) (xy 185.377338 62.041296) (xy 185.377325 62.041289) - (xy 185.231654 61.980951) (xy 185.231642 61.980948) (xy 185.076998 61.950187) (xy 185.076995 61.950187) - (xy 184.919311 61.950187) (xy 184.919308 61.950187) (xy 184.764663 61.980948) (xy 184.764651 61.980951) - (xy 184.61898 62.041289) (xy 184.618967 62.041296) (xy 184.487864 62.128897) (xy 184.48786 62.1289) - (xy 184.376366 62.240394) (xy 184.376363 62.240398) (xy 184.288762 62.371501) (xy 184.288755 62.371514) - (xy 184.228417 62.517185) (xy 184.228414 62.517197) (xy 184.197653 62.67184) (xy 127.318286 62.67184) - (xy 126.874502 62.228055) (xy 126.961764 62.204674) (xy 127.063236 62.146089) (xy 127.146089 62.063236) - (xy 127.204674 61.961764) (xy 127.228055 61.874501) (xy 127.797166 62.443612) (xy 127.815475 62.418414) - (xy 127.815478 62.418408) (xy 127.901155 62.250258) (xy 127.959477 62.070763) (xy 127.989 61.884368) - (xy 127.989 61.695631) (xy 127.959477 61.509236) (xy 127.901155 61.329741) (xy 127.815476 61.161586) - (xy 127.797166 61.136386) (xy 127.228055 61.705497) (xy 127.204674 61.618236) (xy 127.146089 61.516764) - (xy 127.063236 61.433911) (xy 126.961764 61.375326) (xy 126.874502 61.351944) (xy 127.275293 60.951153) - (xy 154.7295 60.951153) (xy 154.7295 61.108846) (xy 154.760261 61.263489) (xy 154.760264 61.263501) - (xy 154.820602 61.409172) (xy 154.820609 61.409185) (xy 154.90821 61.540288) (xy 154.908213 61.540292) - (xy 155.019707 61.651786) (xy 155.019711 61.651789) (xy 155.150814 61.73939) (xy 155.150827 61.739397) - (xy 155.277136 61.791715) (xy 155.296503 61.799737) (xy 155.427248 61.825744) (xy 155.451153 61.830499) - (xy 155.451156 61.8305) (xy 155.451158 61.8305) (xy 155.608844 61.8305) (xy 155.608845 61.830499) - (xy 155.763497 61.799737) (xy 155.909179 61.739394) (xy 156.040289 61.651789) (xy 156.151789 61.540289) - (xy 156.239394 61.409179) (xy 156.299737 61.263497) (xy 156.302639 61.248903) (xy 156.303985 61.24633) - (xy 156.303858 61.24343) (xy 156.320076 61.215567) (xy 156.335023 61.186994) (xy 156.33799 61.184794) - (xy 156.339008 61.183046) (xy 156.342512 61.180773) (xy 158.67912 61.180773) (xy 158.67912 61.338466) - (xy 158.709881 61.493109) (xy 158.709884 61.493121) (xy 158.770222 61.638792) (xy 158.770229 61.638805) - (xy 158.85783 61.769908) (xy 158.857833 61.769912) (xy 158.969327 61.881406) (xy 158.969331 61.881409) - (xy 159.100434 61.96901) (xy 159.100447 61.969017) (xy 159.225445 62.020792) (xy 159.246123 62.029357) - (xy 159.400773 62.060119) (xy 159.400776 62.06012) (xy 159.400778 62.06012) (xy 159.558464 62.06012) - (xy 159.558465 62.060119) (xy 159.713117 62.029357) (xy 159.858799 61.969014) (xy 159.989909 61.881409) - (xy 160.101409 61.769909) (xy 160.189014 61.638799) (xy 160.191989 61.631618) (xy 160.248376 61.495485) - (xy 160.292216 61.441081) (xy 160.315485 61.428376) (xy 160.359152 61.410289) (xy 160.433952 61.379306) - (xy 160.458792 61.369017) (xy 160.458792 61.369016) (xy 160.458799 61.369014) (xy 160.589909 61.281409) - (xy 160.701409 61.169909) (xy 160.789014 61.038799) (xy 160.791272 61.033349) (xy 160.840398 60.914745) - (xy 160.849357 60.893117) (xy 160.88012 60.738462) (xy 160.88012 60.580778) (xy 160.88012 60.580775) - (xy 160.880119 60.580773) (xy 160.865271 60.506127) (xy 160.849357 60.426123) (xy 160.844366 60.414074) - (xy 160.789017 60.280447) (xy 160.78901 60.280434) (xy 160.701409 60.149331) (xy 160.701406 60.149327) - (xy 160.589912 60.037833) (xy 160.589908 60.03783) (xy 160.458805 59.950229) (xy 160.458792 59.950222) - (xy 160.313121 59.889884) (xy 160.313109 59.889881) (xy 160.158465 59.85912) (xy 160.158462 59.85912) - (xy 160.000778 59.85912) (xy 160.000775 59.85912) (xy 159.84613 59.889881) (xy 159.846118 59.889884) - (xy 159.700447 59.950222) (xy 159.700434 59.950229) (xy 159.569331 60.03783) (xy 159.569327 60.037833) - (xy 159.457833 60.149327) (xy 159.45783 60.149331) (xy 159.370229 60.280434) (xy 159.370224 60.280444) - (xy 159.310863 60.423755) (xy 159.267022 60.478158) (xy 159.243755 60.490863) (xy 159.100444 60.550224) - (xy 159.100434 60.550229) (xy 158.969331 60.63783) (xy 158.969327 60.637833) (xy 158.857833 60.749327) - (xy 158.85783 60.749331) (xy 158.770229 60.880434) (xy 158.770222 60.880447) (xy 158.709884 61.026118) - (xy 158.709881 61.02613) (xy 158.67912 61.180773) (xy 156.342512 61.180773) (xy 156.349736 61.176087) - (xy 156.367831 61.162676) (xy 156.372224 61.16043) (xy 156.484679 61.113851) (xy 156.615789 61.026246) - (xy 156.727289 60.914746) (xy 156.814894 60.783636) (xy 156.815228 60.782831) (xy 156.833606 60.738462) - (xy 156.875237 60.637954) (xy 156.906 60.483299) (xy 156.906 60.325615) (xy 156.906 60.325612) (xy 156.905999 60.32561) - (xy 156.89657 60.27821) (xy 156.875237 60.17096) (xy 156.866278 60.149331) (xy 156.814897 60.025284) - (xy 156.81489 60.025271) (xy 156.727289 59.894168) (xy 156.727286 59.894164) (xy 156.615792 59.78267) - (xy 156.615788 59.782667) (xy 156.484685 59.695066) (xy 156.484672 59.695059) (xy 156.339001 59.634721) - (xy 156.338989 59.634718) (xy 156.184345 59.603957) (xy 156.184342 59.603957) (xy 156.026658 59.603957) - (xy 156.026655 59.603957) (xy 155.87201 59.634718) (xy 155.871998 59.634721) (xy 155.726327 59.695059) - (xy 155.726314 59.695066) (xy 155.595211 59.782667) (xy 155.595207 59.78267) (xy 155.483713 59.894164) - (xy 155.48371 59.894168) (xy 155.396109 60.025271) (xy 155.396102 60.025284) (xy 155.335763 60.170957) - (xy 155.335762 60.170962) (xy 155.332859 60.185556) (xy 155.300472 60.247467) (xy 155.258695 60.275923) - (xy 155.150823 60.320604) (xy 155.150814 60.320609) (xy 155.019711 60.40821) (xy 155.019707 60.408213) - (xy 154.908213 60.519707) (xy 154.90821 60.519711) (xy 154.820609 60.650814) (xy 154.820602 60.650827) - (xy 154.760264 60.796498) (xy 154.760261 60.79651) (xy 154.7295 60.951153) (xy 127.275293 60.951153) - (xy 127.369061 60.857385) (xy 127.443613 60.782832) (xy 127.418413 60.764523) (xy 127.25026 60.678844) - (xy 127.125149 60.638193) (xy 127.067474 60.598755) (xy 127.040276 60.534396) (xy 127.052191 60.46555) - (xy 127.099435 60.414074) (xy 127.125143 60.402334) (xy 127.250448 60.36162) (xy 127.418675 60.275904) - (xy 127.571422 60.164927) (xy 127.704927 60.031422) (xy 127.815904 59.878675) (xy 127.90162 59.710448) - (xy 127.959964 59.530884) (xy 127.9895 59.344403) (xy 127.9895 59.155597) (xy 127.987633 59.143812) - (xy 127.959964 58.969115) (xy 127.901618 58.789547) (xy 127.842228 58.672989) (xy 127.815904 58.621325) - (xy 127.704927 58.468578) (xy 127.571422 58.335073) (xy 127.524735 58.301153) (xy 156.9195 58.301153) - (xy 156.9195 58.458846) (xy 156.950261 58.613489) (xy 156.950264 58.613501) (xy 157.010602 58.759172) - (xy 157.010609 58.759185) (xy 157.09821 58.890288) (xy 157.098213 58.890292) (xy 157.209707 59.001786) - (xy 157.209711 59.001789) (xy 157.340814 59.08939) (xy 157.340827 59.089397) (xy 157.486498 59.149735) - (xy 157.486503 59.149737) (xy 157.632823 59.178842) (xy 157.641153 59.180499) (xy 157.641156 59.1805) - (xy 157.641158 59.1805) (xy 157.798844 59.1805) (xy 157.798845 59.180499) (xy 157.953497 59.149737) - (xy 158.09381 59.091618) (xy 158.099172 59.089397) (xy 158.099172 59.089396) (xy 158.099179 59.089394) - (xy 158.230289 59.001789) (xy 158.341789 58.890289) (xy 158.429394 58.759179) (xy 158.489737 58.613497) - (xy 158.5205 58.458842) (xy 158.5205 58.321153) (xy 159.6595 58.321153) (xy 159.6595 58.478846) - (xy 159.690261 58.633489) (xy 159.690264 58.633501) (xy 159.750602 58.779172) (xy 159.750609 58.779185) - (xy 159.83821 58.910288) (xy 159.838213 58.910292) (xy 159.949707 59.021786) (xy 159.949711 59.021789) - (xy 160.080814 59.10939) (xy 160.080827 59.109397) (xy 160.224953 59.169095) (xy 160.226503 59.169737) - (xy 160.354956 59.195288) (xy 160.381153 59.200499) (xy 160.381156 59.2005) (xy 160.381158 59.2005) - (xy 160.538844 59.2005) (xy 160.538845 59.200499) (xy 160.693497 59.169737) (xy 160.839179 59.109394) - (xy 160.970289 59.021789) (xy 161.081789 58.910289) (xy 161.169394 58.779179) (xy 161.229737 58.633497) - (xy 161.2605 58.478842) (xy 161.2605 58.321158) (xy 161.2605 58.321155) (xy 161.260499 58.321153) - (xy 161.229738 58.16651) (xy 161.229737 58.166503) (xy 161.19647 58.086188) (xy 161.169397 58.020827) - (xy 161.16939 58.020814) (xy 161.105714 57.925517) (xy 161.084836 57.85884) (xy 161.10332 57.79146) - (xy 161.155299 57.744769) (xy 161.224269 57.733593) (xy 161.233002 57.735008) (xy 161.266119 57.741595) - (xy 161.361155 57.7605) (xy 161.361158 57.7605) (xy 161.518844 57.7605) (xy 161.518845 57.760499) - (xy 161.673497 57.729737) (xy 161.819179 57.669394) (xy 161.950289 57.581789) (xy 162.061789 57.470289) - (xy 162.149394 57.339179) (xy 162.209737 57.193497) (xy 162.2405 57.038842) (xy 162.2405 56.881158) - (xy 162.2405 56.881155) (xy 162.240499 56.881153) (xy 162.229912 56.827931) (xy 162.209737 56.726503) - (xy 162.171466 56.634108) (xy 189.9495 56.634108) (xy 189.9495 58.034108) (xy 189.9495 58.165892) - (xy 189.949664 58.166503) (xy 189.983608 58.293187) (xy 190.007793 58.335075) (xy 190.0495 58.407314) - (xy 190.142686 58.5005) (xy 190.256814 58.566392) (xy 190.384108 58.6005) (xy 191.626122 58.6005) - (xy 191.693161 58.620185) (xy 191.736607 58.668205) (xy 191.780904 58.755143) (xy 191.896555 58.914321) - (xy 192.035678 59.053444) (xy 192.194856 59.169095) (xy 192.370162 59.258418) (xy 192.557283 59.319218) - (xy 192.6 59.325984) (xy 192.6 58.7245) (xy 192.619685 58.657461) (xy 192.672489 58.611706) (xy 192.724 58.6005) - (xy 192.976 58.6005) (xy 193.043039 58.620185) (xy 193.088794 58.672989) (xy 193.1 58.7245) (xy 193.1 59.325983) - (xy 193.142716 59.319218) (xy 193.329837 59.258418) (xy 193.505143 59.169095) (xy 193.664321 59.053444) - (xy 193.664322 59.053443) (xy 193.761965 58.955801) (xy 193.823288 58.922316) (xy 193.89298 58.9273) - (xy 193.937327 58.955801) (xy 194.035354 59.053828) (xy 194.194595 59.169524) (xy 194.255389 59.2005) - (xy 194.36997 59.258882) (xy 194.369972 59.258882) (xy 194.369975 59.258884) (xy 194.470317 59.291487) - (xy 194.557173 59.319709) (xy 194.751578 59.3505) (xy 194.751583 59.3505) (xy 194.948422 59.3505) - (xy 195.142826 59.319709) (xy 195.144337 59.319218) (xy 195.330025 59.258884) (xy 195.505405 59.169524) - (xy 195.664646 59.053828) (xy 195.762321 58.956152) (xy 195.770262 58.951816) (xy 195.775688 58.944569) - (xy 195.800447 58.935334) (xy 195.82364 58.92267) (xy 195.832669 58.923315) (xy 195.841152 58.920152) - (xy 195.866974 58.925769) (xy 195.893332 58.927654) (xy 195.902384 58.933471) (xy 195.909425 58.935003) - (xy 195.93768 58.956154) (xy 196.013182 59.031656) (xy 196.046666 59.092977) (xy 196.0495 59.119336) - (xy 196.0495 59.178846) (xy 196.080261 59.333489) (xy 196.080264 59.333501) (xy 196.140602 59.479172) - (xy 196.140609 59.479185) (xy 196.22821 59.610288) (xy 196.228213 59.610292) (xy 196.339707 59.721786) - (xy 196.339711 59.721789) (xy 196.470814 59.80939) (xy 196.470827 59.809397) (xy 196.590871 59.85912) - (xy 196.616503 59.869737) (xy 196.771153 59.900499) (xy 196.771156 59.9005) (xy 196.771158 59.9005) - (xy 196.928844 59.9005) (xy 196.928845 59.900499) (xy 197.083497 59.869737) (xy 197.229179 59.809394) - (xy 197.360289 59.721789) (xy 197.471789 59.610289) (xy 197.559394 59.479179) (xy 197.619737 59.333497) - (xy 197.6505 59.178842) (xy 197.6505 59.119336) (xy 197.659144 59.089895) (xy 197.665668 59.059909) - (xy 197.669422 59.054893) (xy 197.670185 59.052297) (xy 197.686819 59.031655) (xy 197.762319 58.956155) - (xy 197.823642 58.92267) (xy 197.893334 58.927654) (xy 197.937681 58.956155) (xy 198.035354 59.053828) - (xy 198.194595 59.169524) (xy 198.255389 59.2005) (xy 198.36997 59.258882) (xy 198.369972 59.258882) - (xy 198.369975 59.258884) (xy 198.470317 59.291487) (xy 198.557173 59.319709) (xy 198.751578 59.3505) - (xy 198.751583 59.3505) (xy 198.948422 59.3505) (xy 199.142826 59.319709) (xy 199.144337 59.319218) - (xy 199.330025 59.258884) (xy 199.505405 59.169524) (xy 199.664646 59.053828) (xy 199.762319 58.956155) - (xy 199.823642 58.92267) (xy 199.893334 58.927654) (xy 199.937681 58.956155) (xy 200.035354 59.053828) - (xy 200.194595 59.169524) (xy 200.255389 59.2005) (xy 200.36997 59.258882) (xy 200.369972 59.258882) - (xy 200.369975 59.258884) (xy 200.470317 59.291487) (xy 200.557173 59.319709) (xy 200.751578 59.3505) - (xy 200.751583 59.3505) (xy 200.948422 59.3505) (xy 201.142826 59.319709) (xy 201.144337 59.319218) - (xy 201.330025 59.258884) (xy 201.505405 59.169524) (xy 201.664646 59.053828) (xy 201.762319 58.956155) - (xy 201.823642 58.92267) (xy 201.893334 58.927654) (xy 201.937681 58.956155) (xy 202.035354 59.053828) - (xy 202.194595 59.169524) (xy 202.255389 59.2005) (xy 202.36997 59.258882) (xy 202.369972 59.258882) - (xy 202.369975 59.258884) (xy 202.470317 59.291487) (xy 202.557173 59.319709) (xy 202.751578 59.3505) - (xy 202.751583 59.3505) (xy 202.948422 59.3505) (xy 203.142826 59.319709) (xy 203.144337 59.319218) - (xy 203.330025 59.258884) (xy 203.505405 59.169524) (xy 203.664646 59.053828) (xy 203.803828 58.914646) - (xy 203.919524 58.755405) (xy 203.963955 58.668205) (xy 204.01193 58.617409) (xy 204.07444 58.6005) - (xy 204.31589 58.6005) (xy 204.315892 58.6005) (xy 204.443186 58.566392) (xy 204.557314 58.5005) - (xy 204.6505 58.407314) (xy 204.716392 58.293186) (xy 204.7505 58.165892) (xy 204.7505 56.634108) - (xy 204.716392 56.506814) (xy 204.6505 56.392686) (xy 204.557314 56.2995) (xy 204.472633 56.250609) - (xy 204.443187 56.233608) (xy 204.379539 56.216554) (xy 204.315892 56.1995) (xy 204.315891 56.1995) - (xy 203.073878 56.1995) (xy 203.006839 56.179815) (xy 202.963393 56.131795) (xy 202.919095 56.044856) - (xy 202.803444 55.885678) (xy 202.664321 55.746555) (xy 202.505143 55.630904) (xy 202.329835 55.541581) - (xy 202.142705 55.480778) (xy 202.1 55.474014) (xy 202.1 56.0755) (xy 202.080315 56.142539) (xy 202.027511 56.188294) - (xy 201.976 56.1995) (xy 201.724 56.1995) (xy 201.656961 56.179815) (xy 201.611206 56.127011) (xy 201.6 56.0755) - (xy 201.6 55.474014) (xy 201.599999 55.474014) (xy 201.557294 55.480778) (xy 201.370164 55.541581) - (xy 201.194856 55.630904) (xy 201.035678 55.746555) (xy 201.035676 55.746557) (xy 200.938033 55.844199) - (xy 200.87671 55.877683) (xy 200.807018 55.872698) (xy 200.762672 55.844198) (xy 200.664648 55.746174) - (xy 200.664646 55.746172) (xy 200.505405 55.630476) (xy 200.442413 55.59838) (xy 200.330029 55.541117) - (xy 200.142826 55.48029) (xy 199.948422 55.4495) (xy 199.948417 55.4495) (xy 199.751583 55.4495) - (xy 199.751578 55.4495) (xy 199.557173 55.48029) (xy 199.36997 55.541117) (xy 199.194594 55.630476) - (xy 199.120794 55.684096) (xy 199.035354 55.746172) (xy 199.035352 55.746174) (xy 199.035351 55.746174) - (xy 198.937681 55.843845) (xy 198.876358 55.87733) (xy 198.806666 55.872346) (xy 198.762319 55.843845) - (xy 198.664648 55.746174) (xy 198.664646 55.746172) (xy 198.505405 55.630476) (xy 198.442413 55.59838) - (xy 198.330029 55.541117) (xy 198.142826 55.48029) (xy 197.948422 55.4495) (xy 197.948417 55.4495) - (xy 197.751583 55.4495) (xy 197.751578 55.4495) (xy 197.557173 55.48029) (xy 197.36997 55.541117) - (xy 197.194594 55.630476) (xy 197.120794 55.684096) (xy 197.035354 55.746172) (xy 197.035352 55.746174) - (xy 197.035351 55.746174) (xy 196.937681 55.843845) (xy 196.876358 55.87733) (xy 196.806666 55.872346) - (xy 196.762319 55.843845) (xy 196.664648 55.746174) (xy 196.664646 55.746172) (xy 196.505405 55.630476) - (xy 196.442413 55.59838) (xy 196.330029 55.541117) (xy 196.142826 55.48029) (xy 195.948422 55.4495) - (xy 195.948417 55.4495) (xy 195.751583 55.4495) (xy 195.751578 55.4495) (xy 195.557173 55.48029) - (xy 195.36997 55.541117) (xy 195.194594 55.630476) (xy 195.120794 55.684096) (xy 195.035354 55.746172) - (xy 195.035352 55.746174) (xy 195.035351 55.746174) (xy 194.937681 55.843845) (xy 194.876358 55.87733) - (xy 194.806666 55.872346) (xy 194.762319 55.843845) (xy 194.664648 55.746174) (xy 194.664646 55.746172) - (xy 194.505405 55.630476) (xy 194.442413 55.59838) (xy 194.330029 55.541117) (xy 194.142826 55.48029) - (xy 193.948422 55.4495) (xy 193.948417 55.4495) (xy 193.751583 55.4495) (xy 193.751578 55.4495) - (xy 193.557173 55.48029) (xy 193.36997 55.541117) (xy 193.194594 55.630476) (xy 193.120794 55.684096) - (xy 193.035354 55.746172) (xy 193.035352 55.746174) (xy 193.03535 55.746175) (xy 192.937325 55.844199) - (xy 192.876002 55.877683) (xy 192.80631 55.872698) (xy 192.761964 55.844198) (xy 192.664321 55.746555) - (xy 192.505143 55.630904) (xy 192.329835 55.541581) (xy 192.142705 55.480778) (xy 192.1 55.474014) - (xy 192.1 56.0755) (xy 192.080315 56.142539) (xy 192.027511 56.188294) (xy 191.976 56.1995) (xy 191.724 56.1995) - (xy 191.656961 56.179815) (xy 191.611206 56.127011) (xy 191.6 56.0755) (xy 191.6 55.474014) (xy 191.599999 55.474014) - (xy 191.557294 55.480778) (xy 191.370164 55.541581) (xy 191.194856 55.630904) (xy 191.035678 55.746555) - (xy 190.896555 55.885678) (xy 190.780904 56.044856) (xy 190.736607 56.131795) (xy 190.688632 56.182591) - (xy 190.626122 56.1995) (xy 190.384108 56.1995) (xy 190.256812 56.233608) (xy 190.142686 56.2995) - (xy 190.142683 56.299502) (xy 190.049502 56.392683) (xy 190.0495 56.392686) (xy 189.983608 56.506812) - (xy 189.983556 56.507007) (xy 189.9495 56.634108) (xy 162.171466 56.634108) (xy 162.163799 56.615597) - (xy 162.149397 56.580827) (xy 162.14939 56.580814) (xy 162.061789 56.449711) (xy 162.061786 56.449707) - (xy 161.950292 56.338213) (xy 161.950288 56.33821) (xy 161.819185 56.250609) (xy 161.819172 56.250602) - (xy 161.673501 56.190264) (xy 161.673489 56.190261) (xy 161.518845 56.1595) (xy 161.518842 56.1595) - (xy 161.361158 56.1595) (xy 161.361155 56.1595) (xy 161.20651 56.190261) (xy 161.206498 56.190264) - (xy 161.060827 56.250602) (xy 161.060814 56.250609) (xy 160.929711 56.33821) (xy 160.929707 56.338213) - (xy 160.818213 56.449707) (xy 160.81821 56.449711) (xy 160.730609 56.580814) (xy 160.730602 56.580827) - (xy 160.670264 56.726498) (xy 160.670261 56.72651) (xy 160.6395 56.881153) (xy 160.6395 57.038846) - (xy 160.670261 57.193489) (xy 160.670264 57.193501) (xy 160.730602 57.339172) (xy 160.730609 57.339185) - (xy 160.794285 57.434482) (xy 160.815163 57.50116) (xy 160.796679 57.56854) (xy 160.7447 57.61523) - (xy 160.67573 57.626406) (xy 160.666992 57.62499) (xy 160.538845 57.5995) (xy 160.538842 57.5995) - (xy 160.381158 57.5995) (xy 160.381155 57.5995) (xy 160.22651 57.630261) (xy 160.226498 57.630264) - (xy 160.080827 57.690602) (xy 160.080814 57.690609) (xy 159.949711 57.77821) (xy 159.949707 57.778213) - (xy 159.838213 57.889707) (xy 159.83821 57.889711) (xy 159.750609 58.020814) (xy 159.750602 58.020827) - (xy 159.690264 58.166498) (xy 159.690261 58.16651) (xy 159.6595 58.321153) (xy 158.5205 58.321153) - (xy 158.5205 58.301158) (xy 158.5205 58.301155) (xy 158.520499 58.301153) (xy 158.505171 58.224096) - (xy 158.489737 58.146503) (xy 158.462206 58.080036) (xy 158.429397 58.000827) (xy 158.42939 58.000814) - (xy 158.341789 57.869711) (xy 158.341786 57.869707) (xy 158.230292 57.758213) (xy 158.230288 57.75821) - (xy 158.099185 57.670609) (xy 158.099172 57.670602) (xy 157.953501 57.610264) (xy 157.953489 57.610261) - (xy 157.798845 57.5795) (xy 157.798842 57.5795) (xy 157.641158 57.5795) (xy 157.641155 57.5795) - (xy 157.48651 57.610261) (xy 157.486498 57.610264) (xy 157.340827 57.670602) (xy 157.340814 57.670609) - (xy 157.209711 57.75821) (xy 157.209707 57.758213) (xy 157.098213 57.869707) (xy 157.09821 57.869711) - (xy 157.010609 58.000814) (xy 157.010602 58.000827) (xy 156.950264 58.146498) (xy 156.950261 58.14651) - (xy 156.9195 58.301153) (xy 127.524735 58.301153) (xy 127.418675 58.224096) (xy 127.250452 58.138381) - (xy 127.125959 58.097931) (xy 127.068284 58.058493) (xy 127.041086 57.994134) (xy 127.053001 57.925288) - (xy 127.100245 57.873812) (xy 127.125959 57.862069) (xy 127.135897 57.85884) (xy 127.250448 57.82162) - (xy 127.418675 57.735904) (xy 127.571422 57.624927) (xy 127.704927 57.491422) (xy 127.815904 57.338675) - (xy 127.90162 57.170448) (xy 127.959964 56.990884) (xy 127.9895 56.804403) (xy 127.9895 56.615597) - (xy 127.987633 56.603812) (xy 127.959964 56.429115) (xy 127.901618 56.249547) (xy 127.818457 56.086336) - (xy 127.815904 56.081325) (xy 127.704927 55.928578) (xy 127.571422 55.795073) (xy 127.418675 55.684096) - (xy 127.250452 55.598381) (xy 127.125959 55.557931) (xy 127.068284 55.518493) (xy 127.041086 55.454134) - (xy 127.053001 55.385288) (xy 127.100245 55.333812) (xy 127.125959 55.322069) (xy 127.250448 55.28162) - (xy 127.418675 55.195904) (xy 127.571422 55.084927) (xy 127.704927 54.951422) (xy 127.815904 54.798675) - (xy 127.90162 54.630448) (xy 127.959964 54.450884) (xy 127.9895 54.264403) (xy 127.9895 54.075597) - (xy 127.959964 53.889116) (xy 127.90162 53.709552) (xy 127.901618 53.709549) (xy 127.901618 53.709547) - (xy 127.8564 53.620804) (xy 127.815904 53.541325) (xy 127.704927 53.388578) (xy 127.571422 53.255073) - (xy 127.418675 53.144096) (xy 127.250452 53.058381) (xy 127.070884 53.000035) (xy 126.909899 52.974538) - (xy 126.884403 52.9705) (xy 126.695597 52.9705) (xy 126.673167 52.974052) (xy 126.509115 53.000035) - (xy 126.329547 53.058381) (xy 126.161324 53.144096) (xy 126.008575 53.255075) (xy 125.875075 53.388575) - (xy 125.764094 53.541326) (xy 125.683983 53.698552) (xy 125.636009 53.749347) (xy 125.568188 53.766142) - (xy 125.502053 53.743604) (xy 125.458602 53.688889) (xy 125.449499 53.642261) (xy 125.449499 52.153128) - (xy 125.443091 52.093517) (xy 125.392796 51.958669) (xy 125.392795 51.958668) (xy 125.392793 51.958664) - (xy 125.306547 51.843455) (xy 125.306544 51.843452) (xy 125.191335 51.757206) (xy 125.191328 51.757202) - (xy 125.056482 51.706908) (xy 125.056483 51.706908) (xy 124.996883 51.700501) (xy 124.996881 51.7005) - (xy 124.996873 51.7005) (xy 124.996864 51.7005) (xy 123.503129 51.7005) (xy 123.503123 51.700501) - (xy 123.443516 51.706908) (xy 123.308671 51.757202) (xy 123.308664 51.757206) (xy 123.193455 51.843452) - (xy 123.193452 51.843455) (xy 123.107206 51.958664) (xy 123.107202 51.958671) (xy 123.056908 52.093517) - (xy 123.050501 52.153116) (xy 123.050501 52.153123) (xy 123.0505 52.153135) (xy 119.702826 52.153135) - (xy 119.743409 52.001677) (xy 119.7755 51.757927) (xy 119.7755 51.512073) (xy 119.743409 51.268323) - (xy 119.696959 51.094968) (xy 119.698622 51.02512) (xy 119.737785 50.967258) (xy 119.802013 50.939754) - (xy 119.870915 50.951341) (xy 119.892221 50.964501) (xy 119.990981 51.040283) (xy 120.186519 51.153176) - (xy 120.186529 51.15318) (xy 120.395131 51.239586) (xy 120.613239 51.298028) (xy 120.8371 51.3275) - (xy 121.0629 51.3275) (xy 121.28676 51.298028) (xy 121.504868 51.239586) (xy 121.71347 51.15318) - (xy 121.71348 51.153176) (xy 121.909018 51.040283) (xy 121.978451 50.987004) (xy 121.323773 50.332326) - (xy 121.336047 50.327243) (xy 121.469532 50.238051) (xy 121.583051 50.124532) (xy 121.672243 49.991047) - (xy 121.677326 49.978773) (xy 122.332004 50.633451) (xy 122.385283 50.564018) (xy 122.498176 50.36848) - (xy 122.49818 50.36847) (xy 122.584586 50.159868) (xy 122.643028 49.94176) (xy 122.6725 49.717899) - (xy 122.6725 49.4921) (xy 122.643028 49.268239) (xy 122.584586 49.050131) (xy 122.49818 48.841529) - (xy 122.498178 48.841524) (xy 122.46641 48.786499) (xy 122.449938 48.718599) (xy 122.472791 48.652572) - (xy 122.527713 48.609382) (xy 122.573798 48.6005) (xy 123.662202 48.6005) - ) - ) - ) - (zone - (net "/Usb Connector/USB_GND") - (layer "In1.Cu") - (uuid "45405292-b160-4724-a7d0-cc48bf9f19d5") - (name "USB_GND") - (hatch edge 0.5) - (connect_pads - (clearance 0.5) - ) - (min_thickness 0.25) - (fill yes - (thermal_gap 0.5) - (thermal_bridge_width 0.5) - (island_removal_mode 0) - ) - (polygon - (pts - (xy 132.8 39) (xy 132.8 49.6) (xy 148.2 49.6) (xy 154.32 43.48) (xy 208.8 43.48) (xy 208.8 39) - ) - ) - (filled_polygon - (layer "In1.Cu") - (pts - (xy 208.242539 39.520185) (xy 208.288294 39.572989) (xy 208.2995 39.6245) (xy 208.2995 43.356) (xy 208.279815 43.423039) - (xy 208.227011 43.468794) (xy 208.1755 43.48) (xy 154.319999 43.48) (xy 148.236319 49.563681) (xy 148.174996 49.597166) - (xy 148.148638 49.6) (xy 137.808036 49.6) (xy 137.740997 49.580315) (xy 137.695242 49.527511) (xy 137.685298 49.458353) - (xy 137.693474 49.428549) (xy 137.699717 49.413477) (xy 137.73048 49.258822) (xy 137.73048 49.101138) - (xy 137.73048 49.101135) (xy 137.730479 49.101133) (xy 137.699718 48.94649) (xy 137.699717 48.946483) - (xy 137.699715 48.946478) (xy 137.639377 48.800807) (xy 137.63937 48.800794) (xy 137.551769 48.669691) - (xy 137.551766 48.669687) (xy 137.454234 48.572155) (xy 137.420749 48.510832) (xy 137.425733 48.44114) - (xy 137.467605 48.385207) (xy 137.533069 48.36079) (xy 137.545462 48.360956) (xy 137.545462 48.360824) - (xy 137.70924 48.360824) (xy 137.709241 48.360823) (xy 137.863893 48.330061) (xy 138.009575 48.269718) - (xy 138.140685 48.182113) (xy 138.252185 48.070613) (xy 138.252187 48.070609) (xy 138.255764 48.067033) - (xy 138.317087 48.033548) (xy 138.386779 48.038532) (xy 138.442713 48.080403) (xy 138.446548 48.085823) - (xy 138.525535 48.204034) (xy 138.525538 48.204038) (xy 138.650961 48.329461) (xy 138.650965 48.329464) - (xy 138.798446 48.428009) (xy 138.798459 48.428016) (xy 138.921363 48.478923) (xy 138.962334 48.495894) - (xy 138.962336 48.495894) (xy 138.962341 48.495896) (xy 139.136304 48.530499) (xy 139.136307 48.5305) - (xy 139.136309 48.5305) (xy 140.113693 48.5305) (xy 140.113694 48.530499) (xy 140.20181 48.512972) - (xy 140.287658 48.495896) (xy 140.287661 48.495894) (xy 140.287666 48.495894) (xy 140.451547 48.428013) - (xy 140.599035 48.329464) (xy 140.724464 48.204035) (xy 140.823013 48.056547) (xy 140.890894 47.892666) - (xy 140.9255 47.718691) (xy 140.9255 47.541309) (xy 140.9255 47.541306) (xy 140.925499 47.541304) - (xy 140.890896 47.367341) (xy 140.890893 47.367332) (xy 140.823016 47.203459) (xy 140.823009 47.203446) - (xy 140.724464 47.055965) (xy 140.724461 47.055961) (xy 140.599038 46.930538) (xy 140.599034 46.930535) - (xy 140.451553 46.83199) (xy 140.45154 46.831983) (xy 140.287667 46.764106) (xy 140.287658 46.764103) - (xy 140.113694 46.7295) (xy 140.113691 46.7295) (xy 139.287262 46.7295) (xy 139.220223 46.709815) - (xy 139.174468 46.657011) (xy 139.172712 46.652978) (xy 139.159392 46.620821) (xy 139.159389 46.620816) - (xy 139.159388 46.620814) (xy 139.071787 46.489711) (xy 139.071784 46.489707) (xy 138.96029 46.378213) - (xy 138.960286 46.37821) (xy 138.829183 46.290609) (xy 138.82917 46.290602) (xy 138.683499 46.230264) - (xy 138.683487 46.230261) (xy 138.528843 46.1995) (xy 138.52884 46.1995) (xy 138.371156 46.1995) - (xy 138.371153 46.1995) (xy 138.216508 46.230261) (xy 138.216496 46.230264) (xy 138.070825 46.290602) - (xy 138.070812 46.290609) (xy 137.939709 46.37821) (xy 137.939705 46.378213) (xy 137.828211 46.489707) - (xy 137.828208 46.489711) (xy 137.740606 46.620816) (xy 137.740604 46.620821) (xy 137.714734 46.683277) - (xy 137.670895 46.737679) (xy 137.604601 46.759745) (xy 137.600174 46.759824) (xy 137.551551 46.759824) - (xy 137.396906 46.790585) (xy 137.396894 46.790588) (xy 137.251223 46.850926) (xy 137.25121 46.850933) - (xy 137.120107 46.938534) (xy 137.120103 46.938537) (xy 137.008609 47.050031) (xy 137.008606 47.050035) - (xy 136.921005 47.181138) (xy 136.920998 47.181151) (xy 136.86066 47.326822) (xy 136.860657 47.326834) - (xy 136.829896 47.481477) (xy 136.829896 47.63917) (xy 136.860657 47.793813) (xy 136.86066 47.793825) - (xy 136.920998 47.939496) (xy 136.921005 47.939509) (xy 137.008606 48.070612) (xy 137.008609 48.070616) - (xy 137.106141 48.168148) (xy 137.139626 48.229471) (xy 137.134642 48.299163) (xy 137.09277 48.355096) - (xy 137.027306 48.379513) (xy 137.014914 48.379347) (xy 137.014914 48.37948) (xy 136.851135 48.37948) - (xy 136.69649 48.410241) (xy 136.696478 48.410244) (xy 136.550807 48.470582) (xy 136.550794 48.470589) - (xy 136.419691 48.55819) (xy 136.419687 48.558193) (xy 136.308193 48.669687) (xy 136.30819 48.669691) - (xy 136.220589 48.800794) (xy 136.220582 48.800807) (xy 136.160244 48.946478) (xy 136.160241 48.94649) - (xy 136.12948 49.101133) (xy 136.12948 49.258826) (xy 136.160241 49.413469) (xy 136.160243 49.413476) - (xy 136.166486 49.428549) (xy 136.173953 49.498019) (xy 136.142678 49.560497) (xy 136.082588 49.596149) - (xy 136.051924 49.6) (xy 132.924 49.6) (xy 132.856961 49.580315) (xy 132.811206 49.527511) (xy 132.8 49.476) - (xy 132.8 48.634589) (xy 132.819685 48.56755) (xy 132.872489 48.521795) (xy 132.941647 48.511851) - (xy 132.94818 48.512969) (xy 132.987947 48.52088) (xy 133.036307 48.5305) (xy 133.036309 48.5305) - (xy 134.013693 48.5305) (xy 134.013694 48.530499) (xy 134.10181 48.512972) (xy 134.187658 48.495896) - (xy 134.187661 48.495894) (xy 134.187666 48.495894) (xy 134.351547 48.428013) (xy 134.499035 48.329464) - (xy 134.624464 48.204035) (xy 134.723013 48.056547) (xy 134.790894 47.892666) (xy 134.8255 47.718691) - (xy 134.8255 47.541309) (xy 134.8255 47.541306) (xy 134.825499 47.541304) (xy 134.790896 47.367341) - (xy 134.790893 47.367332) (xy 134.723016 47.203459) (xy 134.723009 47.203446) (xy 134.624464 47.055965) - (xy 134.624461 47.055961) (xy 134.499038 46.930538) (xy 134.499034 46.930535) (xy 134.351553 46.83199) - (xy 134.35154 46.831983) (xy 134.187667 46.764106) (xy 134.187658 46.764103) (xy 134.013694 46.7295) - (xy 134.013691 46.7295) (xy 133.036309 46.7295) (xy 133.036304 46.7295) (xy 132.948191 46.747027) - (xy 132.927207 46.745149) (xy 132.906353 46.748148) (xy 132.893105 46.742097) (xy 132.8786 46.7408) - (xy 132.861961 46.727875) (xy 132.842797 46.719123) (xy 132.834923 46.706871) (xy 132.823422 46.697937) - (xy 132.816412 46.678068) (xy 132.805023 46.660345) (xy 132.801488 46.635761) (xy 132.800178 46.632047) - (xy 132.8 46.62541) (xy 132.8 46.399167) (xy 132.819685 46.332128) (xy 132.872489 46.286373) (xy 132.927377 46.27723) - (xy 132.927377 46.2755) (xy 133.066533 46.2755) (xy 133.154325 46.258035) (xy 133.197036 46.24954) - (xy 133.319969 46.19862) (xy 133.430606 46.124695) (xy 133.524695 46.030606) (xy 133.59862 45.919969) - (xy 133.64954 45.797036) (xy 133.6755 45.666533) (xy 139.474499 45.666533) (xy 139.500458 45.79703) - (xy 139.500461 45.79704) (xy 139.551376 45.919961) (xy 139.551386 45.919979) (xy 139.625301 46.030601) - (xy 139.625307 46.030609) (xy 139.71939 46.124692) (xy 139.719398 46.124698) (xy 139.83002 46.198613) - (xy 139.830023 46.198614) (xy 139.830031 46.19862) (xy 139.830037 46.198622) (xy 139.830038 46.198623) - (xy 139.90642 46.230261) (xy 139.952964 46.24954) (xy 139.952968 46.24954) (xy 139.952969 46.249541) - (xy 140.083466 46.2755) (xy 140.083469 46.2755) (xy 140.216533 46.2755) (xy 140.304325 46.258035) - (xy 140.347036 46.24954) (xy 140.469969 46.19862) (xy 140.580606 46.124695) (xy 140.674695 46.030606) - (xy 140.74862 45.919969) (xy 140.79954 45.797036) (xy 140.8255 45.666531) (xy 140.8255 45.533469) - (xy 140.8255 45.533466) (xy 140.799541 45.402969) (xy 140.79954 45.402968) (xy 140.79954 45.402964) - (xy 140.74862 45.280031) (xy 140.674695 45.169394) (xy 140.674692 45.16939) (xy 140.580609 45.075307) - (xy 140.580601 45.075301) (xy 140.469979 45.001386) (xy 140.469972 45.001382) (xy 140.469969 45.00138) - (xy 140.469965 45.001378) (xy 140.469961 45.001376) (xy 140.34704 44.950461) (xy 140.34703 44.950458) - (xy 140.216533 44.9245) (xy 140.216531 44.9245) (xy 140.083469 44.9245) (xy 140.083467 44.9245) - (xy 139.952969 44.950458) (xy 139.952959 44.950461) (xy 139.830038 45.001376) (xy 139.83002 45.001386) - (xy 139.719398 45.075301) (xy 139.71939 45.075307) (xy 139.625307 45.16939) (xy 139.625301 45.169398) - (xy 139.551386 45.28002) (xy 139.551376 45.280038) (xy 139.500461 45.402959) (xy 139.500458 45.402969) - (xy 139.4745 45.533466) (xy 139.4745 45.533469) (xy 139.4745 45.666531) (xy 139.4745 45.666533) - (xy 139.474499 45.666533) (xy 133.6755 45.666533) (xy 133.6755 45.666531) (xy 133.6755 45.533469) - (xy 133.6755 45.533466) (xy 133.649541 45.402969) (xy 133.64954 45.402968) (xy 133.64954 45.402964) - (xy 133.59862 45.280031) (xy 133.524695 45.169394) (xy 133.524692 45.16939) (xy 133.430609 45.075307) - (xy 133.430601 45.075301) (xy 133.319979 45.001386) (xy 133.319972 45.001382) (xy 133.319969 45.00138) - (xy 133.319965 45.001378) (xy 133.319961 45.001376) (xy 133.19704 44.950461) (xy 133.19703 44.950458) - (xy 133.066533 44.9245) (xy 133.066531 44.9245) (xy 132.933469 44.9245) (xy 132.927377 44.9245) - (xy 132.927377 44.922574) (xy 132.921298 44.921421) (xy 132.906353 44.92357) (xy 132.887667 44.915036) - (xy 132.867488 44.911206) (xy 132.856531 44.900817) (xy 132.842797 44.894545) (xy 132.831691 44.877264) - (xy 132.816787 44.863132) (xy 132.812583 44.847531) (xy 132.805023 44.835767) (xy 132.8 44.800832) - (xy 132.8 44.574589) (xy 132.819685 44.50755) (xy 132.872489 44.461795) (xy 132.941647 44.451851) - (xy 132.94818 44.452969) (xy 132.987947 44.46088) (xy 133.036307 44.4705) (xy 133.036309 44.4705) - (xy 134.013693 44.4705) (xy 134.013694 44.470499) (xy 134.10181 44.452972) (xy 134.187658 44.435896) - (xy 134.187661 44.435894) (xy 134.187666 44.435894) (xy 134.351547 44.368013) (xy 134.499035 44.269464) - (xy 134.624464 44.144035) (xy 134.723013 43.996547) (xy 134.790894 43.832666) (xy 134.8255 43.658691) - (xy 134.8255 43.481309) (xy 134.8255 43.481306) (xy 134.825499 43.481304) (xy 138.3245 43.481304) - (xy 138.3245 43.658695) (xy 138.359103 43.832658) (xy 138.359106 43.832667) (xy 138.426983 43.99654) - (xy 138.42699 43.996553) (xy 138.525535 44.144034) (xy 138.525538 44.144038) (xy 138.650961 44.269461) - (xy 138.650965 44.269464) (xy 138.798446 44.368009) (xy 138.798459 44.368016) (xy 138.921363 44.418923) - (xy 138.962334 44.435894) (xy 138.962336 44.435894) (xy 138.962341 44.435896) (xy 139.136304 44.470499) - (xy 139.136307 44.4705) (xy 139.136309 44.4705) (xy 140.113693 44.4705) (xy 140.113694 44.470499) - (xy 140.20181 44.452972) (xy 140.287658 44.435896) (xy 140.287661 44.435894) (xy 140.287666 44.435894) - (xy 140.451547 44.368013) (xy 140.599035 44.269464) (xy 140.724464 44.144035) (xy 140.823013 43.996547) - (xy 140.890894 43.832666) (xy 140.9255 43.658691) (xy 140.9255 43.481309) (xy 140.9255 43.481306) - (xy 140.925499 43.481304) (xy 140.890896 43.307341) (xy 140.890893 43.307332) (xy 140.823016 43.143459) - (xy 140.823009 43.143446) (xy 140.724464 42.995965) (xy 140.724461 42.995961) (xy 140.599038 42.870538) - (xy 140.599034 42.870535) (xy 140.451553 42.77199) (xy 140.45154 42.771983) (xy 140.287667 42.704106) - (xy 140.287658 42.704103) (xy 140.113694 42.6695) (xy 140.113691 42.6695) (xy 139.136309 42.6695) - (xy 139.136306 42.6695) (xy 138.962341 42.704103) (xy 138.962332 42.704106) (xy 138.798459 42.771983) - (xy 138.798446 42.77199) (xy 138.650965 42.870535) (xy 138.650961 42.870538) (xy 138.525538 42.995961) - (xy 138.525535 42.995965) (xy 138.42699 43.143446) (xy 138.426983 43.143459) (xy 138.359106 43.307332) - (xy 138.359103 43.307341) (xy 138.3245 43.481304) (xy 134.825499 43.481304) (xy 134.790896 43.307341) - (xy 134.790893 43.307332) (xy 134.723016 43.143459) (xy 134.723009 43.143446) (xy 134.624464 42.995965) - (xy 134.624461 42.995961) (xy 134.499038 42.870538) (xy 134.499034 42.870535) (xy 134.351553 42.77199) - (xy 134.35154 42.771983) (xy 134.187667 42.704106) (xy 134.187658 42.704103) (xy 134.013694 42.6695) - (xy 134.013691 42.6695) (xy 133.036309 42.6695) (xy 133.036304 42.6695) (xy 132.948191 42.687027) - (xy 132.8786 42.6808) (xy 132.823422 42.637937) (xy 132.800178 42.572047) (xy 132.8 42.56541) (xy 132.8 41.521153) - (xy 134.6995 41.521153) (xy 134.6995 41.678846) (xy 134.730261 41.833489) (xy 134.730264 41.833501) - (xy 134.790602 41.979172) (xy 134.790609 41.979185) (xy 134.87821 42.110288) (xy 134.878213 42.110292) - (xy 134.989707 42.221786) (xy 134.989711 42.221789) (xy 135.120814 42.30939) (xy 135.120827 42.309397) - (xy 135.266498 42.369735) (xy 135.266503 42.369737) (xy 135.421153 42.400499) (xy 135.421156 42.4005) - (xy 135.421158 42.4005) (xy 135.578844 42.4005) (xy 135.578845 42.400499) (xy 135.733497 42.369737) - (xy 135.879179 42.309394) (xy 136.010289 42.221789) (xy 136.121789 42.110289) (xy 136.209394 41.979179) - (xy 136.269737 41.833497) (xy 136.3005 41.678842) (xy 136.3005 41.521158) (xy 136.3005 41.521155) - (xy 136.300499 41.521153) (xy 136.269738 41.36651) (xy 136.269737 41.366503) (xy 136.269735 41.366498) - (xy 136.209397 41.220827) (xy 136.20939 41.220814) (xy 136.121789 41.089711) (xy 136.121786 41.089707) - (xy 136.010292 40.978213) (xy 136.010288 40.97821) (xy 135.879185 40.890609) (xy 135.879172 40.890602) - (xy 135.733501 40.830264) (xy 135.733489 40.830261) (xy 135.578845 40.7995) (xy 135.578842 40.7995) - (xy 135.421158 40.7995) (xy 135.421155 40.7995) (xy 135.26651 40.830261) (xy 135.266498 40.830264) - (xy 135.120827 40.890602) (xy 135.120814 40.890609) (xy 134.989711 40.97821) (xy 134.989707 40.978213) - (xy 134.878213 41.089707) (xy 134.87821 41.089711) (xy 134.790609 41.220814) (xy 134.790602 41.220827) - (xy 134.730264 41.366498) (xy 134.730261 41.36651) (xy 134.6995 41.521153) (xy 132.8 41.521153) - (xy 132.8 39.6245) (xy 132.819685 39.557461) (xy 132.872489 39.511706) (xy 132.924 39.5005) (xy 208.1755 39.5005) - ) - ) - ) - (zone - (net "/Power/3V3") - (layer "In2.Cu") - (uuid "ddcd6760-ca6a-4793-821b-a3fd027b5b61") - (name "3V3") - (hatch edge 0.5) - (connect_pads - (clearance 0.5) - ) - (min_thickness 0.25) - (fill yes - (thermal_gap 0.5) - (thermal_bridge_width 0.5) - (island_removal_mode 0) - ) - (polygon - (pts - (xy 123.2 48.1) (xy 119.25871 48.1) (xy 119.575 69.887925) (xy 122.15 72.412925) (xy 208.75 72.412925) - (xy 208.81 48.9) (xy 156.569553 48.780604) (xy 149.127532 56.142279) (xy 131.3 56.2) - ) - ) - (filled_polygon - (layer "In2.Cu") - (pts - (xy 123.716177 48.620185) (xy 123.736819 48.636819) (xy 131.299997 56.199998) (xy 131.299998 56.199998) - (xy 131.3 56.2) (xy 131.300001 56.199999) (xy 131.300002 56.2) (xy 131.413968 56.199631) (xy 149.127532 56.142279) - (xy 149.64711 55.62831) (xy 156.255471 55.62831) (xy 156.255471 55.786003) (xy 156.286232 55.940646) - (xy 156.286235 55.940658) (xy 156.346573 56.086329) (xy 156.34658 56.086342) (xy 156.434181 56.217445) - (xy 156.434184 56.217449) (xy 156.545678 56.328943) (xy 156.545682 56.328946) (xy 156.676785 56.416547) - (xy 156.676798 56.416554) (xy 156.822469 56.476892) (xy 156.822474 56.476894) (xy 156.972881 56.506812) - (xy 156.977124 56.507656) (xy 156.977127 56.507657) (xy 156.977129 56.507657) (xy 157.134815 56.507657) - (xy 157.134816 56.507656) (xy 157.289468 56.476894) (xy 157.43515 56.416551) (xy 157.56626 56.328946) - (xy 157.67776 56.217446) (xy 157.765365 56.086336) (xy 157.825708 55.940654) (xy 157.856471 55.785999) - (xy 157.856471 55.628315) (xy 157.856471 55.628312) (xy 157.85647 55.62831) (xy 157.850517 55.598381) - (xy 157.825708 55.47366) (xy 157.805911 55.425866) (xy 157.765368 55.327984) (xy 157.765361 55.327971) - (xy 157.67776 55.196868) (xy 157.677757 55.196864) (xy 157.566263 55.08537) (xy 157.566259 55.085367) - (xy 157.435156 54.997766) (xy 157.435143 54.997759) (xy 157.289472 54.937421) (xy 157.28946 54.937418) - (xy 157.134816 54.906657) (xy 157.134813 54.906657) (xy 156.977129 54.906657) (xy 156.977126 54.906657) - (xy 156.822481 54.937418) (xy 156.822469 54.937421) (xy 156.676798 54.997759) (xy 156.676785 54.997766) - (xy 156.545682 55.085367) (xy 156.545678 55.08537) (xy 156.434184 55.196864) (xy 156.434181 55.196868) - (xy 156.34658 55.327971) (xy 156.346573 55.327984) (xy 156.286235 55.473655) (xy 156.286232 55.473667) - (xy 156.255471 55.62831) (xy 149.64711 55.62831) (xy 151.190935 54.101153) (xy 173.062 54.101153) - (xy 173.062 54.258846) (xy 173.092761 54.413489) (xy 173.092764 54.413501) (xy 173.153102 54.559172) - (xy 173.153109 54.559185) (xy 173.24071 54.690288) (xy 173.240713 54.690292) (xy 173.352207 54.801786) - (xy 173.352211 54.801789) (xy 173.483314 54.88939) (xy 173.483327 54.889397) (xy 173.599262 54.937418) - (xy 173.629003 54.949737) (xy 173.778867 54.979547) (xy 173.783653 54.980499) (xy 173.783656 54.9805) - (xy 173.783658 54.9805) (xy 173.941344 54.9805) (xy 173.941345 54.980499) (xy 174.095997 54.949737) - (xy 174.241679 54.889394) (xy 174.372789 54.801789) (xy 174.484289 54.690289) (xy 174.571894 54.559179) - (xy 174.632237 54.413497) (xy 174.663 54.258842) (xy 174.663 54.101158) (xy 174.663 54.101155) (xy 174.662999 54.101153) - (xy 174.661395 54.093091) (xy 174.632237 53.946503) (xy 174.628734 53.938045) (xy 174.571897 53.800827) - (xy 174.57189 53.800814) (xy 174.484289 53.669711) (xy 174.484286 53.669707) (xy 174.372792 53.558213) - (xy 174.372788 53.55821) (xy 174.241685 53.470609) (xy 174.241672 53.470602) (xy 174.096001 53.410264) - (xy 174.095989 53.410261) (xy 173.941345 53.3795) (xy 173.941342 53.3795) (xy 173.783658 53.3795) - (xy 173.783655 53.3795) (xy 173.62901 53.410261) (xy 173.628998 53.410264) (xy 173.483327 53.470602) - (xy 173.483314 53.470609) (xy 173.352211 53.55821) (xy 173.352207 53.558213) (xy 173.240713 53.669707) - (xy 173.24071 53.669711) (xy 173.153109 53.800814) (xy 173.153102 53.800827) (xy 173.092764 53.946498) - (xy 173.092761 53.94651) (xy 173.062 54.101153) (xy 151.190935 54.101153) (xy 152.970144 52.341153) - (xy 176.392 52.341153) (xy 176.392 52.498846) (xy 176.422761 52.653489) (xy 176.422764 52.653501) - (xy 176.483102 52.799172) (xy 176.483109 52.799185) (xy 176.57071 52.930288) (xy 176.570713 52.930292) - (xy 176.682207 53.041786) (xy 176.682211 53.041789) (xy 176.813314 53.12939) (xy 176.813327 53.129397) - (xy 176.921727 53.174297) (xy 176.959003 53.189737) (xy 177.113653 53.220499) (xy 177.113656 53.2205) - (xy 177.24874 53.2205) (xy 177.315779 53.240185) (xy 177.361534 53.292989) (xy 177.371478 53.362147) - (xy 177.342453 53.425703) (xy 177.296192 53.459061) (xy 177.268327 53.470602) (xy 177.268314 53.470609) - (xy 177.137211 53.55821) (xy 177.137207 53.558213) (xy 177.025713 53.669707) (xy 177.02571 53.669711) - (xy 176.938109 53.800814) (xy 176.938102 53.800827) (xy 176.877764 53.946498) (xy 176.877761 53.94651) - (xy 176.847 54.101153) (xy 176.847 54.258846) (xy 176.877761 54.413489) (xy 176.877764 54.413501) - (xy 176.938102 54.559172) (xy 176.938109 54.559185) (xy 177.02571 54.690288) (xy 177.025713 54.690292) - (xy 177.137207 54.801786) (xy 177.137211 54.801789) (xy 177.268314 54.88939) (xy 177.268327 54.889397) - (xy 177.384262 54.937418) (xy 177.414003 54.949737) (xy 177.563867 54.979547) (xy 177.568653 54.980499) - (xy 177.568656 54.9805) (xy 177.568658 54.9805) (xy 177.726344 54.9805) (xy 177.726345 54.980499) - (xy 177.880997 54.949737) (xy 178.026679 54.889394) (xy 178.157789 54.801789) (xy 178.269289 54.690289) - (xy 178.356894 54.559179) (xy 178.417237 54.413497) (xy 178.448 54.258842) (xy 178.448 54.101158) - (xy 178.448 54.101155) (xy 178.447999 54.101153) (xy 178.446395 54.093091) (xy 178.417237 53.946503) - (xy 178.413734 53.938045) (xy 178.356897 53.800827) (xy 178.35689 53.800814) (xy 178.269289 53.669711) - (xy 178.269286 53.669707) (xy 178.157792 53.558213) (xy 178.157788 53.55821) (xy 178.026685 53.470609) - (xy 178.026672 53.470602) (xy 177.881001 53.410264) (xy 177.880989 53.410261) (xy 177.726345 53.3795) - (xy 177.726342 53.3795) (xy 177.59126 53.3795) (xy 177.524221 53.359815) (xy 177.478466 53.307011) - (xy 177.468522 53.237853) (xy 177.497547 53.174297) (xy 177.543808 53.140939) (xy 177.571672 53.129397) - (xy 177.571672 53.129396) (xy 177.571679 53.129394) (xy 177.702789 53.041789) (xy 177.814289 52.930289) - (xy 177.901894 52.799179) (xy 177.962237 52.653497) (xy 177.993 52.498842) (xy 177.993 52.341158) - (xy 177.993 52.341155) (xy 177.992999 52.341153) (xy 177.962237 52.186503) (xy 177.948408 52.153116) - (xy 177.901897 52.040827) (xy 177.90189 52.040814) (xy 177.814289 51.909711) (xy 177.814286 51.909707) - (xy 177.702792 51.798213) (xy 177.702788 51.79821) (xy 177.571685 51.710609) (xy 177.571672 51.710602) - (xy 177.426001 51.650264) (xy 177.425989 51.650261) (xy 177.271345 51.6195) (xy 177.271342 51.6195) - (xy 177.113658 51.6195) (xy 177.113655 51.6195) (xy 176.95901 51.650261) (xy 176.958998 51.650264) - (xy 176.813327 51.710602) (xy 176.813314 51.710609) (xy 176.682211 51.79821) (xy 176.682207 51.798213) - (xy 176.570713 51.909707) (xy 176.57071 51.909711) (xy 176.483109 52.040814) (xy 176.483102 52.040827) - (xy 176.422764 52.186498) (xy 176.422761 52.18651) (xy 176.392 52.341153) (xy 152.970144 52.341153) - (xy 154.799898 50.531153) (xy 158.887 50.531153) (xy 158.887 50.688846) (xy 158.917761 50.843489) - (xy 158.917764 50.843501) (xy 158.978102 50.989172) (xy 158.978109 50.989185) (xy 159.06571 51.120288) - (xy 159.065713 51.120292) (xy 159.177207 51.231786) (xy 159.177211 51.231789) (xy 159.308314 51.31939) - (xy 159.308327 51.319397) (xy 159.453998 51.379735) (xy 159.454003 51.379737) (xy 159.608653 51.410499) - (xy 159.608656 51.4105) (xy 159.608658 51.4105) (xy 159.766344 51.4105) (xy 159.766345 51.410499) - (xy 159.920997 51.379737) (xy 160.066679 51.319394) (xy 160.197789 51.231789) (xy 160.309289 51.120289) - (xy 160.396894 50.989179) (xy 160.457237 50.843497) (xy 160.488 50.688842) (xy 160.488 50.531158) - (xy 160.488 50.531155) (xy 160.487999 50.531153) (xy 166.507 50.531153) (xy 166.507 50.688846) (xy 166.537761 50.843489) - (xy 166.537764 50.843501) (xy 166.598102 50.989172) (xy 166.598109 50.989185) (xy 166.68571 51.120288) - (xy 166.685713 51.120292) (xy 166.797207 51.231786) (xy 166.797211 51.231789) (xy 166.928314 51.31939) - (xy 166.928327 51.319397) (xy 167.073998 51.379735) (xy 167.074003 51.379737) (xy 167.228653 51.410499) - (xy 167.228656 51.4105) (xy 167.228658 51.4105) (xy 167.386344 51.4105) (xy 167.386345 51.410499) - (xy 167.540997 51.379737) (xy 167.686679 51.319394) (xy 167.817789 51.231789) (xy 167.929289 51.120289) - (xy 168.016894 50.989179) (xy 168.077237 50.843497) (xy 168.108 50.688842) (xy 168.108 50.551153) - (xy 170.0545 50.551153) (xy 170.0545 50.708846) (xy 170.085261 50.863489) (xy 170.085264 50.863501) - (xy 170.145602 51.009172) (xy 170.145609 51.009185) (xy 170.23321 51.140288) (xy 170.233213 51.140292) - (xy 170.344707 51.251786) (xy 170.344711 51.251789) (xy 170.475814 51.33939) (xy 170.475827 51.339397) - (xy 170.621498 51.399735) (xy 170.621503 51.399737) (xy 170.776153 51.430499) (xy 170.776156 51.4305) - (xy 170.776158 51.4305) (xy 170.933844 51.4305) (xy 170.933845 51.430499) (xy 171.088497 51.399737) - (xy 171.234179 51.339394) (xy 171.365289 51.251789) (xy 171.476789 51.140289) (xy 171.564394 51.009179) - (xy 171.624737 50.863497) (xy 171.6555 50.708842) (xy 171.6555 50.551158) (xy 171.6555 50.551155) - (xy 171.655499 50.551153) (xy 171.642398 50.485289) (xy 171.624737 50.396503) (xy 171.613217 50.36869) - (xy 171.564397 50.250827) (xy 171.56439 50.250814) (xy 171.476789 50.119711) (xy 171.476786 50.119707) - (xy 171.398232 50.041153) (xy 173.492 50.041153) (xy 173.492 50.198846) (xy 173.522761 50.353489) - (xy 173.522764 50.353501) (xy 173.583102 50.499172) (xy 173.583109 50.499185) (xy 173.67071 50.630288) - (xy 173.670713 50.630292) (xy 173.782207 50.741786) (xy 173.782211 50.741789) (xy 173.913314 50.82939) - (xy 173.913327 50.829397) (xy 174.043938 50.883497) (xy 174.059003 50.889737) (xy 174.213653 50.920499) - (xy 174.213656 50.9205) (xy 174.213658 50.9205) (xy 174.371344 50.9205) (xy 174.371345 50.920499) - (xy 174.525997 50.889737) (xy 174.671679 50.829394) (xy 174.802789 50.741789) (xy 174.914289 50.630289) - (xy 175.001894 50.499179) (xy 175.062237 50.353497) (xy 175.093 50.198842) (xy 175.093 50.041158) - (xy 175.093 50.041155) (xy 175.092999 50.041153) (xy 175.086446 50.00821) (xy 175.062237 49.886503) - (xy 175.059652 49.880263) (xy 175.001897 49.740827) (xy 175.00189 49.740814) (xy 174.914289 49.609711) - (xy 174.914286 49.609707) (xy 174.802792 49.498213) (xy 174.802788 49.49821) (xy 174.671685 49.410609) - (xy 174.671672 49.410602) (xy 174.526001 49.350264) (xy 174.525989 49.350261) (xy 174.371345 49.3195) - (xy 174.371342 49.3195) (xy 174.213658 49.3195) (xy 174.213655 49.3195) (xy 174.05901 49.350261) - (xy 174.058998 49.350264) (xy 173.913327 49.410602) (xy 173.913314 49.410609) (xy 173.782211 49.49821) - (xy 173.782207 49.498213) (xy 173.670713 49.609707) (xy 173.67071 49.609711) (xy 173.583109 49.740814) - (xy 173.583102 49.740827) (xy 173.522764 49.886498) (xy 173.522761 49.88651) (xy 173.492 50.041153) - (xy 171.398232 50.041153) (xy 171.365292 50.008213) (xy 171.365288 50.00821) (xy 171.234185 49.920609) - (xy 171.234172 49.920602) (xy 171.088501 49.860264) (xy 171.088489 49.860261) (xy 170.933845 49.8295) - (xy 170.933842 49.8295) (xy 170.776158 49.8295) (xy 170.776155 49.8295) (xy 170.62151 49.860261) - (xy 170.621498 49.860264) (xy 170.475827 49.920602) (xy 170.475814 49.920609) (xy 170.344711 50.00821) - (xy 170.344707 50.008213) (xy 170.233213 50.119707) (xy 170.23321 50.119711) (xy 170.145609 50.250814) - (xy 170.145602 50.250827) (xy 170.085264 50.396498) (xy 170.085261 50.39651) (xy 170.0545 50.551153) - (xy 168.108 50.551153) (xy 168.108 50.531158) (xy 168.108 50.531155) (xy 168.107999 50.531153) (xy 168.10175 50.499736) - (xy 168.077237 50.376503) (xy 168.067708 50.353497) (xy 168.016897 50.230827) (xy 168.01689 50.230814) - (xy 167.929289 50.099711) (xy 167.929286 50.099707) (xy 167.817792 49.988213) (xy 167.817788 49.98821) - (xy 167.686685 49.900609) (xy 167.686672 49.900602) (xy 167.541001 49.840264) (xy 167.540989 49.840261) - (xy 167.386345 49.8095) (xy 167.386342 49.8095) (xy 167.228658 49.8095) (xy 167.228655 49.8095) - (xy 167.07401 49.840261) (xy 167.073998 49.840264) (xy 166.928327 49.900602) (xy 166.928314 49.900609) - (xy 166.797211 49.98821) (xy 166.797207 49.988213) (xy 166.685713 50.099707) (xy 166.68571 50.099711) - (xy 166.598109 50.230814) (xy 166.598102 50.230827) (xy 166.537764 50.376498) (xy 166.537761 50.37651) - (xy 166.507 50.531153) (xy 160.487999 50.531153) (xy 160.48175 50.499736) (xy 160.457237 50.376503) - (xy 160.447708 50.353497) (xy 160.396897 50.230827) (xy 160.39689 50.230814) (xy 160.309289 50.099711) - (xy 160.309286 50.099707) (xy 160.197792 49.988213) (xy 160.197788 49.98821) (xy 160.066685 49.900609) - (xy 160.066672 49.900602) (xy 159.921001 49.840264) (xy 159.920989 49.840261) (xy 159.766345 49.8095) - (xy 159.766342 49.8095) (xy 159.608658 49.8095) (xy 159.608655 49.8095) (xy 159.45401 49.840261) - (xy 159.453998 49.840264) (xy 159.308327 49.900602) (xy 159.308314 49.900609) (xy 159.177211 49.98821) - (xy 159.177207 49.988213) (xy 159.065713 50.099707) (xy 159.06571 50.099711) (xy 158.978109 50.230814) - (xy 158.978102 50.230827) (xy 158.917764 50.376498) (xy 158.917761 50.37651) (xy 158.887 50.531153) - (xy 154.799898 50.531153) (xy 156.533202 48.816562) (xy 156.594703 48.783413) (xy 156.620677 48.78072) - (xy 184.446166 48.844316) (xy 184.513161 48.864154) (xy 184.558795 48.917062) (xy 184.56858 48.986244) - (xy 184.53941 49.049733) (xy 184.514775 49.071418) (xy 184.459707 49.108213) (xy 184.348213 49.219707) - (xy 184.34821 49.219711) (xy 184.260609 49.350814) (xy 184.260603 49.350826) (xy 184.25396 49.366864) - (xy 184.210118 49.421266) (xy 184.143824 49.44333) (xy 184.091949 49.433971) (xy 184.030624 49.40857) - (xy 183.998497 49.395263) (xy 183.998493 49.395262) (xy 183.998489 49.395261) (xy 183.843845 49.3645) - (xy 183.843842 49.3645) (xy 183.686158 49.3645) (xy 183.686155 49.3645) (xy 183.53151 49.395261) - (xy 183.531498 49.395264) (xy 183.385827 49.455602) (xy 183.385814 49.455609) (xy 183.254711 49.54321) - (xy 183.254707 49.543213) (xy 183.143213 49.654707) (xy 183.14321 49.654711) (xy 183.055609 49.785814) - (xy 183.055602 49.785827) (xy 182.995264 49.931498) (xy 182.995261 49.93151) (xy 182.9645 50.086153) - (xy 182.9645 50.243846) (xy 182.995261 50.398489) (xy 182.995264 50.398501) (xy 183.055602 50.544172) - (xy 183.055609 50.544185) (xy 183.14321 50.675288) (xy 183.143213 50.675292) (xy 183.254707 50.786786) - (xy 183.254711 50.786789) (xy 183.385814 50.87439) (xy 183.385827 50.874397) (xy 183.531498 50.934735) - (xy 183.531503 50.934737) (xy 183.685122 50.965294) (xy 183.686153 50.965499) (xy 183.686156 50.9655) - (xy 183.686158 50.9655) (xy 183.843844 50.9655) (xy 183.843845 50.965499) (xy 183.998497 50.934737) - (xy 184.144179 50.874394) (xy 184.275289 50.786789) (xy 184.386789 50.675289) (xy 184.474394 50.544179) - (xy 184.481038 50.528138) (xy 184.524875 50.473736) (xy 184.591168 50.451668) (xy 184.643049 50.461027) - (xy 184.736503 50.499737) (xy 184.879299 50.528141) (xy 184.891153 50.530499) (xy 184.891156 50.5305) - (xy 184.891158 50.5305) (xy 185.048844 50.5305) (xy 185.048845 50.530499) (xy 185.203497 50.499737) - (xy 185.349179 50.439394) (xy 185.480289 50.351789) (xy 185.591789 50.240289) (xy 185.679394 50.109179) - (xy 185.739737 49.963497) (xy 185.748269 49.920602) (xy 185.753133 49.896153) (xy 196.6245 49.896153) - (xy 196.6245 50.053846) (xy 196.655261 50.208489) (xy 196.655264 50.208501) (xy 196.715602 50.354172) - (xy 196.715609 50.354185) (xy 196.80321 50.485288) (xy 196.803213 50.485292) (xy 196.914707 50.596786) - (xy 196.914711 50.596789) (xy 197.045814 50.68439) (xy 197.045827 50.684397) (xy 197.191498 50.744735) - (xy 197.191503 50.744737) (xy 197.346153 50.775499) (xy 197.346156 50.7755) (xy 197.346158 50.7755) - (xy 197.503844 50.7755) (xy 197.503845 50.775499) (xy 197.658497 50.744737) (xy 197.793436 50.688844) - (xy 197.804172 50.684397) (xy 197.804172 50.684396) (xy 197.804179 50.684394) (xy 197.809402 50.680903) - (xy 197.81889 50.674565) (xy 197.885567 50.653686) (xy 197.952947 50.67217) (xy 197.999638 50.724148) - (xy 198.009399 50.753474) (xy 198.035261 50.883491) (xy 198.035264 50.883501) (xy 198.095602 51.029172) - (xy 198.095609 51.029185) (xy 198.18321 51.160288) (xy 198.183213 51.160292) (xy 198.294707 51.271786) - (xy 198.294711 51.271789) (xy 198.425814 51.35939) (xy 198.425827 51.359397) (xy 198.571498 51.419735) - (xy 198.571503 51.419737) (xy 198.726153 51.450499) (xy 198.726156 51.4505) (xy 198.726158 51.4505) - (xy 198.883844 51.4505) (xy 198.883845 51.450499) (xy 199.038497 51.419737) (xy 199.184179 51.359394) - (xy 199.315289 51.271789) (xy 199.426789 51.160289) (xy 199.514394 51.029179) (xy 199.574737 50.883497) - (xy 199.6055 50.728842) (xy 199.6055 50.571158) (xy 199.6055 50.571155) (xy 199.605499 50.571153) - (xy 203.0845 50.571153) (xy 203.0845 50.728846) (xy 203.115261 50.883489) (xy 203.115264 50.883501) - (xy 203.175602 51.029172) (xy 203.175609 51.029185) (xy 203.26321 51.160288) (xy 203.263213 51.160292) - (xy 203.374707 51.271786) (xy 203.374711 51.271789) (xy 203.505814 51.35939) (xy 203.505827 51.359397) - (xy 203.651498 51.419735) (xy 203.651503 51.419737) (xy 203.806153 51.450499) (xy 203.806156 51.4505) - (xy 203.806158 51.4505) (xy 203.963844 51.4505) (xy 203.963845 51.450499) (xy 204.118497 51.419737) - (xy 204.264179 51.359394) (xy 204.395289 51.271789) (xy 204.506789 51.160289) (xy 204.594394 51.029179) - (xy 204.654737 50.883497) (xy 204.6855 50.728842) (xy 204.6855 50.571158) (xy 204.6855 50.571155) - (xy 204.685499 50.571153) (xy 205.6245 50.571153) (xy 205.6245 50.728846) (xy 205.655261 50.883489) - (xy 205.655264 50.883501) (xy 205.715602 51.029172) (xy 205.715609 51.029185) (xy 205.80321 51.160288) - (xy 205.803213 51.160292) (xy 205.914707 51.271786) (xy 205.914711 51.271789) (xy 206.045814 51.35939) - (xy 206.045827 51.359397) (xy 206.191498 51.419735) (xy 206.191503 51.419737) (xy 206.346153 51.450499) - (xy 206.346156 51.4505) (xy 206.346158 51.4505) (xy 206.503844 51.4505) (xy 206.503845 51.450499) - (xy 206.658497 51.419737) (xy 206.804179 51.359394) (xy 206.935289 51.271789) (xy 207.046789 51.160289) - (xy 207.134394 51.029179) (xy 207.194737 50.883497) (xy 207.2255 50.728842) (xy 207.2255 50.571158) - (xy 207.2255 50.571155) (xy 207.225499 50.571153) (xy 207.220135 50.544185) (xy 207.194737 50.416503) - (xy 207.188389 50.401177) (xy 207.134397 50.270827) (xy 207.13439 50.270814) (xy 207.046789 50.139711) - (xy 207.046786 50.139707) (xy 206.935292 50.028213) (xy 206.935288 50.02821) (xy 206.804185 49.940609) - (xy 206.804172 49.940602) (xy 206.658501 49.880264) (xy 206.658489 49.880261) (xy 206.503845 49.8495) - (xy 206.503842 49.8495) (xy 206.346158 49.8495) (xy 206.346155 49.8495) (xy 206.19151 49.880261) - (xy 206.191498 49.880264) (xy 206.045827 49.940602) (xy 206.045814 49.940609) (xy 205.914711 50.02821) - (xy 205.914707 50.028213) (xy 205.803213 50.139707) (xy 205.80321 50.139711) (xy 205.715609 50.270814) - (xy 205.715602 50.270827) (xy 205.655264 50.416498) (xy 205.655261 50.41651) (xy 205.6245 50.571153) - (xy 204.685499 50.571153) (xy 204.680135 50.544185) (xy 204.654737 50.416503) (xy 204.648389 50.401177) - (xy 204.594397 50.270827) (xy 204.59439 50.270814) (xy 204.506789 50.139711) (xy 204.506786 50.139707) - (xy 204.395292 50.028213) (xy 204.395288 50.02821) (xy 204.264185 49.940609) (xy 204.264172 49.940602) - (xy 204.118501 49.880264) (xy 204.118489 49.880261) (xy 203.963845 49.8495) (xy 203.963842 49.8495) - (xy 203.806158 49.8495) (xy 203.806155 49.8495) (xy 203.65151 49.880261) (xy 203.651498 49.880264) - (xy 203.505827 49.940602) (xy 203.505814 49.940609) (xy 203.374711 50.02821) (xy 203.374707 50.028213) - (xy 203.263213 50.139707) (xy 203.26321 50.139711) (xy 203.175609 50.270814) (xy 203.175602 50.270827) - (xy 203.115264 50.416498) (xy 203.115261 50.41651) (xy 203.0845 50.571153) (xy 199.605499 50.571153) - (xy 199.600135 50.544185) (xy 199.574737 50.416503) (xy 199.568389 50.401177) (xy 199.514397 50.270827) - (xy 199.51439 50.270814) (xy 199.426789 50.139711) (xy 199.426786 50.139707) (xy 199.315292 50.028213) - (xy 199.315288 50.02821) (xy 199.184185 49.940609) (xy 199.184172 49.940602) (xy 199.038501 49.880264) - (xy 199.038489 49.880261) (xy 198.883845 49.8495) (xy 198.883842 49.8495) (xy 198.726158 49.8495) - (xy 198.726155 49.8495) (xy 198.57151 49.880261) (xy 198.571498 49.880264) (xy 198.425827 49.940602) - (xy 198.425809 49.940612) (xy 198.411103 49.950438) (xy 198.344425 49.971313) (xy 198.277046 49.952826) - (xy 198.230358 49.900845) (xy 198.2206 49.871524) (xy 198.212241 49.8295) (xy 198.194737 49.741503) - (xy 198.18497 49.717924) (xy 198.134397 49.595827) (xy 198.13439 49.595814) (xy 198.046789 49.464711) - (xy 198.046786 49.464707) (xy 197.935292 49.353213) (xy 197.935288 49.35321) (xy 197.804185 49.265609) - (xy 197.804172 49.265602) (xy 197.658501 49.205264) (xy 197.658489 49.205261) (xy 197.503845 49.1745) - (xy 197.503842 49.1745) (xy 197.346158 49.1745) (xy 197.346155 49.1745) (xy 197.19151 49.205261) - (xy 197.191498 49.205264) (xy 197.045827 49.265602) (xy 197.045814 49.265609) (xy 196.914711 49.35321) - (xy 196.914707 49.353213) (xy 196.803213 49.464707) (xy 196.80321 49.464711) (xy 196.715609 49.595814) - (xy 196.715602 49.595827) (xy 196.655264 49.741498) (xy 196.655261 49.74151) (xy 196.6245 49.896153) - (xy 185.753133 49.896153) (xy 185.759156 49.865874) (xy 185.759156 49.865873) (xy 185.770499 49.808846) - (xy 185.7705 49.808844) (xy 185.7705 49.651155) (xy 185.770499 49.651153) (xy 185.749028 49.543211) - (xy 185.739737 49.496503) (xy 185.737896 49.492059) (xy 185.679397 49.350827) (xy 185.67939 49.350814) - (xy 185.591789 49.219711) (xy 185.591786 49.219707) (xy 185.480292 49.108213) (xy 185.480288 49.10821) - (xy 185.428823 49.073822) (xy 185.384018 49.02021) (xy 185.375311 48.950885) (xy 185.405466 48.887857) - (xy 185.464909 48.851138) (xy 185.497996 48.84672) (xy 208.175784 48.89855) (xy 208.242778 48.918388) - (xy 208.288412 48.971296) (xy 208.2995 49.02255) (xy 208.2995 71.7755) (xy 208.279815 71.842539) - (xy 208.227011 71.888294) (xy 208.1755 71.8995) (xy 139.256941 71.8995) (xy 139.189902 71.879815) - (xy 139.144147 71.827011) (xy 139.134203 71.757853) (xy 139.163228 71.694297) (xy 139.16926 71.687819) - (xy 139.246786 71.610292) (xy 139.246789 71.610289) (xy 139.334394 71.479179) (xy 139.394737 71.333497) - (xy 139.4255 71.178842) (xy 139.4255 71.021158) (xy 139.4255 71.021155) (xy 139.425499 71.021153) - (xy 139.403447 70.910292) (xy 139.394737 70.866503) (xy 139.358569 70.779185) (xy 139.334397 70.720827) - (xy 139.33439 70.720814) (xy 139.246789 70.589711) (xy 139.246786 70.589707) (xy 139.135292 70.478213) - (xy 139.135288 70.47821) (xy 139.004185 70.390609) (xy 139.004172 70.390602) (xy 138.858501 70.330264) - (xy 138.858489 70.330261) (xy 138.703845 70.2995) (xy 138.703842 70.2995) (xy 138.546158 70.2995) - (xy 138.546156 70.2995) (xy 138.514696 70.305757) (xy 138.445105 70.299528) (xy 138.389929 70.256663) - (xy 138.366686 70.190773) (xy 138.382755 70.122777) (xy 138.421615 70.081039) (xy 138.510289 70.021789) - (xy 138.621789 69.910289) (xy 138.709394 69.779179) (xy 138.769737 69.633497) (xy 138.784715 69.558194) - (xy 138.792084 69.521153) (xy 140.7995 69.521153) (xy 140.7995 69.678846) (xy 140.830261 69.833489) - (xy 140.830264 69.833501) (xy 140.890602 69.979172) (xy 140.890609 69.979185) (xy 140.97821 70.110288) - (xy 140.978213 70.110292) (xy 141.089707 70.221786) (xy 141.089711 70.221789) (xy 141.220814 70.30939) - (xy 141.220827 70.309397) (xy 141.366498 70.369735) (xy 141.366503 70.369737) (xy 141.502487 70.396786) - (xy 141.521153 70.400499) (xy 141.521156 70.4005) (xy 141.521158 70.4005) (xy 141.678844 70.4005) - (xy 141.678845 70.400499) (xy 141.833497 70.369737) (xy 141.979179 70.309394) (xy 142.110289 70.221789) - (xy 142.221789 70.110289) (xy 142.309394 69.979179) (xy 142.309397 69.979172) (xy 142.343784 69.896153) - (xy 195.5195 69.896153) (xy 195.5195 70.053846) (xy 195.550261 70.208489) (xy 195.550264 70.208501) - (xy 195.610602 70.354172) (xy 195.610609 70.354185) (xy 195.69821 70.485288) (xy 195.698213 70.485292) - (xy 195.809707 70.596786) (xy 195.809711 70.596789) (xy 195.940814 70.68439) (xy 195.940827 70.684397) - (xy 196.086498 70.744735) (xy 196.086503 70.744737) (xy 196.241153 70.775499) (xy 196.241156 70.7755) - (xy 196.241158 70.7755) (xy 196.398844 70.7755) (xy 196.398845 70.775499) (xy 196.553497 70.744737) - (xy 196.699179 70.684394) (xy 196.830289 70.596789) (xy 196.941789 70.485289) (xy 197.029394 70.354179) - (xy 197.053449 70.296102) (xy 197.097289 70.241701) (xy 197.163582 70.219635) (xy 197.231282 70.236913) - (xy 197.271112 70.274666) (xy 197.278207 70.285284) (xy 197.278213 70.285292) (xy 197.389707 70.396786) - (xy 197.389711 70.396789) (xy 197.520814 70.48439) (xy 197.520827 70.484397) (xy 197.666498 70.544735) - (xy 197.666503 70.544737) (xy 197.821153 70.575499) (xy 197.821156 70.5755) (xy 197.821158 70.5755) - (xy 197.978844 70.5755) (xy 197.978845 70.575499) (xy 198.133497 70.544737) (xy 198.279179 70.484394) - (xy 198.410289 70.396789) (xy 198.521789 70.285289) (xy 198.609394 70.154179) (xy 198.669737 70.008497) - (xy 198.7005 69.853842) (xy 198.7005 69.696158) (xy 198.7005 69.696155) (xy 198.700499 69.696153) - (xy 198.695527 69.671158) (xy 198.669737 69.541503) (xy 198.65938 69.516498) (xy 198.609397 69.395827) - (xy 198.60939 69.395814) (xy 198.521789 69.264711) (xy 198.521786 69.264707) (xy 198.410292 69.153213) - (xy 198.410288 69.15321) (xy 198.279185 69.065609) (xy 198.279172 69.065602) (xy 198.133501 69.005264) - (xy 198.133489 69.005261) (xy 197.978845 68.9745) (xy 197.978842 68.9745) (xy 197.821158 68.9745) - (xy 197.821155 68.9745) (xy 197.66651 69.005261) (xy 197.666498 69.005264) (xy 197.520827 69.065602) - (xy 197.520814 69.065609) (xy 197.389711 69.15321) (xy 197.38971 69.15321) (xy 197.381883 69.161038) - (xy 197.320558 69.19452) (xy 197.250867 69.189533) (xy 197.194935 69.147659) (xy 197.170521 69.082194) - (xy 197.172587 69.049165) (xy 197.192413 68.9495) (xy 197.2005 68.908844) (xy 197.2005 68.751155) - (xy 197.200499 68.751153) (xy 197.188455 68.690606) (xy 197.169737 68.596503) (xy 197.134114 68.5105) - (xy 197.109397 68.450827) (xy 197.10939 68.450814) (xy 197.021789 68.319711) (xy 197.021786 68.319707) - (xy 196.910292 68.208213) (xy 196.910288 68.20821) (xy 196.779185 68.120609) (xy 196.779172 68.120602) - (xy 196.633501 68.060264) (xy 196.633489 68.060261) (xy 196.478845 68.0295) (xy 196.478842 68.0295) - (xy 196.321158 68.0295) (xy 196.321155 68.0295) (xy 196.16651 68.060261) (xy 196.166498 68.060264) - (xy 196.020827 68.120602) (xy 196.020814 68.120609) (xy 195.889711 68.20821) (xy 195.889707 68.208213) - (xy 195.778213 68.319707) (xy 195.77821 68.319711) (xy 195.690609 68.450814) (xy 195.690602 68.450827) - (xy 195.630264 68.596498) (xy 195.630261 68.59651) (xy 195.5995 68.751153) (xy 195.5995 68.908846) - (xy 195.630261 69.063489) (xy 195.630264 69.063501) (xy 195.690602 69.209172) (xy 195.690609 69.209185) - (xy 195.739466 69.282304) (xy 195.760344 69.348982) (xy 195.741859 69.416362) (xy 195.724045 69.438876) - (xy 195.698213 69.464707) (xy 195.69821 69.464711) (xy 195.610609 69.595814) (xy 195.610602 69.595827) - (xy 195.550264 69.741498) (xy 195.550261 69.74151) (xy 195.5195 69.896153) (xy 142.343784 69.896153) - (xy 142.365958 69.842621) (xy 142.365958 69.842619) (xy 142.369737 69.833497) (xy 142.4005 69.678842) - (xy 142.4005 69.521158) (xy 142.4005 69.521155) (xy 142.400499 69.521153) (xy 142.394476 69.490874) - (xy 142.369737 69.366503) (xy 142.350955 69.321158) (xy 142.309397 69.220827) (xy 142.30939 69.220814) - (xy 142.221789 69.089711) (xy 142.221786 69.089707) (xy 142.110292 68.978213) (xy 142.110288 68.97821) - (xy 141.979185 68.890609) (xy 141.979172 68.890602) (xy 141.833501 68.830264) (xy 141.833489 68.830261) - (xy 141.678845 68.7995) (xy 141.678842 68.7995) (xy 141.521158 68.7995) (xy 141.521155 68.7995) - (xy 141.36651 68.830261) (xy 141.366498 68.830264) (xy 141.220827 68.890602) (xy 141.220814 68.890609) - (xy 141.089711 68.97821) (xy 141.089707 68.978213) (xy 140.978213 69.089707) (xy 140.97821 69.089711) - (xy 140.890609 69.220814) (xy 140.890602 69.220827) (xy 140.830264 69.366498) (xy 140.830261 69.36651) - (xy 140.7995 69.521153) (xy 138.792084 69.521153) (xy 138.798107 69.490875) (xy 138.798107 69.490874) - (xy 138.8005 69.478844) (xy 138.8005 69.321155) (xy 138.800499 69.321153) (xy 138.780543 69.220827) - (xy 138.769737 69.166503) (xy 138.737929 69.089711) (xy 138.709397 69.020827) (xy 138.70939 69.020814) - (xy 138.621789 68.889711) (xy 138.621786 68.889707) (xy 138.510292 68.778213) (xy 138.510288 68.77821) - (xy 138.379185 68.690609) (xy 138.379172 68.690602) (xy 138.233501 68.630264) (xy 138.233489 68.630261) - (xy 138.078845 68.5995) (xy 138.078842 68.5995) (xy 137.921158 68.5995) (xy 137.921155 68.5995) - (xy 137.76651 68.630261) (xy 137.766498 68.630264) (xy 137.620827 68.690602) (xy 137.620814 68.690609) - (xy 137.489711 68.77821) (xy 137.489707 68.778213) (xy 137.378213 68.889707) (xy 137.37821 68.889711) - (xy 137.290609 69.020814) (xy 137.290602 69.020827) (xy 137.230264 69.166498) (xy 137.230261 69.16651) - (xy 137.1995 69.321153) (xy 137.1995 69.478846) (xy 137.230261 69.633489) (xy 137.230264 69.633501) - (xy 137.290602 69.779172) (xy 137.290609 69.779185) (xy 137.37821 69.910288) (xy 137.378213 69.910292) - (xy 137.489707 70.021786) (xy 137.489711 70.021789) (xy 137.620814 70.10939) (xy 137.620827 70.109397) - (xy 137.758683 70.166498) (xy 137.766503 70.169737) (xy 137.921007 70.20047) (xy 137.921153 70.200499) - (xy 137.921156 70.2005) (xy 137.921158 70.2005) (xy 138.078844 70.2005) (xy 138.110299 70.194243) - (xy 138.17989 70.20047) (xy 138.235068 70.243332) (xy 138.258313 70.309222) (xy 138.242246 70.377219) - (xy 138.203382 70.418962) (xy 138.114711 70.47821) (xy 138.114707 70.478213) (xy 138.003213 70.589707) - (xy 138.00321 70.589711) (xy 137.915609 70.720814) (xy 137.915602 70.720827) (xy 137.855264 70.866498) - (xy 137.855261 70.86651) (xy 137.8245 71.021153) (xy 137.8245 71.178846) (xy 137.855261 71.333489) - (xy 137.855264 71.333501) (xy 137.915602 71.479172) (xy 137.915609 71.479185) (xy 138.00321 71.610288) - (xy 138.003213 71.610292) (xy 138.08074 71.687819) (xy 138.114225 71.749142) (xy 138.109241 71.818834) - (xy 138.067369 71.874767) (xy 138.001905 71.899184) (xy 137.993059 71.8995) (xy 122.458676 71.8995) - (xy 122.391637 71.879815) (xy 122.370995 71.863181) (xy 120.828967 70.321153) (xy 129.4995 70.321153) - (xy 129.4995 70.478846) (xy 129.530261 70.633489) (xy 129.530264 70.633501) (xy 129.590602 70.779172) - (xy 129.590609 70.779185) (xy 129.67821 70.910288) (xy 129.678213 70.910292) (xy 129.789707 71.021786) - (xy 129.789711 71.021789) (xy 129.920814 71.10939) (xy 129.920827 71.109397) (xy 130.066498 71.169735) - (xy 130.066503 71.169737) (xy 130.221153 71.200499) (xy 130.221156 71.2005) (xy 130.221158 71.2005) - (xy 130.378844 71.2005) (xy 130.378845 71.200499) (xy 130.533497 71.169737) (xy 130.679179 71.109394) - (xy 130.810289 71.021789) (xy 130.921789 70.910289) (xy 131.009394 70.779179) (xy 131.069737 70.633497) - (xy 131.1005 70.478842) (xy 131.1005 70.321158) (xy 131.1005 70.321155) (xy 131.100499 70.321153) - (xy 131.098126 70.309222) (xy 131.069737 70.166503) (xy 131.064629 70.154172) (xy 131.009397 70.020827) - (xy 131.00939 70.020814) (xy 130.921789 69.889711) (xy 130.921786 69.889707) (xy 130.810289 69.77821) - (xy 130.795259 69.768168) (xy 130.679185 69.690609) (xy 130.679172 69.690602) (xy 130.632217 69.671153) - (xy 134.4645 69.671153) (xy 134.4645 69.828846) (xy 134.495261 69.983489) (xy 134.495264 69.983501) - (xy 134.555602 70.129172) (xy 134.555609 70.129185) (xy 134.64321 70.260288) (xy 134.643213 70.260292) - (xy 134.754707 70.371786) (xy 134.754711 70.371789) (xy 134.885814 70.45939) (xy 134.885827 70.459397) - (xy 135.031498 70.519735) (xy 135.031503 70.519737) (xy 135.157176 70.544735) (xy 135.186153 70.550499) - (xy 135.186156 70.5505) (xy 135.186158 70.5505) (xy 135.343844 70.5505) (xy 135.343845 70.550499) - (xy 135.498497 70.519737) (xy 135.644179 70.459394) (xy 135.775289 70.371789) (xy 135.886789 70.260289) - (xy 135.974394 70.129179) (xy 136.034737 69.983497) (xy 136.0655 69.828842) (xy 136.0655 69.671158) - (xy 136.0655 69.671155) (xy 136.065499 69.671153) (xy 136.034737 69.516503) (xy 136.019138 69.478844) - (xy 135.974397 69.370827) (xy 135.97439 69.370814) (xy 135.886789 69.239711) (xy 135.886786 69.239707) - (xy 135.775292 69.128213) (xy 135.775288 69.12821) (xy 135.644185 69.040609) (xy 135.644172 69.040602) - (xy 135.498501 68.980264) (xy 135.498489 68.980261) (xy 135.343845 68.9495) (xy 135.343842 68.9495) - (xy 135.186158 68.9495) (xy 135.186155 68.9495) (xy 135.03151 68.980261) (xy 135.031498 68.980264) - (xy 134.885827 69.040602) (xy 134.885814 69.040609) (xy 134.754711 69.12821) (xy 134.754707 69.128213) - (xy 134.643213 69.239707) (xy 134.64321 69.239711) (xy 134.555609 69.370814) (xy 134.555602 69.370827) - (xy 134.495264 69.516498) (xy 134.495261 69.51651) (xy 134.4645 69.671153) (xy 130.632217 69.671153) - (xy 130.533501 69.630264) (xy 130.533489 69.630261) (xy 130.378845 69.5995) (xy 130.378842 69.5995) - (xy 130.221158 69.5995) (xy 130.221155 69.5995) (xy 130.06651 69.630261) (xy 130.066498 69.630264) - (xy 129.920827 69.690602) (xy 129.920814 69.690609) (xy 129.789711 69.77821) (xy 129.789707 69.778213) - (xy 129.678213 69.889707) (xy 129.67821 69.889711) (xy 129.590609 70.020814) (xy 129.590602 70.020827) - (xy 129.530264 70.166498) (xy 129.530261 70.16651) (xy 129.4995 70.321153) (xy 120.828967 70.321153) - (xy 119.598484 69.09067) (xy 119.564999 69.029347) (xy 119.562179 69.004801) (xy 119.53919 67.421153) - (xy 131.7995 67.421153) (xy 131.7995 67.578846) (xy 131.830261 67.733489) (xy 131.830264 67.733501) - (xy 131.890602 67.879172) (xy 131.890609 67.879185) (xy 131.97821 68.010288) (xy 131.978213 68.010292) - (xy 132.089707 68.121786) (xy 132.089711 68.121789) (xy 132.220814 68.20939) (xy 132.220827 68.209397) - (xy 132.366498 68.269735) (xy 132.366503 68.269737) (xy 132.521153 68.300499) (xy 132.521156 68.3005) - (xy 132.521158 68.3005) (xy 132.678844 68.3005) (xy 132.678845 68.300499) (xy 132.833497 68.269737) - (xy 132.979179 68.209394) (xy 133.110289 68.121789) (xy 133.221789 68.010289) (xy 133.309394 67.879179) - (xy 133.369737 67.733497) (xy 133.4005 67.578842) (xy 133.4005 67.421158) (xy 133.4005 67.421155) - (xy 133.400499 67.421153) (xy 133.382529 67.330814) (xy 133.369737 67.266503) (xy 133.342071 67.199711) - (xy 133.309397 67.120827) (xy 133.30939 67.120814) (xy 133.221789 66.989711) (xy 133.221786 66.989707) - (xy 133.110292 66.878213) (xy 133.110288 66.87821) (xy 132.979185 66.790609) (xy 132.979172 66.790602) - (xy 132.833501 66.730264) (xy 132.833489 66.730261) (xy 132.678845 66.6995) (xy 132.678842 66.6995) - (xy 132.521158 66.6995) (xy 132.521155 66.6995) (xy 132.36651 66.730261) (xy 132.366498 66.730264) - (xy 132.220827 66.790602) (xy 132.220814 66.790609) (xy 132.089711 66.87821) (xy 132.089707 66.878213) - (xy 131.978213 66.989707) (xy 131.97821 66.989711) (xy 131.890609 67.120814) (xy 131.890602 67.120827) - (xy 131.830264 67.266498) (xy 131.830261 67.26651) (xy 131.7995 67.421153) (xy 119.53919 67.421153) - (xy 119.524472 66.40731) (xy 119.543181 66.339994) (xy 119.595316 66.293477) (xy 119.664323 66.282531) - (xy 119.728293 66.31063) (xy 119.73614 66.317831) (xy 119.811504 66.393195) (xy 119.811511 66.393201) - (xy 119.85062 66.42321) (xy 119.990699 66.530696) (xy 120.186301 66.643627) (xy 120.186304 66.643628) - (xy 120.186309 66.643631) (xy 120.298882 66.690259) (xy 120.394971 66.730061) (xy 120.613138 66.788519) - (xy 120.837069 66.818) (xy 120.837076 66.818) (xy 121.062924 66.818) (xy 121.062931 66.818) (xy 121.286862 66.788519) - (xy 121.505029 66.730061) (xy 121.678232 66.658318) (xy 121.71369 66.643631) (xy 121.713691 66.643629) - (xy 121.713699 66.643627) (xy 121.909301 66.530696) (xy 122.08849 66.3932) (xy 122.2482 66.23349) - (xy 122.385696 66.054301) (xy 122.498627 65.858699) (xy 122.585061 65.650029) (xy 122.643519 65.431862) - (xy 122.673 65.207931) (xy 122.673 64.982069) (xy 122.643519 64.758138) (xy 122.585061 64.539971) - (xy 122.535027 64.419179) (xy 122.498631 64.331309) (xy 122.498626 64.3313) (xy 122.385696 64.135699) - (xy 122.349478 64.088498) (xy 122.248201 63.956511) (xy 122.248195 63.956504) (xy 122.088495 63.796804) - (xy 122.088488 63.796798) (xy 121.909308 63.659309) (xy 121.909306 63.659307) (xy 121.909301 63.659304) - (xy 121.713699 63.546373) (xy 121.71369 63.546368) (xy 121.505029 63.459939) (xy 121.399521 63.431668) - (xy 121.286862 63.401481) (xy 121.286861 63.40148) (xy 121.286858 63.40148) (xy 121.06294 63.372001) - (xy 121.062937 63.372) (xy 121.062931 63.372) (xy 120.837069 63.372) (xy 120.837063 63.372) (xy 120.837059 63.372001) - (xy 120.613141 63.40148) (xy 120.39497 63.459939) (xy 120.186309 63.546368) (xy 120.1863 63.546373) - (xy 119.990692 63.659308) (xy 119.892431 63.734706) (xy 119.827262 63.759899) (xy 119.758817 63.74586) - (xy 119.708828 63.697046) (xy 119.693166 63.628954) (xy 119.697168 63.604249) (xy 119.743409 63.431677) - (xy 119.7755 63.187927) (xy 119.7755 62.942073) (xy 119.743409 62.698323) (xy 119.679778 62.460847) - (xy 119.671485 62.440827) (xy 119.658461 62.409384) (xy 119.585694 62.233708) (xy 119.476873 62.045225) - (xy 119.460275 61.985031) (xy 119.328365 52.898266) (xy 119.347073 52.830953) (xy 119.353949 52.821021) - (xy 119.462767 52.679208) (xy 119.585694 52.466292) (xy 119.679778 52.239153) (xy 119.702826 52.153135) - (xy 123.0505 52.153135) (xy 123.0505 53.64687) (xy 123.050501 53.646876) (xy 123.056908 53.706483) - (xy 123.107202 53.841328) (xy 123.107206 53.841335) (xy 123.193452 53.956544) (xy 123.193455 53.956547) - (xy 123.308664 54.042793) (xy 123.308671 54.042797) (xy 123.443517 54.093091) (xy 123.443516 54.093091) - (xy 123.450444 54.093835) (xy 123.503127 54.0995) (xy 123.722257 54.099499) (xy 123.789295 54.119183) - (xy 123.83505 54.171987) (xy 123.844994 54.241145) (xy 123.815969 54.304701) (xy 123.778552 54.333983) - (xy 123.621326 54.414094) (xy 123.468575 54.525075) (xy 123.335075 54.658575) (xy 123.224096 54.811324) - (xy 123.138381 54.979547) (xy 123.080035 55.159115) (xy 123.05329 55.327984) (xy 123.0505 55.345597) - (xy 123.0505 55.534403) (xy 123.052367 55.546188) (xy 123.080035 55.720884) (xy 123.138381 55.900452) - (xy 123.224096 56.068675) (xy 123.335073 56.221422) (xy 123.468578 56.354927) (xy 123.621325 56.465904) - (xy 123.700804 56.5064) (xy 123.789547 56.551618) (xy 123.789549 56.551618) (xy 123.789552 56.55162) - (xy 123.857347 56.573648) (xy 123.91404 56.592069) (xy 123.971715 56.631507) (xy 123.998913 56.695866) - (xy 123.986998 56.764712) (xy 123.939754 56.816188) (xy 123.91404 56.827931) (xy 123.789547 56.868381) - (xy 123.621324 56.954096) (xy 123.468575 57.065075) (xy 123.335075 57.198575) (xy 123.224096 57.351324) - (xy 123.138381 57.519547) (xy 123.080035 57.699115) (xy 123.0505 57.885597) (xy 123.0505 58.074402) - (xy 123.080035 58.260884) (xy 123.138381 58.440452) (xy 123.21993 58.600499) (xy 123.224096 58.608675) - (xy 123.335073 58.761422) (xy 123.468578 58.894927) (xy 123.621325 59.005904) (xy 123.671864 59.031655) - (xy 123.789547 59.091618) (xy 123.789549 59.091618) (xy 123.789552 59.09162) (xy 123.844255 59.109394) - (xy 123.91404 59.132069) (xy 123.971715 59.171507) (xy 123.998913 59.235866) (xy 123.986998 59.304712) - (xy 123.939754 59.356188) (xy 123.91404 59.367931) (xy 123.789547 59.408381) (xy 123.621324 59.494096) - (xy 123.468575 59.605075) (xy 123.335075 59.738575) (xy 123.224096 59.891324) (xy 123.138381 60.059547) - (xy 123.080035 60.239115) (xy 123.053254 60.40821) (xy 123.0505 60.425597) (xy 123.0505 60.614403) - (xy 123.05157 60.621158) (xy 123.080035 60.800884) (xy 123.138381 60.980452) (xy 123.182766 61.067561) - (xy 123.224096 61.148675) (xy 123.335073 61.301422) (xy 123.468578 61.434927) (xy 123.621325 61.545904) - (xy 123.700804 61.5864) (xy 123.789547 61.631618) (xy 123.789549 61.631618) (xy 123.789552 61.63162) - (xy 123.885802 61.662893) (xy 123.969115 61.689964) (xy 124.035637 61.7005) (xy 124.155597 61.7195) - (xy 124.155598 61.7195) (xy 124.344402 61.7195) (xy 124.344403 61.7195) (xy 124.530884 61.689964) - (xy 124.710448 61.63162) (xy 124.878675 61.545904) (xy 125.031422 61.434927) (xy 125.164927 61.301422) - (xy 125.275904 61.148675) (xy 125.36162 60.980448) (xy 125.419964 60.800884) (xy 125.4495 60.614403) - (xy 125.4495 60.425597) (xy 125.446746 60.40821) (xy 125.419964 60.239115) (xy 125.367683 60.078213) - (xy 125.36162 60.059552) (xy 125.361618 60.059549) (xy 125.361618 60.059547) (xy 125.305917 59.950229) - (xy 125.275904 59.891325) (xy 125.164927 59.738578) (xy 125.031422 59.605073) (xy 124.878675 59.494096) - (xy 124.849385 59.479172) (xy 124.710452 59.408381) (xy 124.585959 59.367931) (xy 124.528284 59.328493) - (xy 124.501086 59.264134) (xy 124.513001 59.195288) (xy 124.560245 59.143812) (xy 124.585959 59.132069) - (xy 124.710448 59.09162) (xy 124.878675 59.005904) (xy 125.031422 58.894927) (xy 125.164927 58.761422) - (xy 125.275904 58.608675) (xy 125.36162 58.440448) (xy 125.419964 58.260884) (xy 125.4495 58.074403) - (xy 125.4495 57.885597) (xy 125.446983 57.869707) (xy 125.419964 57.699115) (xy 125.361618 57.519547) - (xy 125.315842 57.429707) (xy 125.275904 57.351325) (xy 125.164927 57.198578) (xy 125.031422 57.065073) - (xy 124.878675 56.954096) (xy 124.710452 56.868381) (xy 124.585959 56.827931) (xy 124.528284 56.788493) - (xy 124.501086 56.724134) (xy 124.513001 56.655288) (xy 124.560245 56.603812) (xy 124.585959 56.592069) - (xy 124.620558 56.580827) (xy 124.710448 56.55162) (xy 124.878675 56.465904) (xy 125.031422 56.354927) - (xy 125.164927 56.221422) (xy 125.275904 56.068675) (xy 125.36162 55.900448) (xy 125.419964 55.720884) - (xy 125.4495 55.534403) (xy 125.4495 55.345597) (xy 125.446708 55.327971) (xy 125.419964 55.159115) - (xy 125.361928 54.9805) (xy 125.36162 54.979552) (xy 125.361618 54.979549) (xy 125.361618 54.979547) - (xy 125.275903 54.811324) (xy 125.164927 54.658578) (xy 125.031422 54.525073) (xy 124.878675 54.414096) - (xy 124.721445 54.333983) (xy 124.67065 54.286009) (xy 124.653855 54.218188) (xy 124.676392 54.152054) - (xy 124.731107 54.108602) (xy 124.77774 54.099499) (xy 124.996872 54.099499) (xy 125.056483 54.093091) - (xy 125.191331 54.042796) (xy 125.306546 53.956546) (xy 125.390547 53.844335) (xy 125.44648 53.802465) - (xy 125.516172 53.797481) (xy 125.577495 53.830966) (xy 125.610979 53.89229) (xy 125.612286 53.938045) - (xy 125.5905 54.075597) (xy 125.5905 54.264402) (xy 125.620035 54.450884) (xy 125.678381 54.630452) - (xy 125.764096 54.798675) (xy 125.875073 54.951422) (xy 126.008578 55.084927) (xy 126.161325 55.195904) - (xy 126.240804 55.2364) (xy 126.329547 55.281618) (xy 126.329549 55.281618) (xy 126.329552 55.28162) - (xy 126.397347 55.303648) (xy 126.45404 55.322069) (xy 126.511715 55.361507) (xy 126.538913 55.425866) - (xy 126.526998 55.494712) (xy 126.479754 55.546188) (xy 126.45404 55.557931) (xy 126.329547 55.598381) - (xy 126.161324 55.684096) (xy 126.008575 55.795075) (xy 125.875075 55.928575) (xy 125.764096 56.081324) - (xy 125.678381 56.249547) (xy 125.620035 56.429115) (xy 125.5905 56.615597) (xy 125.5905 56.804402) - (xy 125.620035 56.990884) (xy 125.678381 57.170452) (xy 125.753669 57.318211) (xy 125.764096 57.338675) - (xy 125.875073 57.491422) (xy 126.008578 57.624927) (xy 126.161325 57.735904) (xy 126.240804 57.7764) - (xy 126.329547 57.821618) (xy 126.329549 57.821618) (xy 126.329552 57.82162) (xy 126.397347 57.843648) - (xy 126.45404 57.862069) (xy 126.511715 57.901507) (xy 126.538913 57.965866) (xy 126.526998 58.034712) - (xy 126.479754 58.086188) (xy 126.45404 58.097931) (xy 126.329547 58.138381) (xy 126.161324 58.224096) - (xy 126.008575 58.335075) (xy 125.875075 58.468575) (xy 125.764096 58.621324) (xy 125.678381 58.789547) - (xy 125.620035 58.969115) (xy 125.5905 59.155597) (xy 125.5905 59.344402) (xy 125.620035 59.530884) - (xy 125.678381 59.710452) (xy 125.749618 59.850261) (xy 125.764096 59.878675) (xy 125.875073 60.031422) - (xy 126.008578 60.164927) (xy 126.161325 60.275904) (xy 126.240804 60.3164) (xy 126.329547 60.361618) - (xy 126.329549 60.361618) (xy 126.329552 60.36162) (xy 126.397347 60.383648) (xy 126.45404 60.402069) - (xy 126.511715 60.441507) (xy 126.538913 60.505866) (xy 126.526998 60.574712) (xy 126.479754 60.626188) - (xy 126.45404 60.637931) (xy 126.329547 60.678381) (xy 126.161324 60.764096) (xy 126.008575 60.875075) - (xy 125.875075 61.008575) (xy 125.764096 61.161324) (xy 125.678381 61.329547) (xy 125.620035 61.509115) - (xy 125.5905 61.695597) (xy 125.5905 61.884402) (xy 125.620035 62.070884) (xy 125.678381 62.250452) - (xy 125.743968 62.379172) (xy 125.764096 62.418675) (xy 125.875073 62.571422) (xy 126.008578 62.704927) - (xy 126.161325 62.815904) (xy 126.240804 62.8564) (xy 126.329547 62.901618) (xy 126.329549 62.901618) - (xy 126.329552 62.90162) (xy 126.425802 62.932893) (xy 126.509115 62.959964) (xy 126.602356 62.974732) - (xy 126.695597 62.9895) (xy 126.695598 62.9895) (xy 126.884402 62.9895) (xy 126.884403 62.9895) - (xy 127.070884 62.959964) (xy 127.250448 62.90162) (xy 127.418675 62.815904) (xy 127.571422 62.704927) - (xy 127.655196 62.621153) (xy 131.2645 62.621153) (xy 131.2645 62.778846) (xy 131.295261 62.933489) - (xy 131.295264 62.933501) (xy 131.355602 63.079172) (xy 131.355609 63.079185) (xy 131.44321 63.210288) - (xy 131.443213 63.210292) (xy 131.554707 63.321786) (xy 131.554711 63.321789) (xy 131.685814 63.40939) - (xy 131.685827 63.409397) (xy 131.824398 63.466794) (xy 131.831503 63.469737) (xy 131.83447 63.470327) - (xy 131.83588 63.471064) (xy 131.837335 63.471506) (xy 131.837251 63.471781) (xy 131.896382 63.50271) - (xy 131.930958 63.563425) (xy 131.92722 63.633195) (xy 131.886355 63.689868) (xy 131.879173 63.695047) - (xy 131.754711 63.77821) (xy 131.754707 63.778213) (xy 131.643213 63.889707) (xy 131.64321 63.889711) - (xy 131.555609 64.020814) (xy 131.555602 64.020827) (xy 131.495264 64.166498) (xy 131.495261 64.16651) - (xy 131.4645 64.321153) (xy 131.4645 64.478846) (xy 131.495261 64.633489) (xy 131.495264 64.633501) - (xy 131.555602 64.779172) (xy 131.555608 64.779183) (xy 131.557802 64.782466) (xy 131.558423 64.784449) - (xy 131.558479 64.784554) (xy 131.558459 64.784564) (xy 131.578682 64.849143) (xy 131.560199 64.916524) - (xy 131.557804 64.920251) (xy 131.490609 65.020814) (xy 131.490602 65.020827) (xy 131.430264 65.166498) - (xy 131.430261 65.16651) (xy 131.3995 65.321153) (xy 131.3995 65.478846) (xy 131.430261 65.633489) - (xy 131.430264 65.633501) (xy 131.490602 65.779172) (xy 131.490609 65.779185) (xy 131.57821 65.910288) - (xy 131.578213 65.910292) (xy 131.689707 66.021786) (xy 131.689711 66.021789) (xy 131.820814 66.10939) - (xy 131.820827 66.109397) (xy 131.966498 66.169735) (xy 131.966503 66.169737) (xy 132.116131 66.1995) - (xy 132.121153 66.200499) (xy 132.121156 66.2005) (xy 132.121158 66.2005) (xy 132.278844 66.2005) - (xy 132.278845 66.200499) (xy 132.433497 66.169737) (xy 132.579179 66.109394) (xy 132.710289 66.021789) - (xy 132.821789 65.910289) (xy 132.909394 65.779179) (xy 132.969737 65.633497) (xy 133.0005 65.478842) - (xy 133.0005 65.321158) (xy 133.0005 65.321155) (xy 133.000499 65.321153) (xy 132.977979 65.20794) - (xy 132.969737 65.166503) (xy 132.954737 65.130289) (xy 132.909396 65.020825) (xy 132.909395 65.020823) - (xy 132.909394 65.020821) (xy 132.907196 65.017532) (xy 132.906574 65.015547) (xy 132.906525 65.015454) - (xy 132.906542 65.015444) (xy 132.886317 64.950857) (xy 132.9048 64.883476) (xy 132.907195 64.879749) - (xy 132.921067 64.858988) (xy 132.974394 64.779179) (xy 133.034737 64.633497) (xy 133.0655 64.478842) - (xy 133.0655 64.321158) (xy 133.0655 64.321155) (xy 133.049209 64.239258) (xy 133.049209 64.239257) - (xy 133.045608 64.221153) (xy 135.2995 64.221153) (xy 135.2995 64.378846) (xy 135.330261 64.533489) - (xy 135.330264 64.533501) (xy 135.390602 64.679172) (xy 135.390609 64.679185) (xy 135.47821 64.810288) - (xy 135.478213 64.810292) (xy 135.589707 64.921786) (xy 135.589711 64.921789) (xy 135.720814 65.00939) - (xy 135.720827 65.009397) (xy 135.803163 65.043501) (xy 135.866503 65.069737) (xy 136.021153 65.100499) - (xy 136.021156 65.1005) (xy 136.021158 65.1005) (xy 136.178844 65.1005) (xy 136.178845 65.100499) - (xy 136.333497 65.069737) (xy 136.451592 65.020821) (xy 136.479172 65.009397) (xy 136.479172 65.009396) - (xy 136.479179 65.009394) (xy 136.610289 64.921789) (xy 136.721789 64.810289) (xy 136.809394 64.679179) - (xy 136.869737 64.533497) (xy 136.9005 64.378842) (xy 136.9005 64.221158) (xy 136.9005 64.221155) - (xy 136.900499 64.221153) (xy 136.894402 64.1905) (xy 136.869737 64.066503) (xy 136.858879 64.040289) - (xy 136.809397 63.920827) (xy 136.80939 63.920814) (xy 136.754695 63.838958) (xy 136.721789 63.78971) - (xy 136.708233 63.776154) (xy 180.889499 63.776154) (xy 180.889499 63.933847) (xy 180.92026 64.08849) - (xy 180.920263 64.088502) (xy 180.980601 64.234173) (xy 180.980608 64.234186) (xy 181.068209 64.365289) - (xy 181.068212 64.365293) (xy 181.179706 64.476787) (xy 181.17971 64.47679) (xy 181.310813 64.564391) - (xy 181.310826 64.564398) (xy 181.456497 64.624736) (xy 181.456502 64.624738) (xy 181.56011 64.645347) - (xy 181.611152 64.6555) (xy 181.611155 64.655501) (xy 181.611157 64.655501) (xy 181.768842 64.655501) - (xy 181.784403 64.652405) (xy 181.851191 64.63912) (xy 181.920781 64.645347) (xy 181.975959 64.688209) - (xy 181.996999 64.736545) (xy 182.020261 64.853491) (xy 182.020264 64.853501) (xy 182.080602 64.999172) - (xy 182.080609 64.999185) (xy 182.16821 65.130288) (xy 182.168213 65.130292) (xy 182.279707 65.241786) - (xy 182.279711 65.241789) (xy 182.410814 65.32939) (xy 182.410827 65.329397) (xy 182.556498 65.389735) - (xy 182.556503 65.389737) (xy 182.689998 65.416291) (xy 182.711153 65.420499) (xy 182.711156 65.4205) - (xy 182.711158 65.4205) (xy 182.868844 65.4205) (xy 182.921308 65.410064) (xy 182.9909 65.416291) - (xy 183.046077 65.459154) (xy 183.069322 65.525043) (xy 183.0695 65.531681) (xy 183.0695 65.658846) - (xy 183.100261 65.813489) (xy 183.100264 65.813501) (xy 183.160602 65.959172) (xy 183.160612 65.95919) - (xy 183.242271 66.081402) (xy 183.263149 66.148079) (xy 183.244664 66.215459) (xy 183.192685 66.262149) - (xy 183.163362 66.271909) (xy 183.146507 66.275261) (xy 183.146498 66.275264) (xy 183.000827 66.335602) - (xy 183.000814 66.335609) (xy 182.869711 66.42321) (xy 182.869707 66.423213) (xy 182.758213 66.534707) - (xy 182.75821 66.534711) (xy 182.670609 66.665814) (xy 182.670602 66.665827) (xy 182.610264 66.811498) - (xy 182.610261 66.81151) (xy 182.5795 66.966153) (xy 182.5795 67.123846) (xy 182.610261 67.278489) - (xy 182.610264 67.278501) (xy 182.670602 67.424172) (xy 182.670609 67.424185) (xy 182.75821 67.555288) - (xy 182.758213 67.555292) (xy 182.869707 67.666786) (xy 182.869711 67.666789) (xy 183.000814 67.75439) - (xy 183.000827 67.754397) (xy 183.146498 67.814735) (xy 183.146503 67.814737) (xy 183.301153 67.845499) - (xy 183.301156 67.8455) (xy 183.301158 67.8455) (xy 183.458844 67.8455) (xy 183.458845 67.845499) - (xy 183.613497 67.814737) (xy 183.759179 67.754394) (xy 183.890289 67.666789) (xy 184.001789 67.555289) - (xy 184.089394 67.424179) (xy 184.092504 67.416672) (xy 184.149735 67.278501) (xy 184.149737 67.278497) - (xy 184.1805 67.123842) (xy 184.1805 66.966158) (xy 184.1805 66.966155) (xy 184.180499 66.966153) - (xy 184.179007 66.958653) (xy 184.9395 66.958653) (xy 184.9395 67.116346) (xy 184.970261 67.270989) - (xy 184.970264 67.271001) (xy 185.030602 67.416672) (xy 185.030609 67.416685) (xy 185.11821 67.547788) - (xy 185.118213 67.547792) (xy 185.229707 67.659286) (xy 185.229711 67.659289) (xy 185.360814 67.74689) - (xy 185.360827 67.746897) (xy 185.506498 67.807235) (xy 185.506503 67.807237) (xy 185.661153 67.837999) - (xy 185.661156 67.838) (xy 185.661158 67.838) (xy 185.818844 67.838) (xy 185.818845 67.837999) (xy 185.973497 67.807237) - (xy 186.119179 67.746894) (xy 186.250289 67.659289) (xy 186.278425 67.631153) (xy 205.6595 67.631153) - (xy 205.6595 67.788846) (xy 205.690261 67.943489) (xy 205.690264 67.943501) (xy 205.750602 68.089172) - (xy 205.750609 68.089185) (xy 205.83821 68.220288) (xy 205.838213 68.220292) (xy 205.949707 68.331786) - (xy 205.949711 68.331789) (xy 206.080814 68.41939) (xy 206.080827 68.419397) (xy 206.226498 68.479735) - (xy 206.226503 68.479737) (xy 206.381153 68.510499) (xy 206.381156 68.5105) (xy 206.381158 68.5105) - (xy 206.538844 68.5105) (xy 206.538845 68.510499) (xy 206.693497 68.479737) (xy 206.839179 68.419394) - (xy 206.970289 68.331789) (xy 207.081789 68.220289) (xy 207.169394 68.089179) (xy 207.229737 67.943497) - (xy 207.2605 67.788842) (xy 207.2605 67.631158) (xy 207.2605 67.631155) (xy 207.260499 67.631153) - (xy 207.250094 67.578844) (xy 207.229737 67.476503) (xy 207.222649 67.45939) (xy 207.169397 67.330827) - (xy 207.16939 67.330814) (xy 207.081789 67.199711) (xy 207.081786 67.199707) (xy 206.970292 67.088213) - (xy 206.970288 67.08821) (xy 206.839185 67.000609) (xy 206.839172 67.000602) (xy 206.693501 66.940264) - (xy 206.693489 66.940261) (xy 206.538845 66.9095) (xy 206.538842 66.9095) (xy 206.381158 66.9095) - (xy 206.381155 66.9095) (xy 206.22651 66.940261) (xy 206.226498 66.940264) (xy 206.080827 67.000602) - (xy 206.080814 67.000609) (xy 205.949711 67.08821) (xy 205.949707 67.088213) (xy 205.838213 67.199707) - (xy 205.83821 67.199711) (xy 205.750609 67.330814) (xy 205.750602 67.330827) (xy 205.690264 67.476498) - (xy 205.690261 67.47651) (xy 205.6595 67.631153) (xy 186.278425 67.631153) (xy 186.361789 67.547789) - (xy 186.449394 67.416679) (xy 186.509737 67.270997) (xy 186.5405 67.116342) (xy 186.5405 66.958658) - (xy 186.5405 66.958655) (xy 186.540499 66.958653) (xy 186.524498 66.87821) (xy 186.509737 66.804003) - (xy 186.454709 66.671153) (xy 191.6795 66.671153) (xy 191.6795 66.828846) (xy 191.710261 66.983489) - (xy 191.710264 66.983501) (xy 191.770602 67.129172) (xy 191.770609 67.129185) (xy 191.85821 67.260288) - (xy 191.858213 67.260292) (xy 191.969707 67.371786) (xy 191.969711 67.371789) (xy 192.100814 67.45939) - (xy 192.100827 67.459397) (xy 192.246498 67.519735) (xy 192.246503 67.519737) (xy 192.387524 67.547788) - (xy 192.401153 67.550499) (xy 192.401156 67.5505) (xy 192.401158 67.5505) (xy 192.558844 67.5505) - (xy 192.558845 67.550499) (xy 192.713497 67.519737) (xy 192.724766 67.515069) (xy 192.735786 67.510505) - (xy 192.859172 67.459397) (xy 192.859172 67.459396) (xy 192.859179 67.459394) (xy 192.990289 67.371789) - (xy 193.101789 67.260289) (xy 193.189394 67.129179) (xy 193.192854 67.120827) (xy 193.247163 66.989711) - (xy 193.249737 66.983497) (xy 193.2805 66.828842) (xy 193.2805 66.671158) (xy 193.2805 66.671155) - (xy 193.280499 66.671153) (xy 193.277945 66.658314) (xy 193.249737 66.516503) (xy 193.249735 66.516498) - (xy 193.189397 66.370827) (xy 193.18939 66.370814) (xy 193.101789 66.239711) (xy 193.101786 66.239707) - (xy 192.990292 66.128213) (xy 192.990288 66.12821) (xy 192.859185 66.040609) (xy 192.859172 66.040602) - (xy 192.713501 65.980264) (xy 192.713489 65.980261) (xy 192.558845 65.9495) (xy 192.558842 65.9495) - (xy 192.401158 65.9495) (xy 192.401155 65.9495) (xy 192.24651 65.980261) (xy 192.246498 65.980264) - (xy 192.100827 66.040602) (xy 192.100814 66.040609) (xy 191.969711 66.12821) (xy 191.969707 66.128213) - (xy 191.858213 66.239707) (xy 191.85821 66.239711) (xy 191.770609 66.370814) (xy 191.770602 66.370827) - (xy 191.710264 66.516498) (xy 191.710261 66.51651) (xy 191.6795 66.671153) (xy 186.454709 66.671153) - (xy 186.449394 66.658321) (xy 186.449392 66.658318) (xy 186.44939 66.658314) (xy 186.361789 66.527211) - (xy 186.361786 66.527207) (xy 186.250292 66.415713) (xy 186.250288 66.41571) (xy 186.119185 66.328109) - (xy 186.119172 66.328102) (xy 185.973501 66.267764) (xy 185.973489 66.267761) (xy 185.818845 66.237) - (xy 185.818842 66.237) (xy 185.661158 66.237) (xy 185.661155 66.237) (xy 185.50651 66.267761) (xy 185.506498 66.267764) - (xy 185.360827 66.328102) (xy 185.360814 66.328109) (xy 185.229711 66.41571) (xy 185.229707 66.415713) - (xy 185.118213 66.527207) (xy 185.11821 66.527211) (xy 185.030609 66.658314) (xy 185.030602 66.658327) - (xy 184.970264 66.803998) (xy 184.970261 66.80401) (xy 184.9395 66.958653) (xy 184.179007 66.958653) - (xy 184.168795 66.907314) (xy 184.149737 66.811503) (xy 184.146633 66.80401) (xy 184.089397 66.665827) - (xy 184.08939 66.665814) (xy 184.007728 66.543598) (xy 183.98685 66.47692) (xy 184.005335 66.40954) - (xy 184.057314 66.36285) (xy 184.086639 66.35309) (xy 184.103497 66.349737) (xy 184.239322 66.293477) - (xy 184.249172 66.289397) (xy 184.249172 66.289396) (xy 184.249179 66.289394) (xy 184.380289 66.201789) - (xy 184.491789 66.090289) (xy 184.579394 65.959179) (xy 184.639737 65.813497) (xy 184.662357 65.699779) - (xy 184.69474 65.637871) (xy 184.755456 65.603297) (xy 184.759715 65.602369) (xy 184.873497 65.579737) - (xy 185.019179 65.519394) (xy 185.150289 65.431789) (xy 185.261789 65.320289) (xy 185.349394 65.189179) - (xy 185.409737 65.043497) (xy 185.4405 64.888842) (xy 185.4405 64.731158) (xy 185.4405 64.731155) - (xy 185.440499 64.731153) (xy 185.428 64.668318) (xy 185.409737 64.576503) (xy 185.398879 64.550289) - (xy 185.349397 64.430827) (xy 185.34939 64.430814) (xy 185.261789 64.299711) (xy 185.261786 64.299707) - (xy 185.150292 64.188213) (xy 185.150288 64.18821) (xy 185.019185 64.100609) (xy 185.019172 64.100602) - (xy 184.873501 64.040264) (xy 184.873489 64.040261) (xy 184.718845 64.0095) (xy 184.718842 64.0095) - (xy 184.561158 64.0095) (xy 184.561155 64.0095) (xy 184.40651 64.040261) (xy 184.406498 64.040264) - (xy 184.260827 64.100602) (xy 184.260814 64.100609) (xy 184.129711 64.18821) (xy 184.129707 64.188213) - (xy 184.018213 64.299707) (xy 184.01821 64.299711) (xy 183.930609 64.430814) (xy 183.930602 64.430827) - (xy 183.870264 64.576498) (xy 183.870261 64.576508) (xy 183.847643 64.690218) (xy 183.838376 64.707933) - (xy 183.833777 64.727392) (xy 183.822512 64.738259) (xy 183.815258 64.752129) (xy 183.797883 64.762022) - (xy 183.783495 64.775905) (xy 183.757245 64.785163) (xy 183.754542 64.786703) (xy 183.75021 64.787645) - (xy 183.738684 64.789937) (xy 183.669093 64.783705) (xy 183.613918 64.740839) (xy 183.590677 64.674948) - (xy 183.5905 64.668318) (xy 183.5905 64.541155) (xy 183.590499 64.541153) (xy 183.577696 64.476787) - (xy 183.559737 64.386503) (xy 183.536872 64.331301) (xy 183.499397 64.240827) (xy 183.49939 64.240814) - (xy 183.411789 64.109711) (xy 183.411786 64.109707) (xy 183.300292 63.998213) (xy 183.300288 63.99821) - (xy 183.169185 63.910609) (xy 183.169172 63.910602) (xy 183.023501 63.850264) (xy 183.023489 63.850261) - (xy 182.868845 63.8195) (xy 182.868842 63.8195) (xy 182.711158 63.8195) (xy 182.711155 63.8195) - (xy 182.628807 63.83588) (xy 182.559216 63.829653) (xy 182.504038 63.78679) (xy 182.482999 63.738454) - (xy 182.473481 63.690606) (xy 182.459736 63.621504) (xy 182.424553 63.536564) (xy 182.409859 63.501089) - (xy 182.409858 63.501088) (xy 182.399393 63.475822) (xy 182.38291 63.451153) (xy 192.3445 63.451153) - (xy 192.3445 63.608846) (xy 192.375261 63.763489) (xy 192.375264 63.763501) (xy 192.435602 63.909172) - (xy 192.435609 63.909185) (xy 192.52321 64.040288) (xy 192.523213 64.040292) (xy 192.634707 64.151786) - (xy 192.634711 64.151789) (xy 192.765814 64.23939) (xy 192.765827 64.239397) (xy 192.91144 64.299711) - (xy 192.911503 64.299737) (xy 193.066153 64.330499) (xy 193.066156 64.3305) (xy 193.066158 64.3305) - (xy 193.223844 64.3305) (xy 193.223845 64.330499) (xy 193.378497 64.299737) (xy 193.491166 64.253067) - (xy 193.524172 64.239397) (xy 193.524172 64.239396) (xy 193.524179 64.239394) (xy 193.655289 64.151789) - (xy 193.766789 64.040289) (xy 193.854394 63.909179) (xy 193.914737 63.763497) (xy 193.9455 63.608842) - (xy 193.9455 63.451158) (xy 193.9455 63.451155) (xy 193.945499 63.451153) (xy 193.921253 63.329257) - (xy 193.917651 63.311153) (xy 195.4495 63.311153) (xy 195.4495 63.468846) (xy 195.480261 63.623489) - (xy 195.480264 63.623501) (xy 195.540602 63.769172) (xy 195.540609 63.769185) (xy 195.62821 63.900288) - (xy 195.628213 63.900292) (xy 195.739707 64.011786) (xy 195.739711 64.011789) (xy 195.870814 64.09939) - (xy 195.870827 64.099397) (xy 196.016498 64.159735) (xy 196.016503 64.159737) (xy 196.159661 64.188213) - (xy 196.171153 64.190499) (xy 196.171156 64.1905) (xy 196.171158 64.1905) (xy 196.328844 64.1905) - (xy 196.328845 64.190499) (xy 196.483497 64.159737) (xy 196.629179 64.099394) (xy 196.760289 64.011789) - (xy 196.765302 64.006776) (xy 196.778674 63.993405) (xy 196.839997 63.95992) (xy 196.909689 63.964904) - (xy 196.965622 64.006776) (xy 196.990039 64.07224) (xy 196.990355 64.081086) (xy 196.990355 64.118846) - (xy 197.021116 64.273489) (xy 197.021119 64.273501) (xy 197.081457 64.419172) (xy 197.081464 64.419185) - (xy 197.169065 64.550288) (xy 197.169068 64.550292) (xy 197.280562 64.661786) (xy 197.280566 64.661789) - (xy 197.411669 64.74939) (xy 197.411682 64.749397) (xy 197.509556 64.789937) (xy 197.557358 64.809737) - (xy 197.712008 64.840499) (xy 197.712011 64.8405) (xy 197.712013 64.8405) (xy 197.869699 64.8405) - (xy 197.8697 64.840499) (xy 198.024352 64.809737) (xy 198.163431 64.752129) (xy 198.170027 64.749397) - (xy 198.170027 64.749396) (xy 198.170034 64.749394) (xy 198.301144 64.661789) (xy 198.412644 64.550289) - (xy 198.500249 64.419179) (xy 198.560592 64.273497) (xy 198.591355 64.118842) (xy 198.591355 63.961158) - (xy 198.591355 63.961155) (xy 198.591354 63.961153) (xy 198.5813 63.910609) (xy 198.560592 63.806503) - (xy 198.548021 63.776154) (xy 198.500252 63.660827) (xy 198.500245 63.660814) (xy 198.412644 63.529711) - (xy 198.412641 63.529707) (xy 198.301144 63.41821) (xy 198.286114 63.408168) (xy 198.17004 63.330609) - (xy 198.170027 63.330602) (xy 198.123072 63.311153) (xy 200.5695 63.311153) (xy 200.5695 63.468846) - (xy 200.600261 63.623489) (xy 200.600264 63.623501) (xy 200.660602 63.769172) (xy 200.660609 63.769185) - (xy 200.74821 63.900288) (xy 200.748213 63.900292) (xy 200.859707 64.011786) (xy 200.859711 64.011789) - (xy 200.990814 64.09939) (xy 200.990827 64.099397) (xy 201.136498 64.159735) (xy 201.136503 64.159737) - (xy 201.279661 64.188213) (xy 201.291153 64.190499) (xy 201.291156 64.1905) (xy 201.291158 64.1905) - (xy 201.448844 64.1905) (xy 201.448845 64.190499) (xy 201.603497 64.159737) (xy 201.749179 64.099394) - (xy 201.880289 64.011789) (xy 201.991789 63.900289) (xy 202.079394 63.769179) (xy 202.139737 63.623497) - (xy 202.1705 63.468842) (xy 202.1705 63.311158) (xy 202.1705 63.311155) (xy 202.170499 63.311153) - (xy 202.167584 63.296498) (xy 202.139737 63.156503) (xy 202.137386 63.150827) (xy 202.079397 63.010827) - (xy 202.07939 63.010814) (xy 201.991789 62.879711) (xy 201.991786 62.879707) (xy 201.880292 62.768213) - (xy 201.880288 62.76821) (xy 201.749185 62.680609) (xy 201.749172 62.680602) (xy 201.603501 62.620264) - (xy 201.603489 62.620261) (xy 201.448845 62.5895) (xy 201.448842 62.5895) (xy 201.291158 62.5895) - (xy 201.291155 62.5895) (xy 201.13651 62.620261) (xy 201.136498 62.620264) (xy 200.990827 62.680602) - (xy 200.990814 62.680609) (xy 200.859711 62.76821) (xy 200.859707 62.768213) (xy 200.748213 62.879707) - (xy 200.74821 62.879711) (xy 200.660609 63.010814) (xy 200.660602 63.010827) (xy 200.600264 63.156498) - (xy 200.600261 63.15651) (xy 200.5695 63.311153) (xy 198.123072 63.311153) (xy 198.024356 63.270264) - (xy 198.024344 63.270261) (xy 197.8697 63.2395) (xy 197.869697 63.2395) (xy 197.712013 63.2395) - (xy 197.71201 63.2395) (xy 197.557365 63.270261) (xy 197.557353 63.270264) (xy 197.411682 63.330602) - (xy 197.411669 63.330609) (xy 197.280566 63.41821) (xy 197.280562 63.418213) (xy 197.262181 63.436595) - (xy 197.200858 63.47008) (xy 197.131166 63.465096) (xy 197.075233 63.423224) (xy 197.050816 63.35776) - (xy 197.0505 63.348914) (xy 197.0505 63.311155) (xy 197.050499 63.311153) (xy 197.047584 63.296498) - (xy 197.019737 63.156503) (xy 197.017386 63.150827) (xy 196.959397 63.010827) (xy 196.95939 63.010814) - (xy 196.871789 62.879711) (xy 196.871786 62.879707) (xy 196.760292 62.768213) (xy 196.760288 62.76821) - (xy 196.629185 62.680609) (xy 196.629172 62.680602) (xy 196.483501 62.620264) (xy 196.483489 62.620261) - (xy 196.328845 62.5895) (xy 196.328842 62.5895) (xy 196.171158 62.5895) (xy 196.171155 62.5895) - (xy 196.01651 62.620261) (xy 196.016498 62.620264) (xy 195.870827 62.680602) (xy 195.870814 62.680609) - (xy 195.739711 62.76821) (xy 195.739707 62.768213) (xy 195.628213 62.879707) (xy 195.62821 62.879711) - (xy 195.540609 63.010814) (xy 195.540602 63.010827) (xy 195.480264 63.156498) (xy 195.480261 63.15651) - (xy 195.4495 63.311153) (xy 193.917651 63.311153) (xy 193.914738 63.296508) (xy 193.914737 63.296507) - (xy 193.914737 63.296503) (xy 193.914735 63.296498) (xy 193.854397 63.150827) (xy 193.85439 63.150814) - (xy 193.766789 63.019711) (xy 193.766786 63.019707) (xy 193.655292 62.908213) (xy 193.655288 62.90821) - (xy 193.524185 62.820609) (xy 193.524172 62.820602) (xy 193.378501 62.760264) (xy 193.378489 62.760261) - (xy 193.223845 62.7295) (xy 193.223842 62.7295) (xy 193.066158 62.7295) (xy 193.066155 62.7295) - (xy 192.91151 62.760261) (xy 192.911498 62.760264) (xy 192.765827 62.820602) (xy 192.765814 62.820609) - (xy 192.634711 62.90821) (xy 192.634707 62.908213) (xy 192.523213 63.019707) (xy 192.52321 63.019711) - (xy 192.435609 63.150814) (xy 192.435602 63.150827) (xy 192.375264 63.296498) (xy 192.375261 63.29651) - (xy 192.3445 63.451153) (xy 182.38291 63.451153) (xy 182.351372 63.403953) (xy 182.349873 63.401464) - (xy 182.341724 63.370378) (xy 182.332123 63.339715) (xy 182.332922 63.336801) (xy 182.332156 63.333878) - (xy 182.342105 63.303324) (xy 182.350607 63.272335) (xy 182.353002 63.268609) (xy 182.399389 63.199187) - (xy 182.39939 63.199184) (xy 182.399394 63.199179) (xy 182.459737 63.053497) (xy 182.4905 62.898842) - (xy 182.4905 62.741158) (xy 182.4905 62.741155) (xy 182.490499 62.741153) (xy 182.483293 62.704927) - (xy 182.459737 62.586503) (xy 182.42817 62.510292) (xy 182.399397 62.440827) (xy 182.39939 62.440814) - (xy 182.311789 62.309711) (xy 182.311786 62.309707) (xy 182.200292 62.198213) (xy 182.200288 62.19821) - (xy 182.069185 62.110609) (xy 182.069172 62.110602) (xy 181.923501 62.050264) (xy 181.923489 62.050261) - (xy 181.768845 62.0195) (xy 181.768842 62.0195) (xy 181.611158 62.0195) (xy 181.611155 62.0195) - (xy 181.45651 62.050261) (xy 181.456498 62.050264) (xy 181.310827 62.110602) (xy 181.310814 62.110609) - (xy 181.179711 62.19821) (xy 181.179707 62.198213) (xy 181.068213 62.309707) (xy 181.06821 62.309711) - (xy 180.980609 62.440814) (xy 180.980602 62.440827) (xy 180.920264 62.586498) (xy 180.920261 62.58651) - (xy 180.8895 62.741153) (xy 180.8895 62.898846) (xy 180.920261 63.053489) (xy 180.920264 63.053501) - (xy 180.980602 63.199172) (xy 180.980609 63.199184) (xy 181.026997 63.268608) (xy 181.047875 63.335285) - (xy 181.029391 63.402665) (xy 181.026997 63.406389) (xy 180.980611 63.47581) (xy 180.980601 63.475828) - (xy 180.920263 63.621499) (xy 180.92026 63.621511) (xy 180.889499 63.776154) (xy 136.708233 63.776154) - (xy 136.610292 63.678213) (xy 136.610288 63.67821) (xy 136.479185 63.590609) (xy 136.479172 63.590602) - (xy 136.333501 63.530264) (xy 136.333489 63.530261) (xy 136.178845 63.4995) (xy 136.178842 63.4995) - (xy 136.021158 63.4995) (xy 136.021155 63.4995) (xy 135.86651 63.530261) (xy 135.866498 63.530264) - (xy 135.720827 63.590602) (xy 135.720814 63.590609) (xy 135.589711 63.67821) (xy 135.589707 63.678213) - (xy 135.478213 63.789707) (xy 135.47821 63.789711) (xy 135.390609 63.920814) (xy 135.390602 63.920827) - (xy 135.330264 64.066498) (xy 135.330261 64.06651) (xy 135.2995 64.221153) (xy 133.045608 64.221153) - (xy 133.034738 64.16651) (xy 133.034737 64.166503) (xy 133.031935 64.159738) (xy 132.974397 64.020827) - (xy 132.97439 64.020814) (xy 132.886789 63.889711) (xy 132.886786 63.889707) (xy 132.775292 63.778213) - (xy 132.775288 63.77821) (xy 132.644185 63.690609) (xy 132.644172 63.690602) (xy 132.498501 63.630264) - (xy 132.49849 63.630261) (xy 132.495519 63.62967) (xy 132.494107 63.628931) (xy 132.492665 63.628494) - (xy 132.492748 63.62822) (xy 132.43361 63.597281) (xy 132.399039 63.536564) (xy 132.402783 63.466794) - (xy 132.443652 63.410125) (xy 132.450809 63.404963) (xy 132.575289 63.321789) (xy 132.686789 63.210289) - (xy 132.774394 63.079179) (xy 132.834737 62.933497) (xy 132.8655 62.778842) (xy 132.8655 62.621158) - (xy 132.8655 62.621155) (xy 132.865499 62.621153) (xy 132.843447 62.510292) (xy 132.834737 62.466503) - (xy 132.798569 62.379185) (xy 132.774397 62.320827) (xy 132.77439 62.320814) (xy 132.686789 62.189711) - (xy 132.686786 62.189707) (xy 132.575292 62.078213) (xy 132.575288 62.07821) (xy 132.444185 61.990609) - (xy 132.444172 61.990602) (xy 132.298501 61.930264) (xy 132.298489 61.930261) (xy 132.143845 61.8995) - (xy 132.143842 61.8995) (xy 131.986158 61.8995) (xy 131.986155 61.8995) (xy 131.83151 61.930261) - (xy 131.831498 61.930264) (xy 131.685827 61.990602) (xy 131.685814 61.990609) (xy 131.554711 62.07821) - (xy 131.554707 62.078213) (xy 131.443213 62.189707) (xy 131.44321 62.189711) (xy 131.355609 62.320814) - (xy 131.355602 62.320827) (xy 131.295264 62.466498) (xy 131.295261 62.46651) (xy 131.2645 62.621153) - (xy 127.655196 62.621153) (xy 127.704927 62.571422) (xy 127.815904 62.418675) (xy 127.90162 62.250448) - (xy 127.959964 62.070884) (xy 127.9895 61.884403) (xy 127.9895 61.695597) (xy 127.979367 61.631618) - (xy 127.959964 61.509115) (xy 127.917786 61.379306) (xy 127.90162 61.329552) (xy 127.901618 61.329549) - (xy 127.901618 61.329547) (xy 127.843542 61.215567) (xy 127.815904 61.161325) (xy 127.704927 61.008578) - (xy 127.571422 60.875073) (xy 127.418675 60.764096) (xy 127.332644 60.720261) (xy 127.250452 60.678381) - (xy 127.125959 60.637931) (xy 127.101422 60.621153) (xy 129.5845 60.621153) (xy 129.5845 60.778846) - (xy 129.615261 60.933489) (xy 129.615264 60.933501) (xy 129.675602 61.079172) (xy 129.675609 61.079185) - (xy 129.76321 61.210288) (xy 129.763213 61.210292) (xy 129.874707 61.321786) (xy 129.874711 61.321789) - (xy 130.005814 61.40939) (xy 130.005827 61.409397) (xy 130.151498 61.469735) (xy 130.151503 61.469737) - (xy 130.269062 61.493121) (xy 130.306153 61.500499) (xy 130.306156 61.5005) (xy 130.306158 61.5005) - (xy 130.463844 61.5005) (xy 130.463845 61.500499) (xy 130.618497 61.469737) (xy 130.737369 61.420499) - (xy 130.764172 61.409397) (xy 130.764172 61.409396) (xy 130.764179 61.409394) (xy 130.895289 61.321789) - (xy 130.995925 61.221153) (xy 135.2995 61.221153) (xy 135.2995 61.378846) (xy 135.330261 61.533489) - (xy 135.330264 61.533501) (xy 135.390602 61.679172) (xy 135.390609 61.679185) (xy 135.47821 61.810288) - (xy 135.478213 61.810292) (xy 135.589707 61.921786) (xy 135.589711 61.921789) (xy 135.720814 62.00939) - (xy 135.720827 62.009397) (xy 135.859386 62.066789) (xy 135.866503 62.069737) (xy 136.021153 62.100499) - (xy 136.021156 62.1005) (xy 136.021158 62.1005) (xy 136.178844 62.1005) (xy 136.178845 62.100499) - (xy 136.333497 62.069737) (xy 136.479179 62.009394) (xy 136.610289 61.921789) (xy 136.721789 61.810289) - (xy 136.809394 61.679179) (xy 136.809677 61.678497) (xy 136.855095 61.568846) (xy 136.869737 61.533497) - (xy 136.9005 61.378842) (xy 136.9005 61.221158) (xy 136.9005 61.221155) (xy 136.900499 61.221153) - (xy 136.886082 61.148675) (xy 136.869737 61.066503) (xy 136.853009 61.026118) (xy 136.839092 60.992518) - (xy 136.821958 60.951153) (xy 154.7295 60.951153) (xy 154.7295 61.108846) (xy 154.760261 61.263489) - (xy 154.760264 61.263501) (xy 154.820602 61.409172) (xy 154.820609 61.409185) (xy 154.90821 61.540288) - (xy 154.908213 61.540292) (xy 155.019707 61.651786) (xy 155.019711 61.651789) (xy 155.150814 61.73939) - (xy 155.150827 61.739397) (xy 155.296498 61.799735) (xy 155.296503 61.799737) (xy 155.419421 61.824187) - (xy 155.451153 61.830499) (xy 155.451156 61.8305) (xy 155.451158 61.8305) (xy 155.608844 61.8305) - (xy 155.608845 61.830499) (xy 155.763497 61.799737) (xy 155.909179 61.739394) (xy 156.040289 61.651789) - (xy 156.151789 61.540289) (xy 156.239394 61.409179) (xy 156.299737 61.263497) (xy 156.302639 61.248903) - (xy 156.303985 61.24633) (xy 156.303858 61.24343) (xy 156.320076 61.215567) (xy 156.335023 61.186994) - (xy 156.33799 61.184794) (xy 156.339008 61.183046) (xy 156.342512 61.180773) (xy 158.67912 61.180773) - (xy 158.67912 61.338466) (xy 158.709881 61.493109) (xy 158.709884 61.493121) (xy 158.770222 61.638792) - (xy 158.770229 61.638805) (xy 158.85783 61.769908) (xy 158.857833 61.769912) (xy 158.969327 61.881406) - (xy 158.969331 61.881409) (xy 159.100434 61.96901) (xy 159.100447 61.969017) (xy 159.222326 62.0195) - (xy 159.246123 62.029357) (xy 159.400773 62.060119) (xy 159.400776 62.06012) (xy 159.400778 62.06012) - (xy 159.558464 62.06012) (xy 159.558465 62.060119) (xy 159.713117 62.029357) (xy 159.858799 61.969014) - (xy 159.989909 61.881409) (xy 160.101409 61.769909) (xy 160.189014 61.638799) (xy 160.191989 61.631618) - (xy 160.229818 61.540288) (xy 160.248376 61.495484) (xy 160.292216 61.441081) (xy 160.315485 61.428376) - (xy 160.357054 61.411158) (xy 160.435072 61.378842) (xy 160.458792 61.369017) (xy 160.458792 61.369016) - (xy 160.458799 61.369014) (xy 160.589909 61.281409) (xy 160.701409 61.169909) (xy 160.789014 61.038799) - (xy 160.791272 61.033349) (xy 160.813489 60.979711) (xy 160.849357 60.893117) (xy 160.88012 60.738462) - (xy 160.88012 60.580778) (xy 160.88012 60.580775) (xy 160.880119 60.580773) (xy 160.87584 60.559257) - (xy 160.872239 60.541153) (xy 181.3545 60.541153) (xy 181.3545 60.698846) (xy 181.385261 60.853489) - (xy 181.385264 60.853501) (xy 181.445602 60.999172) (xy 181.445609 60.999185) (xy 181.53321 61.130288) - (xy 181.533213 61.130292) (xy 181.644707 61.241786) (xy 181.644711 61.241789) (xy 181.775814 61.32939) - (xy 181.775827 61.329397) (xy 181.89632 61.379306) (xy 181.921503 61.389737) (xy 182.076153 61.420499) - (xy 182.076156 61.4205) (xy 182.076158 61.4205) (xy 182.233844 61.4205) (xy 182.233845 61.420499) - (xy 182.280831 61.411153) (xy 184.782769 61.411153) (xy 184.782769 61.568846) (xy 184.81353 61.723489) - (xy 184.813533 61.723501) (xy 184.873871 61.869172) (xy 184.873878 61.869185) (xy 184.961479 62.000288) - (xy 184.961482 62.000292) (xy 185.072976 62.111786) (xy 185.07298 62.111789) (xy 185.204083 62.19939) - (xy 185.204096 62.199397) (xy 185.327346 62.250448) (xy 185.349772 62.259737) (xy 185.504422 62.290499) - (xy 185.504425 62.2905) (xy 185.504427 62.2905) (xy 185.662113 62.2905) (xy 185.662114 62.290499) - (xy 185.816766 62.259737) (xy 185.962448 62.199394) (xy 186.049089 62.141501) (xy 186.115763 62.120625) - (xy 186.165428 62.130043) (xy 186.291503 62.182265) (xy 186.446153 62.213027) (xy 186.446156 62.213028) - (xy 186.446158 62.213028) (xy 186.603844 62.213028) (xy 186.603845 62.213027) (xy 186.758497 62.182265) - (xy 186.904179 62.121922) (xy 187.035289 62.034317) (xy 187.146789 61.922817) (xy 187.161048 61.901477) - (xy 187.214659 61.856671) (xy 187.283984 61.847962) (xy 187.347012 61.878116) (xy 187.367253 61.901475) - (xy 187.40321 61.955288) (xy 187.403213 61.955292) (xy 187.514707 62.066786) (xy 187.514711 62.066789) - (xy 187.645814 62.15439) (xy 187.645827 62.154397) (xy 187.787377 62.213028) (xy 187.791503 62.214737) - (xy 187.946153 62.245499) (xy 187.946156 62.2455) (xy 187.946158 62.2455) (xy 188.103844 62.2455) - (xy 188.103845 62.245499) (xy 188.258497 62.214737) (xy 188.404179 62.154394) (xy 188.535289 62.066789) - (xy 188.646789 61.955289) (xy 188.669598 61.921153) (xy 204.0995 61.921153) (xy 204.0995 62.078846) - (xy 204.130261 62.233489) (xy 204.130264 62.233501) (xy 204.190602 62.379172) (xy 204.190609 62.379185) - (xy 204.27821 62.510288) (xy 204.278213 62.510292) (xy 204.389707 62.621786) (xy 204.389711 62.621789) - (xy 204.520814 62.70939) (xy 204.520827 62.709397) (xy 204.643633 62.760264) (xy 204.666503 62.769737) - (xy 204.821153 62.800499) (xy 204.821156 62.8005) (xy 204.821158 62.8005) (xy 204.978844 62.8005) - (xy 204.978845 62.800499) (xy 205.133497 62.769737) (xy 205.279179 62.709394) (xy 205.410289 62.621789) - (xy 205.521789 62.510289) (xy 205.609394 62.379179) (xy 205.669737 62.233497) (xy 205.7005 62.078842) - (xy 205.7005 61.921158) (xy 205.7005 61.921155) (xy 205.700499 61.921153) (xy 205.690159 61.869172) - (xy 205.669737 61.766503) (xy 205.669735 61.766498) (xy 205.609397 61.620827) (xy 205.60939 61.620814) - (xy 205.521789 61.489711) (xy 205.521786 61.489707) (xy 205.410292 61.378213) (xy 205.410288 61.37821) - (xy 205.279185 61.290609) (xy 205.279172 61.290602) (xy 205.133501 61.230264) (xy 205.133489 61.230261) - (xy 204.978845 61.1995) (xy 204.978842 61.1995) (xy 204.821158 61.1995) (xy 204.821155 61.1995) - (xy 204.66651 61.230261) (xy 204.666498 61.230264) (xy 204.520827 61.290602) (xy 204.520814 61.290609) - (xy 204.389711 61.37821) (xy 204.389707 61.378213) (xy 204.278213 61.489707) (xy 204.27821 61.489711) - (xy 204.190609 61.620814) (xy 204.190602 61.620827) (xy 204.130264 61.766498) (xy 204.130261 61.76651) - (xy 204.0995 61.921153) (xy 188.669598 61.921153) (xy 188.727528 61.834454) (xy 188.734389 61.824187) - (xy 188.73439 61.824184) (xy 188.734394 61.824179) (xy 188.794737 61.678497) (xy 188.8255 61.523842) - (xy 188.8255 61.366158) (xy 188.8255 61.366155) (xy 188.825499 61.366153) (xy 188.819991 61.338462) - (xy 188.794737 61.211503) (xy 188.78295 61.183046) (xy 188.734397 61.065827) (xy 188.73439 61.065814) - (xy 188.646789 60.934711) (xy 188.646786 60.934707) (xy 188.535292 60.823213) (xy 188.535288 60.82321) - (xy 188.53221 60.821153) (xy 199.662 60.821153) (xy 199.662 60.978846) (xy 199.692761 61.133489) - (xy 199.692764 61.133501) (xy 199.753102 61.279172) (xy 199.753109 61.279185) (xy 199.84071 61.410288) - (xy 199.840713 61.410292) (xy 199.952207 61.521786) (xy 199.952211 61.521789) (xy 200.083314 61.60939) - (xy 200.083327 61.609397) (xy 200.228998 61.669735) (xy 200.229003 61.669737) (xy 200.359009 61.695597) - (xy 200.383653 61.700499) (xy 200.383656 61.7005) (xy 200.383658 61.7005) (xy 200.541344 61.7005) - (xy 200.541345 61.700499) (xy 200.695997 61.669737) (xy 200.814092 61.620821) (xy 200.841672 61.609397) - (xy 200.841672 61.609396) (xy 200.841679 61.609394) (xy 200.972789 61.521789) (xy 201.084289 61.410289) - (xy 201.171894 61.279179) (xy 201.232237 61.133497) (xy 201.263 60.978842) (xy 201.263 60.821158) - (xy 201.263 60.821155) (xy 201.262999 60.821153) (xy 201.256744 60.789707) (xy 201.232237 60.666503) - (xy 201.225741 60.650821) (xy 201.171897 60.520827) (xy 201.17189 60.520814) (xy 201.084289 60.389711) - (xy 201.084286 60.389707) (xy 200.972792 60.278213) (xy 200.972788 60.27821) (xy 200.841685 60.190609) - (xy 200.841672 60.190602) (xy 200.696001 60.130264) (xy 200.695989 60.130261) (xy 200.541345 60.0995) - (xy 200.541342 60.0995) (xy 200.383658 60.0995) (xy 200.383655 60.0995) (xy 200.22901 60.130261) - (xy 200.228998 60.130264) (xy 200.083327 60.190602) (xy 200.083314 60.190609) (xy 199.952211 60.27821) - (xy 199.952207 60.278213) (xy 199.840713 60.389707) (xy 199.84071 60.389711) (xy 199.753109 60.520814) - (xy 199.753102 60.520827) (xy 199.692764 60.666498) (xy 199.692761 60.66651) (xy 199.662 60.821153) - (xy 188.53221 60.821153) (xy 188.404185 60.735609) (xy 188.404172 60.735602) (xy 188.258501 60.675264) - (xy 188.258489 60.675261) (xy 188.103845 60.6445) (xy 188.103842 60.6445) (xy 187.946158 60.6445) - (xy 187.946155 60.6445) (xy 187.79151 60.675261) (xy 187.791498 60.675264) (xy 187.645827 60.735602) - (xy 187.645814 60.735609) (xy 187.514711 60.82321) (xy 187.514707 60.823213) (xy 187.403213 60.934707) - (xy 187.403209 60.934712) (xy 187.388948 60.956055) (xy 187.335335 61.000858) (xy 187.26601 61.009564) - (xy 187.202983 60.979407) (xy 187.182746 60.956052) (xy 187.146789 60.902239) (xy 187.146786 60.902235) - (xy 187.035292 60.790741) (xy 187.035288 60.790738) (xy 186.904185 60.703137) (xy 186.904172 60.70313) - (xy 186.758501 60.642792) (xy 186.758489 60.642789) (xy 186.603845 60.612028) (xy 186.603842 60.612028) - (xy 186.446158 60.612028) (xy 186.446155 60.612028) (xy 186.29151 60.642789) (xy 186.291498 60.642792) - (xy 186.145827 60.70313) (xy 186.145814 60.703137) (xy 186.059182 60.761024) (xy 185.992505 60.781902) - (xy 185.942839 60.772483) (xy 185.81677 60.720264) (xy 185.816758 60.720261) (xy 185.662114 60.6895) - (xy 185.662111 60.6895) (xy 185.504427 60.6895) (xy 185.504424 60.6895) (xy 185.349779 60.720261) - (xy 185.349767 60.720264) (xy 185.204096 60.780602) (xy 185.204083 60.780609) (xy 185.07298 60.86821) - (xy 185.072976 60.868213) (xy 184.961482 60.979707) (xy 184.961479 60.979711) (xy 184.873878 61.110814) - (xy 184.873871 61.110827) (xy 184.813533 61.256498) (xy 184.81353 61.25651) (xy 184.782769 61.411153) - (xy 182.280831 61.411153) (xy 182.388497 61.389737) (xy 182.534179 61.329394) (xy 182.545565 61.321786) - (xy 182.575232 61.301964) (xy 182.632795 61.263501) (xy 182.665289 61.241789) (xy 182.776789 61.130289) - (xy 182.864394 60.999179) (xy 182.924737 60.853497) (xy 182.9555 60.698842) (xy 182.9555 60.541158) - (xy 182.9555 60.541155) (xy 182.955499 60.541153) (xy 182.929055 60.408211) (xy 182.924737 60.386503) - (xy 182.91443 60.36162) (xy 182.864397 60.240827) (xy 182.86439 60.240814) (xy 182.776789 60.109711) - (xy 182.776786 60.109707) (xy 182.665292 59.998213) (xy 182.665288 59.99821) (xy 182.534185 59.910609) - (xy 182.534172 59.910602) (xy 182.388501 59.850264) (xy 182.388489 59.850261) (xy 182.233845 59.8195) - (xy 182.233842 59.8195) (xy 182.076158 59.8195) (xy 182.076155 59.8195) (xy 181.92151 59.850261) - (xy 181.921498 59.850264) (xy 181.775827 59.910602) (xy 181.775814 59.910609) (xy 181.644711 59.99821) - (xy 181.644707 59.998213) (xy 181.533213 60.109707) (xy 181.53321 60.109711) (xy 181.445609 60.240814) - (xy 181.445602 60.240827) (xy 181.385264 60.386498) (xy 181.385261 60.38651) (xy 181.3545 60.541153) - (xy 160.872239 60.541153) (xy 160.849358 60.426128) (xy 160.849357 60.426127) (xy 160.849357 60.426123) - (xy 160.844258 60.413812) (xy 160.789017 60.280447) (xy 160.78901 60.280434) (xy 160.701409 60.149331) - (xy 160.701406 60.149327) (xy 160.589912 60.037833) (xy 160.589908 60.03783) (xy 160.458805 59.950229) - (xy 160.458792 59.950222) (xy 160.313121 59.889884) (xy 160.313109 59.889881) (xy 160.158465 59.85912) - (xy 160.158462 59.85912) (xy 160.000778 59.85912) (xy 160.000775 59.85912) (xy 159.84613 59.889881) - (xy 159.846118 59.889884) (xy 159.700447 59.950222) (xy 159.700434 59.950229) (xy 159.569331 60.03783) - (xy 159.569327 60.037833) (xy 159.457833 60.149327) (xy 159.45783 60.149331) (xy 159.370229 60.280434) - (xy 159.370224 60.280444) (xy 159.310863 60.423755) (xy 159.267022 60.478158) (xy 159.243755 60.490863) - (xy 159.100444 60.550224) (xy 159.100434 60.550229) (xy 158.969331 60.63783) (xy 158.969327 60.637833) - (xy 158.857833 60.749327) (xy 158.85783 60.749331) (xy 158.770229 60.880434) (xy 158.770222 60.880447) - (xy 158.709884 61.026118) (xy 158.709881 61.02613) (xy 158.67912 61.180773) (xy 156.342512 61.180773) - (xy 156.349736 61.176087) (xy 156.367831 61.162676) (xy 156.372224 61.16043) (xy 156.484679 61.113851) - (xy 156.615789 61.026246) (xy 156.727289 60.914746) (xy 156.814894 60.783636) (xy 156.875237 60.637954) - (xy 156.906 60.483299) (xy 156.906 60.325615) (xy 156.906 60.325612) (xy 156.905999 60.32561) (xy 156.89657 60.27821) - (xy 156.875237 60.17096) (xy 156.866278 60.149331) (xy 156.814897 60.025284) (xy 156.81489 60.025271) - (xy 156.727289 59.894168) (xy 156.727286 59.894164) (xy 156.615792 59.78267) (xy 156.615788 59.782667) - (xy 156.484685 59.695066) (xy 156.484672 59.695059) (xy 156.339001 59.634721) (xy 156.338989 59.634718) - (xy 156.184345 59.603957) (xy 156.184342 59.603957) (xy 156.026658 59.603957) (xy 156.026655 59.603957) - (xy 155.87201 59.634718) (xy 155.871998 59.634721) (xy 155.726327 59.695059) (xy 155.726314 59.695066) - (xy 155.595211 59.782667) (xy 155.595207 59.78267) (xy 155.483713 59.894164) (xy 155.48371 59.894168) - (xy 155.396109 60.025271) (xy 155.396102 60.025284) (xy 155.335763 60.170957) (xy 155.335762 60.170962) - (xy 155.332859 60.185556) (xy 155.300472 60.247467) (xy 155.258695 60.275923) (xy 155.150823 60.320604) - (xy 155.150814 60.320609) (xy 155.019711 60.40821) (xy 155.019707 60.408213) (xy 154.908213 60.519707) - (xy 154.90821 60.519711) (xy 154.820609 60.650814) (xy 154.820602 60.650827) (xy 154.760264 60.796498) - (xy 154.760261 60.79651) (xy 154.7295 60.951153) (xy 136.821958 60.951153) (xy 136.809397 60.920827) - (xy 136.80939 60.920814) (xy 136.721789 60.789711) (xy 136.721786 60.789707) (xy 136.610292 60.678213) - (xy 136.610288 60.67821) (xy 136.479185 60.590609) (xy 136.479172 60.590602) (xy 136.333501 60.530264) - (xy 136.333489 60.530261) (xy 136.178845 60.4995) (xy 136.178842 60.4995) (xy 136.021158 60.4995) - (xy 136.021155 60.4995) (xy 135.86651 60.530261) (xy 135.866498 60.530264) (xy 135.720827 60.590602) - (xy 135.720814 60.590609) (xy 135.589711 60.67821) (xy 135.589707 60.678213) (xy 135.478213 60.789707) - (xy 135.47821 60.789711) (xy 135.390609 60.920814) (xy 135.390602 60.920827) (xy 135.330264 61.066498) - (xy 135.330261 61.06651) (xy 135.2995 61.221153) (xy 130.995925 61.221153) (xy 131.006789 61.210289) - (xy 131.039506 61.161325) (xy 131.049629 61.146175) (xy 131.09439 61.079185) (xy 131.09439 61.079184) - (xy 131.094394 61.079179) (xy 131.154737 60.933497) (xy 131.1855 60.778842) (xy 131.1855 60.621158) - (xy 131.1855 60.621155) (xy 131.185499 60.621153) (xy 131.171391 60.550229) (xy 131.154737 60.466503) - (xy 131.147694 60.4495) (xy 131.094397 60.320827) (xy 131.09439 60.320814) (xy 131.006789 60.189711) - (xy 131.006786 60.189707) (xy 130.895292 60.078213) (xy 130.895288 60.07821) (xy 130.764185 59.990609) - (xy 130.764172 59.990602) (xy 130.618501 59.930264) (xy 130.618489 59.930261) (xy 130.463845 59.8995) - (xy 130.463842 59.8995) (xy 130.306158 59.8995) (xy 130.306155 59.8995) (xy 130.15151 59.930261) - (xy 130.151498 59.930264) (xy 130.005827 59.990602) (xy 130.005814 59.990609) (xy 129.874711 60.07821) - (xy 129.874707 60.078213) (xy 129.763213 60.189707) (xy 129.76321 60.189711) (xy 129.675609 60.320814) - (xy 129.675602 60.320827) (xy 129.615264 60.466498) (xy 129.615261 60.46651) (xy 129.5845 60.621153) - (xy 127.101422 60.621153) (xy 127.068284 60.598493) (xy 127.041086 60.534134) (xy 127.053001 60.465288) - (xy 127.100245 60.413812) (xy 127.125959 60.402069) (xy 127.250448 60.36162) (xy 127.418675 60.275904) - (xy 127.571422 60.164927) (xy 127.704927 60.031422) (xy 127.815904 59.878675) (xy 127.90162 59.710448) - (xy 127.959964 59.530884) (xy 127.9895 59.344403) (xy 127.9895 59.155597) (xy 127.987633 59.143812) - (xy 127.959964 58.969115) (xy 127.921617 58.851096) (xy 127.90162 58.789552) (xy 127.901618 58.789549) - (xy 127.901618 58.789547) (xy 127.841407 58.671377) (xy 127.815904 58.621325) (xy 127.704927 58.468578) - (xy 127.571422 58.335073) (xy 127.418675 58.224096) (xy 127.417484 58.223489) (xy 127.250452 58.138381) - (xy 127.125959 58.097931) (xy 127.068284 58.058493) (xy 127.041086 57.994134) (xy 127.053001 57.925288) - (xy 127.100245 57.873812) (xy 127.125959 57.862069) (xy 127.135897 57.85884) (xy 127.250448 57.82162) - (xy 127.251365 57.821153) (xy 129.5345 57.821153) (xy 129.5345 57.978846) (xy 129.565261 58.133489) - (xy 129.565264 58.133501) (xy 129.625602 58.279172) (xy 129.625609 58.279185) (xy 129.71321 58.410288) - (xy 129.713213 58.410292) (xy 129.824707 58.521786) (xy 129.824711 58.521789) (xy 129.955814 58.60939) - (xy 129.955827 58.609397) (xy 130.058802 58.65205) (xy 130.101503 58.669737) (xy 130.238296 58.696947) - (xy 130.256153 58.700499) (xy 130.256156 58.7005) (xy 130.256158 58.7005) (xy 130.413844 58.7005) - (xy 130.413845 58.700499) (xy 130.568497 58.669737) (xy 130.704264 58.613501) (xy 130.714172 58.609397) - (xy 130.714172 58.609396) (xy 130.714179 58.609394) (xy 130.845289 58.521789) (xy 130.956789 58.410289) - (xy 131.029711 58.301153) (xy 156.9195 58.301153) (xy 156.9195 58.458846) (xy 156.950261 58.613489) - (xy 156.950264 58.613501) (xy 157.010602 58.759172) (xy 157.010609 58.759185) (xy 157.09821 58.890288) - (xy 157.098213 58.890292) (xy 157.209707 59.001786) (xy 157.209711 59.001789) (xy 157.340814 59.08939) - (xy 157.340827 59.089397) (xy 157.486498 59.149735) (xy 157.486503 59.149737) (xy 157.632823 59.178842) - (xy 157.641153 59.180499) (xy 157.641156 59.1805) (xy 157.641158 59.1805) (xy 157.798844 59.1805) - (xy 157.798845 59.180499) (xy 157.953497 59.149737) (xy 158.09381 59.091618) (xy 158.099172 59.089397) - (xy 158.099172 59.089396) (xy 158.099179 59.089394) (xy 158.230289 59.001789) (xy 158.341789 58.890289) - (xy 158.429394 58.759179) (xy 158.489737 58.613497) (xy 158.5205 58.458842) (xy 158.5205 58.321153) - (xy 159.6595 58.321153) (xy 159.6595 58.478846) (xy 159.690261 58.633489) (xy 159.690264 58.633501) - (xy 159.750602 58.779172) (xy 159.750609 58.779185) (xy 159.83821 58.910288) (xy 159.838213 58.910292) - (xy 159.949707 59.021786) (xy 159.949711 59.021789) (xy 160.080814 59.10939) (xy 160.080827 59.109397) - (xy 160.225986 59.169523) (xy 160.226503 59.169737) (xy 160.354956 59.195288) (xy 160.381153 59.200499) - (xy 160.381156 59.2005) (xy 160.381158 59.2005) (xy 160.538844 59.2005) (xy 160.538845 59.200499) - (xy 160.693497 59.169737) (xy 160.839179 59.109394) (xy 160.970289 59.021789) (xy 161.081789 58.910289) - (xy 161.169394 58.779179) (xy 161.178602 58.75695) (xy 161.194156 58.719397) (xy 161.229737 58.633497) - (xy 161.2605 58.478842) (xy 161.2605 58.321158) (xy 161.2605 58.321155) (xy 161.260499 58.321153) - (xy 161.245052 58.243497) (xy 161.229737 58.166503) (xy 161.19647 58.086188) (xy 161.169397 58.020827) - (xy 161.16939 58.020814) (xy 161.138081 57.973957) (xy 161.105714 57.925517) (xy 161.101216 57.911153) - (xy 165.4695 57.911153) (xy 165.4695 58.068846) (xy 165.500261 58.223489) (xy 165.500264 58.223501) - (xy 165.560602 58.369172) (xy 165.560609 58.369185) (xy 165.64821 58.500288) (xy 165.648213 58.500292) - (xy 165.759707 58.611786) (xy 165.759711 58.611789) (xy 165.890814 58.69939) (xy 165.890827 58.699397) - (xy 166.035139 58.759172) (xy 166.036503 58.759737) (xy 166.186367 58.789547) (xy 166.191153 58.790499) - (xy 166.191156 58.7905) (xy 166.191158 58.7905) (xy 166.348844 58.7905) (xy 166.348845 58.790499) - (xy 166.503497 58.759737) (xy 166.649179 58.699394) (xy 166.691109 58.671376) (xy 166.757785 58.650498) - (xy 166.825165 58.668982) (xy 166.828866 58.67136) (xy 166.870821 58.699394) (xy 166.870823 58.699395) - (xy 166.870825 58.699396) (xy 167.015139 58.759172) (xy 167.016503 58.759737) (xy 167.166367 58.789547) - (xy 167.171153 58.790499) (xy 167.171156 58.7905) (xy 167.171158 58.7905) (xy 167.328844 58.7905) - (xy 167.328845 58.790499) (xy 167.483497 58.759737) (xy 167.629179 58.699394) (xy 167.631134 58.698087) - (xy 167.632315 58.697717) (xy 167.634546 58.696525) (xy 167.634772 58.696947) (xy 167.697807 58.677203) - (xy 167.765189 58.695681) (xy 167.768915 58.698075) (xy 167.800821 58.719394) (xy 167.800827 58.719396) - (xy 167.800828 58.719397) (xy 167.898218 58.759737) (xy 167.946503 58.779737) (xy 168.101153 58.810499) - (xy 168.101156 58.8105) (xy 168.101158 58.8105) (xy 168.258844 58.8105) (xy 168.258845 58.810499) - (xy 168.413497 58.779737) (xy 168.450475 58.764419) (xy 168.519942 58.75695) (xy 168.545376 58.764417) - (xy 168.606503 58.789737) (xy 168.761153 58.820499) (xy 168.761156 58.8205) (xy 168.761158 58.8205) - (xy 168.918844 58.8205) (xy 168.918845 58.820499) (xy 169.073497 58.789737) (xy 169.219179 58.729394) - (xy 169.350289 58.641789) (xy 169.461789 58.530289) (xy 169.549394 58.399179) (xy 169.609737 58.253497) - (xy 169.6405 58.098842) (xy 169.6405 57.941158) (xy 169.63851 57.931153) (xy 170.5295 57.931153) - (xy 170.5295 58.088846) (xy 170.560261 58.243489) (xy 170.560264 58.243501) (xy 170.620602 58.389172) - (xy 170.620609 58.389185) (xy 170.70821 58.520288) (xy 170.708213 58.520292) (xy 170.819707 58.631786) - (xy 170.819711 58.631789) (xy 170.950814 58.71939) (xy 170.950827 58.719397) (xy 171.059524 58.76442) - (xy 171.096503 58.779737) (xy 171.251153 58.810499) (xy 171.251156 58.8105) (xy 171.251158 58.8105) - (xy 171.408844 58.8105) (xy 171.408845 58.810499) (xy 171.563497 58.779737) (xy 171.676166 58.733067) - (xy 171.709172 58.719397) (xy 171.709172 58.719396) (xy 171.709179 58.719394) (xy 171.840289 58.631789) - (xy 171.951789 58.520289) (xy 172.039394 58.389179) (xy 172.099737 58.243497) (xy 172.1305 58.088842) - (xy 172.1305 57.931158) (xy 172.1305 57.931155) (xy 172.130499 57.931153) (xy 172.120177 57.879257) - (xy 172.116576 57.861153) (xy 172.5895 57.861153) (xy 172.5895 58.018846) (xy 172.620261 58.173489) - (xy 172.620264 58.173501) (xy 172.680602 58.319172) (xy 172.680609 58.319185) (xy 172.76821 58.450288) - (xy 172.768213 58.450292) (xy 172.879707 58.561786) (xy 172.879711 58.561789) (xy 173.010814 58.64939) - (xy 173.010827 58.649397) (xy 173.156498 58.709735) (xy 173.156503 58.709737) (xy 173.311153 58.740499) - (xy 173.311156 58.7405) (xy 173.311158 58.7405) (xy 173.468844 58.7405) (xy 173.468845 58.740499) - (xy 173.623497 58.709737) (xy 173.769179 58.649394) (xy 173.900289 58.561789) (xy 174.011789 58.450289) - (xy 174.099394 58.319179) (xy 174.106859 58.301158) (xy 174.12354 58.260884) (xy 174.159737 58.173497) - (xy 174.1905 58.018842) (xy 174.1905 57.861158) (xy 174.1905 57.861155) (xy 174.190499 57.861153) - (xy 174.174001 57.778213) (xy 174.159737 57.706503) (xy 174.153151 57.690602) (xy 174.099397 57.560827) - (xy 174.09939 57.560814) (xy 174.011789 57.429711) (xy 174.011786 57.429707) (xy 173.900292 57.318213) - (xy 173.900288 57.31821) (xy 173.769185 57.230609) (xy 173.769172 57.230602) (xy 173.623501 57.170264) - (xy 173.623489 57.170261) (xy 173.468845 57.1395) (xy 173.468842 57.1395) (xy 173.311158 57.1395) - (xy 173.311155 57.1395) (xy 173.15651 57.170261) (xy 173.156498 57.170264) (xy 173.010827 57.230602) - (xy 173.010814 57.230609) (xy 172.879711 57.31821) (xy 172.879707 57.318213) (xy 172.768213 57.429707) - (xy 172.76821 57.429711) (xy 172.680609 57.560814) (xy 172.680602 57.560827) (xy 172.620264 57.706498) - (xy 172.620261 57.70651) (xy 172.5895 57.861153) (xy 172.116576 57.861153) (xy 172.099738 57.776508) - (xy 172.099737 57.776507) (xy 172.099737 57.776503) (xy 172.099735 57.776498) (xy 172.039397 57.630827) - (xy 172.03939 57.630814) (xy 171.951789 57.499711) (xy 171.951786 57.499707) (xy 171.840292 57.388213) - (xy 171.840288 57.38821) (xy 171.709185 57.300609) (xy 171.709172 57.300602) (xy 171.563501 57.240264) - (xy 171.563489 57.240261) (xy 171.408845 57.2095) (xy 171.408842 57.2095) (xy 171.251158 57.2095) - (xy 171.251155 57.2095) (xy 171.09651 57.240261) (xy 171.096498 57.240264) (xy 170.950827 57.300602) - (xy 170.950814 57.300609) (xy 170.819711 57.38821) (xy 170.819707 57.388213) (xy 170.708213 57.499707) - (xy 170.70821 57.499711) (xy 170.620609 57.630814) (xy 170.620602 57.630827) (xy 170.560264 57.776498) - (xy 170.560261 57.77651) (xy 170.5295 57.931153) (xy 169.63851 57.931153) (xy 169.609737 57.786503) - (xy 169.597309 57.756498) (xy 169.549397 57.640827) (xy 169.54939 57.640814) (xy 169.461789 57.509711) - (xy 169.461786 57.509707) (xy 169.350292 57.398213) (xy 169.350288 57.39821) (xy 169.219185 57.310609) - (xy 169.219172 57.310602) (xy 169.073501 57.250264) (xy 169.073489 57.250261) (xy 168.918845 57.2195) - (xy 168.918842 57.2195) (xy 168.761158 57.2195) (xy 168.761155 57.2195) (xy 168.606505 57.250261) - (xy 168.606497 57.250264) (xy 168.56952 57.26558) (xy 168.50005 57.273047) (xy 168.474619 57.26558) - (xy 168.466692 57.262296) (xy 168.413497 57.240263) (xy 168.413493 57.240262) (xy 168.413488 57.24026) - (xy 168.258845 57.2095) (xy 168.258842 57.2095) (xy 168.101158 57.2095) (xy 168.101155 57.2095) - (xy 167.94651 57.240261) (xy 167.946498 57.240264) (xy 167.800828 57.300602) (xy 167.800814 57.30061) - (xy 167.798854 57.30192) (xy 167.79767 57.30229) (xy 167.795447 57.303479) (xy 167.795221 57.303057) - (xy 167.732176 57.322796) (xy 167.664796 57.30431) (xy 167.661076 57.301919) (xy 167.659115 57.300609) - (xy 167.629179 57.280606) (xy 167.629176 57.280604) (xy 167.629171 57.280602) (xy 167.483501 57.220264) - (xy 167.483489 57.220261) (xy 167.328845 57.1895) (xy 167.328842 57.1895) (xy 167.171158 57.1895) - (xy 167.171155 57.1895) (xy 167.01651 57.220261) (xy 167.016498 57.220264) (xy 166.870824 57.280604) - (xy 166.82889 57.308623) (xy 166.762212 57.3295) (xy 166.694832 57.311015) (xy 166.69111 57.308623) - (xy 166.677782 57.299718) (xy 166.649179 57.280606) (xy 166.649176 57.280604) (xy 166.649175 57.280604) - (xy 166.503501 57.220264) (xy 166.503489 57.220261) (xy 166.348845 57.1895) (xy 166.348842 57.1895) - (xy 166.191158 57.1895) (xy 166.191155 57.1895) (xy 166.03651 57.220261) (xy 166.036498 57.220264) - (xy 165.890827 57.280602) (xy 165.890814 57.280609) (xy 165.759711 57.36821) (xy 165.759707 57.368213) - (xy 165.648213 57.479707) (xy 165.64821 57.479711) (xy 165.560609 57.610814) (xy 165.560602 57.610827) - (xy 165.500264 57.756498) (xy 165.500261 57.75651) (xy 165.4695 57.911153) (xy 161.101216 57.911153) - (xy 161.084836 57.85884) (xy 161.10332 57.79146) (xy 161.155299 57.744769) (xy 161.224269 57.733593) - (xy 161.233002 57.735008) (xy 161.266119 57.741595) (xy 161.361155 57.7605) (xy 161.361158 57.7605) - (xy 161.518844 57.7605) (xy 161.518845 57.760499) (xy 161.673497 57.729737) (xy 161.819179 57.669394) - (xy 161.950289 57.581789) (xy 162.061789 57.470289) (xy 162.149394 57.339179) (xy 162.209737 57.193497) - (xy 162.2405 57.038842) (xy 162.2405 56.881158) (xy 162.2405 56.881155) (xy 162.240499 56.881153) - (xy 162.229912 56.827931) (xy 162.209737 56.726503) (xy 162.171466 56.634108) (xy 189.9495 56.634108) - (xy 189.9495 58.034108) (xy 189.9495 58.165892) (xy 189.949664 58.166503) (xy 189.983608 58.293187) - (xy 190.007793 58.335075) (xy 190.0495 58.407314) (xy 190.142686 58.5005) (xy 190.256814 58.566392) - (xy 190.384108 58.6005) (xy 191.62556 58.6005) (xy 191.692599 58.620185) (xy 191.736045 58.668205) - (xy 191.775054 58.744764) (xy 191.780476 58.755405) (xy 191.896172 58.914646) (xy 192.035354 59.053828) - (xy 192.194595 59.169524) (xy 192.255389 59.2005) (xy 192.36997 59.258882) (xy 192.369972 59.258882) - (xy 192.369975 59.258884) (xy 192.470317 59.291487) (xy 192.557173 59.319709) (xy 192.751578 59.3505) - (xy 192.751583 59.3505) (xy 192.948422 59.3505) (xy 193.142826 59.319709) (xy 193.330025 59.258884) - (xy 193.505405 59.169524) (xy 193.664646 59.053828) (xy 193.762319 58.956155) (xy 193.823642 58.92267) - (xy 193.893334 58.927654) (xy 193.937681 58.956155) (xy 194.035354 59.053828) (xy 194.194595 59.169524) - (xy 194.255389 59.2005) (xy 194.36997 59.258882) (xy 194.369972 59.258882) (xy 194.369975 59.258884) - (xy 194.470317 59.291487) (xy 194.557173 59.319709) (xy 194.751578 59.3505) (xy 194.751583 59.3505) - (xy 194.948422 59.3505) (xy 195.142826 59.319709) (xy 195.330025 59.258884) (xy 195.505405 59.169524) - (xy 195.664646 59.053828) (xy 195.762321 58.956152) (xy 195.770262 58.951816) (xy 195.775688 58.944569) - (xy 195.800447 58.935334) (xy 195.82364 58.92267) (xy 195.832669 58.923315) (xy 195.841152 58.920152) - (xy 195.866974 58.925769) (xy 195.893332 58.927654) (xy 195.902384 58.933471) (xy 195.909425 58.935003) - (xy 195.93768 58.956154) (xy 196.013182 59.031656) (xy 196.046666 59.092977) (xy 196.0495 59.119336) - (xy 196.0495 59.178846) (xy 196.080261 59.333489) (xy 196.080264 59.333501) (xy 196.140602 59.479172) - (xy 196.140609 59.479185) (xy 196.22821 59.610288) (xy 196.228213 59.610292) (xy 196.339707 59.721786) - (xy 196.339711 59.721789) (xy 196.470814 59.80939) (xy 196.470827 59.809397) (xy 196.590871 59.85912) - (xy 196.616503 59.869737) (xy 196.766131 59.8995) (xy 196.771153 59.900499) (xy 196.771156 59.9005) - (xy 196.771158 59.9005) (xy 196.928844 59.9005) (xy 196.928845 59.900499) (xy 197.083497 59.869737) - (xy 197.229179 59.809394) (xy 197.360289 59.721789) (xy 197.471789 59.610289) (xy 197.559394 59.479179) - (xy 197.619737 59.333497) (xy 197.6505 59.178842) (xy 197.6505 59.119336) (xy 197.659144 59.089895) - (xy 197.665668 59.059909) (xy 197.669422 59.054893) (xy 197.670185 59.052297) (xy 197.686819 59.031655) - (xy 197.762319 58.956155) (xy 197.823642 58.92267) (xy 197.893334 58.927654) (xy 197.937681 58.956155) - (xy 198.035354 59.053828) (xy 198.194595 59.169524) (xy 198.255389 59.2005) (xy 198.36997 59.258882) - (xy 198.369972 59.258882) (xy 198.369975 59.258884) (xy 198.470317 59.291487) (xy 198.557173 59.319709) - (xy 198.751578 59.3505) (xy 198.751583 59.3505) (xy 198.948422 59.3505) (xy 199.142826 59.319709) - (xy 199.330025 59.258884) (xy 199.505405 59.169524) (xy 199.664646 59.053828) (xy 199.762319 58.956155) - (xy 199.823642 58.92267) (xy 199.893334 58.927654) (xy 199.937681 58.956155) (xy 200.035354 59.053828) - (xy 200.194595 59.169524) (xy 200.255389 59.2005) (xy 200.36997 59.258882) (xy 200.369972 59.258882) - (xy 200.369975 59.258884) (xy 200.470317 59.291487) (xy 200.557173 59.319709) (xy 200.751578 59.3505) - (xy 200.751583 59.3505) (xy 200.948422 59.3505) (xy 201.142826 59.319709) (xy 201.330025 59.258884) - (xy 201.505405 59.169524) (xy 201.664646 59.053828) (xy 201.762319 58.956155) (xy 201.823642 58.92267) - (xy 201.893334 58.927654) (xy 201.937681 58.956155) (xy 202.035354 59.053828) (xy 202.194595 59.169524) - (xy 202.255389 59.2005) (xy 202.36997 59.258882) (xy 202.369972 59.258882) (xy 202.369975 59.258884) - (xy 202.470317 59.291487) (xy 202.557173 59.319709) (xy 202.751578 59.3505) (xy 202.751583 59.3505) - (xy 202.948422 59.3505) (xy 203.142826 59.319709) (xy 203.330025 59.258884) (xy 203.505405 59.169524) - (xy 203.664646 59.053828) (xy 203.803828 58.914646) (xy 203.919524 58.755405) (xy 203.95937 58.677203) - (xy 203.963955 58.668205) (xy 204.01193 58.617409) (xy 204.07444 58.6005) (xy 204.31589 58.6005) - (xy 204.315892 58.6005) (xy 204.443186 58.566392) (xy 204.557314 58.5005) (xy 204.6505 58.407314) - (xy 204.716392 58.293186) (xy 204.7505 58.165892) (xy 204.7505 56.634108) (xy 204.716392 56.506814) - (xy 204.6505 56.392686) (xy 204.557314 56.2995) (xy 204.472633 56.250609) (xy 204.443187 56.233608) - (xy 204.379539 56.216554) (xy 204.315892 56.1995) (xy 204.315891 56.1995) (xy 203.07444 56.1995) - (xy 203.007401 56.179815) (xy 202.963955 56.131795) (xy 202.940792 56.086336) (xy 202.919524 56.044595) - (xy 202.803828 55.885354) (xy 202.664646 55.746172) (xy 202.505405 55.630476) (xy 202.442413 55.59838) - (xy 202.330029 55.541117) (xy 202.142826 55.48029) (xy 201.948422 55.4495) (xy 201.948417 55.4495) - (xy 201.751583 55.4495) (xy 201.751578 55.4495) (xy 201.557173 55.48029) (xy 201.36997 55.541117) - (xy 201.194594 55.630476) (xy 201.120794 55.684096) (xy 201.035354 55.746172) (xy 201.035352 55.746174) - (xy 201.035351 55.746174) (xy 200.937681 55.843845) (xy 200.876358 55.87733) (xy 200.806666 55.872346) - (xy 200.762319 55.843845) (xy 200.664648 55.746174) (xy 200.664646 55.746172) (xy 200.505405 55.630476) - (xy 200.442413 55.59838) (xy 200.330029 55.541117) (xy 200.142826 55.48029) (xy 199.948422 55.4495) - (xy 199.948417 55.4495) (xy 199.751583 55.4495) (xy 199.751578 55.4495) (xy 199.557173 55.48029) - (xy 199.36997 55.541117) (xy 199.194594 55.630476) (xy 199.120794 55.684096) (xy 199.035354 55.746172) - (xy 199.035352 55.746174) (xy 199.035351 55.746174) (xy 198.937681 55.843845) (xy 198.876358 55.87733) - (xy 198.806666 55.872346) (xy 198.762319 55.843845) (xy 198.664648 55.746174) (xy 198.664646 55.746172) - (xy 198.505405 55.630476) (xy 198.442413 55.59838) (xy 198.330029 55.541117) (xy 198.142826 55.48029) - (xy 197.948422 55.4495) (xy 197.948417 55.4495) (xy 197.751583 55.4495) (xy 197.751578 55.4495) - (xy 197.557173 55.48029) (xy 197.36997 55.541117) (xy 197.194594 55.630476) (xy 197.120794 55.684096) - (xy 197.035354 55.746172) (xy 197.035352 55.746174) (xy 197.035351 55.746174) (xy 196.937681 55.843845) - (xy 196.876358 55.87733) (xy 196.806666 55.872346) (xy 196.762319 55.843845) (xy 196.664648 55.746174) - (xy 196.664646 55.746172) (xy 196.505405 55.630476) (xy 196.442413 55.59838) (xy 196.330029 55.541117) - (xy 196.142826 55.48029) (xy 195.948422 55.4495) (xy 195.948417 55.4495) (xy 195.751583 55.4495) - (xy 195.751578 55.4495) (xy 195.557173 55.48029) (xy 195.36997 55.541117) (xy 195.194594 55.630476) - (xy 195.120794 55.684096) (xy 195.035354 55.746172) (xy 195.035352 55.746174) (xy 195.035351 55.746174) - (xy 194.937681 55.843845) (xy 194.876358 55.87733) (xy 194.806666 55.872346) (xy 194.762319 55.843845) - (xy 194.664648 55.746174) (xy 194.664646 55.746172) (xy 194.505405 55.630476) (xy 194.442413 55.59838) - (xy 194.330029 55.541117) (xy 194.142826 55.48029) (xy 193.948422 55.4495) (xy 193.948417 55.4495) - (xy 193.751583 55.4495) (xy 193.751578 55.4495) (xy 193.557173 55.48029) (xy 193.36997 55.541117) - (xy 193.194594 55.630476) (xy 193.120794 55.684096) (xy 193.035354 55.746172) (xy 193.035352 55.746174) - (xy 193.035351 55.746174) (xy 192.937681 55.843845) (xy 192.876358 55.87733) (xy 192.806666 55.872346) - (xy 192.762319 55.843845) (xy 192.664648 55.746174) (xy 192.664646 55.746172) (xy 192.505405 55.630476) - (xy 192.442413 55.59838) (xy 192.330029 55.541117) (xy 192.142826 55.48029) (xy 191.948422 55.4495) - (xy 191.948417 55.4495) (xy 191.751583 55.4495) (xy 191.751578 55.4495) (xy 191.557173 55.48029) - (xy 191.36997 55.541117) (xy 191.194594 55.630476) (xy 191.120794 55.684096) (xy 191.035354 55.746172) - (xy 191.035352 55.746174) (xy 191.035351 55.746174) (xy 190.896174 55.885351) (xy 190.896174 55.885352) - (xy 190.896172 55.885354) (xy 190.885206 55.900448) (xy 190.780476 56.044594) (xy 190.736045 56.131795) - (xy 190.68807 56.182591) (xy 190.62556 56.1995) (xy 190.384108 56.1995) (xy 190.256812 56.233608) - (xy 190.142686 56.2995) (xy 190.142683 56.299502) (xy 190.049502 56.392683) (xy 190.0495 56.392686) - (xy 189.983608 56.506812) (xy 189.983382 56.507656) (xy 189.9495 56.634108) (xy 162.171466 56.634108) - (xy 162.163799 56.615597) (xy 162.149397 56.580827) (xy 162.14939 56.580814) (xy 162.061789 56.449711) - (xy 162.061786 56.449707) (xy 161.950292 56.338213) (xy 161.950288 56.33821) (xy 161.819185 56.250609) - (xy 161.819172 56.250602) (xy 161.673501 56.190264) (xy 161.673489 56.190261) (xy 161.518845 56.1595) - (xy 161.518842 56.1595) (xy 161.361158 56.1595) (xy 161.361155 56.1595) (xy 161.20651 56.190261) - (xy 161.206498 56.190264) (xy 161.060827 56.250602) (xy 161.060814 56.250609) (xy 160.929711 56.33821) - (xy 160.929707 56.338213) (xy 160.818213 56.449707) (xy 160.81821 56.449711) (xy 160.730609 56.580814) - (xy 160.730602 56.580827) (xy 160.670264 56.726498) (xy 160.670261 56.72651) (xy 160.6395 56.881153) - (xy 160.6395 57.038846) (xy 160.670261 57.193489) (xy 160.670264 57.193501) (xy 160.730602 57.339172) - (xy 160.730609 57.339185) (xy 160.794285 57.434482) (xy 160.815163 57.50116) (xy 160.796679 57.56854) - (xy 160.7447 57.61523) (xy 160.67573 57.626406) (xy 160.666992 57.62499) (xy 160.538845 57.5995) - (xy 160.538842 57.5995) (xy 160.381158 57.5995) (xy 160.381155 57.5995) (xy 160.22651 57.630261) - (xy 160.226498 57.630264) (xy 160.080827 57.690602) (xy 160.080814 57.690609) (xy 159.949711 57.77821) - (xy 159.949707 57.778213) (xy 159.838213 57.889707) (xy 159.83821 57.889711) (xy 159.750609 58.020814) - (xy 159.750602 58.020827) (xy 159.690264 58.166498) (xy 159.690261 58.16651) (xy 159.6595 58.321153) - (xy 158.5205 58.321153) (xy 158.5205 58.301158) (xy 158.5205 58.301155) (xy 158.520499 58.301153) - (xy 158.51102 58.253501) (xy 158.489737 58.146503) (xy 158.486372 58.13838) (xy 158.429397 58.000827) - (xy 158.42939 58.000814) (xy 158.341789 57.869711) (xy 158.341786 57.869707) (xy 158.230292 57.758213) - (xy 158.230288 57.75821) (xy 158.099185 57.670609) (xy 158.099172 57.670602) (xy 157.953501 57.610264) - (xy 157.953489 57.610261) (xy 157.798845 57.5795) (xy 157.798842 57.5795) (xy 157.641158 57.5795) - (xy 157.641155 57.5795) (xy 157.48651 57.610261) (xy 157.486498 57.610264) (xy 157.340827 57.670602) - (xy 157.340814 57.670609) (xy 157.209711 57.75821) (xy 157.209707 57.758213) (xy 157.098213 57.869707) - (xy 157.09821 57.869711) (xy 157.010609 58.000814) (xy 157.010602 58.000827) (xy 156.950264 58.146498) - (xy 156.950261 58.14651) (xy 156.9195 58.301153) (xy 131.029711 58.301153) (xy 131.044394 58.279179) - (xy 131.059173 58.243501) (xy 131.091063 58.16651) (xy 131.104737 58.133497) (xy 131.1355 57.978842) - (xy 131.1355 57.821158) (xy 131.1355 57.821155) (xy 131.135499 57.821153) (xy 131.126619 57.77651) - (xy 131.104737 57.666503) (xy 131.089954 57.630814) (xy 131.044397 57.520827) (xy 131.04439 57.520814) - (xy 130.956789 57.389711) (xy 130.956786 57.389707) (xy 130.845292 57.278213) (xy 130.845288 57.27821) - (xy 130.714185 57.190609) (xy 130.714172 57.190602) (xy 130.568501 57.130264) (xy 130.568489 57.130261) - (xy 130.413845 57.0995) (xy 130.413842 57.0995) (xy 130.256158 57.0995) (xy 130.256155 57.0995) - (xy 130.10151 57.130261) (xy 130.101498 57.130264) (xy 129.955827 57.190602) (xy 129.955814 57.190609) - (xy 129.824711 57.27821) (xy 129.824707 57.278213) (xy 129.713213 57.389707) (xy 129.71321 57.389711) - (xy 129.625609 57.520814) (xy 129.625602 57.520827) (xy 129.565264 57.666498) (xy 129.565261 57.66651) - (xy 129.5345 57.821153) (xy 127.251365 57.821153) (xy 127.418675 57.735904) (xy 127.571422 57.624927) - (xy 127.704927 57.491422) (xy 127.815904 57.338675) (xy 127.90162 57.170448) (xy 127.959964 56.990884) - (xy 127.9895 56.804403) (xy 127.9895 56.615597) (xy 127.987633 56.603812) (xy 127.959964 56.429115) - (xy 127.901618 56.249547) (xy 127.818457 56.086336) (xy 127.815904 56.081325) (xy 127.704927 55.928578) - (xy 127.571422 55.795073) (xy 127.418675 55.684096) (xy 127.250452 55.598381) (xy 127.125959 55.557931) - (xy 127.068284 55.518493) (xy 127.041086 55.454134) (xy 127.053001 55.385288) (xy 127.100245 55.333812) - (xy 127.125959 55.322069) (xy 127.250448 55.28162) (xy 127.418675 55.195904) (xy 127.571422 55.084927) - (xy 127.704927 54.951422) (xy 127.815904 54.798675) (xy 127.90162 54.630448) (xy 127.959964 54.450884) - (xy 127.9895 54.264403) (xy 127.9895 54.075597) (xy 127.970644 53.956544) (xy 127.959964 53.889115) - (xy 127.901618 53.709547) (xy 127.8564 53.620804) (xy 127.815904 53.541325) (xy 127.704927 53.388578) - (xy 127.571422 53.255073) (xy 127.418675 53.144096) (xy 127.389813 53.12939) (xy 127.250452 53.058381) - (xy 127.070884 53.000035) (xy 126.909899 52.974538) (xy 126.884403 52.9705) (xy 126.695597 52.9705) - (xy 126.673167 52.974052) (xy 126.509115 53.000035) (xy 126.329547 53.058381) (xy 126.161324 53.144096) - (xy 126.008575 53.255075) (xy 125.875075 53.388575) (xy 125.764094 53.541326) (xy 125.683983 53.698552) - (xy 125.636009 53.749347) (xy 125.568188 53.766142) (xy 125.502053 53.743604) (xy 125.458602 53.688889) - (xy 125.449499 53.642261) (xy 125.449499 52.153128) (xy 125.443091 52.093517) (xy 125.392796 51.958669) - (xy 125.392795 51.958668) (xy 125.392793 51.958664) (xy 125.306547 51.843455) (xy 125.306544 51.843452) - (xy 125.191335 51.757206) (xy 125.191328 51.757202) (xy 125.056482 51.706908) (xy 125.056483 51.706908) - (xy 124.996883 51.700501) (xy 124.996881 51.7005) (xy 124.996873 51.7005) (xy 124.996864 51.7005) - (xy 123.503129 51.7005) (xy 123.503123 51.700501) (xy 123.443516 51.706908) (xy 123.308671 51.757202) - (xy 123.308664 51.757206) (xy 123.193455 51.843452) (xy 123.193452 51.843455) (xy 123.107206 51.958664) - (xy 123.107202 51.958671) (xy 123.056908 52.093517) (xy 123.050501 52.153116) (xy 123.050501 52.153123) - (xy 123.0505 52.153135) (xy 119.702826 52.153135) (xy 119.743409 52.001677) (xy 119.7755 51.757927) - (xy 119.7755 51.512073) (xy 119.743409 51.268323) (xy 119.697171 51.095759) (xy 119.698834 51.025914) - (xy 119.737996 50.968051) (xy 119.802225 50.940547) (xy 119.871127 50.952133) (xy 119.892432 50.965294) - (xy 119.977863 51.030847) (xy 119.990699 51.040696) (xy 120.186301 51.153627) (xy 120.186304 51.153628) - (xy 120.186309 51.153631) (xy 120.298882 51.200259) (xy 120.394971 51.240061) (xy 120.613138 51.298519) - (xy 120.837069 51.328) (xy 120.837076 51.328) (xy 121.062924 51.328) (xy 121.062931 51.328) (xy 121.286862 51.298519) - (xy 121.505029 51.240061) (xy 121.66906 51.172116) (xy 121.71369 51.153631) (xy 121.713691 51.153629) - (xy 121.713699 51.153627) (xy 121.909301 51.040696) (xy 122.08849 50.9032) (xy 122.2482 50.74349) - (xy 122.385696 50.564301) (xy 122.498627 50.368699) (xy 122.504642 50.354179) (xy 122.547451 50.250827) - (xy 122.585061 50.160029) (xy 122.643519 49.941862) (xy 122.673 49.717931) (xy 122.673 49.492069) - (xy 122.643519 49.268138) (xy 122.585061 49.049971) (xy 122.530008 48.917062) (xy 122.498631 48.841309) - (xy 122.498623 48.841293) (xy 122.466988 48.7865) (xy 122.450515 48.7186) (xy 122.473367 48.652573) - (xy 122.528288 48.609383) (xy 122.574375 48.6005) (xy 123.649138 48.6005) - ) - ) - ) - (embedded_fonts no) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_pcb b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_pcb deleted file mode 100644 index 807509f..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_pcb +++ /dev/null @@ -1,28858 +0,0 @@ -(kicad_pcb - (version 20260206) - (generator "pcbnew") - (generator_version "10.0") - (general - (thickness 1.1412) - (legacy_teardrops no) - ) - (paper "A4") - (layers - (0 "F.Cu" signal) - (4 "In1.Cu" signal) - (6 "In2.Cu" signal) - (2 "B.Cu" signal) - (9 "F.Adhes" user "F.Adhesive") - (11 "B.Adhes" user "B.Adhesive") - (13 "F.Paste" user) - (15 "B.Paste" user) - (5 "F.SilkS" user "F.Silkscreen") - (7 "B.SilkS" user "B.Silkscreen") - (1 "F.Mask" user) - (3 "B.Mask" user) - (17 "Dwgs.User" user "User.Drawings") - (19 "Cmts.User" user "User.Comments") - (21 "Eco1.User" user "User.Eco1") - (23 "Eco2.User" user "User.Eco2") - (25 "Edge.Cuts" user) - (27 "Margin" user) - (31 "F.CrtYd" user "F.Courtyard") - (29 "B.CrtYd" user "B.Courtyard") - (35 "F.Fab" user) - (33 "B.Fab" user) - (39 "User.1" user) - (41 "User.2" user) - (43 "User.3" user) - (45 "User.4" user) - ) - (setup - (stackup - (layer "F.SilkS" - (type "Top Silk Screen") - ) - (layer "F.Paste" - (type "Top Solder Paste") - ) - (layer "F.Mask" - (type "Top Solder Mask") - (thickness 0.01) - ) - (layer "F.Cu" - (type "copper") - (thickness 0.035) - ) - (layer "dielectric 1" - (type "prepreg") - (thickness 0.2104) - (material "FR4") - (epsilon_r 4.5) - (loss_tangent 0.02) - ) - (layer "In1.Cu" - (type "copper") - (thickness 0.0152) - ) - (layer "dielectric 2" - (type "core") - (thickness 0.6) - (material "FR4") - (epsilon_r 4.5) - (loss_tangent 0.02) - ) - (layer "In2.Cu" - (type "copper") - (thickness 0.0152) - ) - (layer "dielectric 3" - (type "prepreg") - (thickness 0.2104) - (material "FR4") - (epsilon_r 4.5) - (loss_tangent 0.02) - ) - (layer "B.Cu" - (type "copper") - (thickness 0.035) - ) - (layer "B.Mask" - (type "Bottom Solder Mask") - (thickness 0.01) - ) - (layer "B.Paste" - (type "Bottom Solder Paste") - ) - (layer "B.SilkS" - (type "Bottom Silk Screen") - ) - (copper_finish "None") - (dielectric_constraints no) - ) - (pad_to_mask_clearance 0) - (allow_soldermask_bridges_in_footprints no) - (tenting - (front yes) - (back yes) - ) - (covering - (front no) - (back no) - ) - (plugging - (front no) - (back no) - ) - (capping no) - (filling no) - (pcbplotparams - (layerselection 0x00000000_00000000_55555555_5755f5ff) - (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) - (disableapertmacros no) - (usegerberextensions no) - (usegerberattributes yes) - (usegerberadvancedattributes yes) - (creategerberjobfile yes) - (dashed_line_dash_ratio 12) - (dashed_line_gap_ratio 3) - (svgprecision 4) - (plotframeref no) - (mode 1) - (useauxorigin no) - (pdf_front_fp_property_popups yes) - (pdf_back_fp_property_popups yes) - (pdf_metadata yes) - (pdf_single_document no) - (dxfpolygonmode yes) - (dxfimperialunits yes) - (dxfusepcbnewfont yes) - (psnegative no) - (psa4output no) - (plot_black_and_white yes) - (sketchpadsonfab no) - (plotpadnumbers no) - (hidednponfab no) - (sketchdnponfab yes) - (crossoutdnponfab yes) - (subtractmaskfromsilk no) - (outputformat 1) - (mirror no) - (drillshape 1) - (scaleselection 1) - (outputdirectory "") - ) - ) - (footprint "Package_SO:SOIC-8_5.3x5.3mm_P1.27mm" - (layer "F.Cu") - (uuid "08f41b78-c68b-4f46-a398-9b5830d958ea") - (at 129.52 84.9) - (descr "SOIC, 8 Pin (JEITA/EIAJ ED-7311-19 variation 08-001-BBA and Atmel/Microchip, 208 mils width, https://www.jeita.or.jp/japanese/standard/book/ED-7311-19/#target/page_no=21, https://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23, https://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=162)") - (tags "SOIC SO P-SOP SOP SOP-8 SO SO-8 8S2 S2AE/F K04-056 CASE-751BE SO8W 8-Pin-SOIC PSA W8-2 W8-4 W8MS-1 FPT-8P-M08") - (property "Reference" "U10" - (at 0 -3.6 0) - (layer "F.SilkS") - (uuid "dc4c1260-9250-4999-ae06-c526607e8383") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "W25Q32JVSS" - (at 0 3.6 0) - (layer "F.Fab") - (uuid "11432b78-f3a3-420f-bae8-ff26efbce1d2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c57c0a21-c7f0-4453-9a2f-412f7f9d5f05") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "32Mbit / 4MiB Serial Flash Memory, Standard/Dual/Quad SPI, 2.7-3.6V, SOIC-8 (208 mil)" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5039fc2f-7e82-40f2-ad7c-22cfd192a6ea") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "536aabfc-df54-43cc-844c-04d71eb1338b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "*SOIC*5.3x5.3mm*P1.27mm*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/214cd199-1209-4a06-972b-71421959b7f3") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "6" "5" "2" "3" "7" "8" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 -2.76) - (end 2.76 -2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1d5c7ba0-7ae6-481e-9469-14fcd1da58ee") - ) - (fp_line - (start -2.76 -2.49) - (end -2.76 -2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "30da8f6e-5b89-43b2-86a1-3bc951756d1c") - ) - (fp_line - (start -2.76 2.76) - (end -2.76 2.49) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "21268947-e1aa-4595-a76d-ff0a1de307e7") - ) - (fp_line - (start 2.76 -2.76) - (end 2.76 -2.49) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8fc27a6f-0160-4cfe-bb96-353684d422a8") - ) - (fp_line - (start 2.76 2.49) - (end 2.76 2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4631d7eb-d054-47f8-b83d-8c4cbb583d60") - ) - (fp_line - (start 2.76 2.76) - (end -2.76 2.76) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7784cee3-1a99-4be3-8c0a-fea3cdf46e45") - ) - (fp_poly - (pts - (xy -3.59 -2.5) (xy -3.93 -2.97) (xy -3.25 -2.97) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "ad90df24-48e2-404d-a2d5-2b0e0b8018bb") - ) - (fp_line - (start -4.65 -2.48) - (end -2.9 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "42d3b423-89e4-41d6-83d8-f2110d6dea56") - ) - (fp_line - (start -4.65 2.48) - (end -4.65 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f4833197-ef08-417f-a12b-bbfd87a0bf19") - ) - (fp_line - (start -2.9 -2.9) - (end 2.9 -2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "784ca6e4-e5c8-463e-88e8-8f95a4a8b0c2") - ) - (fp_line - (start -2.9 -2.48) - (end -2.9 -2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1c48744e-8153-437b-b5a9-8d4f4bebbdc6") - ) - (fp_line - (start -2.9 2.48) - (end -4.65 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6b4a3881-c2f0-4dfa-bfe0-eb7452df3520") - ) - (fp_line - (start -2.9 2.9) - (end -2.9 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bb738ce2-a9aa-4a87-8036-e50878027d71") - ) - (fp_line - (start 2.9 -2.9) - (end 2.9 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8697b0a8-291f-4db8-88ea-4215b6aba06c") - ) - (fp_line - (start 2.9 -2.48) - (end 4.65 -2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f54fa2fd-1aad-452f-b3c7-03256b4bc172") - ) - (fp_line - (start 2.9 2.48) - (end 2.9 2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e4361cb8-eef3-4059-93b3-de0f4e0669a8") - ) - (fp_line - (start 2.9 2.9) - (end -2.9 2.9) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2e3b9afc-f33d-4fad-aada-977b05bbd069") - ) - (fp_line - (start 4.65 -2.48) - (end 4.65 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e9156d2a-0ae2-4469-9517-8bd6a862a24f") - ) - (fp_line - (start 4.65 2.48) - (end 2.9 2.48) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "19adb54b-718f-43c1-9655-eef3466b073e") - ) - (fp_poly - (pts - (xy -1.65 -2.65) (xy 2.65 -2.65) (xy 2.65 2.65) (xy -2.65 2.65) (xy -2.65 -1.65) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "c99d1c7f-0a36-435b-971b-fbfc5f5cb380") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "40a62b8c-5eba-425f-b710-441c7dda60ba") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -3.5875 -1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_CS") - (pinfunction "~{CS}_1") - (pintype "input") - (uuid "5c58330b-2070-41b8-b029-f036d518bfb7") - ) - (pad "2" smd roundrect - (at -3.5875 -0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MISO") - (pinfunction "DO/IO_{1}_2") - (pintype "bidirectional") - (uuid "a28dbcab-1bc0-4ddd-a6ae-665bbc8a508a") - ) - (pad "3" smd roundrect - (at -3.5875 0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~{WP}/IO_{2}_3") - (pintype "bidirectional") - (uuid "1f4be114-2e80-4658-8328-5b5a20794b3a") - ) - (pad "4" smd roundrect - (at -3.5875 1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_4") - (pintype "power_in") - (uuid "921b0408-e8a9-4df0-8f4b-1edff3926e9f") - ) - (pad "5" smd roundrect - (at 3.5875 1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MOSI") - (pinfunction "DI/IO_{0}_5") - (pintype "bidirectional") - (uuid "6e1adbab-979b-4db1-ad18-31460c27469b") - ) - (pad "6" smd roundrect - (at 3.5875 0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_SCK") - (pinfunction "CLK_6") - (pintype "input") - (uuid "4ebb6769-1207-4253-bf35-49bd97863a62") - ) - (pad "7" smd roundrect - (at 3.5875 -0.635) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~{HOLD}/~{RESET}/IO_{3}_7") - (pintype "bidirectional") - (uuid "184126b7-b85d-431f-83b1-33f506936199") - ) - (pad "8" smd roundrect - (at 3.5875 -1.905) - (size 1.625 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCC_8") - (pintype "power_in") - (uuid "62bebcb2-7025-42a3-baa7-0e0f20f4e9d0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_5.3x5.3mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "0c184f77-5097-46a4-b7d0-78dbd6427139") - (at 94.3125 113.925) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C57" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "fb34e2f2-766e-42d1-a625-c2806cb51d56") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "3.3uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "73ffa3de-963e-4553-9b8c-a19a6bb6727c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2b5c2bcc-6caa-4948-9287-79f6a140f423") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5b5c2988-33f8-4675-b332-5b00b3185576") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "280aecda-255f-4e65-85e3-0cd3047b04b3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "53c4d7a4-fa65-4e0c-bc6c-d22c05f41d72") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5597e68f-e9c8-44e5-be8b-98f6293e3384") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/2e143cd8-1f59-45d9-9bde-f16efc92d953") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "14f27f85-ff8a-4af8-a576-9cd9150778d0") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c08f1475-8e63-499e-80a0-0fedb5cae5bc") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f2b3966b-4901-496b-9c55-06e1c39dbca2") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0af26461-0a43-4aa2-8eaf-a2437c8dc5df") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a52dea89-9c3f-424f-a358-602027e533e8") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2O_RAW") - (pintype "passive") - (uuid "e627d978-fae5-49ea-88db-4e0fba89d3c2") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2ef77f0d-1048-4f7a-a148-862fff182af7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "0c474c4a-e62b-440d-b54d-5669b0a28aab") - (at 87.2375 110.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C42" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "16cf1b82-7608-4c19-898f-a80d00034c16") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "d059a8c2-45bc-47ef-ba92-946522ce2b71") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6975e0c2-4d6b-4570-b868-cba045e3dc42") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d28d4f7b-549f-496d-8395-e03decd9f7e6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "0a509e71-af34-4cce-a59a-ad675d2c6426") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b2f011fb-5fad-4f55-bc76-90f16a666d20") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "84d896ed-dedc-4661-82be-8bf4e50bda4a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/bbbc01cb-ff9a-4efe-a15e-d40dca5053a3") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9f5e2f0a-bc8c-42ae-9590-278f0550253e") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "714a9253-df4e-421e-9f14-30383c304124") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "006dfd35-1210-4637-9b56-79f752cb3c9b") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b3a003f0-648e-485e-83c5-0e60e51ea61c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "9547ee81-7c9d-4f55-a643-21aa028c2aee") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "84ba425f-155a-4251-9811-645ab20fcdba") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "afdd6824-37f2-467c-b7b6-8cecb192cf31") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "0e3de586-8a61-43b9-90a9-3cd6c2a8cbc5") - (at 163.0325 84.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C49" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "8e7b91a4-8a08-417c-b06d-dd5601773110") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "92f70fb6-47b8-4552-ab40-b0e5be474076") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0fa0d538-b799-4e06-b3b0-971b4d27719f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "adba838b-8572-4b51-ade4-ca28e5f006c5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "fc5bd7ab-5f54-44b1-941b-58ce88d2db8f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fa128a4e-ece9-4cfb-921a-8f5f4b1bbfa0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e252ee3b-4506-47db-851e-d5067313d1c4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/5732288c-e135-4e01-a857-b7c1cdd85e89") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6dca4d3b-7033-4097-abad-9178ca8f9f72") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d4654d6a-e23d-4cff-8afd-5c17a9f941f1") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "eaece99e-8f6f-463e-8044-95b666b78925") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "6c920900-b692-41f6-abe2-ae61c14097d0") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "85eb4599-b234-4136-b7b1-540965240d39") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "a2fbe51a-94e7-4c2f-98c7-e7c4d94294df") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "35b9929e-9908-450f-8e33-97b4da790ad7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "1382341e-8291-4297-9dde-2ef38214694b") - (at 86.2375 113.5 90) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "X1" - (at 0 -2.4 90) - (layer "F.SilkS") - (uuid "3644dddf-c422-4dd8-b568-19962c0e1dd3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12MHz" - (at 0 2.4 90) - (layer "F.Fab") - (uuid "9c87027f-ac85-4368-85b5-12d46c25400b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "5f883964-3328-41eb-92b1-19eaeb7c15a9") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "dad1bd5d-81bb-4b6c-bb67-5d6407c4faf0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "3af42075-4943-4d85-97d8-ab6cf0a4bbcd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (path "/73763384-ff95-4826-8da6-2de53070e62f/b6ef64c5-65dd-47eb-8855-4631e64d1b5d") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "5" "2" "3") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cd63b8c6-e5bf-4efb-a29c-f9f8ec82f380") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d0c6e968-2c52-49c7-872e-72946976f025") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fa3e7b15-b7d4-4fb1-9f51-4fc54b5867aa") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e7e9341f-ced6-47ba-9c42-e874b4144f94") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4bbe2527-6a70-48ad-8cd5-2c2f6d249da3") - ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7fccb362-b425-4fc7-9869-da3950e3d182") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1598fd96-a389-4551-b4eb-fbd6fa4f7723") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "fe6340bf-c0f8-4681-ae3d-f73d74440b81") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5de25389-cfcd-4de0-8eb0-0f0d88badedb") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "de9040ab-4492-498c-b221-d88ddf126602") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf2477b8-3094-41f2-bcc3-e3584269d7ca") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0932faa9-29c7-4138-8d56-546218238110") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5137902e-e349-447f-9d4f-7fae43ead330") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bd53d289-a109-425f-9e54-ab14c19e3187") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f16015df-7187-41ba-b8fc-4c12ebd52753") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f77521cc-371b-4a8e-bbe9-1947799ea864") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b9baa640-aba1-4ce4-baf6-22f3a3d5a247") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ad914ada-bf61-451c-aa55-6865487b50be") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f76040a6-96ed-4e2e-bc3f-0edfdf703633") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6dc756b9-724f-4c39-ad08-25384a1c5ee4") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b27df0b4-de03-40fe-b202-35acb6f30326") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dcc7c7ff-001b-4b4b-a287-7e636a2bfc9b") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2eb58f7a-2d62-4256-8231-8d5006e2058b") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5f81db38-6d77-4943-8c4f-958d80db37ac") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "43f59af4-6aa3-446d-9329-94e9452309be") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "0775f8ab-a6cb-443f-8baf-0352deba0779") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "OE_1") - (pintype "input") - (uuid "8fb2f277-9fb5-4467-91af-b9a13222be25") - ) - (pad "2" smd roundrect - (at -1.1375 0 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "062860a0-8fe7-491c-b5b3-343edbadbf20") - ) - (pad "3" smd roundrect - (at -1.1375 0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/CLK12") - (pinfunction "OUT_3") - (pintype "output") - (uuid "32e8683a-78df-4186-a82e-d08c5e19de73") - ) - (pad "4" smd roundrect - (at 1.1375 0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (uuid "7c8dac01-255b-4394-846b-54461459f20f") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VDD_5") - (pintype "power_in") - (uuid "abdd9b7e-e9bc-4769-a13f-c4e171f52321") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "13bc0e4e-a101-4269-b64a-edbd05dceac1") - (at 231.1 60.3025 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C12" - (at 0 -1.16 270) - (layer "F.SilkS") - (uuid "8bd93207-8879-4748-b330-a04f94ee0f89") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 270) - (layer "F.Fab") - (uuid "1e35d98b-2ca3-4edd-9e56-68d0175f2ee3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "6426d9f4-54f0-4540-b914-070fd01efd01") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "4e7968e1-fcf6-4e45-b013-c3dcdce307f8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 270) - (layer "F.SilkS") - (hide yes) - (uuid "230c5b4a-1ddd-446b-b1b9-9d96d8605279") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "01eb3d61-a4e3-4965-bf7f-9724a8c4db4a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "72aa749a-1dc7-49a2-b83b-304d49a73c8f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/53ffa1a8-eeb5-4671-8e4b-3b28c92f6fbe") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f0afce72-59be-48ca-a654-bff1aea7ccb0") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f8ac0574-6455-46ae-a470-d5c61e6cb96d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d15c15c1-4696-4012-a047-42ac7bad1bdd") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1d9bff44-b80c-4db4-81f1-8ad4495b5e4f") - ) - (fp_text user "${REFERENCE}" - (at 0 0 270) - (layer "F.Fab") - (uuid "ee8be7ae-9444-4e6c-b042-4cbc57679d57") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "125f652a-9906-4676-b3f1-67099dea2a93") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "13933250-55a4-42f8-8e81-87bc8ab6244e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "hardware:SOT95P280X110-6N" - (layer "F.Cu") - (uuid "156cee70-df37-4cb5-97d0-0a70589fa301") - (at 238.925 57.3275) - (property "Reference" "U3" - (at -0.068 -2.2064 0) - (layer "F.SilkS") - (uuid "5654de19-f1cc-4924-9879-372f727ed23a") - (effects - (font - (size 0.64 0.64) - (thickness 0.15) - ) - ) - ) - (property "Value" "TPS562201DDCR" - (at 4.4024 2.2064 0) - (layer "F.Fab") - (uuid "bd509639-91b8-4d10-a2c6-d54d60de6424") - (effects - (font - (size 0.64 0.64) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8c073f2b-87d6-4a51-b877-e7b63d663a54") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "86e9f51f-da4e-4a76-858f-31d591eccf3b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/8949102c-9b07-42a5-8fc0-460e3ea3148a") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "3" "5" "4" "6" "2" "1") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.8 -1.565) - (end 0.8 -1.565) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "ba901b82-49d2-43b4-b04e-5d25f648eab5") - ) - (fp_line - (start -0.8 1.565) - (end 0.8 1.565) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "3565f46e-da26-4029-bb5b-087f2a73cf9c") - ) - (fp_circle - (center -2.4 -1.2) - (end -2.3 -1.2) - (stroke - (width 0.2) - (type solid) - ) - (fill no) - (layer "F.SilkS") - (uuid "f1db9257-9c4e-40d2-b857-c2809ebb5b15") - ) - (fp_line - (start -2.13 -1.495) - (end -2.13 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b4f96a1f-b587-4b06-b17d-9645135caf3d") - ) - (fp_line - (start -2.13 1.495) - (end -1.05 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4f7650b8-658d-4c0a-a3c9-7967b3aa58a9") - ) - (fp_line - (start -1.05 -1.7) - (end -1.05 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9a5ca592-d11a-45ad-840a-7fb1390c3412") - ) - (fp_line - (start -1.05 -1.495) - (end -2.13 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "3825d10d-d655-465b-8bce-95c9aa34bb9f") - ) - (fp_line - (start -1.05 1.495) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "da0fdf58-e210-463b-a2b4-a5faeccfbbd8") - ) - (fp_line - (start -1.05 1.7) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f00df159-ac2d-465d-ab92-edca6b0a6048") - ) - (fp_line - (start 1.05 -1.7) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7f4a82fa-7da5-4d55-b338-b1383c1af128") - ) - (fp_line - (start 1.05 -1.495) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "190e1cd1-5754-4db9-be33-ec045fedb38d") - ) - (fp_line - (start 1.05 1.495) - (end 2.13 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4eabbaa3-3adb-4cbc-91cc-5fc8476fa48a") - ) - (fp_line - (start 1.05 1.7) - (end 1.05 1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6cf196c4-330e-41d7-9d4b-92119b2d9e93") - ) - (fp_line - (start 2.13 -1.495) - (end 1.05 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a6c46d08-71af-4e07-b786-714336f5d9b2") - ) - (fp_line - (start 2.13 1.495) - (end 2.13 -1.495) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0358a155-a302-4fb3-857a-25a175cf6031") - ) - (fp_line - (start -0.8 -1.45) - (end -0.8 1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "986c4240-a414-4f3b-89df-85ad59d429c1") - ) - (fp_line - (start -0.8 1.45) - (end 0.8 1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "423e625f-43af-466d-82fa-f175a197fd81") - ) - (fp_line - (start 0.8 -1.45) - (end -0.8 -1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "318283b2-5588-4053-a2f0-73ae01ade4cb") - ) - (fp_line - (start 0.8 1.45) - (end 0.8 -1.45) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "bc08a930-2f4e-4e94-b46f-69873bdb8336") - ) - (fp_circle - (center -2.4 -1.2) - (end -2.3 -1.2) - (stroke - (width 0.2) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a3e2050d-1c55-437a-a6c8-186597d56e1d") - ) - (pad "1" smd roundrect - (at -1.255 -0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "GND") - (pinfunction "GND_1") - (pintype "power_in") - (solder_mask_margin 0.102) - (uuid "b33f81e7-81fe-4f64-bf89-3ff0ea0c4ce0") - ) - (pad "2" smd roundrect - (at -1.255 0) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "/Power/SWN") - (pinfunction "SW_2") - (pintype "bidirectional") - (solder_mask_margin 0.102) - (uuid "190ee918-89c5-4db3-b78f-ca5667ef5ad2") - ) - (pad "3" smd roundrect - (at -1.255 0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "/Power/12V_EXI") - (pinfunction "VIN_3") - (pintype "power_in") - (solder_mask_margin 0.102) - (uuid "c1a04dc6-b805-4802-b120-9d62f8f14a17") - ) - (pad "4" smd roundrect - (at 1.255 0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "Net-(U3-VFB)") - (pinfunction "VFB_4") - (pintype "input") - (solder_mask_margin 0.102) - (uuid "5005a7ed-04db-4225-adf1-9a6e04ea0473") - ) - (pad "5" smd roundrect - (at 1.255 0) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "/Power/12V_EXI") - (pinfunction "EN_5") - (pintype "input") - (solder_mask_margin 0.102) - (uuid "ece7407a-1664-45c9-814c-f38614690fe1") - ) - (pad "6" smd roundrect - (at 1.255 -0.95) - (size 1.25 0.59) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.125) - (net "Net-(U3-VBST)") - (pinfunction "VBST_6") - (pintype "input") - (solder_mask_margin 0.102) - (uuid "68fc9d9a-2760-4975-a130-72acf14be92d") - ) - (embedded_fonts no) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "18387136-61a5-47eb-9453-b61209d12cd8") - (at 163.0325 82.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C54" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "9cda29c2-14e5-41a3-ab27-9fd433f29b1c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "6e02de99-a646-4d5d-932e-1e789fa9e65c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9ac44590-9eb8-4abb-b109-dc72ab356ce2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8da954cc-ed81-4d08-b455-134241179204") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6c92b82d-0ac2-49da-9540-2aabd6feaefe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "2ebe4620-96e7-47cb-ad55-2c67391786d8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "40de1b1d-d99d-49b0-9200-eed53af3e0cf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/fb9de64d-1cb0-4a56-9731-147f67552985") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bf251061-19dd-4853-84fc-2120896777b6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "906302d5-e57e-42fe-8f76-1a273494eda0") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a1097b06-c063-4fa3-9aa6-9dd106e7ffe8") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "da428313-1370-487a-b14f-03da070edcfb") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f6c29d07-a63b-4ba7-be31-d51522427d4f") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "4426bd93-4914-4991-bd75-8bdb9838acc4") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "24ba53bb-512a-47ab-bcd7-0e02506932b6") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1985dd31-8465-409e-bb91-80505a030b45") - (at 168.0325 88.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C47" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "400ce3bb-8bce-4d58-b308-e2bfbd6200fb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "c8cd4f9f-1b61-47a6-99c1-471afc2fba08") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "abc8f753-cc18-45b0-b495-fe4e598d267b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "079a2b06-dec0-49ee-9631-cb13148fdbb8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "07542b42-3600-4c37-b68d-44cd2cd70352") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "361f51a9-b746-4be9-9880-2dc28f43ec2e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6dc0007e-5926-42df-a22f-ffe78e11d417") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/6f1678d1-05c7-42c0-a0a5-eb125f5a6c53") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46c7230e-835e-464d-a629-54a5bea39368") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4f82855e-21e7-49ae-adb8-ce8c2ff282ae") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a43966ad-3d23-4d86-8a76-9853060ee536") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d42538ac-d2c8-46d1-bb55-eb3b9d993316") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f3576ae7-c585-43f7-9497-052cc1ac69ef") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "45f08b39-4704-4c3a-8dbf-70a063912784") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "18cc0c90-5ea7-43cf-9bc9-e699dfebcb09") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1a46d491-0abb-4f40-b8ef-8dadec8c3368") - (at 168.0325 89.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C38" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "0d563637-b54e-4635-b5b6-4efc04b48d03") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "12c1eb29-c287-4aa5-89a8-95f947601094") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9610c290-ec59-4fe8-a0a9-5c399ee81a15") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "aa267e5e-4b98-4fcb-a7ed-5c7552609ffb") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "24450d57-9e33-4fb7-b18b-b654fe916f80") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9745a4b3-66b7-4e07-9f6b-ab38da40e249") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "207bc65d-9884-47a8-bca7-06342b64b4fa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/4f7d5035-f167-47a3-afbd-9e69d8524e27") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b5ad4bd4-03c4-4302-bc22-323aaff5f935") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a3793fcc-b1d0-491d-ae0a-b59284b6f447") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "3379ce9b-2434-4f20-9fa4-a20b0c3eab87") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "fc8fcf04-5ca8-4c70-8bbc-2396fc24aca5") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "cb6ffa5c-e715-441e-90c3-b35e10d411d5") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "8d543866-9e21-4363-974f-25b14688add8") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "5917d075-6ac7-4cc4-b55d-048714f72486") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1c2098ca-2dab-4fe1-b160-61f4020fbb28") - (at 168.0325 94.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C41" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "fb7dc97b-6f89-45e5-a5c2-7f89270e8857") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "bdd28d69-323f-4c13-98df-e996fb3b945c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "65de4fe0-14a6-4c4c-a87b-7a14b5116564") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6327330d-06ea-49fe-a863-db0fe13a7290") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "cf152032-7928-4b9f-898d-915bf99c31cc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d0176cbf-f5c8-4e5d-b90c-e211de53ec23") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "54d9f5c9-94c8-4c20-b3d4-e89bc56f8cb3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/1b0091f4-0628-436b-b8e4-f629b2ec0d83") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "140b8fc9-aed4-4efe-a381-9642f4759d00") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "93ff22a9-2a3d-4171-9c0f-1736f8c0fd3d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ed8ccdfd-3ab8-43e3-9353-99cb65bf951c") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "27e55d7a-7bb4-4d47-8d54-2728f8999e63") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "9f8e5d78-6bea-403f-a544-cd6953f97985") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "af2b99b8-3f16-4330-9aee-f50dfc476f62") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "6ca67925-10bb-417b-8a3d-6c369ce8a2b2") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "1e94c839-4e3b-4ef6-a783-90b6a9e0e703") - (at 71.2375 94.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C2" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "e5cbad2e-4f86-43b9-ba03-f78ddb1abd3c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "59ca1591-a0c6-4ca3-9d5d-12e6ac86ba92") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "28fe43d2-0679-40d8-9d46-7451f83812b2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5c791911-ebba-445c-b195-961fb2df347b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "3207902f-35cd-4ef9-be96-fd75de793e93") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2a46e562-c071-472e-8e7b-886092f5ca74") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dc8cb9e2-b244-495c-89b8-53df15408610") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "616c72f0-9dab-44de-9338-c37014461916") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "74380613-b28a-489f-8162-ac111983218a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "887a603a-bc95-4322-9bbc-43e7c48c8900") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/5V") - (pintype "passive") - (uuid "98c74965-ce20-4e9c-9352-fba6f4f34d15") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "ba9f276b-c14f-4788-8875-771b76b8fd5c") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "1ffb36af-aa16-4b33-aacb-1f499ded280d") - (at 192.4025 82.9) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C14" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "1b3b1834-b466-4197-823f-da4b797f870b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "975efd24-3ad8-4254-96f9-ac6bfafd8cd6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d206403d-6ea6-4d41-9056-c2cb0142b062") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c49626ab-b463-44e8-b512-b70e945550c7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "b523e927-ca60-4361-b4dc-0f4fff5da6ab") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "06ed196b-1ce8-48c2-b1c9-863fc1d73411") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "18ed65f1-18e2-422a-b542-5ef6b0702f52") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c042288a-20e3-4624-9f2a-65dd79c19569") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "278da63b-2aee-4840-b5b3-6dd3ed125620") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f1832d26-371b-4e5a-83ba-ba7549825c2f") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "66309a50-1833-4f19-990b-8817341b3ca6") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ca792882-a0d5-4e3d-a387-ff826a5340b4") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "01c5a7a1-c55b-4530-8aa2-42a87e86c1e5") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "c107a84c-f02e-40f7-b7a4-88203db18112") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "91cdac53-d4ab-45c5-8f08-84d7cdc66d94") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Inductor_SMD:L_Changjiang_FNR4018S" - (layer "F.Cu") - (uuid "2371072c-73ae-47ff-bc0a-cd38d18feea7") - (at 236.525 59.9275 180) - (descr "Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf)") - (tags "wirewound power shielded") - (property "Reference" "L1" - (at 0 -2.95 180) - (layer "F.SilkS") - (uuid "ccd76c36-f13f-4a99-9381-04372db481f9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "2.2uH" - (at 0 2.95 180) - (layer "F.Fab") - (uuid "0bb06be0-c8a4-474f-a8fc-4fb3ceab018c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "ac71d84b-11d5-42a5-85b6-c0376a3d4162") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "668bad38-fbaf-48e8-b293-20e5629ac371") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "inductor/SMD" - (at 0 0 180) - (layer "F.SilkS") - (hide yes) - (uuid "28756305-af7f-4257-b38c-d012f9d87ced") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/2c31491d-3762-4175-b904-210bd0b09ed2") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 2.11 2.11) - (end -2.11 2.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7f032e21-5fa1-4efe-81e1-b9e3aaaa8744") - ) - (fp_line - (start -2.11 -2.11) - (end 2.11 -2.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "44c87ec1-dec2-4ce0-ac0a-53d262828cc6") - ) - (fp_line - (start 2.3 2.1) - (end 2.25 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6f997148-17c3-4690-aae2-c43db1846d2a") - ) - (fp_line - (start 2.3 -2.1) - (end 2.3 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "3363b4db-32fe-447f-8c0c-7e0ba0fd7ec3") - ) - (fp_line - (start 2.25 2.25) - (end -2.25 2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "92cd5b64-5364-485a-9a8c-6ae0a89d2f08") - ) - (fp_line - (start 2.25 2.1) - (end 2.25 2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "005f216e-d0c6-4fad-9b9c-fdc740c50fb4") - ) - (fp_line - (start 2.25 -2.1) - (end 2.3 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5fe2068f-83f3-4595-a4df-9c6bce9390c2") - ) - (fp_line - (start 2.25 -2.25) - (end 2.25 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "86998acc-255d-4477-9e30-747dd1c68e27") - ) - (fp_line - (start -2.25 2.25) - (end -2.25 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d905864c-07ae-4372-bb61-886493aad0b3") - ) - (fp_line - (start -2.25 2.1) - (end -2.3 2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "996ffd58-77ea-4afa-bced-c890d2cd8cfe") - ) - (fp_line - (start -2.25 -2.1) - (end -2.25 -2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "317f7900-4095-4ef5-8468-fb681c6443a7") - ) - (fp_line - (start -2.25 -2.25) - (end 2.25 -2.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e167c986-f838-4eea-a063-75bf318d75db") - ) - (fp_line - (start -2.3 2.1) - (end -2.3 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "fcd374e8-a639-4a26-8d6c-2eb789c22bbb") - ) - (fp_line - (start -2.3 -2.1) - (end -2.25 -2.1) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5f143363-49e8-465a-8df0-002353087a5d") - ) - (fp_rect - (start -2 -2) - (end 2 2) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a1770bae-17f9-4104-91db-004d43d93678") - ) - (fp_text user "${REFERENCE}" - (at 0 0 180) - (layer "F.Fab") - (uuid "6c05959d-b558-4c6e-9310-16e48784b00a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5 0 180) - (size 1.1 3.7) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.227273) - (net "/Power/SWN") - (pinfunction "1_1") - (pintype "passive") - (uuid "bf3fc92f-d972-4034-a023-717beb8707f2") - ) - (pad "2" smd roundrect - (at 1.5 0 180) - (size 1.1 3.7) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.227273) - (net "/Power/GC_3V3") - (pinfunction "2_2") - (pintype "passive") - (uuid "2f72ebfb-59d6-4034-9bf2-464edd318b94") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_Changjiang_FNR4018S.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "2683d76a-303d-4a7f-9922-3313f60e368f") - (at 88.2375 107.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C48" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "1bf6fde2-5c55-49fb-9515-a381d4a4a962") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "1c974e55-e324-4f21-b6bc-f7f3ba3d13e9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "af7a68f2-4a0e-41b5-96fe-b6da5362b6f4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "33b81ffb-ac9d-403e-85f8-8100364b2cca") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "134550df-0006-49ea-8f39-00c7202cb935") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f3b4b98b-4c50-49e0-b52b-6941ac449712") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "2fa5cbde-1b35-4ecc-9020-cad0012c606c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/2d6c9bb8-a909-4391-8586-56fae18c5d19") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4888959e-ccde-405a-9523-291b4f3b2560") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bac3b67a-d9fc-473e-a94e-e54f257c97de") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "fb09e648-eb2c-40a9-980e-67fc0437aaaf") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "2fc57774-b762-4e74-ba92-6aef6a0f1419") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "2e02a717-e3b6-488f-9c22-40195999eef7") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "cfb12b64-7024-49b8-8bfc-c2bf9e044d5f") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "b06a084b-bb68-402a-988e-5dd73d309e08") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "27c3518c-0fd1-4608-a6bf-8da22ce4d478") - (at 83.2375 109.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C46" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "5318cc43-b05f-4b28-aa7b-4e33a08993f7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "6eb0cdbc-266c-4bd9-a392-8f5047e88797") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b385eabc-354d-45ce-8938-0ad4d1f37fda") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "50449700-27cc-44ef-a1f9-ae419665c06f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "fe140552-7a43-4453-b411-3eb771a321b9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ede0b73a-9001-4d3e-b8c6-38d572c15572") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "03bcd20c-13cd-4ed7-a28a-39373b933635") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/a0f9d5a2-4857-4091-bc6b-c353047234c9") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c4a5de5b-0a09-4d52-a0bb-53422dbc7262") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2631f737-d7dc-4dd9-b268-a272d514bc1d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f40b553e-1618-4968-b720-102fbe89d3c5") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d5542a2f-d5b7-4c03-8169-2d1227ee0bf4") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "97fdc80c-9487-4297-84ac-3ff0bb890411") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pintype "passive") - (uuid "a4fa1ed4-467f-442f-a8fe-a7e6289bd4bb") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "8f7347ed-d535-4106-a38c-b29ecca5b025") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "29431a07-3493-46da-9baf-565da34bc43e") - (at 78.2375 88.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C4" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "5482fa20-2607-4190-b0d3-fbf8a472bd61") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "40e19337-8281-4829-bd0a-0fb68891010d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "078b4163-1f29-4477-a423-9b64503976e2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "75cd4457-4c91-437e-93fe-2a1843ac4940") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "34aba00b-b877-4e32-81d7-6781c4d0d51a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dd02bfec-de83-4961-9b36-2b6a254cfa81") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7362b0a3-ddba-4361-bc43-8187808aec20") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "1f1b36c0-d92c-4dd7-863d-104785d7249c") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "81e5aaef-e2ab-4623-886b-7afecb2e9c29") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "887e49a2-de9d-4d61-a61c-c0dbbb4b7acb") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/USB_3V3") - (pintype "passive") - (uuid "117d37e1-1a79-4649-bf17-430f8fc5f245") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "6c91c568-91a8-4f92-bdc1-3eb3b0d08b85") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-6" - (layer "F.Cu") - (uuid "297087d7-297e-4acb-bfb1-314d336fa245") - (at 81.77 98.38 180) - (descr "SOT, 6 Pin (JEDEC MO-178 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U12" - (at 0 -2.4 0) - (layer "F.SilkS") - (uuid "d4fd8368-e475-40a9-8bc1-4b6fa6788f09") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "TPS22810DBV" - (at 0 2.4 0) - (layer "F.Fab") - (uuid "a629b23e-cf15-42f1-8030-2778c63335a9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7f1cdc48-3713-4b2a-a2e5-acb5e5a898d4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7481826a-9652-41a3-89d8-235fdac9873a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "a2eec779-94dd-4b07-b208-dbfc06d8ce6c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/14b6366d-fad4-4f08-9680-8b51b64ae65b") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "6" "5" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "df9e8d6f-172c-4ee7-bcfe-68792ecbdf00") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "5e6666cd-b994-42c5-ba33-db527ab0f97f") - ) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dfdc5b18-d4d1-4109-a936-7ed570f57b58") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2890ad46-3afe-4a54-af30-08e86ab170d0") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1b75f609-3ff5-4caf-8cba-5ea7522ef36d") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cf370a80-f0d7-4377-b1b8-fa4c0931bce7") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "bd706280-3c6a-465a-9300-f101e0a2c50a") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c95031d5-39b8-4f65-a38c-90123f924531") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "345e2950-dab4-46c6-953d-1f7d6da3ac40") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "23d88f6d-140d-4cf7-a035-b7d6e830456e") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "36f00780-ba11-4dd5-99f2-625b211232b5") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "57c5eb0b-ba18-460c-94e5-700bccb31c30") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "184886ab-979a-4ff5-8e71-4c855749cc51") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf2a998c-8fae-4fad-806c-17d6d6bdd905") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6c248dc5-ed47-45e9-b591-08a6d25362c3") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8a7cd5d0-8457-4486-a7d0-7d9709543770") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8b3758ef-57cc-45b3-9ad8-979c932155d5") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ffd8ad42-b3d4-4026-b060-0de538528060") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c411e0c7-6752-454a-88db-a31bf1c76c20") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0ec3980b-0bd2-40ec-8f2a-77006b6617b6") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "4d52caca-f048-4723-a052-7ee4aade6a89") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "1d07deb3-cdea-4bd9-b41a-7920e909e2ba") - ) - (pad "2" smd roundrect - (at -1.1375 0 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "5baa042e-b272-4535-a9e2-3d75e402b66e") - ) - (pad "3" smd roundrect - (at -1.1375 0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/GC_ON") - (pinfunction "EN/UVLO_3") - (pintype "input") - (uuid "7234d640-82fc-4325-ba1f-3e1afb3f5a2f") - ) - (pad "4" smd roundrect - (at 1.1375 0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U12-CT-Pad4)") - (pinfunction "CT_4") - (pintype "output+no_connect") - (uuid "1d5c00fe-0f52-4f54-84a2-6770916d9d58") - ) - (pad "5" smd roundrect - (at 1.1375 0 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U12-QOD-Pad5)") - (pinfunction "QOD_5") - (pintype "open_collector+no_connect") - (uuid "7cde1cbb-0b26-4ad9-9e58-2d7bfeb8af48") - ) - (pad "6" smd roundrect - (at 1.1375 -0.95 180) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "VOUT_6") - (pintype "power_out") - (uuid "c68afff5-9b75-4857-b059-a01048256d16") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "2a5ccf93-941c-4c6c-a1e6-e153fd963c45") - (at 168.0325 86.8) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R10" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "18a2c11f-96a2-40ca-95da-d84e8e369fa6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "f4af5f6f-38b5-4fb4-b392-164faa8988fb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7c80e22c-aa6d-4d47-930f-b99a695d3778") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "bb523d44-797e-451d-9d78-9421086f5869") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6d54a1bc-e6a4-4cc4-bda6-85faa32dd80e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "cab71a75-b698-4f5f-8e3f-ea2b40c59397") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c8b06b44-7310-4191-8477-73fae983e5e1") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d97db0a1-0303-42f4-9a26-675d64fa34ad") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "105ef5d9-3cb7-417c-9eb8-0dbf8c34cf0b") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "96f607ac-cb76-4f39-85f4-699386a0cdd7") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "41e9f49f-0511-4364-9535-8ead035361f3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "5a717e08-e0f5-47af-a9b6-794343177c9f") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "7061bb98-8bcf-45ee-b8bf-8c232037ef47") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-REF)") - (pintype "passive") - (uuid "5ca8ed43-b693-43c2-8168-1b7c7ae6ba51") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:CP_Elec_6.3x7.7" - (layer "F.Cu") - (uuid "2f2d2a2b-1f01-4378-939e-ca124fda8b8d") - (at 203.76 67.71) - (descr "SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm") - (tags "capacitor electrolytic") - (property "Reference" "C60" - (at 0 -4.35 0) - (layer "F.SilkS") - (uuid "c4716c8c-9f53-45b3-a34e-310eb57456d6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100uF" - (at 0 4.35 0) - (layer "F.Fab") - (uuid "6577bcaa-f482-4204-9b9f-723b10a7d048") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "37c02abd-f58c-43ca-a6a8-5718f5788e11") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "68355537-1578-412f-9ce6-0ce3cf1aa8a8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "capacitor/SMD/elec_round_polarized" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4c12efbe-8af7-4560-a20c-f984f1eaf136") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "Aluminum" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5a952cca-359c-4973-b6f8-b3dcfb5cf509") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "25V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6b4bc850-1ba1-4f92-aaae-7b8fcf9dae3a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "CP_*") - (path "/1b071f68-b4ea-469c-942f-de06380c9077/11c5a587-7b43-454b-8483-cecc6ffb0da5") - (sheetname "/exi/") - (sheetfile "exi.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -4.4375 -1.8475) - (end -3.65 -1.8475) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0cecf6e4-0ed1-494b-8202-11d954615e5d") - ) - (fp_line - (start -4.04375 -2.24125) - (end -4.04375 -1.45375) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d2263f77-9b13-4c51-810a-f966182c0bdc") - ) - (fp_line - (start -3.41 -2.345563) - (end -3.41 -1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ba93305f-f4d8-4d6d-946f-761becc900a3") - ) - (fp_line - (start -3.41 -2.345563) - (end -2.345563 -3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e3a32a03-623b-4017-810f-e2fd953287ab") - ) - (fp_line - (start -3.41 2.345563) - (end -3.41 1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f9e6e9d8-3c6f-47e7-b232-6f38a054ac74") - ) - (fp_line - (start -3.41 2.345563) - (end -2.345563 3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2a22139b-056a-4431-9e7b-72306e99b6c1") - ) - (fp_line - (start -2.345563 -3.41) - (end 3.41 -3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "86c6e830-ebdd-4f7a-bdff-93e0322b6824") - ) - (fp_line - (start -2.345563 3.41) - (end 3.41 3.41) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d6617d81-a883-4e55-ae11-587071d6587b") - ) - (fp_line - (start 3.41 -3.41) - (end 3.41 -1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "acda3028-ceed-4704-949e-bd5de2831b93") - ) - (fp_line - (start 3.41 3.41) - (end 3.41 1.06) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "64c28d4d-6d87-4c7f-94ae-85ce49a2785b") - ) - (fp_line - (start -4.7 -1.05) - (end -4.7 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f2800f91-8bca-4d5c-9ed6-df55d404b098") - ) - (fp_line - (start -4.7 1.05) - (end -3.55 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf96187b-2005-4c8b-abd6-48e5ea71f1b3") - ) - (fp_line - (start -3.55 -2.4) - (end -3.55 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "04efa6b6-df87-4953-8315-0cb48f187f4d") - ) - (fp_line - (start -3.55 -2.4) - (end -2.4 -3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b9d8bf19-f1c9-4fc6-b088-d20fd961e6dc") - ) - (fp_line - (start -3.55 -1.05) - (end -4.7 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d016184b-7993-4e67-8c44-95808feda68a") - ) - (fp_line - (start -3.55 1.05) - (end -3.55 2.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a4b5d702-39b3-4279-acb7-864613353b16") - ) - (fp_line - (start -3.55 2.4) - (end -2.4 3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7d616806-9c0f-4aea-9a7e-3de5a182670c") - ) - (fp_line - (start -2.4 -3.55) - (end 3.55 -3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e9ad1600-d6ac-4eec-84fb-60754ac5d578") - ) - (fp_line - (start -2.4 3.55) - (end 3.55 3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "45d15478-b164-404b-aa9a-35971580645f") - ) - (fp_line - (start 3.55 -3.55) - (end 3.55 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9880ed6f-e029-4796-9356-66a04bb464ea") - ) - (fp_line - (start 3.55 -1.05) - (end 4.7 -1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dba8ee9a-7610-4690-9086-4a65aee3b72d") - ) - (fp_line - (start 3.55 1.05) - (end 3.55 3.55) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "032d4401-651d-4dae-acd9-a5897d69632d") - ) - (fp_line - (start 4.7 -1.05) - (end 4.7 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "35ec88c7-2b5f-495e-87c0-2a21703611f0") - ) - (fp_line - (start 4.7 1.05) - (end 3.55 1.05) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "fc9d2522-c6d1-4d32-a53c-76cbb6f14b17") - ) - (fp_line - (start -3.3 -2.3) - (end -3.3 2.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "bbd47c8b-50e3-464b-9b96-7c312166ba06") - ) - (fp_line - (start -3.3 -2.3) - (end -2.3 -3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "dc87f9d8-1495-4150-ab78-26ffa1e26ad5") - ) - (fp_line - (start -3.3 2.3) - (end -2.3 3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "2bfb5c5e-7ec0-47dd-a9b6-6d5a2a0c15c8") - ) - (fp_line - (start -2.704838 -1.33) - (end -2.074838 -1.33) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "f87fc1d0-5b84-4b49-841c-cc40ffa30095") - ) - (fp_line - (start -2.389838 -1.645) - (end -2.389838 -1.015) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "c91efb6c-373b-4478-a714-b133d104e2e8") - ) - (fp_line - (start -2.3 -3.3) - (end 3.3 -3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "477170b2-f94e-466f-97bf-5de28c44c152") - ) - (fp_line - (start -2.3 3.3) - (end 3.3 3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "280f2351-6b5c-4539-9a34-446a24aa7b68") - ) - (fp_line - (start 3.3 -3.3) - (end 3.3 3.3) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "08932a9b-56a4-459c-882c-7111eaf8674a") - ) - (fp_circle - (center 0 0) - (end 3.15 0) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "824ab9a6-38b5-40b6-8805-d937cb8ad552") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a0453b90-a0c9-43cd-a87b-210dd218c2f2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -2.7 0) - (size 3.5 1.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.15625) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "013ac8a4-2e8e-4fda-a494-3a1db37e7fca") - ) - (pad "2" smd roundrect - (at 2.7 0) - (size 3.5 1.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.15625) - (net "GND") - (pintype "passive") - (uuid "81f433e7-867f-48fd-84d8-4eff9ad145e3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/CP_Elec_6.3x7.7.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_QFP:LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm" - (layer "F.Cu") - (uuid "35059d9a-7553-4f0b-98a3-a470b2935ec7") - (at 151.91 87.86 90) - (descr "LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf)") - (tags "LQFP QFP") - (property "Reference" "U8" - (at 0 -7.4 90) - (layer "F.SilkS") - (uuid "b191f7ef-be7a-439f-ac41-f485ec5ffdc6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "FT2232HL" - (at 0 7.4 90) - (layer "F.Fab") - (uuid "b07c6786-85f6-4e96-80c1-8343eafe1f13") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "66ce10a5-3257-44a8-8444-ee9d92e6a2dd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "07122f0c-aa17-491d-98e2-9c9f80746347") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "65d9c53a-3892-4c94-9a61-0f25de12e8ca") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "LQFP*10x10mm*P0.5mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/d1b9caea-74c5-4464-b810-6fbc52cf0d32") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "50" "49" "7" "8" "6" "14" "63" "62" "61" "2" "3" "13" "10" "4" - "9" "1" "5" "12" "11" "37" "15" "64" "25" "35" "20" "47" "31" "51" "42" - "56" "16" "17" "18" "19" "21" "22" "23" "24" "26" "27" "28" "29" "30" - "32" "33" "34" "38" "39" "40" "41" "43" "44" "45" "46" "48" "52" "53" - "54" "55" "57" "58" "59" "60" "36" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 5.11 -5.11) - (end 5.11 -4.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "75950dc6-bcb1-47d6-a380-9e66399095b6") - ) - (fp_line - (start 4.16 -5.11) - (end 5.11 -5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "96a9861e-894e-4f4d-96f7-e20f87bd98d5") - ) - (fp_line - (start -5.11 -5.11) - (end -4.16 -5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a7b6b6cb-0f22-448c-9574-afff3b345b18") - ) - (fp_line - (start -5.11 -4.16) - (end -5.11 -5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eba0c97c-6d24-42dd-96d6-8b9c440e5395") - ) - (fp_line - (start 5.11 4.16) - (end 5.11 5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a61cf6b8-4993-4b00-a375-6513a1676181") - ) - (fp_line - (start 5.11 5.11) - (end 4.16 5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ac66d53c-8251-4bf4-a212-28eaa09f3642") - ) - (fp_line - (start -4.16 5.11) - (end -5.11 5.11) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c22752fe-2368-4cb9-b804-5138a4840d2c") - ) - (fp_line - (start -5.11 5.11) - (end -5.11 4.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f70948ef-371b-4e53-8e0b-08a2adeb6506") - ) - (fp_poly - (pts - (xy -5.75 -4.16) (xy -6.09 -4.63) (xy -5.41 -4.63) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "8c7df22f-0bb7-44f2-8389-6756868d0cdb") - ) - (fp_line - (start 4.15 -6.7) - (end 4.15 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7b2e0487-814c-4a2b-a868-645abd453b39") - ) - (fp_line - (start -4.15 -6.7) - (end 4.15 -6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "59d14a37-a929-488d-b2c8-cc9136489943") - ) - (fp_line - (start 5.25 -5.25) - (end 5.25 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "96524ba7-7cab-4c0b-a623-670beea7dd90") - ) - (fp_line - (start 4.15 -5.25) - (end 5.25 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2ccfe64b-5924-4b38-9680-575a974b9c5c") - ) - (fp_line - (start -4.15 -5.25) - (end -4.15 -6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a309dd7f-0b30-412f-9808-946971437472") - ) - (fp_line - (start -5.25 -5.25) - (end -4.15 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4071f45f-e475-44a0-9225-882f9fd8130b") - ) - (fp_line - (start 6.7 -4.15) - (end 6.7 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dfe343c1-0604-49b1-8790-3e182da98e02") - ) - (fp_line - (start 5.25 -4.15) - (end 6.7 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "38e1c255-874b-4f05-8f4c-04f315c3237a") - ) - (fp_line - (start -5.25 -4.15) - (end -5.25 -5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bcd2f846-9df8-49c7-9612-29a86f6a2529") - ) - (fp_line - (start -6.7 -4.15) - (end -5.25 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b7c11902-a273-457e-9d18-4146f1c69c10") - ) - (fp_line - (start 6.7 4.15) - (end 5.25 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "efe8fac2-d226-467b-87b6-38d4981fe428") - ) - (fp_line - (start 5.25 4.15) - (end 5.25 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ad0d3601-03cc-498a-8785-36a8c77366fe") - ) - (fp_line - (start -5.25 4.15) - (end -6.7 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f08f8cdc-8927-4615-b73d-1e3bf359a1f0") - ) - (fp_line - (start -6.7 4.15) - (end -6.7 -4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1c4a690e-ab05-478c-a295-c7f6ecb67167") - ) - (fp_line - (start 5.25 5.25) - (end 4.15 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9810ba7f-be7d-4b42-a0a7-dd0055037889") - ) - (fp_line - (start 4.15 5.25) - (end 4.15 6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bae9058b-08b7-43d9-8453-44aa7878ae85") - ) - (fp_line - (start -4.15 5.25) - (end -5.25 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "765535c7-4356-4620-8cd5-408dcdb4f7f3") - ) - (fp_line - (start -5.25 5.25) - (end -5.25 4.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cd90c92d-9c1e-4cc0-bf5f-fef16b321451") - ) - (fp_line - (start 4.15 6.7) - (end -4.15 6.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a0f429cc-8768-45cd-8b98-b1f8425a23ab") - ) - (fp_line - (start -4.15 6.7) - (end -4.15 5.25) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b2bab7a7-59ac-4da7-928a-64606339bcbf") - ) - (fp_poly - (pts - (xy -4 -5) (xy 5 -5) (xy 5 5) (xy -5 5) (xy -5 -4) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a2748875-f6a4-41dc-ab96-b496ff0eed50") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "d10a15a7-84b3-4eaf-ab22-11cf0675fa9f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" smd roundrect - (at -2 -2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "db2d48d1-f177-4026-97ef-48cea6ac3573") - ) - (pad "" smd roundrect - (at -2 -1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "494a4020-7b57-4ed2-8a45-86afac25bfc5") - ) - (pad "" smd roundrect - (at -2 0 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e1e7becd-2672-4f3f-975e-2f69abeac23f") - ) - (pad "" smd roundrect - (at -2 1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "2130ccfc-4b6d-4528-9573-d0c6b6449870") - ) - (pad "" smd roundrect - (at -2 2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "0758b787-8f21-4176-a55e-484d0c0027aa") - ) - (pad "" smd roundrect - (at -1 -2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "6f48af39-b389-48e6-aa8b-4438a62d5784") - ) - (pad "" smd roundrect - (at -1 -1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "8d69aa02-fadf-4538-9a13-339dc98583ab") - ) - (pad "" smd roundrect - (at -1 0 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "accd75ce-80d2-4d46-b034-34a5fb9182f2") - ) - (pad "" smd roundrect - (at -1 1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "a36141ae-4b59-41dd-ba6f-da8fb87524f3") - ) - (pad "" smd roundrect - (at -1 2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "046cafad-81a0-4378-8421-06834afb23d9") - ) - (pad "" smd roundrect - (at 0 -2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3d1a3435-185e-4a8c-94e7-9e05ebdc4fb4") - ) - (pad "" smd roundrect - (at 0 -1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "2078a1db-7144-4761-ae0d-3f1245837683") - ) - (pad "" smd roundrect - (at 0 0 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "1fe1bcd9-d2ef-4367-b616-fb5e093f0da8") - ) - (pad "" smd roundrect - (at 0 1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "ad276b9c-207d-43e5-967f-db34d9a4e3c6") - ) - (pad "" smd roundrect - (at 0 2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "b674240b-f422-45f0-841c-480f52306cb6") - ) - (pad "" smd roundrect - (at 1 -2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "88d38414-51f4-4fce-8f84-e78e4be2b0af") - ) - (pad "" smd roundrect - (at 1 -1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e626a7f1-8e3a-4b30-9d4f-b638baa4eac4") - ) - (pad "" smd roundrect - (at 1 0 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e28f5301-c416-4a07-87d5-55ab55640510") - ) - (pad "" smd roundrect - (at 1 1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "675804a1-6a0d-4490-889b-002c852012dd") - ) - (pad "" smd roundrect - (at 1 2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3ea5c9f7-f4b7-4bf7-aade-9338437d11ee") - ) - (pad "" smd roundrect - (at 2 -2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "6cfde6e7-97fa-4895-9d88-e74bb834c096") - ) - (pad "" smd roundrect - (at 2 -1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e7799405-36a5-4c90-93e3-adebe10affe0") - ) - (pad "" smd roundrect - (at 2 0 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "85198cc0-419e-443f-a546-710c1aa38fd2") - ) - (pad "" smd roundrect - (at 2 1 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "77a318fd-e776-4805-afc1-07b86c02a179") - ) - (pad "" smd roundrect - (at 2 2 90) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "311080df-3326-4fca-b905-0e8c28df18f1") - ) - (pad "1" smd roundrect - (at -5.675 -3.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_1") - (pintype "power_in") - (uuid "5eae1ad3-99d4-4498-b1c7-3fb1b15c4b38") - ) - (pad "2" smd roundrect - (at -5.675 -3.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCI)") - (pinfunction "OSCI_2") - (pintype "input") - (uuid "ea67379a-d447-4e46-97e1-680e7c7299cd") - ) - (pad "3" smd roundrect - (at -5.675 -2.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCO)") - (pinfunction "OSCO_3") - (pintype "output") - (uuid "f3c1a7b2-4fe9-4e2a-a73f-ce4ca9034eee") - ) - (pad "4" smd roundrect - (at -5.675 -2.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPHY)") - (pinfunction "VPHY_4") - (pintype "power_in") - (uuid "1424f044-e510-405d-945c-bfc5a0ff0cfb") - ) - (pad "5" smd roundrect - (at -5.675 -1.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_5") - (pintype "power_in") - (uuid "47314542-a9fb-4384-bb51-2d7be918d0ee") - ) - (pad "6" smd roundrect - (at -5.675 -1.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-REF)") - (pinfunction "REF_6") - (pintype "output") - (uuid "2412c42b-d586-469f-a17c-0aa8ce45a1fd") - ) - (pad "7" smd roundrect - (at -5.675 -0.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DN") - (pinfunction "DM_7") - (pintype "bidirectional") - (uuid "75d7b157-297a-4bbf-8014-4ea787226711") - ) - (pad "8" smd roundrect - (at -5.675 -0.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DP") - (pinfunction "DP_8") - (pintype "bidirectional") - (uuid "d26bf912-0e95-4b0a-ade9-6c741b4f5c4b") - ) - (pad "9" smd roundrect - (at -5.675 0.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPLL)") - (pinfunction "VPLL_9") - (pintype "input") - (uuid "7f40ca0f-5a05-4bff-b1e9-7e0a96acdaee") - ) - (pad "10" smd roundrect - (at -5.675 0.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "AGND_10") - (pintype "power_in") - (uuid "e512c402-b7e5-45cc-b0a2-e3d3ce5df9a5") - ) - (pad "11" smd roundrect - (at -5.675 1.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_11") - (pintype "power_in") - (uuid "3526c6d2-b302-45e7-9f65-cb3ece364bed") - ) - (pad "12" smd roundrect - (at -5.675 1.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VCORE_12") - (pintype "power_in") - (uuid "a65f9645-8c38-4825-a3ed-2f07624059ef") - ) - (pad "13" smd roundrect - (at -5.675 2.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "TEST_13") - (pintype "input") - (uuid "a2d568c6-8d25-46d8-8120-10543b56edcf") - ) - (pad "14" smd roundrect - (at -5.675 2.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-~{RESET})") - (pinfunction "~{RESET}_14") - (pintype "input") - (uuid "ad8c8962-a82c-4225-85b2-c5186b8e1bdc") - ) - (pad "15" smd roundrect - (at -5.675 3.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_15") - (pintype "power_in") - (uuid "2f519dbb-31a1-49fa-9eed-f55ae3905dce") - ) - (pad "16" smd roundrect - (at -5.675 3.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_SCK") - (pinfunction "ADBUS0_16") - (pintype "bidirectional") - (uuid "f9624793-2b96-4d79-a081-4b3657132c04") - ) - (pad "17" smd roundrect - (at -3.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MOSI") - (pinfunction "ADBUS1_17") - (pintype "bidirectional") - (uuid "e5fa158d-00f7-4a46-a480-c31a415a57c5") - ) - (pad "18" smd roundrect - (at -3.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MISO") - (pinfunction "ADBUS2_18") - (pintype "bidirectional") - (uuid "96f55f0f-441f-4e0f-9dfd-bdbecb709a62") - ) - (pad "19" smd roundrect - (at -2.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_CS") - (pinfunction "ADBUS3_19") - (pintype "bidirectional") - (uuid "0cfb1455-3a78-4822-9354-11d40f55004c") - ) - (pad "20" smd roundrect - (at -2.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_20") - (pintype "power_in") - (uuid "9d7e933c-803f-4d7e-9c80-44c3637c191f") - ) - (pad "21" smd roundrect - (at -1.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS4-Pad21)") - (pinfunction "ADBUS4_21") - (pintype "bidirectional+no_connect") - (uuid "c098ed01-62cd-46a4-a96b-eddc862dabe0") - ) - (pad "22" smd roundrect - (at -1.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS5-Pad22)") - (pinfunction "ADBUS5_22") - (pintype "bidirectional+no_connect") - (uuid "e20c2302-6773-4e11-a980-8052a121bab0") - ) - (pad "23" smd roundrect - (at -0.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS6-Pad23)") - (pinfunction "ADBUS6_23") - (pintype "bidirectional+no_connect") - (uuid "63f45bd9-5dd2-4fec-95e2-e5d904496cf4") - ) - (pad "24" smd roundrect - (at -0.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ADBUS7-Pad24)") - (pinfunction "ADBUS7_24") - (pintype "bidirectional+no_connect") - (uuid "6bb8f5cd-8686-46ec-a6f0-1e22372db591") - ) - (pad "25" smd roundrect - (at 0.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_25") - (pintype "power_in") - (uuid "704f673c-6ea2-4a91-95a3-ae253b73a8c8") - ) - (pad "26" smd roundrect - (at 0.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CRESET") - (pinfunction "ACBUS0_26") - (pintype "bidirectional") - (uuid "b06013f6-645a-4d8f-b71a-86a3de218db4") - ) - (pad "27" smd roundrect - (at 1.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CDONE") - (pinfunction "ACBUS1_27") - (pintype "bidirectional") - (uuid "75e0438b-7c41-488f-99d7-874cf04265d8") - ) - (pad "28" smd roundrect - (at 1.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS2-Pad28)") - (pinfunction "ACBUS2_28") - (pintype "bidirectional+no_connect") - (uuid "c252acb7-00b3-4539-a4eb-47c28f3d502c") - ) - (pad "29" smd roundrect - (at 2.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS3-Pad29)") - (pinfunction "ACBUS3_29") - (pintype "bidirectional+no_connect") - (uuid "bc63f175-85ec-4d53-b9bf-0f9906a5c417") - ) - (pad "30" smd roundrect - (at 2.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS4-Pad30)") - (pinfunction "ACBUS4_30") - (pintype "bidirectional+no_connect") - (uuid "0fbefe0d-70ab-424e-be33-ac45a8d777d6") - ) - (pad "31" smd roundrect - (at 3.25 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_31") - (pintype "power_in") - (uuid "e2aead27-d938-4ff5-8abf-255df18d01f8") - ) - (pad "32" smd roundrect - (at 3.75 5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS5-Pad32)") - (pinfunction "ACBUS5_32") - (pintype "bidirectional+no_connect") - (uuid "19d5d717-df9b-41d8-8f55-a4fc8d914f7c") - ) - (pad "33" smd roundrect - (at 5.675 3.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS6-Pad33)") - (pinfunction "ACBUS6_33") - (pintype "bidirectional+no_connect") - (uuid "047e83e3-ce77-4cc0-968e-5752114e107b") - ) - (pad "34" smd roundrect - (at 5.675 3.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-ACBUS7-Pad34)") - (pinfunction "ACBUS7_34") - (pintype "bidirectional+no_connect") - (uuid "f2087f21-7250-42fc-a3c6-34b4a7ed328f") - ) - (pad "35" smd roundrect - (at 5.675 2.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_35") - (pintype "power_in") - (uuid "f0745073-8dd7-4c0b-bebd-d87bb63c0f4f") - ) - (pad "36" smd roundrect - (at 5.675 2.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-~{SUSPEND}-Pad36)") - (pinfunction "~{SUSPEND}_36") - (pintype "output+no_connect") - (uuid "0824d93b-4805-43b3-ba0c-ab980af95bf7") - ) - (pad "37" smd roundrect - (at 5.675 1.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VCORE_37") - (pintype "power_in") - (uuid "e742f856-a3b5-4067-8e17-93dd669e5bc1") - ) - (pad "38" smd roundrect - (at 5.675 1.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_TXD") - (pinfunction "BDBUS0_38") - (pintype "bidirectional") - (uuid "011454c6-3262-4058-ba35-eabbf57bcbd5") - ) - (pad "39" smd roundrect - (at 5.675 0.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_RXD") - (pinfunction "BDBUS1_39") - (pintype "bidirectional") - (uuid "050375a3-21a5-4add-b1b6-9d2d1e9a5422") - ) - (pad "40" smd roundrect - (at 5.675 0.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS2-Pad40)") - (pinfunction "BDBUS2_40") - (pintype "bidirectional+no_connect") - (uuid "8f5ab02d-9fdf-4acd-a6ff-9c4e94879e0e") - ) - (pad "41" smd roundrect - (at 5.675 -0.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS3-Pad41)") - (pinfunction "BDBUS3_41") - (pintype "bidirectional+no_connect") - (uuid "d6ac19f6-3687-4a3e-be7c-63d819afa9ca") - ) - (pad "42" smd roundrect - (at 5.675 -0.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_42") - (pintype "power_in") - (uuid "1e206977-7932-48a9-8afc-8e18efbd6f63") - ) - (pad "43" smd roundrect - (at 5.675 -1.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS4-Pad43)") - (pinfunction "BDBUS4_43") - (pintype "bidirectional+no_connect") - (uuid "2096a2e2-74b2-414d-a517-1dad63138e14") - ) - (pad "44" smd roundrect - (at 5.675 -1.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS5-Pad44)") - (pinfunction "BDBUS5_44") - (pintype "bidirectional+no_connect") - (uuid "56837aa5-e9b5-4e2e-bac6-6ae53b1609e2") - ) - (pad "45" smd roundrect - (at 5.675 -2.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS6-Pad45)") - (pinfunction "BDBUS6_45") - (pintype "bidirectional+no_connect") - (uuid "b990df6f-008d-4e1e-9ff7-3d3f8de0974b") - ) - (pad "46" smd roundrect - (at 5.675 -2.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BDBUS7-Pad46)") - (pinfunction "BDBUS7_46") - (pintype "bidirectional+no_connect") - (uuid "7d575942-8312-43ce-a5fa-9883915bdc43") - ) - (pad "47" smd roundrect - (at 5.675 -3.25 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_47") - (pintype "power_in") - (uuid "0095e02a-a119-4574-a535-a6b7ca84727e") - ) - (pad "48" smd roundrect - (at 5.675 -3.75 90) - (size 1.55 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS0-Pad48)") - (pinfunction "BCBUS0_48") - (pintype "bidirectional+no_connect") - (uuid "28f5c814-50de-4260-b073-b361a32f2ea5") - ) - (pad "49" smd roundrect - (at 3.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VREGOUT_49") - (pintype "power_out") - (uuid "da533a94-9006-4d7d-a5f5-05c29e5feb26") - ) - (pad "50" smd roundrect - (at 3.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VREGIN_50") - (pintype "power_in") - (uuid "255d245c-f418-4552-988b-c09c6ef140a1") - ) - (pad "51" smd roundrect - (at 2.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_51") - (pintype "power_in") - (uuid "cfcfb5ca-1c9a-4827-a437-0c3164042457") - ) - (pad "52" smd roundrect - (at 2.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS1-Pad52)") - (pinfunction "BCBUS1_52") - (pintype "bidirectional+no_connect") - (uuid "b9709352-0887-44d9-894f-a7bff72f5188") - ) - (pad "53" smd roundrect - (at 1.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS2-Pad53)") - (pinfunction "BCBUS2_53") - (pintype "bidirectional+no_connect") - (uuid "a82db837-f2f3-4e5a-8609-21fa58724fc7") - ) - (pad "54" smd roundrect - (at 1.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS3-Pad54)") - (pinfunction "BCBUS3_54") - (pintype "bidirectional+no_connect") - (uuid "4a882d93-ea9a-4c5e-ab58-72ba59066a78") - ) - (pad "55" smd roundrect - (at 0.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS4-Pad55)") - (pinfunction "BCBUS4_55") - (pintype "bidirectional+no_connect") - (uuid "21dda8d3-e210-49f0-bfb7-fb0f299043e8") - ) - (pad "56" smd roundrect - (at 0.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_56") - (pintype "power_in") - (uuid "2f700c1e-110f-4c8d-89a8-7848a33f2128") - ) - (pad "57" smd roundrect - (at -0.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS5-Pad57)") - (pinfunction "BCBUS5_57") - (pintype "bidirectional+no_connect") - (uuid "63ca6b38-6398-438a-9b28-bf5a1bd4cafc") - ) - (pad "58" smd roundrect - (at -0.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS6-Pad58)") - (pinfunction "BCBUS6_58") - (pintype "bidirectional+no_connect") - (uuid "072d641f-ad43-404e-b44c-afc7487a0739") - ) - (pad "59" smd roundrect - (at -1.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-BCBUS7-Pad59)") - (pinfunction "BCBUS7_59") - (pintype "bidirectional+no_connect") - (uuid "2e81fa94-bbdf-4609-8543-8c808dad1973") - ) - (pad "60" smd roundrect - (at -1.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U8-~{PWREN}-Pad60)") - (pinfunction "~{PWREN}_60") - (pintype "output+no_connect") - (uuid "6cf70cfc-0a97-47c4-989e-bbb5532fa5bd") - ) - (pad "61" smd roundrect - (at -2.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_DATA") - (pinfunction "EEDATA_61") - (pintype "bidirectional") - (uuid "4647de6d-90c2-4d5c-bae2-33e9199b68d5") - ) - (pad "62" smd roundrect - (at -2.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CLK") - (pinfunction "EECLK_62") - (pintype "output") - (uuid "4160e4ce-5cc7-430b-9d2b-433ff876a9b5") - ) - (pad "63" smd roundrect - (at -3.25 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CS") - (pinfunction "EECS_63") - (pintype "output") - (uuid "21c9140d-ed56-4ac8-b679-0980e09350be") - ) - (pad "64" smd roundrect - (at -3.75 -5.675 90) - (size 0.3 1.55) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pinfunction "VCORE_64") - (pintype "power_in") - (uuid "a2c5ebce-88e6-4b8c-80f6-b9346ae5c1a5") - ) - (pad "65" smd rect - (at 0 0 90) - (size 5 5) - (property pad_prop_heatsink) - (layers "F.Cu" "F.Mask") - (zone_connect 2) - (uuid "45d7604a-0471-4ad2-9d25-bf294f02ad56") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "3ab67f65-3050-46c2-b90a-0f315fd4b540") - (at 163.0325 86.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C53" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "94c6f7b9-9002-4133-afab-00b0ea38b9e6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "de7c0d36-b10c-4cba-9bb2-eb751bbc8ee5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c869d48a-a563-4e9c-a880-b2a6067bcd49") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b862b111-94f0-4513-9a50-a82749ed5476") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "8ebdbebc-3960-4ac0-b79f-870ec15e580a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "691baae2-f3fa-43db-85e4-4ac21060a2ee") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f5ab0080-ad0c-4d98-be07-faef5babc996") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/486c8abb-72e7-4ccc-8cb5-14ff7c4e50c0") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c4f871be-9bf4-414a-9c60-0a2e5f5fe774") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b31c22dd-1f3a-44ea-9d40-c8a7a51e5134") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "196b01d3-dd10-48e3-ab74-7adae5dd3fb6") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a19a806f-362e-41df-825e-472c4cbb1981") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "26dd6081-eb7c-4a5c-a9fc-22a5ffbd6274") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pintype "passive") - (uuid "563672e9-0b42-47fe-89a6-2ae385a1433c") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "45d38fb7-0ca9-4697-abb5-ee68c319b736") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "3ac857d8-b052-4f32-b122-f57ce40a3748") - (at 197.225 40.0575 90) - (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C15" - (at 0 -1.05 90) - (layer "F.SilkS") - (uuid "65862285-17de-4a03-9075-f71f7df225ec") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.05 90) - (layer "F.Fab") - (uuid "b0b51873-ee18-45a1-9c32-b7aac22f97a3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "67aabd5c-fede-4cf6-83f4-b9033af3b43a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "f4f799fc-8d7a-479b-a6da-0a851e78194d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d0a197a6-45b0-4161-a379-fd480e8cd214") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_rect - (start -0.88 -0.35) - (end 0.88 0.35) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c864a187-8fe4-439c-b56e-92032d81a413") - ) - (fp_rect - (start -0.3 -0.15) - (end 0.3 0.15) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "2d82fd42-7a33-4eda-a6b6-ebea0cf86778") - ) - (fp_text user "${REFERENCE}" - (at 0 -0.68 90) - (layer "F.Fab") - (uuid "1f56c6a5-f279-4bac-af86-43f97b716d1c") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "" smd roundrect - (at -0.4325 0 90) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3e2a3e20-0bb1-46c4-929d-9534cd324c28") - ) - (pad "" smd roundrect - (at 0.4325 0 90) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "926e29e6-1c3a-4a3c-8f13-bc70dc7e1cfe") - ) - (pad "1" smd roundrect - (at -0.4075 0 90) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "7fe208f3-fb93-4b4b-adb5-c04cbfda4d7a") - ) - (pad "2" smd roundrect - (at 0.4075 0 90) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "d3037a4c-fed0-4fc5-9a6b-b7ec95402d6f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "3f528407-f3e0-415d-a5ea-d1295dcc01f2") - (at 198.5325 79.025) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C32" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "8a609184-8b9f-4564-8633-b4bb770d9003") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "eefbb27b-5e97-4fd1-9252-5cd6882a710b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "35114d9c-ac85-4ef0-9bc7-9152ccb95d3e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ccd19b8b-c563-4b59-9102-f97594e7b384") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "989eb90f-72cf-4cf8-8b80-092ffc684a22") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0a973edc-3066-476b-a72f-62e8f347ec31") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3cdfc440-f51a-4a06-b568-8a23d0a43d79") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c136e02e-260c-444e-bce9-b2e169355f5f") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a664da84-2c50-4b3d-94f0-0032f8eb8d1c") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fd04d58e-6aff-46a3-a856-272c8de40a05") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "950735a2-4c29-4a05-a556-37b5fa1d11f8") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "7d110a96-6709-4e4c-9ae5-a1c06d710406") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "364f7dd0-13d7-4b08-98f4-28d873c1a451") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "f94908dd-1e2f-4f7b-9f87-f9772e37f312") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "c3599d7b-36c0-4ef9-b596-92a551f294e4") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "4a45a937-d131-47f4-b575-d6acc1a7fd14") - (at 86.2375 119.5) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C56" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "07a8d50d-a3da-4d50-969e-0d653f996ae2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "e8e8cf0a-9749-45f5-ac45-1d8f3d9d6248") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9350ce8c-e6dc-44ab-856c-7c95bb9d8f17") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f56aa524-a6d2-4569-97c7-cd00b1410191") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "c4864094-17df-44e8-9517-197d1fec6593") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5fee8ea5-cdf2-4226-aa22-a9405b2a64ea") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e1e28b18-a1a1-4624-b0b1-57d7fa279c68") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/799dac55-4653-4856-af6e-ddab4a32162e") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d4950416-ef83-4687-a942-47dc22945fa9") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62a7b8a7-ba20-4794-bd10-0ba02a7206ba") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "283a82eb-b998-4b90-9541-2914aa13852d") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a6ac314a-ff33-4a59-a6b9-2fc0d82fa555") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "320c06d5-f870-4d64-adb1-591d25f84fd8") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "602e469f-7e34-44ac-b1b6-234b107ad925") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2a9cc8b5-68a8-4a77-98ab-6db00489cbc7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" - (layer "F.Cu") - (uuid "4fec4057-5350-45c7-86ad-53a6d890a577") - (at 75.6525 91.025) - (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C56" - (at 0 -1.05 0) - (layer "F.SilkS") - (uuid "2fcfef73-e823-4f25-b4f8-62d36070b659") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.05 0) - (layer "F.Fab") - (uuid "772e73b4-9e7e-431e-abdc-feddf492ef82") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5c8d2312-85ef-416b-96c1-88e7eec20b11") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5f58388e-424b-431c-9b20-60d2085446ec") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "86a2622b-33df-4997-8a99-6ab726bb48aa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_rect - (start -0.88 -0.35) - (end 0.88 0.35) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "98909e6b-1292-4875-a62f-b938ed134a0f") - ) - (fp_rect - (start -0.3 -0.15) - (end 0.3 0.15) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "092916ec-60b4-4ffc-bbef-313c31bc79d5") - ) - (fp_text user "${REFERENCE}" - (at 0 -0.68 0) - (layer "F.Fab") - (uuid "03c9303d-b2bc-4ad4-8c7e-ba01b8ea2688") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "" smd roundrect - (at -0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "59b6deb0-d8e8-4a8a-b60a-be78128882db") - ) - (pad "" smd roundrect - (at 0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "5d325bb1-83e7-476e-b90e-da6337cb42f1") - ) - (pad "1" smd roundrect - (at -0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "a4c9390c-37da-4b08-8318-dc770f479c8e") - ) - (pad "2" smd roundrect - (at 0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "33a27efb-1a93-4247-bcd1-282f2376e957") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (layer "F.Cu") - (uuid "4ff03b1a-6b5b-484f-ba3d-bff2199e4a2e") - (at 190.5 46 -90) - (descr "SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf)") - (tags "SOIC SO") - (property "Reference" "U5" - (at 0 -6.1 90) - (layer "F.SilkS") - (uuid "74825149-70a1-4e6a-964f-03b465f852fe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "ADUM4160" - (at 0 6.1 90) - (layer "F.Fab") - (uuid "9efca8ce-f169-4950-b31f-0a423e78aa3b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "caeb3bcd-4a48-478b-adec-e1eab8d73b7d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "47922583-a9ce-4ef8-8900-dbf15dbb6f0e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "8ee52761-4dcb-4862-9f8b-27b611275389") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOIC*7.5x10.3mm*P1.27mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/ff0840fa-64d2-4c4f-a5f2-0a6f744a930a") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "3" "7" "6" "4" "5" "2" "1" "8" "16" "9" "15" "14" "12" "10" "11" - "13" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -3.86 5.26) - (end -3.86 5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2dab0359-8948-4075-bb05-61ca596c748e") - ) - (fp_line - (start 3.86 5.26) - (end -3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eff0a01f-0a93-4a59-9d2c-ee22337dddd9") - ) - (fp_line - (start 3.86 5.005) - (end 3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e5491438-d61e-46b9-b097-98f5a5b6ab17") - ) - (fp_line - (start -3.86 -5.005) - (end -3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "676b89e4-5b97-4d37-afdf-cae22a8abaa4") - ) - (fp_line - (start -3.86 -5.26) - (end 3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "47309a08-da81-425a-91e3-752927c3d7b8") - ) - (fp_line - (start 3.86 -5.26) - (end 3.86 -5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ae9582e2-e4a4-4604-9910-4cd17a1fb5a2") - ) - (fp_poly - (pts - (xy -4.65 -5.01) (xy -4.99 -5.48) (xy -4.31 -5.48) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "7bcfbbf7-b808-4961-8cf9-433b53a92100") - ) - (fp_line - (start -4 5.4) - (end -4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "726ef55d-aa22-44f7-99be-d5434ea34ea5") - ) - (fp_line - (start 4 5.4) - (end -4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "497c6035-c613-40c2-9ee8-345a3ab79eb3") - ) - (fp_line - (start -5.93 5) - (end -5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a6730c27-3381-40b7-9630-af866b9f7590") - ) - (fp_line - (start -4 5) - (end -5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e87a6f04-ed30-4e96-befd-fa4de0a2a119") - ) - (fp_line - (start 4 5) - (end 4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d171f013-3f0b-4458-bbd3-4669c1f24a9a") - ) - (fp_line - (start 5.93 5) - (end 4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "4a8a0b00-32d3-4eba-8704-6539789109ba") - ) - (fp_line - (start -5.93 -5) - (end -4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9285d1e0-4f4c-46c4-94b8-b5511371a962") - ) - (fp_line - (start -4 -5) - (end -4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bda7ef33-3ce0-497d-a43a-95bf07a6c2f8") - ) - (fp_line - (start 4 -5) - (end 5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d54105d6-7896-4b62-b67e-2ed700a6a312") - ) - (fp_line - (start 5.93 -5) - (end 5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6c2487c7-ce51-4c5c-bf0b-c51116b1083e") - ) - (fp_line - (start -4 -5.4) - (end 4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a49c8de6-3a4b-4799-8263-d38dca3d7486") - ) - (fp_line - (start 4 -5.4) - (end 4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "61598a95-047a-42a8-899e-913e793a540b") - ) - (fp_poly - (pts - (xy -2.75 -5.15) (xy 3.75 -5.15) (xy 3.75 5.15) (xy -3.75 5.15) (xy -3.75 -4.15) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ef123b81-fc80-4cfe-8914-377bf5681bec") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "8776e08b-40db-4ac5-b505-963f50b15c16") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS1_1") - (pintype "power_in") - (uuid "00dbc59e-ec47-4df6-a726-39334c923fea") - ) - (pad "2" smd roundrect - (at -4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_2") - (pintype "power_in") - (uuid "6ea59f75-7f35-4b01-840f-3dd3d761fdbf") - ) - (pad "3" smd roundrect - (at -4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "VDD1_3") - (pintype "power_in") - (uuid "805a4c48-8ccb-4721-b3dd-e9ff2616c222") - ) - (pad "4" smd roundrect - (at -4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "PDEN_4") - (pintype "input") - (uuid "5cda192c-002e-4a49-a45b-49c172e49f80") - ) - (pad "5" smd roundrect - (at -4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "SPU_5") - (pintype "input") - (uuid "96b9e2fc-e7b9-4ba9-bb11-d5bdf167b1d9") - ) - (pad "6" smd roundrect - (at -4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDN") - (pinfunction "UD-_6") - (pintype "bidirectional") - (uuid "a7341022-865d-4482-9953-402a3590bbab") - ) - (pad "7" smd roundrect - (at -4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDP") - (pinfunction "UD+_7") - (pintype "bidirectional") - (uuid "b5f0a259-6940-400f-b89d-fdbb46c1a55c") - ) - (pad "8" smd roundrect - (at -4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_8") - (pintype "power_in") - (uuid "109204a4-48da-4623-9b7e-0aab41b8a9c4") - ) - (pad "9" smd roundrect - (at 4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND2_9") - (pintype "power_in") - (uuid "18d60504-6f0e-45bc-910d-738d089b1f9d") - ) - (pad "10" smd roundrect - (at 4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DP") - (pinfunction "DD+_10") - (pintype "bidirectional") - (uuid "e109c5ce-44a0-49a6-9b07-127257aa4373") - ) - (pad "11" smd roundrect - (at 4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/FT_DN") - (pinfunction "DD-_11") - (pintype "bidirectional") - (uuid "2f80fe3b-394f-4af1-aefe-4d21ba741819") - ) - (pad "12" smd roundrect - (at 4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "PIN_12") - (pintype "input") - (uuid "d7fc8278-2cd6-4baf-aa42-802309d2198f") - ) - (pad "13" smd roundrect - (at 4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "SPD_13") - (pintype "input") - (uuid "44435fa1-4bf7-45ec-8711-edda38d3ee3c") - ) - (pad "14" smd roundrect - (at 4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VDD2_14") - (pintype "power_in") - (uuid "2b42d223-b5a8-49bc-8948-5defe808b37a") - ) - (pad "15" smd roundrect - (at 4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND2_15") - (pintype "power_in") - (uuid "91382652-a62f-431b-987c-99f84ae5675d") - ) - (pad "16" smd roundrect - (at 4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VBUS2_16") - (pintype "power_in") - (uuid "79c15ca3-d24a-480a-8ed3-d3b16b3ee78b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16W_7.5x10.3mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "hardware:HANRUN_HR911105A" - (layer "F.Cu") - (uuid "521e335c-0864-4816-9cc9-3557aa04e0a9") - (at 117.9 57.35 90) - (property "Reference" "J2" - (at -3.18815 -12.50276 90) - (layer "F.SilkS") - (uuid "6b35bd3f-56f9-46d9-b223-fd79fe571fed") - (effects - (font - (size 1.607654 1.607654) - (thickness 0.15) - ) - ) - ) - (property "Value" "HR911105A" - (at -41.47235 -53.408115 90) - (layer "F.Fab") - (uuid "0af39388-0215-4859-9ee7-dac6b2934c97") - (effects - (font - (size 1.605063 1.605063) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4448c7cb-1932-4a34-9dac-092bd0490ba6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4504b0f7-a72a-49bb-beb0-d58ebc8fe880") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "MF" "hanrun" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "91e8eb2c-12d9-42d4-be0b-c103ac204d5c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "PACKAGE" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "13497901-ad2d-46a1-b9af-c5783f4c1ea4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "PRICE" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "006e7bac-7994-4962-a520-bb3beaa92c6f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Package" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "452082cc-5893-4927-b5ec-e0f2dc471291") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Check_prices" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=eda" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "05ae92be-f086-4c02-bda6-b3d94fede90f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "STANDARD" "Manufacturer Recommendation" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "484bc848-798b-4ad0-9620-a822d14cd5e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "PARTREV" "A" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7861048c-871d-4361-9c16-3dad99daaa4c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "SnapEDA_Link" "https://www.snapeda.com/parts/HR911105A/HanRun/view-part/?ref=snap" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7fc0498d-9625-4c30-b794-1fbf2bdc6000") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "MP" "HR911105A" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "87bdc2ff-df13-435b-a5f7-fd389280ea66") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Price" "None" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5b313edd-8c01-4e45-a9bd-25688deed5e2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Availability" "In Stock" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "66f5a8c4-1202-45c7-ad8f-c7b833a17b64") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "AVAILABILITY" "Unavailable" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9f6982c1-fe85-47ff-964e-e6422116dca6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/8f518aff-5efc-4392-8598-de9e0aaf1c56") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "6" "5" "3" "2" "4" "1" "8" "9" "10" "12" "11" "15" "16") - ) - ) - (attr through_hole) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 8 -10.92) - (end -8 -10.92) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "81b60a3c-ca8e-4483-99cd-7df598ec6777") - ) - (fp_line - (start 8 -10.92) - (end 8 1.5) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "75823637-9980-43a0-a565-21a3e8b23357") - ) - (fp_line - (start -8 -10.92) - (end -8 1.5) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "3132aaa5-867c-4751-a9c0-527c5ccf593c") - ) - (fp_line - (start 8 4.6) - (end 8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "1de4be88-9c51-4437-a091-a9bf63a96f31") - ) - (fp_line - (start -8 4.6) - (end -8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "8be05a5b-7b63-4279-8bd6-870bce58b21f") - ) - (fp_line - (start 8 10.48) - (end -8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.SilkS") - (uuid "54c0e719-d78c-4fb0-9bb9-c7bba01ce1e7") - ) - (fp_circle - (center 9 6.3) - (end 9.15 6.3) - (stroke - (width 0.3) - (type solid) - ) - (fill no) - (layer "F.SilkS") - (uuid "1d9c1c9a-8076-432c-a81d-1682ae7ff7c2") - ) - (fp_line - (start 9.25 -11.17) - (end -9.25 -11.17) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "482fc930-e7da-4ad5-80fb-6b46084ab46e") - ) - (fp_line - (start -9.25 -11.17) - (end -9.25 10.73) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "68d8921c-c045-4620-8cb9-20294d50858d") - ) - (fp_line - (start 9.25 10.73) - (end 9.25 -11.17) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "46f0cd57-e9c1-4948-982a-848a4d9dde91") - ) - (fp_line - (start -9.25 10.73) - (end 9.25 10.73) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "57b0c5be-6ba7-47ea-a748-0a3394a240ef") - ) - (fp_line - (start 8 -10.92) - (end -8 -10.92) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "c91cf679-c8ac-447b-bfdc-4e322d2455f7") - ) - (fp_line - (start -8 -10.92) - (end -8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "5fa8ecd9-1609-49b5-abe1-dae36aeca4ad") - ) - (fp_line - (start 8 10.48) - (end 8 -10.92) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "5e175e43-1ad1-4fb2-bdc0-2efb98561b1b") - ) - (fp_line - (start -8 10.48) - (end 8 10.48) - (stroke - (width 0.127) - (type solid) - ) - (layer "F.Fab") - (uuid "eb960d75-47cc-4647-bde0-2c8915678f31") - ) - (fp_circle - (center 5.8 6.3) - (end 5.95 6.3) - (stroke - (width 0.3) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "283cda7f-d902-4cf0-b79e-60e92138e416") - ) - (pad "" np_thru_hole circle - (at -5.715 0 90) - (size 3.25 3.25) - (drill 3.25) - (layers "*.Cu" "*.Mask") - (uuid "ffc2d2f6-24b5-490b-9c40-d193a6f29c78") - ) - (pad "" np_thru_hole circle - (at 5.715 0 90) - (size 3.25 3.25) - (drill 3.25) - (layers "*.Cu" "*.Mask") - (uuid "bb852d8f-b598-4781-84b1-6173c5f42994") - ) - (pad "1" thru_hole rect - (at 4.45 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_TXP") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "ae24bcee-0964-46cc-ac77-f97ef13ff3da") - ) - (pad "2" thru_hole circle - (at 3.18 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_TXN") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "b1eb2d4f-e8a3-4dd5-aa17-7258093a2bcd") - ) - (pad "3" thru_hole circle - (at 1.91 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_RXP") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "448f1ef7-87dc-40a0-9872-e93185a90d02") - ) - (pad "4" thru_hole circle - (at 0.64 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "80635e10-5fcc-4f08-b0a3-0f25cf32d903") - ) - (pad "5" thru_hole circle - (at -0.63 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "908d949e-5eee-435e-9eb1-3943d5c04f8d") - ) - (pad "6" thru_hole circle - (at -1.9 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/ETH_RXN") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "ee2938b8-b995-42d7-9c97-b01482a5c02e") - ) - (pad "7" thru_hole circle - (at -3.17 6.35 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (solder_mask_margin 0.102) - (uuid "2c9f0157-5b1f-40b7-b4bf-57a663d827e4") - ) - (pad "8" thru_hole circle - (at -4.44 8.89 90) - (size 1.398 1.398) - (drill 0.89) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "GND") - (pintype "power_in") - (solder_mask_margin 0.102) - (uuid "caaa692d-1682-4e4f-8cea-34b026097491") - ) - (pad "9" thru_hole circle - (at 6.625 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "Net-(J2-Pad9)") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "14a4b2ec-7590-4d76-be05-2c3871f4028d") - ) - (pad "10" thru_hole circle - (at 4.085 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/LED_LNK") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "f5169c4e-e83d-4942-8e69-aad8ec68d11f") - ) - (pad "11" thru_hole circle - (at -4.085 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "/ethernet/LED_ACT") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "9a882b9b-4d57-46e6-8153-6d77ee6b2da1") - ) - (pad "12" thru_hole circle - (at -6.625 -4.9 90) - (size 1.53 1.53) - (drill 1.02) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "Net-(J2-Pad12)") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "a6bf3dcd-db63-4bac-b5f0-b7d9bd514a1b") - ) - (pad "15" thru_hole circle - (at 7.745 3.05 90) - (size 2.445 2.445) - (drill 1.63) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "SHIELD_15") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "df12a71c-5eff-43ba-8111-fdc47150d598") - ) - (pad "16" thru_hole circle - (at -7.745 3.05 90) - (size 2.445 2.445) - (drill 1.63) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "SHIELD_16") - (pintype "passive") - (solder_mask_margin 0.102) - (uuid "343a55f3-9ede-4704-8018-84285e92ed61") - ) - (embedded_fonts no) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "530973c5-b0ff-4577-b434-91c6afcef4cd") - (at 88.2375 101.5) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R17" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "23e79e2c-c0a0-4d64-b160-0caf008da575") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1M" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "659c6a0a-2e7a-4a82-aa15-f51bd0e2c317") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ba625bd4-f199-48c8-be42-bf5865325f7f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e39e00e4-cf2f-4b6e-85d2-ad81833f40b7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "2c1718f3-3599-4ec0-853d-5bbed678b342") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "06ae575a-80a2-4a81-8820-bb227cc4c59b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/898b0f99-8d06-4f04-99d2-0a5c3f3f25d0") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3172b5b7-7bd7-4961-9041-c4dd97805d36") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9f4e43dc-da35-4c6b-9cd4-ce5784a6f681") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "157f264a-1301-43fa-950b-24368921089b") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "bcf0e561-9727-4061-8529-23d26d6c8f5b") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "e4af14d3-5724-4e66-8f46-609b2f8b78fb") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_I") - (pinfunction "~_1") - (pintype "passive") - (uuid "3d6aab5c-b7f3-4ff6-a4d5-396bf9848f94") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_O") - (pinfunction "~_2") - (pintype "passive") - (uuid "4ac0b233-eb5e-4554-87a5-5d215f1ac976") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "53adbd27-e38f-408c-aa72-91c9085cc45c") - (at 77.2375 105.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C43" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "f182ea7d-0555-4928-b99c-81a0cef90646") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "71befade-d8fa-4e88-9f15-cda355f19f51") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ba16320f-f39a-449d-be91-4bc4ce0582bc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a67deb4b-2438-4fa2-91eb-e38b10f89605") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "d9a67ac2-b6c3-412f-8657-f7b5e1ec6bdd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b6c89282-ed7b-4b3d-a117-857ed4045765") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "902bc6bc-213f-43d4-8fa0-54582b4c059e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/1a586e8e-5eb2-46d2-a8b1-0287b1ce1c01") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6f93544c-1731-4a78-aa5c-c58bf61bfb95") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "779ca31d-c91a-42e8-900d-9d06851da9a8") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b78f1504-b6ed-4ffe-ab36-eb5ed5dcb604") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "56f71654-c903-46c0-af54-e819b566f631") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "25e73632-3d79-423f-8457-58c988071327") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "dbe5f659-9f2b-437f-85ae-d264a666bbbe") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "040201ab-81ac-4617-841a-7e8ea88b75bb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-583-8" - (placed yes) - (layer "F.Cu") - (uuid "586c6e68-cdfe-49ca-8117-968981fc91e1") - (at 198.48 64.21) - (descr "https://www.ti.com/lit/ds/symlink/tps62933.pdf") - (tags "SOT-583-8") - (property "Reference" "U2" - (at 0 -2.2 0) - (unlocked yes) - (layer "F.SilkS") - (uuid "6708953a-14dc-42fe-809a-33267e3099cb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "TPS2116DRL" - (at 0 2.8 0) - (unlocked yes) - (layer "F.Fab") - (uuid "1330bcdd-e095-4297-8a7b-f1d67afe31e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0c225882-c909-4948-86e3-9b0fa548f766") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "aa2dc03d-71b8-4323-9c6f-fc02be93bf65") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?5?3*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/37da5052-c537-4eaf-931c-04725a54b211") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "3" "4" "5" "6" "1" "7" "2" "8") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.65 -1.16) - (end -0.4 -1.16) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5db605d3-510c-4791-b0d7-b899f11320fc") - ) - (fp_line - (start 0.65 1.16) - (end -0.65 1.16) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "93974e8e-773b-428c-bb50-cecc5c8746b6") - ) - (fp_poly - (pts - (xy -0.76 -1.16) (xy -1.04 -1.16) (xy -0.76 -1.44) (xy -0.76 -1.16) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "4d2e1fd8-df8c-4aa6-b64c-4bf49d51b9ea") - ) - (fp_line - (start -1.32 -1.3) - (end 1.32 -1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "936ef50f-c3e0-431e-8e79-3f21b09948e0") - ) - (fp_line - (start -1.32 1.3) - (end -1.32 -1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "d9e6d426-0a6d-4eb1-8dc3-fb013c538136") - ) - (fp_line - (start 1.32 -1.3) - (end 1.32 1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "687e12c7-16c4-4edf-bea5-6dfc06d1ebbb") - ) - (fp_line - (start 1.32 1.3) - (end -1.32 1.3) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "7acc8eed-23e8-4f90-bf52-11b5a0ecd251") - ) - (fp_line - (start -0.6 -0.75) - (end -0.6 1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "d4c21844-e502-431a-a377-ab6d5b593a8a") - ) - (fp_line - (start -0.6 1.05) - (end 0.6 1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "fc426de8-ce22-41c1-8149-7ed678ea6934") - ) - (fp_line - (start -0.3 -1.05) - (end -0.6 -0.75) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "1d56c46e-e23d-4058-955c-591f4bc467d3") - ) - (fp_line - (start 0.6 -1.05) - (end -0.3 -1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "13307562-e306-4bbb-bd81-3ea84e50ad9d") - ) - (fp_line - (start 0.6 -1.05) - (end 0.6 1.05) - (stroke - (width 0.1) - (type default) - ) - (layer "F.Fab") - (uuid "8e159aeb-43e3-4827-ab2e-c7af1bbcbdaa") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (uuid "5d4b8b0e-6c49-48a9-8c73-7c597ddc6677") - (effects - (font - (size 0.5 0.5) - (thickness 0.075) - ) - ) - ) - (pad "1" smd roundrect - (at -0.74 -0.75) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "GND") - (pinfunction "GND_1") - (pintype "power_in") - (thermal_bridge_angle 45) - (uuid "d1c9f5ae-cc27-4582-b0dc-03a216a24a85") - ) - (pad "2" smd roundrect - (at -0.74 -0.25) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/3V3") - (pinfunction "VOUT_2") - (pintype "power_out") - (thermal_bridge_angle 45) - (uuid "d63f7b19-c6b3-4e26-8b67-ce5a593c05d8") - ) - (pad "3" smd roundrect - (at -0.74 0.25) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/GC_3V3") - (pinfunction "VIN1_3") - (pintype "power_in") - (thermal_bridge_angle 45) - (uuid "855a3b44-d479-486e-9bef-ce2677027912") - ) - (pad "4" smd roundrect - (at -0.74 0.75) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "Net-(U2-PR1)") - (pinfunction "PR1_4") - (pintype "input") - (thermal_bridge_angle 45) - (uuid "54dfb963-66ca-4eb2-b3dd-662e035fa312") - ) - (pad "5" smd roundrect - (at 0.74 0.75) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/GC_3V3") - (pinfunction "MODE_5") - (pintype "input") - (thermal_bridge_angle 45) - (uuid "16e95e8f-6682-46a6-bc2f-2247520744f2") - ) - (pad "6" smd roundrect - (at 0.74 0.25) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Usb Connector/USB_3V3") - (pinfunction "VIN2_6") - (pintype "power_in") - (thermal_bridge_angle 45) - (uuid "79e681ef-8f04-445b-abc8-8a3b7514f2a8") - ) - (pad "7" smd roundrect - (at 0.74 -0.25) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/Power/3V3") - (pinfunction "VOUT_7") - (pintype "power_out") - (thermal_bridge_angle 45) - (uuid "4ebf12b2-13b1-415f-8dbc-f72eb43db2fd") - ) - (pad "8" smd roundrect - (at 0.74 -0.75) - (size 0.67 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.1666666667) - (net "/GC_ON") - (pinfunction "ST_8") - (pintype "open_collector") - (thermal_bridge_angle 45) - (uuid "ce2d9624-3dac-493e-b292-b8a5b3acce47") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-583-8.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "5c97a8e6-e149-4beb-b2ec-be108da5b4bc") - (at 168.0325 81.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C7" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "2a69bd2a-5522-458f-b46d-f9575c06b6fe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "59da3974-69b1-4229-939f-997b3fb52145") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "47cebe96-fa3f-4b0f-a4ab-feecdf6eae29") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2bcf3b17-e69f-4560-aff7-e083a7302ac3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "60d6f030-a6e4-4bef-bebf-ee0c9b88e28e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6664c3f8-8eba-43fe-aeb0-d735a073b832") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d4b066cf-7f66-4e8c-99d9-2101f87d7461") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/8f54c9f3-e53d-4118-884b-00d1cdd5d9be") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "85fbc9e4-0623-4cd2-8f8d-2429afa365e8") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f51ee647-8e1c-4113-b025-dfc2e3a1b8a1") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "e057ed89-e86b-4930-9c1c-0c4408172fe5") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a5c49b02-e080-46e2-8480-aee4b87134ce") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "e606db54-c18e-4f1e-83eb-2e6eb7b73d5d") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "72e2a970-9835-4273-a5b0-3becbf3c5f37") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "a1751dc3-0abb-4b42-8bb0-d81869f7e9ac") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "5e81f266-bfd4-4077-9203-e0c25e701577") - (at 163.0325 85.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C50" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "43ec681f-00e3-497b-8461-fd8107e08fcb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "f3b75f5e-9616-4a83-9ef3-c44a3832ee76") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2af4aa72-2d34-4db7-bc60-23765f6aa647") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ff1a38a4-2a96-4750-9ebb-24a716bbd906") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "2e72b3be-08c5-4661-8dbd-ce62219379d3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "bffd27ad-b3e0-4b0d-a670-2e49e87ca51d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "15a2434b-46e5-4f68-9f51-3769d0e302b6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/f90fe6ac-e8e3-4366-ad0c-21a6d851e853") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "135b731b-bce7-41e1-8248-7d89e95beec1") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d585b2f4-e93d-49aa-bfff-6ed7fbdd6136") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a5fe289d-4878-4e59-bb9a-839a950487a7") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "3dd2a3e4-e223-4344-ab56-22cb39ab07a9") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "1acd6e9f-408e-4391-b35f-417d367d01ce") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "e954d696-5932-4c27-be14-5bc07f283df4") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "42cf1aa9-efdd-4104-99b1-772dae269c6d") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "5ee539d8-2b2f-486c-aa29-484d053bbc18") - (at 167.0325 83.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C25" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "459d63b5-799b-42f8-b516-ee6ccdf043f0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "18pF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "6a439519-af3e-41f9-80fc-37b62abec93a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0e28155d-38fd-463e-83f9-7dc73c11ebf2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "97db431f-93c3-4655-9241-3e782e1dfd80") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "48a5d0e0-37fa-402e-9647-e6e4226aaf88") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9ae39416-c28b-4f50-bd75-a4951c7c0312") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f6864eed-0a85-4fc4-9598-dc65e5a509df") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/71b1b0ac-e62b-4c4c-8e59-42aad42b2606") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d955cf24-2c4b-4d53-8d33-f2176ebe0931") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4b30a475-0b37-49c7-bd4d-a51935707d46") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "fc643f20-e6e2-45a6-9d01-1925e2249ce9") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "dade0596-1714-41f8-8b62-aabb971dc680") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "d9201ad9-5950-4ee9-ba25-ffd1de846ba9") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCI)") - (pintype "passive") - (uuid "267e6054-8ddd-4870-b254-f833b88276cb") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "f8bf68a3-ad8b-4fd3-bdb9-fb24d4d1feca") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "623e4200-fd04-4a6c-89c8-6e2d26b86e4b") - (at 86.2375 117.5) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C39" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "f927b61f-6f8e-48bf-84a2-bc0a1f4e4b61") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "4.7uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "9d11d353-10e1-4b6f-b8c5-1128fa27bdce") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "266d3467-b692-42f8-a094-7b267ec66bae") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7371a3d7-80ee-4c4a-940e-a7fc0d5c147a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "79d5b6dd-19cb-449c-ae91-86c9abf1bef9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a9c0df90-514f-487a-a441-ceec0bd76f77") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "24deb6fd-8137-4c49-a2e9-be4ca4df0247") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/bb67f8f2-1f89-4a5d-88e9-74c8d61d245d") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3c78afde-0baf-42ad-85f4-43211e9f1bc2") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "85772e29-d045-46db-a316-1e49fc99e4a9") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "460c701d-33cb-4f92-ab2b-78d5c775e932") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "40a4ff69-fe0f-4cd4-9a15-229756ed415c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "8310f508-1532-403b-ad99-ffdebc39c21b") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "ea61de9b-ab11-438c-a84e-12ae643ab576") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2d7e84b5-2e10-4a84-910d-cb5ccba4c01a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "629711e3-87d9-4db0-9012-6a8cbdad1db7") - (at 205.9425 53.025 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C22" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "d6b43e8d-5e23-4fae-9aa7-2c02d80d8bf9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "0.1uF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "9e0f5fc9-c2a0-4aa5-98ba-79f16a28d68e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "469279d7-5859-40e1-a9e3-889eb1f0b1e2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "7556c4b7-fedb-440d-8650-e3963c85a54e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "f389554e-3924-4313-87e6-d0e0a3233c2b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f72c67c4-3e4b-48de-a4b0-855eeb9cfc4e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7fdfb5ac-1b2a-47dc-8c63-b2d9f6ced7e2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/26f94877-53fb-4e1b-9ef1-bc02520ab9aa") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ab2d906c-3a89-41b9-9ad5-e27a51c63437") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "395e80d5-70fd-4cc4-97b1-c7f3f1600b6c") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "4ae522ee-6597-4bf4-8705-63f8438c7074") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f56cab2e-7b15-4d62-ac3c-f10f051d1591") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "ecc70b6d-bce0-49c5-a8f8-f383cbe00977") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pintype "passive") - (uuid "64b5775e-f2c0-42ec-b393-6c3c656029b2") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "b20774da-2f2a-4b51-900b-1d5b79c3ba35") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "65bd00fa-60c2-4078-9001-f376c7e5bb5f") - (at 94.2375 109.5) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C51" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "a13706c9-7bbf-4af9-b55a-54f93c51010d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "5caf65cd-88b6-4821-bc63-a0db7cd4f784") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7f9eaa2c-849e-4e57-952f-2ac7e0f5e642") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "bdbdc848-b3f4-41bd-aa43-bf567d4543a0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4544f874-3c2e-4ed5-8e76-d1a59223445d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "090fb5d5-5bb4-4247-b1d6-4448dba9dcfc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "016f489d-586f-4057-914d-6ed79d300877") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/87c8bbff-7aad-43d6-9b68-36ac5beb18c2") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "031d788d-a90b-4833-b525-152c17a9d96d") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f5f664cb-1db5-4557-9aa0-e848c1bbb748") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c19be927-8773-4fbd-87ef-9c4466f10bb7") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "78e68869-4cf3-4ad1-a2c7-4664d1639b9e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "c31587c3-fc5f-4b8f-9cf4-0f4165f97c8c") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "b74ab4df-ba41-4894-bdc4-ce06f19c468d") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "1262f48b-de3d-43e1-9263-99eefc9a5329") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "67cbf765-fc5c-422d-ab49-f88151147efb") - (at 88.2375 106.5) - (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C56" - (at 0 -1.05 0) - (layer "F.SilkS") - (uuid "4c8de559-8a9a-4242-8b4d-138d2084f353") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.05 0) - (layer "F.Fab") - (uuid "43506727-465d-47ed-8062-3bbe2edcd74e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ff9f68ad-2074-4cdd-b822-c1fc7ac793a6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "945b4df4-4ed5-4155-82c0-ffbe08d72943") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "94f7c902-b337-4c40-8cdd-2a9bfaf5ca34") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_rect - (start -0.88 -0.35) - (end 0.88 0.35) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "76a04091-c7c5-49a3-8bf1-52bdeaa096d6") - ) - (fp_rect - (start -0.3 -0.15) - (end 0.3 0.15) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "fcd17023-6f2a-43d7-8910-cf50d71673a4") - ) - (fp_text user "${REFERENCE}" - (at 0 -0.68 0) - (layer "F.Fab") - (uuid "5ab84548-1918-4cac-a5bd-287e2d5fc358") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "" smd roundrect - (at -0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "0dc2c635-212f-4838-9cb0-399fe2e15311") - ) - (pad "" smd roundrect - (at 0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "c0ddbe6f-d56b-438a-b7d9-b06088aedb5d") - ) - (pad "1" smd roundrect - (at -0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "b5cdff8f-4b4c-4ce7-b968-c1bbb246b74d") - ) - (pad "2" smd roundrect - (at 0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d26e4957-358d-4eb9-b009-c997ded67e88") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "68e2604f-248b-41cf-bcc8-c4599877f6b8") - (at 89.2375 108.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C37" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "d32de583-1d83-4450-92d7-ef91ce3e4b2b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "186efd1a-235f-445e-b5fe-26c0342380a7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "fe2b91b2-d7e2-485b-aac3-058c998491f4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ef3e1629-74f2-4ca8-8b56-52f9dc2a9355") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f3e9cd74-c59f-4cfb-b502-e44bfbb4c81c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c1df0e03-f08a-4792-a4d4-35a5f9931ff5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3e95a8a3-602e-4ab9-a06c-51df88214f28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/2654a7e3-3523-44af-99fa-0d7b07654129") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "290cf7eb-b0c6-4e81-b86e-1a2362eccc0d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "835d5d7f-44d5-45dc-b9c3-bd9958db3ce7") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b193bcdb-7033-4d2c-95b0-0507033b3a20") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ffc8d766-8379-44b1-996a-8af02af30449") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a80a3e65-573a-412b-af21-83c3e3496755") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "ae3969fd-2b2d-4c9a-8178-8cda5ad1208f") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "bfac238e-42d5-4d92-93ac-fd349f6265f6") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "6c65f523-273a-4e34-a25b-808f20bd660b") - (at 85.2375 102.5) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R13" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "215abfa1-9250-4a12-a71d-85a17abeeb53") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "b8b94f85-ca95-4100-82fc-04b55aad7812") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "437ab88a-aeae-4c0a-a30d-d309181ece22") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "694f4ba5-5981-498f-93aa-05fab2b88d92") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "7e693285-bf36-4c79-af29-92829bdf278e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "842b7967-9ffe-4f86-bf9f-e29c32384ed8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/5dd7b07d-4f90-45ca-9c8c-fbd5a40e7801") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ea298741-516d-4816-b1e1-eb08e2cea7d4") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2eb36eb0-050a-4ad7-8b79-2626fba4ea14") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "490fd39c-9953-4104-b953-5c03c154eba6") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0314fc94-5177-4d70-91df-e96f95443dc3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "c4aa8195-3e88-47ef-9f38-52cbe4bd59ee") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "~_1") - (pintype "passive") - (uuid "9fa52f17-ae15-433f-b2c3-3f5bb80c33db") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pinfunction "~_2") - (pintype "passive") - (uuid "6bac5041-b184-4b01-ab59-5d52751758e7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "6d1ed517-e2ff-474b-a5e2-c66235e6c0e6") - (at 182.125 43.4 90) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U4" - (at 0 -2.4 90) - (layer "F.SilkS") - (uuid "520154fc-491d-4d16-96a8-d088f0f20a10") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "AP2112K-3.3" - (at 0 2.4 270) - (layer "F.Fab") - (uuid "415a0477-b0c8-4031-a6a4-cba591ba8835") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "dbb993b6-9282-46ca-a036-a825c4f00b03") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "3ccf38c0-bd79-4d8f-960e-8b9f573c85b0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "3875b5c8-d66a-4217-9eb4-2be91761f695") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23?5*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/0394838e-c9f7-440c-8ab0-df38480a28e5") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "4" "5") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "539c2fed-895f-422f-9fc4-8cb1520f1b0e") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7c9c4933-348f-494d-8b56-d2138c0203d1") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e1d274f5-cc6a-4cde-b139-6c9dae6b209a") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "992a8a10-d7ca-450f-b4aa-2a4c2540dfa6") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2ce48bf1-db2a-4bab-ab42-d461384ee13c") - ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "63fe66b5-082c-48cb-bdbd-a94560360262") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ee63b0e6-e701-4110-bfbe-67c487932ca4") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "f47a90d8-55cf-4819-bddf-194ecae1837c") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ef656a16-775d-40fd-8076-9d27c6f6ce20") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dd0882b4-7cbe-4414-b350-12f2b08dd367") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "eba83466-7035-4c12-91f8-b057153c2a5f") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "085a23cf-ed40-4935-841f-1816bd1ab13b") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cc61cc1c-43a2-402d-ac57-3b5673a0282e") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6ddf0ec0-db09-49df-adcf-b33689f3681f") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8166ce9b-72e5-4d53-a8c0-a2a1f42355ad") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6393a7d4-f109-4e41-ac51-b8c800be7fec") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "40ad2210-17a3-48ee-8e4e-8ae1365d5cb0") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "72a4aae2-2791-436c-a189-096dc541c3f4") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "81e0f017-9ffc-478d-8d63-c536c3025a6d") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "23b82f20-3d71-4891-9273-a8a2238dcfb7") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "42bcef50-5f5a-4973-a20f-babf3f125a99") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "70ed7c2d-ee19-4ce3-9ddf-547ffb7e0484") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b7807e77-c22d-4aa5-8fb4-353b6c4785a3") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e83173a1-7710-48a9-ae1e-8de4172659a5") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "7b526acd-e2de-4876-bc19-cb00b6254299") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a93fd992-76f8-42dd-85f2-bd3b49c09442") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "82b92111-08c3-42a1-9dea-7e6ec3a9a0cc") - ) - (pad "2" smd roundrect - (at -1.1375 0 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "82049951-62c3-47af-b359-f2c9ee440e8b") - ) - (pad "3" smd roundrect - (at -1.1375 0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "EN_3") - (pintype "input") - (uuid "6fa91cdc-fca9-4115-964a-bbcb949af965") - ) - (pad "4" smd roundrect - (at 1.1375 0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U4-NC-Pad4)") - (pinfunction "NC_4") - (pintype "no_connect") - (uuid "7f6db9ca-e0ce-438b-8b6a-88f535cfcfc2") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pinfunction "VOUT_5") - (pintype "power_out") - (uuid "6ccae78e-ac37-41e5-9b8b-ef23daaf9e8a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (layer "F.Cu") - (uuid "6d2c80b1-3aec-410c-9e53-f2717f904ddc") - (at 201.5825 74.475 90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C9" - (at 0 -1.85 90) - (layer "F.SilkS") - (uuid "9265ff0f-a200-4562-8734-0f6966a14e98") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "22uF" - (at 0 1.85 90) - (layer "F.Fab") - (uuid "fe1b7188-045c-4b3d-810c-d3859a2cd19c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "20810a4a-1142-4314-a033-b3acb44b3334") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "3e202b5f-0e1c-46fb-b751-5a8d6dc44d70") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d0c32d74-0876-4df1-bc2f-7dbadf81576b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "2a899072-c69d-4167-9da2-bb578efa2274") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5c4e7819-9420-423e-ac0d-140e7ccca481") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/4958bf79-3bd3-40cb-921a-918c2513cac6") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.711252 -0.91) - (end 0.711252 -0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1706fd82-e136-4b02-8481-607159087ca3") - ) - (fp_line - (start -0.711252 0.91) - (end 0.711252 0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "49a51dcd-240d-4e5d-aaa6-7e411c37c36d") - ) - (fp_rect - (start -2.48 -1.15) - (end 2.48 1.15) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a4a0a0ee-5e6f-42cd-996f-1715f81248fe") - ) - (fp_rect - (start -1.6 -0.8) - (end 1.6 0.8) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "60022012-d1aa-41d9-8b9e-f6f49ba562f6") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "bec67791-9e75-41a5-9b3e-18cdaeebf8ca") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5625 0 90) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "GND") - (pintype "passive") - (uuid "5628dcca-5aa1-4081-9ee9-c268a52980d2") - ) - (pad "2" smd roundrect - (at 1.5625 0 90) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "/Power/3V3") - (pintype "passive") - (uuid "db728723-4a6a-4344-9bbb-6c564834aa5e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "6ea43171-699b-4f0f-b432-88f0daefd57b") - (at 93.5375 91.8) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R17" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "529df9e9-0ac1-47d9-84da-46c9971d2aac") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "330" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "dec9396d-c887-4408-ab11-cd660801c41f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4a3cbe94-bcc2-4a70-8069-158752dd07c6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "25ba8fc7-1c54-480f-bfa7-de21485f30fa") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "dbb79d05-7cca-4a0f-9f9f-e2b49335d7d9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1d312c66-0b80-438b-a51e-a1f2e95a2afa") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8e753208-f221-43bf-9c9e-4741eb5782ee") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c877baf1-dca7-4fcd-8c1d-f43cd2a5ae9c") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "31363cdf-ecfb-4a47-9d04-c39827dabf6f") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "584f421f-9289-4b99-8b80-8c5e282621aa") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "e0aae20b-231f-49b1-a148-ad8addaefbb4") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J3-YELLOW_A)") - (pinfunction "~_2") - (pintype "passive") - (uuid "794ccf2e-c388-4c30-b912-f1d6a07ed95b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (layer "F.Cu") - (uuid "6fc75293-c30e-483f-ad7f-f6bf6624a805") - (at 233.8 60.7775 -90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C10" - (at 0 -1.85 270) - (layer "F.SilkS") - (uuid "fddd0d2c-1461-4c1a-97cd-b13d921c159b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "22uF" - (at 0 1.85 270) - (layer "F.Fab") - (uuid "520eb4f3-45d5-4ad8-94c7-0085f93a3d55") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "4dab3c1e-dc79-41f7-a380-7612f625b7a4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "a818fb0e-5066-4dd9-a129-ec53c84c9107") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 270) - (layer "F.SilkS") - (hide yes) - (uuid "fcb2dd4b-295f-447d-a2cd-8643cbf6b906") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "967dcc26-2067-46dd-ba18-58f74bd952b4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a8648f5c-b052-48dd-bad2-14cac79a4a36") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/061562c8-1c03-4562-a12a-753df40e89e5") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.711252 0.91) - (end 0.711252 0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "66dad8df-8a34-48ca-8319-f7a469d5d4db") - ) - (fp_line - (start -0.711252 -0.91) - (end 0.711252 -0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c0f98569-cc26-4e86-ab26-b55ec0cf1dbc") - ) - (fp_rect - (start -2.48 -1.15) - (end 2.48 1.15) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "e42d2756-1f88-4098-8f8a-c37d363cc107") - ) - (fp_rect - (start -1.6 -0.8) - (end 1.6 0.8) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "574ff217-ff61-488b-9996-fddab0880c32") - ) - (fp_text user "${REFERENCE}" - (at 0 0 270) - (layer "F.Fab") - (uuid "1ea2c9e6-fdf0-40fb-a313-fe3c07f7962a") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5625 0 270) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "cf37c3f8-ee53-4cc1-93e0-079af1e13e00") - ) - (pad "2" smd roundrect - (at 1.5625 0 270) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "GND") - (pintype "passive") - (uuid "646a490b-b88a-4e19-ba14-ea96f0c3040a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "71e18d37-dfb7-4a9a-9b7c-ac81d52fdcc1") - (at 176.1775 40.675) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R7" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "7ca02e98-5a34-4c54-8200-c3e4d68ac702") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "5.1k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "a730dc9d-ce72-47ca-902a-f51f14de06f7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c8f02ac5-49d5-45b3-b81c-69501a4c783d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "40cc8561-fb12-4bc0-94b5-3db4a929178b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "26c52b50-fbaa-4fe6-9f18-1f4569986dbf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "384ec292-d56a-481a-b788-b73105abcb88") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/1b8b4c9f-a016-46ef-9284-f933dbb33750") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "141d12e6-19b6-4f07-808d-19db882b5c60") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2a6f8285-f10a-4705-be17-70e40dafb795") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "16a7ca26-466b-40da-8062-be1b1a2499d5") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d154c03c-b221-4b01-92ce-68d4cf482809") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "40476091-34a9-46c0-b3ba-38271373218d") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CC2") - (pintype "passive") - (uuid "5d9e2aa8-b4f6-449b-a476-1cfccc53e663") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "ff33061a-755c-4aa8-9917-c0cf3499f375") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "7438e2b7-73a3-4a47-be02-5913cc5de695") - (at 168.0325 84.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C28" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "6f5894ac-cc89-466a-a2ad-50009a0ceee0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "0227bf2c-cfeb-45ec-b3a3-05d255012bf0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ddbc49ba-cc14-4b40-91e7-e93f8914189e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "1fdecd03-1e1a-4a5f-aebd-a46bf597e34a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "0480645e-0977-425b-911a-854bccffccb7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e29f1265-594b-48cd-b5f3-1a2838964b06") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e2a88e8b-af75-4974-8567-3f7d0ab96b67") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/fefa453b-a56a-4d1e-9e90-e2119d111222") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "71e06ea3-2496-4853-868b-2630807ebd73") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9470a375-f7ba-42df-9727-ca4bfe3f2f32") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "68cc7a0b-52d8-4c64-b8dc-ff51fee6e109") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "4abef09a-cd93-4ebb-a320-767791995013") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "cd8370b6-0ab0-4bfc-b5e0-70982dfdf1de") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "c40a2965-1021-4b7d-8a98-66e29a503225") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPLL)") - (pintype "passive") - (uuid "27f7a09b-3e80-4127-b401-927d889f0047") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "75c0ce49-4e5b-4b8e-9461-a2b1163da311") - (at 184.85 40.6675 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C18" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "4f5f0c16-ad89-48e6-9623-6cb6f6964cf8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "ce216181-5fee-4bb4-beff-e4297084567a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "672008dd-1a6b-4667-af0b-a5a7fb2e68da") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4495ccc1-9a73-4f70-9d88-10cc39f5d4ae") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "66c8f735-d072-4d01-90f6-3acd49330e23") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0ed4aac8-4d51-4fc1-bb30-83e0ccb81fae") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "110b3a60-a656-421b-a9e6-fe4cfda21c5f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/dd827515-66c6-49b7-bdf5-68265814dd48") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "71950bbc-ddd8-4a68-8b50-df1cb6329eae") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "5ed0057b-f43d-48fa-866f-84f32c7b431b") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "9b1ab91d-d106-43db-b1e8-7e76b90bc03c") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "56a29929-c366-499e-bfeb-b91d8fb7a5e2") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "35ed914c-86c4-4097-b936-c17df57b46f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "1c7044f4-d9d3-4453-8d06-d44ce8f2a1c3") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pintype "passive") - (uuid "c5dade5c-2231-468c-a99b-bb8d1d37bfab") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "7628a846-ea65-4cec-9002-6d9c0f4108df") - (at 88.2375 104.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C59" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "2ffddd49-e309-4ea1-8cef-189ab35258e5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10pF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "50be4265-b75b-431b-8974-dc5850e1b8ee") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4af9bdb0-d124-4790-a794-6c57f1777931") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "18e8f47f-641b-4748-9126-fe4c5f1060f5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "8e8ee958-4a30-45b5-b344-396ffd2c9231") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e3ab0870-2f24-4029-b304-da3aa418558e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "102149c3-9edc-4b11-be21-6f166275a376") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/3d74239c-f05b-463f-9923-62e57271a748") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0b4d1f46-33a4-410e-9e41-91b8276b630d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ec2b0e24-2938-4abb-a7d9-63b12e115501") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a021b833-f943-4f1a-89ea-449268665dae") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f4504076-30cb-4af3-8a67-a1d45d44c5fd") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "174c3490-1b1b-4405-b667-b6a716a15b6a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_O") - (pintype "passive") - (uuid "83fd3974-9577-4375-b710-9edf34583413") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "31322488-3ca2-4748-9607-c7dfbe92ab41") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "gc:SP1 BoardConnector" - (layer "F.Cu") - (uuid "79dd7777-5ae8-442d-8d5b-421a55094c84") - (at 189.88 59.92) - (property "Reference" "J3" - (at 0 -0.5 0) - (unlocked yes) - (layer "F.SilkS") - (uuid "12fb5694-d5a9-4a5d-a041-eebd980e8f82") - (effects - (font - (size 1 1) - (thickness 0.1) - ) - ) - ) - (property "Value" "Sp1_Connector" - (at 0 1 0) - (unlocked yes) - (layer "F.Fab") - (uuid "70d727d3-aeff-4fed-8f6f-66ab1baee9d9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d8829819-1ab6-4dff-b223-687c1caf6e1b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "26b39fb5-4a0a-47b7-a88c-fa82a6b0aea7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (path "/1b071f68-b4ea-469c-942f-de06380c9077/e1d71023-db8e-47ed-9ae2-d0237788b46a") - (sheetname "/exi/") - (sheetfile "exi.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 0.6 -3.2) - (end 14.4 -3.2) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "9571d571-552d-4945-befc-271bb164e809") - ) - (fp_line - (start 0.6 -1.8) - (end 0.6 -3.2) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "120c5921-8c74-42f1-aab6-7cef86691993") - ) - (fp_line - (start 0.6 -1.8) - (end 14.4 -1.8) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "5ffdcbb3-cc7a-4da7-ab20-c7637116cfd9") - ) - (fp_line - (start 14.4 -3.2) - (end 14.4 -1.8) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "b83e2e8f-b29d-4a5d-ae24-0f8bd6356604") - ) - (fp_line - (start 0 -5) - (end 15 -5) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "7ac053b7-3149-4a5c-a7c9-6269fd577f97") - ) - (fp_line - (start 0 0) - (end 0 -5) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "9324b79a-8060-4224-b178-82dcdea8451e") - ) - (fp_line - (start 0 0) - (end 15 0) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "1b38d9bf-ac36-48e5-b51e-84effff20f78") - ) - (fp_line - (start 15 -5) - (end 15 0) - (stroke - (width 0.05) - (type default) - ) - (layer "F.CrtYd") - (uuid "a5f8855c-c7c7-441f-a726-eae241951b34") - ) - (fp_text user "SP1 Board Connector" - (at 0 2.5 0) - (unlocked yes) - (layer "F.Fab") - (uuid "3855e3f3-5cd9-4517-b182-615be4d70003") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd rect - (at 13 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "Net-(J3-ExtIn)") - (pinfunction "ExtIn_1") - (pintype "input") - (uuid "07254a53-2213-4682-a71f-b0fa5bf32980") - ) - (pad "1" thru_hole circle - (at 13 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "Net-(J3-ExtIn)") - (pinfunction "ExtIn_1") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "11007745-de95-4af0-8404-bcd1910a6a26") - ) - (pad "2" thru_hole circle - (at 12 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "Ground(Shield)_2") - (pintype "passive") - (thermal_bridge_angle 90) - (uuid "f6946681-3f3c-47aa-a8fa-6b98a39b8b81") - ) - (pad "2" smd rect - (at 12 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "GND") - (pinfunction "Ground(Shield)_2") - (pintype "passive") - (uuid "28267805-8fd6-4362-b571-cec189bfcf61") - ) - (pad "3" smd rect - (at 11 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_INT") - (pinfunction "INT_3") - (pintype "output") - (uuid "7a7d44da-4804-4e76-835b-96840fd46bb6") - ) - (pad "3" thru_hole circle - (at 11 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_INT") - (pinfunction "INT_3") - (pintype "output") - (thermal_bridge_angle 90) - (uuid "347c8a08-4ad0-47b7-9376-76e1bcc584b8") - ) - (pad "4" thru_hole circle - (at 10 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_CLK") - (pinfunction "CLK_4") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "1ac6d576-f590-45a6-9f08-a00c50e6f117") - ) - (pad "4" smd rect - (at 10 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_CLK") - (pinfunction "CLK_4") - (pintype "input") - (uuid "aa55f4b2-d5c2-4a72-a3b6-f6adac989c47") - ) - (pad "5" smd rect - (at 9 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Power/12V_EXI") - (pinfunction "12V_5") - (pintype "power_in") - (uuid "a52fa7ba-6c79-4820-bbd4-0141b0d03492") - ) - (pad "5" thru_hole circle - (at 9 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/Power/12V_EXI") - (pinfunction "12V_5") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "63e57b06-f630-4b86-9cad-44ee2e6228f1") - ) - (pad "6" thru_hole circle - (at 8 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_MISO") - (pinfunction "DO_6") - (pintype "output") - (thermal_bridge_angle 90) - (uuid "a6ea4530-b5ab-4bdd-9c32-c81d4892f2ae") - ) - (pad "6" smd rect - (at 8 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_MISO") - (pinfunction "DO_6") - (pintype "output") - (uuid "8bb66a10-4c74-43e0-bd31-f169e664fd8c") - ) - (pad "7" smd rect - (at 7 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/SP1_3V3") - (pinfunction "3.3V_7") - (pintype "power_in") - (uuid "4605944d-7e30-4fb7-b497-b614b6bb9f67") - ) - (pad "7" thru_hole circle - (at 7 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/SP1_3V3") - (pinfunction "3.3V_7") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "2160c6cb-5310-419a-82d6-daa6a0929dcb") - ) - (pad "8" thru_hole circle - (at 6 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/SP1_3V3") - (pinfunction "3.3V_8") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "cdbf3690-32ae-4ec5-91e5-306314a6862f") - ) - (pad "8" smd rect - (at 6 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/SP1_3V3") - (pinfunction "3.3V_8") - (pintype "power_in") - (uuid "83d92e1c-4728-4004-9cc6-a5e60bec3f17") - ) - (pad "9" smd rect - (at 5 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_MOSI") - (pinfunction "DI_9") - (pintype "input") - (uuid "d1a0e60a-d294-4ff7-b17a-0c8d4452e371") - ) - (pad "9" thru_hole circle - (at 5 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_MOSI") - (pinfunction "DI_9") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "fc65fe63-43ac-4f33-9659-399b008bdb48") - ) - (pad "10" thru_hole circle - (at 4 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "/exi/EXI_CS") - (pinfunction "CS_10") - (pintype "input") - (thermal_bridge_angle 90) - (uuid "d585189f-8304-4bfd-9bdc-1e3eca661dec") - ) - (pad "10" smd rect - (at 4 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/exi/EXI_CS") - (pinfunction "CS_10") - (pintype "input") - (uuid "e23c74e9-ff78-4021-bab0-3e896a24abe3") - ) - (pad "11" smd rect - (at 3 -4.2) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "GND") - (pinfunction "Ground_11") - (pintype "power_in") - (uuid "1c39952c-b39e-44ac-a2f7-8a63dd9adeb8") - ) - (pad "11" thru_hole circle - (at 3 -3.2) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "Ground_11") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "0985cc29-310a-48c8-b063-041ed735563c") - ) - (pad "12" thru_hole circle - (at 2 -1.8) - (size 1.5 1.5) - (drill 1) - (layers "*.Cu" "F.Mask") - (remove_unused_layers no) - (net "GND") - (pinfunction "Ground_12") - (pintype "power_in") - (thermal_bridge_angle 90) - (uuid "255e422b-219c-4ffa-9d8f-d6aa5d21a2ef") - ) - (pad "12" smd rect - (at 2 -0.8) - (size 1.5 2) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "GND") - (pinfunction "Ground_12") - (pintype "power_in") - (uuid "299ac127-c232-4492-826e-6d9f5c3e7faa") - ) - (embedded_fonts no) - ) - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "7e8d105c-9c67-41e9-9db5-e4fdc991bfeb") - (at 195.4025 82.9) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R8" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "3829fd64-a0e1-488b-8a44-a455570eb957") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1M" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "e8f1ac1b-28df-469e-8066-ecea42ffcb91") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "67efee2c-7ebe-4878-b770-689996c482ef") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "fef56dde-0c75-4bdd-b044-d33819fabf0c") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4817d285-1ed6-40b6-8c79-8cafffaf2f2b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fde5ba80-77eb-4ccc-beed-93cf1810b26f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/28c94766-2630-4d68-bc34-7f94731bafd4") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.254724 -0.5225) - (end 0.254724 -0.5225) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "494d9d1f-7805-4a74-b5e3-56c599752914") - ) - (fp_line - (start -0.254724 0.5225) - (end 0.254724 0.5225) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "83816f3a-4f3e-4efd-83ba-39b412589de8") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "efc28274-732a-48d0-9218-98f2ec56c2ad") - ) - (fp_rect - (start -0.8 -0.4125) - (end 0.8 0.4125) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b35eb987-b74e-4fd1-b3bb-86b0e9d5ce17") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f36d2064-250b-456a-a4ae-fdfc8b4c0aeb") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.9125 0) - (size 0.975 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "7fda4ea7-2be8-4401-bddd-ba4ac8702090") - ) - (pad "2" smd roundrect - (at 0.9125 0) - (size 0.975 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "31714dba-f7e2-420c-82c5-72d45779b1fb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "7f312c74-96a7-4289-9c95-b4f9291a170e") - (at 63.7175 119.32) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R15" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "bca0aec0-1aa8-4ecc-b0ef-834af7b9e9bc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "330" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "ec2f463b-dcf7-4ba8-ba5e-cf90b807a4c0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a89ba424-2b18-4b51-847b-5dfc232080f3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "3f94f317-5b24-4fbe-bbd7-a7398ca19b60") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "870fb649-97a8-4c1f-b1bb-4552d64b184c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c115c806-6b8d-4351-a3f9-1c307f834bf7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/491a3ca2-910b-44fb-9a75-16317be08099") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "71a6b10b-513a-4868-835e-49c518a8aa43") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bffe7d3d-4da9-4ab4-89e8-887d725705ce") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "84502127-71b9-4be1-bf22-10f3e8f4659c") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "6cc20de4-9d35-411c-a49d-889e35381a39") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "8cd96f05-7c41-48fa-88e5-834c429eb487") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "928385b9-c58a-49dd-b77f-544bfd9593f8") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J2-Pad12)") - (pinfunction "~_2") - (pintype "passive") - (uuid "d899925f-c977-41a5-8b83-19a6499db383") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "80ab0590-af4b-4cb9-b111-6be526b55885") - (at 72.2375 90.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C27" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "77e22bf9-44a0-417a-97af-ed91a6523728") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "0c05d5fa-faae-4123-a38d-6b4250f9bae2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4604ed25-255b-4cd0-84cc-64f7b0adb37a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "25cd9a8f-f0d7-41a3-b789-3d04dbc7025b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "7fc60e36-8b6f-461a-96f8-47bb5b988b29") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f4f32f23-d12f-49d8-8b3a-5e127ad2848a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "19e8ed50-8f5a-41ea-87dc-2b354c66fad6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4ba1fb55-31b4-4fae-890d-32ed7ee02c28") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "728d515c-69b1-4644-b1af-058800415099") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "956b587b-004d-46ad-8eff-801493a7a3a5") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "2018f6fb-1245-466f-8a46-ea30f4c15d51") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "48587b31-42f6-41ea-bdf4-6b7949b91610") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "749c51f2-412d-4b5d-bea1-e5d9fba7f3e6") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "5ed5f6e3-ed60-46b6-9545-8dd824fd6448") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "5d8d3101-b61e-4b15-bfc1-8c82809bbe57") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "81ea70a0-e437-49db-83f1-cde0288b1148") - (at 84.2375 103.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C44" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "f0531d99-5ca5-448b-8ca3-652b94aaf2ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "d2702429-0c2e-4049-8ce0-9573cc99358e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b678c5da-df7c-443a-82a2-08dd2b726831") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ad12a913-db91-466d-a089-07a8440f8853") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "d97909be-9b6a-4edb-9b09-e1c51a286fb8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "45f2cf21-bb91-403d-8141-4565e1c30031") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a66f1925-5ab4-42a6-b0e3-5d931d873d40") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/d1e24540-41c7-4c30-ba19-966c89396a11") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fc98525f-71cb-47f4-a23d-31bed0d696a6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f963c977-1f6e-4ebb-82b1-519ebf404b34") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d457a79e-55a4-4498-a278-5dc925294f5e") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0ce1a481-538d-480f-ac59-a21f5fef7d2c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "b87911b7-aaac-4dcd-b02b-2277fc68da1a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pintype "passive") - (uuid "4910aee7-1242-4dc3-af76-e16f9a0eac48") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d2221115-48f7-4f8d-a7e3-2c4a45407bd7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "821da867-56f7-4a36-86d4-e7da9c8c57d9") - (at 177.4025 83.9) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R5" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "47a57d45-d743-4587-9645-ee401e1bc9cd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "6d95934e-eb38-4391-b09d-9265437be185") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "80bff0ba-e4ab-42be-b74f-1777900d523e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c6898185-f11d-4b19-8681-a487b159131f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "25469d4d-9e33-446c-9d36-7b4bd632b8c3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7a87772e-6076-48f0-9276-1005472faa38") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/d3f8a728-ecb0-4726-bcef-5f87406081d8") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b9def87f-569d-45a5-a31b-9694a121d2ee") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fbdd5589-849f-42be-92cb-ed715d02a8ce") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ceb3d98c-8cfe-45f0-8403-d0bb31f42963") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "991007c4-8128-4a88-a60a-35bc7a7fa8db") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "2914e7d6-d34e-4df3-80a6-802328cc9aad") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "677a30a0-36de-4148-b185-8cf83c5d68e6") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/GC_ON") - (pinfunction "~_2") - (pintype "passive") - (uuid "74746c5b-cea6-4078-9c34-5ac08e32ff16") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "863f96cd-6abd-4268-a4b9-8a171cea15fc") - (at 80.2375 104.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C30" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "e8e50628-5854-4046-8820-2098b14741be") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "17844d92-c073-490d-b7e7-3728d8057a00") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "797aa1a8-5a30-45eb-b5e9-076d00c41d6a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "98cab10d-5943-41eb-8a0b-be9792bfbbb5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "1be4a317-b106-4d14-8f19-064551d975eb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5bbbcb71-e750-49b8-9365-88114a4f6d6a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "addb4513-a2e3-4cd6-8066-6c815c0c978c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/19d0fbca-0635-4f4e-9e3b-e407a6625f21") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dc0bf41e-acdc-4a03-972f-71c9b50f2d73") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "67ed31aa-8a3f-4559-a358-20416e4b6fb9") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ba17f9e6-a39c-48c3-a8ba-1cc610cc7c99") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "42bd4e68-ed87-45e5-873b-9637d17159f1") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "04906e5f-260b-4313-b442-1048663cb5f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "20d43b10-064c-4e0e-93fa-207dc574c679") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d9f2ca70-f6c3-45bb-9b99-7904e3ca9dd7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "866a77c6-ea40-4eec-bc9d-d74587b6542a") - (at 182.4 40.45 180) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C16" - (at 0 -1.43 180) - (layer "F.SilkS") - (uuid "21d37c69-1bff-4f4a-844e-7652f9c805e0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 180) - (layer "F.Fab") - (uuid "fc58f4a4-8a4e-4099-8891-4d4ac4d892ec") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "4c216ec4-6e5d-434d-99bb-90780aef3404") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "5b52917b-2c81-410f-bdd8-a69744965b47") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 180) - (layer "F.SilkS") - (hide yes) - (uuid "e4b953f9-615a-4884-a05f-a2fe043197d3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "57ecfb4a-3838-4e68-bed3-b16179647724") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "508650db-8144-4603-998d-d266303f7749") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/fd75998f-f65c-4a86-b2a4-20e7c515341f") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "125c77ec-d99b-41dc-9458-d63fe300ae08") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f894caf1-2b63-4446-bf2e-3a8e2f8993ac") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d74d6864-0dd7-4701-8715-9d9f403767fa") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "b484827f-5cb7-4f9a-91ba-dec3b3d2d742") - ) - (fp_text user "${REFERENCE}" - (at 0 0 180) - (layer "F.Fab") - (uuid "c776aacf-4058-4ccd-8971-bb8a5fd16993") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VDD1_ISO") - (pintype "passive") - (uuid "dc5f9fb6-6c8d-43d5-9b3c-090e529bc674") - ) - (pad "2" smd roundrect - (at 0.8625 0 180) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "2a2c5342-279c-4752-ad31-f16b92f10348") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "hardware:USB_C_Receptacle_Hanbo-MC-711-H72" - (layer "F.Cu") - (uuid "86fa67db-403c-4428-b380-0473feb20b96") - (at 175.7 43.425 -90) - (descr "USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf") - (tags "USB Type-C Receptacle Through-hole Right angle") - (property "Reference" "J1" - (at 0 -5.25 90) - (layer "F.SilkS") - (uuid "6a687eea-b8e8-404c-add2-4866d47f7b49") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "USB_C" - (at 0 10.95 90) - (layer "F.Fab") - (uuid "356409cb-c7af-4b32-9ae1-e85e5d71c4cc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "705851f9-bd5d-4846-ac4c-522ccd58d394") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "458aa5c7-90d7-4497-91bc-ea28f7f44c3b") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "USB*C*Receptacle*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/32dd254f-fa86-4d6e-911b-5e9f063226e2") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "SH" "B1" "B12" "A1" "A12" "A9" "B4" "B9" "A4" "A5" "B5" "A7" "B7" - "A6" "B6" "A8" "B8" - ) - ) - ) - (attr through_hole) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -1.5 4.25) - (end 1.5 4.25) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9ad1a202-072b-4a78-8ec9-3276d7c7ce11") - ) - (fp_line - (start -1.75 -1.2) - (end -1.75 1.25) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "057dc51b-214d-4f62-bc36-d509bab8658a") - ) - (fp_line - (start 1.75 -1.225) - (end 1.75 1.225) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a2a87633-6285-43a2-8966-2746601a936b") - ) - (fp_line - (start -1.5 -4.25) - (end 1.5 -4.25) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2865d3b9-5cce-4604-9b02-03e57a0ed61d") - ) - (fp_line - (start -3 9.95) - (end 3 9.95) - (stroke - (width 0.1) - (type solid) - ) - (layer "Dwgs.User") - (uuid "f552fcc9-55cf-4c28-a947-192552194852") - ) - (fp_rect - (start -2.08 -4.25) - (end 2.08 10.25) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "50ccd192-24a6-4819-97f9-8d8af994c721") - ) - (fp_rect - (start -1.5 -3.95) - (end 1.5 10.05) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "40d0f202-db94-4dc4-8ca5-c5b3c1ea955a") - ) - (fp_text user "PCB Edge" - (at 0 9.55 90) - (layer "Dwgs.User") - (uuid "609002a6-cb22-4b82-bb58-e8b5551762f3") - (effects - (font - (size 0.5 0.5) - (thickness 0.1) - ) - ) - ) - (fp_text user "${REFERENCE}" - (at 0 5.1 90) - (layer "F.Fab") - (uuid "847b6b02-8524-4469-90d1-b61bf57033d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" np_thru_hole circle - (at 0 -3.575 270) - (size 0.85 0.85) - (drill 0.85) - (layers "*.Mask") - (thermal_bridge_angle 90) - (uuid "1dac2e1c-5147-4035-926a-3ed8c3b9dabb") - ) - (pad "" np_thru_hole circle - (at 0 3.575 270) - (size 0.85 0.85) - (drill 0.85) - (layers "*.Mask") - (thermal_bridge_angle 90) - (uuid "2023c469-4c27-4271-af4f-d21bf110025b") - ) - (pad "A1" smd rect - (at 0.875 -2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_A1") - (pintype "passive") - (uuid "114b2575-3c1a-4c29-9c4d-3dec3974c62d") - ) - (pad "A4" smd rect - (at 0.875 -1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_A4") - (pintype "passive") - (uuid "954f30a5-e4a9-44d7-85dd-07c53a3e8759") - ) - (pad "A5" smd rect - (at 0.875 -1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/CC1") - (pinfunction "CC1_A5") - (pintype "bidirectional") - (uuid "6ec79e3e-2a0a-4957-8fb2-c5d5842e09f2") - ) - (pad "A6" smd rect - (at 0.875 -0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDP") - (pinfunction "D+_A6") - (pintype "bidirectional") - (uuid "7fe8d9ac-ce1c-417b-9a1e-71c0bf4c575b") - ) - (pad "A7" smd rect - (at 0.875 0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDN") - (pinfunction "D-_A7") - (pintype "bidirectional") - (uuid "72d2eeba-184e-4680-8c62-420bd457d78b") - ) - (pad "A8" smd rect - (at 0.875 1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "unconnected-(J1-SBU1-PadA8)") - (pinfunction "SBU1_A8") - (pintype "bidirectional+no_connect") - (uuid "9000cf7e-52c0-4fb7-bd1d-40e19ea64baf") - ) - (pad "A9" smd rect - (at 0.875 1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_A9") - (pintype "passive") - (uuid "de7ddd79-50d0-43c8-a1b9-da47e98f5933") - ) - (pad "A12" smd rect - (at 0.875 2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_A12") - (pintype "passive") - (uuid "cfc8102b-679d-4a2c-87ce-47835991d9b2") - ) - (pad "B1" smd rect - (at -0.875 2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_B1") - (pintype "passive") - (uuid "f1f6ed21-55c4-485d-aab7-6aa5cbd4d234") - ) - (pad "B4" smd rect - (at -0.875 1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_B4") - (pintype "passive") - (uuid "1e3a0536-51e1-4dcd-b7d5-be3236ca0fee") - ) - (pad "B5" smd rect - (at -0.875 1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/CC2") - (pinfunction "CC2_B5") - (pintype "bidirectional") - (uuid "f56fb2fc-5a28-4810-b37e-ebba688c93b4") - ) - (pad "B6" smd rect - (at -0.875 0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDP") - (pinfunction "D+_B6") - (pintype "bidirectional") - (uuid "78cb2df7-a72a-4499-b7b2-da005587efa4") - ) - (pad "B7" smd rect - (at -0.875 -0.35 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/UDN") - (pinfunction "D-_B7") - (pintype "bidirectional") - (uuid "5d14e0aa-d319-4aec-8d71-63e4295e8cbc") - ) - (pad "B8" smd rect - (at -0.875 -1.05 270) - (size 1.05 0.35) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "unconnected-(J1-SBU2-PadB8)") - (pinfunction "SBU2_B8") - (pintype "bidirectional+no_connect") - (uuid "37303c62-72cc-4128-aed9-373ffedf48d3") - ) - (pad "B9" smd rect - (at -0.875 -1.8 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_B9") - (pintype "passive") - (uuid "bf94e7f9-d51c-4cfa-a871-585f8449edf0") - ) - (pad "B12" smd rect - (at -0.875 -2.6 270) - (size 1.05 0.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (net "/Usb Connector/USB_GND") - (pinfunction "GND_B12") - (pintype "passive") - (uuid "b2485dc3-787d-4d00-99b7-685c1898614b") - ) - (pad "S1" thru_hole oval - (at -2.03 -3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "d160eed9-db64-46ec-b42e-7961142db926") - ) - (pad "S1" thru_hole oval - (at -2.03 3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "c0cf3bee-872f-423a-a1db-7e13f00bdbd3") - ) - (pad "S1" thru_hole oval - (at 2.03 -3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "715c4809-06a3-424a-ab31-c5944487f1f0") - ) - (pad "S1" thru_hole oval - (at 2.03 3.05 270) - (size 0.8 1.6) - (drill oval 0.6 1.4) - (layers "*.Cu" "*.Mask") - (remove_unused_layers no) - (uuid "aeed4d96-1603-4d6f-af05-ee2a3b45a34e") - ) - (embedded_fonts no) - ) - (footprint "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "89d56981-4acf-41a4-9b0d-635b363983c0") - (at 64.3 68.12) - (descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)") - (tags "inductor handsolder") - (property "Reference" "FB2" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "e0118c00-1ad8-4f53-87a8-0e5026d8255e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "600R@100MHz" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "109659ac-3e44-4f84-aefc-92961fe8f02f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "55f16a3d-bc60-4a56-8f2f-ee33b9494a9f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "43d90a0e-0cdf-411a-b68f-649fcc6feab7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "4ca3f6b7-1624-41b7-bc1a-daafa96ba3fa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Current" "200mA" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c0de3cb0-0764-45ea-abfb-21bfed516c6c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Inductor_* L_* *Ferrite*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/e5f506f5-b7d3-4532-bead-734eb617ac9a") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.171267 -0.51) - (end 0.171267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6794d30a-e1ab-4fbd-a186-01795d06e86d") - ) - (fp_line - (start -0.171267 0.51) - (end 0.171267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "abd23de2-dc7c-40f8-a816-4007bcd1109c") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "4a2f3652-9ad1-483f-a876-86587b1ba80c") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "9a5a8cdd-0cd3-44e4-be0e-38956ac0ea2c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "061b963a-9d7e-442a-bff1-92fe3047627d") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.875 0) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "c5655258-7c4d-4dde-9623-2e603a31b63b") - ) - (pad "2" smd roundrect - (at 0.875 0) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPLL)") - (pintype "passive") - (uuid "672af969-4833-460e-86de-e026d67233d2") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" - (layer "F.Cu") - (uuid "8c305726-92ff-4da8-800b-c73b350b5c90") - (at 65.36 56.18) - (descr "SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf") - (property "Reference" "Y1" - (at 0 -3 0) - (layer "F.SilkS") - (uuid "cc97e9e1-7ff2-4782-a30e-2fd07e9725a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12MHz" - (at 0 3 0) - (layer "F.Fab") - (uuid "734b3ffb-4ca7-4151-bf0f-4ab79bf773a9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "98e2d620-2b7b-46ae-8fe2-a4a79d4bdaf0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4fe8bbf2-bf32-41be-abe2-ba453e9f36d7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "crystal_resonator_oscillator" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "bde986bc-3723-4146-ab15-f834d055944a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "ESR" "50R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "edc34289-0f3c-43f5-b44f-92b916c7adbe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "±30ppm" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3df3e657-bad4-4273-a325-0b2e1145544a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "CL" "18pF" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "475d8c13-4a10-4c76-8413-8ffe84ce0c82") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3daa6205-ddcd-4d67-b981-61883d853608") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c11a0060-8ef9-404b-83c0-79558044b1d5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Crystal*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/b2c46570-9a02-4535-8cfa-bbcb003e9ab5") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "4" "3") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 -2.31) - (end -2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e8956a0c-025b-46b7-9a73-08a9f12318f2") - ) - (fp_line - (start -2.76 2.31) - (end 2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d3cc83ed-507e-4546-834c-bd499df50724") - ) - (fp_rect - (start -2.75 -2.3) - (end 2.75 2.3) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "06563fb3-858a-42ed-b44b-6a7670e80fcc") - ) - (fp_poly - (pts - (xy 1.6 -1.25) (xy 1.6 1.25) (xy -0.975 1.25) (xy -1.6 0.625) (xy -1.6 -1.25) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "c93b5313-8878-4ff5-9000-65b1cf115068") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "af9f39ac-bb36-4495-bb08-c2e3d6325405") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.45 1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "Net-(U8-OSCI)") - (pinfunction "1_1") - (pintype "passive") - (uuid "08115c2d-2b68-40cd-b274-39caaaf2616e") - ) - (pad "2" smd roundrect - (at 1.45 1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_2") - (pintype "passive") - (uuid "225bf9dc-e584-4b9a-910b-c4968bbc8e53") - ) - (pad "3" smd roundrect - (at 1.45 -1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "Net-(U8-OSCO)") - (pinfunction "3_3") - (pintype "passive") - (uuid "b9b9bb81-146a-47a0-82a9-578a60b60cb7") - ) - (pad "4" smd roundrect - (at -1.45 -1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_4") - (pintype "passive") - (uuid "f2115665-d12c-4bf0-8b3d-1cad15c4eb89") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "92916c2c-57c7-4230-91dd-4160bcea946c") - (at 75.2375 89.5) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C1" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "e62d7952-4471-48f2-a883-e261298684f2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "f92c69ca-5988-4a04-a1a2-83db5a61d120") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d4044a84-52d9-4066-a0ab-24bd14b260fd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2e463618-aec6-490d-b543-6c404d540cf7") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "160d21fd-4d82-43f7-8b09-e3f80122f4ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d43879ab-0728-432e-a9a1-80909b1f72aa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8137fcf0-cb18-4e8f-8d66-e341c8771306") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/40418d5d-4330-4011-bbd6-b7348f3de494") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d954100e-7dda-49f4-882e-b228eeb35926") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f4b4042c-f843-4d00-8308-7640270a2dfd") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b8a01f91-405c-4f4a-b373-cbf12f9f4249") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "afd5bed7-4be4-429c-8bbd-ff7b7724e8a5") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "163baaf8-9a6c-4723-b36d-1ef4408488ca") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "35a80c8f-703b-46db-90d7-e35cba078b75") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "cb13b773-9d90-46a5-a19e-25797344ad8f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "929e91c4-bff6-4c50-9d6c-240b11b0f952") - (at 180.875 40.1925 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C15" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "a137246c-99ef-4798-9ae8-619f3620b7bf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "f7a5cb7a-7620-4d11-ad2b-c94f11006d5e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "fe11cf9a-99ac-4246-8b9c-b00ea92316c5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "50df0a04-44b1-42d1-8192-2789cc2c809d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "1623f590-5f2b-4046-b346-c8be98e81b83") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c4e9fc9f-ba38-4a6c-acf4-361a80d8b938") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0dcc861f-7cf7-49bf-94ca-7a0adb7415f3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/96c56b86-fd5a-49db-93bd-6bdb9369ace0") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bd000af7-3b29-46c8-9f43-94b1ae4f3a6d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e71d6c93-b997-4403-a980-952699de4998") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d2bb86e3-1714-4fb6-9dfa-613693ac40a9") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "5306786d-8c9b-475a-9ba9-cf8e10788e6e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "e460dbf2-5609-417e-83c9-d5c7752f5c4a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "94cc2f19-b6c7-4035-a59b-71b044480a81") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "1b691923-3557-4397-be39-7f9671fca1a3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "940cca17-41bd-4227-a61f-c95d5891f7c1") - (at 163.0325 83.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C52" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "04fd2a25-cfeb-4ea5-8718-a4580e440a46") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "b0278df4-0914-4729-a9df-da8c2da26229") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "326a3c64-033d-4adf-b869-d7041402649b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "729be991-5a15-4528-b639-c8e7794f55bd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "177aad15-cb7b-49e5-9cc5-815dd803c627") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "031e03ec-6cbe-4068-8039-019867c2bc28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9153293c-65ad-4260-8e7c-abd2c251de55") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/a68469bc-94a6-40c1-92f5-6966ad8047ea") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8d130511-cb3d-412a-808b-2612af39de56") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "756ade61-7582-49da-97a8-4c9a49a2ad8c") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a17c0159-9a03-47bb-845c-4afda65855c7") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "113e5333-f053-462d-b780-27301b244abf") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "c9d4f059-d68a-4429-866d-d3435240830d") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pintype "passive") - (uuid "b0e3827f-0a0e-435b-a3ba-2e9429144430") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "e44177dc-00b4-4fa8-8976-7598893b7263") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "969f970d-08ef-4e03-8ac5-7b24c83476da") - (at 71.2375 92.5) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C18" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "86944991-9e80-4074-b2cf-73ade4437b49") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "1e8e7a02-4427-4ea7-a0d0-bc5f2eee8988") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "635df46d-82a7-4b6f-90be-18fe155bd5c3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "88af1525-6570-4f72-8667-5638e831c4d1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "b507451d-436b-4b75-ba08-7743fee2e2c8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "198f43f2-d185-4936-a4ab-fdf00dfe3c8f") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0e364865-d746-4d54-8686-924334684bba") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "dddfcc00-ec2c-41f6-83dc-113c05bad653") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "644d12c7-1a58-47a1-a250-36275c84a950") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a275fc18-e5c4-4ee7-9d38-977f313eadae") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/5V") - (pintype "passive") - (uuid "a5b510ec-008f-48b1-b89d-33938cc813b1") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "eca4d9fc-b64e-4755-8b97-11b18bc4792f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "99295833-189e-491b-a2da-d7230ab3fd9f") - (at 193.4025 80.9) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C14" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "e617a92f-f788-4367-8b29-0673d6817553") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "5ebffaef-1ffb-4431-8a0d-5d945c523442") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0e159ab8-05ab-42f3-ad81-8a0c62b9436d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "20db6b78-d87f-4d19-911a-7b06def5d85b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "02f6aa9b-5bf5-447f-93a6-2bf4f432b7b6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2517b1e2-1870-45c1-8454-924998b30872") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3613507b-e26c-4d50-a796-4c5636a655a5") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c30acc73-b84b-44bc-831c-5f75ad8a72e6") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "79ac2486-7ddc-4981-abbe-dd962f7193e1") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "fa89eae8-4d9b-4bdf-9602-f777865d8648") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "4c366684-9c79-4606-8ead-2cc4cb11906d") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "c8c8623d-f443-435b-8a0b-ae957df27d16") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Inductor_SMD:L_0805_2012Metric_Pad1.05x1.20mm_HandSolder" - (layer "F.Cu") - (uuid "9ce11538-72c1-4f03-89f9-5821c9dbcc2f") - (at 81.94 66.82) - (descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "inductor handsolder") - (property "Reference" "FB3" - (at 0 -1.55 0) - (layer "F.SilkS") - (uuid "1ad88574-bc2a-417e-9fea-b81117c6f254") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "120R@100MHz" - (at 0 1.55 0) - (layer "F.Fab") - (uuid "8354c1b5-aac5-4cb2-bc55-db28059b7603") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e96cf68e-8782-4381-b32d-2c0ccbdda656") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c98a6ef7-8b38-4173-83ff-c01825b09d6b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "20058ee7-33fc-47df-8f21-7a995c323820") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Current" "1A" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "540280b3-1c86-4ef3-bf5f-a2196fd4788f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Inductor_* L_* *Ferrite*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/37825bb5-a52b-44e9-a948-b80f4dcc7d17") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.410242 -0.56) - (end 0.410242 -0.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9a8d9ce4-a64d-4cd0-a9d0-e269b32e641e") - ) - (fp_line - (start -0.410242 0.56) - (end 0.410242 0.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2487d98b-f770-4420-ad40-12e2884851bb") - ) - (fp_rect - (start -1.93 -0.85) - (end 1.93 0.85) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "0fe02217-6ca6-497b-a4b6-beff60e96022") - ) - (fp_rect - (start -1 -0.45) - (end 1 0.45) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "4bc2c340-1566-45cc-bd6c-27fc8446aefe") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "29f58963-517c-4118-bccd-bf77ca890237") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.15 0) - (size 1.05 1.2) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.238095) - (net "/ethernet/1V2O_RAW") - (pintype "passive") - (uuid "b110656f-b358-4c4b-853b-b2f46931e9d0") - ) - (pad "2" smd roundrect - (at 1.15 0) - (size 1.05 1.2) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.238095) - (net "/ethernet/1V2_ETH") - (pintype "passive") - (uuid "450e274b-3afc-465c-907f-9e7ca292e944") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "9e066c71-e4b5-4905-be6b-36c5c99661e4") - (at 241.9 59.5525 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R1" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "a00e6010-702e-45f5-8a2e-6e77dca9482c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "33k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "6a22189e-9787-461e-b278-ea29ab9917d1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "f28f366b-22fc-4b63-a493-b2b0bc52022a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "30114005-ac48-4d50-b303-428d701b41bc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "6e43aa8d-11ec-41f7-8e46-1fff133eed5a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c0f41243-d9ad-4ed9-8749-d97efd174951") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/3af0a60c-0acb-4283-ae24-9e595fefdf76") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c6267495-fd49-4d11-831e-09ff53e01148") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e7761c7e-621b-4e70-936a-60f7db75232e") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8151369b-62af-44de-9350-596a1e4e28e8") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d8880813-bad9-412c-bd9c-b23e73bf3a2a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "de2748b4-01a1-4e15-b1c7-339861d9971e") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "d939b488-03a3-4c1e-89e9-7bac39309436") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U3-VFB)") - (pinfunction "~_2") - (pintype "passive") - (uuid "671732b0-afb6-4f16-b1da-c4d7b7c25710") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "a496ae6e-986f-44a4-a6d5-accc0d7e1ccf") - (at 81.2375 120.5) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R12" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "af6197ea-93ab-48d7-83da-e222ba8b4bf1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "cda3966f-bc7c-4b99-b2ab-3cd91a6da892") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "584bcea8-8593-48d8-b0f6-f346558e73f0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "106f83a1-5e6c-4f05-a021-de84d8f6e780") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "ccc06b5e-2f9a-471c-a64d-daf6f6343382") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "69f6f505-c589-4a79-b8c2-1190fef7c958") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/9a32e9a6-0619-4f80-a056-6d0e2f66bc71") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "82bc2917-5571-4337-896d-472b4bc89a3d") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b004e965-2748-4512-9211-5e5ea13b0116") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "7203b409-501a-4599-9151-043ab3d41ec0") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "5b2e1b99-4447-4628-9152-edc139544431") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "590da29e-5d05-4bb1-9528-054f865a5306") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "1b05e904-42d1-45b2-8720-3fdccfc36378") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CDONE") - (pinfunction "~_2") - (pintype "passive") - (uuid "a8e9db9b-b46a-4496-800a-7187c5d54bbf") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "a83c1071-65c7-4230-9253-a63e58f8cccc") - (at 173.075 40 180) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C13" - (at 0 -1.68 180) - (layer "F.SilkS") - (uuid "bb81bd1e-433b-40d1-ac07-8ce9c62566e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 180) - (layer "F.Fab") - (uuid "fce74ae2-ce95-4f58-a80b-4c39963008ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "85877b65-0fce-47fc-a212-e5d3d9616dc0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "405ea2fc-8bae-4e05-a75d-306f9ba1888f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 180) - (layer "F.SilkS") - (hide yes) - (uuid "12dd3b85-a54c-4bf0-ba6b-6646a3cab61d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c6efc2cf-08ac-4d96-a9e5-3924d822586f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0335e6a8-f3cf-4162-8a04-04e53dac1097") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/3dbfa4c5-ddf9-4f40-8a34-fb081e2dc3a2") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "53f0d492-f099-475f-9741-b6db9008f88b") - ) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ed59599b-5727-45fd-8a59-779d2f10ffe1") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "29941ced-8a2c-4f54-bd90-3f091c6206af") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a795de32-c0b7-41c1-ad8b-d4cf82294d5d") - ) - (fp_text user "${REFERENCE}" - (at 0 0 180) - (layer "F.Fab") - (uuid "1b8b3254-e34d-4a7d-bcdf-f22cdb8dac08") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0 180) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "c2fad89b-ce00-4b36-8ebe-565f9f723a4b") - ) - (pad "2" smd roundrect - (at 1.0375 0 180) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "1c9411c2-e2d8-4c8b-9f32-d150c876728a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "aa074606-8c91-42cb-a377-d72d946a75f5") - (at 72.2375 89.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C36" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "def4de50-9b9b-47bd-9db4-a2aad8a00ae7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "d43e3853-e294-4971-9125-959a582eb150") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5ff35e99-765e-4d32-8a40-753e48b44bf1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "bc551ce8-e383-405c-94a5-c23dbae4fef1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "57615ba8-4edb-4bf4-9fb9-774d41560f6b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7ebb34e9-7c18-44fa-b939-8cfcd42d16bb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "220f3d1a-4794-4b29-9828-b110b3f50473") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/a0ff8352-595a-4cd8-b36e-256eb1cc7db0") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8ed32892-cfea-49f1-b68b-fd16f888e188") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "60c3f880-a657-4e18-b6da-5920b06c0042") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "23b9c4b0-5b1c-489d-a1fe-a5033b7e5e88") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "167b537f-dfcf-4ed5-993f-c81cfffcb280") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "fc56aa21-c6f5-4b85-8eb1-2cace234b701") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "8d2b94d7-5ce6-4509-a06b-bd296a7212a2") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "f176d8a5-d296-4cf8-b012-b06347c45b2e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "af2471ca-806c-49ef-badb-6eb09c9b2cb3") - (at 241.925 57.0775 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R2" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "44539a00-cdd7-4890-be56-d526ae87a327") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "0736c411-30f5-47a9-b23e-96ebeb4b92f4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "9aebaaf5-d10f-4ab1-84d6-91eba8b8aeea") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "c3bbe6d4-6542-410d-b9d2-8580ec6b2814") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "2d3bd7e8-802f-4667-85b0-340c06a35134") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ec0ecf8f-99d3-4e53-a49a-406ab23a062d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/dbd2e12a-da5d-4b10-9a44-b30c81d5cd46") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "32c918fc-a021-4864-a77e-52f59a64ebf7") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fb709a67-a2cc-4cd6-9ccb-67fd687bf633") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f90c1a5f-c16f-4272-acbf-f78dffec6b38") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e0a232aa-f75d-48d5-a273-e87ed8c0bed8") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "447ef2fc-aa27-42b9-a8e3-74e0b72bec78") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U3-VFB)") - (pinfunction "~_1") - (pintype "passive") - (uuid "4f5f5a85-5fea-4df0-b8fd-3f93c611757b") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "~_2") - (pintype "passive") - (uuid "0984da66-9d43-47bd-84b0-a424cb61253f") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "b08302fb-19f5-43fe-8c9f-f458f6756d0c") - (at 67.0875 119.325) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R14" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "3e1b8621-f69d-462a-b069-22ea124ee150") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "330" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "dce16bf5-9fa5-4953-af37-8392e33b825d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2209fd1b-6873-430a-a9a1-539fc304c1ed") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d93006b3-8a07-47d7-935b-8cf207d88a2b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6d464373-990c-4515-9354-7e84b644b545") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "65b2b300-8c5d-4c3a-acd2-6232914eb8fc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/a3738cfe-a3fb-4236-85b3-1a7829a89d7d") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c82f0597-7870-4c7f-8cad-db60f516e75d") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "864397af-bd97-4ccd-8680-94dcbfa3c856") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c437bf07-75b7-49c4-a4dc-b870fb4ff080") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "67df279e-05df-4909-af3b-599f7e32a52a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "77c69883-f4ce-4d25-9f17-fed6cb17ca3b") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "98439891-ab68-415f-9c31-66a7af04bf29") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J2-Pad9)") - (pinfunction "~_2") - (pintype "passive") - (uuid "46ab6650-9622-41a1-8a9c-71fc2b2e0513") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "b576066a-b83e-4dae-80e3-399980203c51") - (at 85.2375 106.5 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C2" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "45133d84-64a4-4271-8ba8-f6360027563a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "3b3e3246-d7c3-402e-955b-2d8704d0bfd5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "402c9859-d549-4bfe-b952-fd6237a3b2bf") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "07869858-6fa9-4cc5-afe9-54862c3a3d28") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "b3256fc4-018d-478a-b8f5-773509dec974") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e937ee4e-33bc-477e-9309-09257ac54ca9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d78e1f2c-1245-4d8a-9e1e-9ca7cc2697d3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/15183678-c2b8-4762-8391-d50dbec9b01f") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "37e75254-0d5c-4db0-bb20-ea7dd051dfa3") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "8546d7fd-da37-41b4-9778-1a547a764ee3") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ca42a9da-ff94-476c-8eff-48f6f81bd5aa") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "df4c7081-dc9f-4e92-a15c-91730745f232") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "4fe8f1ad-850c-4e11-b237-3fbe616e4a7f") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 90) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "d1daa785-71c2-4b0d-bb1e-c8daefccd0a2") - ) - (pad "2" smd roundrect - (at 0.8625 0 90) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "a995351d-6c37-422a-9047-66aca142767c") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "b5784b0b-c967-4032-a800-cf176c42c27f") - (at 168.0325 91.8) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R9" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "71f4f3ef-dcef-4478-b93e-e7fa2e8ac6df") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "f173e0f8-f487-4b57-a758-712ccf2bb27c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "131f840a-e99a-41e3-b71e-61e7255f27bf") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "4452537d-e32e-4ffb-a166-28b6490650a1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "9109ccd8-7a7e-40da-be3e-de9261aa0c2f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9b4a851a-93fa-43e6-91e5-52576250d431") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/93aff3cc-9831-4437-b1aa-0e5dbb35883c") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7b6a0f32-18e2-4dc9-a85a-915a068cf063") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cf846334-6a95-49c7-8a22-f620a3d974a7") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "da41dd46-289c-4b6d-bcbf-ec661895807b") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d2e8cdd5-5b12-4ca6-ad4e-11e539fc106c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "70adb9e7-7015-4c7f-9f94-bad60856187a") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "7a935e6c-5b57-45cb-b23f-988814769af7") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-~{RESET})") - (pintype "passive") - (uuid "1fd53e42-a1bd-4dd0-b6fa-587b7274214e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "b7d45de1-4fdd-40ce-b3a6-486e9388c867") - (at 77.4225 98.965) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C17" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "d370df9b-4e37-4863-9016-240207276421") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "3c8e1522-b989-44a3-aad5-2e08d2341fc2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "342fd633-3bb4-4dfb-9073-b2c8ccbf75cc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "299319b5-99bf-4ab0-8569-71415e668e82") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "ec8ef108-2685-45a7-849c-d15b46d7c447") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "4d3bce7c-a0e5-4031-a153-7ba46d1ddad6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "29c04c62-730a-4911-b77a-7e6fa3884513") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/abfcc5d9-af5d-4a76-88e5-5d0838395d84") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d87ad5a8-8ce2-4151-bfa3-d81daec1c6a6") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9bb02661-0b13-4efd-9ec2-3ac4880055d3") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "02f9314d-1a9f-4eb4-bc44-25a441a908f9") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "2319f1d9-d8c0-4a3f-8114-5bd421ef61e9") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "dfe80639-31f1-4a3d-847e-61a08d226c00") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Usb Connector/USB_3V3") - (pintype "passive") - (uuid "ce23b9d2-67e7-432f-985a-568f02c2e659") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "73db575a-c873-4155-948f-da78bf4a74a5") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "b8954cb6-6bb3-493a-aab1-c48a35f16f69") - (at 88.2375 103.5) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R16" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "50a0a5cd-ef71-48ad-b9c9-d7d31ddccfc3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "12.4k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "9ea4dde6-bf58-479f-be52-83e056e4571d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "711bbcb6-489c-4fd2-be96-324f3edac1e4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a563d6ea-e570-4a32-9ea7-acee77866ddd") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "97d02ed6-77a0-471b-b1c5-506967352e9e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "45c422bb-ec14-4f7d-9dbc-e377e0fdc8e4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/8fa0e05f-7b05-4576-a7f1-bee85be14a55") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "67c457d3-b513-49dc-be5f-5a0516863435") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3ca52b01-42da-436a-b904-f6c45abe1f7f") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "dc93e5aa-9b46-4a17-ad80-c561271996ed") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "eb30723b-e8c1-4e16-b0ca-4825a0c14ada") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "82a31124-ed7e-42ec-b62f-1737f55b2b87") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U11-RSET_BG)") - (pinfunction "~_1") - (pintype "passive") - (uuid "7052f03a-1ee6-48be-a2b3-5e3f5411b1bd") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "~_2") - (pintype "passive") - (uuid "0440f1f7-b88c-4585-8058-141f1d3d8e8a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "ba2d8dc5-749e-4850-84bf-ec65f031faee") - (at 198.5325 77.025) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C31" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "d05eeb29-7ff1-4be8-8698-0422559f4f14") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "4.7uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "57acd36e-7c57-434c-a295-69eb187c5184") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "442ec5ed-e485-46fd-af8e-401b1fd744eb") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0991f5fe-6f3b-4210-a74e-f76171c6bbca") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "77724270-5e32-4c34-a35c-b5404935398a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8ce64e50-d480-4d98-bf14-dd4a4b50c606") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6c118fab-17f7-4e75-a8de-b098e4041327") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/05f0dc12-4220-4878-a923-954d49d73d25") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "af78940c-cbf4-4723-bc43-04210f8e78c5") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "606376de-36b4-4048-95ca-a4ac8636a5e5") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "2a47d35d-8d45-416e-957d-a95fcf8d985f") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "13c450d7-e4b9-44ce-b517-cb8380a15cab") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "4b3d5562-dc05-4a55-b919-ebb7dd267418") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "bf2f10aa-f9ad-48fb-973a-15004a56cd6a") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "20adfc91-c6e2-4030-b15a-ebe6fbb6a1b4") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c021fe7e-0fbc-4bf9-9de2-522e6d86dca4") - (at 80.2375 105.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C45" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "47848cee-aa6e-447a-a740-fd6352720c62") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "f36ab971-a5e5-43e6-8544-ec1095104abe") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0f9555eb-1cfd-4414-8bdb-c02a4e13c908") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "72ae21f0-1e9d-423d-8bf5-ae60c94585cf") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "94a0d6d4-7f97-4948-bbf3-6bc6234ae3b4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "47caeaf0-dcc9-4478-959a-02e185695eef") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6d4d6dd1-2e1d-40eb-b823-667080876889") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/32fb54c4-87ff-496a-b533-4c8b556284e3") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e8f2fc26-daa4-4710-8dba-455c6275cf7d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "aa0c0db5-2f03-45ed-b626-aa02e18e4230") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "21df449f-13c6-4531-80e0-2325e7a7a377") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "eb47062c-b030-498f-b53c-e24d954a2306") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "c5c9ff7f-ef4f-4920-a9e7-ca23e34dce32") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "f996233a-2b36-4b7f-8b49-450ff3c7ee25") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "4ba0f02b-9034-4422-b193-f9f78cf54cf3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c07dd216-a17f-410d-a491-8fa27f87c791") - (at 84.2375 110.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C34" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "572f9dca-177a-4393-b63a-43cb1bc56f8e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "38c011fb-1a66-49ec-9c4d-027376aa7aa1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "228a29ad-347c-4120-ac84-47a2e5a73d16") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "666a26e5-2b9b-4ccd-abf1-152bdd4828c3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f76213c3-1925-4e82-8a1d-afecf259a93c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6ff7658a-e625-41ba-9905-546e17bb309f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "195998f0-0a37-41eb-b42c-fdd57fdcd7e2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/dad5042a-47c2-4667-854c-aeaf6e74a8be") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ab487f74-75ae-43ee-8221-e15ee93cd1d4") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7b153ddd-1a6f-480f-b714-dd59dc34b244") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "08cc0534-ffb0-467d-8c6a-c187f5495680") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ce31b416-3ca4-463d-8acd-214deb979eb2") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "61d83665-5cff-428d-9389-66098385b4f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "97a3ed37-c445-467d-bf5a-593fb851b64d") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "6708ee57-343f-441f-b006-6fc2e78b58c8") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_SO:SOIC-16W_7.5x10.3mm_P1.27mm" - (layer "F.Cu") - (uuid "c0b72339-e39a-4698-81c1-a381ade62344") - (at 203.25 46 -90) - (descr "SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf)") - (tags "SOIC SO") - (property "Reference" "U6" - (at 0 -6.1 90) - (layer "F.SilkS") - (uuid "a47cb010-0f3c-4f43-b4c5-f45f77228b54") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "ADuM5000ARWZ" - (at 0 6.1 90) - (layer "F.Fab") - (uuid "007b1a1e-ea93-48a1-9574-010f4d595b87") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "bedff438-fdf4-4f9e-8504-1899c4b029c0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "99aa5176-b25d-4457-b2e8-afe6f5480655") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d4af2a86-84df-402f-add9-7cfc2c4c643b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOIC*7.5x12.8mm*P1.27mm* SOIC*7.5x10.3mm*P1.27mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/45129354-a44a-4ad2-b22b-df2c62835b6e") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "3" "4" "5" "6" "7" "8" "16" "15" "14" "13" "12" "11" "10" - "9" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -3.86 5.26) - (end -3.86 5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6ee5be6f-11ca-45de-87c8-57541efd0ee5") - ) - (fp_line - (start 3.86 5.26) - (end -3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "03393eae-658b-4b8e-9c18-3066080de165") - ) - (fp_line - (start 3.86 5.005) - (end 3.86 5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "938f2315-3e45-4812-ba9b-75ab3ac3b8e5") - ) - (fp_line - (start -3.86 -5.005) - (end -3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cb05baab-2e1e-4e98-8eae-9f5237b87826") - ) - (fp_line - (start -3.86 -5.26) - (end 3.86 -5.26) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d71acec2-9908-4be2-bf0b-c79331073bb0") - ) - (fp_line - (start 3.86 -5.26) - (end 3.86 -5.005) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "864fee73-07e8-49ae-9017-b1d0c91000bb") - ) - (fp_poly - (pts - (xy -4.65 -5.01) (xy -4.99 -5.48) (xy -4.31 -5.48) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "a3c77662-0a08-41cd-bc95-87e21155816b") - ) - (fp_line - (start -4 5.4) - (end -4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9edd5735-fd30-440f-b30a-1aac311cb112") - ) - (fp_line - (start 4 5.4) - (end -4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "53ee91e6-dc53-467f-acdd-8e76459b541b") - ) - (fp_line - (start -5.93 5) - (end -5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "22add9c6-a91b-4354-8d1f-84d0f83446d6") - ) - (fp_line - (start -4 5) - (end -5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "55675a65-97a5-4ef4-9089-dbf59ee8651e") - ) - (fp_line - (start 4 5) - (end 4 5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ee1665d3-ee40-477f-a601-ef1850e8b2ce") - ) - (fp_line - (start 5.93 5) - (end 4 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "35f51f2d-4cbd-4c9c-b7f2-82f723e0def0") - ) - (fp_line - (start -5.93 -5) - (end -4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a4f18ff7-58f2-4225-b7b3-b56d7a6cd093") - ) - (fp_line - (start -4 -5) - (end -4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9e20d2a7-01be-404c-9190-ed561dda27bc") - ) - (fp_line - (start 4 -5) - (end 5.93 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5eb835f9-680c-4375-8d8b-234b623ea3d1") - ) - (fp_line - (start 5.93 -5) - (end 5.93 5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7d0c360a-21d6-429a-bb5d-d32a4c53f044") - ) - (fp_line - (start -4 -5.4) - (end 4 -5.4) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8457740d-29f8-4f1b-b96f-028d4e0389aa") - ) - (fp_line - (start 4 -5.4) - (end 4 -5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1302a85a-4859-4598-96bb-646239fe0073") - ) - (fp_poly - (pts - (xy -2.75 -5.15) (xy 3.75 -5.15) (xy 3.75 5.15) (xy -3.75 5.15) (xy -3.75 -4.15) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "26962bd1-4d45-48ab-8970-891da0a9fdca") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "218637f8-2a7e-43fd-bd0d-b0624a129378") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VDD1_1") - (pintype "power_in") - (uuid "44782616-03b7-48fe-8daf-d87c0e46f3b9") - ) - (pad "2" smd roundrect - (at -4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_2") - (pintype "power_in") - (uuid "ec5c03dc-4d43-41db-b7bf-5e44deeadd1e") - ) - (pad "3" smd roundrect - (at -4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad3)") - (pinfunction "NC_3") - (pintype "no_connect") - (uuid "7411bc09-e260-405c-b65d-78a3358cf764") - ) - (pad "4" smd roundrect - (at -4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "RC_IN_4") - (pintype "input") - (uuid "1feb6b33-4e44-49ee-bfc2-a7027c5ccea1") - ) - (pad "5" smd roundrect - (at -4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-RC_OUT-Pad5)") - (pinfunction "RC_OUT_5") - (pintype "output+no_connect") - (uuid "5bb413b8-c5c5-41a7-ad04-bc3d0ccb9e84") - ) - (pad "6" smd roundrect - (at -4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "RC_SEL_6") - (pintype "input") - (uuid "e260295b-6b29-455d-ab54-e1976c953f21") - ) - (pad "7" smd roundrect - (at -4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VDD1_7") - (pintype "power_in") - (uuid "73c417f5-0a53-432d-9651-0ba8ed1234c9") - ) - (pad "8" smd roundrect - (at -4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND1_8") - (pintype "power_in") - (uuid "96ebf3b6-93db-46b2-bc18-784918ef4a52") - ) - (pad "9" smd roundrect - (at 4.65 4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_ISO_9") - (pintype "power_out") - (uuid "fa685e1d-c075-4076-83bf-d42e1aafba64") - ) - (pad "10" smd roundrect - (at 4.65 3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pinfunction "V_ISO_10") - (pintype "passive") - (uuid "6739707d-2640-43e7-bd56-f6353d81dd1f") - ) - (pad "11" smd roundrect - (at 4.65 1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad11)") - (pinfunction "NC_11") - (pintype "no_connect") - (uuid "4a1b199e-d379-4653-a24a-38cf610ed0f0") - ) - (pad "12" smd roundrect - (at 4.65 0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad12)") - (pinfunction "NC_12") - (pintype "no_connect") - (uuid "94e4d6aa-c9c8-4f7b-a446-1a7e2ca518bf") - ) - (pad "13" smd roundrect - (at 4.65 -0.635 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "V_SEL_13") - (pintype "input") - (uuid "101b52e1-0cc6-4024-be9c-3b9d2ab03b02") - ) - (pad "14" smd roundrect - (at 4.65 -1.905 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U6-NC-Pad14)") - (pinfunction "NC_14") - (pintype "no_connect") - (uuid "2c22c2cc-852c-4426-9ad7-f70cbb1b472e") - ) - (pad "15" smd roundrect - (at 4.65 -3.175 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_ISO_15") - (pintype "passive") - (uuid "091f91fd-c3a3-4cbd-a593-2a75e00e063f") - ) - (pad "16" smd roundrect - (at 4.65 -4.445 270) - (size 2.05 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pinfunction "V_ISO_16") - (pintype "power_out") - (uuid "fb485f57-12fc-4b33-87c8-ad2792934d7a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-16W_7.5x10.3mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c261a7a5-67a3-420d-9ac8-051327b40534") - (at 168.0325 93.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C23" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "e07d3948-e921-4f02-9d30-bacfa79a81c0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "6bba60a0-7d25-4abf-8624-ee42e89ad22b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "c98ee57e-12c9-4ea5-b1f2-e5157ca8bbb3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "1481f4ec-0a42-4506-b42e-7cdf08938f87") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "aa8eac92-ee54-4aac-905e-2f206b873c5c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "10e7ed18-f5d1-4560-a4ca-9a9c9f27c935") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "59d6d875-1065-412c-8441-aea3f337bdef") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/f818f753-a2ba-416e-840b-85744c6dd0b5") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2fb55908-b47b-41fa-ad52-735bcc1aea50") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "e553fa8b-9776-422b-888f-a35cd35b40dd") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "14fd1ffc-6a7f-4d1e-a07b-7a1f4704cb01") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d27b204b-fdde-4811-8565-e5c5447576be") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "20859be6-e4fb-4021-bc84-15374d66c129") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-~{RESET})") - (pintype "passive") - (uuid "4ef99035-b60f-4aee-8636-4ed9106e37c7") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "224bb500-ea4f-404e-b67e-d4055c3c2462") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "c284bfd2-676d-45d6-9ddc-b35bac548015") - (at 201.06 60.9) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R18" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "594affe0-26c4-4ff2-a4d6-d38732432b90") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "70e38ebb-1f04-4201-ba9c-3ad6d591cce1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "efd53494-cd7c-47fd-bd00-49bc01dc4000") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "47fa28ed-aa53-416a-b58b-d7481a7659b1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "767f0cb0-499d-4ddb-9902-8ee092c829b8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c5d84c9a-fb34-406b-8894-26accb79e41d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/1b071f68-b4ea-469c-942f-de06380c9077/3fc0980d-551b-49f7-a302-ce717c6df384") - (sheetname "/exi/") - (sheetfile "exi.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "35ff59f6-d8b5-435c-8563-41c9b0a94faf") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2afbe7ea-7d71-4323-8552-2b70dd7b4737") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c23ec601-3acb-49ed-98dd-7fabd364cf4b") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0959503d-aaed-46b2-b0e2-77775f3e3469") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "d744ff86-4ccb-44b4-9ea8-31b53221f35e") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/SP1_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "fca4c79e-89d7-46d1-9846-308e983f986b") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(J3-ExtIn)") - (pinfunction "~_2") - (pintype "passive") - (uuid "a42c0010-1e04-4227-a51c-839aedc05813") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c3c363c0-b17c-4bb9-a2e5-d1747ad04bf0") - (at 235.5425 57.3275 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C5" - (at 0 -1.16 180) - (layer "F.SilkS") - (uuid "ef51d3dd-e69b-4967-862e-db2a75a336e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 180) - (layer "F.Fab") - (uuid "0bb62527-ab33-4164-9b7c-c2d156a367a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "f919b571-0835-493b-a453-6b21a943030b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 180) - (layer "F.Fab") - (hide yes) - (uuid "21dfe869-2302-45fc-a999-6696ca42f72b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 180) - (layer "F.SilkS") - (hide yes) - (uuid "b3bc1fa5-57dd-47c9-990f-5a3085cd306f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "916a098a-fd0b-436b-ae74-b0c38e5e51b1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ca3ae52c-920e-42d6-9b11-7cf9ee5fe543") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/69c1caed-4aed-487e-8a01-11a407bf27c4") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62c50dac-b47d-4625-b7be-c7f7e020663a") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0b3a1a87-14ae-4392-b480-ae58a49b2879") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "c81cb127-3330-4d01-b456-2be37ff31f7e") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "9f0f8434-1248-4f45-8445-0736c97cf0fd") - ) - (fp_text user "${REFERENCE}" - (at 0 0 180) - (layer "F.Fab") - (uuid "7a12fbce-7fb2-4035-91b0-5b9dd6622a31") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/SWN") - (pintype "passive") - (uuid "6e965439-2a9c-4648-8806-24cc70114e8b") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U3-VBST)") - (pintype "passive") - (uuid "3dea7fec-7368-4f85-855d-a876c83a50b0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "c60b60bd-5517-465b-8f03-2fa4fbc5a63e") - (at 167.0325 82.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C26" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "c21e8d5d-a6d8-4f73-ba4e-20668445baad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "18pF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "e32b820c-8db0-4f5e-877d-d04ce45a222c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "3cd32f2f-b7a1-4258-8686-98b883a04298") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f6e1f48b-bafa-4ccb-8754-a8ff49e60aaf") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f975c709-a5f0-4fd0-a8c5-d88b8cf1a512") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c1680b0a-7566-4817-be28-c93126e0a3ac") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "faa6a828-1c1a-438a-8f78-906c55a7fd28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/7e1a2e99-229f-4098-8ab3-a13ae887d595") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "258b9928-b152-451d-822f-d990a8770eb2") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "406f5237-9815-41ee-a35b-577e50c88559") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8d37501c-757c-4e38-ac34-a45333393af7") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "5471a8a1-dc59-443d-a8ff-a9dd86d35e21") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "5bd27fa7-5393-4516-82e2-3f77fe547acd") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-OSCO)") - (pintype "passive") - (uuid "4bc7795b-d28e-445b-a2f1-ab4970c7406e") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "33b0a90d-bc32-40ad-adf1-68fde800cf3e") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "c6c7a0f1-a6da-4dcb-8230-e365d1992ea7") - (at 79.2375 108.5) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U1" - (at 0 -2.4 0) - (layer "F.SilkS") - (uuid "9612cb85-b5a4-4a46-9ffd-687d3ef68f51") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "AP2112K-1.2" - (at 0 2.4 0) - (layer "F.Fab") - (uuid "645bb567-411f-4f29-b66d-19e8ce8b8c1d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "04b10a8d-7962-468e-924d-17fb05aea91a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "7ebef614-26fc-4e1d-b5c5-16372a342e3a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f030f078-eb74-4da1-a017-bc29c97ad032") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23?5*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/716fa60f-7749-409d-a712-77c479795cf7") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "4" "5") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9f8e00de-86c0-48b0-8c27-bf057c5bbac2") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9209cb92-7a20-466a-92f7-7eeb488928e5") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9c6d09f4-86f2-4018-a1d3-bf8ab6718d0d") - ) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "023ebee1-bc3d-4163-8d61-0d1acc903408") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c3e19ec4-9645-4f20-ad29-311f53881799") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "da68e58d-492d-4ed9-8e0e-def2ebb4c657") - ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6b6a5339-4b3e-44dc-b4c6-3b6ee08da38b") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "155e0a51-24e2-4322-84e7-f09b8042fc8a") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ecd1c889-0220-48b8-a030-7075687451c7") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b4fd522b-f90d-4455-833a-1fced48fc24f") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6bdefa31-c85e-4afb-b416-68be56e6eecd") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "754a375c-274f-4d0b-9ccf-4b0d91e535fb") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "89b89b7d-7898-414f-bd73-004452b9a1c2") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b4040669-3301-4d60-913c-fefcb30e7706") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d4890fb7-42ea-4eb1-940c-29dee8584bc3") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "afbaa65f-540c-4941-acaf-7a263c4d55e9") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ef51c669-348a-421c-92e3-3b233e777057") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cc1fa3ad-101a-4a05-83e1-8dd9ff589aec") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "eb7cb060-3b09-4801-addb-e2f7c4b1d5b9") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "009054f4-27a6-4b00-b680-1866504e7296") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a997ffc0-4d65-409e-af80-e4a74cc31c9d") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "10c0e02a-c8f6-4bb0-a235-a08eb535fd65") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "74d3fd62-ea48-447d-9b53-e324082075a5") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8ab887c6-22bc-4c2f-beb3-890ec6567f63") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "707d9dfa-6bd0-46fd-95de-44c93e18a353") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "6d25502f-f099-48ce-af20-1dde0202b1a2") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "ebdfac14-0b3c-4747-82ad-c20cb8ced7f1") - ) - (pad "2" smd roundrect - (at -1.1375 0) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "beee0d64-519d-4e41-9218-e6baea237c8c") - ) - (pad "3" smd roundrect - (at -1.1375 0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "EN_3") - (pintype "input") - (uuid "9bc98da0-2a17-46a8-8c43-5290d9306a77") - ) - (pad "4" smd roundrect - (at 1.1375 0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U1-NC-Pad4)") - (pinfunction "NC_4") - (pintype "no_connect") - (uuid "a379860d-8b4d-4ca2-8a8d-60cc6da55335") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "VOUT_5") - (pintype "power_out") - (uuid "d822790b-84a9-4a1b-ba85-175a3484a6f0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "cab935b2-c71c-4335-b9d8-6336c203d352") - (at 197.43 46.3325 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C19" - (at 0 -1.43 270) - (layer "F.SilkS") - (uuid "a6bd5432-3e7f-4003-8675-cea38307a0aa") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1nF" - (at 0 1.43 270) - (layer "F.Fab") - (uuid "08388fa2-b549-46a6-9e4f-9d14aae8fa43") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "8748ce67-2146-4857-8ba5-76851d0ec9b4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "d859ca14-ccb0-4b70-8c66-269a58109c13") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 270) - (layer "F.SilkS") - (hide yes) - (uuid "8a28fddb-ce22-45e8-8260-bb4679572751") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "057d92cc-ded1-42ec-ab8b-4e6494d67c60") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "100V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6798d51a-64b8-4769-8e83-e0103dbb62c0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/1006d730-cbe8-4183-807f-f1d51470c9d2") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c54b3be8-90ae-46c8-b1c8-0520b040fe49") - ) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7cd8c776-8af5-4b08-82f4-67ac5898b719") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "20accdc4-8a58-417a-9331-e3765ca81cbd") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "6b7338e3-8b00-4558-97d6-5df5ff31264e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 270) - (layer "F.Fab") - (uuid "70f70e88-d148-475a-acbb-5ebaf546bd0c") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "4c4d3b72-5c8d-42df-b96f-8f6335930931") - ) - (pad "2" smd roundrect - (at 0.8625 0 270) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "73a01168-d427-4bf5-a6ba-9f6d2719b8e5") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "cb124df3-0fe9-4bbf-94c8-5da4918f7005") - (at 164.0325 88.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C29" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "16c7d48d-cd06-49b7-92e6-f6cdf45dfd47") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "a1d4b465-ed13-492a-8712-6cab56672523") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "be131b7d-31a0-46dc-b076-10f2c977f4e4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "6ff720b5-c914-40ad-a04e-de5c04bf9c7a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f6991e4e-0b5c-40ab-af6f-ddf72ee4f88e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "59fd01b1-1574-42e0-89a8-9a94d8e945bc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "65f13628-17b2-44ca-8022-375373b41d57") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c6375d09-4912-4f54-9d1f-c93aa166d641") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "912f08e1-5eb7-4e68-9bb8-0e8542410ea6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46f17187-de72-4781-ab44-e4f512ce0efa") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d6fb1574-85f0-49a6-adc5-203f56fbc469") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "66c1408e-3a78-46c5-b2b2-5155de5b457a") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "970ea4b1-2184-44c6-a623-099525f86e12") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "681b683e-292a-4316-86f1-700d28438817") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPHY)") - (pintype "passive") - (uuid "bcbb5d5f-ad42-44ca-bb85-2d94a62167cb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "cd2d55ec-82df-458e-9588-80a2d187b71e") - (at 177.975 47.0775 -90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R6" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "77995479-0652-4bdf-9022-18d835bd9cc0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "5.1k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "cb2dcbc5-cbc1-4bce-9836-8d2ec60be1be") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "2941f3dc-84ac-4d23-8512-ffba3656e065") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ef99f3ac-9aa5-4516-8e17-80692f271cf4") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "6bd00523-a328-45b2-80b1-5b500c949a33") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b43dc895-86d9-44f3-ab23-c979b5aa6534") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/6163b4dd-eb2a-43f3-ae4c-e626325177d6") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7a0171dc-f77a-47e9-a640-00a0283008a8") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2f7352de-b348-49ba-9dd0-97b0f41bdff8") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "998d129d-4a67-4ae4-9ec4-fe576635903e") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f217ca65-ea80-410f-8cce-d7cc90b8833c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "0fa63509-2c97-4729-8bd0-2551eab74dfb") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CC1") - (pintype "passive") - (uuid "199efbea-f4df-4524-826b-fd66a91593ad") - ) - (pad "2" smd roundrect - (at 0.5975 0 270) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "beeaac8e-7fe6-4213-9aaf-4845ffccf730") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_SO:SOIC-8_3.9x4.9mm_P1.27mm" - (layer "F.Cu") - (uuid "d61ac569-e8a5-4cf1-8582-4ccfead09726") - (at 94.0175 99.275) - (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf)") - (tags "SOIC SO") - (property "Reference" "U7" - (at 0 -3.4 0) - (layer "F.SilkS") - (uuid "daec4f47-1584-4f80-9609-526ea6834fde") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "93LC46B" - (at 0 3.4 0) - (layer "F.Fab") - (uuid "33344c3e-e273-46c8-8707-3bfdba767a96") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b28a78d5-1207-402c-8c48-7f4d750e2a1d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ed099eb0-ae4c-48ce-b172-37610cc0ddc6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "b60ed8d7-8815-42f2-9032-e5eb32b41dea") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "DIP*W7.62mm* SOIC*3.9x4.9mm*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/91b7168e-7e94-4d63-a038-c800c3ac6d9b") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "6" "7" "8" "5" "2" "3" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.06 -2.56) - (end 2.06 -2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "033fd9b4-6442-4a4d-afe7-de7794721f28") - ) - (fp_line - (start -2.06 -2.465) - (end -2.06 -2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eee36b19-e4f9-45f7-9efd-d131bc9d61c4") - ) - (fp_line - (start -2.06 2.56) - (end -2.06 2.465) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d03fedf2-b0e9-4f40-b7de-cf557506e0bc") - ) - (fp_line - (start 2.06 -2.56) - (end 2.06 -2.465) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9a150451-5214-4164-81e2-2ea20691e8fd") - ) - (fp_line - (start 2.06 2.465) - (end 2.06 2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3da8f250-6d3e-42c8-a79b-0e047622afa3") - ) - (fp_line - (start 2.06 2.56) - (end -2.06 2.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d05ee88c-7615-46ea-b30d-d47363fe2cd5") - ) - (fp_poly - (pts - (xy -2.6 -2.47) (xy -2.84 -2.8) (xy -2.36 -2.8) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "ecb05676-4392-4427-a17c-7ee4fa1842ec") - ) - (fp_line - (start -3.7 -2.46) - (end -2.2 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0c4ced29-3c74-4b13-b173-559843ca3d52") - ) - (fp_line - (start -3.7 2.46) - (end -3.7 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "40ea6401-499c-4921-99e1-7029a6773b58") - ) - (fp_line - (start -2.2 -2.7) - (end 2.2 -2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f02ac92a-2527-4951-9fa9-a5e6711e96fc") - ) - (fp_line - (start -2.2 -2.46) - (end -2.2 -2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "347bba6e-0702-42e1-8da8-a6f429144694") - ) - (fp_line - (start -2.2 2.46) - (end -3.7 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b15b484f-c230-4397-9025-709648fbcf86") - ) - (fp_line - (start -2.2 2.7) - (end -2.2 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f1bc2602-9b2b-4d13-a4c8-d277890adbb3") - ) - (fp_line - (start 2.2 -2.7) - (end 2.2 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2340f9e9-fce9-4740-b54c-894e22aedf9a") - ) - (fp_line - (start 2.2 -2.46) - (end 3.7 -2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "3b260736-e560-43c2-83d0-910da929500e") - ) - (fp_line - (start 2.2 2.46) - (end 2.2 2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a148a98b-c61f-48fa-ac4d-9fef32cbb32d") - ) - (fp_line - (start 2.2 2.7) - (end -2.2 2.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "efca629c-eea1-4605-997c-b8234faf1fda") - ) - (fp_line - (start 3.7 -2.46) - (end 3.7 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f0b1fbc0-1af9-4001-a64f-2cec37e8f358") - ) - (fp_line - (start 3.7 2.46) - (end 2.2 2.46) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "06bba2c1-4163-460e-88f0-f14e9343f629") - ) - (fp_poly - (pts - (xy -0.975 -2.45) (xy 1.95 -2.45) (xy 1.95 2.45) (xy -1.95 2.45) (xy -1.95 -1.475) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "37e820e8-b33e-4be3-a3e8-8410f1719f6e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "102009dc-6fe2-4e57-a8c2-0fd9d748c183") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -2.475 -1.905) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CS") - (pinfunction "CS_1") - (pintype "input") - (uuid "7c009b18-f893-40b7-a1de-39e3092b8671") - ) - (pad "2" smd roundrect - (at -2.475 -0.635) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_CLK") - (pinfunction "SCLK_2") - (pintype "input") - (uuid "fbc7b35e-6da5-4ca5-944d-cc493d92a2af") - ) - (pad "3" smd roundrect - (at -2.475 0.635) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_DATA") - (pinfunction "DI_3") - (pintype "input") - (uuid "b692484f-84c8-406a-8b43-b8159420dd47") - ) - (pad "4" smd roundrect - (at -2.475 1.905) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/EE_DATA") - (pinfunction "DO_4") - (pintype "tri_state") - (uuid "a35f0e06-6fca-4c18-ae39-f327d4598a65") - ) - (pad "5" smd roundrect - (at 2.475 1.905) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_5") - (pintype "power_in") - (uuid "ab29452e-872d-4eaa-89a4-28c04b0cb28f") - ) - (pad "6" smd roundrect - (at 2.475 0.635) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U7-NC-Pad6)") - (pinfunction "NC_6") - (pintype "no_connect") - (uuid "cf1c5762-28de-4766-ae83-420b52d27b4d") - ) - (pad "7" smd roundrect - (at 2.475 -0.635) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U7-NC-Pad7)") - (pinfunction "NC_7") - (pintype "no_connect") - (uuid "df7a3108-8c6d-427d-ae7e-f2c1f30d42b2") - ) - (pad "8" smd roundrect - (at 2.475 -1.905) - (size 1.95 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCC_8") - (pintype "power_in") - (uuid "5cb60bfc-f2b1-4cd6-9b8f-941600fd3b7b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_SO.3dshapes/SOIC-8_3.9x4.9mm_P1.27mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "d631e4a4-c0d4-449a-84d9-83084b58dd64") - (at 185.4025 83.9) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C24" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "26795923-9f22-4ea6-a1a9-dd3d0d013ea2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "efa33e5a-eb1d-4d2a-b2ab-d8ef1d2e9ecb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "eb590815-97fa-4af2-ae94-38f0b956db6b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "1825cf4e-ecf1-40db-90dc-61cf98aa2a69") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "6ad840b4-c85e-4f2c-90c6-53c9352f0c34") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8ae6c3a8-3568-48bd-aa59-f0f44ce88a41") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0544e4e2-47db-4558-8e7d-1577b7b3da0a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/484b0d90-fa80-433f-bd28-bf3b887bd62b") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3430002d-165f-4ff2-8bef-ec69b4e39d8a") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f812814d-74d2-4d98-ba73-f872f684f63d") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "66589248-a983-412f-9f99-9f56499a8ed8") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "55c66527-c2d7-4962-afed-5b4b606c7aeb") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "0c3ed95e-f87e-44ba-a51b-d86cc39f6401") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "48db752d-c8a5-4b6e-9088-ec5eb575efe0") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Power/3V3") - (pintype "passive") - (uuid "f953316c-3ba1-48cf-83dc-4290890fd577") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "d7833948-edc8-45be-bafb-4e097ba93f64") - (at 169.0325 76.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C8" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "4f19b826-9efb-45bf-9d77-f18fbdfa6226") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "9bcf5cd2-f55c-4287-aa46-2aa9edd52c19") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "70994634-fb67-41c1-a4c0-c1d4917defae") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "283ea43f-f7bd-4a60-b203-6613e1d6f98e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "5a225b09-73d5-4973-8113-a8e99e33a5f8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7b418747-1377-4eb1-bf60-d56b21034686") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9ee1dd78-3d0d-4a2a-bc1c-74c3d8be3833") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/66fe99cb-c32f-475c-a312-9024c18895ef") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f27d9e4d-0c4a-450b-ba8c-a8f330ab75d6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ee97c385-5b12-4a5d-898e-9b262c49b8cc") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "96445187-ef1c-4671-9f33-0dfed16988e0") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a045cfd3-15ed-4f13-af30-e786e612a292") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "6af9cef2-9671-45c0-a8b5-cdd62bc31455") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_3V3") - (pintype "passive") - (uuid "825828ff-c25a-4760-911f-0cf62f0a767c") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "fb91d711-aad1-4c2c-81c1-6a2c75c929e0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "dbd14aa4-8388-4206-bb02-a00529d34685") - (at 238.8 54.8275) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C4" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "3279c720-e3b5-4648-8060-c74e68c73ba1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "0fa3052d-4515-4345-a3ed-ad5b5b39552d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "84d967be-0120-4b0c-a0fd-f092e1254d98") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ae6179ab-637f-453b-92c8-5dc85bac2977") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "cecf267f-e6a2-450a-943a-097a707eb537") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "86a8be43-16bc-485f-95ba-412aa4ec59de") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "25V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "862a79cf-3346-4156-ab03-acb3dd258df1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/0abc5ec0-734c-4ff0-a352-5b251befe437") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3794ce13-e88c-427a-bded-cdcba419c3a6") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6764911b-d98d-43f7-a82d-ae9dc28c7e47") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "299d22e4-4640-4607-b652-01f14c889943") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "039f1301-fa86-4da8-81af-1a87aa2bb8a3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "18f3a58a-9893-4937-8dfc-cf61030c6f14") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "254a9292-1149-4a17-8b61-3b6b2732e797") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "ec7188cb-221a-4b1c-9206-51431c01fa49") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "dc0cd3de-5847-4f6e-af7b-b129eebd3a1f") - (at 88.2375 105.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C58" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "89ff363a-0f2e-4a1d-a993-81a6cea8f3bb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10pF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "455d702f-8965-424e-ba39-6a6b53afa26d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "617f5336-0c5e-4ca6-9a50-715adb002787") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "3770cf62-56c6-4b83-a3df-2b22c093c539") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "07011c47-1119-4997-8e56-57fd41f69087") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "C0G" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b448c8d0-df17-4f55-aed5-23aeb8def500") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "93101c07-3e91-4808-8c48-49230aa2731f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/f8520a63-5936-4326-8d7f-ee8f61969721") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "bcff2fc3-3564-4dd3-a314-e7905852c443") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a1c12362-541a-4edb-b3c7-99aa5bc74d4d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "de5e3fbd-70a4-4e31-b660-eaaf0986c5f2") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "7b300fa9-1534-4e9f-b39b-6dc662cd42df") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f87fd437-a36a-46a4-9c1d-777f15565032") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_I") - (pintype "passive") - (uuid "2922a148-a37b-401b-8d7f-4b562cd9ff98") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "ae967515-3c19-4287-a307-7026d60c0b12") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "e081179a-d499-4c98-861e-1d3a1a9712f3") - (at 181.7 46) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C21" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "41ed0463-b7c5-4632-b2f9-af58f6b51397") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "0.1uF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ee1a80c9-33cd-4bc6-91d0-7a72026c03a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f09624f5-3906-4c70-ae37-db1b23bfe1b6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "5bc883dd-78fa-424d-a4a1-af7666036e5f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "c8b75bd7-6261-4d5f-99f7-be13e572b6d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "1d3c3cb4-617b-46e1-95e0-cd91bcfd5297") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "16V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "88a10e81-9e33-4ead-9829-afe2b270aa48") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/cfcbd4b1-9213-400e-b190-98fbf7ce450c") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "52894814-76e2-4020-942a-6342cfe03473") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ee6278c7-7b85-4b26-8574-c3fc2f2366af") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "7b7ab8c5-e089-4b93-b681-ae8b29ce8ce0") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "4f95578f-0abb-425f-a304-35e0b643d3ac") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "da1715c6-1e0f-42e7-8228-5aa4c9c08c8e") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pintype "passive") - (uuid "2d5a6c02-4d52-4b0a-9a20-55faec30c717") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pintype "passive") - (uuid "64ebb635-eefe-4104-9348-2e9e224d8f10") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "e1da88d0-1cac-42b6-8815-6605a1dabb88") - (at 196.175 66.725 180) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R3" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "4b79c72b-9fd5-48d6-84ab-43cb0c9dd9b7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "200k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "6ecb91d0-094d-433f-8b90-8f190ed8ad23") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f808f270-f36d-4291-85b2-ee6be96017ef") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "113dac7f-b498-4d9f-9d64-b63298ad6243") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "9595baff-e00f-4416-b897-4d493161c938") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "94fa68d2-9910-46f0-b7aa-cce63daaf90a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/15194bd9-79db-4391-90a1-5d3f68e56164") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3b7be986-6538-4767-8c92-5f7ee52a3198") - ) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f426dfe4-4956-45ce-b748-59b63320e4ec") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "406293a4-2c8e-4eb4-90d3-da143270b67c") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "25b01029-d790-4cfe-9c42-58253189ba33") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "feefc1df-94b5-4565-b0a3-377a3c9a2aa1") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/GC_3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "9c05c343-d6b7-412e-993f-8276befca860") - ) - (pad "2" smd roundrect - (at 0.5975 0 180) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U2-PR1)") - (pinfunction "~_2") - (pintype "passive") - (uuid "a3d8d3c9-7218-4bf6-bb3d-9c761ef28900") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "e30171d0-c0c0-4ea1-b83e-3ee2972a83be") - (at 86.2375 108.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C20" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "d5465119-5eac-490e-b6a4-e0162261f73e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ef6f6b2a-3d68-4af3-9fd6-6054754c4176") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "77757ceb-8616-48c7-93aa-d9e599862921") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b4bdebb7-b9c2-4fa3-8e01-f049a1706e86") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "7ce1be09-6c3a-4b5d-a3a3-4c1f20b8205d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "38eb008d-555f-4df9-b909-b0d5dca53f9f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ad91dfb4-942f-4b44-b7ec-4afb0eeddfee") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4c941593-b81d-4a2e-a6a5-787c20d5f444") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46b9467b-eac6-43f0-a13e-ba493c0f1da3") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b936ee9b-ab52-4ee2-b42d-58e59dbbb1ed") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "98b3d3ed-0b97-445f-adf4-1b3f200f68ef") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a305ef7d-70c8-44ce-8424-26a4c9bbbbd8") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "40323839-30b8-4613-ac5e-22f77a7b04b1") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "3519e04a-b68e-4338-adfb-f258bfaf4459") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "d1642d5d-a9fd-4948-a786-63dfb21308c8") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "e3701034-27d3-4f3b-873c-4a0c806ff7ae") - (at 235.525 58.2775) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C6" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "6435f23a-e205-45bc-84fd-8fce7b0ee6bf") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "224de69f-aa9b-43ba-8e63-9fac8714fde7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "e5846be7-6975-40db-a406-79af23d4a55e") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a4318d2b-8e49-4982-85aa-fedefa8368d2") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "46a2f1f2-5fb2-4344-8c1e-4094baa61ca2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a282fc82-5dd2-4196-bfb5-1fccad2f4931") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "50V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "7b09d662-7065-4505-9dd0-4a6e37e84913") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/7686a45c-971a-4307-b5b9-b2b911dd1aae") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "84ed9b69-f4e8-4cf3-9899-787f186f3c03") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2ef5260b-1654-40f6-9397-0ab787dac263") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "110e9238-5fe8-4eb4-83fe-231fa598d3e6") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "704d6e3f-1b51-4275-89d5-558c4fdbae5b") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "fe0e4ee3-5830-4b13-b4ca-108e662a8a82") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "aa3903ff-27b5-4cc3-9fd6-152f0becac67") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "a0f031f5-2be6-4310-97be-a60c4d69b9c3") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" - (layer "F.Cu") - (uuid "e44608ae-4729-4a83-8086-e1eaa4ebce24") - (at 232.275 60.7775 -90) - (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C11" - (at 0 -1.85 270) - (layer "F.SilkS") - (uuid "318ea819-bc70-43db-b517-1f8dd5d9e405") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "22uF" - (at 0 1.85 270) - (layer "F.Fab") - (uuid "3a5a67db-ccee-4e7f-bc31-c92571890ad7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "f42a9150-d2df-45ed-a89c-52d112df6421") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (layer "F.Fab") - (hide yes) - (uuid "757dec17-a0eb-4fe0-8c68-23988027416d") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 270) - (layer "F.SilkS") - (hide yes) - (uuid "90941fad-1755-408a-b8a4-fe06ae94c702") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e21398d1-d4c0-48d6-b3d6-4572f0e8fe14") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "f6472e83-91a4-4c0c-96ae-97d40e2ca4a8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/41c047ab-784c-4a5c-a507-14eec8340455") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.711252 0.91) - (end 0.711252 0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0abad289-fff4-44af-ac9f-e7bb2eea6255") - ) - (fp_line - (start -0.711252 -0.91) - (end 0.711252 -0.91) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d60e24ed-ad5d-47e7-853e-c1c83b2dd0c1") - ) - (fp_rect - (start -2.48 -1.15) - (end 2.48 1.15) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "4554fab9-1e4a-4642-a41f-2d7863076c1c") - ) - (fp_rect - (start -1.6 -0.8) - (end 1.6 0.8) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "f577b615-7126-4904-9da3-5c8b2165ccb9") - ) - (fp_text user "${REFERENCE}" - (at 0 0 270) - (layer "F.Fab") - (uuid "610e95b8-6d5d-4cff-8ae5-7a6a8504c1e7") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.5625 0 270) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "/Power/GC_3V3") - (pintype "passive") - (uuid "93a01f8d-20d2-4652-8825-270736f24213") - ) - (pad "2" smd roundrect - (at 1.5625 0 270) - (size 1.325 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.188679) - (net "GND") - (pintype "passive") - (uuid "c50ca624-8798-4830-abbd-a67a2c210ba2") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_DFN_QFN:QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm" - (layer "F.Cu") - (uuid "e5cb0313-3c2a-4088-8199-622bbd9f104f") - (at 79.6575 115.68 90) - (descr "QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94)") - (tags "QFN NoLead ST_UFQFPN48 Analog_CP-48-13 JEDEC_MO-220-WKKD-4") - (property "Reference" "U9" - (at 0 -4.83 90) - (layer "F.SilkS") - (uuid "22a4ecda-1793-4080-97ab-6d7601cc4a6e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "ICE40UP5K-SG48ITR" - (at 0 4.83 90) - (layer "F.Fab") - (uuid "a7935e83-90cf-4ad6-a87c-04477471b056") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "http://www.latticesemi.com/Products/FPGAandCPLD/iCE40Ultra" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "3e2611f8-9896-4a00-8719-aea774b96d76") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "iCE40 UltraPlus FPGA, 5280 LUTs, 1.2V, 48-pin QFN" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "9e29ee93-ea87-4a61-a9f3-a76fc2b5cbed") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/no_lead" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "143accc9-8a25-490b-9a62-cb31aa4eb312") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "QFN*1EP*7x7mm*P0.5mm*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/f52dbf71-c858-4ecb-99f5-da7bfda0998e") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "25" "23" "27" "26" "28" "31" "32" "34" "37" "35" "36" "43" "38" - "42" "39" "40" "41" "33" - ) - ) - (unit - (name "B") - (pins "8" "6" "9" "10" "11" "12" "21" "13" "20" "19" "18" "14" "17" "15" - "16" "22" "7" - ) - ) - (unit - (name "C") - (pins "46" "47" "44" "48" "45" "2" "4" "3" "1") - ) - (unit - (name "D") - (pins "24" "5" "30" "49" "29") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start 3.61 -3.61) - (end 3.61 -3.135) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0594c990-8994-4b72-82e9-19092056d006") - ) - (fp_line - (start 3.135 -3.61) - (end 3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "839b3487-f6e3-410e-8ef3-5a5a6841b132") - ) - (fp_line - (start -3.61 -3.61) - (end -3.135 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6ddcc88a-5939-4168-ac2f-27b54b113297") - ) - (fp_line - (start -3.61 -3.135) - (end -3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3781e87c-ed49-4cac-a077-c5dfabb792bd") - ) - (fp_line - (start 3.61 3.135) - (end 3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f641bea2-b54b-4455-980b-d2f239742531") - ) - (fp_line - (start 3.61 3.61) - (end 3.135 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f2edc755-b6da-493f-ae0c-95b8defcc8c5") - ) - (fp_line - (start -3.135 3.61) - (end -3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "eba6dbfb-1fa3-45bf-98ab-d5b262127e69") - ) - (fp_line - (start -3.61 3.61) - (end -3.61 3.135) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "961f2790-43e2-4c38-8279-8fa6e37be874") - ) - (fp_poly - (pts - (xy -4.14 -2.75) (xy -4.47 -2.51) (xy -4.47 -2.99) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "6cc0c0f2-6951-4bf9-830d-2fe495f1b868") - ) - (fp_line - (start 3.13 -4.13) - (end 3.13 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6899f165-512c-4276-94f1-ff88a4cb9c49") - ) - (fp_line - (start -3.13 -4.13) - (end 3.13 -4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e6e08043-5087-438c-8f4a-fe7a19e62ac2") - ) - (fp_line - (start 3.75 -3.75) - (end 3.75 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8222445f-435d-4bac-a449-8ddf7f7fd516") - ) - (fp_line - (start 3.13 -3.75) - (end 3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9a862026-3f9a-40ed-ac27-837adb975290") - ) - (fp_line - (start -3.13 -3.75) - (end -3.13 -4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "80ca85dd-9d23-43bb-a072-19984a0e91fa") - ) - (fp_line - (start -3.75 -3.75) - (end -3.13 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e2e3b852-e703-4691-a7dd-b816552ccf60") - ) - (fp_line - (start 4.13 -3.13) - (end 4.13 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c0d7cb41-22f0-477d-b786-78e3cee03a1e") - ) - (fp_line - (start 3.75 -3.13) - (end 4.13 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "107c73d7-ab4e-4f95-af2c-b032a9aef0fb") - ) - (fp_line - (start -3.75 -3.13) - (end -3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "57cc49cf-3e7c-435c-b8fe-8b34332c9c4c") - ) - (fp_line - (start -4.13 -3.13) - (end -3.75 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0e5f40b3-f0ad-4410-9741-b3aa06cceb26") - ) - (fp_line - (start 4.13 3.13) - (end 3.75 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cf3066e8-a10d-4272-aa9f-86c5b7be48fa") - ) - (fp_line - (start 3.75 3.13) - (end 3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c8708c5c-18c5-4647-b686-3ebe2531f4ef") - ) - (fp_line - (start -3.75 3.13) - (end -4.13 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bffa22b6-0efd-4435-aca3-d04c60079552") - ) - (fp_line - (start -4.13 3.13) - (end -4.13 -3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "684adac4-3a94-4712-809f-06823d798765") - ) - (fp_line - (start 3.75 3.75) - (end 3.13 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a1ee38c8-75d1-4f65-a3a7-b643ab707bd5") - ) - (fp_line - (start 3.13 3.75) - (end 3.13 4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "28e0816b-5f46-4b0c-8844-93160a9f421b") - ) - (fp_line - (start -3.13 3.75) - (end -3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5521ff53-6dd5-4e70-aa76-b6059fd4c9fd") - ) - (fp_line - (start -3.75 3.75) - (end -3.75 3.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9b5a0c42-5330-4462-b3e4-eb8b98146e70") - ) - (fp_line - (start 3.13 4.13) - (end -3.13 4.13) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "94a6070b-25d5-4ed0-97f3-0cc3bd81c8e9") - ) - (fp_line - (start -3.13 4.13) - (end -3.13 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "aa4e370a-13e9-4308-be74-054c7599946f") - ) - (fp_poly - (pts - (xy -2.5 -3.5) (xy 3.5 -3.5) (xy 3.5 3.5) (xy -3.5 3.5) (xy -3.5 -2.5) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "37dc81cd-dfe3-4ac6-8b81-7713f86df567") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "643bcc20-6831-4540-840b-61cd71f12eb4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" smd roundrect - (at -2.1 -2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "78a65cf9-8a4c-43fa-b909-825b79fead9a") - ) - (pad "" smd roundrect - (at -2.1 -0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "6a1cc03b-9edf-4f84-8808-61b05e2d15af") - ) - (pad "" smd roundrect - (at -2.1 0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "6574190a-d2db-4c52-97b3-eaa0a5040732") - ) - (pad "" smd roundrect - (at -2.1 2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "18952964-e729-4d3b-b5e1-61f9e3f0778b") - ) - (pad "" smd roundrect - (at -0.7 -2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "e7292e98-036f-42aa-ba58-3fd44798370f") - ) - (pad "" smd roundrect - (at -0.7 -0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "7d6f74b2-f0da-41a9-8683-4b0bfe7510cb") - ) - (pad "" smd roundrect - (at -0.7 0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "fda5bf31-2fbc-48cf-8201-549b0d6cda58") - ) - (pad "" smd roundrect - (at -0.7 2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "bc2e552e-e19f-47aa-912a-d516ce1d1e07") - ) - (pad "" smd roundrect - (at 0.7 -2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "0b35e7fb-460d-4266-a521-47fe197f745a") - ) - (pad "" smd roundrect - (at 0.7 -0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "40c889fd-72c4-49e8-8d2d-48ba5de10f19") - ) - (pad "" smd roundrect - (at 0.7 0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "37e75116-b9e6-45e7-a1e6-97ba0df0590f") - ) - (pad "" smd roundrect - (at 0.7 2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "589c57aa-ca1e-4533-bdcc-df462e59aee8") - ) - (pad "" smd roundrect - (at 2.1 -2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "d12563ed-6272-4ff8-852e-89cddac1341c") - ) - (pad "" smd roundrect - (at 2.1 -0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "c755c264-890d-4883-8a64-5b0b1f64f468") - ) - (pad "" smd roundrect - (at 2.1 0.7 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "fb817cfe-48f5-4da6-83e7-6862aa835ae2") - ) - (pad "" smd roundrect - (at 2.1 2.1 90) - (size 1.13 1.13) - (layers "F.Paste") - (roundrect_rratio 0.221239) - (uuid "5fa00927-1476-4a4f-b70f-f2363741b3cf") - ) - (pad "1" smd roundrect - (at -3.4375 -2.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_2_1") - (pintype "power_in") - (uuid "97c9152f-9261-441c-8acd-8e238b5125b1") - ) - (pad "2" smd roundrect - (at -3.4375 -2.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RST") - (pinfunction "IOB_6a_2") - (pintype "bidirectional") - (uuid "ca9b85a2-deb4-479f-bea2-c5cef021e3c8") - ) - (pad "3" smd roundrect - (at -3.4375 -1.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_MOSI") - (pinfunction "IOB_9b_3") - (pintype "bidirectional") - (uuid "69c14fe7-428d-4221-aa98-34ae8a2ed255") - ) - (pad "4" smd roundrect - (at -3.4375 -1.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_MISO") - (pinfunction "IOB_8a_4") - (pintype "bidirectional") - (uuid "020fbd3d-bde5-4bdb-9f25-429054419ae5") - ) - (pad "5" smd roundrect - (at -3.4375 -0.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "VCC_5") - (pintype "power_in") - (uuid "37c3ebf0-4317-40c1-a3ad-4269a203ec7e") - ) - (pad "6" smd roundrect - (at -3.4375 -0.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_13b-Pad6)") - (pinfunction "IOB_13b_6") - (pintype "bidirectional+no_connect") - (uuid "9ae40d95-7573-4992-a125-e3f045800c6f") - ) - (pad "7" smd roundrect - (at -3.4375 0.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CDONE") - (pinfunction "CDONE_7") - (pintype "open_collector") - (uuid "d3bd2682-d6ec-4333-8716-99ef376c16ef") - ) - (pad "8" smd roundrect - (at -3.4375 0.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CRESET") - (pinfunction "~{CRESET}_8") - (pintype "input") - (uuid "6e4745a1-d6b8-44c2-b855-50fd0f67068b") - ) - (pad "9" smd roundrect - (at -3.4375 1.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_16a-Pad9)") - (pinfunction "IOB_16a_9") - (pintype "bidirectional+no_connect") - (uuid "5596f31d-d74e-4273-b343-e5963f908bfd") - ) - (pad "10" smd roundrect - (at -3.4375 1.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_18a-Pad10)") - (pinfunction "IOB_18a_10") - (pintype "bidirectional+no_connect") - (uuid "64c9813b-82a5-411a-9009-2948d831e758") - ) - (pad "11" smd roundrect - (at -3.4375 2.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_20a-Pad11)") - (pinfunction "IOB_20a_11") - (pintype "bidirectional+no_connect") - (uuid "2a33948a-8d69-41bd-a017-c141ab64d06d") - ) - (pad "12" smd roundrect - (at -3.4375 2.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_22a-Pad12)") - (pinfunction "IOB_22a_12") - (pintype "bidirectional+no_connect") - (uuid "c7f2fc39-c339-42e6-9442-6fb49a47eb83") - ) - (pad "13" smd roundrect - (at -2.75 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_TXD") - (pinfunction "IOB_24a_13") - (pintype "bidirectional") - (uuid "edd8f48c-3653-4e6a-87c3-023c4630fcf4") - ) - (pad "14" smd roundrect - (at -2.25 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MOSI") - (pinfunction "IOB_32a_SPI_SO_14") - (pintype "bidirectional") - (uuid "84bf3cca-dc6d-43b0-9f46-9ed226e5277a") - ) - (pad "15" smd roundrect - (at -1.75 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_SCK") - (pinfunction "IOB_34a_SPI_SCK_15") - (pintype "bidirectional") - (uuid "d8b3450b-26ea-4735-828a-b305426d09fb") - ) - (pad "16" smd roundrect - (at -1.25 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_CS") - (pinfunction "IOB_35b_SPI_SS_16") - (pintype "bidirectional") - (uuid "64093dab-89c8-495c-8111-9cff9a2131ea") - ) - (pad "17" smd roundrect - (at -0.75 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/FLASH_MISO") - (pinfunction "IOB_33b_SPI_SI_17") - (pintype "bidirectional") - (uuid "78d7386e-9bba-4f4e-b019-f0768c00fd41") - ) - (pad "18" smd roundrect - (at -0.25 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UART_RXD") - (pinfunction "IOB_31b_18") - (pintype "bidirectional") - (uuid "6f21d553-c289-4927-85e9-f16e309c2a51") - ) - (pad "19" smd roundrect - (at 0.25 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/GC_ON") - (pinfunction "IOB_29b_19") - (pintype "bidirectional") - (uuid "e7b6a6d5-88cf-434a-8f4b-cfc867114cfb") - ) - (pad "20" smd roundrect - (at 0.75 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/CLK12") - (pinfunction "IOB_25b_G3_20") - (pintype "bidirectional") - (uuid "55956b88-e1f5-4887-b728-0ace8caebe65") - ) - (pad "21" smd roundrect - (at 1.25 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9B-IOB_23b-Pad21)") - (pinfunction "IOB_23b_21") - (pintype "bidirectional+no_connect") - (uuid "c7b57d1a-edb2-4131-8ee9-d23db9ccf522") - ) - (pad "22" smd roundrect - (at 1.75 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "SPI_VCCIO1_22") - (pintype "power_in") - (uuid "a93cb65d-1614-4820-8d47-fc8af0984e36") - ) - (pad "23" smd roundrect - (at 2.25 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D0") - (pinfunction "IOT_37a_23") - (pintype "bidirectional") - (uuid "c2c0a194-c820-4786-a4df-54d9560facb7") - ) - (pad "24" smd roundrect - (at 2.75 3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VPP_2V5_24") - (pintype "power_in") - (uuid "9f899368-4cbd-4987-aed9-4d48a27ad5ec") - ) - (pad "25" smd roundrect - (at 3.4375 2.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D1") - (pinfunction "IOT_36b_25") - (pintype "bidirectional") - (uuid "848df552-2451-4352-b715-04826ea53e7c") - ) - (pad "26" smd roundrect - (at 3.4375 2.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D2") - (pinfunction "IOT_39a_26") - (pintype "bidirectional") - (uuid "2103ab7c-53b2-46ad-b952-bc0a686e474e") - ) - (pad "27" smd roundrect - (at 3.4375 1.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D3") - (pinfunction "IOT_38b_27") - (pintype "bidirectional") - (uuid "888d777d-1747-4e12-891f-e61c42d1411e") - ) - (pad "28" smd roundrect - (at 3.4375 1.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D4") - (pinfunction "IOT_41a_28") - (pintype "bidirectional") - (uuid "a128e57c-d875-412a-8c17-3ca04fdb9770") - ) - (pad "29" smd roundrect - (at 3.4375 0.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pinfunction "VCCPLL_29") - (pintype "power_out") - (uuid "a365e558-3d39-44b2-a7bc-fa7f5d095136") - ) - (pad "30" smd roundrect - (at 3.4375 0.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "VCC_30") - (pintype "passive") - (uuid "6c07f0a6-5605-43c1-b1d9-0d8268f8058f") - ) - (pad "31" smd roundrect - (at 3.4375 -0.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D5") - (pinfunction "IOT_42b_31") - (pintype "bidirectional") - (uuid "ce7cb424-61ab-44cf-a961-888e669f36c3") - ) - (pad "32" smd roundrect - (at 3.4375 -0.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D6") - (pinfunction "IOT_43a_32") - (pintype "bidirectional") - (uuid "f1fa3cc1-2e49-45ae-8af2-39f6861b0c59") - ) - (pad "33" smd roundrect - (at 3.4375 -1.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VCCIO_0_33") - (pintype "power_in") - (uuid "9fb2c5ed-9241-4dd8-b301-2bfe1c4bc55b") - ) - (pad "34" smd roundrect - (at 3.4375 -1.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D7") - (pinfunction "IOT_44b_34") - (pintype "bidirectional") - (uuid "f8cdeb2d-7cd9-4c26-bec0-226d36c7011c") - ) - (pad "35" smd roundrect - (at 3.4375 -2.25 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_INT") - (pinfunction "IOT_46b_G0_35") - (pintype "bidirectional") - (uuid "40f2300d-f4c1-4b57-a0c5-0fe43a3a21ea") - ) - (pad "36" smd roundrect - (at 3.4375 -2.75 90) - (size 0.875 0.25) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A0") - (pinfunction "IOT_48b_36") - (pintype "bidirectional") - (uuid "c870849a-2974-4114-9025-cc4f6d59718c") - ) - (pad "37" smd roundrect - (at 2.75 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A1") - (pinfunction "IOT_45a_G1_37") - (pintype "bidirectional") - (uuid "939f839f-d012-4dea-8482-47a5a503659d") - ) - (pad "38" smd roundrect - (at 2.25 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_CS") - (pinfunction "IOT_50b_38") - (pintype "bidirectional") - (uuid "f7eea70a-a6cf-423a-b0c5-0a48e7c32554") - ) - (pad "39" smd roundrect - (at 1.75 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9A-RGB0-Pad39)") - (pinfunction "RGB0_39") - (pintype "open_collector+no_connect") - (uuid "6f0b92e7-aaf2-435b-b398-73e7d8364f4d") - ) - (pad "40" smd roundrect - (at 1.25 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9A-RGB1-Pad40)") - (pinfunction "RGB1_40") - (pintype "open_collector+no_connect") - (uuid "e12e7764-ab38-4534-b6b0-3c2df6cb14cf") - ) - (pad "41" smd roundrect - (at 0.75 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9A-RGB2-Pad41)") - (pinfunction "RGB2_41") - (pintype "open_collector+no_connect") - (uuid "1234b6b6-f98a-485e-b659-00f0c99c3a5a") - ) - (pad "42" smd roundrect - (at 0.25 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RD") - (pinfunction "IOT_51a_42") - (pintype "bidirectional") - (uuid "16906be8-bcde-402e-ae37-26a0cceca314") - ) - (pad "43" smd roundrect - (at -0.25 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_WR") - (pinfunction "IOT_49a_43") - (pintype "bidirectional") - (uuid "36541463-dafd-48a3-8170-cde20738ce50") - ) - (pad "44" smd roundrect - (at -0.75 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_CLK") - (pinfunction "IOB_3b_G6_44") - (pintype "bidirectional") - (uuid "a0953698-fb05-4fed-836d-6bdb5ff0cdcf") - ) - (pad "45" smd roundrect - (at -1.25 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_CS") - (pinfunction "IOB_5b_45") - (pintype "bidirectional") - (uuid "5613c956-fff1-4795-bdca-a058b2eba27e") - ) - (pad "46" smd roundrect - (at -1.75 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/exi/EXI_INT") - (pinfunction "IOB_0a_46") - (pintype "bidirectional") - (uuid "1196e2fe-ba21-4d41-9143-ba101d4322f7") - ) - (pad "47" smd roundrect - (at -2.25 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9C-IOB_2a-Pad47)") - (pinfunction "IOB_2a_47") - (pintype "bidirectional+no_connect") - (uuid "92425050-f5a5-4f97-8550-2dd408a326f8") - ) - (pad "48" smd roundrect - (at -2.75 -3.4375 90) - (size 0.25 0.875) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U9C-IOB_4a-Pad48)") - (pinfunction "IOB_4a_48") - (pintype "bidirectional+no_connect") - (uuid "93921a90-9d0c-4471-ae4b-f34fa800eda3") - ) - (pad "49" smd rect - (at 0 0 90) - (size 5.6 5.6) - (property pad_prop_heatsink) - (layers "F.Cu" "F.Mask") - (net "GND") - (pinfunction "GND_49") - (pintype "power_in") - (zone_connect 2) - (uuid "65414df6-4309-4715-885f-ee8767f1d4f9") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_DFN_QFN.3dshapes/QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "eb7a3d72-768c-4f4a-8d06-fd2ae11a3db7") - (at 163.0325 87.8) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C55" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "8d52ff2e-1341-4730-8149-bfd719e9b942") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "562835b5-93b3-4881-a9bf-52fa245f877c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "79f65b21-cda8-448d-9374-68960ed96f09") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f5dd86fa-f700-4f94-bb15-d433c1cf1964") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "db64567c-84d4-4fc7-a2d6-cf50c0c3f0c8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0c789d91-c375-48e9-a17d-a08be2629fc0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "22547acf-66f5-4352-a2ad-e8da3c14256d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/6f202e5c-3771-4e1c-a64b-882d9195bdf4") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "23ced470-a49d-4078-bd28-76e28e99797d") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6c7f96d2-bdd8-4855-98c4-b9bf62ae5575") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8e185141-4094-4795-b08f-93d269d2112d") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "816e7036-c86d-48e1-8c97-bd6776101486") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "8d87cc14-727e-4f7d-98dd-b8bc68c6acb6") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pintype "passive") - (uuid "5f27b66a-18e6-4374-bdd6-103cecf22fe6") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "fe361908-31f0-44ba-a985-bb5b04c55caa") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "efd4feab-b85d-4431-abff-fcc61cc2b9d4") - (at 86.2375 109.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C33" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "0e216649-33fd-4d49-99d0-a2811fddcd8b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "f0e47d2f-b6ae-4279-a468-5318c590994d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "aa57d299-c28b-4790-8dcf-2b4127a8f4ba") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "dfa6b984-b71d-4707-98dc-7db71975e244") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "9d4fe9ea-88b4-4e27-a078-f109f80a5650") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ae31eadc-5de5-4cf2-a74b-2f10a30bd065") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "66cd06cd-ce56-44da-bf5c-cff38b7e08e5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4d7819e8-1253-4696-a4fe-93a881eaa454") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4167903e-87ae-4e54-89c5-072c4765df77") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "004a5a66-7d1f-41bd-97c7-70e64aa4e646") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a0206a1c-0c11-4d1e-9359-0e5f90e10528") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "fe2ba287-9813-4e6f-b0d7-80aa5b702694") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "cb553b95-af33-486f-a77d-e7b04c345ea0") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "f4cfc1fa-2373-4d5a-bb35-6593f7efaef9") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "07cee171-9cbd-4d11-9b42-956c4bc45f24") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "f0846455-c0bf-48f0-adc3-d3cc9c17c346") - (at 89.2375 109.5) - (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C57" - (at 0 -1.05 0) - (layer "F.SilkS") - (uuid "b6643dce-d96b-4b71-bee7-89f0893ff3e4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.05 0) - (layer "F.Fab") - (uuid "a287a44f-6e80-4e5b-937d-06fc52592919") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0535c01d-3a59-4dc9-ac7a-96c0a3c6cef8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "79a13b49-e987-4596-9293-883ff65d45c1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "d463c04c-e778-4c75-bf4a-2521966c80a9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_rect - (start -0.88 -0.35) - (end 0.88 0.35) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "bd8702d7-f62e-400f-bfc4-f68de16d8c58") - ) - (fp_rect - (start -0.3 -0.15) - (end 0.3 0.15) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "aad6afc7-5af6-4d56-9403-64ac2c3a5f13") - ) - (fp_text user "${REFERENCE}" - (at 0 -0.68 0) - (layer "F.Fab") - (uuid "628853cc-755f-4651-bcad-45a5e6eba413") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "" smd roundrect - (at -0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "d760b0d5-83ae-416e-86fe-82461829f6cd") - ) - (pad "" smd roundrect - (at 0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "a0677165-f7d0-45ed-90f4-863535492109") - ) - (pad "1" smd roundrect - (at -0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "53569bf6-c177-4c29-b36e-463cbb2a415a") - ) - (pad "2" smd roundrect - (at 0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "5d4f15b0-f8bd-4b4a-b5e1-2b427af0d433") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" - (layer "F.Cu") - (uuid "f0c30982-307c-4f7b-a642-89f896e19f1f") - (at 74 56.18) - (descr "SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf") - (property "Reference" "Y2" - (at 0 -3 0) - (layer "F.SilkS") - (uuid "c80c3862-dadc-4ad4-8cba-ce0dc3355941") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "25MHz" - (at 0 3 0) - (layer "F.Fab") - (uuid "01f98332-56f1-4d0b-8041-c22348188db3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d6f63d8f-b864-4192-9807-6826f4653a2b") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "60de8ea1-a680-406a-8b64-894ee80938c3") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "crystal_resonator_oscillator" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "be3644c2-09e1-412b-92da-da7a96e3a0a7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "C0" "7pF" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "dba4e07a-2017-4372-8bfe-eddaa46277f7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "ESR" "30R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "22234048-7800-425c-90d3-8331d89e0c70") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "±50ppm" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "1ea3a1b8-058b-4d67-8ad4-dc82b51622ba") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "CL" "8pF" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "13c43d47-37ef-4995-88e4-3c208d77f2a2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "71255260-894d-4de4-88ba-a5560810c3e1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "8ff674a1-1737-424a-81f6-35751c6cebb5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Crystal*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/92b8bfce-4f9e-4b91-88ed-4544f0888ee3") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2" "4" "3") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 -2.31) - (end -2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2da957d8-f5b6-4e07-aefd-d19b77246a44") - ) - (fp_line - (start -2.76 2.31) - (end 2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "5fde8b1c-9fd0-441d-9c1c-c43fd887ffd2") - ) - (fp_rect - (start -2.75 -2.3) - (end 2.75 2.3) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "0c3d401b-4e9c-4fca-a4b9-2158f1735883") - ) - (fp_poly - (pts - (xy 1.6 -1.25) (xy 1.6 1.25) (xy -0.975 1.25) (xy -1.6 0.625) (xy -1.6 -1.25) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "8e6006ed-7818-4eab-848e-ef70e74fbced") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "4e5e6228-ca52-43f6-bf62-3e84d1af1664") - (effects - (font - (size 0.8 0.8) - (thickness 0.12) - ) - ) - ) - (pad "1" smd roundrect - (at -1.45 1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "/ethernet/XTAL_I") - (pinfunction "1_1") - (pintype "passive") - (uuid "47055341-f933-4d23-b35d-f025a7d8b23f") - ) - (pad "2" smd roundrect - (at 1.45 1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_2") - (pintype "passive") - (uuid "8e114235-dd26-4bd8-80e2-c2a942cd98c0") - ) - (pad "3" smd roundrect - (at 1.45 -1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "/ethernet/XTAL_O") - (pinfunction "3_3") - (pintype "passive") - (uuid "b51cde0b-a8c4-4223-b6b9-0fc81aadd96a") - ) - (pad "4" smd roundrect - (at -1.45 -1.15) - (size 2.1 1.8) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.138889) - (net "GND") - (pinfunction "G_4") - (pintype "passive") - (uuid "a3cb2361-f04c-41b8-abf0-da86e0489b6b") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Crystal.3dshapes/Crystal_SMD_3225-4Pin_3.2x2.5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "f137e186-e29c-4761-aa5f-f8c17e2da39a") - (at 63.96 63.87) - (descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)") - (tags "inductor handsolder") - (property "Reference" "FB1" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "ac498921-6433-4124-9c75-0213292ffad2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "600R@100MHz" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "e37e08c2-291d-42ab-95e3-043f534d0009") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d2fc9296-dc55-410d-9bea-0b37a58abc02") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b5fc18cb-b05c-4fc6-8c7c-4c82f939c8b0") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "0c4037cf-6823-4ac3-bd01-cefacef91607") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Current" "200mA" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ec3e0514-8749-46f4-ba1b-c43f3e428cd0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "Inductor_* L_* *Ferrite*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/5b37f370-0a43-4f87-b9aa-18f15d5a7a01") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.171267 -0.51) - (end 0.171267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c40d4675-9d98-4183-b980-612bebef3c50") - ) - (fp_line - (start -0.171267 0.51) - (end 0.171267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "09286fca-06cd-4b83-b3c6-52761355775c") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "e4e6b419-6342-483a-92ab-d296b593e9d6") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e9471652-bf40-40bc-9bbb-c4bb75a1017e") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "9b6985ab-d9f0-4f27-8e5f-4c3f21e139f6") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.875 0) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/VCORE") - (pintype "passive") - (uuid "447c7e0a-fd1f-47e2-8fa5-73747181f3cc") - ) - (pad "2" smd roundrect - (at 0.875 0) - (size 1.05 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U8-VPHY)") - (pintype "passive") - (uuid "c6fe4faf-d103-4305-b84e-ef64b95b3728") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Inductor_SMD.3dshapes/L_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0201_0603Metric_Pad0.64x0.40mm_HandSolder" - (layer "F.Cu") - (uuid "f1ad0001-2421-45eb-bb55-880205ee7b1d") - (at 75.6525 92.775) - (descr "Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C57" - (at 0 -1.05 0) - (layer "F.SilkS") - (uuid "a508c304-2584-4a7b-8fc0-e52ac170c180") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.05 0) - (layer "F.Fab") - (uuid "9e2b1b19-de7c-4137-ad1f-43068c450fb0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "126ed5ca-d2a1-496e-9576-5c21d11410f9") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "a6924a56-652c-4086-8d47-ac15937e824a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "843ab4af-b00f-4590-8844-a4b1fb9a4f45") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_rect - (start -0.88 -0.35) - (end 0.88 0.35) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "aa374715-ddbd-4dff-bb79-0ae9b83917e1") - ) - (fp_rect - (start -0.3 -0.15) - (end 0.3 0.15) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ddfe1384-a717-4056-b027-3723eef065ba") - ) - (fp_text user "${REFERENCE}" - (at 0 -0.68 0) - (layer "F.Fab") - (uuid "86abdc6f-b2a2-4cc3-9220-493318cf2288") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "" smd roundrect - (at -0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "943e0670-fdb2-464d-9bab-78e7f2a78b7b") - ) - (pad "" smd roundrect - (at 0.4325 0) - (size 0.458 0.36) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "19d01b58-84e1-40aa-a0c0-7ce7478cb238") - ) - (pad "1" smd roundrect - (at -0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "3d3e5ec4-cd04-435d-9997-96f15db4fbb7") - ) - (pad "2" smd roundrect - (at 0.4075 0) - (size 0.635 0.4) - (layers "F.Cu" "F.Mask") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "cf76e353-0252-455d-8d17-17d45fa7fb77") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0201_0603Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (layer "F.Cu") - (uuid "f427671d-c70b-46c8-9595-febeeac25294") - (at 196.625 64.025 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R4" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "c023e3e0-e3ac-47f2-af35-181cabc99bc7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100k" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "08c48e9f-95c8-45c3-97ba-2e6907ad1df9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "61187287-3f31-42e6-a623-7b72489ce733") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "cc8dcc62-c7c3-4519-9b74-b2fcfad11591") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "8245d7e8-06ed-4e7d-8cc1-49ec61044e99") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "1%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fea28db9-34ff-4443-bc30-543d32713c92") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/33ce72fd-76d9-4897-b8ff-3769cd2a7734") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1f307923-22de-4c57-8222-128ed57ee730") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "42ffca12-729c-47a7-a9c4-07706fefd5ba") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "41d9f9d8-960d-4ac0-a504-5b49f7d1e464") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "8261fd66-95c3-4bbb-95d8-5916ea5f2b5c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "fa655e5e-4609-4227-ab7d-2a773ca7b0f1") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U2-PR1)") - (pinfunction "~_1") - (pintype "passive") - (uuid "33ab8c9f-4099-4935-a2db-a26455b6d7af") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "~_2") - (pintype "passive") - (uuid "463f798b-bd3c-4114-b79d-278811bf70ea") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (layer "F.Cu") - (uuid "f49a8535-3944-4938-8e37-c215fde9d242") - (at 73.085 65.305) - (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") - (tags "capacitor handsolder") - (property "Reference" "C3" - (at 0 -1.68 0) - (layer "F.SilkS") - (uuid "2a27c944-9aa3-4960-b2fd-d61076ce8a27") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10uF" - (at 0 1.68 0) - (layer "F.Fab") - (uuid "3aa7e8ce-ac50-4565-8479-e362b52e28b0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9d64d3e1-f1c7-46ee-b27c-55904b487429") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "1b9f0f76-571d-46fe-b3a2-bf8023a0e801") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "a9b9f6a0-ded8-49fa-aee3-60c347dd2e99") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X5R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "d48569d2-d1e8-4fe7-a3c6-bbbaaaa67831") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "25V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "31f3ed89-3a39-484b-bf2f-7c0e4d641dba") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/17d4e916-c91e-4b00-87a8-a49e744912b2") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.261252 -0.735) - (end 0.261252 -0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "98df4f75-81bc-4e12-85c7-4c8739ca601d") - ) - (fp_line - (start -0.261252 0.735) - (end 0.261252 0.735) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0c6334f7-34f1-42e1-8302-4ebdef4b9b3c") - ) - (fp_rect - (start -1.88 -0.98) - (end 1.88 0.98) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d079f0c5-8c87-4231-a271-7d335f9f56ae") - ) - (fp_rect - (start -1 -0.625) - (end 1 0.625) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1c871bfb-fa29-4ffd-b1e8-305b2d0aa78b") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "2e1bb677-5576-452d-8690-c4ae4a6b6990") - (effects - (font - (size 0.5 0.5) - (thickness 0.08) - ) - ) - ) - (pad "1" smd roundrect - (at -1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "/Power/12V_EXI") - (pintype "passive") - (uuid "ef92a550-79d7-4fcc-bcd3-f22fd5a5fd75") - ) - (pad "2" smd roundrect - (at 1.0375 0) - (size 1.175 1.45) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.212766) - (net "GND") - (pintype "passive") - (uuid "949a91d3-7b6a-4457-be52-d4596100bfae") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0805_2012Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "f51111cd-3952-44c5-8344-b7c6163d18ce") - (at 83.2375 106.5 90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C40" - (at 0 -1.43 90) - (layer "F.SilkS") - (uuid "3c12cfa1-dcd2-4114-883e-8e2b2cd0b900") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "4.7uF" - (at 0 1.43 90) - (layer "F.Fab") - (uuid "03bf5dc0-69e5-449a-a8e0-55b62f9ac860") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "d0d22931-1b84-45c1-a2ac-5269ef31c5ad") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "29136a45-e91b-4323-9e77-f82ef7575f62") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "377d4603-aa26-42bd-86e7-caab25859ebd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "57a44248-8fa6-4f5a-ae71-3c1e194225d0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3736a9e0-6999-4d07-9e1b-e4618c4537ae") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/170fb1df-3975-4fe7-a89c-98fb9f597901") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b94381e2-4888-470c-871a-4e46e76f7ae2") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "92490cfb-963c-4160-b59b-036693573a52") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b2e9d742-6c05-43f3-817f-e1fbac300f6d") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "e559f820-8cdb-4d6b-9bb3-a78896e0c065") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "f58dee7d-8a78-4405-960d-3784c5883739") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0 90) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "1008ca85-2122-431b-bb61-24df9a725834") - ) - (pad "2" smd roundrect - (at 0.8625 0 90) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "ed6e9786-8665-4641-8209-1d190dc3a5ec") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_QFP:LQFP-48_7x7mm_P0.5mm" - (layer "F.Cu") - (uuid "f85c0bd7-7525-4332-b9d5-e351cabbf751") - (at 69.5175 102.65) - (descr "LQFP, 48 Pin (JEDEC MS-026 variation BBC, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfp/05081760_a_lx48.pdf)") - (tags "LQFP QFP CASE-932AA CASE-932-03 C48-1 C48-2 C48-3 C48-5 C48-6 C48-6C PT0048A") - (property "Reference" "U11" - (at 0 -5.85 0) - (layer "F.SilkS") - (uuid "b2d84e8c-c6ef-495d-aebf-04c83168fdf1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "W5100S-L" - (at 0 5.85 0) - (layer "F.Fab") - (uuid "e6cc4970-0f09-4695-aea5-cc11d457e97f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "https://docs.wiznet.io/img/products/w5100s/w5100s-ds-v128e.pdf" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "d362e776-75d5-44ec-a310-88250a9bcc25") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "10/100Mb Ethernet controller with TCP/IP stack, LQFP-48" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b53ebfcd-21bb-419c-841c-2ccb6600a8b1") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "137b7b45-b01f-485f-aecd-6ff715b8d3c1") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Manufacturer" "WIZnet" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "0cb4e99a-74e1-4457-9848-121a954de13e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "LQFP*7x7mm*P0.5mm*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/71fdeaba-68dd-41c1-b431-48a573ddbded") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "48" "47" "30" "29" "32" "33" "35" "34" "37" "38" "39" "40" "41" - "42" "43" "44" "9" "4" "13" "31" "45" "22" "1" "7" "16" "8" "15" "23" - "46" "10" "24" "36" "14" "3" "2" "6" "5" "17" "18" "19" "20" "21" "11" - "12" "25" "26" "27" "28" - ) - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -3.61 -3.61) - (end -3.16 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "23de6516-30f2-4a0f-8259-9843660edc98") - ) - (fp_line - (start -3.61 -3.16) - (end -3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a4eb80ce-839d-447b-97ed-3aac4f9ed5c8") - ) - (fp_line - (start -3.61 3.61) - (end -3.61 3.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6aa251b4-2607-467d-8f05-41fb668af86f") - ) - (fp_line - (start -3.16 3.61) - (end -3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7f9e7ce4-161d-4157-a0f7-e8dddb8ba968") - ) - (fp_line - (start 3.16 -3.61) - (end 3.61 -3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cbd2f2a9-e798-4582-acaf-76f642401375") - ) - (fp_line - (start 3.61 -3.61) - (end 3.61 -3.16) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a19d34c1-4760-4f7c-8132-f1335186201d") - ) - (fp_line - (start 3.61 3.16) - (end 3.61 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "38c12610-cd09-47d3-8ef6-fff5d2787ad9") - ) - (fp_line - (start 3.61 3.61) - (end 3.16 3.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6e84e363-fbb3-4504-ab67-394bfe6f01ef") - ) - (fp_poly - (pts - (xy -4.25 -3.16) (xy -4.59 -3.63) (xy -3.91 -3.63) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "33a02c24-6e85-4859-9dfe-bfa9f6b020b9") - ) - (fp_line - (start -5.15 -3.15) - (end -3.75 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "08224bb5-ce17-4ec5-8a00-6eed69a1d2fc") - ) - (fp_line - (start -5.15 3.15) - (end -5.15 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b1d0b032-bdc1-42b4-85a7-69a3bf1fc69d") - ) - (fp_line - (start -3.75 -3.75) - (end -3.15 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "edfcc394-d97e-4e3c-a266-5f461c6a07ce") - ) - (fp_line - (start -3.75 -3.15) - (end -3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "a22b783f-0af3-47ab-bca0-5e97b90508e0") - ) - (fp_line - (start -3.75 3.15) - (end -5.15 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "934df6ae-5d20-4627-bdd0-9981ab4d907d") - ) - (fp_line - (start -3.75 3.75) - (end -3.75 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "cb5e76ac-68cf-43fa-b5f9-0b3dbcb29d32") - ) - (fp_line - (start -3.15 -5.15) - (end 3.15 -5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "417f601f-9e8c-42bc-a092-e49587800cd9") - ) - (fp_line - (start -3.15 -3.75) - (end -3.15 -5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2430fc68-f3b1-45d8-899c-ea0e1d995c40") - ) - (fp_line - (start -3.15 3.75) - (end -3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c460feaa-a566-4e5a-8972-5de88665694d") - ) - (fp_line - (start -3.15 5.15) - (end -3.15 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "e1184cec-40b0-4e82-9d9b-731044f7ffb2") - ) - (fp_line - (start 3.15 -5.15) - (end 3.15 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "9cfca9a4-ea9c-4cae-a549-e31cd082c76e") - ) - (fp_line - (start 3.15 -3.75) - (end 3.75 -3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "de55dcdf-142e-46af-ad82-a39480c942f8") - ) - (fp_line - (start 3.15 3.75) - (end 3.15 5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c610cca1-4fc9-4742-a731-dcbe51c20853") - ) - (fp_line - (start 3.15 5.15) - (end -3.15 5.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6256ce47-aa49-42aa-aacb-07d8a6cd07a3") - ) - (fp_line - (start 3.75 -3.75) - (end 3.75 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "644a8acf-8ee9-4504-ae0c-fcecab329ef8") - ) - (fp_line - (start 3.75 -3.15) - (end 5.15 -3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c26be3ee-4e70-4f39-8aab-2691c9a628f2") - ) - (fp_line - (start 3.75 3.15) - (end 3.75 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c5772963-7dbe-4cce-a4cd-f223ee0bf50c") - ) - (fp_line - (start 3.75 3.75) - (end 3.15 3.75) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "c79c1ed6-34d2-4875-a369-d33c6bc084ef") - ) - (fp_line - (start 5.15 -3.15) - (end 5.15 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8fdc6dac-b090-4f08-80be-53926f417feb") - ) - (fp_line - (start 5.15 3.15) - (end 3.75 3.15) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "aefedc47-c85c-40b3-ab4b-203c01407583") - ) - (fp_poly - (pts - (xy -2.5 -3.5) (xy 3.5 -3.5) (xy 3.5 3.5) (xy -3.5 3.5) (xy -3.5 -2.5) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1684d8be-6dc5-4509-9758-7b8203288dcb") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "72923af4-8c1e-4935-b0de-c17ab184cdfc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "1" smd roundrect - (at -4.1625 -2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GNDA_1") - (pintype "power_in") - (uuid "d7f07b7b-d2b0-4d55-b3ab-65ea2b028902") - ) - (pad "2" smd roundrect - (at -4.1625 -2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_TXN") - (pinfunction "TXON_2") - (pintype "output") - (uuid "6c35f71f-ce90-4038-9967-d3fc67a65e91") - ) - (pad "3" smd roundrect - (at -4.1625 -1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_TXP") - (pinfunction "TXOP_3") - (pintype "output") - (uuid "7bc2d452-a6a7-4f2a-9f6a-3349545f12d7") - ) - (pad "4" smd roundrect - (at -4.1625 -1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2A_4") - (pintype "power_in") - (uuid "87f95cd8-bcf9-47cd-b62e-4fe9113ec6b7") - ) - (pad "5" smd roundrect - (at -4.1625 -0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RXN") - (pinfunction "RXIN_5") - (pintype "input") - (uuid "b3b664a7-e58d-46d1-8ab0-3c14c26464f8") - ) - (pad "6" smd roundrect - (at -4.1625 -0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RXP") - (pinfunction "RXIP_6") - (pintype "input") - (uuid "7d4af1e5-eb5b-4028-b711-95593de26630") - ) - (pad "7" smd roundrect - (at -4.1625 0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GNDA_7") - (pintype "passive") - (uuid "5758a7b5-c0db-4480-92af-98aeb83d8717") - ) - (pad "8" smd roundrect - (at -4.1625 0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3A_8") - (pintype "power_in") - (uuid "7c48d7d3-e16e-44f4-a4c0-548e0f8b7ac2") - ) - (pad "9" smd roundrect - (at -4.1625 1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "Net-(U11-RSET_BG)") - (pinfunction "RSET_BG_9") - (pintype "output") - (uuid "81942098-790e-4cda-b41c-a9ae9ca058b9") - ) - (pad "10" smd roundrect - (at -4.1625 1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_10") - (pintype "power_in") - (uuid "988969ea-64a2-40e8-b6f8-acdab024119a") - ) - (pad "11" smd roundrect - (at -4.1625 2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_O") - (pinfunction "XSCO_11") - (pintype "output") - (uuid "a2dab10b-a3f1-4749-a80a-da55f31139df") - ) - (pad "12" smd roundrect - (at -4.1625 2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/XTAL_I") - (pinfunction "XSCI_12") - (pintype "input") - (uuid "950bf06e-242b-41ed-a2e7-20937678b827") - ) - (pad "13" smd roundrect - (at -2.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_13") - (pintype "power_in") - (uuid "732c32b1-6b42-4414-af6e-2c4e735bde65") - ) - (pad "14" smd roundrect - (at -2.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2O_RAW") - (pinfunction "1V2O_14") - (pintype "power_out") - (uuid "22a5aca0-e7cd-4ad3-8016-372a0325c63d") - ) - (pad "15" smd roundrect - (at -1.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3A_15") - (pintype "passive") - (uuid "5873fc2d-2d0a-4fe3-81df-78a611c874e3") - ) - (pad "16" smd roundrect - (at -1.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GNDA_16") - (pintype "passive") - (uuid "7188c7e2-a21d-46fd-9eac-bdf9cb2cbf8c") - ) - (pad "17" smd roundrect - (at -0.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/LED_LNK") - (pinfunction "~{LNK}_17") - (pintype "output") - (uuid "510066bd-1dc5-420c-a81f-731a409b51d4") - ) - (pad "18" smd roundrect - (at -0.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U11-~{SPD}-Pad18)") - (pinfunction "~{SPD}_18") - (pintype "output+no_connect") - (uuid "63e4476f-bd21-45d7-8b18-6a83d50291fb") - ) - (pad "19" smd roundrect - (at 0.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U11-~{DPX}-Pad19)") - (pinfunction "~{DPX}_19") - (pintype "output+no_connect") - (uuid "1899d3ea-98a6-4bcb-8efa-a49961aac405") - ) - (pad "20" smd roundrect - (at 0.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/LED_ACT") - (pinfunction "~{ACT}_20") - (pintype "output") - (uuid "91cc82b7-d3c9-48b9-af4e-de04994f6529") - ) - (pad "21" smd roundrect - (at 1.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U11-~{COL}-Pad21)") - (pinfunction "~{COL}_21") - (pintype "output+no_connect") - (uuid "acf1e6d5-27da-4ebb-867f-b88487198a76") - ) - (pad "22" smd roundrect - (at 1.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_22") - (pintype "passive") - (uuid "cbf6299c-abd9-4025-b81a-3f7f5d29cdc4") - ) - (pad "23" smd roundrect - (at 2.25 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_23") - (pintype "passive") - (uuid "b371411e-f916-4e69-9e49-01363a2080c0") - ) - (pad "24" smd roundrect - (at 2.75 4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3D_24") - (pintype "power_in") - (uuid "cd91e46b-772e-4774-a0cd-f35e649743f4") - ) - (pad "25" smd roundrect - (at 4.1625 2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "MOD[0]_25") - (pintype "input") - (uuid "7fb85c2a-41f2-4d8a-ae9e-1ebfa9aa045d") - ) - (pad "26" smd roundrect - (at 4.1625 2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "MOD[1]_26") - (pintype "input") - (uuid "f3e8444d-1dc4-4c8c-96d8-d0c4aa06a12a") - ) - (pad "27" smd roundrect - (at 4.1625 1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "MOD[2]_27") - (pintype "input") - (uuid "63233001-8fad-4d93-aca3-6221730eee56") - ) - (pad "28" smd roundrect - (at 4.1625 1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "MOD[3]_28") - (pintype "input") - (uuid "e373bf95-e7fd-4e27-b7d4-5f3afdcd0d62") - ) - (pad "29" smd roundrect - (at 4.1625 0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_CS") - (pinfunction "~{CS}_29") - (pintype "input") - (uuid "fc91853c-aad3-4429-97f7-5c7b0fdac033") - ) - (pad "30" smd roundrect - (at 4.1625 0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "SCLK_30") - (pintype "input") - (uuid "3461640d-15ae-48f5-a73e-5abd636efc95") - ) - (pad "31" smd roundrect - (at 4.1625 -0.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_31") - (pintype "passive") - (uuid "8656dfac-1583-4209-a630-4aad2e2cd0cf") - ) - (pad "32" smd roundrect - (at 4.1625 -0.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A0") - (pinfunction "MOSI_32") - (pintype "input") - (uuid "c324f802-83ca-4835-9bd1-b1f9fd800b70") - ) - (pad "33" smd roundrect - (at 4.1625 -1.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_A1") - (pinfunction "MISO_33") - (pintype "output") - (uuid "bc08415f-fe16-4b7b-a94d-5b7a03fcc4aa") - ) - (pad "34" smd roundrect - (at 4.1625 -1.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RD") - (pinfunction "~{RD}_34") - (pintype "input") - (uuid "2b676f38-1e82-4506-bb06-c07656253d1d") - ) - (pad "35" smd roundrect - (at 4.1625 -2.25) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_WR") - (pinfunction "~{WR}_35") - (pintype "input") - (uuid "65cf3866-e0a0-475f-ac31-d505ecda5da5") - ) - (pad "36" smd roundrect - (at 4.1625 -2.75) - (size 1.475 0.3) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_3V3") - (pinfunction "3V3D_36") - (pintype "passive") - (uuid "2c57c54c-9340-4fb6-8b19-751e63bb7e9a") - ) - (pad "37" smd roundrect - (at 2.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D0") - (pinfunction "DATA0_37") - (pintype "bidirectional") - (uuid "fe436963-2efa-4810-9c75-3c9431b3cd78") - ) - (pad "38" smd roundrect - (at 2.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D1") - (pinfunction "DATA1_38") - (pintype "bidirectional") - (uuid "7905b715-4989-453a-9696-d11a9ce88d8c") - ) - (pad "39" smd roundrect - (at 1.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D2") - (pinfunction "DATA2_39") - (pintype "bidirectional") - (uuid "45e56692-c278-43ee-a52e-291dbe3267a2") - ) - (pad "40" smd roundrect - (at 1.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D3") - (pinfunction "DATA3_40") - (pintype "bidirectional") - (uuid "6947c1e2-2237-4702-bb10-d4de7f815173") - ) - (pad "41" smd roundrect - (at 0.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D4") - (pinfunction "DATA4_41") - (pintype "bidirectional") - (uuid "6f6bc2aa-43f4-4dcc-b39d-f808579f5e33") - ) - (pad "42" smd roundrect - (at 0.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D5") - (pinfunction "DATA5_42") - (pintype "bidirectional") - (uuid "92337047-40c9-4f6e-8c2c-bc616c8ed8f3") - ) - (pad "43" smd roundrect - (at -0.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D6") - (pinfunction "DATA6_43") - (pintype "bidirectional") - (uuid "f5850e8c-4649-4bbf-b915-d103c3e9645c") - ) - (pad "44" smd roundrect - (at -0.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_D7") - (pinfunction "DATA7_44") - (pintype "bidirectional") - (uuid "8fc5e99a-03e2-4877-b879-87e51517e731") - ) - (pad "45" smd roundrect - (at -1.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/1V2_ETH") - (pinfunction "1V2D_45") - (pintype "passive") - (uuid "f8fae9a7-a564-4146-a15f-511af2b9db4c") - ) - (pad "46" smd roundrect - (at -1.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_46") - (pintype "passive") - (uuid "0ece10e8-90a5-4868-8df7-e77563ef1278") - ) - (pad "47" smd roundrect - (at -2.25 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_INT") - (pinfunction "~{INT}_47") - (pintype "output") - (uuid "8a2548d8-e61d-43f4-948d-f1e660ccff87") - ) - (pad "48" smd roundrect - (at -2.75 -4.1625) - (size 0.3 1.475) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/ethernet/ETH_RST") - (pinfunction "~{RST}_48") - (pintype "input") - (uuid "9faf43b4-69a8-40f8-b48b-2fef9d290f07") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-48_7x7mm_P0.5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "fa61e35b-92cb-4dac-bffa-06050a392527") - (at 78.2375 120.5) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R11" - (at 0 -1.17 0) - (layer "F.SilkS") - (uuid "00eb391d-096e-49c5-8d1d-e9e91b367094") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10k" - (at 0 1.17 0) - (layer "F.Fab") - (uuid "7c14205f-e119-469b-88a3-590db1a9c8a4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9a189dda-7901-4eef-9e35-81fedad5d3c9") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "27de4cee-028a-48fd-8f35-8438a98d2aad") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "0bd0bef4-7b13-428e-b83b-092df1b23821") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "052fd139-8a1f-45e8-ab04-ea3143da6eff") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/4f677ad0-bb05-4434-8c1e-5d3a6ddffd4b") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b62af43b-3836-4fc1-b0a3-c8171eca6ae1") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "9ee4ee11-1df3-409b-9f40-cdaf21e614e1") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "8bf34b3c-3ce0-408c-a353-2f3016291b2f") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "1e000d53-7711-4c4b-a7bb-9bebefc13913") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a086d78e-ae56-4622-94ac-ba67d1198f1c") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "~_1") - (pintype "passive") - (uuid "900e1d59-aabc-4960-8748-d28952b922ae") - ) - (pad "2" smd roundrect - (at 0.5975 0) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/CRESET") - (pinfunction "~_2") - (pintype "passive") - (uuid "ffbd2f24-e6d3-4d08-8c84-b643f64c7d02") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) - (layer "F.Cu") - (uuid "fde9debb-0364-4ceb-9e38-ca07da9376a4") - (at 79.2375 91.5) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") - (property "Reference" "U2" - (at 0 -2.4 0) - (layer "F.SilkS") - (uuid "fefc5424-6c8f-4324-94aa-770adb31d68b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "AP2112K-3.3" - (at 0 2.4 0) - (layer "F.Fab") - (uuid "6f12cc38-4c2b-4995-8111-1bb4aa2ed91c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0132749d-6bf2-4b8c-8ba9-52b5284287b8") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f69b2aa0-3f63-4391-aa4b-cfd387e38d60") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "package/gullwing" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "7eff5fb5-d3c5-44b4-a1f0-368cc92e6312") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23?5*") - (sheetname "/Power/") - (sheetfile "Power.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "2" "4" "5") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0c214b93-cf52-49f4-87e9-4c97a22d1384") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0401f445-1f0c-476a-83f7-4d0a02e361d2") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "a6b969fe-8c43-4714-8c1a-ce7add54ffb3") - ) - (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "633b68fc-b671-4af7-aae2-ba4873ab46eb") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6786e5a4-c8b2-4b87-9d32-1dc2bb2c1581") - ) - (fp_line - (start 0.91 1.51) - (end 0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b8764c30-54f3-4f77-9104-2373e24a1666") - ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6199eff4-774f-4a40-803c-93420564dcee") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "1096e024-6efa-4a58-bf93-cb121635a9a2") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5a776032-45d6-470d-8ca0-296a2a9bd369") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7dde544e-65d5-42e9-a0b1-16dd6ed33fad") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ab27a7d2-3353-412d-bdcd-4915269def10") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "42cc09a4-b22b-4afc-86e0-072d6f4343a5") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "7fda4f96-d873-4908-ade5-0e6dea21a488") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6ab1aac9-a0d7-4d12-b75b-a54cf567df55") - ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "d5c708ae-6832-4c08-9793-a42535ecaa7f") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "8555e370-7276-4726-ab1e-018ee9278fae") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "04fb6430-6a17-4902-beca-bcebda7663c1") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "324ed3f7-9291-4a14-acd1-f71a6a0a529a") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "1f128cae-e774-4702-97d2-6a180a14c1aa") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2d8f64b9-73f5-42f0-8053-0b9227e5fc3f") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "56dd82a3-3da7-4ead-8e7a-e463e9af3262") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "21391997-1578-4c36-aa9d-ab4d9ddb1762") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6fd7dbfa-ce2d-4043-8379-4696b86d61dd") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "605c4409-18ed-4bc7-8091-07df0ab66f98") - ) - (fp_poly - (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) - ) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a6966802-fdd7-4e2c-9958-56d790fd4324") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "8b0faf43-96cb-476a-925f-ead27bcea465") - (effects - (font - (size 0.72 0.72) - (thickness 0.11) - ) - ) - ) - (pad "1" smd roundrect - (at -1.1375 -0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/5V") - (pinfunction "VIN_1") - (pintype "power_in") - (uuid "8cc59fdf-2047-4cf9-98d6-5bf5cee89cd5") - ) - (pad "2" smd roundrect - (at -1.1375 0) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pinfunction "GND_2") - (pintype "power_in") - (uuid "a4621de3-6031-44b3-bd57-73f7b099166c") - ) - (pad "3" smd roundrect - (at -1.1375 0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/5V") - (pinfunction "EN_3") - (pintype "input") - (uuid "15e7b9cc-01d2-4387-a5e3-9b7cd487be90") - ) - (pad "4" smd roundrect - (at 1.1375 0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "unconnected-(U2-NC-Pad4)") - (pinfunction "NC_4") - (pintype "no_connect") - (uuid "e931a437-decb-4cd8-859f-b4478393e708") - ) - (pad "5" smd roundrect - (at 1.1375 -0.95) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/USB_3V3") - (pinfunction "VOUT_5") - (pintype "power_out") - (uuid "81d39a54-9cd7-4da5-8ac6-8a279702639a") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "fef418f9-1cdf-400d-93e8-3f7c41737dde") - (at 72.2375 88.5) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C35" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "3bb15951-d433-441b-b138-55a85c7118b2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ae17c0c4-103d-415b-a497-448393c7b10f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "2521dca7-f862-4ede-ac0d-66cfaf125084") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "8fb720cf-caf4-4b4a-9e0d-37624c662165") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "2d255ebf-8b3b-449d-9a06-90c2898826cc") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "9d480538-5147-4ead-9fdd-9528bea7cd90") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "47507439-393b-454f-8baa-e4b973944e37") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/038bed8f-e394-4f9a-b327-b6d4caf6d69d") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62b844f2-3492-40fc-81f3-13886fdd607b") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0306ce20-d5f2-45d9-82a1-08aa1fd1377d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "54d2442f-ef16-4842-a8e5-7ab73f98f815") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "16279044-e9b8-4ac8-b1cc-f9ef997159ef") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "703c2ebd-cd88-462d-b40f-fa096a5f6f5d") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2715ff9e-2fcf-41a8-b8bc-14b92d2c5505") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "b26dae0a-3640-4de3-8292-94f4dc2fed56") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (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 "ff3baa05-c2af-4edf-a7c6-4d75ad08de4d") - (at 175.625 47.975 -90) - (descr "6-pin SOT-23 package, Handsoldering") - (tags "SOT-23-6 Handsoldering") - (property "Reference" "D1" - (at 0 -2.9 90) - (layer "F.SilkS") - (uuid "7f1bde79-a280-4180-a663-0fb923be2eda") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "USBLC6-2SC6" - (at 0 2.9 90) - (layer "F.Fab") - (uuid "31f5773a-40f3-405e-943b-0fa694b8d2e0") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "fe08319a-7b7a-4cfa-a1b1-ec050eeb50ed") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "08f0a3b9-fff2-4041-8634-cf08f76d3947") - (effects - (font - (size 1.27 1.27) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "SOT?23*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/27722f23-032f-40c9-94fb-40c1d2d7f26f") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "3" "5" "2" "6" "4") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.9 1.61) - (end 0.9 1.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f8fcc3f5-4458-462f-8fbb-26128f841e54") - ) - (fp_line - (start 0.1 -1.61) - (end -0.7 -1.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2ef50698-ff51-4dd6-af3e-e9bc11a1243a") - ) - (fp_line - (start 0.1 -1.61) - (end 0.9 -1.61) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "595dd659-9aae-4401-ad16-57609af55c23") - ) - (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 yes) - (layer "F.SilkS") - (uuid "857cd60a-7458-4639-aa94-1ddd4b20b7fd") - ) - (fp_line - (start -2.4 1.8) - (end -2.4 -1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b18a5e1a-00a6-4d3f-b215-9ae1df01ec34") - ) - (fp_line - (start 2.4 1.8) - (end -2.4 1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "82c56d10-100b-4579-ae46-5f81e77c2210") - ) - (fp_line - (start -2.4 -1.8) - (end 2.4 -1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "46b40872-e08f-491c-87c0-761b1dd949d7") - ) - (fp_line - (start 2.4 -1.8) - (end 2.4 1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "18080685-65ba-47c8-987c-b1d1552781e6") - ) - (fp_line - (start 0.9 1.55) - (end -0.9 1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "53623668-3236-400a-b62b-2211baf67405") - ) - (fp_line - (start -0.9 -0.9) - (end -0.9 1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "239b7ce5-3285-4a09-8efc-7d762673fb18") - ) - (fp_line - (start -0.9 -0.9) - (end -0.25 -1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "c5a45b8a-bc8d-4af3-8bfa-ad31880e1fd7") - ) - (fp_line - (start 0.9 -1.55) - (end 0.9 1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "89b940b7-9ac9-4db6-9628-3747514757dd") - ) - (fp_line - (start 0.9 -1.55) - (end -0.25 -1.55) - (stroke - (width 0.1) - (type solid) - ) - (layer "F.Fab") - (uuid "0a75e851-d3cd-40b4-8773-fa53974dd62b") - ) - (fp_text user "${REFERENCE}" - (at 0 -1.6 0) - (layer "F.Fab") - (uuid "9da3f9a2-7e82-4934-b950-a618cd099cb0") - (effects - (font - (size 0.5 0.5) - (thickness 0.075) - ) - ) - ) - (pad "1" smd roundrect - (at -1.35 -0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDP") - (pinfunction "I/O1_1") - (pintype "passive") - (uuid "09a854f9-9825-44d0-aedd-4ba46edbaf09") - ) - (pad "2" smd roundrect - (at -1.35 0 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_GND") - (pinfunction "GND_2") - (pintype "passive") - (uuid "12c4d0fe-1f9d-4eac-b8ee-bb8464b80bd8") - ) - (pad "3" smd roundrect - (at -1.35 0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDN") - (pinfunction "I/O2_3") - (pintype "passive") - (uuid "c0c43f69-5b41-46e2-a5f4-9035e1f007d7") - ) - (pad "4" smd roundrect - (at 1.35 0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDN") - (pinfunction "I/O2_4") - (pintype "passive") - (uuid "98dee3c4-4fda-4628-9737-755365e3f3f5") - ) - (pad "5" smd roundrect - (at 1.35 0 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/USB_VBUS") - (pinfunction "VBUS_5") - (pintype "passive") - (uuid "1005ff85-35f0-470c-90ed-7506777aa17b") - ) - (pad "6" smd roundrect - (at 1.35 -0.95 270) - (size 1.56 0.65) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Usb Connector/UDP") - (pinfunction "I/O1_6") - (pintype "passive") - (uuid "fdb9ec13-63fa-4938-b934-191a1e6ac6e0") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-6.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (gr_line - (start 106.8 44) - (end 106.8 66.6) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "b763fa5d-982c-497c-be71-23a657ef059b") - ) - (gr_line - (start 106.8 44) - (end 121.3 44) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "4b4f0f51-5c1b-4850-9185-723803c9826b") - ) - (gr_line - (start 106.8 66.6) - (end 116.4 66.6) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "d0227783-f880-47f8-beba-c0ce2e5e9cc1") - ) - (gr_line - (start 116.4 66.6) - (end 122.2 72.4) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "baac3044-7dcc-4294-91c7-b07d78ef8892") - ) - (gr_line - (start 121.3 44) - (end 127.2 39) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "a2302e41-a60a-41fb-8f36-0b2a03464aa8") - ) - (gr_line - (start 122.2 72.4) - (end 208.8 72.4) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "0350637d-cd02-4e3d-97b9-f3040532ea57") - ) - (gr_line - (start 127.2 39) - (end 208.8 39) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "b5e22815-c9cb-40eb-9be9-e82623532b92") - ) - (gr_line - (start 208.8 39) - (end 208.8 56.7) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "07d45465-7ec4-46cb-9d62-5f25495e4cd7") - ) - (gr_line - (start 208.8 56.7) - (end 208.8 72.4) - (stroke - (width 0.05) - (type default) - ) - (layer "Edge.Cuts") - (uuid "a6cb8d27-e451-4ead-95f6-b40c4d65dd18") - ) - (via - (at 191.135 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "78e80092-9dd9-4839-8374-be95b741ded4") - ) - (via - (at 194.945 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "92233d5a-2c16-4371-92fd-21f269a03f7c") - ) - (via - (at 192.405 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "a1c1978b-2b15-4249-ac3a-4a75b5cf6236") - ) - (via - (at 189.865 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "d128fe31-2eb2-4d8b-a994-4c29c72f9f1c") - ) - (segment - (start 186.055 52.035) - (end 186.91 52.89) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "2cf191fb-57c3-4e53-874a-a7a0673f0c6e") - ) - (segment - (start 197.43 46.74) - (end 197.43 49.295) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "68c47a49-d42f-48fa-a812-fe080716c280") - ) - (segment - (start 186.055 50.65) - (end 186.055 52.035) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "94f3bdf7-cf31-4eeb-b2a0-b4d3421d5c42") - ) - (segment - (start 197.425 49.3) - (end 197.425 49.975) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "952ca80e-d893-4e9b-b772-69a415125d87") - ) - (segment - (start 197.43 49.295) - (end 197.425 49.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "9b594585-b797-4267-8858-e559e242b20d") - ) - (via - (at 203.885 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "0b53e954-e1d1-4d32-b278-27eeddc21d11") - ) - (via - (at 186.91 52.89) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "39f3c56f-fae8-49ce-8f11-a262c89fe38a") - ) - (via - (at 193.675 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "521ee13d-0fa0-4f76-8c1f-b10d77ee53b5") - ) - (via - (at 206.425 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "768bfd29-1ee8-4ea2-91fa-0f1616f8d62f") - ) - (via - (at 198.805 50.65) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "a278af3b-8d7d-47e7-a314-2926b5432266") - ) - (via - (at 197.425 49.975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "b74987af-030e-4803-93a2-9ceb1c0bd845") - ) - (segment - (start 231.12 59.915) - (end 231.1 59.895) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "0f1ad4fe-949d-4821-aba2-79497d3c2a99") - ) - (segment - (start 233.8 59.915) - (end 231.12 59.915) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "581ebcaa-4aa8-4f0c-9c9a-dd7713ed2173") - ) - (segment - (start 235.375 59.9275) - (end 236.275 60.8275) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "78264d19-d17c-4627-9b48-980e2f242851") - ) - (segment - (start 236.275 60.8275) - (end 241.2225 60.8275) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "8e35ebd2-6f6e-4e94-86b5-904a6256f1e2") - ) - (segment - (start 233.8125 59.9275) - (end 233.8 59.915) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "8ede8b12-b04b-4d12-807a-d77dc3d3f33f") - ) - (segment - (start 241.2225 60.8275) - (end 241.9 60.15) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "9100b14c-5ece-46e8-9198-129c4e679b8b") - ) - (segment - (start 235.375 59.9275) - (end 233.8125 59.9275) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "dbe267d0-b1c6-40c7-a031-4bac93144ef8") - ) - (segment - (start 238.023106 57.3275) - (end 238.595 57.899394) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "36d82bae-6825-48bf-9320-6f7c5cfd0ba5") - ) - (segment - (start 238.595 57.899394) - (end 238.595 59.0075) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "4e9d8767-9503-49a0-bae2-b105744dcf1a") - ) - (segment - (start 237.67 57.3275) - (end 238.023106 57.3275) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "a02d1d46-e2c9-4dc9-94e2-f6b005abe3db") - ) - (segment - (start 238.595 59.0075) - (end 237.675 59.9275) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "d25fc51c-6703-46fd-8efa-7d9a36ffabc2") - ) - (segment - (start 235.95 57.3275) - (end 237.67 57.3275) - (width 0.2) - (layer "F.Cu") - (net "/Power/SWN") - (uuid "e94f8974-0926-4129-b221-4cf61f83a30c") - ) - (segment - (start 235.9325 58.2775) - (end 237.67 58.2775) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "c5769539-cf31-42aa-9e6d-8aa4041cbe23") - ) - (segment - (start 241.9 58.855) - (end 241.3225 58.2775) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "10830e0e-50cd-4362-93a3-9850dd26f196") - ) - (segment - (start 241.9 58.955) - (end 241.9 58.855) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "5c86f1f5-c900-4c8d-8759-53d0d5459e29") - ) - (segment - (start 240.18 58.2775) - (end 241.3225 58.2775) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "ad2c5bf5-9ec4-4636-b898-9663eb6d8cce") - ) - (segment - (start 241.3225 58.2775) - (end 241.925 57.675) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VFB)") - (uuid "d93a5477-104f-4172-986e-b7e54bf12689") - ) - (segment - (start 236.480001 55.7825) - (end 235.135 57.127501) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VBST)") - (uuid "39edfe31-1785-4b69-a3d2-0ced6b884e3a") - ) - (segment - (start 240.18 56.3775) - (end 239.585 55.7825) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VBST)") - (uuid "3db72db4-394b-435c-84a4-e79c02c45447") - ) - (segment - (start 235.135 57.127501) - (end 235.135 57.3275) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VBST)") - (uuid "7f773b08-1270-4820-af7c-11813cc31c8c") - ) - (segment - (start 239.585 55.7825) - (end 236.480001 55.7825) - (width 0.2) - (layer "F.Cu") - (net "Net-(U3-VBST)") - (uuid "8cbbbba2-2b1e-42cc-baf4-271abddc2f6b") - ) - (segment - (start 181.175 44.5375) - (end 181.175 44.184448) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "014dd55c-516f-4853-a3d6-428290c92334") - ) - (segment - (start 180.05 41.305051) - (end 179.439949 40.695) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "13f85cfa-7c03-4430-b65b-c8f642eb8bc8") - ) - (segment - (start 206.969999 39.6) - (end 207.695 40.325001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "2346e174-f897-481a-933a-693d245a2a33") - ) - (segment - (start 200.075 40.15) - (end 200.075 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "3aba7362-4e39-4241-a995-7dfdc01a63d8") - ) - (segment - (start 194.244999 39.625) - (end 179.130051 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "4334ca93-cc1b-470a-a2e3-d40082d92f4e") - ) - (segment - (start 181.1325 44.58) - (end 181.175 44.5375) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "4737c2a0-c4e1-4fbe-9d88-d4e15b9fa887") - ) - (segment - (start 177.702525 41.052525) - (end 177.5 41.255051) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "49d3b74e-0e66-48c5-b5e7-8f53ba0789e5") - ) - (segment - (start 173.9 41.342528) - (end 175.242528 40) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "4c9983dd-0d36-4237-9b91-bcdacc564cf2") - ) - (segment - (start 207.695 40.325001) - (end 207.695 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "5d580bc8-3ca7-49f4-af5e-123c3541148a") - ) - (segment - (start 182.774999 43.575) - (end 183.075 43.875001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "72dd1b80-56dd-45c1-89f7-76ffb9a44742") - ) - (segment - (start 175.617528 39.625) - (end 179.130051 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "750b5da2-80bc-4bd0-a299-a21b400af7ac") - ) - (segment - (start 173.9 42.55) - (end 173.9 41.342528) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "77127987-355b-4402-aa3d-53a7bd54dbe9") - ) - (segment - (start 175.242528 40) - (end 175.617528 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "7a323730-815c-4d3d-935a-d99c3a49f978") - ) - (segment - (start 194.269999 39.6) - (end 199.525 39.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "7c371e6c-d65b-46f1-897b-c88f29994313") - ) - (segment - (start 199.525 39.6) - (end 200.925 39.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "7e11d885-1b90-449f-8152-f87288d549d8") - ) - (segment - (start 194.244999 39.625) - (end 194.269999 39.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "83e8b400-0c82-4d2e-bde6-f64bd8bc739e") - ) - (segment - (start 194.945 40.325001) - (end 194.244999 39.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "8e48de85-5b53-443e-b8f2-49822bdb6482") - ) - (segment - (start 173.9375 40) - (end 175.242528 40) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "99dd0a50-2c7a-4d04-97c8-05cb02c2c929") - ) - (segment - (start 194.945 41.35) - (end 194.945 40.325001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "9ac5da61-6749-4de2-acfe-cff6670905fe") - ) - (segment - (start 177.5 41.255051) - (end 177.5 42.55) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a29af047-287b-49ed-ac18-25d28f99485e") - ) - (segment - (start 201.35 40.025) - (end 201.345 40.03) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a8b4bd32-bbb3-4748-a903-82dffd7c823c") - ) - (segment - (start 180.05 43.4125) - (end 180.05 41.305051) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "ab1784ae-6f9f-430a-97b2-92cb681756cf") - ) - (segment - (start 199.525 39.6) - (end 200.075 40.15) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "b5250647-25c4-4865-a861-2cf6b3d4b39e") - ) - (segment - (start 173.9 42.55) - (end 173.9 44.3) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "b83469ee-ce7c-49de-8f6f-2614e39c9c7c") - ) - (segment - (start 200.925 39.6) - (end 206.969999 39.6) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "bb9e0b44-7602-487d-866b-083ccd5fb8d3") - ) - (segment - (start 200.925 39.6) - (end 201.35 40.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "bdaf77bd-8c1b-4e96-9975-86513d7fda58") - ) - (segment - (start 181.175 44.184448) - (end 181.784448 43.575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "c7530a54-2752-468a-9a86-dd3e7874e27a") - ) - (segment - (start 179.130051 39.625) - (end 177.702525 41.052525) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "c77a3b09-1af4-4525-b606-1dfac0c503d9") - ) - (segment - (start 181.784448 43.575) - (end 182.774999 43.575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d16d0c12-a75d-4843-b8c1-05d155c53fad") - ) - (segment - (start 201.345 41.345) - (end 201.345 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d7053332-2462-4f12-be82-efba96a3281c") - ) - (segment - (start 201.345 40.03) - (end 201.345 41.345) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d84de325-f09e-4572-b45a-3bf4f6520705") - ) - (segment - (start 177.5 44.3) - (end 177.5 42.55) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "d8cd943f-0548-4f24-8259-58542c0121de") - ) - (segment - (start 183.075 43.875001) - (end 183.075 44.5375) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "e6462a91-cd9c-44e5-8126-029b5bdcfcfd") - ) - (segment - (start 181.175 44.5375) - (end 180.05 43.4125) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "e896848f-0c6a-436e-97a7-e55a7eeb721b") - ) - (segment - (start 179.439949 40.695) - (end 178.060051 40.695) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "eff328ce-5b60-43ff-8c58-814ba851bebb") - ) - (segment - (start 178.060051 40.695) - (end 177.702525 41.052525) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "f17202cd-6e9a-4e13-8c5a-f8934df012d8") - ) - (segment - (start 181.1325 46) - (end 181.1325 44.58) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "fb202444-f711-493e-96a5-4c2871f89653") - ) - (via - (at 175.625 49.325) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "2eb54681-a47d-42a7-8bf3-2d0f8367faf3") - ) - (via - (at 173.9 44.3) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "dfdead44-1aed-4010-bb32-b619a20add18") - ) - (segment - (start 173.9 44.3) - (end 173.9 47.075) - (width 0.2) - (layer "In2.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "0580b1e2-ab29-42b8-a5be-7980b11eac2e") - ) - (segment - (start 175.625 48.8) - (end 175.625 49.325) - (width 0.2) - (layer "In2.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "a00e067a-538f-45de-90b8-42be124d8720") - ) - (segment - (start 173.9 47.075) - (end 175.625 48.8) - (width 0.2) - (layer "In2.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "b6efa2dd-860d-4ff8-ad3a-9ffe96ebd603") - ) - (segment - (start 184.85 41.075) - (end 185.78 41.075) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "0b53d78d-e30a-4b51-96ce-86fc26658ea0") - ) - (segment - (start 197.225 40.465) - (end 197.225 41.275) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "22158a2a-f7d8-44e1-a3ce-6c17b6ee57ab") - ) - (segment - (start 197.43 43.67) - (end 197.43 45.925) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "6f778b79-bbc8-48d9-a1ff-87e223747e52") - ) - (segment - (start 185.78 41.075) - (end 186.055 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "c061fe1a-40da-44c2-be48-15512f44e14f") - ) - (segment - (start 197.42 43.66) - (end 197.43 43.67) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "d5aff9d6-82b9-4848-955a-5527a18f6624") - ) - (via - (at 182.2675 46) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "053b30cc-700f-4361-948b-673ffc443700") - ) - (via - (at 180.875 40.775) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "07d22df7-6152-4835-9d57-53d58b03151b") - ) - (via - (at 176.775 40.675) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "11ec7a4b-431a-4793-95f7-fc1916c1d7b3") - ) - (via - (at 182.125 44.5375) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "1d972707-791f-4a80-b61c-86030cab3ede") - ) - (via - (at 178.3 42.55) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "216a5363-6bea-4295-b618-39a6d5801e23") - ) - (via - (at 206.425 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "23922cb7-3fec-4ec2-ad07-fe60a6226dc8") - ) - (via - (at 178.3 44.3) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "4ea74497-3bf1-4dab-b0c2-1916a79479e5") - ) - (via - (at 193.675 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "582f8b0f-1347-4e46-b6c8-3a4f2fc7c89d") - ) - (via - (at 197.42 43.66) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Usb Connector/USB_GND") - (uuid "5b841a23-2ab1-4228-81ac-68c22f5d8ba2") - ) - (via - (at 172.2125 40) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "737fa4c9-431b-486f-acca-8ba8c45a0beb") - ) - (via - (at 197.225 41.275) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Usb Connector/USB_GND") - (uuid "78ed34c1-7da3-455d-a2b4-8d6426daf17c") - ) - (via - (at 186.055 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "8119fd4c-f24b-476e-941c-46ff31804ce9") - ) - (via - (at 175.625 46.625) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "8e93a8f0-29de-4adf-b519-d55a04c8fec2") - ) - (via - (at 173.1 44.3) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "c6f7602f-8535-46ff-ba37-60a8a9e13e32") - ) - (via - (at 198.805 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "d5975161-027a-442f-b547-414bdbefea5c") - ) - (via - (at 181.8325 40.45) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "e300e9e0-6d33-44df-935a-6168fedf734a") - ) - (via - (at 177.975 47.675) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "f1c40181-42a8-42df-b2c6-244bc02b5626") - ) - (via - (at 203.885 41.35) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "fbd6f959-6f9b-4c02-b696-14dabfcf8717") - ) - (via - (at 173.1 42.55) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "fe8c9807-093c-45c0-9b74-1c3054d1f40e") - ) - (segment - (start 181.175 42.2625) - (end 183.4125 40.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "113ba0cf-c904-47c3-ae00-3764f99a8f40") - ) - (segment - (start 189.564999 40.025) - (end 189.865 40.325001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "42ab62a9-9dcb-4f5f-b403-e9635347afcc") - ) - (segment - (start 190.975 40.025) - (end 191.975 40.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "54cb96cb-5059-4e6e-aae4-8d704e35e6b4") - ) - (segment - (start 190.825 40.025) - (end 191.135 40.335) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "57e8c23a-a8e6-44dd-af2d-dbca6b5e8fa1") - ) - (segment - (start 191.975 40.025) - (end 192.405 40.455) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8708ef0a-23ef-48c4-add6-781f776cd4bb") - ) - (segment - (start 192.405 40.455) - (end 192.405 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "8af2464e-f444-4119-b047-8ac4b02cddb5") - ) - (segment - (start 183.4125 40.025) - (end 189.564999 40.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "9a7d50bc-3487-461a-812d-a118812be675") - ) - (segment - (start 189.564999 40.025) - (end 190.975 40.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "9d51a8ac-3d21-489e-944c-ddcb44f36475") - ) - (segment - (start 190.975 40.025) - (end 190.825 40.025) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "acb1685d-adb7-4e09-988a-42b622037bd7") - ) - (segment - (start 191.135 40.335) - (end 191.135 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "d20010c7-5f85-46e2-baf9-4049d3274d63") - ) - (segment - (start 189.865 40.325001) - (end 189.865 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/VDD1_ISO") - (uuid "f725edf2-68cb-4b49-97c9-7a36435d250e") - ) - (segment - (start 187.925 42.02) - (end 188.595 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "0247e914-b2e4-41b8-b795-d7d763a7e3f4") - ) - (segment - (start 174.675 47.08) - (end 175 47.405) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "05351bcb-c351-4d1e-a65f-d2b221c7c303") - ) - (segment - (start 175.35 44.3) - (end 175.37502 44.3) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "060367a7-ce6f-494a-846b-98666e0c3ba2") - ) - (segment - (start 175 47.405) - (end 175 47.438576) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "1031a3cd-f699-4369-890e-abf673b7d2be") - ) - (segment - (start 175 47.438576) - (end 175.4 47.838576) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "237386ff-419e-4614-95cd-08bf1f5aef5f") - ) - (segment - (start 175.3 48.245) - (end 175.266424 48.245) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "2443d5e9-2b63-4f2d-9e8c-2c0c5017dba0") - ) - (segment - (start 175.37502 44.754979) - (end 174.675 45.454999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "31fe37f2-054b-4152-912e-54ad698408fa") - ) - (segment - (start 175.4 48.145) - (end 175.3 48.245) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "351aafb3-f5fa-4d8a-96ec-f106ba778a46") - ) - (segment - (start 174.675 48.87) - (end 174.675 49.325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "3a7940ef-addb-46df-9211-b4696b7d0d0e") - ) - (segment - (start 175.37502 44.3) - (end 175.37502 44.754979) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "3c4183f8-8e37-4fdc-915d-860b4f58455d") - ) - (segment - (start 175.35 43.7) - (end 175.35 44.3) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "4f637827-7ae2-4341-ae48-945c0214ed3d") - ) - (segment - (start 177.563576 49.775) - (end 180.17 49.775) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "5ddeaac5-4962-4ca7-a581-5571305d70fe") - ) - (segment - (start 175 50.138576) - (end 175.266424 50.405) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "604644cf-0251-4635-9aba-b3f9f706db79") - ) - (segment - (start 176.05 43) - (end 175.35 43.7) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "60636fda-ad51-4d2b-b406-c408327994c8") - ) - (segment - (start 174.675 46.625) - (end 174.675 47.08) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "64d3966f-f24c-4c32-b014-3a2fc7a95ce4") - ) - (segment - (start 187.27 42.675) - (end 187.665552 42.675) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "850b0fe9-46cb-4a08-9729-89387cc2934e") - ) - (segment - (start 175.4 47.838576) - (end 175.4 48.145) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "9ad6d9f9-a344-4ab2-a2a8-4cc1b346d121") - ) - (segment - (start 175 49.65) - (end 175 50.138576) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "a63d84c0-2dda-48d2-88bd-49979f0d48dd") - ) - (segment - (start 187.925 42.415552) - (end 187.925 42.02) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "a811f23a-5985-4bf9-a09e-a85f2dd7bc5f") - ) - (segment - (start 187.665552 42.675) - (end 187.925 42.415552) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "b3f7c551-f196-427b-8812-5aea8ed0b534") - ) - (segment - (start 176.933576 50.405) - (end 177.563576 49.775) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "c226d955-147b-457e-b985-ec9cb4fdbb54") - ) - (segment - (start 175.266424 50.405) - (end 176.933576 50.405) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "c433bb00-cc11-4f08-bdf5-d0ae26240280") - ) - (segment - (start 174.675 45.454999) - (end 174.675 46.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "cd3e9441-6177-4164-847a-b1befa0d151c") - ) - (segment - (start 175 48.511424) - (end 175 48.545) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "cf9519a1-1708-443f-90d5-b9947fda73c7") - ) - (segment - (start 175.266424 48.245) - (end 175 48.511424) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "d3de57da-09ba-4770-92ec-692e0aa50356") - ) - (segment - (start 174.675 49.325) - (end 175 49.65) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "d6b61719-c201-4583-b318-55f68ebfe386") - ) - (segment - (start 175 48.545) - (end 174.675 48.87) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "e3ea6eb3-64de-4ebe-8494-837ab61d83a1") - ) - (segment - (start 180.17 49.775) - (end 187.27 42.675) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "f1bce7ed-b678-45bc-b080-15f7eafa2884") - ) - (segment - (start 176.05 42.55) - (end 176.05 43) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "f48e9a55-2d7f-4c1f-99a0-1207b4f9b41c") - ) - (segment - (start 176.575 46.625) - (end 176.575 47.08) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "2d14afec-f85a-4159-b906-586e5bed03fe") - ) - (segment - (start 176.575 47.08) - (end 176.25 47.405) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "2ea10c22-8ae6-4040-91a4-52378b3a4442") - ) - (segment - (start 175.95 48.245) - (end 175.983576 48.245) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "3e92e7be-ab09-49a1-b005-fe0476b2612d") - ) - (segment - (start 176.25 47.405) - (end 176.25 47.438576) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "43b6a0d4-732f-49e4-9913-46d4aaeced1f") - ) - (segment - (start 175.825 44.3) - (end 175.825 44.704999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "4b4f8b52-c54d-4118-bd32-c9a1fde63769") - ) - (segment - (start 176.575 49.325) - (end 179.983603 49.325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "4bba41a1-bfdc-473a-9555-efda66ab8031") - ) - (segment - (start 176.575 48.87) - (end 176.575 49.325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "51a69d3f-0ecb-4b25-9108-6e5c1d6b1c3b") - ) - (segment - (start 175.85 47.838576) - (end 175.85 48.145) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "697693e8-db96-42ab-8351-0f677fa92b71") - ) - (segment - (start 175.85 48.145) - (end 175.95 48.245) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "761f8786-b8f7-422b-823d-fb30572af5d4") - ) - (segment - (start 176.25 47.438576) - (end 175.85 47.838576) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "79a3abac-d327-4c26-a917-cd3126351cef") - ) - (segment - (start 187.325 41.983603) - (end 187.325 41.35) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "7d471db7-40ef-4adc-a1b9-9b13b9647ab1") - ) - (segment - (start 179.983603 49.325) - (end 187.325 41.983603) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "87e1618a-2f33-493c-83c5-b80f18e3cf91") - ) - (segment - (start 176.05 44.3) - (end 175.825 44.3) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "b1813571-710f-4e4e-aea7-7266ba7362bb") - ) - (segment - (start 176.25 48.511424) - (end 176.25 48.545) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "cefc3bc6-2f92-4c68-90e8-8c1d79a3b4ab") - ) - (segment - (start 175.983576 48.245) - (end 176.25 48.511424) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "e2b2518a-0c8b-47bf-bb4e-0043c92421a0") - ) - (segment - (start 176.25 48.545) - (end 176.575 48.87) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "eb929b54-0f15-4534-87c2-5fcfc574c1c7") - ) - (segment - (start 175.825 44.704999) - (end 176.575 45.454999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "ef46b8bb-17e9-4f6f-9595-ef0c983cb5a0") - ) - (segment - (start 176.575 45.454999) - (end 176.575 46.625) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "fbcba9a5-4725-49b3-abc3-0b2267b1608e") - ) - (via - (at 176.05 44.3) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UDP") - (uuid "7a302166-d7da-4df0-8fee-df57ec72137c") - ) - (via - (at 175.35 42.55) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/UDP") - (uuid "c410caea-f23c-45dd-9fb8-66d41ba43fac") - ) - (segment - (start 176.05 43.725) - (end 175.35 43.025) - (width 0.2) - (layer "In2.Cu") - (net "/Usb Connector/UDP") - (uuid "47fcfc22-6735-4d61-8aaf-499b265ea86c") - ) - (segment - (start 176.05 44.3) - (end 176.05 43.725) - (width 0.2) - (layer "In2.Cu") - (net "/Usb Connector/UDP") - (uuid "4ae0e2bd-377c-47eb-9eb9-f15806aa4a19") - ) - (segment - (start 175.35 43.025) - (end 175.35 42.55) - (width 0.2) - (layer "In2.Cu") - (net "/Usb Connector/UDP") - (uuid "d47ff2a7-1e5e-453e-bd39-fbfe6f10f705") - ) - (segment - (start 206.912499 52.4575) - (end 206.98 52.525001) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "0f292da6-b4cb-493b-9b0f-dd915ffadb99") - ) - (segment - (start 206.912499 52.4575) - (end 205.9425 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "1df3b84f-df10-4aa0-b649-c85e01f602d1") - ) - (segment - (start 200.857501 52.4575) - (end 205.9425 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "28037bc1-6feb-4ad5-a13a-6a7913f41e9a") - ) - (segment - (start 200.075 50.65) - (end 200.075 51.674999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "4280fe06-babc-401a-bbb1-3ceac77519fb") - ) - (segment - (start 200.075 51.674999) - (end 200.857501 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "445dcae8-e074-4b37-bc2c-181295484fdf") - ) - (segment - (start 207.695 50.65) - (end 207.695 51.674999) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "66488368-7a4c-431d-b611-7ae648f88be1") - ) - (segment - (start 206.98 52.525001) - (end 206.98 64.15) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "78ea07be-7cab-4a66-b9cf-2e24c65fec03") - ) - (segment - (start 206.98 64.15) - (end 205.37 65.76) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "bc7b56fa-b3f4-4b34-a28d-cff957dfab61") - ) - (segment - (start 207.695 51.674999) - (end 206.912499 52.4575) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "f06f544e-9693-4276-b6f0-e9331138715e") - ) - (segment - (start 175.58 40.675) - (end 174.65 41.605) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC2") - (uuid "833bb20a-a689-4e62-919d-bf507d7be4a8") - ) - (segment - (start 174.65 41.605) - (end 174.65 42.55) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC2") - (uuid "b757e530-2cb2-4c91-9de1-5717018cf8cd") - ) - (segment - (start 200.88 55.07) - (end 200.88 55) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "3edc0b8c-32c1-4a16-b582-efe295dbf0fb") - ) - (segment - (start 200.88 55.72) - (end 200.88 55.07) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "9e2f505c-fda9-45da-95a6-e99acbbd5b49") - ) - (segment - (start 177.975 46.069949) - (end 177.975 46.48) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC1") - (uuid "4ec6668b-5ad1-48db-bfd7-7912e66c3610") - ) - (segment - (start 176.75 44.3) - (end 176.75 44.844949) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC1") - (uuid "dc660714-c6ef-4ae3-b357-89a6d3bd1222") - ) - (segment - (start 176.75 44.844949) - (end 177.975 46.069949) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/CC1") - (uuid "ff73dae2-932b-42c5-b2b1-7c604305a53f") - ) - (zone - (net "GND") - (layer "In1.Cu") - (uuid "08ec790b-13ac-4a0a-8a2a-b6adc2150501") - (name "GND") - (hatch edge 0.5) - (connect_pads - (clearance 0.5) - ) - (min_thickness 0.25) - (fill yes - (thermal_gap 0.5) - (thermal_bridge_width 0.5) - (island_removal_mode 0) - ) - (polygon - (pts - (xy 121.375 43.96) (xy 119.25 43.985) (xy 119.575 69.885) (xy 122.15 72.41) (xy 208.75 72.41) (xy 208.8 49.05) - (xy 188.81 49) (xy 181.97 55.91) (xy 166 56) (xy 166 39.01) (xy 127.15 39.01) - ) - ) - (filled_polygon - (layer "In1.Cu") - (pts - (xy 165.943039 39.520185) (xy 165.988794 39.572989) (xy 166 39.6245) (xy 166 56) (xy 181.97 55.91) - (xy 187.254763 50.571153) (xy 189.0645 50.571153) (xy 189.0645 50.728846) (xy 189.095261 50.883489) - (xy 189.095264 50.883501) (xy 189.155602 51.029172) (xy 189.155609 51.029185) (xy 189.24321 51.160288) - (xy 189.243213 51.160292) (xy 189.354707 51.271786) (xy 189.354711 51.271789) (xy 189.485814 51.35939) - (xy 189.485827 51.359397) (xy 189.631498 51.419735) (xy 189.631503 51.419737) (xy 189.786153 51.450499) - (xy 189.786156 51.4505) (xy 189.786158 51.4505) (xy 189.943844 51.4505) (xy 189.943845 51.450499) - (xy 190.098497 51.419737) (xy 190.244179 51.359394) (xy 190.375289 51.271789) (xy 190.378758 51.26832) - (xy 190.412319 51.23476) (xy 190.473642 51.201275) (xy 190.543334 51.206259) (xy 190.587681 51.23476) - (xy 190.624707 51.271786) (xy 190.624711 51.271789) (xy 190.755814 51.35939) (xy 190.755827 51.359397) - (xy 190.901498 51.419735) (xy 190.901503 51.419737) (xy 191.056153 51.450499) (xy 191.056156 51.4505) - (xy 191.056158 51.4505) (xy 191.213844 51.4505) (xy 191.213845 51.450499) (xy 191.368497 51.419737) - (xy 191.514179 51.359394) (xy 191.645289 51.271789) (xy 191.648758 51.26832) (xy 191.682319 51.23476) - (xy 191.743642 51.201275) (xy 191.813334 51.206259) (xy 191.857681 51.23476) (xy 191.894707 51.271786) - (xy 191.894711 51.271789) (xy 192.025814 51.35939) (xy 192.025827 51.359397) (xy 192.171498 51.419735) - (xy 192.171503 51.419737) (xy 192.326153 51.450499) (xy 192.326156 51.4505) (xy 192.326158 51.4505) - (xy 192.483844 51.4505) (xy 192.483845 51.450499) (xy 192.638497 51.419737) (xy 192.784179 51.359394) - (xy 192.915289 51.271789) (xy 193.026789 51.160289) (xy 193.114394 51.029179) (xy 193.174737 50.883497) - (xy 193.2055 50.728842) (xy 193.2055 50.571158) (xy 193.2055 50.571155) (xy 193.205499 50.571153) - (xy 194.1445 50.571153) (xy 194.1445 50.728846) (xy 194.175261 50.883489) (xy 194.175264 50.883501) - (xy 194.235602 51.029172) (xy 194.235609 51.029185) (xy 194.32321 51.160288) (xy 194.323213 51.160292) - (xy 194.434707 51.271786) (xy 194.434711 51.271789) (xy 194.565814 51.35939) (xy 194.565827 51.359397) - (xy 194.711498 51.419735) (xy 194.711503 51.419737) (xy 194.866153 51.450499) (xy 194.866156 51.4505) - (xy 194.866158 51.4505) (xy 195.023844 51.4505) (xy 195.023845 51.450499) (xy 195.178497 51.419737) - (xy 195.324179 51.359394) (xy 195.455289 51.271789) (xy 195.566789 51.160289) (xy 195.654394 51.029179) - (xy 195.714737 50.883497) (xy 195.7455 50.728842) (xy 195.7455 50.571158) (xy 195.7455 50.571155) - (xy 195.745499 50.571153) (xy 195.74408 50.564018) (xy 195.714737 50.416503) (xy 195.714735 50.416498) - (xy 195.654397 50.270827) (xy 195.65439 50.270814) (xy 195.566789 50.139711) (xy 195.566786 50.139707) - (xy 195.455292 50.028213) (xy 195.455288 50.02821) (xy 195.324185 49.940609) (xy 195.324172 49.940602) - (xy 195.178501 49.880264) (xy 195.178489 49.880261) (xy 195.023845 49.8495) (xy 195.023842 49.8495) - (xy 194.866158 49.8495) (xy 194.866155 49.8495) (xy 194.71151 49.880261) (xy 194.711498 49.880264) - (xy 194.565827 49.940602) (xy 194.565814 49.940609) (xy 194.434711 50.02821) (xy 194.434707 50.028213) - (xy 194.323213 50.139707) (xy 194.32321 50.139711) (xy 194.235609 50.270814) (xy 194.235602 50.270827) - (xy 194.175264 50.416498) (xy 194.175261 50.41651) (xy 194.1445 50.571153) (xy 193.205499 50.571153) - (xy 193.20408 50.564018) (xy 193.174737 50.416503) (xy 193.174735 50.416498) (xy 193.114397 50.270827) - (xy 193.11439 50.270814) (xy 193.026789 50.139711) (xy 193.026786 50.139707) (xy 192.915292 50.028213) - (xy 192.915288 50.02821) (xy 192.784185 49.940609) (xy 192.784172 49.940602) (xy 192.638501 49.880264) - (xy 192.638489 49.880261) (xy 192.483845 49.8495) (xy 192.483842 49.8495) (xy 192.326158 49.8495) - (xy 192.326155 49.8495) (xy 192.17151 49.880261) (xy 192.171498 49.880264) (xy 192.025827 49.940602) - (xy 192.025814 49.940609) (xy 191.894711 50.02821) (xy 191.894707 50.028213) (xy 191.857681 50.06524) - (xy 191.796358 50.098725) (xy 191.726666 50.093741) (xy 191.682319 50.06524) (xy 191.645292 50.028213) - (xy 191.645288 50.02821) (xy 191.514185 49.940609) (xy 191.514172 49.940602) (xy 191.368501 49.880264) - (xy 191.368489 49.880261) (xy 191.213845 49.8495) (xy 191.213842 49.8495) (xy 191.056158 49.8495) - (xy 191.056155 49.8495) (xy 190.90151 49.880261) (xy 190.901498 49.880264) (xy 190.755827 49.940602) - (xy 190.755814 49.940609) (xy 190.624711 50.02821) (xy 190.624707 50.028213) (xy 190.587681 50.06524) - (xy 190.526358 50.098725) (xy 190.456666 50.093741) (xy 190.412319 50.06524) (xy 190.375292 50.028213) - (xy 190.375288 50.02821) (xy 190.244185 49.940609) (xy 190.244172 49.940602) (xy 190.098501 49.880264) - (xy 190.098489 49.880261) (xy 189.943845 49.8495) (xy 189.943842 49.8495) (xy 189.786158 49.8495) - (xy 189.786155 49.8495) (xy 189.63151 49.880261) (xy 189.631498 49.880264) (xy 189.485827 49.940602) - (xy 189.485814 49.940609) (xy 189.354711 50.02821) (xy 189.354707 50.028213) (xy 189.243213 50.139707) - (xy 189.24321 50.139711) (xy 189.155609 50.270814) (xy 189.155602 50.270827) (xy 189.095264 50.416498) - (xy 189.095261 50.41651) (xy 189.0645 50.571153) (xy 187.254763 50.571153) (xy 188.773482 49.036891) - (xy 188.834628 49.003099) (xy 188.861905 49.000129) (xy 208.175812 49.048438) (xy 208.2428 49.068291) - (xy 208.288423 49.121209) (xy 208.2995 49.172438) (xy 208.2995 71.7755) (xy 208.279815 71.842539) - (xy 208.227011 71.888294) (xy 208.1755 71.8995) (xy 122.458676 71.8995) (xy 122.391637 71.879815) - (xy 122.370995 71.863181) (xy 119.600282 69.092468) (xy 119.566797 69.031145) (xy 119.563974 69.006355) - (xy 119.528519 66.180874) (xy 119.545806 66.145793) (xy 119.549408 66.142037) (xy 120.222672 65.468772) - (xy 120.227757 65.481047) (xy 120.316949 65.614532) (xy 120.430468 65.728051) (xy 120.563953 65.817243) - (xy 120.576225 65.822326) (xy 119.921547 66.477004) (xy 119.921547 66.477005) (xy 119.990977 66.53028) - (xy 120.186519 66.643176) (xy 120.186529 66.64318) (xy 120.395131 66.729586) (xy 120.613239 66.788028) - (xy 120.8371 66.8175) (xy 121.0629 66.8175) (xy 121.28676 66.788028) (xy 121.504868 66.729586) (xy 121.71347 66.64318) - (xy 121.71348 66.643176) (xy 121.909018 66.530283) (xy 121.978451 66.477004) (xy 121.323773 65.822326) - (xy 121.336047 65.817243) (xy 121.469532 65.728051) (xy 121.583051 65.614532) (xy 121.672243 65.481047) - (xy 121.677326 65.468773) (xy 122.332004 66.123451) (xy 122.385283 66.054018) (xy 122.498176 65.85848) - (xy 122.49818 65.85847) (xy 122.584586 65.649868) (xy 122.643028 65.43176) (xy 122.6725 65.207899) - (xy 122.6725 64.9821) (xy 122.643028 64.758239) (xy 122.584586 64.540131) (xy 122.49818 64.331529) - (xy 122.498176 64.331519) (xy 122.38528 64.135977) (xy 122.332005 64.066547) (xy 122.332004 64.066547) - (xy 121.677326 64.721225) (xy 121.672243 64.708953) (xy 121.583051 64.575468) (xy 121.469532 64.461949) - (xy 121.336047 64.372757) (xy 121.323772 64.367672) (xy 121.978451 63.712994) (xy 121.978451 63.712993) - (xy 121.90902 63.659719) (xy 121.909013 63.659714) (xy 121.71348 63.546823) (xy 121.71347 63.546819) - (xy 121.504868 63.460413) (xy 121.28676 63.401971) (xy 121.0629 63.3725) (xy 120.8371 63.3725) (xy 120.613239 63.401971) - (xy 120.395131 63.460413) (xy 120.186529 63.546819) (xy 120.186519 63.546823) (xy 119.990977 63.659719) - (xy 119.89222 63.735498) (xy 119.827051 63.760692) (xy 119.758606 63.746653) (xy 119.708616 63.697839) - (xy 119.692953 63.629748) (xy 119.696957 63.605036) (xy 119.743409 63.431677) (xy 119.7755 63.187927) - (xy 119.7755 62.942073) (xy 119.743409 62.698323) (xy 119.679778 62.460847) (xy 119.672639 62.443613) - (xy 119.585695 62.233711) (xy 119.58569 62.2337) (xy 119.492813 62.072834) (xy 119.476212 62.012398) - (xy 119.361304 52.855094) (xy 119.380145 52.787818) (xy 119.386918 52.778056) (xy 119.462759 52.679218) - (xy 119.462767 52.679208) (xy 119.585694 52.466292) (xy 119.679778 52.239153) (xy 119.702826 52.153135) - (xy 123.0505 52.153135) (xy 123.0505 53.64687) (xy 123.050501 53.646876) (xy 123.056908 53.706483) - (xy 123.107202 53.841328) (xy 123.107206 53.841335) (xy 123.193452 53.956544) (xy 123.193455 53.956547) - (xy 123.308664 54.042793) (xy 123.308671 54.042797) (xy 123.443517 54.093091) (xy 123.443516 54.093091) - (xy 123.450444 54.093835) (xy 123.503127 54.0995) (xy 123.722257 54.099499) (xy 123.789295 54.119183) - (xy 123.83505 54.171987) (xy 123.844994 54.241145) (xy 123.815969 54.304701) (xy 123.778552 54.333983) - (xy 123.621326 54.414094) (xy 123.468575 54.525075) (xy 123.335075 54.658575) (xy 123.224096 54.811324) - (xy 123.138381 54.979547) (xy 123.080035 55.159115) (xy 123.0505 55.345597) (xy 123.0505 55.534402) - (xy 123.080035 55.720884) (xy 123.138381 55.900452) (xy 123.189104 56) (xy 123.224096 56.068675) - (xy 123.335073 56.221422) (xy 123.468578 56.354927) (xy 123.621325 56.465904) (xy 123.700804 56.5064) - (xy 123.789547 56.551618) (xy 123.789549 56.551618) (xy 123.789552 56.55162) (xy 123.857347 56.573648) - (xy 123.91404 56.592069) (xy 123.971715 56.631507) (xy 123.998913 56.695866) (xy 123.986998 56.764712) - (xy 123.939754 56.816188) (xy 123.91404 56.827931) (xy 123.789547 56.868381) (xy 123.621324 56.954096) - (xy 123.468575 57.065075) (xy 123.335075 57.198575) (xy 123.224096 57.351324) (xy 123.138381 57.519547) - (xy 123.080035 57.699115) (xy 123.0505 57.885597) (xy 123.0505 58.074402) (xy 123.080035 58.260884) - (xy 123.138381 58.440452) (xy 123.212504 58.585925) (xy 123.224096 58.608675) (xy 123.335073 58.761422) - (xy 123.468578 58.894927) (xy 123.621325 59.005904) (xy 123.700804 59.0464) (xy 123.789547 59.091618) - (xy 123.789549 59.091618) (xy 123.789552 59.09162) (xy 123.857347 59.113648) (xy 123.91404 59.132069) - (xy 123.971715 59.171507) (xy 123.998913 59.235866) (xy 123.986998 59.304712) (xy 123.939754 59.356188) - (xy 123.91404 59.367931) (xy 123.789547 59.408381) (xy 123.621324 59.494096) (xy 123.468575 59.605075) - (xy 123.335075 59.738575) (xy 123.224096 59.891324) (xy 123.138381 60.059547) (xy 123.080035 60.239115) - (xy 123.0505 60.425597) (xy 123.0505 60.614402) (xy 123.080035 60.800884) (xy 123.138381 60.980452) - (xy 123.217834 61.136386) (xy 123.224096 61.148675) (xy 123.335073 61.301422) (xy 123.468578 61.434927) - (xy 123.621325 61.545904) (xy 123.688792 61.58028) (xy 123.789547 61.631618) (xy 123.789549 61.631618) - (xy 123.789552 61.63162) (xy 123.885802 61.662893) (xy 123.969115 61.689964) (xy 124.062356 61.704732) - (xy 124.155597 61.7195) (xy 124.155598 61.7195) (xy 124.344402 61.7195) (xy 124.344403 61.7195) - (xy 124.530884 61.689964) (xy 124.710448 61.63162) (xy 124.878675 61.545904) (xy 125.031422 61.434927) - (xy 125.164927 61.301422) (xy 125.275904 61.148675) (xy 125.36162 60.980448) (xy 125.419964 60.800884) - (xy 125.4495 60.614403) (xy 125.4495 60.425597) (xy 125.419964 60.239116) (xy 125.395858 60.164927) - (xy 125.361618 60.059547) (xy 125.275903 59.891324) (xy 125.266713 59.878675) (xy 125.164927 59.738578) - (xy 125.031422 59.605073) (xy 124.878675 59.494096) (xy 124.710452 59.408381) (xy 124.585959 59.367931) - (xy 124.528284 59.328493) (xy 124.501086 59.264134) (xy 124.513001 59.195288) (xy 124.560245 59.143812) - (xy 124.585959 59.132069) (xy 124.710448 59.09162) (xy 124.878675 59.005904) (xy 125.031422 58.894927) - (xy 125.164927 58.761422) (xy 125.275904 58.608675) (xy 125.36162 58.440448) (xy 125.419964 58.260884) - (xy 125.4495 58.074403) (xy 125.4495 57.885597) (xy 125.447633 57.873812) (xy 125.419964 57.699115) - (xy 125.361618 57.519547) (xy 125.275903 57.351324) (xy 125.242504 57.305354) (xy 125.164927 57.198578) - (xy 125.031422 57.065073) (xy 124.878675 56.954096) (xy 124.710452 56.868381) (xy 124.585959 56.827931) - (xy 124.528284 56.788493) (xy 124.501086 56.724134) (xy 124.513001 56.655288) (xy 124.560245 56.603812) - (xy 124.585959 56.592069) (xy 124.710448 56.55162) (xy 124.878675 56.465904) (xy 125.031422 56.354927) - (xy 125.164927 56.221422) (xy 125.275904 56.068675) (xy 125.36162 55.900448) (xy 125.419964 55.720884) - (xy 125.4495 55.534403) (xy 125.4495 55.345597) (xy 125.447633 55.333812) (xy 125.419964 55.159115) - (xy 125.361618 54.979547) (xy 125.275903 54.811324) (xy 125.266713 54.798675) (xy 125.164927 54.658578) - (xy 125.031422 54.525073) (xy 124.878675 54.414096) (xy 124.721445 54.333983) (xy 124.67065 54.286009) - (xy 124.653855 54.218188) (xy 124.676392 54.152054) (xy 124.731107 54.108602) (xy 124.77774 54.099499) - (xy 124.996872 54.099499) (xy 125.056483 54.093091) (xy 125.191331 54.042796) (xy 125.306546 53.956546) - (xy 125.390547 53.844335) (xy 125.44648 53.802465) (xy 125.516172 53.797481) (xy 125.577495 53.830966) - (xy 125.610979 53.89229) (xy 125.612286 53.938045) (xy 125.5905 54.075597) (xy 125.5905 54.264402) - (xy 125.620035 54.450884) (xy 125.678381 54.630452) (xy 125.764096 54.798675) (xy 125.875073 54.951422) - (xy 126.008578 55.084927) (xy 126.161325 55.195904) (xy 126.240804 55.2364) (xy 126.329547 55.281618) - (xy 126.329549 55.281618) (xy 126.329552 55.28162) (xy 126.397347 55.303648) (xy 126.45404 55.322069) - (xy 126.511715 55.361507) (xy 126.538913 55.425866) (xy 126.526998 55.494712) (xy 126.479754 55.546188) - (xy 126.45404 55.557931) (xy 126.329547 55.598381) (xy 126.161324 55.684096) (xy 126.008575 55.795075) - (xy 125.875075 55.928575) (xy 125.764096 56.081324) (xy 125.678381 56.249547) (xy 125.620035 56.429115) - (xy 125.5905 56.615597) (xy 125.5905 56.804402) (xy 125.620035 56.990884) (xy 125.678381 57.170452) - (xy 125.747118 57.305354) (xy 125.764096 57.338675) (xy 125.875073 57.491422) (xy 126.008578 57.624927) - (xy 126.161325 57.735904) (xy 126.240804 57.7764) (xy 126.329547 57.821618) (xy 126.329549 57.821618) - (xy 126.329552 57.82162) (xy 126.397347 57.843648) (xy 126.45404 57.862069) (xy 126.511715 57.901507) - (xy 126.538913 57.965866) (xy 126.526998 58.034712) (xy 126.479754 58.086188) (xy 126.45404 58.097931) - (xy 126.329547 58.138381) (xy 126.161324 58.224096) (xy 126.008575 58.335075) (xy 125.875075 58.468575) - (xy 125.764096 58.621324) (xy 125.678381 58.789547) (xy 125.620035 58.969115) (xy 125.592367 59.143812) - (xy 125.5905 59.155597) (xy 125.5905 59.344403) (xy 125.591392 59.350036) (xy 125.620035 59.530884) - (xy 125.678381 59.710452) (xy 125.764096 59.878675) (xy 125.875073 60.031422) (xy 126.008578 60.164927) - (xy 126.161325 60.275904) (xy 126.329552 60.36162) (xy 126.45485 60.402332) (xy 126.512524 60.441768) - (xy 126.539723 60.506127) (xy 126.527808 60.574973) (xy 126.480564 60.626449) (xy 126.45485 60.638193) - (xy 126.329739 60.678844) (xy 126.16158 60.764526) (xy 126.136386 60.782831) (xy 126.136386 60.782832) - (xy 126.705498 61.351944) (xy 126.618236 61.375326) (xy 126.516764 61.433911) (xy 126.433911 61.516764) - (xy 126.375326 61.618236) (xy 126.351944 61.705498) (xy 125.782832 61.136386) (xy 125.782831 61.136386) - (xy 125.764526 61.16158) (xy 125.678844 61.329741) (xy 125.620522 61.509236) (xy 125.591 61.695631) - (xy 125.591 61.884368) (xy 125.620522 62.070763) (xy 125.678844 62.250258) (xy 125.764523 62.418413) - (xy 125.782832 62.443612) (xy 125.782833 62.443613) (xy 126.351944 61.874501) (xy 126.375326 61.961764) - (xy 126.433911 62.063236) (xy 126.516764 62.146089) (xy 126.618236 62.204674) (xy 126.705498 62.228055) - (xy 126.136386 62.797166) (xy 126.161586 62.815476) (xy 126.329741 62.901155) (xy 126.509236 62.959477) - (xy 126.695632 62.989) (xy 126.884368 62.989) (xy 127.070763 62.959477) (xy 127.250258 62.901155) - (xy 127.418408 62.815478) (xy 127.418414 62.815475) (xy 127.443613 62.797166) (xy 126.874502 62.228055) - (xy 126.961764 62.204674) (xy 127.063236 62.146089) (xy 127.146089 62.063236) (xy 127.204674 61.961764) - (xy 127.228055 61.874501) (xy 127.797166 62.443612) (xy 127.815475 62.418414) (xy 127.815478 62.418408) - (xy 127.901155 62.250258) (xy 127.959477 62.070763) (xy 127.989 61.884368) (xy 127.989 61.695631) - (xy 127.959477 61.509236) (xy 127.901155 61.329741) (xy 127.815476 61.161586) (xy 127.797166 61.136386) - (xy 127.228055 61.705497) (xy 127.204674 61.618236) (xy 127.146089 61.516764) (xy 127.063236 61.433911) - (xy 126.961764 61.375326) (xy 126.874502 61.351944) (xy 127.443613 60.782833) (xy 127.443612 60.782832) - (xy 127.418413 60.764523) (xy 127.25026 60.678844) (xy 127.125149 60.638193) (xy 127.067474 60.598755) - (xy 127.040276 60.534396) (xy 127.052191 60.46555) (xy 127.099435 60.414074) (xy 127.125143 60.402334) - (xy 127.250448 60.36162) (xy 127.418675 60.275904) (xy 127.571422 60.164927) (xy 127.704927 60.031422) - (xy 127.815904 59.878675) (xy 127.90162 59.710448) (xy 127.959964 59.530884) (xy 127.9895 59.344403) - (xy 127.9895 59.155597) (xy 127.987633 59.143812) (xy 127.959964 58.969115) (xy 127.901618 58.789547) - (xy 127.844507 58.677461) (xy 127.815904 58.621325) (xy 127.704927 58.468578) (xy 127.571422 58.335073) - (xy 127.418675 58.224096) (xy 127.250452 58.138381) (xy 127.125959 58.097931) (xy 127.068284 58.058493) - (xy 127.041086 57.994134) (xy 127.053001 57.925288) (xy 127.100245 57.873812) (xy 127.125959 57.862069) - (xy 127.250448 57.82162) (xy 127.418675 57.735904) (xy 127.571422 57.624927) (xy 127.704927 57.491422) - (xy 127.815904 57.338675) (xy 127.90162 57.170448) (xy 127.959964 56.990884) (xy 127.9895 56.804403) - (xy 127.9895 56.654108) (xy 189.9795 56.654108) (xy 189.9795 58.185891) (xy 190.013608 58.313187) - (xy 190.046554 58.37025) (xy 190.0795 58.427314) (xy 190.172686 58.5205) (xy 190.286814 58.586392) - (xy 190.414108 58.6205) (xy 190.656122 58.6205) (xy 190.723161 58.640185) (xy 190.766607 58.688205) - (xy 190.810904 58.775143) (xy 190.926555 58.934321) (xy 191.065678 59.073444) (xy 191.224856 59.189095) - (xy 191.400162 59.278418) (xy 191.587283 59.339218) (xy 191.63 59.345984) (xy 191.63 58.7445) (xy 191.649685 58.677461) - (xy 191.702489 58.631706) (xy 191.754 58.6205) (xy 192.006 58.6205) (xy 192.073039 58.640185) (xy 192.118794 58.692989) - (xy 192.13 58.7445) (xy 192.13 59.345983) (xy 192.172716 59.339218) (xy 192.359837 59.278418) (xy 192.535143 59.189095) - (xy 192.694321 59.073444) (xy 192.694322 59.073443) (xy 192.791965 58.975801) (xy 192.853288 58.942316) - (xy 192.92298 58.9473) (xy 192.967327 58.975801) (xy 193.065354 59.073828) (xy 193.224595 59.189524) - (xy 193.235908 59.195288) (xy 193.39997 59.278882) (xy 193.399972 59.278882) (xy 193.399975 59.278884) - (xy 193.479465 59.304712) (xy 193.587173 59.339709) (xy 193.781578 59.3705) (xy 193.781583 59.3705) - (xy 193.978422 59.3705) (xy 194.172826 59.339709) (xy 194.207345 59.328493) (xy 194.360025 59.278884) - (xy 194.535405 59.189524) (xy 194.694646 59.073828) (xy 194.792319 58.976155) (xy 194.853642 58.94267) - (xy 194.923334 58.947654) (xy 194.967681 58.976155) (xy 195.065354 59.073828) (xy 195.224595 59.189524) - (xy 195.235908 59.195288) (xy 195.39997 59.278882) (xy 195.399972 59.278882) (xy 195.399975 59.278884) - (xy 195.479465 59.304712) (xy 195.587173 59.339709) (xy 195.781578 59.3705) (xy 195.781583 59.3705) - (xy 195.978422 59.3705) (xy 196.172826 59.339709) (xy 196.207345 59.328493) (xy 196.360025 59.278884) - (xy 196.535405 59.189524) (xy 196.694646 59.073828) (xy 196.792319 58.976155) (xy 196.853642 58.94267) - (xy 196.923334 58.947654) (xy 196.967681 58.976155) (xy 197.065354 59.073828) (xy 197.224595 59.189524) - (xy 197.235908 59.195288) (xy 197.39997 59.278882) (xy 197.399972 59.278882) (xy 197.399975 59.278884) - (xy 197.479465 59.304712) (xy 197.587173 59.339709) (xy 197.781578 59.3705) (xy 197.781583 59.3705) - (xy 197.978422 59.3705) (xy 198.172826 59.339709) (xy 198.207345 59.328493) (xy 198.360025 59.278884) - (xy 198.535405 59.189524) (xy 198.694646 59.073828) (xy 198.792319 58.976155) (xy 198.853642 58.94267) - (xy 198.923334 58.947654) (xy 198.967681 58.976155) (xy 199.065354 59.073828) (xy 199.224595 59.189524) - (xy 199.235908 59.195288) (xy 199.39997 59.278882) (xy 199.399972 59.278882) (xy 199.399975 59.278884) - (xy 199.479465 59.304712) (xy 199.587173 59.339709) (xy 199.781578 59.3705) (xy 199.781583 59.3705) - (xy 199.978422 59.3705) (xy 200.172826 59.339709) (xy 200.207345 59.328493) (xy 200.360025 59.278884) - (xy 200.535405 59.189524) (xy 200.694646 59.073828) (xy 200.792673 58.975801) (xy 200.853996 58.942316) - (xy 200.923688 58.9473) (xy 200.968035 58.975801) (xy 201.065678 59.073444) (xy 201.224856 59.189095) - (xy 201.400162 59.278418) (xy 201.587283 59.339218) (xy 201.63 59.345984) (xy 201.63 58.7445) (xy 201.649685 58.677461) - (xy 201.702489 58.631706) (xy 201.754 58.6205) (xy 202.006 58.6205) (xy 202.073039 58.640185) (xy 202.118794 58.692989) - (xy 202.13 58.7445) (xy 202.13 59.345984) (xy 202.172716 59.339218) (xy 202.359837 59.278418) (xy 202.535143 59.189095) - (xy 202.694321 59.073444) (xy 202.833444 58.934321) (xy 202.949095 58.775143) (xy 202.993393 58.688205) - (xy 203.041368 58.637409) (xy 203.103878 58.6205) (xy 204.34589 58.6205) (xy 204.345892 58.6205) - (xy 204.473186 58.586392) (xy 204.587314 58.5205) (xy 204.6805 58.427314) (xy 204.746392 58.313186) - (xy 204.7805 58.185892) (xy 204.7805 56.654108) (xy 204.746392 56.526814) (xy 204.6805 56.412686) - (xy 204.587314 56.3195) (xy 204.53025 56.286554) (xy 204.473187 56.253608) (xy 204.409539 56.236554) - (xy 204.345892 56.2195) (xy 204.345891 56.2195) (xy 204.10444 56.2195) (xy 204.037401 56.199815) - (xy 203.993955 56.151795) (xy 203.958048 56.081324) (xy 203.949524 56.064595) (xy 203.833828 55.905354) - (xy 203.694646 55.766172) (xy 203.535405 55.650476) (xy 203.360029 55.561117) (xy 203.172826 55.50029) - (xy 202.978422 55.4695) (xy 202.978417 55.4695) (xy 202.781583 55.4695) (xy 202.781578 55.4695) - (xy 202.587173 55.50029) (xy 202.39997 55.561117) (xy 202.224594 55.650476) (xy 202.178321 55.684096) - (xy 202.065354 55.766172) (xy 202.065352 55.766174) (xy 202.065351 55.766174) (xy 201.967681 55.863845) - (xy 201.906358 55.89733) (xy 201.836666 55.892346) (xy 201.792319 55.863845) (xy 201.694648 55.766174) - (xy 201.694646 55.766172) (xy 201.535405 55.650476) (xy 201.360029 55.561117) (xy 201.172826 55.50029) - (xy 200.978422 55.4695) (xy 200.978417 55.4695) (xy 200.781583 55.4695) (xy 200.781578 55.4695) - (xy 200.587173 55.50029) (xy 200.39997 55.561117) (xy 200.224594 55.650476) (xy 200.178321 55.684096) - (xy 200.065354 55.766172) (xy 200.065352 55.766174) (xy 200.065351 55.766174) (xy 199.967681 55.863845) - (xy 199.906358 55.89733) (xy 199.836666 55.892346) (xy 199.792319 55.863845) (xy 199.694648 55.766174) - (xy 199.694646 55.766172) (xy 199.535405 55.650476) (xy 199.360029 55.561117) (xy 199.172826 55.50029) - (xy 198.978422 55.4695) (xy 198.978417 55.4695) (xy 198.781583 55.4695) (xy 198.781578 55.4695) - (xy 198.587173 55.50029) (xy 198.39997 55.561117) (xy 198.224594 55.650476) (xy 198.178321 55.684096) - (xy 198.065354 55.766172) (xy 198.065352 55.766174) (xy 198.065351 55.766174) (xy 197.967681 55.863845) - (xy 197.906358 55.89733) (xy 197.836666 55.892346) (xy 197.792319 55.863845) (xy 197.694648 55.766174) - (xy 197.694646 55.766172) (xy 197.535405 55.650476) (xy 197.360029 55.561117) (xy 197.172826 55.50029) - (xy 196.978422 55.4695) (xy 196.978417 55.4695) (xy 196.781583 55.4695) (xy 196.781578 55.4695) - (xy 196.587173 55.50029) (xy 196.39997 55.561117) (xy 196.224594 55.650476) (xy 196.178321 55.684096) - (xy 196.065354 55.766172) (xy 196.065352 55.766174) (xy 196.065351 55.766174) (xy 195.967681 55.863845) - (xy 195.906358 55.89733) (xy 195.836666 55.892346) (xy 195.792319 55.863845) (xy 195.694648 55.766174) - (xy 195.694646 55.766172) (xy 195.535405 55.650476) (xy 195.360029 55.561117) (xy 195.172826 55.50029) - (xy 194.978422 55.4695) (xy 194.978417 55.4695) (xy 194.781583 55.4695) (xy 194.781578 55.4695) - (xy 194.587173 55.50029) (xy 194.39997 55.561117) (xy 194.224594 55.650476) (xy 194.178321 55.684096) - (xy 194.065354 55.766172) (xy 194.065352 55.766174) (xy 194.06535 55.766175) (xy 193.967325 55.864199) - (xy 193.906002 55.897683) (xy 193.83631 55.892698) (xy 193.791964 55.864198) (xy 193.694321 55.766555) - (xy 193.535143 55.650904) (xy 193.359835 55.561581) (xy 193.172705 55.500778) (xy 193.13 55.494014) - (xy 193.13 56.0955) (xy 193.110315 56.162539) (xy 193.057511 56.208294) (xy 193.006 56.2195) (xy 192.754 56.2195) - (xy 192.686961 56.199815) (xy 192.641206 56.147011) (xy 192.63 56.0955) (xy 192.63 55.494014) (xy 192.629999 55.494014) - (xy 192.587294 55.500778) (xy 192.400164 55.561581) (xy 192.224856 55.650904) (xy 192.065678 55.766555) - (xy 191.926555 55.905678) (xy 191.810904 56.064856) (xy 191.766607 56.151795) (xy 191.718632 56.202591) - (xy 191.656122 56.2195) (xy 190.414108 56.2195) (xy 190.286812 56.253608) (xy 190.172686 56.3195) - (xy 190.172683 56.319502) (xy 190.079502 56.412683) (xy 190.0795 56.412686) (xy 190.013608 56.526812) - (xy 189.9795 56.654108) (xy 127.9895 56.654108) (xy 127.9895 56.615597) (xy 127.987633 56.603812) - (xy 127.959964 56.429115) (xy 127.924348 56.319502) (xy 127.90162 56.249552) (xy 127.901618 56.249549) - (xy 127.901618 56.249547) (xy 127.849373 56.147011) (xy 127.815904 56.081325) (xy 127.704927 55.928578) - (xy 127.571422 55.795073) (xy 127.418675 55.684096) (xy 127.250452 55.598381) (xy 127.125959 55.557931) - (xy 127.068284 55.518493) (xy 127.041086 55.454134) (xy 127.053001 55.385288) (xy 127.100245 55.333812) - (xy 127.125959 55.322069) (xy 127.250448 55.28162) (xy 127.418675 55.195904) (xy 127.571422 55.084927) - (xy 127.704927 54.951422) (xy 127.815904 54.798675) (xy 127.90162 54.630448) (xy 127.959964 54.450884) - (xy 127.9895 54.264403) (xy 127.9895 54.075597) (xy 127.959964 53.889116) (xy 127.90162 53.709552) - (xy 127.901618 53.709549) (xy 127.901618 53.709547) (xy 127.8564 53.620804) (xy 127.815904 53.541325) - (xy 127.704927 53.388578) (xy 127.571422 53.255073) (xy 127.418675 53.144096) (xy 127.250452 53.058381) - (xy 127.070884 53.000035) (xy 126.909899 52.974538) (xy 126.884403 52.9705) (xy 126.695597 52.9705) - (xy 126.673167 52.974052) (xy 126.509115 53.000035) (xy 126.329547 53.058381) (xy 126.161324 53.144096) - (xy 126.008575 53.255075) (xy 125.875075 53.388575) (xy 125.764094 53.541326) (xy 125.683983 53.698552) - (xy 125.636009 53.749347) (xy 125.568188 53.766142) (xy 125.502053 53.743604) (xy 125.458602 53.688889) - (xy 125.449499 53.642261) (xy 125.449499 52.153128) (xy 125.443091 52.093517) (xy 125.392796 51.958669) - (xy 125.392795 51.958668) (xy 125.392793 51.958664) (xy 125.306547 51.843455) (xy 125.306544 51.843452) - (xy 125.191335 51.757206) (xy 125.191328 51.757202) (xy 125.056482 51.706908) (xy 125.056483 51.706908) - (xy 124.996883 51.700501) (xy 124.996881 51.7005) (xy 124.996873 51.7005) (xy 124.996864 51.7005) - (xy 123.503129 51.7005) (xy 123.503123 51.700501) (xy 123.443516 51.706908) (xy 123.308671 51.757202) - (xy 123.308664 51.757206) (xy 123.193455 51.843452) (xy 123.193452 51.843455) (xy 123.107206 51.958664) - (xy 123.107202 51.958671) (xy 123.056908 52.093517) (xy 123.050501 52.153116) (xy 123.050501 52.153123) - (xy 123.0505 52.153135) (xy 119.702826 52.153135) (xy 119.743409 52.001677) (xy 119.7755 51.757927) - (xy 119.7755 51.512073) (xy 119.743409 51.268323) (xy 119.696959 51.094968) (xy 119.698622 51.02512) - (xy 119.737785 50.967258) (xy 119.802013 50.939754) (xy 119.870915 50.951341) (xy 119.892221 50.964501) - (xy 119.990981 51.040283) (xy 120.186519 51.153176) (xy 120.186529 51.15318) (xy 120.395131 51.239586) - (xy 120.613239 51.298028) (xy 120.8371 51.3275) (xy 121.0629 51.3275) (xy 121.28676 51.298028) (xy 121.504868 51.239586) - (xy 121.71347 51.15318) (xy 121.71348 51.153176) (xy 121.909018 51.040283) (xy 121.978451 50.987004) - (xy 121.323773 50.332326) (xy 121.336047 50.327243) (xy 121.469532 50.238051) (xy 121.583051 50.124532) - (xy 121.672243 49.991047) (xy 121.677326 49.978773) (xy 122.332004 50.633451) (xy 122.385283 50.564018) - (xy 122.498176 50.36848) (xy 122.49818 50.36847) (xy 122.584586 50.159868) (xy 122.643028 49.94176) - (xy 122.6725 49.717899) (xy 122.6725 49.4921) (xy 122.643028 49.268239) (xy 122.584586 49.050131) - (xy 122.49818 48.841529) (xy 122.498176 48.841519) (xy 122.38528 48.645977) (xy 122.332005 48.576547) - (xy 122.332004 48.576547) (xy 121.677326 49.231225) (xy 121.672243 49.218953) (xy 121.583051 49.085468) - (xy 121.469532 48.971949) (xy 121.336047 48.882757) (xy 121.323772 48.877672) (xy 121.978451 48.222994) - (xy 121.978451 48.222993) (xy 121.90902 48.169719) (xy 121.909013 48.169714) (xy 121.71348 48.056823) - (xy 121.71347 48.056819) (xy 121.504868 47.970413) (xy 121.28676 47.911971) (xy 121.0629 47.8825) - (xy 120.8371 47.8825) (xy 120.613239 47.911971) (xy 120.395131 47.970413) (xy 120.186529 48.056819) - (xy 120.186519 48.056823) (xy 119.990984 48.169715) (xy 119.99097 48.169724) (xy 119.921547 48.222993) - (xy 120.576226 48.877673) (xy 120.563953 48.882757) (xy 120.430468 48.971949) (xy 120.316949 49.085468) - (xy 120.227757 49.218953) (xy 120.222672 49.231226) (xy 119.567993 48.576547) (xy 119.52968 48.626479) - (xy 119.473253 48.667682) (xy 119.403507 48.671837) (xy 119.342586 48.637625) (xy 119.309833 48.575908) - (xy 119.307314 48.552557) (xy 119.258044 44.626056) (xy 119.276886 44.558775) (xy 119.329111 44.512361) - (xy 119.382034 44.5005) (xy 121.279372 44.5005) (xy 121.324483 44.504225) (xy 121.345021 44.5005) - (xy 121.365892 44.5005) (xy 121.404686 44.490104) (xy 121.414622 44.487875) (xy 121.454152 44.480707) - (xy 121.473023 44.471794) (xy 121.493186 44.466392) (xy 121.532388 44.443758) (xy 121.573315 44.42443) - (xy 121.580721 44.418152) (xy 121.598896 44.405358) (xy 121.607314 44.4005) (xy 121.635722 44.372091) - (xy 121.643209 44.365196) (xy 126.996853 39.828211) (xy 127.348859 39.529901) (xy 127.41273 39.501576) - (xy 127.429028 39.5005) (xy 165.876 39.5005) - ) - ) - ) - (zone - (net "/Usb Connector/USB_GND") - (layer "In1.Cu") - (uuid "45405292-b160-4724-a7d0-cc48bf9f19d5") - (name "USB_GND") - (hatch edge 0.5) - (connect_pads - (clearance 0.5) - ) - (min_thickness 0.25) - (fill yes - (thermal_gap 0.5) - (thermal_bridge_width 0.5) - (island_removal_mode 0) - ) - (polygon - (pts - (xy 171.5 39) (xy 171.525 51.125) (xy 180.075036 51.082143) (xy 187 44.09) (xy 208.8 44) (xy 208.8 39) - ) - ) - (filled_polygon - (layer "In1.Cu") - (pts - (xy 208.242539 39.520185) (xy 208.288294 39.572989) (xy 208.2995 39.6245) (xy 208.2995 43.878576) - (xy 208.279815 43.945615) (xy 208.227011 43.99137) (xy 208.176012 44.002575) (xy 187.079377 44.089672) - (xy 187 44.09) (xy 186.999999 44.09) (xy 186.999998 44.090001) (xy 180.111169 51.045659) (xy 180.050009 51.07944) - (xy 180.023688 51.0824) (xy 171.649365 51.124376) (xy 171.582227 51.105028) (xy 171.536208 51.052454) - (xy 171.524743 51.000636) (xy 171.521126 49.246153) (xy 174.8245 49.246153) (xy 174.8245 49.403846) - (xy 174.855261 49.558489) (xy 174.855264 49.558501) (xy 174.915602 49.704172) (xy 174.915609 49.704185) - (xy 175.00321 49.835288) (xy 175.003213 49.835292) (xy 175.114707 49.946786) (xy 175.114711 49.946789) - (xy 175.245814 50.03439) (xy 175.245827 50.034397) (xy 175.391498 50.094735) (xy 175.391503 50.094737) - (xy 175.546153 50.125499) (xy 175.546156 50.1255) (xy 175.546158 50.1255) (xy 175.703844 50.1255) - (xy 175.703845 50.125499) (xy 175.858497 50.094737) (xy 176.004179 50.034394) (xy 176.135289 49.946789) - (xy 176.246789 49.835289) (xy 176.334394 49.704179) (xy 176.394737 49.558497) (xy 176.4255 49.403842) - (xy 176.4255 49.246158) (xy 176.4255 49.246155) (xy 176.425499 49.246153) (xy 176.394738 49.09151) - (xy 176.394737 49.091503) (xy 176.394735 49.091498) (xy 176.334397 48.945827) (xy 176.33439 48.945814) - (xy 176.246789 48.814711) (xy 176.246786 48.814707) (xy 176.135292 48.703213) (xy 176.135288 48.70321) - (xy 176.004185 48.615609) (xy 176.004172 48.615602) (xy 175.858501 48.555264) (xy 175.858489 48.555261) - (xy 175.703845 48.5245) (xy 175.703842 48.5245) (xy 175.546158 48.5245) (xy 175.546155 48.5245) - (xy 175.39151 48.555261) (xy 175.391498 48.555264) (xy 175.245827 48.615602) (xy 175.245814 48.615609) - (xy 175.114711 48.70321) (xy 175.114707 48.703213) (xy 175.003213 48.814707) (xy 175.00321 48.814711) - (xy 174.915609 48.945814) (xy 174.915602 48.945827) (xy 174.855264 49.091498) (xy 174.855261 49.09151) - (xy 174.8245 49.246153) (xy 171.521126 49.246153) (xy 171.515008 46.279158) (xy 171.534555 46.21208) - (xy 171.587264 46.166216) (xy 171.656402 46.15613) (xy 171.707899 46.175802) (xy 171.823453 46.253013) - (xy 171.823455 46.253014) (xy 171.823459 46.253016) (xy 171.886573 46.279158) (xy 171.987334 46.320894) - (xy 171.987336 46.320894) (xy 171.987341 46.320896) (xy 172.161304 46.355499) (xy 172.161307 46.3555) - (xy 172.161309 46.3555) (xy 173.138693 46.3555) (xy 173.138694 46.355499) (xy 173.196682 46.343964) - (xy 173.312658 46.320896) (xy 173.312661 46.320894) (xy 173.312666 46.320894) (xy 173.476547 46.253013) - (xy 173.624035 46.154464) (xy 173.749464 46.029035) (xy 173.848013 45.881547) (xy 173.915894 45.717666) - (xy 173.9505 45.543691) (xy 173.9505 45.366309) (xy 173.950499 45.366304) (xy 177.4495 45.366304) - (xy 177.4495 45.543695) (xy 177.484103 45.717658) (xy 177.484106 45.717667) (xy 177.551983 45.88154) - (xy 177.55199 45.881553) (xy 177.650535 46.029034) (xy 177.650538 46.029038) (xy 177.775961 46.154461) - (xy 177.775965 46.154464) (xy 177.923446 46.253009) (xy 177.923459 46.253016) (xy 177.986573 46.279158) - (xy 178.087334 46.320894) (xy 178.087336 46.320894) (xy 178.087341 46.320896) (xy 178.261304 46.355499) - (xy 178.261307 46.3555) (xy 178.261309 46.3555) (xy 179.238693 46.3555) (xy 179.238694 46.355499) - (xy 179.296682 46.343964) (xy 179.412658 46.320896) (xy 179.412661 46.320894) (xy 179.412666 46.320894) - (xy 179.576547 46.253013) (xy 179.724035 46.154464) (xy 179.849464 46.029035) (xy 179.948013 45.881547) - (xy 180.015894 45.717666) (xy 180.0505 45.543691) (xy 180.0505 45.366309) (xy 180.0505 45.366306) - (xy 180.050499 45.366304) (xy 180.015896 45.192341) (xy 180.015893 45.192332) (xy 179.948016 45.028459) - (xy 179.948009 45.028446) (xy 179.849464 44.880965) (xy 179.849461 44.880961) (xy 179.724038 44.755538) - (xy 179.724034 44.755535) (xy 179.576553 44.65699) (xy 179.57654 44.656983) (xy 179.412667 44.589106) - (xy 179.412658 44.589103) (xy 179.238694 44.5545) (xy 179.238691 44.5545) (xy 178.261309 44.5545) - (xy 178.261306 44.5545) (xy 178.087341 44.589103) (xy 178.087332 44.589106) (xy 177.923459 44.656983) - (xy 177.923446 44.65699) (xy 177.775965 44.755535) (xy 177.775961 44.755538) (xy 177.650538 44.880961) - (xy 177.650535 44.880965) (xy 177.55199 45.028446) (xy 177.551983 45.028459) (xy 177.484106 45.192332) - (xy 177.484103 45.192341) (xy 177.4495 45.366304) (xy 173.950499 45.366304) (xy 173.924787 45.237044) - (xy 173.924719 45.236685) (xy 173.928071 45.202314) (xy 173.931136 45.168067) (xy 173.931451 45.16766) - (xy 173.931502 45.167145) (xy 173.952891 45.14006) (xy 173.973998 45.112889) (xy 173.974533 45.112655) - (xy 173.974805 45.112312) (xy 173.977273 45.111463) (xy 174.022335 45.091849) (xy 174.063962 45.083568) - (xy 174.133497 45.069737) (xy 174.279179 45.009394) (xy 174.410289 44.921789) (xy 174.521789 44.810289) - (xy 174.609394 44.679179) (xy 174.669737 44.533497) (xy 174.7005 44.378842) (xy 174.7005 44.221158) - (xy 174.7005 44.221155) (xy 174.700499 44.221153) (xy 175.2495 44.221153) (xy 175.2495 44.378846) - (xy 175.280261 44.533489) (xy 175.280264 44.533501) (xy 175.340602 44.679172) (xy 175.340609 44.679185) - (xy 175.42821 44.810288) (xy 175.428213 44.810292) (xy 175.539707 44.921786) (xy 175.539711 44.921789) - (xy 175.670814 45.00939) (xy 175.670827 45.009397) (xy 175.816498 45.069735) (xy 175.816503 45.069737) - (xy 175.927667 45.091849) (xy 175.971153 45.100499) (xy 175.971156 45.1005) (xy 175.971158 45.1005) - (xy 176.128844 45.1005) (xy 176.128845 45.100499) (xy 176.283497 45.069737) (xy 176.429179 45.009394) - (xy 176.560289 44.921789) (xy 176.671789 44.810289) (xy 176.759394 44.679179) (xy 176.819737 44.533497) - (xy 176.8505 44.378842) (xy 176.8505 44.221158) (xy 176.8505 44.221155) (xy 176.850499 44.221153) - (xy 176.824411 44.09) (xy 176.819737 44.066503) (xy 176.801976 44.023623) (xy 176.759397 43.920827) - (xy 176.75939 43.920814) (xy 176.671789 43.789711) (xy 176.671786 43.789707) (xy 176.560292 43.678213) - (xy 176.560288 43.67821) (xy 176.429185 43.590609) (xy 176.429172 43.590602) (xy 176.283501 43.530264) - (xy 176.283489 43.530261) (xy 176.128845 43.4995) (xy 176.128842 43.4995) (xy 175.971158 43.4995) - (xy 175.971155 43.4995) (xy 175.81651 43.530261) (xy 175.816498 43.530264) (xy 175.670827 43.590602) - (xy 175.670814 43.590609) (xy 175.539711 43.67821) (xy 175.539707 43.678213) (xy 175.428213 43.789707) - (xy 175.42821 43.789711) (xy 175.340609 43.920814) (xy 175.340602 43.920827) (xy 175.280264 44.066498) - (xy 175.280261 44.06651) (xy 175.2495 44.221153) (xy 174.700499 44.221153) (xy 174.674411 44.09) - (xy 174.669737 44.066503) (xy 174.651976 44.023623) (xy 174.609397 43.920827) (xy 174.60939 43.920814) - (xy 174.521789 43.789711) (xy 174.521786 43.789707) (xy 174.410292 43.678213) (xy 174.410288 43.67821) - (xy 174.279185 43.590609) (xy 174.279172 43.590602) (xy 174.133501 43.530264) (xy 174.133489 43.530261) - (xy 173.978845 43.4995) (xy 173.978842 43.4995) (xy 173.821158 43.4995) (xy 173.821155 43.4995) - (xy 173.66651 43.530261) (xy 173.666498 43.530264) (xy 173.520827 43.590602) (xy 173.520814 43.590609) - (xy 173.389711 43.67821) (xy 173.389707 43.678213) (xy 173.278213 43.789707) (xy 173.27821 43.789711) - (xy 173.190609 43.920814) (xy 173.190602 43.920827) (xy 173.130264 44.066498) (xy 173.130261 44.06651) - (xy 173.0995 44.221153) (xy 173.0995 44.221158) (xy 173.0995 44.378842) (xy 173.0995 44.378844) - (xy 173.099499 44.378844) (xy 173.104963 44.406308) (xy 173.098736 44.4759) (xy 173.055873 44.531077) - (xy 172.989984 44.554322) (xy 172.983346 44.5545) (xy 172.161306 44.5545) (xy 171.987341 44.589103) - (xy 171.987332 44.589106) (xy 171.823459 44.656983) (xy 171.823448 44.656989) (xy 171.704504 44.736465) - (xy 171.637827 44.757342) (xy 171.570447 44.738857) (xy 171.523757 44.686878) (xy 171.511615 44.633625) - (xy 171.51043 44.059014) (xy 171.529977 43.991938) (xy 171.582686 43.946074) (xy 171.651824 43.935988) - (xy 171.70332 43.95566) (xy 171.80502 44.023613) (xy 171.805023 44.023614) (xy 171.805031 44.02362) - (xy 171.805037 44.023622) (xy 171.805038 44.023623) (xy 171.927959 44.074538) (xy 171.927964 44.07454) - (xy 171.927968 44.07454) (xy 171.927969 44.074541) (xy 172.058466 44.1005) (xy 172.058469 44.1005) - (xy 172.191533 44.1005) (xy 172.279325 44.083035) (xy 172.322036 44.07454) (xy 172.444969 44.02362) - (xy 172.555606 43.949695) (xy 172.649695 43.855606) (xy 172.72362 43.744969) (xy 172.77454 43.622036) - (xy 172.792795 43.530264) (xy 172.8005 43.491533) (xy 178.599499 43.491533) (xy 178.625458 43.62203) - (xy 178.625461 43.62204) (xy 178.676376 43.744961) (xy 178.676386 43.744979) (xy 178.750301 43.855601) - (xy 178.750307 43.855609) (xy 178.84439 43.949692) (xy 178.844398 43.949698) (xy 178.95502 44.023613) - (xy 178.955023 44.023614) (xy 178.955031 44.02362) (xy 178.955037 44.023622) (xy 178.955038 44.023623) - (xy 179.077959 44.074538) (xy 179.077964 44.07454) (xy 179.077968 44.07454) (xy 179.077969 44.074541) - (xy 179.208466 44.1005) (xy 179.208469 44.1005) (xy 179.341533 44.1005) (xy 179.429325 44.083035) - (xy 179.472036 44.07454) (xy 179.594969 44.02362) (xy 179.705606 43.949695) (xy 179.799695 43.855606) - (xy 179.87362 43.744969) (xy 179.92454 43.622036) (xy 179.942795 43.530264) (xy 179.9505 43.491533) - (xy 179.9505 43.358466) (xy 179.924541 43.227969) (xy 179.92454 43.227968) (xy 179.92454 43.227964) - (xy 179.87362 43.105031) (xy 179.843726 43.060292) (xy 179.799698 42.994398) (xy 179.799692 42.99439) - (xy 179.705609 42.900307) (xy 179.705601 42.900301) (xy 179.594979 42.826386) (xy 179.594972 42.826382) - (xy 179.594969 42.82638) (xy 179.594965 42.826378) (xy 179.594961 42.826376) (xy 179.47204 42.775461) - (xy 179.47203 42.775458) (xy 179.341533 42.7495) (xy 179.341531 42.7495) (xy 179.208469 42.7495) - (xy 179.208467 42.7495) (xy 179.077969 42.775458) (xy 179.077959 42.775461) (xy 178.955038 42.826376) - (xy 178.95502 42.826386) (xy 178.844398 42.900301) (xy 178.84439 42.900307) (xy 178.750307 42.99439) - (xy 178.750301 42.994398) (xy 178.676386 43.10502) (xy 178.676376 43.105038) (xy 178.625461 43.227959) - (xy 178.625458 43.227969) (xy 178.5995 43.358466) (xy 178.5995 43.358469) (xy 178.5995 43.491531) - (xy 178.5995 43.491533) (xy 178.599499 43.491533) (xy 172.8005 43.491533) (xy 172.8005 43.358466) - (xy 172.774541 43.227969) (xy 172.77454 43.227968) (xy 172.77454 43.227964) (xy 172.72362 43.105031) - (xy 172.693726 43.060292) (xy 172.649698 42.994398) (xy 172.649692 42.99439) (xy 172.555609 42.900307) - (xy 172.555601 42.900301) (xy 172.444979 42.826386) (xy 172.444972 42.826382) (xy 172.444969 42.82638) - (xy 172.444965 42.826378) (xy 172.444961 42.826376) (xy 172.32204 42.775461) (xy 172.32203 42.775458) - (xy 172.191533 42.7495) (xy 172.191531 42.7495) (xy 172.058469 42.7495) (xy 172.058467 42.7495) - (xy 171.927969 42.775458) (xy 171.927959 42.775461) (xy 171.805038 42.826376) (xy 171.805027 42.826382) - (xy 171.70071 42.896084) (xy 171.634032 42.916961) (xy 171.566652 42.898476) (xy 171.519963 42.846497) - (xy 171.507821 42.793241) (xy 171.507156 42.471153) (xy 174.5495 42.471153) (xy 174.5495 42.628846) - (xy 174.580261 42.783489) (xy 174.580264 42.783501) (xy 174.640602 42.929172) (xy 174.640609 42.929185) - (xy 174.72821 43.060288) (xy 174.728213 43.060292) (xy 174.839707 43.171786) (xy 174.839711 43.171789) - (xy 174.970814 43.25939) (xy 174.970827 43.259397) (xy 175.116498 43.319735) (xy 175.116503 43.319737) - (xy 175.271153 43.350499) (xy 175.271156 43.3505) (xy 175.271158 43.3505) (xy 175.428844 43.3505) - (xy 175.428845 43.350499) (xy 175.583497 43.319737) (xy 175.729179 43.259394) (xy 175.729185 43.25939) - (xy 175.744324 43.249275) (xy 175.798054 43.213372) (xy 175.860289 43.171789) (xy 175.971789 43.060289) - (xy 176.059394 42.929179) (xy 176.119737 42.783497) (xy 176.1505 42.628842) (xy 176.1505 42.471158) - (xy 176.1505 42.471155) (xy 176.150499 42.471153) (xy 176.119738 42.31651) (xy 176.119737 42.316503) - (xy 176.077095 42.213555) (xy 176.059397 42.170827) (xy 176.05939 42.170814) (xy 175.971789 42.039711) - (xy 175.971786 42.039707) (xy 175.860292 41.928213) (xy 175.860288 41.92821) (xy 175.729185 41.840609) - (xy 175.729172 41.840602) (xy 175.583501 41.780264) (xy 175.583489 41.780261) (xy 175.428845 41.7495) - (xy 175.428842 41.7495) (xy 175.271158 41.7495) (xy 175.271155 41.7495) (xy 175.11651 41.780261) - (xy 175.116498 41.780264) (xy 174.970827 41.840602) (xy 174.970814 41.840609) (xy 174.839711 41.92821) - (xy 174.839707 41.928213) (xy 174.728213 42.039707) (xy 174.72821 42.039711) (xy 174.640609 42.170814) - (xy 174.640602 42.170827) (xy 174.580264 42.316498) (xy 174.580261 42.31651) (xy 174.5495 42.471153) - (xy 171.507156 42.471153) (xy 171.506625 42.213555) (xy 171.526172 42.146479) (xy 171.578881 42.100615) - (xy 171.648019 42.090529) (xy 171.699516 42.110201) (xy 171.823446 42.193009) (xy 171.823459 42.193016) - (xy 171.873046 42.213555) (xy 171.987334 42.260894) (xy 171.987336 42.260894) (xy 171.987341 42.260896) - (xy 172.161304 42.295499) (xy 172.161307 42.2955) (xy 172.161309 42.2955) (xy 173.138693 42.2955) - (xy 173.138694 42.295499) (xy 173.196682 42.283964) (xy 173.312658 42.260896) (xy 173.312661 42.260894) - (xy 173.312666 42.260894) (xy 173.476547 42.193013) (xy 173.624035 42.094464) (xy 173.749464 41.969035) - (xy 173.848013 41.821547) (xy 173.915894 41.657666) (xy 173.9505 41.483691) (xy 173.9505 41.306309) - (xy 173.9505 41.306306) (xy 173.950499 41.306304) (xy 177.4495 41.306304) (xy 177.4495 41.483695) - (xy 177.484103 41.657658) (xy 177.484106 41.657667) (xy 177.551983 41.82154) (xy 177.55199 41.821553) - (xy 177.650535 41.969034) (xy 177.650538 41.969038) (xy 177.775961 42.094461) (xy 177.775965 42.094464) - (xy 177.923446 42.193009) (xy 177.923459 42.193016) (xy 177.973046 42.213555) (xy 178.087334 42.260894) - (xy 178.087336 42.260894) (xy 178.087341 42.260896) (xy 178.261304 42.295499) (xy 178.261307 42.2955) - (xy 178.261309 42.2955) (xy 179.238693 42.2955) (xy 179.238694 42.295499) (xy 179.296682 42.283964) - (xy 179.412658 42.260896) (xy 179.412661 42.260894) (xy 179.412666 42.260894) (xy 179.576547 42.193013) - (xy 179.724035 42.094464) (xy 179.849464 41.969035) (xy 179.948013 41.821547) (xy 180.015894 41.657666) - (xy 180.0505 41.483691) (xy 180.0505 41.306309) (xy 180.0505 41.306306) (xy 180.050499 41.306304) - (xy 180.015896 41.132341) (xy 180.015893 41.132332) (xy 179.948016 40.968459) (xy 179.948009 40.968446) - (xy 179.849464 40.820965) (xy 179.849461 40.820961) (xy 179.724038 40.695538) (xy 179.724034 40.695535) - (xy 179.576553 40.59699) (xy 179.57654 40.596983) (xy 179.412667 40.529106) (xy 179.412658 40.529103) - (xy 179.238694 40.4945) (xy 179.238691 40.4945) (xy 178.261309 40.4945) (xy 178.261306 40.4945) - (xy 178.087341 40.529103) (xy 178.087332 40.529106) (xy 177.923459 40.596983) (xy 177.923446 40.59699) - (xy 177.775965 40.695535) (xy 177.775961 40.695538) (xy 177.650538 40.820961) (xy 177.650535 40.820965) - (xy 177.55199 40.968446) (xy 177.551983 40.968459) (xy 177.484106 41.132332) (xy 177.484103 41.132341) - (xy 177.4495 41.306304) (xy 173.950499 41.306304) (xy 173.915896 41.132341) (xy 173.915893 41.132332) - (xy 173.848016 40.968459) (xy 173.848009 40.968446) (xy 173.749464 40.820965) (xy 173.749461 40.820961) - (xy 173.624038 40.695538) (xy 173.624034 40.695535) (xy 173.476553 40.59699) (xy 173.47654 40.596983) - (xy 173.312667 40.529106) (xy 173.312658 40.529103) (xy 173.138694 40.4945) (xy 173.138691 40.4945) - (xy 172.161309 40.4945) (xy 172.161306 40.4945) (xy 171.987341 40.529103) (xy 171.987332 40.529106) - (xy 171.823459 40.596983) (xy 171.823446 40.59699) (xy 171.696146 40.68205) (xy 171.629468 40.702928) - (xy 171.562088 40.684443) (xy 171.515398 40.632464) (xy 171.503256 40.579208) (xy 171.501288 39.624755) - (xy 171.520835 39.557676) (xy 171.573544 39.511812) (xy 171.625288 39.5005) (xy 208.1755 39.5005) - ) - ) - ) - (zone - (net "/Power/3V3") - (layer "In2.Cu") - (uuid "ddcd6760-ca6a-4793-821b-a3fd027b5b61") - (name "3V3") - (hatch edge 0.5) - (connect_pads - (clearance 0.5) - ) - (min_thickness 0.25) - (fill yes - (thermal_gap 0.5) - (thermal_bridge_width 0.5) - (island_removal_mode 0) - ) - (polygon - (pts - (xy 121.375 43.962925) (xy 119.25 43.987925) (xy 119.575 69.887925) (xy 122.15 72.412925) (xy 208.75 72.412925) - (xy 208.8 49.05) (xy 188.88 48.96) (xy 181.95 55.94) (xy 166 56) (xy 166 39) (xy 127.15 39.012925) - ) - ) - (filled_polygon - (layer "In2.Cu") - (pts - (xy 165.943039 39.520185) (xy 165.988794 39.572989) (xy 166 39.6245) (xy 166 56) (xy 181.95 55.94) - (xy 183.250167 54.630452) (xy 185.056434 52.811153) (xy 186.1095 52.811153) (xy 186.1095 52.968846) - (xy 186.140261 53.123489) (xy 186.140264 53.123501) (xy 186.200602 53.269172) (xy 186.200609 53.269185) - (xy 186.28821 53.400288) (xy 186.288213 53.400292) (xy 186.399707 53.511786) (xy 186.399711 53.511789) - (xy 186.530814 53.59939) (xy 186.530827 53.599397) (xy 186.676498 53.659735) (xy 186.676503 53.659737) - (xy 186.823059 53.688889) (xy 186.831153 53.690499) (xy 186.831156 53.6905) (xy 186.831158 53.6905) - (xy 186.988844 53.6905) (xy 186.988845 53.690499) (xy 187.143497 53.659737) (xy 187.289179 53.599394) - (xy 187.420289 53.511789) (xy 187.531789 53.400289) (xy 187.619394 53.269179) (xy 187.679737 53.123497) - (xy 187.7105 52.968842) (xy 187.7105 52.811158) (xy 187.7105 52.811155) (xy 187.710499 52.811153) - (xy 187.69191 52.717701) (xy 187.679737 52.656503) (xy 187.679735 52.656498) (xy 187.619397 52.510827) - (xy 187.61939 52.510814) (xy 187.531789 52.379711) (xy 187.531786 52.379707) (xy 187.420292 52.268213) - (xy 187.420288 52.26821) (xy 187.289185 52.180609) (xy 187.289172 52.180602) (xy 187.143501 52.120264) - (xy 187.143489 52.120261) (xy 186.988845 52.0895) (xy 186.988842 52.0895) (xy 186.831158 52.0895) - (xy 186.831155 52.0895) (xy 186.67651 52.120261) (xy 186.676498 52.120264) (xy 186.530827 52.180602) - (xy 186.530814 52.180609) (xy 186.399711 52.26821) (xy 186.399707 52.268213) (xy 186.288213 52.379707) - (xy 186.28821 52.379711) (xy 186.200609 52.510814) (xy 186.200602 52.510827) (xy 186.140264 52.656498) - (xy 186.140261 52.65651) (xy 186.1095 52.811153) (xy 185.056434 52.811153) (xy 185.149217 52.717701) - (xy 187.280388 50.571153) (xy 192.8745 50.571153) (xy 192.8745 50.728846) (xy 192.905261 50.883489) - (xy 192.905264 50.883501) (xy 192.965602 51.029172) (xy 192.965609 51.029185) (xy 193.05321 51.160288) - (xy 193.053213 51.160292) (xy 193.164707 51.271786) (xy 193.164711 51.271789) (xy 193.295814 51.35939) - (xy 193.295827 51.359397) (xy 193.441498 51.419735) (xy 193.441503 51.419737) (xy 193.596153 51.450499) - (xy 193.596156 51.4505) (xy 193.596158 51.4505) (xy 193.753844 51.4505) (xy 193.753845 51.450499) - (xy 193.908497 51.419737) (xy 194.054179 51.359394) (xy 194.185289 51.271789) (xy 194.296789 51.160289) - (xy 194.384394 51.029179) (xy 194.444737 50.883497) (xy 194.4755 50.728842) (xy 194.4755 50.571158) - (xy 194.4755 50.571155) (xy 194.475499 50.571153) (xy 194.444738 50.41651) (xy 194.444737 50.416503) - (xy 194.444735 50.416498) (xy 194.384397 50.270827) (xy 194.38439 50.270814) (xy 194.296789 50.139711) - (xy 194.296786 50.139707) (xy 194.185292 50.028213) (xy 194.185288 50.02821) (xy 194.054185 49.940609) - (xy 194.054172 49.940602) (xy 193.908501 49.880264) (xy 193.908489 49.880261) (xy 193.753845 49.8495) - (xy 193.753842 49.8495) (xy 193.596158 49.8495) (xy 193.596155 49.8495) (xy 193.44151 49.880261) - (xy 193.441498 49.880264) (xy 193.295827 49.940602) (xy 193.295814 49.940609) (xy 193.164711 50.02821) - (xy 193.164707 50.028213) (xy 193.053213 50.139707) (xy 193.05321 50.139711) (xy 192.965609 50.270814) - (xy 192.965602 50.270827) (xy 192.905264 50.416498) (xy 192.905261 50.41651) (xy 192.8745 50.571153) - (xy 187.280388 50.571153) (xy 187.373171 50.477701) (xy 188.843396 48.996868) (xy 188.904599 48.963162) - (xy 188.931945 48.960234) (xy 197.071444 48.997009) (xy 197.138393 49.016997) (xy 197.183909 49.070007) - (xy 197.19354 49.139209) (xy 197.164228 49.202633) (xy 197.118336 49.235569) (xy 197.045824 49.265604) - (xy 197.045814 49.265609) (xy 196.914711 49.35321) (xy 196.914707 49.353213) (xy 196.803213 49.464707) - (xy 196.80321 49.464711) (xy 196.715609 49.595814) (xy 196.715602 49.595827) (xy 196.655264 49.741498) - (xy 196.655261 49.74151) (xy 196.6245 49.896153) (xy 196.6245 50.053846) (xy 196.655261 50.208489) - (xy 196.655264 50.208501) (xy 196.715602 50.354172) (xy 196.715609 50.354185) (xy 196.80321 50.485288) - (xy 196.803213 50.485292) (xy 196.914707 50.596786) (xy 196.914711 50.596789) (xy 197.045814 50.68439) - (xy 197.045827 50.684397) (xy 197.191498 50.744735) (xy 197.191503 50.744737) (xy 197.346153 50.775499) - (xy 197.346156 50.7755) (xy 197.346158 50.7755) (xy 197.503844 50.7755) (xy 197.503845 50.775499) - (xy 197.658497 50.744737) (xy 197.804179 50.684394) (xy 197.809402 50.680903) (xy 197.81889 50.674565) - (xy 197.885567 50.653686) (xy 197.952947 50.67217) (xy 197.999638 50.724148) (xy 198.009399 50.753474) - (xy 198.035261 50.883491) (xy 198.035264 50.883501) (xy 198.095602 51.029172) (xy 198.095609 51.029185) - (xy 198.18321 51.160288) (xy 198.183213 51.160292) (xy 198.294707 51.271786) (xy 198.294711 51.271789) - (xy 198.425814 51.35939) (xy 198.425827 51.359397) (xy 198.571498 51.419735) (xy 198.571503 51.419737) - (xy 198.726153 51.450499) (xy 198.726156 51.4505) (xy 198.726158 51.4505) (xy 198.883844 51.4505) - (xy 198.883845 51.450499) (xy 199.038497 51.419737) (xy 199.184179 51.359394) (xy 199.315289 51.271789) - (xy 199.426789 51.160289) (xy 199.514394 51.029179) (xy 199.574737 50.883497) (xy 199.6055 50.728842) - (xy 199.6055 50.571158) (xy 199.6055 50.571155) (xy 199.605499 50.571153) (xy 203.0845 50.571153) - (xy 203.0845 50.728846) (xy 203.115261 50.883489) (xy 203.115264 50.883501) (xy 203.175602 51.029172) - (xy 203.175609 51.029185) (xy 203.26321 51.160288) (xy 203.263213 51.160292) (xy 203.374707 51.271786) - (xy 203.374711 51.271789) (xy 203.505814 51.35939) (xy 203.505827 51.359397) (xy 203.651498 51.419735) - (xy 203.651503 51.419737) (xy 203.806153 51.450499) (xy 203.806156 51.4505) (xy 203.806158 51.4505) - (xy 203.963844 51.4505) (xy 203.963845 51.450499) (xy 204.118497 51.419737) (xy 204.264179 51.359394) - (xy 204.395289 51.271789) (xy 204.506789 51.160289) (xy 204.594394 51.029179) (xy 204.654737 50.883497) - (xy 204.6855 50.728842) (xy 204.6855 50.571158) (xy 204.6855 50.571155) (xy 204.685499 50.571153) - (xy 205.6245 50.571153) (xy 205.6245 50.728846) (xy 205.655261 50.883489) (xy 205.655264 50.883501) - (xy 205.715602 51.029172) (xy 205.715609 51.029185) (xy 205.80321 51.160288) (xy 205.803213 51.160292) - (xy 205.914707 51.271786) (xy 205.914711 51.271789) (xy 206.045814 51.35939) (xy 206.045827 51.359397) - (xy 206.191498 51.419735) (xy 206.191503 51.419737) (xy 206.346153 51.450499) (xy 206.346156 51.4505) - (xy 206.346158 51.4505) (xy 206.503844 51.4505) (xy 206.503845 51.450499) (xy 206.658497 51.419737) - (xy 206.804179 51.359394) (xy 206.935289 51.271789) (xy 207.046789 51.160289) (xy 207.134394 51.029179) - (xy 207.194737 50.883497) (xy 207.2255 50.728842) (xy 207.2255 50.571158) (xy 207.2255 50.571155) - (xy 207.225499 50.571153) (xy 207.194738 50.41651) (xy 207.194737 50.416503) (xy 207.194735 50.416498) - (xy 207.134397 50.270827) (xy 207.13439 50.270814) (xy 207.046789 50.139711) (xy 207.046786 50.139707) - (xy 206.935292 50.028213) (xy 206.935288 50.02821) (xy 206.804185 49.940609) (xy 206.804172 49.940602) - (xy 206.658501 49.880264) (xy 206.658489 49.880261) (xy 206.503845 49.8495) (xy 206.503842 49.8495) - (xy 206.346158 49.8495) (xy 206.346155 49.8495) (xy 206.19151 49.880261) (xy 206.191498 49.880264) - (xy 206.045827 49.940602) (xy 206.045814 49.940609) (xy 205.914711 50.02821) (xy 205.914707 50.028213) - (xy 205.803213 50.139707) (xy 205.80321 50.139711) (xy 205.715609 50.270814) (xy 205.715602 50.270827) - (xy 205.655264 50.416498) (xy 205.655261 50.41651) (xy 205.6245 50.571153) (xy 204.685499 50.571153) - (xy 204.654738 50.41651) (xy 204.654737 50.416503) (xy 204.654735 50.416498) (xy 204.594397 50.270827) - (xy 204.59439 50.270814) (xy 204.506789 50.139711) (xy 204.506786 50.139707) (xy 204.395292 50.028213) - (xy 204.395288 50.02821) (xy 204.264185 49.940609) (xy 204.264172 49.940602) (xy 204.118501 49.880264) - (xy 204.118489 49.880261) (xy 203.963845 49.8495) (xy 203.963842 49.8495) (xy 203.806158 49.8495) - (xy 203.806155 49.8495) (xy 203.65151 49.880261) (xy 203.651498 49.880264) (xy 203.505827 49.940602) - (xy 203.505814 49.940609) (xy 203.374711 50.02821) (xy 203.374707 50.028213) (xy 203.263213 50.139707) - (xy 203.26321 50.139711) (xy 203.175609 50.270814) (xy 203.175602 50.270827) (xy 203.115264 50.416498) - (xy 203.115261 50.41651) (xy 203.0845 50.571153) (xy 199.605499 50.571153) (xy 199.574738 50.41651) - (xy 199.574737 50.416503) (xy 199.574735 50.416498) (xy 199.514397 50.270827) (xy 199.51439 50.270814) - (xy 199.426789 50.139711) (xy 199.426786 50.139707) (xy 199.315292 50.028213) (xy 199.315288 50.02821) - (xy 199.184185 49.940609) (xy 199.184172 49.940602) (xy 199.038501 49.880264) (xy 199.038489 49.880261) - (xy 198.883845 49.8495) (xy 198.883842 49.8495) (xy 198.726158 49.8495) (xy 198.726155 49.8495) - (xy 198.57151 49.880261) (xy 198.571498 49.880264) (xy 198.425827 49.940602) (xy 198.425809 49.940612) - (xy 198.411103 49.950438) (xy 198.344425 49.971313) (xy 198.277046 49.952826) (xy 198.230358 49.900845) - (xy 198.2206 49.871524) (xy 198.194738 49.74151) (xy 198.194737 49.741503) (xy 198.179277 49.704179) - (xy 198.134397 49.595827) (xy 198.13439 49.595814) (xy 198.046789 49.464711) (xy 198.046786 49.464707) - (xy 197.935292 49.353213) (xy 197.935288 49.35321) (xy 197.804185 49.265609) (xy 197.804172 49.265602) - (xy 197.739474 49.238804) (xy 197.68507 49.194963) (xy 197.663005 49.128669) (xy 197.680284 49.06097) - (xy 197.731421 49.013359) (xy 197.787483 49.000244) (xy 208.176063 49.047181) (xy 208.24301 49.067168) - (xy 208.288526 49.120178) (xy 208.2995 49.171179) (xy 208.2995 71.7755) (xy 208.279815 71.842539) - (xy 208.227011 71.888294) (xy 208.1755 71.8995) (xy 122.458676 71.8995) (xy 122.391637 71.879815) - (xy 122.370995 71.863181) (xy 119.600244 69.09243) (xy 119.566759 69.031107) (xy 119.563936 69.006317) - (xy 119.531407 66.414004) (xy 119.550249 66.346725) (xy 119.602474 66.300311) (xy 119.671503 66.2895) - (xy 119.735418 66.317726) (xy 119.743078 66.324769) (xy 119.811504 66.393195) (xy 119.81151 66.3932) - (xy 119.990699 66.530696) (xy 120.186301 66.643627) (xy 120.186304 66.643628) (xy 120.186309 66.643631) - (xy 120.240053 66.665892) (xy 120.394971 66.730061) (xy 120.613138 66.788519) (xy 120.837069 66.818) - (xy 120.837076 66.818) (xy 121.062924 66.818) (xy 121.062931 66.818) (xy 121.286862 66.788519) (xy 121.505029 66.730061) - (xy 121.66906 66.662116) (xy 121.71369 66.643631) (xy 121.713691 66.643629) (xy 121.713699 66.643627) - (xy 121.909301 66.530696) (xy 122.08849 66.3932) (xy 122.2482 66.23349) (xy 122.385696 66.054301) - (xy 122.498627 65.858699) (xy 122.585061 65.650029) (xy 122.643519 65.431862) (xy 122.673 65.207931) - (xy 122.673 64.982069) (xy 122.643519 64.758138) (xy 122.585061 64.539971) (xy 122.545259 64.443882) - (xy 122.498631 64.331309) (xy 122.498626 64.3313) (xy 122.385696 64.135699) (xy 122.2482 63.95651) - (xy 122.248195 63.956504) (xy 122.088495 63.796804) (xy 122.088488 63.796798) (xy 121.909308 63.659309) - (xy 121.909306 63.659307) (xy 121.909301 63.659304) (xy 121.713699 63.546373) (xy 121.71369 63.546368) - (xy 121.505029 63.459939) (xy 121.286858 63.40148) (xy 121.06294 63.372001) (xy 121.062937 63.372) - (xy 121.062931 63.372) (xy 120.837069 63.372) (xy 120.837063 63.372) (xy 120.837059 63.372001) (xy 120.613141 63.40148) - (xy 120.39497 63.459939) (xy 120.186309 63.546368) (xy 120.1863 63.546373) (xy 119.990692 63.659308) - (xy 119.892431 63.734706) (xy 119.827262 63.759899) (xy 119.758817 63.74586) (xy 119.708828 63.697046) - (xy 119.693166 63.628954) (xy 119.697168 63.604249) (xy 119.743409 63.431677) (xy 119.7755 63.187927) - (xy 119.7755 62.942073) (xy 119.743409 62.698323) (xy 119.679778 62.460847) (xy 119.585694 62.233708) - (xy 119.585692 62.233705) (xy 119.58569 62.2337) (xy 119.492776 62.07277) (xy 119.476174 62.012331) - (xy 119.361268 52.855142) (xy 119.38011 52.787862) (xy 119.386863 52.778127) (xy 119.462767 52.679208) - (xy 119.585694 52.466292) (xy 119.679778 52.239153) (xy 119.702826 52.153135) (xy 123.0505 52.153135) - (xy 123.0505 53.64687) (xy 123.050501 53.646876) (xy 123.056908 53.706483) (xy 123.107202 53.841328) - (xy 123.107206 53.841335) (xy 123.193452 53.956544) (xy 123.193455 53.956547) (xy 123.308664 54.042793) - (xy 123.308671 54.042797) (xy 123.443517 54.093091) (xy 123.443516 54.093091) (xy 123.450444 54.093835) - (xy 123.503127 54.0995) (xy 123.722257 54.099499) (xy 123.789295 54.119183) (xy 123.83505 54.171987) - (xy 123.844994 54.241145) (xy 123.815969 54.304701) (xy 123.778552 54.333983) (xy 123.621326 54.414094) - (xy 123.468575 54.525075) (xy 123.335075 54.658575) (xy 123.224096 54.811324) (xy 123.138381 54.979547) - (xy 123.080035 55.159115) (xy 123.0505 55.345597) (xy 123.0505 55.534402) (xy 123.080035 55.720884) - (xy 123.138381 55.900452) (xy 123.189104 56) (xy 123.224096 56.068675) (xy 123.335073 56.221422) - (xy 123.468578 56.354927) (xy 123.621325 56.465904) (xy 123.700804 56.5064) (xy 123.789547 56.551618) - (xy 123.789549 56.551618) (xy 123.789552 56.55162) (xy 123.857347 56.573648) (xy 123.91404 56.592069) - (xy 123.971715 56.631507) (xy 123.998913 56.695866) (xy 123.986998 56.764712) (xy 123.939754 56.816188) - (xy 123.91404 56.827931) (xy 123.789547 56.868381) (xy 123.621324 56.954096) (xy 123.468575 57.065075) - (xy 123.335075 57.198575) (xy 123.224096 57.351324) (xy 123.138381 57.519547) (xy 123.080035 57.699115) - (xy 123.0505 57.885597) (xy 123.0505 58.074402) (xy 123.080035 58.260884) (xy 123.138381 58.440452) - (xy 123.212742 58.586391) (xy 123.224096 58.608675) (xy 123.335073 58.761422) (xy 123.468578 58.894927) - (xy 123.621325 59.005904) (xy 123.700804 59.0464) (xy 123.789547 59.091618) (xy 123.789549 59.091618) - (xy 123.789552 59.09162) (xy 123.857347 59.113648) (xy 123.91404 59.132069) (xy 123.971715 59.171507) - (xy 123.998913 59.235866) (xy 123.986998 59.304712) (xy 123.939754 59.356188) (xy 123.91404 59.367931) - (xy 123.789547 59.408381) (xy 123.621324 59.494096) (xy 123.468575 59.605075) (xy 123.335075 59.738575) - (xy 123.224096 59.891324) (xy 123.138381 60.059547) (xy 123.080035 60.239115) (xy 123.0505 60.425597) - (xy 123.0505 60.614402) (xy 123.080035 60.800884) (xy 123.138381 60.980452) (xy 123.224096 61.148675) - (xy 123.335073 61.301422) (xy 123.468578 61.434927) (xy 123.621325 61.545904) (xy 123.700804 61.5864) - (xy 123.789547 61.631618) (xy 123.789549 61.631618) (xy 123.789552 61.63162) (xy 123.885802 61.662893) - (xy 123.969115 61.689964) (xy 124.062356 61.704732) (xy 124.155597 61.7195) (xy 124.155598 61.7195) - (xy 124.344402 61.7195) (xy 124.344403 61.7195) (xy 124.530884 61.689964) (xy 124.710448 61.63162) - (xy 124.878675 61.545904) (xy 125.031422 61.434927) (xy 125.164927 61.301422) (xy 125.275904 61.148675) - (xy 125.36162 60.980448) (xy 125.419964 60.800884) (xy 125.4495 60.614403) (xy 125.4495 60.425597) - (xy 125.447633 60.413812) (xy 125.419964 60.239115) (xy 125.361618 60.059547) (xy 125.275903 59.891324) - (xy 125.266713 59.878675) (xy 125.164927 59.738578) (xy 125.031422 59.605073) (xy 124.878675 59.494096) - (xy 124.710452 59.408381) (xy 124.585959 59.367931) (xy 124.528284 59.328493) (xy 124.501086 59.264134) - (xy 124.513001 59.195288) (xy 124.560245 59.143812) (xy 124.585959 59.132069) (xy 124.710448 59.09162) - (xy 124.878675 59.005904) (xy 125.031422 58.894927) (xy 125.164927 58.761422) (xy 125.275904 58.608675) - (xy 125.36162 58.440448) (xy 125.419964 58.260884) (xy 125.4495 58.074403) (xy 125.4495 57.885597) - (xy 125.447633 57.873812) (xy 125.419964 57.699115) (xy 125.361618 57.519547) (xy 125.275903 57.351324) - (xy 125.266713 57.338675) (xy 125.164927 57.198578) (xy 125.031422 57.065073) (xy 124.878675 56.954096) - (xy 124.710452 56.868381) (xy 124.585959 56.827931) (xy 124.528284 56.788493) (xy 124.501086 56.724134) - (xy 124.513001 56.655288) (xy 124.560245 56.603812) (xy 124.585959 56.592069) (xy 124.710448 56.55162) - (xy 124.878675 56.465904) (xy 125.031422 56.354927) (xy 125.164927 56.221422) (xy 125.275904 56.068675) - (xy 125.36162 55.900448) (xy 125.419964 55.720884) (xy 125.4495 55.534403) (xy 125.4495 55.345597) - (xy 125.447633 55.333812) (xy 125.419964 55.159115) (xy 125.361618 54.979547) (xy 125.275903 54.811324) - (xy 125.266713 54.798675) (xy 125.164927 54.658578) (xy 125.031422 54.525073) (xy 124.878675 54.414096) - (xy 124.721445 54.333983) (xy 124.67065 54.286009) (xy 124.653855 54.218188) (xy 124.676392 54.152054) - (xy 124.731107 54.108602) (xy 124.77774 54.099499) (xy 124.996872 54.099499) (xy 125.056483 54.093091) - (xy 125.191331 54.042796) (xy 125.306546 53.956546) (xy 125.390547 53.844335) (xy 125.44648 53.802465) - (xy 125.516172 53.797481) (xy 125.577495 53.830966) (xy 125.610979 53.89229) (xy 125.612286 53.938045) - (xy 125.5905 54.075597) (xy 125.5905 54.264402) (xy 125.620035 54.450884) (xy 125.678381 54.630452) - (xy 125.764096 54.798675) (xy 125.875073 54.951422) (xy 126.008578 55.084927) (xy 126.161325 55.195904) - (xy 126.240804 55.2364) (xy 126.329547 55.281618) (xy 126.329549 55.281618) (xy 126.329552 55.28162) - (xy 126.397347 55.303648) (xy 126.45404 55.322069) (xy 126.511715 55.361507) (xy 126.538913 55.425866) - (xy 126.526998 55.494712) (xy 126.479754 55.546188) (xy 126.45404 55.557931) (xy 126.329547 55.598381) - (xy 126.161324 55.684096) (xy 126.008575 55.795075) (xy 125.875075 55.928575) (xy 125.764096 56.081324) - (xy 125.678381 56.249547) (xy 125.620035 56.429115) (xy 125.5905 56.615597) (xy 125.5905 56.804402) - (xy 125.620035 56.990884) (xy 125.678381 57.170452) (xy 125.764096 57.338675) (xy 125.875073 57.491422) - (xy 126.008578 57.624927) (xy 126.161325 57.735904) (xy 126.240804 57.7764) (xy 126.329547 57.821618) - (xy 126.329549 57.821618) (xy 126.329552 57.82162) (xy 126.397347 57.843648) (xy 126.45404 57.862069) - (xy 126.511715 57.901507) (xy 126.538913 57.965866) (xy 126.526998 58.034712) (xy 126.479754 58.086188) - (xy 126.45404 58.097931) (xy 126.329547 58.138381) (xy 126.161324 58.224096) (xy 126.008575 58.335075) - (xy 125.875075 58.468575) (xy 125.764096 58.621324) (xy 125.678381 58.789547) (xy 125.620035 58.969115) - (xy 125.5905 59.155597) (xy 125.5905 59.344402) (xy 125.620035 59.530884) (xy 125.678381 59.710452) - (xy 125.764096 59.878675) (xy 125.875073 60.031422) (xy 126.008578 60.164927) (xy 126.161325 60.275904) - (xy 126.240804 60.3164) (xy 126.329547 60.361618) (xy 126.329549 60.361618) (xy 126.329552 60.36162) - (xy 126.397347 60.383648) (xy 126.45404 60.402069) (xy 126.511715 60.441507) (xy 126.538913 60.505866) - (xy 126.526998 60.574712) (xy 126.479754 60.626188) (xy 126.45404 60.637931) (xy 126.329547 60.678381) - (xy 126.161324 60.764096) (xy 126.008575 60.875075) (xy 125.875075 61.008575) (xy 125.764096 61.161324) - (xy 125.678381 61.329547) (xy 125.620035 61.509115) (xy 125.5905 61.695597) (xy 125.5905 61.884402) - (xy 125.620035 62.070884) (xy 125.678381 62.250452) (xy 125.764096 62.418675) (xy 125.875073 62.571422) - (xy 126.008578 62.704927) (xy 126.161325 62.815904) (xy 126.240804 62.8564) (xy 126.329547 62.901618) - (xy 126.329549 62.901618) (xy 126.329552 62.90162) (xy 126.425802 62.932893) (xy 126.509115 62.959964) - (xy 126.602356 62.974732) (xy 126.695597 62.9895) (xy 126.695598 62.9895) (xy 126.884402 62.9895) - (xy 126.884403 62.9895) (xy 127.070884 62.959964) (xy 127.250448 62.90162) (xy 127.418675 62.815904) - (xy 127.571422 62.704927) (xy 127.704927 62.571422) (xy 127.815904 62.418675) (xy 127.90162 62.250448) - (xy 127.959964 62.070884) (xy 127.9895 61.884403) (xy 127.9895 61.695597) (xy 127.959964 61.509116) - (xy 127.935858 61.434927) (xy 127.901618 61.329547) (xy 127.815903 61.161324) (xy 127.806713 61.148675) - (xy 127.704927 61.008578) (xy 127.571422 60.875073) (xy 127.418675 60.764096) (xy 127.250452 60.678381) - (xy 127.125959 60.637931) (xy 127.068284 60.598493) (xy 127.041086 60.534134) (xy 127.053001 60.465288) - (xy 127.100245 60.413812) (xy 127.125959 60.402069) (xy 127.250448 60.36162) (xy 127.418675 60.275904) - (xy 127.571422 60.164927) (xy 127.704927 60.031422) (xy 127.815904 59.878675) (xy 127.90162 59.710448) - (xy 127.959964 59.530884) (xy 127.9895 59.344403) (xy 127.9895 59.155597) (xy 127.987633 59.143812) - (xy 127.959964 58.969115) (xy 127.901618 58.789547) (xy 127.849981 58.688205) (xy 127.815904 58.621325) - (xy 127.704927 58.468578) (xy 127.571422 58.335073) (xy 127.418675 58.224096) (xy 127.250452 58.138381) - (xy 127.125959 58.097931) (xy 127.068284 58.058493) (xy 127.041086 57.994134) (xy 127.053001 57.925288) - (xy 127.100245 57.873812) (xy 127.125959 57.862069) (xy 127.250448 57.82162) (xy 127.418675 57.735904) - (xy 127.571422 57.624927) (xy 127.704927 57.491422) (xy 127.815904 57.338675) (xy 127.90162 57.170448) - (xy 127.959964 56.990884) (xy 127.9895 56.804403) (xy 127.9895 56.654108) (xy 189.9795 56.654108) - (xy 189.9795 58.185891) (xy 190.013608 58.313187) (xy 190.046554 58.37025) (xy 190.0795 58.427314) - (xy 190.172686 58.5205) (xy 190.286814 58.586392) (xy 190.414108 58.6205) (xy 190.65556 58.6205) - (xy 190.722599 58.640185) (xy 190.766045 58.688205) (xy 190.810476 58.775405) (xy 190.926172 58.934646) - (xy 191.065354 59.073828) (xy 191.224595 59.189524) (xy 191.235908 59.195288) (xy 191.39997 59.278882) - (xy 191.399972 59.278882) (xy 191.399975 59.278884) (xy 191.479465 59.304712) (xy 191.587173 59.339709) - (xy 191.781578 59.3705) (xy 191.781583 59.3705) (xy 191.978422 59.3705) (xy 192.172826 59.339709) - (xy 192.207345 59.328493) (xy 192.360025 59.278884) (xy 192.535405 59.189524) (xy 192.694646 59.073828) - (xy 192.792319 58.976155) (xy 192.853642 58.94267) (xy 192.923334 58.947654) (xy 192.967681 58.976155) - (xy 193.065354 59.073828) (xy 193.224595 59.189524) (xy 193.235908 59.195288) (xy 193.39997 59.278882) - (xy 193.399972 59.278882) (xy 193.399975 59.278884) (xy 193.479465 59.304712) (xy 193.587173 59.339709) - (xy 193.781578 59.3705) (xy 193.781583 59.3705) (xy 193.978422 59.3705) (xy 194.172826 59.339709) - (xy 194.207345 59.328493) (xy 194.360025 59.278884) (xy 194.535405 59.189524) (xy 194.694646 59.073828) - (xy 194.792319 58.976155) (xy 194.853642 58.94267) (xy 194.923334 58.947654) (xy 194.967681 58.976155) - (xy 195.065354 59.073828) (xy 195.224595 59.189524) (xy 195.235908 59.195288) (xy 195.39997 59.278882) - (xy 195.399972 59.278882) (xy 195.399975 59.278884) (xy 195.479465 59.304712) (xy 195.587173 59.339709) - (xy 195.781578 59.3705) (xy 195.781583 59.3705) (xy 195.978422 59.3705) (xy 196.172826 59.339709) - (xy 196.207345 59.328493) (xy 196.360025 59.278884) (xy 196.535405 59.189524) (xy 196.694646 59.073828) - (xy 196.792319 58.976155) (xy 196.853642 58.94267) (xy 196.923334 58.947654) (xy 196.967681 58.976155) - (xy 197.065354 59.073828) (xy 197.224595 59.189524) (xy 197.235908 59.195288) (xy 197.39997 59.278882) - (xy 197.399972 59.278882) (xy 197.399975 59.278884) (xy 197.479465 59.304712) (xy 197.587173 59.339709) - (xy 197.781578 59.3705) (xy 197.781583 59.3705) (xy 197.978422 59.3705) (xy 198.172826 59.339709) - (xy 198.207345 59.328493) (xy 198.360025 59.278884) (xy 198.535405 59.189524) (xy 198.694646 59.073828) - (xy 198.792319 58.976155) (xy 198.853642 58.94267) (xy 198.923334 58.947654) (xy 198.967681 58.976155) - (xy 199.065354 59.073828) (xy 199.224595 59.189524) (xy 199.235908 59.195288) (xy 199.39997 59.278882) - (xy 199.399972 59.278882) (xy 199.399975 59.278884) (xy 199.479465 59.304712) (xy 199.587173 59.339709) - (xy 199.781578 59.3705) (xy 199.781583 59.3705) (xy 199.978422 59.3705) (xy 200.172826 59.339709) - (xy 200.207345 59.328493) (xy 200.360025 59.278884) (xy 200.535405 59.189524) (xy 200.694646 59.073828) - (xy 200.792319 58.976155) (xy 200.853642 58.94267) (xy 200.923334 58.947654) (xy 200.967681 58.976155) - (xy 201.065354 59.073828) (xy 201.224595 59.189524) (xy 201.235908 59.195288) (xy 201.39997 59.278882) - (xy 201.399972 59.278882) (xy 201.399975 59.278884) (xy 201.479465 59.304712) (xy 201.587173 59.339709) - (xy 201.781578 59.3705) (xy 201.781583 59.3705) (xy 201.978422 59.3705) (xy 202.172826 59.339709) - (xy 202.207345 59.328493) (xy 202.360025 59.278884) (xy 202.535405 59.189524) (xy 202.694646 59.073828) - (xy 202.833828 58.934646) (xy 202.949524 58.775405) (xy 202.993955 58.688205) (xy 203.04193 58.637409) - (xy 203.10444 58.6205) (xy 204.34589 58.6205) (xy 204.345892 58.6205) (xy 204.473186 58.586392) - (xy 204.587314 58.5205) (xy 204.6805 58.427314) (xy 204.746392 58.313186) (xy 204.7805 58.185892) - (xy 204.7805 56.654108) (xy 204.746392 56.526814) (xy 204.6805 56.412686) (xy 204.587314 56.3195) - (xy 204.53025 56.286554) (xy 204.473187 56.253608) (xy 204.409539 56.236554) (xy 204.345892 56.2195) - (xy 204.345891 56.2195) (xy 204.10444 56.2195) (xy 204.037401 56.199815) (xy 203.993955 56.151795) - (xy 203.958048 56.081324) (xy 203.949524 56.064595) (xy 203.833828 55.905354) (xy 203.694646 55.766172) - (xy 203.535405 55.650476) (xy 203.360029 55.561117) (xy 203.172826 55.50029) (xy 202.978422 55.4695) - (xy 202.978417 55.4695) (xy 202.781583 55.4695) (xy 202.781578 55.4695) (xy 202.587173 55.50029) - (xy 202.39997 55.561117) (xy 202.224594 55.650476) (xy 202.178321 55.684096) (xy 202.065354 55.766172) - (xy 202.065352 55.766174) (xy 202.065351 55.766174) (xy 201.967681 55.863845) (xy 201.906358 55.89733) - (xy 201.836666 55.892346) (xy 201.792319 55.863845) (xy 201.694648 55.766174) (xy 201.694646 55.766172) - (xy 201.535405 55.650476) (xy 201.360029 55.561117) (xy 201.172826 55.50029) (xy 200.978422 55.4695) - (xy 200.978417 55.4695) (xy 200.781583 55.4695) (xy 200.781578 55.4695) (xy 200.587173 55.50029) - (xy 200.39997 55.561117) (xy 200.224594 55.650476) (xy 200.178321 55.684096) (xy 200.065354 55.766172) - (xy 200.065352 55.766174) (xy 200.065351 55.766174) (xy 199.967681 55.863845) (xy 199.906358 55.89733) - (xy 199.836666 55.892346) (xy 199.792319 55.863845) (xy 199.694648 55.766174) (xy 199.694646 55.766172) - (xy 199.535405 55.650476) (xy 199.360029 55.561117) (xy 199.172826 55.50029) (xy 198.978422 55.4695) - (xy 198.978417 55.4695) (xy 198.781583 55.4695) (xy 198.781578 55.4695) (xy 198.587173 55.50029) - (xy 198.39997 55.561117) (xy 198.224594 55.650476) (xy 198.178321 55.684096) (xy 198.065354 55.766172) - (xy 198.065352 55.766174) (xy 198.065351 55.766174) (xy 197.967681 55.863845) (xy 197.906358 55.89733) - (xy 197.836666 55.892346) (xy 197.792319 55.863845) (xy 197.694648 55.766174) (xy 197.694646 55.766172) - (xy 197.535405 55.650476) (xy 197.360029 55.561117) (xy 197.172826 55.50029) (xy 196.978422 55.4695) - (xy 196.978417 55.4695) (xy 196.781583 55.4695) (xy 196.781578 55.4695) (xy 196.587173 55.50029) - (xy 196.39997 55.561117) (xy 196.224594 55.650476) (xy 196.178321 55.684096) (xy 196.065354 55.766172) - (xy 196.065352 55.766174) (xy 196.065351 55.766174) (xy 195.967681 55.863845) (xy 195.906358 55.89733) - (xy 195.836666 55.892346) (xy 195.792319 55.863845) (xy 195.694648 55.766174) (xy 195.694646 55.766172) - (xy 195.535405 55.650476) (xy 195.360029 55.561117) (xy 195.172826 55.50029) (xy 194.978422 55.4695) - (xy 194.978417 55.4695) (xy 194.781583 55.4695) (xy 194.781578 55.4695) (xy 194.587173 55.50029) - (xy 194.39997 55.561117) (xy 194.224594 55.650476) (xy 194.178321 55.684096) (xy 194.065354 55.766172) - (xy 194.065352 55.766174) (xy 194.065351 55.766174) (xy 193.967681 55.863845) (xy 193.906358 55.89733) - (xy 193.836666 55.892346) (xy 193.792319 55.863845) (xy 193.694648 55.766174) (xy 193.694646 55.766172) - (xy 193.535405 55.650476) (xy 193.360029 55.561117) (xy 193.172826 55.50029) (xy 192.978422 55.4695) - (xy 192.978417 55.4695) (xy 192.781583 55.4695) (xy 192.781578 55.4695) (xy 192.587173 55.50029) - (xy 192.39997 55.561117) (xy 192.224594 55.650476) (xy 192.178321 55.684096) (xy 192.065354 55.766172) - (xy 192.065352 55.766174) (xy 192.065351 55.766174) (xy 191.926174 55.905351) (xy 191.926174 55.905352) - (xy 191.926172 55.905354) (xy 191.909301 55.928575) (xy 191.810476 56.064594) (xy 191.766045 56.151795) - (xy 191.71807 56.202591) (xy 191.65556 56.2195) (xy 190.414108 56.2195) (xy 190.286812 56.253608) - (xy 190.172686 56.3195) (xy 190.172683 56.319502) (xy 190.079502 56.412683) (xy 190.0795 56.412686) - (xy 190.013608 56.526812) (xy 189.9795 56.654108) (xy 127.9895 56.654108) (xy 127.9895 56.615597) - (xy 127.987633 56.603812) (xy 127.959964 56.429115) (xy 127.924348 56.319502) (xy 127.90162 56.249552) - (xy 127.901618 56.249549) (xy 127.901618 56.249547) (xy 127.815903 56.081324) (xy 127.803748 56.064594) - (xy 127.704927 55.928578) (xy 127.571422 55.795073) (xy 127.418675 55.684096) (xy 127.250452 55.598381) - (xy 127.125959 55.557931) (xy 127.068284 55.518493) (xy 127.041086 55.454134) (xy 127.053001 55.385288) - (xy 127.100245 55.333812) (xy 127.125959 55.322069) (xy 127.250448 55.28162) (xy 127.418675 55.195904) - (xy 127.571422 55.084927) (xy 127.704927 54.951422) (xy 127.815904 54.798675) (xy 127.90162 54.630448) - (xy 127.959964 54.450884) (xy 127.9895 54.264403) (xy 127.9895 54.075597) (xy 127.959964 53.889116) - (xy 127.90162 53.709552) (xy 127.901618 53.709549) (xy 127.901618 53.709547) (xy 127.845492 53.599394) - (xy 127.815904 53.541325) (xy 127.704927 53.388578) (xy 127.571422 53.255073) (xy 127.418675 53.144096) - (xy 127.250452 53.058381) (xy 127.070884 53.000035) (xy 126.909899 52.974538) (xy 126.884403 52.9705) - (xy 126.695597 52.9705) (xy 126.673167 52.974052) (xy 126.509115 53.000035) (xy 126.329547 53.058381) - (xy 126.161324 53.144096) (xy 126.008575 53.255075) (xy 125.875075 53.388575) (xy 125.764094 53.541326) - (xy 125.683983 53.698552) (xy 125.636009 53.749347) (xy 125.568188 53.766142) (xy 125.502053 53.743604) - (xy 125.458602 53.688889) (xy 125.449499 53.642261) (xy 125.449499 52.153128) (xy 125.443091 52.093517) - (xy 125.392796 51.958669) (xy 125.392795 51.958668) (xy 125.392793 51.958664) (xy 125.306547 51.843455) - (xy 125.306544 51.843452) (xy 125.191335 51.757206) (xy 125.191328 51.757202) (xy 125.056482 51.706908) - (xy 125.056483 51.706908) (xy 124.996883 51.700501) (xy 124.996881 51.7005) (xy 124.996873 51.7005) - (xy 124.996864 51.7005) (xy 123.503129 51.7005) (xy 123.503123 51.700501) (xy 123.443516 51.706908) - (xy 123.308671 51.757202) (xy 123.308664 51.757206) (xy 123.193455 51.843452) (xy 123.193452 51.843455) - (xy 123.107206 51.958664) (xy 123.107202 51.958671) (xy 123.056908 52.093517) (xy 123.054033 52.120263) - (xy 123.050501 52.153123) (xy 123.0505 52.153135) (xy 119.702826 52.153135) (xy 119.743409 52.001677) - (xy 119.7755 51.757927) (xy 119.7755 51.512073) (xy 119.743409 51.268323) (xy 119.697171 51.095759) - (xy 119.698834 51.025914) (xy 119.737996 50.968051) (xy 119.802225 50.940547) (xy 119.871127 50.952133) - (xy 119.892432 50.965294) (xy 119.977863 51.030847) (xy 119.990699 51.040696) (xy 120.186301 51.153627) - (xy 120.186304 51.153628) (xy 120.186309 51.153631) (xy 120.298882 51.200259) (xy 120.394971 51.240061) - (xy 120.613138 51.298519) (xy 120.837069 51.328) (xy 120.837076 51.328) (xy 121.062924 51.328) (xy 121.062931 51.328) - (xy 121.286862 51.298519) (xy 121.505029 51.240061) (xy 121.66906 51.172116) (xy 121.71369 51.153631) - (xy 121.713691 51.153629) (xy 121.713699 51.153627) (xy 121.909301 51.040696) (xy 122.08849 50.9032) - (xy 122.2482 50.74349) (xy 122.385696 50.564301) (xy 122.498627 50.368699) (xy 122.504642 50.354179) - (xy 122.539172 50.270814) (xy 122.585061 50.160029) (xy 122.643519 49.941862) (xy 122.673 49.717931) - (xy 122.673 49.492069) (xy 122.643519 49.268138) (xy 122.585061 49.049971) (xy 122.540436 48.942236) - (xy 122.498631 48.841309) (xy 122.498626 48.8413) (xy 122.483275 48.814711) (xy 122.385696 48.645699) - (xy 122.38569 48.645691) (xy 122.248201 48.466511) (xy 122.248195 48.466504) (xy 122.088495 48.306804) - (xy 122.088488 48.306798) (xy 121.909308 48.169309) (xy 121.909306 48.169307) (xy 121.909301 48.169304) - (xy 121.713699 48.056373) (xy 121.71369 48.056368) (xy 121.505029 47.969939) (xy 121.286858 47.91148) - (xy 121.06294 47.882001) (xy 121.062937 47.882) (xy 121.062931 47.882) (xy 120.837069 47.882) (xy 120.837063 47.882) - (xy 120.837059 47.882001) (xy 120.613141 47.91148) (xy 120.39497 47.969939) (xy 120.186309 48.056368) - (xy 120.1863 48.056373) (xy 120.06848 48.124396) (xy 119.990699 48.169304) (xy 119.990696 48.169305) - (xy 119.990691 48.169309) (xy 119.811511 48.306798) (xy 119.811504 48.306804) (xy 119.651804 48.466504) - (xy 119.651798 48.466511) (xy 119.529634 48.625719) (xy 119.473206 48.666922) (xy 119.40346 48.671077) - (xy 119.34254 48.636865) (xy 119.309787 48.575147) (xy 119.307268 48.551797) (xy 119.258007 44.626052) - (xy 119.276849 44.558775) (xy 119.329074 44.512361) (xy 119.381997 44.5005) (xy 121.279372 44.5005) - (xy 121.324483 44.504225) (xy 121.345021 44.5005) (xy 121.365892 44.5005) (xy 121.404686 44.490104) - (xy 121.414622 44.487875) (xy 121.454152 44.480707) (xy 121.473023 44.471794) (xy 121.493186 44.466392) - (xy 121.532388 44.443758) (xy 121.573315 44.42443) (xy 121.580721 44.418152) (xy 121.598896 44.405358) - (xy 121.607314 44.4005) (xy 121.635722 44.372091) (xy 121.643209 44.365196) (xy 126.996853 39.828211) - (xy 127.348859 39.529901) (xy 127.41273 39.501576) (xy 127.429028 39.5005) (xy 165.876 39.5005) - ) - ) - ) - (embedded_fonts no) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_prl b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_prl deleted file mode 100644 index b409a6a..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_prl +++ /dev/null @@ -1,144 +0,0 @@ -{ - "board": { - "active_layer": 0, - "active_layer_preset": "", - "auto_track_width": true, - "hidden_netclasses": [], - "hidden_nets": [], - "high_contrast_mode": 0, - "net_color_mode": 1, - "opacity": { - "images": 0.6, - "pads": 1.0, - "shapes": 1.0, - "tracks": 1.0, - "vias": 1.0, - "zones": 0.6 - }, - "prototype_zone_fills": false, - "selection_filter": { - "dimensions": true, - "footprints": true, - "graphics": true, - "keepouts": true, - "lockedItems": false, - "otherItems": true, - "pads": true, - "text": true, - "tracks": true, - "vias": true, - "zones": true - }, - "visible_items": [ - "vias", - "footprint_text", - "footprint_anchors", - "ratsnest", - "grid", - "footprints_front", - "footprints_back", - "footprint_values", - "footprint_references", - "tracks", - "drc_errors", - "drawing_sheet", - "bitmaps", - "pads", - "zones", - "drc_warnings", - "drc_exclusions", - "locked_item_shadows", - "conflict_shadows", - "shapes", - "board_outline_area", - "ly_points" - ], - "visible_layers": "ffffffff_ffffffff_ffffffff_ffffffff", - "zone_display_mode": 0 - }, - "git": { - "integration_disabled": false, - "repo_type": "", - "repo_username": "", - "ssh_key": "" - }, - "meta": { - "filename": "re-bba-rb.kicad_pcb.old.kicad_prl", - "version": 5 - }, - "net_inspector_panel": { - "col_hidden": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ], - "col_order": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11 - ], - "col_widths": [ - 162, - 147, - 91, - 67, - 91, - 91, - 91, - 71, - 91, - 91, - 91, - 91 - ], - "custom_group_rules": [], - "expanded_rows": [], - "filter_by_net_name": true, - "filter_by_netclass": true, - "filter_text": "", - "group_by_constraint": false, - "group_by_netclass": false, - "show_time_domain_details": false, - "show_unconnected_nets": false, - "show_zero_pad_nets": false, - "sort_ascending": true, - "sorting_column": 0 - }, - "open_jobsets": [], - "project": { - "files": [] - }, - "schematic": { - "hierarchy_collapsed": [], - "selection_filter": { - "graphics": true, - "images": true, - "labels": true, - "lockedItems": false, - "otherItems": true, - "pins": true, - "ruleAreas": true, - "symbols": true, - "text": true, - "wires": true - } - } -} diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_pro b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_pro deleted file mode 100644 index 7d56f8c..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pcb.old.kicad_pro +++ /dev/null @@ -1,753 +0,0 @@ -{ - "board": { - "3dviewports": [], - "design_settings": { - "defaults": { - "apply_defaults_to_fp_barcodes": false, - "apply_defaults_to_fp_dimensions": false, - "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": true, - "text_position": 0, - "units_format": 0 - }, - "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.8, - "height": 1.27, - "width": 2.54 - }, - "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": { - "border_display_style": 2, - "border_hatch_pitch": 0.5, - "corner_radius": 0.0, - "corner_smoothing": 0, - "fill_mode": 0, - "hatch_gap": 1.5, - "hatch_orientation": 0.0, - "hatch_smoothing_level": 0, - "hatch_smoothing_value": 0.1, - "hatch_thickness": 1.0, - "min_clearance": 0.5, - "min_island_area": 10.0, - "min_thickness": 0.25, - "pad_connection": 1, - "remove_islands": 0, - "thermal_relief_gap": 0.5, - "thermal_relief_spoke_width": 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", - "creepage": "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_filters_mismatch": "ignore", - "footprint_symbol_field_mismatch": "warning", - "footprint_symbol_mismatch": "warning", - "footprint_type_mismatch": "ignore", - "hole_clearance": "error", - "hole_to_hole": "warning", - "holes_co_located": "warning", - "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", - "mirrored_text_on_front_layer": "warning", - "missing_courtyard": "ignore", - "missing_footprint": "warning", - "missing_tuning_profile": "warning", - "net_conflict": "warning", - "nonmirrored_text_on_back_layer": "warning", - "npth_inside_courtyard": "error", - "padstack": "warning", - "pth_inside_courtyard": "error", - "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_on_edge_cuts": "error", - "text_thickness": "warning", - "through_hole_pad_without_hole": "error", - "too_many_vias": "error", - "track_angle": "error", - "track_dangling": "warning", - "track_not_centered_on_via": "ignore", - "track_on_post_machined_layer": "error", - "track_segment_length": "error", - "track_width": "error", - "tracks_crossing": "error", - "tuning_profile_track_geometries": "ignore", - "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_groove_width": 0.0, - "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.2, - "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_onpthpad": true, - "td_onroundshapesonly": false, - "td_onsmdpad": true, - "td_ontrackend": false, - "td_onvia": 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": { - "bom_rev": "", - "dist": "", - "distpn": "", - "internal_id": "", - "mfg": "", - "mpn": "", - "sch_revision": "" - }, - "layer_pairs": [], - "layer_presets": [], - "viewports": [] - }, - "boards": [], - "component_class_settings": { - "assignments": [], - "meta": { - "version": 0 - }, - "sheet_component_classes": { - "enabled": false - } - }, - "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", - "different_unit_footprint": "error", - "different_unit_net": "error", - "duplicate_reference": "error", - "duplicate_sheet_names": "error", - "endpoint_off_grid": "warning", - "extra_units": "error", - "field_name_whitespace": "warning", - "footprint_filter": "ignore", - "footprint_link_issues": "warning", - "four_way_junction": "ignore", - "ground_pin_not_ground": "warning", - "hier_label_mismatch": "error", - "isolated_pin_label": "warning", - "label_dangling": "error", - "label_multiple_wires": "warning", - "lib_symbol_issues": "warning", - "lib_symbol_mismatch": "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", - "same_local_global_label": "warning", - "similar_label_and_power": "warning", - "similar_labels": "warning", - "similar_power": "warning", - "simulation_model_issue": "ignore", - "single_global_label": "ignore", - "stacked_pin_name": "warning", - "unannotated": "error", - "unconnected_wire_endpoint": "warning", - "undefined_netclass": "error", - "unit_value_mismatch": "error", - "unresolved_variable": "error", - "wire_dangling": "error" - } - }, - "libraries": { - "pinned_footprint_libs": [], - "pinned_symbol_libs": [] - }, - "meta": { - "filename": "re-bba-rb.kicad_pro", - "version": 3 - }, - "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)", - "priority": 2147483647, - "schematic_color": "rgba(0, 0, 0, 0.000)", - "track_width": 0.2, - "tuning_profile": "", - "via_diameter": 0.6, - "via_drill": 0.3, - "wire_width": 6 - } - ], - "meta": { - "version": 5 - }, - "net_colors": null, - "netclass_assignments": null, - "netclass_patterns": [] - }, - "pcbnew": { - "last_paths": { - "idf": "", - "netlist": "", - "plot": "", - "specctra_dsn": "", - "vrml": "" - }, - "page_layout_descr_file": "" - }, - "schematic": { - "annotate_start_num": 0, - "annotation": { - "method": 0, - "sort_order": 0 - }, - "bom_export_filename": "${PROJECTNAME}.csv", - "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": false, - "label": "Qty", - "name": "${QUANTITY}", - "show": true - }, - { - "group_by": true, - "label": "Value", - "name": "Value", - "show": true - }, - { - "group_by": true, - "label": "DNP", - "name": "${DNP}", - "show": true - }, - { - "group_by": true, - "label": "Exclude from BOM", - "name": "${EXCLUDE_FROM_BOM}", - "show": true - }, - { - "group_by": true, - "label": "Exclude from Board", - "name": "${EXCLUDE_FROM_BOARD}", - "show": true - }, - { - "group_by": true, - "label": "Footprint", - "name": "Footprint", - "show": true - }, - { - "group_by": false, - "label": "Datasheet", - "name": "Datasheet", - "show": true - }, - { - "group_by": false, - "label": "Check_prices", - "name": "Check_prices", - "show": false - }, - { - "group_by": false, - "label": "Manufacturer", - "name": "Manufacturer", - "show": false - }, - { - "group_by": false, - "label": "MF", - "name": "MF", - "show": false - }, - { - "group_by": false, - "label": "MP", - "name": "MP", - "show": false - }, - { - "group_by": false, - "label": "Package", - "name": "Package", - "show": false - }, - { - "group_by": false, - "label": "Price", - "name": "Price", - "show": false - }, - { - "group_by": false, - "label": "Purchase-URL", - "name": "Purchase-URL", - "show": false - }, - { - "group_by": false, - "label": "SnapEDA_Link", - "name": "SnapEDA_Link", - "show": false - }, - { - "group_by": false, - "label": "Availability", - "name": "Availability", - "show": false - }, - { - "group_by": false, - "label": "Description", - "name": "Description", - "show": false - }, - { - "group_by": false, - "label": "#", - "name": "${ITEM_NUMBER}", - "show": false - } - ], - "filter_string": "", - "group_symbols": true, - "include_excluded_from_bom": true, - "name": "", - "sort_asc": true, - "sort_field": "Reference" - }, - "bus_aliases": {}, - "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": [], - "hop_over_size_choice": 0, - "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 - }, - "page_layout_descr_file": "", - "plot_directory": "", - "reuse_designators": true, - "subpart_first_id": 65, - "subpart_id_separator": 0, - "top_level_sheets": [ - { - "filename": "re-bba-rb.kicad_sch", - "name": "ReBBaRb", - "uuid": "dbb182a6-d579-468e-b98b-6f0950da9e3a" - } - ], - "used_designators": "#PWR0ffa1,J1-4,#PWR04cfa1,#PWR019b1,#PWR05fc1,#PWR0d1,#PWR0c80c1,R1-18,#PWR0670d1,L1,#PWR0d9d1,#PWR0e1,#PWR035b1,#PWR0Y1-2,#PWR0C1,C1-60,#FLG0USBVBUS1,#PWR08d1,#FLG0USBGND1,#PWR1-41,#PWR45,Y1-2,#FLG0GC3V1,#PWR0772b1,#PWR03d6c1,FB1-3,#FLG01V2ETH1,#PWR076f1,#PWR07dc1,#PWR091b1,#FLG012VEXI1,X1,U1-13,#PWR04fe1,#FLG0SP13V1,#PWR03bde1,#PWR06d1,#PWR0eff1,#PWR090e1,#PWR064c1-2,#PWR0AD1-4,#PWR0fa1-2,#FLG0VPHY1,D1,#PWR082e1,#PWR0b0ce1,#PWR0fb6f1,#PWR0df1,#PWR0SW1-2,#PWR050d1,#PWR0f3c1,#PWR0f1,#PWR0b4ee1,#PWR0c3b1,#PWR0cb1,#PWR09e1,#PWR0a5b1", - "variants": [] - }, - "sheets": [ - [ - "dbb182a6-d579-468e-b98b-6f0950da9e3a", - "ReBBaRb" - ], - [ - "69f32f10-d46b-43fd-9030-7f4135d40b78", - "Power" - ], - [ - "64033f5d-a512-44d7-9483-4c31ef84bd56", - "Usb Connector" - ], - [ - "73763384-ff95-4826-8da6-2de53070e62f", - "fpga" - ], - [ - "c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a", - "ethernet" - ], - [ - "1b071f68-b4ea-469c-942f-de06380c9077", - "exi" - ] - ], - "text_variables": {}, - "tuning_profiles": { - "meta": { - "version": 0 - }, - "tuning_profiles_impedance_geometric": [] - } -} diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_prl b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_prl deleted file mode 100644 index c23ace4..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_prl +++ /dev/null @@ -1,144 +0,0 @@ -{ - "board": { - "active_layer": 0, - "active_layer_preset": "", - "auto_track_width": true, - "hidden_netclasses": [], - "hidden_nets": [], - "high_contrast_mode": 0, - "net_color_mode": 1, - "opacity": { - "images": 0.6, - "pads": 1.0, - "shapes": 1.0, - "tracks": 1.0, - "vias": 1.0, - "zones": 0.6 - }, - "prototype_zone_fills": false, - "selection_filter": { - "dimensions": true, - "footprints": true, - "graphics": true, - "keepouts": true, - "lockedItems": false, - "otherItems": true, - "pads": true, - "text": true, - "tracks": true, - "vias": true, - "zones": true - }, - "visible_items": [ - "vias", - "footprint_text", - "footprint_anchors", - "ratsnest", - "grid", - "footprints_front", - "footprints_back", - "footprint_values", - "footprint_references", - "tracks", - "drc_errors", - "drawing_sheet", - "bitmaps", - "pads", - "zones", - "drc_warnings", - "drc_exclusions", - "locked_item_shadows", - "conflict_shadows", - "shapes", - "board_outline_area", - "ly_points" - ], - "visible_layers": "ffffffff_ffffffff_ffffffff_ffffffff", - "zone_display_mode": 0 - }, - "git": { - "integration_disabled": false, - "repo_type": "", - "repo_username": "", - "ssh_key": "" - }, - "meta": { - "filename": "re-bba-rb.kicad_prl", - "version": 5 - }, - "net_inspector_panel": { - "col_hidden": [ - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false, - false - ], - "col_order": [ - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11 - ], - "col_widths": [ - 162, - 147, - 91, - 67, - 91, - 91, - 91, - 71, - 91, - 91, - 91, - 91 - ], - "custom_group_rules": [], - "expanded_rows": [], - "filter_by_net_name": true, - "filter_by_netclass": true, - "filter_text": "", - "group_by_constraint": false, - "group_by_netclass": false, - "show_time_domain_details": false, - "show_unconnected_nets": false, - "show_zero_pad_nets": false, - "sort_ascending": true, - "sorting_column": 0 - }, - "open_jobsets": [], - "project": { - "files": [] - }, - "schematic": { - "hierarchy_collapsed": [], - "selection_filter": { - "graphics": true, - "images": true, - "labels": true, - "lockedItems": false, - "otherItems": true, - "pins": true, - "ruleAreas": true, - "symbols": true, - "text": true, - "wires": true - } - } -} diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pro b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pro deleted file mode 100644 index b7f28b7..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_pro +++ /dev/null @@ -1,753 +0,0 @@ -{ - "board": { - "3dviewports": [], - "design_settings": { - "defaults": { - "apply_defaults_to_fp_barcodes": false, - "apply_defaults_to_fp_dimensions": false, - "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": true, - "text_position": 0, - "units_format": 0 - }, - "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.8, - "height": 1.27, - "width": 2.54 - }, - "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": { - "border_display_style": 2, - "border_hatch_pitch": 0.5, - "corner_radius": 0.0, - "corner_smoothing": 0, - "fill_mode": 0, - "hatch_gap": 1.5, - "hatch_orientation": 0.0, - "hatch_smoothing_level": 0, - "hatch_smoothing_value": 0.1, - "hatch_thickness": 1.0, - "min_clearance": 0.5, - "min_island_area": 10.0, - "min_thickness": 0.25, - "pad_connection": 1, - "remove_islands": 0, - "thermal_relief_gap": 0.5, - "thermal_relief_spoke_width": 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", - "creepage": "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_filters_mismatch": "ignore", - "footprint_symbol_field_mismatch": "warning", - "footprint_symbol_mismatch": "warning", - "footprint_type_mismatch": "ignore", - "hole_clearance": "error", - "hole_to_hole": "warning", - "holes_co_located": "warning", - "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", - "mirrored_text_on_front_layer": "warning", - "missing_courtyard": "ignore", - "missing_footprint": "warning", - "missing_tuning_profile": "warning", - "net_conflict": "warning", - "nonmirrored_text_on_back_layer": "warning", - "npth_inside_courtyard": "error", - "padstack": "warning", - "pth_inside_courtyard": "error", - "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_on_edge_cuts": "error", - "text_thickness": "warning", - "through_hole_pad_without_hole": "error", - "too_many_vias": "error", - "track_angle": "error", - "track_dangling": "warning", - "track_not_centered_on_via": "ignore", - "track_on_post_machined_layer": "error", - "track_segment_length": "error", - "track_width": "error", - "tracks_crossing": "error", - "tuning_profile_track_geometries": "ignore", - "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_groove_width": 0.0, - "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.2, - "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_onpthpad": true, - "td_onroundshapesonly": false, - "td_onsmdpad": true, - "td_ontrackend": false, - "td_onvia": 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": { - "bom_rev": "", - "dist": "", - "distpn": "", - "internal_id": "", - "mfg": "", - "mpn": "", - "sch_revision": "" - }, - "layer_pairs": [], - "layer_presets": [], - "viewports": [] - }, - "boards": [], - "component_class_settings": { - "assignments": [], - "meta": { - "version": 0 - }, - "sheet_component_classes": { - "enabled": false - } - }, - "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", - "different_unit_footprint": "error", - "different_unit_net": "error", - "duplicate_reference": "error", - "duplicate_sheet_names": "error", - "endpoint_off_grid": "warning", - "extra_units": "error", - "field_name_whitespace": "warning", - "footprint_filter": "ignore", - "footprint_link_issues": "warning", - "four_way_junction": "ignore", - "ground_pin_not_ground": "warning", - "hier_label_mismatch": "error", - "isolated_pin_label": "warning", - "label_dangling": "error", - "label_multiple_wires": "warning", - "lib_symbol_issues": "warning", - "lib_symbol_mismatch": "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", - "same_local_global_label": "warning", - "similar_label_and_power": "warning", - "similar_labels": "warning", - "similar_power": "warning", - "simulation_model_issue": "ignore", - "single_global_label": "ignore", - "stacked_pin_name": "warning", - "unannotated": "error", - "unconnected_wire_endpoint": "warning", - "undefined_netclass": "error", - "unit_value_mismatch": "error", - "unresolved_variable": "error", - "wire_dangling": "error" - } - }, - "libraries": { - "pinned_footprint_libs": [], - "pinned_symbol_libs": [] - }, - "meta": { - "filename": "re-bba-rb.kicad_pro", - "version": 3 - }, - "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)", - "priority": 2147483647, - "schematic_color": "rgba(0, 0, 0, 0.000)", - "track_width": 0.2, - "tuning_profile": "", - "via_diameter": 0.6, - "via_drill": 0.3, - "wire_width": 6 - } - ], - "meta": { - "version": 5 - }, - "net_colors": null, - "netclass_assignments": null, - "netclass_patterns": [] - }, - "pcbnew": { - "last_paths": { - "idf": "", - "netlist": "", - "plot": "", - "specctra_dsn": "", - "vrml": "" - }, - "page_layout_descr_file": "" - }, - "schematic": { - "annotate_start_num": 0, - "annotation": { - "method": 0, - "sort_order": 0 - }, - "bom_export_filename": "${PROJECTNAME}.csv", - "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": false, - "label": "Qty", - "name": "${QUANTITY}", - "show": true - }, - { - "group_by": true, - "label": "Value", - "name": "Value", - "show": true - }, - { - "group_by": true, - "label": "DNP", - "name": "${DNP}", - "show": true - }, - { - "group_by": true, - "label": "Exclude from BOM", - "name": "${EXCLUDE_FROM_BOM}", - "show": true - }, - { - "group_by": true, - "label": "Exclude from Board", - "name": "${EXCLUDE_FROM_BOARD}", - "show": true - }, - { - "group_by": true, - "label": "Footprint", - "name": "Footprint", - "show": true - }, - { - "group_by": false, - "label": "Datasheet", - "name": "Datasheet", - "show": true - }, - { - "group_by": false, - "label": "Check_prices", - "name": "Check_prices", - "show": false - }, - { - "group_by": false, - "label": "Manufacturer", - "name": "Manufacturer", - "show": false - }, - { - "group_by": false, - "label": "MF", - "name": "MF", - "show": false - }, - { - "group_by": false, - "label": "MP", - "name": "MP", - "show": false - }, - { - "group_by": false, - "label": "Package", - "name": "Package", - "show": false - }, - { - "group_by": false, - "label": "Price", - "name": "Price", - "show": false - }, - { - "group_by": false, - "label": "Purchase-URL", - "name": "Purchase-URL", - "show": false - }, - { - "group_by": false, - "label": "SnapEDA_Link", - "name": "SnapEDA_Link", - "show": false - }, - { - "group_by": false, - "label": "Availability", - "name": "Availability", - "show": false - }, - { - "group_by": false, - "label": "Description", - "name": "Description", - "show": false - }, - { - "group_by": false, - "label": "#", - "name": "${ITEM_NUMBER}", - "show": false - } - ], - "filter_string": "", - "group_symbols": true, - "include_excluded_from_bom": true, - "name": "", - "sort_asc": true, - "sort_field": "Reference" - }, - "bus_aliases": {}, - "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": [], - "hop_over_size_choice": 0, - "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 - }, - "page_layout_descr_file": "", - "plot_directory": "", - "reuse_designators": true, - "subpart_first_id": 65, - "subpart_id_separator": 0, - "top_level_sheets": [ - { - "filename": "re-bba-rb.kicad_sch", - "name": "ReBBaRb", - "uuid": "dbb182a6-d579-468e-b98b-6f0950da9e3a" - } - ], - "used_designators": "#PWR0cb1,#PWR0b4ee1,#PWR0fb6f1,#PWR0df1,#FLG0VPHY1,#PWR0fa1-2,#PWR0c3b1,#PWR050d1,#PWR0f3c1,#FLG0USBVBUS1,C1-62,#PWR0b0ce1,#PWR082e1,D1,#PWR0AD1-4,#PWR035b1,#PWR0Y1-2,X1,U1-13,#FLG0USBGND1,#PWR090e1,#PWR0eff1,#PWR03bde1,#FLG0SP13V1,#PWR06d1,#FLG01V2ETH1,#PWR064c1-2,#PWR0C1,#PWR0c80c1,#PWR0d1,#PWR03d6c1,FB1-3,R1-18,#PWR0670d1,L1,#PWR04fe1,#PWR019b1,#PWR05fc1,#PWR1-43,#PWR45,Y1-2,#PWR0e1,#PWR0d9d1,#PWR09e1,#PWR0a5b1,#PWR0SW1-2,#PWR0f1,#PWR08d1,#PWR04cfa1,J1-4,#PWR0ffa1,#FLG0GC3V1,#PWR0772b1,#PWR076f1,#PWR07dc1,#PWR091b1,#FLG012VEXI1", - "variants": [] - }, - "sheets": [ - [ - "dbb182a6-d579-468e-b98b-6f0950da9e3a", - "ReBBaRb" - ], - [ - "69f32f10-d46b-43fd-9030-7f4135d40b78", - "Power" - ], - [ - "64033f5d-a512-44d7-9483-4c31ef84bd56", - "Usb Connector" - ], - [ - "73763384-ff95-4826-8da6-2de53070e62f", - "fpga" - ], - [ - "c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a", - "ethernet" - ], - [ - "1b071f68-b4ea-469c-942f-de06380c9077", - "exi" - ] - ], - "text_variables": {}, - "tuning_profiles": { - "meta": { - "version": 0 - }, - "tuning_profiles_impedance_geometric": [] - } -} diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_sch b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_sch deleted file mode 100644 index a830afa..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/re-bba-rb.kicad_sch +++ /dev/null @@ -1,1462 +0,0 @@ -(kicad_sch - (version 20260306) - (generator "eeschema") - (generator_version "10.0") - (uuid "dbb182a6-d579-468e-b98b-6f0950da9e3a") - (paper "A4") - (lib_symbols) - (junction - (at 176.53 41.91) - (diameter 0) - (color 0 0 0 0) - (uuid "2d36d892-999a-4380-8fcc-991c993351bf") - ) - (junction - (at 93.98 58.42) - (diameter 0) - (color 0 0 0 0) - (uuid "b28b5982-fa2b-49a5-ae1c-9688cc626bbd") - ) - (junction - (at 93.98 68.58) - (diameter 0) - (color 0 0 0 0) - (uuid "e60d73ee-b8f8-4b49-bcfa-7396a00ca9c3") - ) - (wire - (pts - (xy 63.5 52.07) (xy 69.85 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "05202dc4-f715-4f22-aa8f-0d6e7278fff8") - ) - (wire - (pts - (xy 161.29 72.39) (xy 189.23 72.39) - ) - (stroke - (width 0) - (type default) - ) - (uuid "06ba3ea7-fd68-4c69-b6ce-281c85d2e61e") - ) - (wire - (pts - (xy 161.29 144.78) (xy 189.23 144.78) - ) - (stroke - (width 0) - (type default) - ) - (uuid "09f18ed3-ab34-4ffb-a94d-3d4466c8dd76") - ) - (wire - (pts - (xy 161.29 135.89) (xy 189.23 135.89) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0b9129b1-18a8-4bf6-9e8f-8588e6a97671") - ) - (wire - (pts - (xy 55.88 78.74) (xy 104.14 78.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0ce4c492-d553-4d4d-80c5-7e148ad25999") - ) - (wire - (pts - (xy 184.15 118.11) (xy 189.23 118.11) - ) - (stroke - (width 0) - (type default) - ) - (uuid "0de4dc97-d5a1-460b-9ef6-d4895d3c5c0b") - ) - (wire - (pts - (xy 104.14 58.42) (xy 93.98 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "114b077b-33cf-4d39-a2b7-d8dc67f3874a") - ) - (wire - (pts - (xy 161.29 81.28) (xy 189.23 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "124ef423-34dc-44f5-ae58-070c57d6d71c") - ) - (wire - (pts - (xy 93.98 41.91) (xy 176.53 41.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "14451bb5-433e-41c0-9645-6f069a9c7328") - ) - (wire - (pts - (xy 161.29 138.43) (xy 189.23 138.43) - ) - (stroke - (width 0) - (type default) - ) - (uuid "159fa36e-bc4e-49f6-8a66-d75e83a1d7ba") - ) - (wire - (pts - (xy 161.29 115.57) (xy 189.23 115.57) - ) - (stroke - (width 0) - (type default) - ) - (uuid "1f25ed1f-11d0-4e38-bfcc-f2e51bfcc7fb") - ) - (wire - (pts - (xy 86.36 55.88) (xy 104.14 55.88) - ) - (stroke - (width 0) - (type default) - ) - (uuid "296c33e8-ae02-4e75-91f3-567917f04d09") - ) - (wire - (pts - (xy 161.29 66.04) (xy 189.23 66.04) - ) - (stroke - (width 0) - (type default) - ) - (uuid "2e36b95d-3198-4b7f-a2e8-0955d4345da4") - ) - (wire - (pts - (xy 161.29 125.73) (xy 189.23 125.73) - ) - (stroke - (width 0) - (type default) - ) - (uuid "323cbe4f-82bf-4066-a48d-bbd8e0e1cae2") - ) - (wire - (pts - (xy 161.29 60.96) (xy 189.23 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "36c52dde-12c9-42a9-8acd-8d4890f4f2e9") - ) - (wire - (pts - (xy 55.88 83.82) (xy 104.14 83.82) - ) - (stroke - (width 0) - (type default) - ) - (uuid "37181de3-ec58-4ba4-8614-549ac38d5e01") - ) - (wire - (pts - (xy 228.6 35.56) (xy 228.6 41.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "37de434c-bc8f-40e2-82f2-b4d2bf8ce35f") - ) - (wire - (pts - (xy 55.88 73.66) (xy 104.14 73.66) - ) - (stroke - (width 0) - (type default) - ) - (uuid "38dee9f6-b673-42f3-8e19-8caee5321adc") - ) - (wire - (pts - (xy 161.29 128.27) (xy 189.23 128.27) - ) - (stroke - (width 0) - (type default) - ) - (uuid "505baa96-f0df-4e94-b8a8-31fb38795b79") - ) - (wire - (pts - (xy 161.29 110.49) (xy 189.23 110.49) - ) - (stroke - (width 0) - (type default) - ) - (uuid "54fdb2dd-6318-478e-b0ed-47815ee674bd") - ) - (wire - (pts - (xy 86.36 58.42) (xy 93.98 58.42) - ) - (stroke - (width 0) - (type default) - ) - (uuid "555ef949-bf30-4509-9eb3-0075f3731bfe") - ) - (wire - (pts - (xy 161.29 123.19) (xy 189.23 123.19) - ) - (stroke - (width 0) - (type default) - ) - (uuid "58e6c5f6-9603-4ace-806d-ae542442f673") - ) - (wire - (pts - (xy 93.98 68.58) (xy 93.98 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "621ea535-b369-4ea3-ace0-6d48cabf1575") - ) - (wire - (pts - (xy 161.29 107.95) (xy 189.23 107.95) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6974e86a-0004-4fe6-a43c-5ae97d8d2746") - ) - (wire - (pts - (xy 161.29 63.5) (xy 189.23 63.5) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6f3a5737-2a07-4764-b2cc-9675a60e33ae") - ) - (wire - (pts - (xy 55.88 81.28) (xy 104.14 81.28) - ) - (stroke - (width 0) - (type default) - ) - (uuid "6f9b6180-6233-4245-aea8-6336ffe9390e") - ) - (wire - (pts - (xy 93.98 58.42) (xy 93.98 41.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "7ebf1168-4305-4a52-a725-7dadc73dd46e") - ) - (wire - (pts - (xy 69.85 54.61) (xy 67.31 54.61) - ) - (stroke - (width 0) - (type default) - ) - (uuid "84ba977c-8fd3-406a-8543-c60a73c269c7") - ) - (wire - (pts - (xy 176.53 41.91) (xy 189.23 41.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8ade22d3-6a65-4848-aae1-5cf7f952006f") - ) - (wire - (pts - (xy 67.31 54.61) (xy 67.31 35.56) - ) - (stroke - (width 0) - (type default) - ) - (uuid "8f76d9ad-2478-4cab-b325-970671a65064") - ) - (wire - (pts - (xy 55.88 71.12) (xy 63.5 71.12) - ) - (stroke - (width 0) - (type default) - ) - (uuid "9df168a5-de6c-41ef-b893-e4da80ef7a8d") - ) - (wire - (pts - (xy 161.29 68.58) (xy 189.23 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a46047b0-6928-4d48-b54f-dd5956b79e59") - ) - (wire - (pts - (xy 223.52 41.91) (xy 228.6 41.91) - ) - (stroke - (width 0) - (type default) - ) - (uuid "a81326d3-6785-4c96-9e60-d2c352979854") - ) - (wire - (pts - (xy 55.88 76.2) (xy 104.14 76.2) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ad00a74e-418e-42e2-8b4b-663457be137b") - ) - (wire - (pts - (xy 86.36 60.96) (xy 93.98 60.96) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ad0216f7-ccd8-48a0-bef7-7cf40f02f898") - ) - (wire - (pts - (xy 161.29 120.65) (xy 189.23 120.65) - ) - (stroke - (width 0) - (type default) - ) - (uuid "b847323a-41c7-40e8-bbca-cb0945107c98") - ) - (wire - (pts - (xy 63.5 71.12) (xy 63.5 52.07) - ) - (stroke - (width 0) - (type default) - ) - (uuid "bb4d5b32-16ed-4250-859d-6e8abb7df8d7") - ) - (wire - (pts - (xy 176.53 41.91) (xy 176.53 100.33) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c5ee5ae1-2c2f-4056-b2dc-5b20a21a3dac") - ) - (wire - (pts - (xy 161.29 105.41) (xy 189.23 105.41) - ) - (stroke - (width 0) - (type default) - ) - (uuid "c93755c9-bcac-4857-ba98-a4ef49eafb4d") - ) - (wire - (pts - (xy 161.29 74.93) (xy 189.23 74.93) - ) - (stroke - (width 0) - (type default) - ) - (uuid "cda8585b-4eaf-483e-af81-81481acd00b8") - ) - (wire - (pts - (xy 161.29 142.24) (xy 189.23 142.24) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d1f34f5f-ca2e-459f-8fe1-b4865c4b01d0") - ) - (wire - (pts - (xy 189.23 100.33) (xy 176.53 100.33) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d2c02b9a-c3df-47fa-b341-627cfd96266f") - ) - (wire - (pts - (xy 91.44 68.58) (xy 93.98 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d69b7b1f-fa5e-4dbc-8ec7-29f020f8d8d4") - ) - (wire - (pts - (xy 67.31 35.56) (xy 228.6 35.56) - ) - (stroke - (width 0) - (type default) - ) - (uuid "d6a87838-90cd-44a7-8f7b-9b80bc3a5263") - ) - (wire - (pts - (xy 161.29 130.81) (xy 189.23 130.81) - ) - (stroke - (width 0) - (type default) - ) - (uuid "de5419f5-cf2b-45f3-8519-68a80de233a5") - ) - (wire - (pts - (xy 104.14 68.58) (xy 93.98 68.58) - ) - (stroke - (width 0) - (type default) - ) - (uuid "df3c1fdc-9cc9-4f3f-a27f-8d4ec498a623") - ) - (wire - (pts - (xy 161.29 78.74) (xy 189.23 78.74) - ) - (stroke - (width 0) - (type default) - ) - (uuid "e70c5f39-14bf-40aa-8168-f831c248ca10") - ) - (wire - (pts - (xy 161.29 113.03) (xy 189.23 113.03) - ) - (stroke - (width 0) - (type default) - ) - (uuid "ef60e617-d9f6-490c-a255-71d8b3ec98a0") - ) - (wire - (pts - (xy 161.29 133.35) (xy 189.23 133.35) - ) - (stroke - (width 0) - (type default) - ) - (uuid "f8622745-9fb7-40b0-b2ba-6e850a2762dd") - ) - (label "GC_ON" - (at 184.15 118.11 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "3e7cef50-7c26-4c4a-be2a-e95a378b400e") - ) - (label "GC_ON" - (at 91.44 68.58 180) - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - (uuid "89e3bad2-38f8-4cc5-a100-2a9967bbcf5a") - ) - (sheet - (at 25.88 63.725) - (size 30 35.56) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (stroke - (width 0.1524) - (type solid) - ) - (fill - (color 0 0 0 0) - ) - (uuid "1b071f68-b4ea-469c-942f-de06380c9077") - (property "Sheetname" "exi" - (at 25.88 63.015 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Sheetfile" "exi.kicad_sch" - (at 25.88 99.885 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left top) - ) - ) - (pin "12V_EXI" output - (at 55.88 71.12 0) - (uuid "6bd4b2b5-cd51-4c70-8622-1c6bc42bc671") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "EXI_CLK" bidirectional - (at 55.88 73.66 0) - (uuid "76e976fd-815c-49e6-8779-a39b0917ce55") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "EXI_CS" bidirectional - (at 55.88 76.2 0) - (uuid "b5a0b3b6-fdc4-4479-ac19-bca29b9e023a") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "EXI_INT" bidirectional - (at 55.88 78.74 0) - (uuid "f65ca54f-9b48-402c-aab2-d995dcf4d3df") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "EXI_MISO" bidirectional - (at 55.88 81.28 0) - (uuid "0dcf5cdd-0199-4cd1-9b91-0a62b49304f2") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "EXI_MOSI" bidirectional - (at 55.88 83.82 0) - (uuid "4fb4e7d3-76e2-41e1-8083-ce5f6cb6c061") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a" - (page "6") - ) - ) - ) - ) - (sheet - (at 189.23 39.84) - (size 34.29 50.33) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (stroke - (width 0.1524) - (type solid) - ) - (fill - (color 0 0 0 0) - ) - (uuid "64033f5d-a512-44d7-9483-4c31ef84bd56") - (property "Sheetname" "Usb Connector" - (at 189.23 39.1284 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Sheetfile" "Usb Connector.kicad_sch" - (at 189.23 90.7546 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left top) - ) - ) - (pin "FLASH_SCK" bidirectional - (at 189.23 60.96 180) - (uuid "a0000001-0000-4000-8000-000000000001") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "FLASH_MOSI" bidirectional - (at 189.23 63.5 180) - (uuid "a0000001-0000-4000-8000-000000000002") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "FLASH_MISO" bidirectional - (at 189.23 66.04 180) - (uuid "a0000001-0000-4000-8000-000000000003") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "FLASH_CS" bidirectional - (at 189.23 68.58 180) - (uuid "a0000001-0000-4000-8000-000000000004") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "CRESET" bidirectional - (at 189.23 74.93 180) - (uuid "a0000001-0000-4000-8000-000000000005") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "CDONE" bidirectional - (at 189.23 72.39 180) - (uuid "a0000001-0000-4000-8000-000000000006") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "UART_TXD" bidirectional - (at 189.23 81.28 180) - (uuid "a0000001-0000-4000-8000-000000000007") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "UART_RXD" bidirectional - (at 189.23 78.74 180) - (uuid "a0000001-0000-4000-8000-000000000008") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "3V3" input - (at 189.23 41.91 180) - (uuid "78b1f969-1a5f-4d93-b27f-58ad798aa630") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "USB_3V3" output - (at 223.52 41.91 0) - (uuid "736f9d5b-93e5-42ca-a182-506fff1209cb") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a" - (page "3") - ) - ) - ) - ) - (sheet - (at 69.85 48.26) - (size 16.51 15.24) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (stroke - (width 0.1524) - (type solid) - ) - (fill - (color 0 0 0 0) - ) - (uuid "69f32f10-d46b-43fd-9030-7f4135d40b78") - (property "Sheetname" "Power" - (at 69.85 47.5484 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Sheetfile" "Power.kicad_sch" - (at 69.85 63.8306 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left top) - ) - ) - (pin "12V_EXI" input - (at 69.85 52.07 180) - (uuid "7a9da303-8e0f-4012-80f6-fe45114a8362") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "1V2" output - (at 86.36 55.88 0) - (uuid "ac3e96a7-dd93-44ed-a155-c8864fb14aa4") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "3V3" output - (at 86.36 58.42 0) - (uuid "23173366-577b-4933-9ea2-d250c3a782ab") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "USB_3V3" input - (at 69.85 54.61 180) - (uuid "d4136633-49b9-4526-8e74-d8582904d17c") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "GC_ON" output - (at 86.36 60.96 0) - (uuid "bf599086-aab7-417c-a958-a07930d770aa") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a" - (page "2") - ) - ) - ) - ) - (sheet - (at 104.14 53.34) - (size 57.15 94.615) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (stroke - (width 0.1524) - (type solid) - ) - (fill - (color 0 0 0 0) - ) - (uuid "73763384-ff95-4826-8da6-2de53070e62f") - (property "Sheetname" "fpga" - (at 104.14 52.6284 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Sheetfile" "Fpga.kicad_sch" - (at 104.14 148.5396 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left top) - ) - ) - (pin "1V2" input - (at 104.14 55.88 180) - (uuid "1e2763a0-5c8d-44c1-81c6-6b0e109469cc") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "3V3" input - (at 104.14 58.42 180) - (uuid "4360c30c-6cca-401f-ba1b-cfab3f83bb04") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "CDONE" output - (at 161.29 72.39 0) - (uuid "ddaec6fd-dd3b-4889-8cdb-744bc9d2ddf1") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "CRESET" input - (at 161.29 74.93 0) - (uuid "d4c67d76-f476-4bab-8720-d6e1572f1ab2") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_A0" bidirectional - (at 161.29 144.78 0) - (uuid "44d466b6-02a3-4cec-b52f-6b0421d4c303") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_A1" bidirectional - (at 161.29 142.24 0) - (uuid "5829606a-0002-403b-b1ed-48305e5c8b93") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_CS" bidirectional - (at 161.29 107.95 0) - (uuid "ea8aa299-55e4-4158-a143-ced0cca1463e") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D0" bidirectional - (at 161.29 138.43 0) - (uuid "1f1fc4cf-77b3-4057-a109-c6220ffae38a") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D1" bidirectional - (at 161.29 135.89 0) - (uuid "02b78652-a479-4a3e-88b0-82f532e3625b") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D2" bidirectional - (at 161.29 133.35 0) - (uuid "771bfa70-a6c3-4376-9c80-4ab52a23af50") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D3" bidirectional - (at 161.29 130.81 0) - (uuid "e33f4fb3-9e87-4511-80f7-ad0d287f71b6") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D4" bidirectional - (at 161.29 128.27 0) - (uuid "6af4ffed-962b-47b5-a77f-ab327ba03fdf") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D5" bidirectional - (at 161.29 125.73 0) - (uuid "5794bf5d-2908-435f-b24d-239531ab75b5") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D6" bidirectional - (at 161.29 123.19 0) - (uuid "462fd3cc-4f88-4bb4-87fd-d33f6c7cfe62") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_D7" bidirectional - (at 161.29 120.65 0) - (uuid "f32c533a-6062-4962-a986-d0d5eed31b79") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_INT" bidirectional - (at 161.29 105.41 0) - (uuid "b09b1f25-8ab9-4dd0-83c7-83017d65f459") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_RD" bidirectional - (at 161.29 113.03 0) - (uuid "899fc5cc-697b-4b5a-92fb-4becce1f44d4") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_RST" bidirectional - (at 161.29 115.57 0) - (uuid "005b40f7-6bfd-4886-a5a0-3b9202ff0cb8") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "ETH_WR" bidirectional - (at 161.29 110.49 0) - (uuid "62366d0d-2f70-443e-9da1-94b26c3e0acb") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "FLASH_CS" bidirectional - (at 161.29 68.58 0) - (uuid "4faefdf5-7652-48a4-a8f5-e4037f7fe51e") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "FLASH_MISO" bidirectional - (at 161.29 66.04 0) - (uuid "d92b445f-5ca1-4401-8f3f-1e65b1198296") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "FLASH_MOSI" bidirectional - (at 161.29 63.5 0) - (uuid "d4922f63-0545-4867-8b16-ebaa6a92eec3") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "FLASH_SCK" bidirectional - (at 161.29 60.96 0) - (uuid "9f99a108-a3cf-464b-a6c7-2024fe1b8853") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "UART_RXD" bidirectional - (at 161.29 78.74 0) - (uuid "869542a8-9ab6-405e-bec0-03f9ddc5eb10") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "UART_TXD" bidirectional - (at 161.29 81.28 0) - (uuid "7c7a69c1-ea1d-4402-a919-516d0e23a320") - (effects - (font - (size 1.27 1.27) - ) - (justify right) - ) - ) - (pin "EXI_CLK" bidirectional - (at 104.14 73.66 180) - (uuid "514413c0-fdff-4bc5-95cf-80dd6045c9f5") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "EXI_CS" bidirectional - (at 104.14 76.2 180) - (uuid "3f4d7e84-8734-42eb-8d69-dad060f3caf3") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "EXI_INT" bidirectional - (at 104.14 78.74 180) - (uuid "654daf72-172b-4e88-8ed3-5e82aec2e82a") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "EXI_MISO" bidirectional - (at 104.14 81.28 180) - (uuid "0979d259-b2b8-44f3-968b-ffbc5fbcbaaa") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "EXI_MOSI" bidirectional - (at 104.14 83.82 180) - (uuid "5f9986c7-d126-40ae-8e10-3ed93f86746d") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "GC_ON" input - (at 104.14 68.58 180) - (uuid "fe0c8192-b359-4b87-8466-fc926592b0e9") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a" - (page "4") - ) - ) - ) - ) - (sheet - (at 189.23 96.52) - (size 34.925 61.976) - (exclude_from_sim no) - (in_bom yes) - (on_board yes) - (dnp no) - (fields_autoplaced yes) - (stroke - (width 0.1524) - (type solid) - ) - (fill - (color 0 0 0 0) - ) - (uuid "c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a") - (property "Sheetname" "ethernet" - (at 189.23 95.8084 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left bottom) - ) - ) - (property "Sheetfile" "ethernet.kicad_sch" - (at 189.23 159.0806 0) - (show_name no) - (do_not_autoplace no) - (effects - (font - (size 1.27 1.27) - ) - (justify left top) - ) - ) - (pin "3V3" input - (at 189.23 100.33 180) - (uuid "52b79b33-5390-466b-b393-0698ebd58d9b") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_A0" bidirectional - (at 189.23 144.78 180) - (uuid "56267823-d9e3-46dd-bd0f-512b9c0af160") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_A1" bidirectional - (at 189.23 142.24 180) - (uuid "3dc07188-465d-4e3c-bf76-af5202a16e09") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_CS" bidirectional - (at 189.23 107.95 180) - (uuid "075e6113-8820-4b0a-b7bb-4b17c2cf48c7") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D0" bidirectional - (at 189.23 138.43 180) - (uuid "ab6c73ff-4e54-4639-8a5a-dfa2d9c26fce") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D1" bidirectional - (at 189.23 135.89 180) - (uuid "eb12267d-98fa-4600-a486-8954aa5841df") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D2" bidirectional - (at 189.23 133.35 180) - (uuid "a6d09874-9a9f-4e58-a7b7-e748e0ddc49f") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D3" bidirectional - (at 189.23 130.81 180) - (uuid "c5e77452-b787-4bc7-8f97-53577daa8529") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D4" bidirectional - (at 189.23 128.27 180) - (uuid "e1ffd641-f9c6-4d85-8888-00ce992da7b8") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D5" bidirectional - (at 189.23 125.73 180) - (uuid "42745b53-9a4a-4e6f-a96c-660414f0ba1f") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D6" bidirectional - (at 189.23 123.19 180) - (uuid "6f86fbdd-1e23-4bf0-b17b-731b865257aa") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_D7" bidirectional - (at 189.23 120.65 180) - (uuid "2cccaade-2217-4aa3-80d0-cc1892ca1c44") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_INT" bidirectional - (at 189.23 105.41 180) - (uuid "7bdcd695-6bb7-4109-adc3-b3ce413c6454") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_RD" bidirectional - (at 189.23 113.03 180) - (uuid "129f11e5-37e5-45e9-93e0-9da89221a8f6") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_RST" bidirectional - (at 189.23 115.57 180) - (uuid "00a7f84f-ab08-45a9-a2ed-d5a84c3f1800") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "ETH_WR" bidirectional - (at 189.23 110.49 180) - (uuid "6817cb4d-4e8a-4711-a1ce-bee999f530b9") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (pin "GC_ON" input - (at 189.23 118.11 180) - (uuid "3d66bc76-2b95-4bd3-8acd-c2050ec1b13c") - (effects - (font - (size 1.27 1.27) - ) - (justify left) - ) - ) - (instances - (project "re-bba-rb" - (path "/dbb182a6-d579-468e-b98b-6f0950da9e3a" - (page "5") - ) - ) - ) - ) - (sheet_instances - (path "/" - (page "1") - ) - ) - (embedded_fonts no) -) diff --git a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/sym-lib-table b/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/sym-lib-table deleted file mode 100644 index 57a35b1..0000000 --- a/hardware/re-bba-rb/_restore_backup_2026-07-04T18-08-36-324/sym-lib-table +++ /dev/null @@ -1,4 +0,0 @@ -(sym_lib_table - (version 7) - (lib (name "GameCube")(type "KiCad")(uri "${KIPRJMOD}/../sp1_test_plug/symbols/GameCube.kicad_sym")(options "")(descr "GameCube SP1 connector")) -) diff --git a/hardware/re-bba-rb/ethernet.kicad_sch b/hardware/re-bba-rb/ethernet.kicad_sch index 72a0f22..613d65f 100644 --- a/hardware/re-bba-rb/ethernet.kicad_sch +++ b/hardware/re-bba-rb/ethernet.kicad_sch @@ -714,7 +714,7 @@ (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -732,7 +732,7 @@ (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -781,7 +781,7 @@ (justify left bottom) ) ) - (property "Footprint" "HR911105A:HANRUN_HR911105A" + (property "Footprint" "hardware:HANRUN_HR911105A" (at 0 0 0) (show_name no) (do_not_autoplace no) @@ -7493,8 +7493,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 66.04 121.92 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7567,8 +7568,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 129.54 99.06 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7641,8 +7643,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 129.54 96.52 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7705,7 +7708,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps22810.pdf" (at 205.74 121.92 0) (hide yes) (show_name no) @@ -7716,8 +7719,42 @@ ) ) ) - (property "Description" "" + (property "Description" "2.7..18V, 2A, 79mohms On-Resistance Load Switch With Thermal Protection, SOT-23-6" (at 205.74 121.92 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "TPS22810DBVR" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C205990" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7805,8 +7842,8 @@ ) ) ) - (property "Description" "" - (at 81.28 187.96 0) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 57.912 194.818 90) (show_name no) (do_not_autoplace no) (effects @@ -7879,8 +7916,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 106.68 110.49 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7923,7 +7961,7 @@ (justify left) ) ) - (property "Value" "3.3uF" + (property "Value" "4.7uF" (at 143.51 45.72 0) (show_name no) (do_not_autoplace no) @@ -7955,8 +7993,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 146.05 46.99 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -7965,7 +8004,40 @@ ) ) ) - (property "Type" "X7R" + (property "MPN" "CL10A475KO8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C19666" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Type" "X5R" (at 146.05 46.99 0) (hide yes) (show_name no) @@ -8024,7 +8096,7 @@ (justify left) ) ) - (property "Value" "120R@100MHz" + (property "Value" "100R@100MHz" (at 132.08 46.99 0) (show_name no) (do_not_autoplace no) @@ -8056,8 +8128,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Ferrite bead, small symbol" (at 134.62 48.26 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "GZ2012D101TF" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Sunlord" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1015" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8114,7 +8220,7 @@ (justify left) ) ) - (property "Value" "10pF" + (property "Value" "18pF" (at 177.8 73.66 0) (show_name no) (do_not_autoplace no) @@ -8146,8 +8252,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 180.34 74.93 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402CG180J500NT" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8245,8 +8385,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 124.46 29.21 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8321,8 +8462,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 97.79 40.64 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8420,8 +8595,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 81.28 104.14 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8496,7 +8672,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 78.74 177.8 0) (show_name no) (do_not_autoplace no) @@ -8506,6 +8682,39 @@ ) ) ) + (property "MPN" "0402WGF3300TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25104" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "5%" (at 78.74 177.8 0) (hide yes) @@ -8584,8 +8793,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 104.14 48.26 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8660,8 +8870,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 57.15 135.89 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8759,8 +9003,9 @@ ) ) ) - (property "Description" "" - (at 81.28 157.48 0) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 52.578 151.13 90) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8833,8 +9078,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 92.71 21.59 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -8909,8 +9155,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 120.65 40.64 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9023,6 +9303,28 @@ ) ) ) + (property "MPN" "W5100S-L" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C194673" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Manufacturer" "WIZnet" (at 109.22 129.54 0) (hide yes) @@ -9239,8 +9541,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 69.85 21.59 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9316,8 +9619,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 181.61 119.38 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9417,8 +9754,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 69.85 25.4 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9518,8 +9889,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 73.66 48.26 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9619,7 +10024,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 173.99 91.44 0) (show_name no) (do_not_autoplace no) @@ -9629,6 +10034,39 @@ ) ) ) + (property "MPN" "0402WGF1004TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C26083" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "5%" (at 173.99 91.44 0) (hide yes) @@ -9707,8 +10145,9 @@ ) ) ) - (property "Description" "" - (at 205.74 129.54 0) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 189.484 144.526 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -9798,6 +10237,39 @@ (justify bottom) ) ) + (property "MPN" "HR911105A" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "HANRUN" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12074" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "MF" "hanrun" (at 123.19 154.94 0) (hide yes) @@ -10044,7 +10516,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 85.09 104.14 0) (show_name no) (do_not_autoplace no) @@ -10054,6 +10526,39 @@ ) ) ) + (property "MPN" "0402WGF1242TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C11692" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 85.09 104.14 0) (hide yes) @@ -10134,8 +10639,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Four pin crystal, GND on pins 2 and 4" (at 173.99 81.28 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "X322525MOB4SI" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "YXC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C9006" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10283,8 +10822,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 73.66 52.07 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10359,7 +10899,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 78.74 165.1 0) (show_name no) (do_not_autoplace no) @@ -10369,6 +10909,39 @@ ) ) ) + (property "MPN" "0402WGF3300TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25104" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "5%" (at 78.74 165.1 0) (hide yes) @@ -10449,8 +11022,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 104.14 25.4 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10520,6 +11127,7 @@ ) (property "Value" "GND" (at 128.778 40.642 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10548,8 +11156,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 124.46 40.64 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10622,8 +11231,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 104.14 21.59 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10696,8 +11306,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 173.99 86.36 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10770,8 +11381,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 88.9 60.96 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10846,8 +11458,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 92.71 25.4 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -10945,8 +11591,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 129.54 104.14 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11019,8 +11666,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 181.61 123.19 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11093,8 +11741,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 81.28 21.59 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11167,8 +11816,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 93.98 40.64 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11243,8 +11893,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 81.28 25.4 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11342,8 +12026,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 167.64 71.12 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11416,8 +12101,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 57.15 129.54 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11490,8 +12176,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 180.34 71.12 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11534,7 +12221,7 @@ (justify left) ) ) - (property "Value" "10pF" + (property "Value" "18pF" (at 165.1 73.66 0) (show_name no) (do_not_autoplace no) @@ -11566,8 +12253,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 167.64 74.93 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402CG180J500NT" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11668,8 +12389,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 66.04 125.73 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11769,8 +12524,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 120.65 29.21 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11868,8 +12657,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 146.05 43.18 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -11942,8 +12732,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 111.76 110.49 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects diff --git a/hardware/re-bba-rb/exi.kicad_sch b/hardware/re-bba-rb/exi.kicad_sch index 323b4f0..1ed3905 100644 --- a/hardware/re-bba-rb/exi.kicad_sch +++ b/hardware/re-bba-rb/exi.kicad_sch @@ -286,7 +286,7 @@ (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -304,7 +304,7 @@ (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -1136,8 +1136,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 62.23 86.36 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1212,8 +1213,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Polarized capacitor" (at 96.52 86.36 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "VZH101M1ETR-0607" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Lelon" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C311617" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1311,8 +1346,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 62.23 91.44 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1387,8 +1423,42 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 68.58 76.2 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1475,8 +1545,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 74.93 101.6 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1549,8 +1620,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 74.93 104.14 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1580,7 +1652,7 @@ (in_bom yes) (on_board yes) (in_pos_files yes) - (dnp no) + (dnp yes) (uuid "e1d71023-db8e-47ed-9ae2-d0237788b46a") (property "Reference" "J3" (at 49.53 72.136 0) @@ -1604,7 +1676,7 @@ (justify left) ) ) - (property "Footprint" "gc:SP1 BoardConnector" + (property "Footprint" "hardware:SP1 BoardConnector" (at 60.96 88.9 0) (hide yes) (show_name no) @@ -1732,8 +1804,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 96.52 95.25 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -1806,8 +1879,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 74.93 78.74 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects diff --git a/hardware/re-bba-rb/fp-lib-table b/hardware/re-bba-rb/fp-lib-table new file mode 100644 index 0000000..a8b21db --- /dev/null +++ b/hardware/re-bba-rb/fp-lib-table @@ -0,0 +1,5 @@ +(fp_lib_table + (version 7) + (lib (name "hardware") (type "KiCad") (uri "${KIPRJMOD}/..") (options "") (descr "")) + (lib (name "sp1_test_plug") (type "KiCad") (uri "${KIPRJMOD}/../sp1_test_plug") (options "") (descr "")) +) diff --git a/hardware/re-bba-rb/power.kicad_sch b/hardware/re-bba-rb/power.kicad_sch index 4fb52a4..ea91ec7 100644 --- a/hardware/re-bba-rb/power.kicad_sch +++ b/hardware/re-bba-rb/power.kicad_sch @@ -442,7 +442,7 @@ (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -460,7 +460,7 @@ (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" + (name "" (effects (font (size 1.27 1.27) @@ -950,7 +950,7 @@ (justify left bottom) ) ) - (property "Footprint" "TPS562201DDCR:SOT95P280X110-6N" + (property "Footprint" "hardware:SOT95P280X110-6N" (at 0 0 0) (show_name no) (do_not_autoplace no) @@ -1994,7 +1994,7 @@ (uuid "ffb6ac39-6c86-4f59-ad05-b5a1374fd30d") ) (label "12V_EXI" - (at 74.93 67.31 0) + (at 71.12 62.23 0) (effects (font (size 1.27 1.27) @@ -2213,7 +2213,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 151.13 91.44 0) (hide yes) (show_name no) @@ -2224,6 +2224,39 @@ ) ) ) + (property "MPN" "CL31A226KAHNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12891" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 151.13 91.44 0) (hide yes) @@ -2235,7 +2268,7 @@ ) ) ) - (property "V" "10V" + (property "V" "25V" (at 151.13 91.44 0) (hide yes) (show_name no) @@ -2316,7 +2349,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 82.55 71.12 0) (hide yes) (show_name no) @@ -2327,6 +2360,39 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 82.55 71.12 0) (hide yes) @@ -2419,7 +2485,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 60.96 26.67 0) (hide yes) (show_name no) @@ -2430,6 +2496,39 @@ ) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 60.96 26.67 0) (hide yes) @@ -2522,7 +2621,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 82.55 27.94 0) (hide yes) (show_name no) @@ -2533,6 +2632,39 @@ ) ) ) + (property "MPN" "0402WGF2003TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25764" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 82.55 27.94 0) (hide yes) @@ -2561,7 +2693,7 @@ ) (symbol (lib_id "Device:C") - (at 74.93 71.12 0) + (at 71.12 66.04 0) (unit 1) (body_style 1) (exclude_from_sim no) @@ -2571,7 +2703,7 @@ (dnp no) (uuid "17d4e916-c91e-4b00-87a8-a49e744912b2") (property "Reference" "C3" - (at 77.47 69.85 0) + (at 73.66 64.77 0) (show_name no) (do_not_autoplace no) (effects @@ -2582,7 +2714,7 @@ ) ) (property "Value" "10uF" - (at 77.47 72.39 0) + (at 73.66 67.31 0) (show_name no) (do_not_autoplace no) (effects @@ -2593,7 +2725,7 @@ ) ) (property "Footprint" "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2604,7 +2736,7 @@ ) ) (property "Datasheet" "" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2614,8 +2746,42 @@ ) ) ) - (property "Description" "" - (at 74.93 71.12 0) + (property "Description" "Unpolarized capacitor" + (at 71.12 66.04 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "CL21A106KAYNNNE" + (at -3.81 -5.08 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at -3.81 -5.08 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15850" + (at -3.81 -5.08 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -2625,7 +2791,7 @@ ) ) (property "Type" "X5R" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2636,7 +2802,7 @@ ) ) (property "V" "25V" - (at 74.93 71.12 0) + (at 71.12 66.04 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2663,7 +2829,7 @@ ) (symbol (lib_id "power:GND") - (at 74.93 74.93 0) + (at 71.12 69.85 0) (unit 1) (body_style 1) (exclude_from_sim no) @@ -2673,7 +2839,7 @@ (dnp no) (uuid "2b6789c2-e304-45d0-ae60-2f8a65837eaf") (property "Reference" "#PWR0C01" - (at 74.93 78.74 0) + (at 71.12 73.66 0) (hide yes) (show_name no) (do_not_autoplace no) @@ -2684,7 +2850,7 @@ ) ) (property "Value" "GND" - (at 74.93 78.74 0) + (at 71.12 73.66 0) (show_name no) (do_not_autoplace no) (effects @@ -2694,7 +2860,7 @@ ) ) (property "Footprint" "" - (at 74.93 74.93 0) + (at 71.12 69.85 0) (show_name no) (do_not_autoplace no) (effects @@ -2704,7 +2870,7 @@ ) ) (property "Datasheet" "" - (at 74.93 74.93 0) + (at 71.12 69.85 0) (show_name no) (do_not_autoplace no) (effects @@ -2713,8 +2879,9 @@ ) ) ) - (property "Description" "" - (at 74.93 74.93 0) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 71.12 69.85 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects @@ -2757,7 +2924,7 @@ (justify left) ) ) - (property "Value" "2.2uH" + (property "Value" "3.3uH" (at 142.494 89.154 90) (show_name no) (do_not_autoplace no) @@ -2790,7 +2957,51 @@ ) ) ) - (property "Description" "" + (property "Description" "Inductor" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MPN" "FNR4018S3R3MT" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "cjiang" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C167805" + (at 139.7 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Current" "2.9A" (at 139.7 87.63 0) (hide yes) (show_name no) @@ -2870,7 +3081,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 82.55 39.37 0) (hide yes) (show_name no) @@ -2948,7 +3159,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 82.55 35.56 0) (hide yes) (show_name no) @@ -2959,6 +3170,39 @@ ) ) ) + (property "MPN" "0402WGF1003TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25741" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 82.55 35.56 0) (hide yes) @@ -3029,7 +3273,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps2116.pdf" (at 115.57 34.29 0) (hide yes) (show_name no) @@ -3040,7 +3284,7 @@ ) ) ) - (property "Description" "" + (property "Description" "2 Channnels Power Mux with Manual and Priority Switchover, 1.6-5.5V Input Voltage, 2.5A Output Current, Ron 40 mOhm, SOT-583-8" (at 115.57 34.29 0) (hide yes) (show_name no) @@ -3051,6 +3295,39 @@ ) ) ) + (property "MPN" "TPS2116DRLR" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C3235557" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "1" (uuid "db164c94-fa66-4d3b-ab73-7cc62e4e6786") ) @@ -3139,7 +3416,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 62.23 83.82 0) (hide yes) (show_name no) @@ -3150,6 +3427,39 @@ ) ) ) + (property "MPN" "0402WGF3302TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25779" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 62.23 83.82 0) (hide yes) @@ -3231,7 +3541,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 27.94 26.67 0) (hide yes) (show_name no) @@ -3242,6 +3552,39 @@ ) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 27.94 26.67 0) (hide yes) @@ -3334,7 +3677,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 161.29 91.44 0) (hide yes) (show_name no) @@ -3345,6 +3688,39 @@ ) ) ) + (property "MPN" "CL31A226KAHNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12891" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 161.29 91.44 0) (hide yes) @@ -3356,7 +3732,7 @@ ) ) ) - (property "V" "10V" + (property "V" "25V" (at 161.29 91.44 0) (hide yes) (show_name no) @@ -3436,7 +3812,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 161.29 95.25 0) (hide yes) (show_name no) @@ -3514,7 +3890,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 128.27 25.4 0) (hide yes) (show_name no) @@ -3525,6 +3901,39 @@ ) ) ) + (property "MPN" "CL31A226KAHNNNE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C12891" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X5R" (at 128.27 25.4 0) (hide yes) @@ -3536,7 +3945,7 @@ ) ) ) - (property "V" "10V" + (property "V" "25V" (at 128.27 25.4 0) (hide yes) (show_name no) @@ -3616,7 +4025,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 171.45 95.25 0) (hide yes) (show_name no) @@ -3694,7 +4103,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 171.45 91.44 0) (hide yes) (show_name no) @@ -3705,6 +4114,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 171.45 91.44 0) (hide yes) @@ -3796,7 +4238,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 82.55 67.31 0) (hide yes) (show_name no) @@ -3885,6 +4327,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 102.87 45.72 0) (hide yes) @@ -3977,7 +4452,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 90.17 92.71 0) (hide yes) (show_name no) @@ -3988,6 +4463,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 90.17 92.71 0) (hide yes) @@ -3999,7 +4507,7 @@ ) ) ) - (property "V" "50V" + (property "V" "16V" (at 90.17 92.71 0) (hide yes) (show_name no) @@ -4079,7 +4587,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 133.35 100.33 0) (hide yes) (show_name no) @@ -4146,7 +4654,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" (at 45.72 25.4 0) (hide yes) (show_name no) @@ -4157,7 +4665,7 @@ ) ) ) - (property "Description" "" + (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.2V fixed positive output, SOT-23-5" (at 45.72 25.4 0) (hide yes) (show_name no) @@ -4168,6 +4676,39 @@ ) ) ) + (property "MPN" "AP2112K-1.2TRG1" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Diodes Incorporated" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C460310" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (pin "1" (uuid "d6901e1c-f0fb-461e-894d-dec2407a9d5f") ) @@ -4225,7 +4766,7 @@ (justify left) ) ) - (property "Footprint" "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (property "Footprint" "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (at 92.71 71.12 0) (hide yes) (show_name no) @@ -4247,7 +4788,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 92.71 71.12 0) (hide yes) (show_name no) @@ -4258,6 +4799,39 @@ ) ) ) + (property "MPN" "CC0603KRX7R9BB104" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "YAGEO" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C14663" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 92.71 71.12 0) (hide yes) @@ -4350,7 +4924,7 @@ ) ) ) - (property "Description" "" + (property "Description" "4.5 V to 17 V input, 2 A output, synchronous step-down converter in Eco-mode" (at 115.57 87.63 0) (hide yes) (show_name no) @@ -4361,6 +4935,171 @@ ) ) ) + (property "MPN" "TPS562201DDCR" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C90061" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "MF" "Texas Instruments" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "1.10 mm" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Package" "SOT-23-THN-6 Texas Instruments" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Price" "None" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=eda" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "STANDARD" "IPC-7351B" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "PARTREV" "A" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=snap" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MP" "TPS562201DDCR" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "Availability" "In Stock" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) + (property "MANUFACTURER" "Texas Instruments" + (at 115.57 87.63 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + (justify bottom) + ) + ) (pin "1" (uuid "99c0d954-326f-449b-97d7-f85d920b1f05") ) @@ -4454,6 +5193,39 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Type" "X7R" (at 102.87 22.86 0) (hide yes) @@ -4545,7 +5317,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 60.96 30.48 0) (hide yes) (show_name no) @@ -4622,7 +5394,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 115.57 46.99 0) (hide yes) (show_name no) @@ -4699,7 +5471,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 128.27 21.59 0) (hide yes) (show_name no) @@ -4776,7 +5548,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 62.23 95.25 0) (hide yes) (show_name no) @@ -4853,7 +5625,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 102.87 19.05 0) (hide yes) (show_name no) @@ -4930,7 +5702,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 92.71 67.31 0) (hide yes) (show_name no) @@ -5008,7 +5780,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 127 45.72 0) (hide yes) (show_name no) @@ -5019,6 +5791,39 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "5%" (at 127 45.72 0) (hide yes) @@ -5099,7 +5904,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 102.87 49.53 0) (hide yes) (show_name no) @@ -5177,7 +5982,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 62.23 91.44 0) (hide yes) (show_name no) @@ -5188,6 +5993,39 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (hide yes) + (show_name no) + (do_not_autoplace no) + (effects + (font + (size 1.27 1.27) + ) + ) + ) (property "Tolerance" "1%" (at 62.23 91.44 0) (hide yes) @@ -5268,7 +6106,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 45.72 35.56 0) (hide yes) (show_name no) @@ -5345,7 +6183,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 27.94 30.48 0) (hide yes) (show_name no) @@ -5422,7 +6260,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" (at 151.13 95.25 0) (hide yes) (show_name no) @@ -5497,8 +6335,9 @@ ) ) ) - (property "Description" "" + (property "Description" "Special symbol for telling ERC where power comes from" (at 105.41 29.21 0) + (hide yes) (show_name no) (do_not_autoplace no) (effects diff --git a/hardware/re-bba-rb/re-bba-rb.kicad_dru b/hardware/re-bba-rb/re-bba-rb.kicad_dru new file mode 100644 index 0000000..b044969 --- /dev/null +++ b/hardware/re-bba-rb/re-bba-rb.kicad_dru @@ -0,0 +1,10 @@ +(version 1) + +# SP1 edge-connector (J3): the gold fingers must reach the board edge to make +# contact in the GameCube slot, so copper-to-edge clearance is intentionally +# relaxed for this footprint only. This is by design, not a defect. +# Test BOTH items because the violated pair is (Edge.Cuts segment of J3) vs (pad +# of J3) - the edge segment is item A, the pad is item B. +(rule "SP1 gold fingers - allow copper to board edge" + (condition "A.memberOfFootprint('J3') || B.memberOfFootprint('J3')") + (constraint edge_clearance (min -0.5mm))) diff --git a/hardware/re-bba-rb/re-bba-rb.kicad_pcb b/hardware/re-bba-rb/re-bba-rb.kicad_pcb index e64709a..393c8bd 100644 --- a/hardware/re-bba-rb/re-bba-rb.kicad_pcb +++ b/hardware/re-bba-rb/re-bba-rb.kicad_pcb @@ -117,10 +117,10 @@ (layerselection 0x00000000_00000000_55555555_5755f5ff) (plot_on_all_layers_selection 0x00000000_00000000_00000000_00000000) (disableapertmacros no) - (usegerberextensions no) + (usegerberextensions yes) (usegerberattributes yes) (usegerberadvancedattributes yes) - (creategerberjobfile yes) + (creategerberjobfile no) (dashed_line_dash_ratio 12) (dashed_line_gap_ratio 3) (svgprecision 4) @@ -145,9 +145,9 @@ (subtractmaskfromsilk no) (outputformat 1) (mirror no) - (drillshape 1) + (drillshape 0) (scaleselection 1) - (outputdirectory "") + (outputdirectory "gerbers/") ) ) (footprint "Package_SO:SOIC-8_5.3x5.3mm_P1.27mm" @@ -157,7 +157,7 @@ (descr "SOIC, 8 Pin (JEITA/EIAJ ED-7311-19 variation 08-001-BBA and Atmel/Microchip, 208 mils width, https://www.jeita.or.jp/japanese/standard/book/ED-7311-19/#target/page_no=21, https://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23, https://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=162)") (tags "SOIC SO P-SOP SOP SOP-8 SO SO-8 8S2 S2AE/F K04-056 CASE-751BE SO8W 8-Pin-SOIC PSA W8-2 W8-4 W8MS-1 FPT-8P-M08") (property "Reference" "U10" - (at 0 -3.6 0) + (at -4.22 -3.5925 0) (layer "F.SilkS") (uuid "89dc6ecf-83c8-4c7b-8344-ef5d3876e109") (effects @@ -212,6 +212,45 @@ ) ) ) + (property "MPN" "W25Q32JVSSIQ" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd440b18-491b-42d2-86b9-e5f97a62ba4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Winbond" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2bb14799-45d4-42ae-8809-8c44765cacfa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C179173" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1edafb0d-dd11-4642-b16c-0527698319b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "*SOIC*5.3x5.3mm*P1.27mm*") (path "/73763384-ff95-4826-8da6-2de53070e62f/214cd199-1209-4a06-972b-71421959b7f3") (sheetname "/fpga/") @@ -464,7 +503,7 @@ (size 1.625 0.65) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) - (net "/Power/3V3") + (net "Net-(U10-~{WP}{slash}IO_{2})") (pinfunction "~{WP}/IO_{2}_3") (pintype "bidirectional") (uuid "1f4be114-2e80-4658-8328-5b5a20794b3a") @@ -504,7 +543,7 @@ (size 1.625 0.65) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) - (net "/Power/3V3") + (net "Net-(U10-~{HOLD}{slash}~{RESET}{slash}IO_{3})") (pinfunction "~{HOLD}/~{RESET}/IO_{3}_7") (pintype "bidirectional") (uuid "184126b7-b85d-431f-83b1-33f506936199") @@ -532,15 +571,14 @@ ) ) ) - (footprint "Package_TO_SOT_SMD:SOT-23-5" - (placed yes) + (footprint "Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm" (layer "F.Cu") (uuid "1382341e-8291-4297-9dde-2ef38214694b") - (at 153.04 56.14 90) - (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") - (tags "SOT TO_SOT_SMD") + (at 152.975 56.34 -90) + (descr "Abracon ASE, Miniature Crystal Clock Oscillator, 3.2x2.5mm package, SMD, http://www.abracon.com/Oscillators/ASEseries.pdf") + (tags "SMD SMT crystal oscillator") (property "Reference" "X1" - (at 0 -2.4 90) + (at -2.68 1.255 180) (layer "F.SilkS") (uuid "41cd7c0e-d310-4ab6-9346-667dcbc595ad") (effects @@ -551,7 +589,7 @@ ) ) (property "Value" "12MHz" - (at 0 2.4 90) + (at 0 2.45 90) (layer "F.Fab") (uuid "e6f6736c-1de3-4c9e-8b69-49a9996583b4") (effects @@ -561,7 +599,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "http://www.abracon.com/Oscillators/ASV.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -572,7 +610,7 @@ ) ) ) - (property "Description" "" + (property "Description" "3.3V CMOS SMD Crystal Clock Oscillator, Abracon" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -583,7 +621,7 @@ ) ) ) - (property "KiLib_Generator" "package/gullwing" + (property "KiLib_Generator" "crystal_resonator_oscillator" (at 0 0 90) (layer "F.SilkS") (hide yes) @@ -595,50 +633,86 @@ ) ) ) + (property "MPN" "1532H4-12000JWPDTSNL" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eb69325a-f366-41a2-8e4e-fbb57ecb2b3a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "HCI" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "694dce4e-a5c2-4368-b364-4b580696ec1b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "V" "1.8~3.3V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7ab8c064-fb46-4400-b201-88d4f2023a4d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "XO 12MHz +/-10ppm HCMOS 3225-4P" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "325a7732-9f58-4ab9-a44f-785abb7d3f88") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C5383163" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a778aa04-4b17-46ba-b888-2a85c1ad5bfd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Oscillator*SMD*Abracon*ASE*3.2x2.5mm*") (path "/73763384-ff95-4826-8da6-2de53070e62f/b6ef64c5-65dd-47eb-8855-4631e64d1b5d") (sheetname "/fpga/") (sheetfile "Fpga.kicad_sch") (units (unit (name "A") - (pins "1" "5" "2" "3") + (pins "1" "4" "2" "3") ) ) (attr smd) (duplicate_pad_numbers_are_jumpers no) (fp_line - (start 0.91 -1.56) - (end 0.91 -1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "cd63b8c6-e5bf-4efb-a29c-f9f8ec82f380") - ) - (fp_line - (start -0.91 -1.56) - (end 0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d0c6e968-2c52-49c7-872e-72946976f025") - ) - (fp_line - (start -0.91 -1.51) - (end -0.91 -1.56) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fa3e7b15-b7d4-4fb1-9f51-4fc54b5867aa") - ) - (fp_line - (start 0.91 -0.39) - (end 0.91 0.39) + (start -1.96 1.635) + (end 1.96 1.635) (stroke (width 0.12) (type solid) @@ -647,210 +721,40 @@ (uuid "e7e9341f-ced6-47ba-9c42-e874b4144f94") ) (fp_line - (start 0.91 1.51) - (end 0.91 1.56) + (start -1.96 -1.635) + (end -1.96 1.635) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") - (uuid "4bbe2527-6a70-48ad-8cd5-2c2f6d249da3") + (uuid "fa3e7b15-b7d4-4fb1-9f51-4fc54b5867aa") ) - (fp_line - (start 0.91 1.56) - (end -0.91 1.56) + (fp_circle + (center 0 0) + (end 0.25 0) (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "7fccb362-b425-4fc7-9869-da3950e3d182") - ) - (fp_line - (start -0.91 1.56) - (end -0.91 1.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "1598fd96-a389-4551-b4eb-fbd6fa4f7723") - ) - (fp_poly - (pts - (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) - ) - (stroke - (width 0.12) + (width 0.1) (type solid) ) (fill yes) - (layer "F.SilkS") - (uuid "fe6340bf-c0f8-4681-ae3d-f73d74440b81") + (layer "F.Adhes") + (uuid "8c657b8b-3c42-441e-8aaf-bf6e52d92caa") ) - (fp_line - (start 1.05 -1.7) - (end 1.05 -1.5) + (fp_rect + (start -2.1 -1.75) + (end 2.1 1.75) (stroke (width 0.05) (type solid) ) + (fill no) (layer "F.CrtYd") - (uuid "5de25389-cfcd-4de0-8eb0-0f0d88badedb") - ) - (fp_line - (start -1.05 -1.7) - (end 1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "de9040ab-4492-498c-b221-d88ddf126602") - ) - (fp_line - (start 2.05 -1.5) - (end 2.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bf2477b8-3094-41f2-bcc3-e3584269d7ca") - ) - (fp_line - (start 1.05 -1.5) - (end 2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "0932faa9-29c7-4138-8d56-546218238110") - ) - (fp_line - (start -1.05 -1.5) - (end -1.05 -1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5137902e-e349-447f-9d4f-7fae43ead330") - ) - (fp_line - (start -2.05 -1.5) - (end -1.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "bd53d289-a109-425f-9e54-ab14c19e3187") - ) - (fp_line - (start 2.05 -0.39) - (end 1.05 -0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f16015df-7187-41ba-b8fc-4c12ebd52753") - ) - (fp_line - (start 1.05 -0.39) - (end 1.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f77521cc-371b-4a8e-bbe9-1947799ea864") - ) - (fp_line - (start 2.05 0.39) - (end 2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b9baa640-aba1-4ce4-baf6-22f3a3d5a247") - ) - (fp_line - (start 1.05 0.39) - (end 2.05 0.39) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "ad914ada-bf61-451c-aa55-6865487b50be") - ) - (fp_line - (start 2.05 1.5) - (end 1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "f76040a6-96ed-4e2e-bc3f-0edfdf703633") - ) - (fp_line - (start 1.05 1.5) - (end 1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "6dc756b9-724f-4c39-ad08-25384a1c5ee4") - ) - (fp_line - (start -1.05 1.5) - (end -2.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "b27df0b4-de03-40fe-b202-35acb6f30326") - ) - (fp_line - (start -2.05 1.5) - (end -2.05 -1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "dcc7c7ff-001b-4b4b-a287-7e636a2bfc9b") - ) - (fp_line - (start 1.05 1.7) - (end -1.05 1.7) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "2eb58f7a-2d62-4256-8231-8d5006e2058b") - ) - (fp_line - (start -1.05 1.7) - (end -1.05 1.5) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "5f81db38-6d77-4943-8c4f-958d80db37ac") + (uuid "14e4b111-9f36-4124-99da-724a2c019249") ) (fp_poly (pts - (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) + (xy 1.6 -1.25) (xy 1.6 1.25) (xy -0.975 1.25) (xy -1.6 0.625) (xy -1.6 -1.25) ) (stroke (width 0.1) @@ -861,65 +765,58 @@ (uuid "43f59af4-6aa3-446d-9329-94e9452309be") ) (fp_text user "${REFERENCE}" - (at 0 0 0) + (at 0 0 90) (layer "F.Fab") (uuid "0775f8ab-a6cb-443f-8baf-0352deba0779") (effects (font - (size 0.72 0.72) - (thickness 0.11) + (size 0.8 0.8) + (thickness 0.12) ) ) ) (pad "1" smd roundrect - (at -1.1375 -0.95 90) - (size 1.325 0.6) + (at -1.05 0.825 270) + (size 1.3 1.1) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.227273) (net "/Power/3V3") - (pinfunction "OE_1") + (pinfunction "EN_1") (pintype "input") (uuid "8fb2f277-9fb5-4467-91af-b9a13222be25") ) (pad "2" smd roundrect - (at -1.1375 0 90) - (size 1.325 0.6) + (at 1.05 0.825 270) + (size 1.3 1.1) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.227273) (net "GND") (pinfunction "GND_2") (pintype "power_in") (uuid "062860a0-8fe7-491c-b5b3-343edbadbf20") ) (pad "3" smd roundrect - (at -1.1375 0.95 90) - (size 1.325 0.6) + (at 1.05 -0.825 270) + (size 1.3 1.1) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.227273) (net "/fpga/CLK12") (pinfunction "OUT_3") (pintype "output") (uuid "32e8683a-78df-4186-a82e-d08c5e19de73") ) (pad "4" smd roundrect - (at 1.1375 0.95 90) - (size 1.325 0.6) + (at -1.05 -0.825 270) + (size 1.3 1.1) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.227273) + (net "/Power/3V3") + (pinfunction "Vdd_4") + (pintype "power_in") (uuid "7c8dac01-255b-4394-846b-54461459f20f") ) - (pad "5" smd roundrect - (at 1.1375 -0.95 90) - (size 1.325 0.6) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pinfunction "VDD_5") - (pintype "power_in") - (uuid "abdd9b7e-e9bc-4769-a13f-c4e171f52321") - ) (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.step" + (model "${KICAD10_3DMODEL_DIR}/Oscillator.3dshapes/Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm.step" (offset (xyz 0 0 0) ) @@ -934,13 +831,13 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "F.Cu") (uuid "13bc0e4e-a101-4269-b64a-edbd05dceac1") - (at 183.3025 65.58) + (at 182.63 65.58) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C12" - (at 0 -1.16 0) + (at -2.24 0.54 90) (layer "F.SilkS") - (uuid "8bd93207-8879-4748-b330-a04f94ee0f89") + (uuid "389aeed4-a022-472f-80a2-5a8a19ab7b37") (effects (font (size 1 1) @@ -951,7 +848,7 @@ (property "Value" "100nF" (at 0 1.16 0) (layer "F.Fab") - (uuid "1e35d98b-2ca3-4edd-9e56-68d0175f2ee3") + (uuid "7f1160b2-8d32-41bc-9768-ef9aac4f636b") (effects (font (size 1 1) @@ -963,18 +860,18 @@ (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "6426d9f4-54f0-4540-b914-070fd01efd01") + (uuid "a9ca977e-a530-4193-9149-7e8d31819cda") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "4e7968e1-fcf6-4e45-b013-c3dcdce307f8") + (uuid "95a4c1cd-b8de-438b-96ed-78aa3cf5021a") (effects (font (size 1.27 1.27) @@ -1019,6 +916,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c47a914a-a490-41ce-9992-c18ea0511bbe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5005044d-1715-42e0-8049-d619aacbd5fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ef9d93a4-ab9e-4993-9e31-e81595becc96") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/53ffa1a8-eeb5-4671-8e4b-3b28c92f6fbe") (sheetname "/Power/") @@ -1118,14 +1054,14 @@ (footprint "hardware:SOT95P280X110-6N" (layer "F.Cu") (uuid "156cee70-df37-4cb5-97d0-0a70589fa301") - (at 193.735 67.7) + (at 193.24 67.7) (property "Reference" "U3" - (at -0.068 -2.2064 0) + (at 2.87 1.3 0) (layer "F.SilkS") - (uuid "5654de19-f1cc-4924-9879-372f727ed23a") + (uuid "c6dded75-457a-402b-923e-43e027be4278") (effects (font - (size 0.64 0.64) + (size 1 1) (thickness 0.15) ) ) @@ -1133,7 +1069,7 @@ (property "Value" "TPS562201DDCR" (at 4.4024 2.2064 0) (layer "F.Fab") - (uuid "bd509639-91b8-4d10-a2c6-d54d60de6424") + (uuid "e58b1566-0db2-43dd-b3f7-dd5cde70bcf2") (effects (font (size 0.64 0.64) @@ -1145,24 +1081,206 @@ (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "8c073f2b-87d6-4a51-b877-e7b63d663a54") + (uuid "506db96c-ffde-4769-bce1-47bc4369cc0a") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "4.5 V to 17 V input, 2 A output, synchronous step-down converter in Eco-mode" (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "86e9f51f-da4e-4a76-858f-31d591eccf3b") + (uuid "02b7435b-c24d-4f77-9f8c-ee190323065f") (effects (font (size 1.27 1.27) ) ) ) + (property "MPN" "TPS562201DDCR" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c2126e91-1cf4-4d6d-a3de-b4fe8a0d03aa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1c47c90c-fabb-4b71-96ef-547b85a61c65") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C90061" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e0318168-a70b-4add-95ff-fb954be13af8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MF" "Texas Instruments" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7aea5af0-1846-4ea0-a6dc-9bc3855ce025") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MAXIMUM_PACKAGE_HEIGHT" "1.10 mm" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0edc8307-61db-4085-aaa9-e03045f6e005") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Package" "SOT-23-THN-6 Texas Instruments" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "85f736e6-a847-4ee9-be3f-40da289a6fb3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "None" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ff5f3b93-3e56-486c-9ef5-3d9d160e0848") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Check_prices" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=eda" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48d41421-fdd6-453b-a231-a761abd38ffe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "STANDARD" "IPC-7351B" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0af5a83d-3592-4a8e-919c-0e9a3eccefcd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "PARTREV" "A" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b35f1bea-909c-4c37-8f34-28d5dcc36224") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "SnapEDA_Link" "https://www.snapeda.com/parts/TPS562201DDCR/Texas+Instruments/view-part/?ref=snap" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b3018895-290c-4751-9168-d4c9f4dead66") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MP" "TPS562201DDCR" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7966a40c-2cea-43fb-b0dc-a512226f4710") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Availability" "In Stock" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4a09c7f-6c65-4803-ae82-c0cb068def55") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MANUFACTURER" "Texas Instruments" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "36f7b53b-973d-409c-bccf-d58c140e9052") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/8949102c-9b07-42a5-8fc0-460e3ea3148a") (sheetname "/Power/") (sheetfile "Power.kicad_sch") @@ -1444,190 +1562,6 @@ ) (embedded_fonts no) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "1985dd31-8465-409e-bb91-80505a030b45") - (at 153.6925 53.63) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C49" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "e66e104d-d77a-43c4-99d3-cc73ce359bd6") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "f286011c-34a7-471a-bcfe-115058c688c4") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "bcdd04b0-2e0d-45f6-874c-4a7c05774a43") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "0bdc2529-4ee4-41cb-bfc4-4d45172fc60a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "07542b42-3600-4c37-b68d-44cd2cd70352") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "361f51a9-b746-4be9-9880-2dc28f43ec2e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6dc0007e-5926-42df-a22f-ffe78e11d417") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/6f1678d1-05c7-42c0-a0a5-eb125f5a6c53") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46c7230e-835e-464d-a629-54a5bea39368") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "4f82855e-21e7-49ae-adb8-ce8c2ff282ae") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "a43966ad-3d23-4d86-8a76-9853060ee536") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d42538ac-d2c8-46d1-bb55-eb3b9d993316") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "f3576ae7-c585-43f7-9497-052cc1ac69ef") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "45f08b39-4704-4c3a-8dbf-70a063912784") - ) - (pad "2" smd roundrect - (at 0.5675 0) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "18cc0c90-5ea7-43cf-9bc9-e699dfebcb09") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "1ffb36af-aa16-4b33-aacb-1f499ded280d") @@ -1635,7 +1569,7 @@ (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C14" - (at 0 -1.43 90) + (at -1.6125 2.19 180) (layer "F.SilkS") (uuid "1b3b1834-b466-4197-823f-da4b797f870b") (effects @@ -1667,7 +1601,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -1716,6 +1650,45 @@ ) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a20f6b0b-fa18-4c19-9278-99c17665689c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4f60a54e-0e7f-4a6f-850b-3b20268cf8c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ca27058e-e06e-4012-ac11-083e650dcf50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c042288a-20e3-4624-9f2a-65dd79c19569") (sheetname "/Usb Connector/") @@ -1815,13 +1788,13 @@ (footprint "Inductor_SMD:L_Changjiang_FNR4018S" (layer "F.Cu") (uuid "2371072c-73ae-47ff-bc0a-cd38d18feea7") - (at 189.23 68.7 -90) + (at 188.34 68.69 -90) (descr "Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, (https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf)") (tags "wirewound power shielded") (property "Reference" "L1" - (at 0 -2.95 90) + (at 3.01 0.01 180) (layer "F.SilkS") - (uuid "867d593f-363b-4c9c-8b32-6b8006cdc712") + (uuid "f16c8c1d-c50c-47d9-839f-981d3f7103ab") (effects (font (size 1 1) @@ -1829,10 +1802,10 @@ ) ) ) - (property "Value" "2.2uH" + (property "Value" "3.3uH" (at -3.3 5.405 0) (layer "F.Fab") - (uuid "0f224377-1de4-4635-b0aa-a2bab52c4856") + (uuid "4648e3ae-8109-4f0f-a527-ffa8d0af93f2") (effects (font (size 1 1) @@ -1844,18 +1817,18 @@ (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "a002d8f2-737b-479a-ae53-dd1a2d6ac0da") + (uuid "3c03e11b-2590-4b7a-b379-636aa70db137") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Inductor" (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "97f999da-46a2-44f6-9582-cb3a23aa486d") + (uuid "65bb14ec-cb5b-44bc-8b55-2601511f74a3") (effects (font (size 1.27 1.27) @@ -1874,6 +1847,58 @@ ) ) ) + (property "MPN" "FNR4018S3R3MT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "52082dd3-b45a-43f0-b991-247387949828") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "cjiang" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0198874c-6cc4-4858-9f37-8d6c272e9d41") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C167805" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a7b7bec0-c97a-4ce4-a33d-6d87a25af642") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Current" "2.9A" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb98ede3-ed08-48f2-89cd-42cc0e3f7e93") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "Choke_* *Coil* Inductor_* L_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/2c31491d-3762-4175-b904-210bd0b09ed2") (sheetname "/Power/") @@ -2081,190 +2106,6 @@ ) ) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "27c3518c-0fd1-4608-a6bf-8da22ce4d478") - (at 149.06 63.5175 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C48" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "5318cc43-b05f-4b28-aa7b-4e33a08993f7") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "6eb0cdbc-266c-4bd9-a392-8f5047e88797") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "b385eabc-354d-45ce-8938-0ad4d1f37fda") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "50449700-27cc-44ef-a1f9-ae419665c06f") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "fe140552-7a43-4453-b411-3eb771a321b9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ede0b73a-9001-4d3e-b8c6-38d572c15572") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "03bcd20c-13cd-4ed7-a28a-39373b933635") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/a0f9d5a2-4857-4091-bc6b-c353047234c9") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "c4a5de5b-0a09-4d52-a0bb-53422dbc7262") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2631f737-d7dc-4dd9-b268-a272d514bc1d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "f40b553e-1618-4968-b720-102fbe89d3c5") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "d5542a2f-d5b7-4c03-8169-2d1227ee0bf4") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "97fdc80c-9487-4297-84ac-3ff0bb890411") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pintype "passive") - (uuid "a4fa1ed4-467f-442f-a8fe-a7e6289bd4bb") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "8f7347ed-d535-4106-a38c-b29ecca5b025") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) (footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu") (uuid "297087d7-297e-4acb-bfb1-314d336fa245") @@ -2272,7 +2113,7 @@ (descr "SOT, 6 Pin (JEDEC MO-178 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") (tags "SOT TO_SOT_SMD") (property "Reference" "U12" - (at 0 -2.4 0) + (at 2.4775 2.12 0) (layer "F.SilkS") (uuid "fa9b9446-65f3-4102-92d3-e36a8efacb86") (effects @@ -2293,7 +2134,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tps22810.pdf" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -2304,7 +2145,7 @@ ) ) ) - (property "Description" "" + (property "Description" "2.7..18V, 2A, 79mohms On-Resistance Load Switch With Thermal Protection, SOT-23-6" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -2327,6 +2168,45 @@ ) ) ) + (property "MPN" "TPS22810DBVR" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4b449f14-5393-4085-9fb9-9d9ac5765ea7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4687f39d-8a66-45dd-83e9-c639489795f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C205990" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f9b599ca-63b9-4556-b758-4dfea691854b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "SOT?23*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/14b6366d-fad4-4f08-9680-8b51b64ae65b") (sheetname "/ethernet/") @@ -2634,7 +2514,7 @@ (descr "SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm") (tags "capacitor electrolytic") (property "Reference" "C65" - (at 0 -4.35 0) + (at 4.31 -2.53 90) (layer "F.SilkS") (uuid "c4716c8c-9f53-45b3-a34e-310eb57456d6") (effects @@ -2666,7 +2546,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Polarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -2715,6 +2595,45 @@ ) ) ) + (property "MPN" "VZH101M1ETR-0607" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b9aaa1d9-db38-41ac-8150-a4fbea1f9584") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Lelon" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2cc6881-2585-494e-bf78-392f8bda4dc7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C311617" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "37395c86-673e-4658-b621-91ba33ee1314") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "CP_*") (path "/1b071f68-b4ea-469c-942f-de06380c9077/11c5a587-7b43-454b-8483-cecc6ffb0da5") (sheetname "/exi/") @@ -3100,14 +3019,14 @@ ) ) ) - (footprint "Package_QFP:LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm" + (footprint "Package_QFP:LQFP-64_10x10mm_P0.5mm" (layer "F.Cu") (uuid "35059d9a-7553-4f0b-98a3-a470b2935ec7") (at 169.5 62.52 -90) - (descr "LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf)") + (descr "LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf)") (tags "LQFP QFP") (property "Reference" "U8" - (at 0 -7.4 90) + (at -4.75 -6.42 0) (layer "F.SilkS") (uuid "30838efa-757a-4464-a441-194e2679a5c7") (effects @@ -3118,9 +3037,8 @@ ) ) (property "Value" "FT2232HL" - (at 0 7.4 90) + (at 0 7.4 270) (layer "F.Fab") - (hide yes) (uuid "47f052fe-3f48-44b7-9991-0df6d9acf35d") (effects (font @@ -3129,8 +3047,8 @@ ) ) ) - (property "Datasheet" "" - (at 0 0 90) + (property "Datasheet" "https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf" + (at 0 0 270) (layer "F.Fab") (hide yes) (uuid "821788ff-f0e9-49fe-b8dd-5291fa34e003") @@ -3140,8 +3058,8 @@ ) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Hi Speed Double Channel USB UART/FIFO, LQFP-64" + (at 0 0 270) (layer "F.Fab") (hide yes) (uuid "62d60d3a-7615-4f2c-baa4-13744a0fc9bd") @@ -3152,7 +3070,7 @@ ) ) (property "KiLib_Generator" "package/gullwing" - (at 0 0 90) + (at 0 0 270) (layer "F.SilkS") (hide yes) (uuid "65d9c53a-3892-4c94-9a61-0f25de12e8ca") @@ -3163,6 +3081,45 @@ ) ) ) + (property "MPN" "FT2232HL-REEL" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d3c755f2-d76c-45df-868d-461b3f6e4f6e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "FTDI" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b797392d-56fa-4d3c-a028-90479336797c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C27882" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "43dd7821-6177-4816-972f-06944c3403d1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "LQFP*10x10mm*P0.5mm*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/d1b9caea-74c5-4464-b810-6fbc52cf0d32") (sheetname "/Usb Connector/") @@ -3484,192 +3441,6 @@ (layer "F.Fab") (uuid "a2748875-f6a4-41dc-ab96-b496ff0eed50") ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "d10a15a7-84b3-4eaf-ab22-11cf0675fa9f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (pad "" smd roundrect - (at -2 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "db2d48d1-f177-4026-97ef-48cea6ac3573") - ) - (pad "" smd roundrect - (at -2 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "494a4020-7b57-4ed2-8a45-86afac25bfc5") - ) - (pad "" smd roundrect - (at -2 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e1e7becd-2672-4f3f-975e-2f69abeac23f") - ) - (pad "" smd roundrect - (at -2 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "2130ccfc-4b6d-4528-9573-d0c6b6449870") - ) - (pad "" smd roundrect - (at -2 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "0758b787-8f21-4176-a55e-484d0c0027aa") - ) - (pad "" smd roundrect - (at -1 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "6f48af39-b389-48e6-aa8b-4438a62d5784") - ) - (pad "" smd roundrect - (at -1 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "8d69aa02-fadf-4538-9a13-339dc98583ab") - ) - (pad "" smd roundrect - (at -1 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "accd75ce-80d2-4d46-b034-34a5fb9182f2") - ) - (pad "" smd roundrect - (at -1 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "a36141ae-4b59-41dd-ba6f-da8fb87524f3") - ) - (pad "" smd roundrect - (at -1 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "046cafad-81a0-4378-8421-06834afb23d9") - ) - (pad "" smd roundrect - (at 0 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3d1a3435-185e-4a8c-94e7-9e05ebdc4fb4") - ) - (pad "" smd roundrect - (at 0 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "2078a1db-7144-4761-ae0d-3f1245837683") - ) - (pad "" smd roundrect - (at 0 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "1fe1bcd9-d2ef-4367-b616-fb5e093f0da8") - ) - (pad "" smd roundrect - (at 0 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "ad276b9c-207d-43e5-967f-db34d9a4e3c6") - ) - (pad "" smd roundrect - (at 0 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "b674240b-f422-45f0-841c-480f52306cb6") - ) - (pad "" smd roundrect - (at 1 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "88d38414-51f4-4fce-8f84-e78e4be2b0af") - ) - (pad "" smd roundrect - (at 1 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e626a7f1-8e3a-4b30-9d4f-b638baa4eac4") - ) - (pad "" smd roundrect - (at 1 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e28f5301-c416-4a07-87d5-55ab55640510") - ) - (pad "" smd roundrect - (at 1 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "675804a1-6a0d-4490-889b-002c852012dd") - ) - (pad "" smd roundrect - (at 1 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "3ea5c9f7-f4b7-4bf7-aade-9338437d11ee") - ) - (pad "" smd roundrect - (at 2 -2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "6cfde6e7-97fa-4895-9d88-e74bb834c096") - ) - (pad "" smd roundrect - (at 2 -1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "e7799405-36a5-4c90-93e3-adebe10affe0") - ) - (pad "" smd roundrect - (at 2 0 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "85198cc0-419e-443f-a546-710c1aa38fd2") - ) - (pad "" smd roundrect - (at 2 1 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "77a318fd-e776-4805-afc1-07b86c02a179") - ) - (pad "" smd roundrect - (at 2 2 270) - (size 0.81 0.81) - (layers "F.Paste") - (roundrect_rratio 0.25) - (uuid "311080df-3326-4fca-b905-0e8c28df18f1") - ) (pad "1" smd roundrect (at -5.675 -3.75 270) (size 1.55 0.3) @@ -4310,200 +4081,8 @@ (pintype "power_in") (uuid "a2c5ebce-88e6-4b8c-80f6-b9346ae5c1a5") ) - (pad "65" smd rect - (at 0 0 270) - (size 5 5) - (property pad_prop_heatsink) - (layers "F.Cu" "F.Mask") - (zone_connect 2) - (uuid "45d7604a-0471-4ad2-9d25-bf294f02ad56") - ) (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" - (layer "F.Cu") - (uuid "4a45a937-d131-47f4-b575-d6acc1a7fd14") - (at 154.8375 52.39) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C64" - (at 0 -1.43 0) - (layer "F.SilkS") - (uuid "07a8d50d-a3da-4d50-969e-0d653f996ae2") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "1uF" - (at 0 1.43 0) - (layer "F.Fab") - (uuid "e8e8cf0a-9749-45f5-ac45-1d8f3d9d6248") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "9350ce8c-e6dc-44ab-856c-7c95bb9d8f17") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "f56aa524-a6d2-4569-97c7-cd00b1410191") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "c4864094-17df-44e8-9517-197d1fec6593") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5fee8ea5-cdf2-4226-aa22-a9405b2a64ea") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "e1e28b18-a1a1-4624-b0b1-57d7fa279c68") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/799dac55-4653-4856-af6e-ddab4a32162e") - (sheetname "/ethernet/") - (sheetfile "ethernet.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "d4950416-ef83-4687-a942-47dc22945fa9") - ) - (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "62a7b8a7-ba20-4794-bd10-0ba02a7206ba") - ) - (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "283a82eb-b998-4b90-9541-2914aa13852d") - ) - (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a6ac314a-ff33-4a59-a6b9-2fc0d82fa555") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "320c06d5-f870-4d64-adb1-591d25f84fd8") - (effects - (font - (size 0.4 0.4) - (thickness 0.06) - ) - ) - ) - (pad "1" smd roundrect - (at -0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "602e469f-7e34-44ac-b1b6-234b107ad925") - ) - (pad "2" smd roundrect - (at 0.8625 0) - (size 1.075 0.95) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "2a9cc8b5-68a8-4a77-98ab-6db00489cbc7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" + (model "${KICAD10_3DMODEL_DIR}/Package_QFP.3dshapes/LQFP-64_10x10mm_P0.5mm.step" (offset (xyz 0 0 0) ) @@ -4522,7 +4101,7 @@ (descr "SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf)") (tags "SOIC SO") (property "Reference" "U5" - (at 0 -6.1 90) + (at -5.61 -5.915 180) (layer "F.SilkS") (uuid "4b047a4d-210c-48d3-8063-4e3d1248a654") (effects @@ -4543,7 +4122,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM4160.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -4554,7 +4133,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Full/Low Speed, iCoupler USB Digital Isolator, 5kV protection, SOIC-16" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -4577,6 +4156,45 @@ ) ) ) + (property "MPN" "ADUM4160BRWZ" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "80bf1acc-44bd-4b23-9346-f18e63d7ed50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Analog Devices" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f9ebaddc-4fff-4062-bc9a-3d2bd2b86c1d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C579406" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "915db977-1720-4f2f-b3a5-5ddd4f7b18ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "SOIC*7.5x10.3mm*P1.27mm*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/ff0840fa-64d2-4c4f-a5f2-0a6f744a930a") (sheetname "/Usb Connector/") @@ -4982,22 +4600,22 @@ (footprint "hardware:HANRUN_HR911105A" (layer "F.Cu") (uuid "521e335c-0864-4816-9cc9-3557aa04e0a9") - (at 117.9 57.35 90) + (at 117.82 57.41 90) (property "Reference" "J2" - (at -3.18815 -12.50276 90) + (at -4.78 11.61 180) (layer "F.SilkS") - (uuid "6b35bd3f-56f9-46d9-b223-fd79fe571fed") + (uuid "ceb71fc9-f620-426c-ae42-febfb1120488") (effects (font - (size 1.607654 1.607654) + (size 1 1) (thickness 0.15) ) ) ) (property "Value" "HR911105A" - (at -0.3 2.92 90) + (at -0.18 -2.35 180) (layer "F.Fab") - (uuid "0af39388-0215-4859-9ee7-dac6b2934c97") + (uuid "4a0eeec5-48c4-47fd-9bad-11da1e7e66ad") (effects (font (size 1.605063 1.605063) @@ -5009,7 +4627,7 @@ (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "4448c7cb-1932-4a34-9dac-092bd0490ba6") + (uuid "401241d9-4870-4b23-9519-d17104be2886") (effects (font (size 1.27 1.27) @@ -5020,7 +4638,7 @@ (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "4504b0f7-a72a-49bb-beb0-d58ebc8fe880") + (uuid "c361fce8-8389-4a70-a748-894352991309") (effects (font (size 1.27 1.27) @@ -5183,6 +4801,45 @@ ) ) ) + (property "MPN" "HR911105A" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "927ce0a2-aade-4642-b7f7-60cdda359999") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "HANRUN" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "860669df-4aba-4d03-9314-50847086281d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C12074" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c784f564-8404-4611-9477-18507cf14aad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/8f518aff-5efc-4392-8598-de9e0aaf1c56") (sheetname "/ethernet/") (sheetfile "ethernet.kicad_sch") @@ -5530,11 +5187,11 @@ (placed yes) (layer "F.Cu") (uuid "530973c5-b0ff-4577-b434-91c6afcef4cd") - (at 127.5 69.3025 90) + (at 132.7775 66.68 180) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R17" - (at 0 -1.17 90) + (at 1.0675 1.85 90) (layer "F.SilkS") (uuid "23e79e2c-c0a0-4d64-b160-0caf008da575") (effects @@ -5545,7 +5202,7 @@ ) ) (property "Value" "1M" - (at 0 1.17 90) + (at 0 1.17 0) (layer "F.Fab") (uuid "659c6a0a-2e7a-4a82-aa15-f51bd0e2c317") (effects @@ -5556,7 +5213,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "ba625bd4-f199-48c8-be42-bf5865325f7f") @@ -5566,8 +5223,8 @@ ) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Resistor" + (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "e39e00e4-cf2f-4b6e-85d2-ad81833f40b7") @@ -5578,7 +5235,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) + (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "2c1718f3-3599-4ec0-853d-5bbed678b342") @@ -5590,7 +5247,7 @@ ) ) (property "Tolerance" "5%" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -5602,6 +5259,45 @@ ) ) ) + (property "MPN" "0402WGF1004TCE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "437f49cd-7dfa-463c-b61f-9062936fd610") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e7c44049-1ccb-4143-aa59-19b25ebf15c7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C26083" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e96bc3b7-fc3c-489e-a6df-03d98e53eeb0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/898b0f99-8d06-4f04-99d2-0a5c3f3f25d0") (sheetname "/ethernet/") @@ -5614,16 +5310,6 @@ ) (attr smd) (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "3172b5b7-7bd7-4961-9041-c4dd97805d36") - ) (fp_line (start -0.167621 0.38) (end 0.167621 0.38) @@ -5634,6 +5320,16 @@ (layer "F.SilkS") (uuid "9f4e43dc-da35-4c6b-9cd4-ce5784a6f681") ) + (fp_line + (start -0.167621 -0.38) + (end 0.167621 -0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "3172b5b7-7bd7-4961-9041-c4dd97805d36") + ) (fp_rect (start -1.11 -0.47) (end 1.11 0.47) @@ -5657,7 +5353,7 @@ (uuid "bcf0e561-9727-4061-8529-23d26d6c8f5b") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 0) (layer "F.Fab") (uuid "e4af14d3-5724-4e66-8f46-609b2f8b78fb") (effects @@ -5668,22 +5364,20 @@ ) ) (pad "1" smd roundrect - (at -0.5975 0 90) + (at -0.5975 0 180) (size 0.715 0.64) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/ethernet/XTAL_I") - (pinfunction "~_1") (pintype "passive") (uuid "3d6aab5c-b7f3-4ff6-a4d5-396bf9848f94") ) (pad "2" smd roundrect - (at 0.5975 0 90) + (at 0.5975 0 180) (size 0.715 0.64) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/ethernet/XTAL_O") - (pinfunction "~_2") (pintype "passive") (uuid "4ac0b233-eb5e-4554-87a5-5d215f1ac976") ) @@ -5700,190 +5394,6 @@ ) ) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "53adbd27-e38f-408c-aa72-91c9085cc45c") - (at 149.04 65.75 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C45" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "eff0c79b-cba8-4acd-a4d4-75bc85ca43c9") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "fa0af32e-9d7c-44e2-bb4d-f2a4c9201cf3") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "01a2d74f-a0ff-4039-8b38-70112e2a2d96") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "4f21a174-22cc-48d5-8dea-f58ac16dcd71") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d9a67ac2-b6c3-412f-8657-f7b5e1ec6bdd") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "b6c89282-ed7b-4b3d-a117-857ed4045765") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "902bc6bc-213f-43d4-8fa0-54582b4c059e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/1a586e8e-5eb2-46d2-a8b1-0287b1ce1c01") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "779ca31d-c91a-42e8-900d-9d06851da9a8") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "6f93544c-1731-4a78-aa5c-c58bf61bfb95") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b78f1504-b6ed-4ffe-ab36-eb5ed5dcb604") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "56f71654-c903-46c0-af54-e819b566f631") - ) - (fp_text user "${REFERENCE}" - (at -0.0325 0 90) - (layer "F.Fab") - (uuid "25e73632-3d79-423f-8457-58c988071327") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pintype "passive") - (uuid "dbe5f659-9f2b-437f-85ae-d264a666bbbe") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "040201ab-81ac-4617-841a-7e8ea88b75bb") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) (footprint "Package_TO_SOT_SMD:SOT-583-8" (placed yes) (layer "F.Cu") @@ -5892,7 +5402,7 @@ (descr "https://www.ti.com/lit/ds/symlink/tps62933.pdf") (tags "SOT-583-8") (property "Reference" "U2" - (at 0 -2.2 270) + (at -1 2.27 0) (unlocked yes) (layer "F.SilkS") (uuid "c64243b8-b612-4f0b-b6ca-09195c035369") @@ -5915,7 +5425,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.ti.com/lit/ds/symlink/tps2116.pdf" (at 0 0 270) (unlocked yes) (layer "F.Fab") @@ -5928,7 +5438,7 @@ ) ) ) - (property "Description" "" + (property "Description" "2 Channnels Power Mux with Manual and Priority Switchover, 1.6-5.5V Input Voltage, 2.5A Output Current, Ron 40 mOhm, SOT-583-8" (at 0 0 270) (unlocked yes) (layer "F.Fab") @@ -5941,6 +5451,45 @@ ) ) ) + (property "MPN" "TPS2116DRLR" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9f98bec2-5833-4f78-bcb8-31df9e40b6ea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Texas Instruments" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a089bc9c-2408-479b-bff7-bb97c2feff15") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C3235557" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "12bf2559-3fea-4c11-8a26-4ea42a427ce4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "SOT?5?3*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/37da5052-c537-4eaf-931c-04725a54b211") (sheetname "/Power/") @@ -6195,7 +5744,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C7" - (at 0 -1.16 0) + (at -1.8975 -0.02 0) (layer "F.SilkS") (uuid "dbcfd571-2955-41b5-93ee-c9ba3c210fe5") (effects @@ -6276,6 +5825,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6abc9774-54f5-41bf-8bd7-5d8b3f9e59a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "db55f199-2c57-4f63-be24-2cfcea5d36cc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1021e103-536d-47ac-ad41-01ae1dfbd530") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/8f54c9f3-e53d-4118-884b-00d1cdd5d9be") (sheetname "/Power/") @@ -6379,7 +5967,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C25" - (at 0 -1.16 0) + (at 0.07 1.26 0) (layer "F.SilkS") (uuid "75228834-5d5f-447d-ba61-235a738122c1") (effects @@ -6411,7 +5999,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -6460,6 +6048,45 @@ ) ) ) + (property "MPN" "0402CG180J500NT" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "700bbcf1-13f7-4ab3-990e-45a3314a8503") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cc75dfdb-6544-4bfb-b183-7e5c295e9108") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8fdbdfcb-ddde-46df-b436-ee85db506ef7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/71b1b0ac-e62b-4c4c-8e59-42aad42b2606") (sheetname "/Usb Connector/") @@ -6564,7 +6191,7 @@ (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C41" - (at 0 -1.43 0) + (at 3.0275 -0.01 0) (layer "F.SilkS") (uuid "f927b61f-6f8e-48bf-84a2-bc0a1f4e4b61") (effects @@ -6596,7 +6223,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -6645,6 +6272,45 @@ ) ) ) + (property "MPN" "CL10A475KO8NNNC" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ac673fe8-8682-448f-b5e9-e85734c8142d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2988a3c6-184c-4454-b73c-f915f9cfff2f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C19666" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "68e81588-ec8b-4168-ba9e-a223616f256a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/bb67f8f2-1f89-4a5d-88e9-74c8d61d245d") (sheetname "/fpga/") @@ -6748,7 +6414,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C22" - (at 0 -1.16 90) + (at 0.225 1.8825 180) (layer "F.SilkS") (uuid "d6b43e8d-5e23-4fae-9aa7-2c02d80d8bf9") (effects @@ -6758,7 +6424,7 @@ ) ) ) - (property "Value" "0.1uF" + (property "Value" "100nF" (at 0 1.16 90) (layer "F.Fab") (uuid "9e0f5fc9-c2a0-4aa5-98ba-79f16a28d68e") @@ -6780,7 +6446,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -6829,6 +6495,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cd74c72b-2076-4b5e-908b-fa45482fe81a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3c058de1-9919-4108-8708-a96521bce8e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0614f3dc-097a-40cb-96bf-ecc186c0a82f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/26f94877-53fb-4e1b-9ef1-bc02520ab9aa") (sheetname "/Usb Connector/") @@ -6925,364 +6630,6 @@ ) ) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "68e2604f-248b-41cf-bcc8-c4599877f6b8") - (at 149.74 68.1 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C39" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "072a5956-40ee-49ab-81a0-cea5e884b913") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "64094fdf-e7c1-412b-aaa6-517c65b74c17") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "ee9f2bbd-84f7-4628-8a4f-50067a4c75dc") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b954ec9f-a7fa-45d6-988c-eac76fee17b6") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "f3e9cd74-c59f-4cfb-b502-e44bfbb4c81c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "c1df0e03-f08a-4792-a4d4-35a5f9931ff5") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "3e95a8a3-602e-4ab9-a06c-51df88214f28") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/2654a7e3-3523-44af-99fa-0d7b07654129") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "835d5d7f-44d5-45dc-b9c3-bd9958db3ce7") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "290cf7eb-b0c6-4e81-b86e-1a2362eccc0d") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "b193bcdb-7033-4d2c-95b0-0507033b3a20") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "ffc8d766-8379-44b1-996a-8af02af30449") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "a80a3e65-573a-412b-af21-83c3e3496755") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "ae3969fd-2b2d-4c9a-8178-8cda5ad1208f") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "bfac238e-42d5-4d92-93ac-fd349f6265f6") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" - (placed yes) - (layer "F.Cu") - (uuid "6c65f523-273a-4e34-a25b-808f20bd660b") - (at 150.06 65.7525 90) - (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "resistor handsolder") - (property "Reference" "R13" - (at 0 -1.17 90) - (layer "F.SilkS") - (uuid "215abfa1-9250-4a12-a71d-85a17abeeb53") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100" - (at 0 1.17 90) - (layer "F.Fab") - (uuid "b8b94f85-ca95-4100-82fc-04b55aad7812") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "437ab88a-aeae-4c0a-a30d-d309181ece22") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "694f4ba5-5981-498f-93aa-05fab2b88d92") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "7e693285-bf36-4c79-af29-92829bdf278e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Tolerance" "5%" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "842b7967-9ffe-4f86-bf9f-e29c32384ed8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "R_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/5dd7b07d-4f90-45ca-9c8c-fbd5a40e7801") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.167621 -0.38) - (end 0.167621 -0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "ea298741-516d-4816-b1e1-eb08e2cea7d4") - ) - (fp_line - (start -0.167621 0.38) - (end 0.167621 0.38) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2eb36eb0-050a-4ad7-8b79-2626fba4ea14") - ) - (fp_rect - (start -1.11 -0.47) - (end 1.11 0.47) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "490fd39c-9953-4104-b953-5c03c154eba6") - ) - (fp_rect - (start -0.525 -0.27) - (end 0.525 0.27) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0314fc94-5177-4d70-91df-e96f95443dc3") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "c4aa8195-3e88-47ef-9f38-52cbe4bd59ee") - (effects - (font - (size 0.26 0.26) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/1V2") - (pinfunction "~_1") - (pintype "passive") - (uuid "9fa52f17-ae15-433f-b2c3-3f5bb80c33db") - ) - (pad "2" smd roundrect - (at 0.5975 0 90) - (size 0.715 0.64) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pinfunction "~_2") - (pintype "passive") - (uuid "6bac5041-b184-4b01-ab59-5d52751758e7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) (footprint "Package_TO_SOT_SMD:SOT-23-5" (placed yes) (layer "F.Cu") @@ -7291,7 +6638,7 @@ (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") (tags "SOT TO_SOT_SMD") (property "Reference" "U4" - (at 0 -2.4 0) + (at -1.12 2.445 0) (layer "F.SilkS") (uuid "520154fc-491d-4d16-96a8-d088f0f20a10") (effects @@ -7302,7 +6649,7 @@ ) ) (property "Value" "AP2112K-3.3" - (at 0 2.4 0) + (at -0.03 2.465 0) (layer "F.Fab") (uuid "415a0477-b0c8-4031-a6a4-cba591ba8835") (effects @@ -7312,7 +6659,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -7323,7 +6670,7 @@ ) ) ) - (property "Description" "" + (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) (layer "F.Fab") (hide yes) @@ -7346,6 +6693,45 @@ ) ) ) + (property "MPN" "AP2112K-3.3TRG1" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0394eccb-b207-4c26-87e7-8cd3040631f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Diodes Incorporated" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f62c84cb-c1da-4ac3-9df6-e09e83f6d655") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C51118" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f8e8f824-5d1c-4ff5-b6d8-bb4125c90218") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "SOT?23?5*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/0394838e-c9f7-440c-8ab0-df38480a28e5") (sheetname "/Usb Connector/") @@ -7693,7 +7079,7 @@ (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C9" - (at 0 -1.85 0) + (at -3.4075 0.57 0) (layer "F.SilkS") (uuid "4e2ec4b8-3105-4ebc-a6f8-fcbdebe99077") (effects @@ -7725,7 +7111,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -7774,6 +7160,45 @@ ) ) ) + (property "MPN" "CL31A226MPHNNNE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b60c8ef8-7f2d-4444-9f6c-c1494fdfbc57") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae4efd6f-6388-4365-abe5-5afa19f19ec0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C96453" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fd59b825-d254-4549-836a-84d0e70cd87a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/4958bf79-3bd3-40cb-921a-918c2513cac6") (sheetname "/Power/") @@ -7873,13 +7298,13 @@ (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu") (uuid "6fc75293-c30e-483f-ad7f-f6bf6624a805") - (at 183.38 68.6075 90) + (at 182.56 68.57 90) (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C10" - (at 0 -1.85 90) + (at -3.18 -0.29 180) (layer "F.SilkS") - (uuid "7283d097-d247-46c5-a0a4-c268819df2be") + (uuid "bb525e92-89ca-4bc2-823c-f54fcda551b7") (effects (font (size 1 1) @@ -7890,7 +7315,7 @@ (property "Value" "22uF" (at 0 1.85 90) (layer "F.Fab") - (uuid "1c89139a-b564-46d9-ba31-300c9d72d9ab") + (uuid "bde6fbdf-229c-4395-b489-8cbb1233d5e3") (effects (font (size 1 1) @@ -7902,18 +7327,18 @@ (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "3a1af3e8-6d1f-48ec-bf54-67b36ad65e60") + (uuid "5fe8877f-7595-45dc-a620-8474d8e4ba77") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "d98b8c4e-d35f-42f0-81e2-4de105591d06") + (uuid "ad93ff07-99cc-4156-9aec-ed639885432a") (effects (font (size 1.27 1.27) @@ -7958,6 +7383,45 @@ ) ) ) + (property "MPN" "CL31A226MPHNNNE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "812e43cb-dcbb-457a-a370-8f5398adbee1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "12211d9d-8816-4c82-b7ac-81b4cc939873") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C96453" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "73dc0401-d2b5-4379-ad9c-b92df603637f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/061562c8-1c03-4562-a12a-753df40e89e5") (sheetname "/Power/") @@ -8061,7 +7525,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C18" - (at 0 -1.16 90) + (at -0.17 -1.93 0) (layer "F.SilkS") (uuid "4f5f0c16-ad89-48e6-9623-6cb6f6964cf8") (effects @@ -8072,7 +7536,7 @@ ) ) (property "Value" "100nF" - (at 0 1.16 90) + (at -0.31 -1.15 90) (layer "F.Fab") (uuid "ce216181-5fee-4bb4-beff-e4297084567a") (effects @@ -8093,7 +7557,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -8142,6 +7606,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2b179c99-e8b2-44a4-bc81-15ec6805a33a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fe624b28-3248-4c95-9d78-d302919e891b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf48bb6d-e6b8-4efb-8de3-a8083f85ebfe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/dd827515-66c6-49b7-bdf5-68265814dd48") (sheetname "/Usb Connector/") @@ -8241,11 +7744,11 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "F.Cu") (uuid "7628a846-ea65-4cec-9002-6d9c0f4108df") - (at 128.5 68.0675 90) + (at 130.5325 66.67 180) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C63" - (at 0 -1.16 90) + (at 1.1425 1.87 90) (layer "F.SilkS") (uuid "609f0362-e2a5-47c8-b873-5b5682cb2ae5") (effects @@ -8255,8 +7758,8 @@ ) ) ) - (property "Value" "10pF" - (at 0 1.16 90) + (property "Value" "18pF" + (at 0 1.16 0) (layer "F.Fab") (uuid "8ec7bf36-f84a-4448-890c-432e7d3e2a1f") (effects @@ -8267,7 +7770,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "63a8fda2-32ee-4878-8bd7-39c1845abd5d") @@ -8277,8 +7780,8 @@ ) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "33fb0900-d965-47c2-bf59-7ff61990a598") @@ -8289,7 +7792,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) + (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "8e8ee958-4a30-45b5-b344-396ffd2c9231") @@ -8301,7 +7804,7 @@ ) ) (property "Type" "C0G" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -8314,7 +7817,7 @@ ) ) (property "V" "50V" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -8326,6 +7829,45 @@ ) ) ) + (property "MPN" "0402CG180J500NT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c29ec5f1-8ea9-4ec9-a313-bca8a711e826") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ded22464-cefa-42cd-8c84-4303d8f52074") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cbfdd2d3-177e-4a2b-a530-6b5081998ad1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/3d74239c-f05b-463f-9923-62e57271a748") (sheetname "/ethernet/") @@ -8338,16 +7880,6 @@ ) (attr smd) (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "0b4d1f46-33a4-410e-9e41-91b8276b630d") - ) (fp_line (start -0.115835 0.36) (end 0.115835 0.36) @@ -8358,6 +7890,16 @@ (layer "F.SilkS") (uuid "ec2b0e24-2938-4abb-a7d9-63b12e115501") ) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "0b4d1f46-33a4-410e-9e41-91b8276b630d") + ) (fp_rect (start -1.09 -0.46) (end 1.09 0.46) @@ -8381,7 +7923,7 @@ (uuid "f4504076-30cb-4af3-8a67-a1d45d44c5fd") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 0) (layer "F.Fab") (uuid "174c3490-1b1b-4405-b667-b6a716a15b6a") (effects @@ -8392,7 +7934,7 @@ ) ) (pad "1" smd roundrect - (at -0.5675 0 90) + (at -0.5675 0 180) (size 0.735 0.62) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) @@ -8401,7 +7943,7 @@ (uuid "83fd3974-9577-4375-b710-9edf34583413") ) (pad "2" smd roundrect - (at 0.5675 0 90) + (at 0.5675 0 180) (size 0.735 0.62) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) @@ -8422,14 +7964,14 @@ ) ) ) - (footprint "Resistor_SMD:R_0603_1608Metric_Pad0.98x0.95mm_HandSolder" + (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" (layer "F.Cu") (uuid "7e8d105c-9c67-41e9-9db5-e4fdc991bfeb") - (at 184.2 46.3125 -90) - (descr "Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (at 190.4 43.68 -90) + (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R8" - (at 0 -1.43 90) + (at -1.81 2.12 0) (layer "F.SilkS") (uuid "0ef0c512-5420-4681-9c7c-e7b53c63b674") (effects @@ -8439,8 +7981,8 @@ ) ) ) - (property "Value" "1M" - (at 0 1.43 90) + (property "Value" "510k" + (at 0 1.83 270) (layer "F.Fab") (uuid "c6374b3e-f158-4357-98ae-358cfc213c8d") (effects @@ -8451,7 +7993,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 270) (layer "F.Fab") (hide yes) (uuid "8d512f31-416f-4047-8a5a-c8d7438070bc") @@ -8461,8 +8003,8 @@ ) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Resistor" + (at 0 0 270) (layer "F.Fab") (hide yes) (uuid "e5deab54-cea4-4c90-a94e-066666dc9e19") @@ -8473,7 +8015,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) + (at 0 0 270) (layer "F.SilkS") (hide yes) (uuid "4817d285-1ed6-40b6-8c79-8cafffaf2f2b") @@ -8484,12 +8026,51 @@ ) ) ) + (property "MPN" "1206W4J0514T5E" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8fef26b9-5673-4183-8f2e-104400cff4a8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a781ab5a-872f-4da0-8339-618def3050c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25665" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "349afe82-058e-452a-8a68-d7f748a0c640") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property "Tolerance" "5%" (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "fde5ba80-77eb-4ccc-beed-93cf1810b26f") + (uuid "3a57380a-a2e1-4fbb-bf90-4bee29f9d17a") (effects (font (size 1 1) @@ -8510,8 +8091,8 @@ (attr smd) (duplicate_pad_numbers_are_jumpers no) (fp_line - (start -0.254724 0.5225) - (end 0.254724 0.5225) + (start -0.727064 0.91) + (end 0.727064 0.91) (stroke (width 0.12) (type solid) @@ -8520,8 +8101,8 @@ (uuid "83816f3a-4f3e-4efd-83ba-39b412589de8") ) (fp_line - (start -0.254724 -0.5225) - (end 0.254724 -0.5225) + (start -0.727064 -0.91) + (end 0.727064 -0.91) (stroke (width 0.12) (type solid) @@ -8530,8 +8111,8 @@ (uuid "494d9d1f-7805-4a74-b5e3-56c599752914") ) (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) + (start -2.45 -1.13) + (end 2.45 1.13) (stroke (width 0.05) (type solid) @@ -8541,8 +8122,8 @@ (uuid "efc28274-732a-48d0-9218-98f2ec56c2ad") ) (fp_rect - (start -0.8 -0.4125) - (end 0.8 0.4125) + (start -1.6 -0.8) + (end 1.6 0.8) (stroke (width 0.1) (type solid) @@ -8552,36 +8133,36 @@ (uuid "b35eb987-b74e-4fd1-b3bb-86b0e9d5ce17") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 270) (layer "F.Fab") (uuid "f36d2064-250b-456a-a4ae-fdfc8b4c0aeb") (effects (font - (size 0.4 0.4) - (thickness 0.06) + (size 0.8 0.8) + (thickness 0.12) ) ) ) (pad "1" smd roundrect - (at -0.9125 0 270) - (size 0.975 0.95) + (at -1.55 0 270) + (size 1.3 1.75) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.192308) (net "/Usb Connector/USB_GND") (pintype "passive") (uuid "7fda4ea7-2be8-4401-bddd-ba4ac8702090") ) (pad "2" smd roundrect - (at 0.9125 0 270) - (size 0.975 0.95) + (at 1.55 0 270) + (size 1.3 1.75) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") + (roundrect_rratio 0.192308) + (net "Net-(R19-Pad1)") (pintype "passive") (uuid "31714dba-f7e2-420c-82c5-72d45779b1fb") ) (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0603_1608Metric.step" + (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step" (offset (xyz 0 0 0) ) @@ -8597,11 +8178,11 @@ (placed yes) (layer "F.Cu") (uuid "7f312c74-96a7-4289-9c95-b4f9291a170e") - (at 124.9025 68.3 180) + (at 123.7725 68.77 180) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R15" - (at 0 -1.17 0) + (at -2.4975 -0.13 0) (layer "F.SilkS") (uuid "bca0aec0-1aa8-4ecc-b0ef-834af7b9e9bc") (effects @@ -8633,7 +8214,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -8669,6 +8250,45 @@ ) ) ) + (property "MPN" "0402WGF3300TCE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e85fcc63-1f55-4436-8894-9225ec0c5c9b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2c8e6f97-f6e2-4c4e-a565-e59d6a46a318") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25104" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "06c6c624-1551-451b-ab1a-a410350faf2e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/491a3ca2-910b-44fb-9a75-16317be08099") (sheetname "/ethernet/") @@ -8740,7 +8360,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/ethernet/ETH_3V3") - (pinfunction "~_1") (pintype "passive") (uuid "928385b9-c58a-49dd-b77f-544bfd9593f8") ) @@ -8750,7 +8369,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(J2-Pad12)") - (pinfunction "~_2") (pintype "passive") (uuid "d899925f-c977-41a5-8b83-19a6499db383") ) @@ -8767,190 +8385,6 @@ ) ) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "81ea70a0-e437-49db-83f1-cde0288b1148") - (at 150.04 63.5225 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C46" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "f0531d99-5ca5-448b-8ca3-652b94aaf2ad") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "10nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "d2702429-0c2e-4049-8ce0-9573cc99358e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "b678c5da-df7c-443a-82a2-08dd2b726831") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "ad12a913-db91-466d-a089-07a8440f8853") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "d97909be-9b6a-4edb-9b09-e1c51a286fb8") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "45f2cf21-bb91-403d-8141-4565e1c30031") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 90) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "a66f1925-5ab4-42a6-b0e3-5d931d873d40") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/73763384-ff95-4826-8da6-2de53070e62f/d1e24540-41c7-4c30-ba19-966c89396a11") - (sheetname "/fpga/") - (sheetfile "Fpga.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "fc98525f-71cb-47f4-a23d-31bed0d696a6") - ) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "f963c977-1f6e-4ebb-82b1-519ebf404b34") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "d457a79e-55a4-4498-a278-5dc925294f5e") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "0ce1a481-538d-480f-ac59-a21f5fef7d2c") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "b87911b7-aaac-4dcd-b02b-2277fc68da1a") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/fpga/VCCPLL_F") - (pintype "passive") - (uuid "4910aee7-1242-4dc3-af76-e16f9a0eac48") - ) - (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d2221115-48f7-4f8d-a7e3-2c4a45407bd7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (placed yes) (layer "F.Cu") @@ -8959,7 +8393,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R5" - (at 0 -1.17 90) + (at 2.5875 -0.015 180) (layer "F.SilkS") (uuid "aa02f449-3288-4dae-a8fe-4040c574a093") (effects @@ -8991,7 +8425,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -9027,6 +8461,45 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6155cb78-392c-4f01-933f-5439a11044c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7ba33d84-e296-4656-8f59-39bc32e98f96") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "afa4a3ac-3e24-47a1-a53c-1b94edbb4643") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/d3f8a728-ecb0-4726-bcef-5f87406081d8") (sheetname "/Power/") @@ -9098,7 +8571,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Power/3V3") - (pinfunction "~_1") (pintype "passive") (uuid "677a30a0-36de-4148-b185-8cf83c5d68e6") ) @@ -9108,7 +8580,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/GC_ON") - (pinfunction "~_2") (pintype "passive") (uuid "74746c5b-cea6-4078-9c34-5ac08e32ff16") ) @@ -9125,190 +8596,6 @@ ) ) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "863f96cd-6abd-4268-a4b9-8a171cea15fc") - (at 179.1 50.0325 -90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C30" - (at 0 -1.16 90) - (layer "F.SilkS") - (uuid "e8e50628-5854-4046-8820-2098b14741be") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 90) - (layer "F.Fab") - (uuid "17844d92-c073-490d-b7e7-3728d8057a00") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "797aa1a8-5a30-45eb-b5e9-076d00c41d6a") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "Unpolarized capacitor" - (at 0 0 90) - (layer "F.Fab") - (hide yes) - (uuid "98cab10d-5943-41eb-8a0b-be9792bfbbb5") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) - (layer "F.SilkS") - (hide yes) - (uuid "1be4a317-b106-4d14-8f19-064551d975eb") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5bbbcb71-e750-49b8-9365-88114a4f6d6a") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 270) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "addb4513-a2e3-4cd6-8066-6c815c0c978c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/19d0fbca-0635-4f4e-9e3b-e407a6625f21") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "67ed31aa-8a3f-4559-a358-20416e4b6fb9") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "dc0bf41e-acdc-4a03-972f-71c9b50f2d73") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "ba17f9e6-a39c-48c3-a8ba-1cc610cc7c99") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "42bd4e68-ed87-45e5-873b-9637d17159f1") - ) - (fp_text user "${REFERENCE}" - (at 0 0 90) - (layer "F.Fab") - (uuid "04906e5f-260b-4313-b442-1048663cb5f8") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "20d43b10-064c-4e0e-93fa-207dc574c679") - ) - (pad "2" smd roundrect - (at 0.5675 0 270) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "d9f2ca70-f6c3-45bb-9b99-7904e3ca9dd7") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "866a77c6-ea40-4eec-bc9d-d74587b6542a") @@ -9316,7 +8603,7 @@ (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C16" - (at 0 -1.43 90) + (at 2.4775 1.61 0) (layer "F.SilkS") (uuid "21d37c69-1bff-4f4a-844e-7652f9c805e0") (effects @@ -9348,7 +8635,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -9397,6 +8684,45 @@ ) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0c856d99-d02c-4c0f-81d7-3432f15556bb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fd69bf2e-6118-433a-b93c-229f1cc7561d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15849" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9c59bdaa-07d1-467a-a166-44118dc6e87e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/fd75998f-f65c-4a86-b2a4-20e7c515341f") (sheetname "/Usb Connector/") @@ -9500,9 +8826,9 @@ (descr "USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf") (tags "USB Type-C Receptacle Through-hole Right angle") (property "Reference" "J1" - (at 0 -5.25 90) + (at 2.95 1.835 180) (layer "F.SilkS") - (uuid "6a687eea-b8e8-404c-add2-4866d47f7b49") + (uuid "c1a969b3-5ace-4321-a2a4-c81ba283dbcc") (effects (font (size 1 1) @@ -9513,7 +8839,7 @@ (property "Value" "USB_C" (at 0 10.95 90) (layer "F.Fab") - (uuid "356409cb-c7af-4b32-9ae1-e85e5d71c4cc") + (uuid "2b46bc47-4e34-4170-907a-e29608f5f6d0") (effects (font (size 1 1) @@ -9521,12 +8847,12 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.usb.org/sites/default/files/documents/usb_type-c.zip" (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "705851f9-bd5d-4846-ac4c-522ccd58d394") + (uuid "437efe65-858f-42aa-8c77-a2f8eebcac50") (effects (font (size 1.27 1.27) @@ -9534,12 +8860,12 @@ ) ) ) - (property "Description" "" + (property "Description" "USB 2.0-only 16P Type-C Receptacle connector" (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "458aa5c7-90d7-4497-91bc-ea28f7f44c3b") + (uuid "4747bbe7-bff0-4f8a-a69e-c7330a9d2d30") (effects (font (size 1.27 1.27) @@ -9547,6 +8873,45 @@ ) ) ) + (property "MPN" "MC-711-H72" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cc4bac99-d200-4ad9-bf88-f04233cce4cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Hanbo Electronic" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a175a69b-6bef-4065-ac64-2e7aa58e07c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C6332303" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5229ec4b-275c-43f6-bda8-b0a2b0badd51") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "USB*C*Receptacle*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/32dd254f-fa86-4d6e-911b-5e9f063226e2") (sheetname "/Usb Connector/") @@ -9855,7 +9220,7 @@ (at 175.7425 51.27 180) (descr "SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf") (property "Reference" "Y1" - (at 0 -3 0) + (at 3.6625 1.73 0) (layer "F.SilkS") (uuid "3aaaa999-7f3f-4b91-97d7-51bb47dda106") (effects @@ -9887,7 +9252,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Four pin crystal, GND on pins 2 and 4" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -9975,6 +9340,45 @@ ) ) ) + (property "MPN" "X322512MOB4SI" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2f3e521-aa06-4110-8a60-a0b7dff32d24") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "YXC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9e8eb16d-ab5b-422d-ba65-5117f65249f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C70565" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "23d0841b-c3bc-4386-ba3e-501945b93b76") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "Crystal*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/b2c46570-9a02-4535-8cfa-bbcb003e9ab5") (sheetname "/Usb Connector/") @@ -10101,7 +9505,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C15" - (at 0 -1.16 0) + (at 2.4875 0.71 0) (layer "F.SilkS") (uuid "a137246c-99ef-4798-9ae8-619f3620b7bf") (effects @@ -10133,7 +9537,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -10182,6 +9586,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3f051560-8ea8-44e6-a33c-1d38bb362f1b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "538dc490-7ba5-4dc6-ba66-264cf503da23") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "00467eea-78c6-45f9-991c-3cd4b18d2d22") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/96c56b86-fd5a-49db-93bd-6bdb9369ace0") (sheetname "/Usb Connector/") @@ -10281,11 +9724,11 @@ (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (layer "F.Cu") (uuid "9e066c71-e4b5-4905-be6b-36c5c99661e4") - (at 193.2475 69.95) + (at 192.2475 69.92) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R1" - (at 0 -1.17 0) + (at -0.0175 1.16 0) (layer "F.SilkS") (uuid "7abf33fc-b2a7-44c9-b556-ac5dc97b0468") (effects @@ -10317,7 +9760,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -10353,6 +9796,45 @@ ) ) ) + (property "MPN" "0402WGF3302TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "11d600a9-9eec-4560-9c95-7a8223e4e5c2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d76e7194-5bcf-4f2a-b474-c8179846c0c6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25779" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fecd68fb-808e-4205-ace5-1446c3d9c33b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/3af0a60c-0acb-4283-ae24-9e595fefdf76") (sheetname "/Power/") @@ -10424,7 +9906,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Power/GC_3V3") - (pinfunction "~_1") (pintype "passive") (uuid "d939b488-03a3-4c1e-89e9-7bac39309436") ) @@ -10434,7 +9915,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(U3-VFB)") - (pinfunction "~_2") (pintype "passive") (uuid "671732b0-afb6-4f16-b1da-c4d7b7c25710") ) @@ -10458,7 +9938,7 @@ (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") (tags "capacitor handsolder") (property "Reference" "C13" - (at 0 -1.68 0) + (at -3.2875 -0.71 0) (layer "F.SilkS") (uuid "bb81bd1e-433b-40d1-ac07-8ce9c62566e1") (effects @@ -10490,7 +9970,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -10539,6 +10019,45 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9c32db9f-c3b8-4a7a-8076-e2c3e739e08e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5a02ebb5-715c-4895-82cc-9b036b5cca98") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6333bc7f-75c6-474c-bb36-ccacb29054ed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/3dbfa4c5-ddf9-4f40-8a34-fb081e2dc3a2") (sheetname "/Usb Connector/") @@ -10638,11 +10157,11 @@ (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (layer "F.Cu") (uuid "af2471ca-806c-49ef-badb-6eb09c9b2cb3") - (at 195.7225 69.975) + (at 194.51 69.91) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R2" - (at 0 -1.17 0) + (at 0.01 1.15 0) (layer "F.SilkS") (uuid "79117000-dda9-4e72-a5cc-0d8f0f7bd7c4") (effects @@ -10674,7 +10193,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -10710,6 +10229,45 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "783f7460-7729-4070-8e0f-c1ea40e91c45") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9305139b-4a47-4a4d-96fe-d0b5558ad280") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "910ada9a-cb2d-4a2c-ac46-71278748cf6c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/dbd2e12a-da5d-4b10-9a44-b30c81d5cd46") (sheetname "/Power/") @@ -10781,7 +10339,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(U3-VFB)") - (pinfunction "~_1") (pintype "passive") (uuid "4f5f5a85-5fea-4df0-b8fd-3f93c611757b") ) @@ -10791,7 +10348,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "GND") - (pinfunction "~_2") (pintype "passive") (uuid "0984da66-9d43-47bd-84b0-a424cb61253f") ) @@ -10812,13 +10368,13 @@ (placed yes) (layer "F.Cu") (uuid "b08302fb-19f5-43fe-8c9f-f458f6756d0c") - (at 124.8975 67.2 180) + (at 123.7675 67.67 180) (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R14" - (at 0 -1.17 0) + (at -2.5025 0.04 0) (layer "F.SilkS") - (uuid "3e1b8621-f69d-462a-b069-22ea124ee150") + (uuid "fce85cac-92e6-4a44-92a8-ea0938655bec") (effects (font (size 1 1) @@ -10829,7 +10385,7 @@ (property "Value" "330" (at 0 1.17 0) (layer "F.Fab") - (uuid "dce16bf5-9fa5-4953-af37-8392e33b825d") + (uuid "697dd56b-c48e-4b68-97b6-0a8d65ea3191") (effects (font (size 1 1) @@ -10841,18 +10397,18 @@ (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "2209fd1b-6873-430a-a9a1-539fc304c1ed") + (uuid "b5064840-c03e-4577-90f2-fef214a82235") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "d93006b3-8a07-47d7-935b-8cf207d88a2b") + (uuid "6cda0f2f-21ce-41c5-be35-67f9bcb58bc6") (effects (font (size 1.27 1.27) @@ -10884,6 +10440,45 @@ ) ) ) + (property "MPN" "0402WGF3300TCE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "551e3fe9-9a1d-4af7-86a9-782dc393fec3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "89840af5-f2e5-4345-8ad1-f6ed79bd146b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25104" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "abae0dda-5516-4cf0-9996-75b8456c6acc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/a3738cfe-a3fb-4236-85b3-1a7829a89d7d") (sheetname "/ethernet/") @@ -10955,7 +10550,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/ethernet/ETH_3V3") - (pinfunction "~_1") (pintype "passive") (uuid "98439891-ab68-415f-9c31-66a7af04bf29") ) @@ -10965,7 +10559,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(J2-Pad9)") - (pinfunction "~_2") (pintype "passive") (uuid "46ab6650-9622-41a1-8a9c-71fc2b2e0513") ) @@ -10989,7 +10582,7 @@ (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") (tags "capacitor handsolder") (property "Reference" "C17" - (at 0 -1.68 0) + (at 2.4875 0.16 90) (layer "F.SilkS") (uuid "d370df9b-4e37-4863-9016-240207276421") (effects @@ -11021,7 +10614,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -11070,6 +10663,45 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d04b9451-35a0-4a5b-a804-2f54b9604404") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8dcc3c72-bc22-4db9-b3f3-5eff1d4f2a88") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "74422ccc-3355-43f2-aff5-bab8265bf19c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/abfcc5d9-af5d-4a76-88e5-5d0838395d84") (sheetname "/Usb Connector/") @@ -11173,7 +10805,7 @@ (descr "SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf)") (tags "SOIC SO") (property "Reference" "U6" - (at 0 -6.1 90) + (at 4.77 6.03 180) (layer "F.SilkS") (uuid "a47cb010-0f3c-4f43-b4c5-f45f77228b54") (effects @@ -11194,7 +10826,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.analog.com/media/en/technical-documentation/data-sheets/ADuM6000.PDF" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -11205,7 +10837,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Isolated 5 kV DC-to-DC Converter" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -11228,6 +10860,45 @@ ) ) ) + (property "MPN" "ADUM5000ARWZ" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "917394ec-2625-40f7-8369-1fbe557c7e3c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Analog Devices" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "810e5b63-beaf-492a-a96f-6ce811e5b6f3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C579411" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4995f395-1265-4235-9c20-d425a28bf55b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "SOIC*7.5x12.8mm*P1.27mm* SOIC*7.5x10.3mm*P1.27mm*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/45129354-a44a-4ad2-b22b-df2c62835b6e") (sheetname "/Usb Connector/") @@ -11638,7 +11309,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R18" - (at 0 -1.17 0) + (at 0.33 1.18 0) (layer "F.SilkS") (uuid "f48ee49b-79a0-4003-8086-0d5931e2b021") (effects @@ -11670,7 +11341,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -11706,6 +11377,45 @@ ) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2b3e57ef-f36b-4ee6-bc07-d2ec81b1450b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6bfccf15-abef-4a84-b0cb-006884cbb76b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b79c8d6b-6d5f-41d9-9c69-39e6b3e2c0ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/1b071f68-b4ea-469c-942f-de06380c9077/3fc0980d-551b-49f7-a302-ce717c6df384") (sheetname "/exi/") @@ -11777,7 +11487,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/exi/SP1_3V3") - (pinfunction "~_1") (pintype "passive") (uuid "fca4c79e-89d7-46d1-9846-308e983f986b") ) @@ -11787,7 +11496,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(J3-ExtIn)") - (pinfunction "~_2") (pintype "passive") (uuid "a42c0010-1e04-4227-a51c-839aedc05813") ) @@ -11804,16 +11512,226 @@ ) ) ) + (footprint "Resistor_SMD:R_1206_3216Metric_Pad1.30x1.75mm_HandSolder" + (layer "F.Cu") + (uuid "c3850d0e-28a2-47c6-b891-979030dc2cbf") + (at 190.4 48.62 -90) + (descr "Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "resistor handsolder") + (property "Reference" "R19" + (at -1.84 2.6 180) + (layer "F.SilkS") + (uuid "14b6a92a-a1e5-48a0-a306-30889a8108dd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "510k" + (at 0 1.83 90) + (layer "F.Fab") + (uuid "1c4483e1-5f12-412c-a307-4516c3e7c89d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1da370d7-b459-4183-940f-e9c13d010110") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "dd679069-6e4f-4390-9853-1af099137919") + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "F.SilkS") + (hide yes) + (uuid "73266c9e-873e-4bd6-9053-ba349be49622") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MPN" "1206W4J0514T5E" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5142ad7d-f5b6-419d-9643-4db801c85e1a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1a1c1fa3-662c-4a9a-8f33-fbab8e5c7b40") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25665" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9cb2c40e-f3ac-4844-b46b-c8cbb423cf2d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "5%" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "53ecf3be-3ef1-4a40-9e2d-9a796ceb5178") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/1877149c-1083-469c-b3d7-88f374a026d7") + (sheetname "/Usb Connector/") + (sheetfile "Usb Connector.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.727064 0.91) + (end 0.727064 0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "be62efc6-1cb9-4ef5-ba67-e52b36400af0") + ) + (fp_line + (start -0.727064 -0.91) + (end 0.727064 -0.91) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "8ca7f459-a1e1-4402-ab6f-1ad908d5a082") + ) + (fp_rect + (start -2.45 -1.13) + (end 2.45 1.13) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.CrtYd") + (uuid "a82740b0-ffd1-4cf6-a2ea-284a3c2c48b9") + ) + (fp_rect + (start -1.6 -0.8) + (end 1.6 0.8) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "e43e6220-6cc9-42e1-9190-f13784dfd965") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "27a424db-3555-47c2-bee0-2759041b5ac7") + (effects + (font + (size 0.8 0.8) + (thickness 0.12) + ) + ) + ) + (pad "1" smd roundrect + (at -1.55 0 270) + (size 1.3 1.75) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.192308) + (net "Net-(R19-Pad1)") + (pintype "passive") + (uuid "7964ddb3-0447-411e-a699-cc1a2f6d550d") + ) + (pad "2" smd roundrect + (at 1.55 0 270) + (size 1.3 1.75) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.192308) + (net "GND") + (pintype "passive") + (uuid "f7f85731-bde9-4594-bbe0-70ff90e898f2") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_1206_3216Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "F.Cu") (uuid "c3c363c0-b17c-4bb9-a2e5-d1747ad04bf0") - (at 193.7625 65.5) + (at 193.2825 65.5) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C5" - (at 0 -1.16 0) + (at -4.3425 0.05 180) (layer "F.SilkS") - (uuid "ef51d3dd-e69b-4967-862e-db2a75a336e1") + (uuid "523367d7-8577-40a6-b9a4-8cd1974c99b2") (effects (font (size 1 1) @@ -11824,7 +11742,7 @@ (property "Value" "100nF" (at 0 1.16 0) (layer "F.Fab") - (uuid "0bb62527-ab33-4164-9b7c-c2d156a367a8") + (uuid "d42da05d-3fbe-468f-8095-478fdca22f09") (effects (font (size 1 1) @@ -11836,18 +11754,18 @@ (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "f919b571-0835-493b-a453-6b21a943030b") + (uuid "d8ee4397-c064-48d5-8c57-e19ac424d7c1") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) - (uuid "21dfe869-2302-45fc-a999-6696ca42f72b") + (uuid "0fe89258-86d7-4bbe-8794-19a9a830851a") (effects (font (size 1.27 1.27) @@ -11879,7 +11797,7 @@ ) ) ) - (property "V" "50V" + (property "V" "16V" (at 0 0 0) (unlocked yes) (layer "F.Fab") @@ -11892,6 +11810,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d0bac0bc-ffed-4736-b525-bdde79130b89") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fe2aa0ca-65e2-48f3-96e0-09b2e1be88de") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2a8f8b90-cb9a-44e5-a174-d1c36504e642") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/69c1caed-4aed-487e-8a01-11a407bf27c4") (sheetname "/Power/") @@ -11995,7 +11952,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C26" - (at 0 -1.16 0) + (at 2.51 -0.04 0) (layer "F.SilkS") (uuid "38756026-8c64-4bd1-a5f6-2ae734bfb8d2") (effects @@ -12027,7 +11984,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -12076,6 +12033,45 @@ ) ) ) + (property "MPN" "0402CG180J500NT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "296e3f3c-bd67-40b0-bd07-889160e2177a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e89ef5fb-87e1-43b0-8c55-946bec9c44fa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d792901-bee2-40a5-84db-da42f4a214cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/7e1a2e99-229f-4098-8ab3-a13ae887d595") (sheetname "/Usb Connector/") @@ -12180,7 +12176,7 @@ (descr "SOT, 5 Pin (JEDEC MO-178 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") (tags "SOT TO_SOT_SMD") (property "Reference" "U1" - (at 0 -2.4 0) + (at 1.9975 2.12 0) (layer "F.SilkS") (uuid "ca13b5fc-1797-4eb0-b944-76d2f9beddec") (effects @@ -12191,7 +12187,7 @@ ) ) (property "Value" "AP2112K-1.2" - (at 0 2.4 0) + (at -1.2525 1.79 0) (layer "F.Fab") (uuid "ad5bbfc3-62d2-4efa-928e-27739407e5aa") (effects @@ -12201,7 +12197,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.diodes.com/assets/Datasheets/AP2112.pdf" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -12212,7 +12208,7 @@ ) ) ) - (property "Description" "" + (property "Description" "600mA low dropout linear regulator, with enable pin, 2.5V-6V input voltage range, 1.2V fixed positive output, SOT-23-5" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -12235,6 +12231,45 @@ ) ) ) + (property "MPN" "AP2112K-1.2TRG1" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9ba5a45e-60ea-42b1-b421-eadf7de58b90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Diodes Incorporated" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fac0b56a-49f3-4ac3-b17b-5013e653ca2c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C460310" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bc7d8b2f-0162-4ea6-9b10-3ecbbc5665e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "SOT?23?5*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/716fa60f-7749-409d-a712-77c479795cf7") (sheetname "/Power/") @@ -12575,16 +12610,16 @@ ) ) ) - (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu") (uuid "cab935b2-c71c-4335-b9d8-6336c203d352") - (at 197.43 46.3325 -90) - (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (at 196.19 46.1 -90) + (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C19" - (at 0 -1.43 270) + (at -1.92 2.62 0) (layer "F.SilkS") - (uuid "a6bd5432-3e7f-4003-8675-cea38307a0aa") + (uuid "426ff019-519c-4315-94e3-08c613ae9e93") (effects (font (size 1 1) @@ -12593,9 +12628,9 @@ ) ) (property "Value" "1nF" - (at 0 1.43 270) + (at 0 1.85 270) (layer "F.Fab") - (uuid "08388fa2-b549-46a6-9e4f-9d14aae8fa43") + (uuid "aca9e538-1b0e-42c6-8d87-97deeeabd60d") (effects (font (size 1 1) @@ -12607,18 +12642,18 @@ (at 0 0 270) (layer "F.Fab") (hide yes) - (uuid "8748ce67-2146-4857-8ba5-76851d0ec9b4") + (uuid "47038d83-548e-4a30-bad7-4b70614fda1a") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 270) (layer "F.Fab") (hide yes) - (uuid "d859ca14-ccb0-4b70-8c66-269a58109c13") + (uuid "d6578027-04e6-44b7-be5c-cfb8852e5e30") (effects (font (size 1.27 1.27) @@ -12637,12 +12672,12 @@ ) ) ) - (property "Type" "C0G" + (property "MPN" "1206B102K202NT" (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "057d92cc-ded1-42ec-ab8b-4e6494d67c60") + (uuid "1f7874d2-57a4-4d06-aaf0-45f5a88369c5") (effects (font (size 1 1) @@ -12650,12 +12685,51 @@ ) ) ) - (property "V" "100V" + (property "Manufacturer" "FH" (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "6798d51a-64b8-4769-8e83-e0103dbb62c0") + (uuid "0530db83-5339-418d-9f86-764a91133ed9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C9196" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f8522d0e-f41d-4122-8d66-955b20ea14ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "328fc830-666a-4d65-9ba4-666e27ecee4a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "V" "2kV" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eff243b2-c97b-4801-aaa5-a2fb9910f61e") (effects (font (size 1 1) @@ -12676,8 +12750,8 @@ (attr smd) (duplicate_pad_numbers_are_jumpers no) (fp_line - (start -0.146267 0.51) - (end 0.146267 0.51) + (start -0.711252 0.91) + (end 0.711252 0.91) (stroke (width 0.12) (type solid) @@ -12686,8 +12760,8 @@ (uuid "c54b3be8-90ae-46c8-b1c8-0520b040fe49") ) (fp_line - (start -0.146267 -0.51) - (end 0.146267 -0.51) + (start -0.711252 -0.91) + (end 0.711252 -0.91) (stroke (width 0.12) (type solid) @@ -12696,8 +12770,8 @@ (uuid "7cd8c776-8af5-4b08-82f4-67ac5898b719") ) (fp_rect - (start -1.65 -0.73) - (end 1.65 0.73) + (start -2.48 -1.15) + (end 2.48 1.15) (stroke (width 0.05) (type solid) @@ -12707,8 +12781,8 @@ (uuid "20accdc4-8a58-417a-9331-e3765ca81cbd") ) (fp_rect - (start -0.8 -0.4) - (end 0.8 0.4) + (start -1.6 -0.8) + (end 1.6 0.8) (stroke (width 0.1) (type solid) @@ -12723,31 +12797,31 @@ (uuid "70f70e88-d148-475a-acbb-5ebaf546bd0c") (effects (font - (size 0.4 0.4) - (thickness 0.06) + (size 0.8 0.8) + (thickness 0.12) ) ) ) (pad "1" smd roundrect - (at -0.8625 0 270) - (size 1.075 0.95) + (at -1.5625 0 270) + (size 1.325 1.8) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.188679) (net "/Usb Connector/USB_GND") (pintype "passive") (uuid "4c4d3b72-5c8d-42df-b96f-8f6335930931") ) (pad "2" smd roundrect - (at 0.8625 0 270) - (size 1.075 0.95) + (at 1.5625 0 270) + (size 1.325 1.8) (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) + (roundrect_rratio 0.188679) (net "GND") (pintype "passive") (uuid "73a01168-d427-4bf5-a6ba-9f6d2719b8e5") ) (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_1206_3216Metric.step" (offset (xyz 0 0 0) ) @@ -12766,7 +12840,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R6" - (at 0 -1.17 0) + (at -2.3475 -0.23 0) (layer "F.SilkS") (uuid "e726717b-ef6a-4de2-aab4-a960594fc327") (effects @@ -12798,7 +12872,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -12834,6 +12908,45 @@ ) ) ) + (property "MPN" "0402WGF5101TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "81951a75-5be7-4f41-a956-ffe4f09dad5e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6e86f030-eda1-4e95-81df-e71f69706206") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25905" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2ad33169-6f8f-4798-b93f-8fffbb009cae") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/6163b4dd-eb2a-43f3-ae4c-e626325177d6") (sheetname "/Usb Connector/") @@ -12937,7 +13050,7 @@ (descr "SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf)") (tags "SOIC SO") (property "Reference" "U7" - (at 0 -3.4 90) + (at -2.9 3.36 180) (layer "F.SilkS") (uuid "daec4f47-1584-4f80-9609-526ea6834fde") (effects @@ -12958,7 +13071,7 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/20001749K.pdf" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -12969,7 +13082,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Serial EEPROM, 93 Series, 2.5V, DIP-8/SOIC-8" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -12992,6 +13105,45 @@ ) ) ) + (property "MPN" "93LC46BT-I/SN" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bfb2b7f4-7972-44d1-8161-f9a1130cada1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Microchip" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "74b5bce5-4a8c-4f9f-9187-4f9edc4a3a94") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C16253" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "df570712-43fe-4a10-80f2-6fbbc07eda48") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "DIP*W7.62mm* SOIC*3.9x4.9mm*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/91b7168e-7e94-4d63-a038-c800c3ac6d9b") (sheetname "/Usb Connector/") @@ -13319,7 +13471,7 @@ (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") (tags "capacitor handsolder") (property "Reference" "C24" - (at 0 -1.68 90) + (at -2.5225 -0.025 180) (layer "F.SilkS") (uuid "019ff6e1-24ba-4eb9-a59a-1922b5c6c7ad") (effects @@ -13351,7 +13503,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -13400,6 +13552,45 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "21e7c2ec-9079-4238-bf3f-d26757cf215f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4e31468b-075f-4047-bada-c2f46254c113") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "44358faf-0098-41cc-81d4-b5c03aca57be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/484b0d90-fa80-433f-bd28-bf3b887bd62b") (sheetname "/Usb Connector/") @@ -13503,7 +13694,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C8" - (at 0 -1.16 0) + (at 1.8975 -0.135 0) (layer "F.SilkS") (uuid "a2c9a4bb-b69e-472d-9f57-a6ad1be0ad44") (effects @@ -13584,6 +13775,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "60912739-f9cd-4dd4-a995-84a124b3bb39") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4f40eadf-7680-4b3f-a330-f1245716f4e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "62e46369-808d-4e80-9941-7d9e718e28fa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/66fe99cb-c32f-475c-a312-9024c18895ef") (sheetname "/Power/") @@ -13683,11 +13913,11 @@ (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu") (uuid "dbd14aa4-8388-4206-bb02-a00529d34685") - (at 197.91 64.9 -90) + (at 197.93 64.91 -90) (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") (tags "capacitor handsolder") (property "Reference" "C4" - (at 0 -1.68 90) + (at -2.46 0 180) (layer "F.SilkS") (uuid "3279c720-e3b5-4648-8060-c74e68c73ba1") (effects @@ -13719,7 +13949,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -13768,6 +13998,45 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "887f2ce7-57a8-4ef7-8c72-42f3c9cd4458") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "385581ee-1f50-49cd-b558-232452c78b82") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6afe49c2-372d-4a30-9f65-10d7eb80ba6e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/0abc5ec0-734c-4ff0-a352-5b251befe437") (sheetname "/Power/") @@ -13867,11 +14136,11 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "F.Cu") (uuid "dc0cd3de-5847-4f6e-af7b-b129eebd3a1f") - (at 128.5 70.4325 -90) + (at 134.45 68.3225 -90) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C62" - (at 0 -1.16 90) + (at 0.7375 -1.05 270) (layer "F.SilkS") (uuid "89ff363a-0f2e-4a1d-a993-81a6cea8f3bb") (effects @@ -13881,7 +14150,7 @@ ) ) ) - (property "Value" "10pF" + (property "Value" "18pF" (at 0 1.16 90) (layer "F.Fab") (uuid "455d702f-8965-424e-ba39-6a6b53afa26d") @@ -13903,7 +14172,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -13952,6 +14221,45 @@ ) ) ) + (property "MPN" "0402CG180J500NT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d875d683-5dc5-48da-ad58-66a9226e0987") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "FH" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9edd235c-765b-4e94-9b6f-89e1e9cacf3e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1549" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26e5afd8-03de-4a32-b8a9-4a4a1bbb78ce") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/f8520a63-5936-4326-8d7f-ee8f61969721") (sheetname "/ethernet/") @@ -14052,11 +14360,11 @@ (placed yes) (layer "F.Cu") (uuid "e081179a-d499-4c98-861e-1d3a1a9712f3") - (at 197.4 43.1 -90) + (at 197.34 41.1475 -90) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C21" - (at 0 -1.16 90) + (at -0.4375 1.93 180) (layer "F.SilkS") (uuid "41ed0463-b7c5-4632-b2f9-af58f6b51397") (effects @@ -14066,7 +14374,7 @@ ) ) ) - (property "Value" "0.1uF" + (property "Value" "100nF" (at 0 1.16 90) (layer "F.Fab") (uuid "ee1a80c9-33cd-4bc6-91d0-7a72026c03a8") @@ -14088,7 +14396,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -14137,6 +14445,45 @@ ) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1b9ead84-cbd8-4da3-ba2e-4e2bec0670ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d5420fad-5dd7-47b2-b2c9-9bd1df07d6f8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ce355d1a-1e48-4490-9278-3ae087e8fb0b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/cfcbd4b1-9213-400e-b190-98fbf7ce450c") (sheetname "/Usb Connector/") @@ -14240,7 +14587,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R3" - (at 0 -1.17 0) + (at -0.3875 1.07 0) (layer "F.SilkS") (uuid "7b092813-e152-4122-81bd-94f1ca0c6e1b") (effects @@ -14272,7 +14619,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -14308,6 +14655,45 @@ ) ) ) + (property "MPN" "0402WGF2003TCE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ef27fe75-d065-4a87-b369-8ff294153d8a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fd949f4f-e723-4aa6-9547-c41d0b7dc697") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25764" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "efb3dd55-dad6-4347-b648-137778696a7f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/15194bd9-79db-4391-90a1-5d3f68e56164") (sheetname "/Power/") @@ -14379,7 +14765,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Power/GC_3V3") - (pinfunction "~_1") (pintype "passive") (uuid "9c05c343-d6b7-412e-993f-8276befca860") ) @@ -14389,7 +14774,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(U2-PR1)") - (pinfunction "~_2") (pintype "passive") (uuid "a3d8d3c9-7218-4bf6-bb3d-9c761ef28900") ) @@ -14406,198 +14790,14 @@ ) ) ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" - (layer "F.Cu") - (uuid "e30171d0-c0c0-4ea1-b83e-3ee2972a83be") - (at 170.2875 50.63 180) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") - (tags "capacitor handsolder") - (property "Reference" "C20" - (at 0 -1.16 0) - (layer "F.SilkS") - (uuid "d5465119-5eac-490e-b6a4-e0162261f73e") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Value" "100nF" - (at 0 1.16 0) - (layer "F.Fab") - (uuid "ef6f6b2a-3d68-4af3-9fd6-6054754c4176") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "77757ceb-8616-48c7-93aa-d9e599862921") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "Description" "" - (at 0 0 0) - (layer "F.Fab") - (hide yes) - (uuid "b4bdebb7-b9c2-4fa3-8e01-f049a1706e86") - (effects - (font - (size 1.27 1.27) - ) - ) - ) - (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) - (layer "F.SilkS") - (hide yes) - (uuid "7ce1be09-6c3a-4b5d-a3a3-4c1f20b8205d") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Type" "X7R" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "38eb008d-555f-4df9-b909-b0d5dca53f9f") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "V" "10V" - (at 0 0 180) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "ad91dfb4-942f-4b44-b7ec-4afb0eeddfee") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property ki_fp_filters "C_*") - (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4c941593-b81d-4a2e-a6a5-787c20d5f444") - (sheetname "/Usb Connector/") - (sheetfile "Usb Connector.kicad_sch") - (units - (unit - (name "A") - (pins "1" "2") - ) - ) - (attr smd) - (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "b936ee9b-ab52-4ee2-b42d-58e59dbbb1ed") - ) - (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "46b9467b-eac6-43f0-a13e-ba493c0f1da3") - ) - (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) - (stroke - (width 0.05) - (type solid) - ) - (fill no) - (layer "F.CrtYd") - (uuid "98b3d3ed-0b97-445f-adf4-1b3f200f68ef") - ) - (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) - (stroke - (width 0.1) - (type solid) - ) - (fill no) - (layer "F.Fab") - (uuid "a305ef7d-70c8-44ce-8424-26a4c9bbbbd8") - ) - (fp_text user "${REFERENCE}" - (at 0 0 0) - (layer "F.Fab") - (uuid "40323839-30b8-4613-ac5e-22f77a7b04b1") - (effects - (font - (size 0.25 0.25) - (thickness 0.04) - ) - ) - ) - (pad "1" smd roundrect - (at -0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "GND") - (pintype "passive") - (uuid "3519e04a-b68e-4338-adfb-f258bfaf4459") - ) - (pad "2" smd roundrect - (at 0.5675 0 180) - (size 0.735 0.62) - (layers "F.Cu" "F.Mask" "F.Paste") - (roundrect_rratio 0.25) - (net "/Power/3V3") - (pintype "passive") - (uuid "d1642d5d-a9fd-4948-a786-63dfb21308c8") - ) - (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) - ) - (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "F.Cu") (uuid "e3701034-27d3-4f3b-873c-4a0c806ff7ae") - (at 196.4 68.2625 90) - (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (at 196.15 66.8375 -90) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C6" - (at 0 -1.16 90) + (at -2.2575 0.02 180) (layer "F.SilkS") (uuid "6435f23a-e205-45bc-84fd-8fce7b0ee6bf") (effects @@ -14608,7 +14808,7 @@ ) ) (property "Value" "100nF" - (at 0 1.16 90) + (at 0 1.43 90) (layer "F.Fab") (uuid "224de69f-aa9b-43ba-8e63-9fac8714fde7") (effects @@ -14629,7 +14829,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -14652,12 +14852,51 @@ ) ) ) - (property "Type" "X7R" - (at 0 0 90) + (property "MPN" "CC0603KRX7R9BB104" + (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "a282fc82-5dd2-4196-bfb5-1fccad2f4931") + (uuid "5645782b-5d98-44e6-975f-8c22ad756056") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "YAGEO" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0750ef11-64d2-4147-8d8a-9cf81a8a32ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C14663" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "940d26bb-9507-46e5-9325-3cf2cd589d48") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bee9b3d7-c7ce-4e68-98df-0154dcd3a0c7") (effects (font (size 1 1) @@ -14666,11 +14905,11 @@ ) ) (property "V" "50V" - (at 0 0 90) + (at 0 0 270) (unlocked yes) (layer "F.Fab") (hide yes) - (uuid "7b09d662-7065-4505-9dd0-4a6e37e84913") + (uuid "a9917552-8c06-432b-88a3-e2157a7f9c5f") (effects (font (size 1 1) @@ -14691,8 +14930,8 @@ (attr smd) (duplicate_pad_numbers_are_jumpers no) (fp_line - (start -0.115835 -0.36) - (end 0.115835 -0.36) + (start -0.146267 0.51) + (end 0.146267 0.51) (stroke (width 0.12) (type solid) @@ -14701,8 +14940,8 @@ (uuid "84ed9b69-f4e8-4cf3-9899-787f186f3c03") ) (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) + (start -0.146267 -0.51) + (end 0.146267 -0.51) (stroke (width 0.12) (type solid) @@ -14711,8 +14950,8 @@ (uuid "2ef5260b-1654-40f6-9397-0ab787dac263") ) (fp_rect - (start -1.09 -0.46) - (end 1.09 0.46) + (start -1.65 -0.73) + (end 1.65 0.73) (stroke (width 0.05) (type solid) @@ -14722,8 +14961,8 @@ (uuid "110e9238-5fe8-4eb4-83fe-231fa598d3e6") ) (fp_rect - (start -0.5 -0.25) - (end 0.5 0.25) + (start -0.8 -0.4) + (end 0.8 0.4) (stroke (width 0.1) (type solid) @@ -14738,14 +14977,14 @@ (uuid "fe0e4ee3-5830-4b13-b4ca-108e662a8a82") (effects (font - (size 0.25 0.25) - (thickness 0.04) + (size 0.4 0.4) + (thickness 0.06) ) ) ) (pad "1" smd roundrect - (at -0.5675 0 90) - (size 0.735 0.62) + (at -0.8625 0 270) + (size 1.075 0.95) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "GND") @@ -14753,8 +14992,8 @@ (uuid "aa3903ff-27b5-4cc3-9fd6-152f0becac67") ) (pad "2" smd roundrect - (at 0.5675 0 90) - (size 0.735 0.62) + (at 0.8625 0 270) + (size 1.075 0.95) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Power/12V_EXI") @@ -14762,7 +15001,7 @@ (uuid "a0f031f5-2be6-4310-97be-a60c4d69b9c3") ) (embedded_fonts no) - (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" (offset (xyz 0 0 0) ) @@ -14777,13 +15016,13 @@ (footprint "Capacitor_SMD:C_1206_3216Metric_Pad1.33x1.80mm_HandSolder" (layer "F.Cu") (uuid "e44608ae-4729-4a83-8086-e1eaa4ebce24") - (at 185.74 68.6 90) + (at 184.9 68.57 90) (descr "Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C11" - (at 0 -1.64 90) + (at -3.14 0.13 180) (layer "F.SilkS") - (uuid "0578cb7b-ad3d-43ed-8484-bf198482e3bd") + (uuid "6a54456a-a915-4d27-aabc-2bd780657845") (effects (font (size 1 1) @@ -14794,7 +15033,7 @@ (property "Value" "22uF" (at 0 1.85 90) (layer "F.Fab") - (uuid "3600d0e9-6e7b-478d-883b-74f9c844c1de") + (uuid "9bf48b3d-b240-4374-a9eb-0024771f1586") (effects (font (size 1 1) @@ -14806,18 +15045,18 @@ (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "5bac6500-abec-48a2-97d8-0e7eabf96a09") + (uuid "637a90f2-22dd-469f-9830-3b922483e725") (effects (font (size 1.27 1.27) ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) - (uuid "b64c8d35-c4a2-4f2b-88b2-bbaa452a7851") + (uuid "8c1bc201-0019-4de3-980f-43945e3bfac6") (effects (font (size 1.27 1.27) @@ -14862,6 +15101,45 @@ ) ) ) + (property "MPN" "CL31A226MPHNNNE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "767b9eb8-17d3-499d-b812-8e411fbf30fa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9f5aec28-e76a-4d58-baf7-d73d3aad76a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C96453" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0e1372aa-8a88-416f-b31e-53e8793e7663") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/41c047ab-784c-4a5c-a507-14eec8340455") (sheetname "/Power/") @@ -14965,7 +15243,7 @@ (descr "QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94)") (tags "QFN NoLead ST_UFQFPN48 Analog_CP-48-13 JEDEC_MO-220-WKKD-4") (property "Reference" "U9" - (at 0 -4.83 0) + (at 3.659239 4.34 -0) (layer "F.SilkS") (uuid "427780bf-73ac-4d86-a3f8-1dbe640220af") (effects @@ -15020,6 +15298,45 @@ ) ) ) + (property "MPN" "ICE40UP5K-SG48I" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf6a24a8-e80c-4b8f-ab6b-57b2ce172195") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Lattice" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1a9eca72-b276-4a7b-b9b2-059ac26142ea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C2678152" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "62ee9d8f-e5e4-4e28-bd87-5b2361b28b6d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "QFN*1EP*7x7mm*P0.5mm*") (path "/73763384-ff95-4826-8da6-2de53070e62f/a8dbf6f7-bf33-4035-aa2a-a16373a624ef") (sheetname "/fpga/") @@ -15982,10 +16299,10 @@ (footprint "Crystal:Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering" (layer "F.Cu") (uuid "f0c30982-307c-4f7b-a642-89f896e19f1f") - (at 131.45 68.95 90) + (at 131.14 69.55 180) (descr "SMD3225/4, Crystal, 3.2x2.5mm package, SMD, hand-soldering, http://www.txccrystal.com/images/pdf/7m-accuracy.pdf") (property "Reference" "Y2" - (at 0 -3 90) + (at 3.61 -1.8 0) (layer "F.SilkS") (uuid "c80c3862-dadc-4ad4-8cba-ce0dc3355941") (effects @@ -15996,7 +16313,7 @@ ) ) (property "Value" "25MHz" - (at 0 3 90) + (at 0 3 0) (layer "F.Fab") (uuid "01f98332-56f1-4d0b-8041-c22348188db3") (effects @@ -16007,7 +16324,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "d6f63d8f-b864-4192-9807-6826f4653a2b") @@ -16017,8 +16334,8 @@ ) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Four pin crystal, GND on pins 2 and 4" + (at 0 0 0) (layer "F.Fab") (hide yes) (uuid "60de8ea1-a680-406a-8b64-894ee80938c3") @@ -16029,7 +16346,7 @@ ) ) (property "KiLib_Generator" "crystal_resonator_oscillator" - (at 0 0 90) + (at 0 0 0) (layer "F.SilkS") (hide yes) (uuid "be3644c2-09e1-412b-92da-da7a96e3a0a7") @@ -16041,7 +16358,7 @@ ) ) (property "C0" "7pF" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -16054,7 +16371,7 @@ ) ) (property "ESR" "30R" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -16067,7 +16384,7 @@ ) ) (property "Tolerance" "±50ppm" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -16080,7 +16397,7 @@ ) ) (property "CL" "8pF" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -16093,7 +16410,7 @@ ) ) (property "Type" "X7R" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -16106,7 +16423,7 @@ ) ) (property "V" "10V" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "F.Fab") (hide yes) @@ -16118,6 +16435,45 @@ ) ) ) + (property "MPN" "X322525MOB4SI" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "457fbc18-33c0-4d63-9666-b3d232ca9230") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "YXC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "14facf21-3628-486a-8c49-e783c365a3bc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C9006" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d82612f-028a-4cde-a366-04af31f716c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "Crystal*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/92b8bfce-4f9e-4b91-88ed-4544f0888ee3") (sheetname "/ethernet/") @@ -16130,16 +16486,6 @@ ) (attr smd) (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -2.76 -2.31) - (end -2.76 2.31) - (stroke - (width 0.12) - (type solid) - ) - (layer "F.SilkS") - (uuid "2da957d8-f5b6-4e07-aefd-d19b77246a44") - ) (fp_line (start -2.76 2.31) (end 2.76 2.31) @@ -16150,6 +16496,16 @@ (layer "F.SilkS") (uuid "5fde8b1c-9fd0-441d-9c1c-c43fd887ffd2") ) + (fp_line + (start -2.76 -2.31) + (end -2.76 2.31) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "2da957d8-f5b6-4e07-aefd-d19b77246a44") + ) (fp_rect (start -2.75 -2.3) (end 2.75 2.3) @@ -16174,7 +16530,7 @@ (uuid "8e6006ed-7818-4eab-848e-ef70e74fbced") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 0) (layer "F.Fab") (uuid "4e5e6228-ca52-43f6-bf62-3e84d1af1664") (effects @@ -16185,7 +16541,7 @@ ) ) (pad "1" smd roundrect - (at -1.45 1.15 90) + (at -1.45 1.15 180) (size 2.1 1.8) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.138889) @@ -16195,7 +16551,7 @@ (uuid "47055341-f933-4d23-b35d-f025a7d8b23f") ) (pad "2" smd roundrect - (at 1.45 1.15 90) + (at 1.45 1.15 180) (size 2.1 1.8) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.138889) @@ -16205,7 +16561,7 @@ (uuid "8e114235-dd26-4bd8-80e2-c2a942cd98c0") ) (pad "3" smd roundrect - (at 1.45 -1.15 90) + (at 1.45 -1.15 180) (size 2.1 1.8) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.138889) @@ -16215,7 +16571,7 @@ (uuid "b51cde0b-a8c4-4223-b6b9-0fc81aadd96a") ) (pad "4" smd roundrect - (at -1.45 -1.15 90) + (at -1.45 -1.15 180) (size 2.1 1.8) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.138889) @@ -16244,7 +16600,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R4" - (at 0 -1.17 0) + (at -0.8075 1.05 0) (layer "F.SilkS") (uuid "56a950cc-34a7-4187-9a40-3c082b7674f1") (effects @@ -16276,7 +16632,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -16312,6 +16668,45 @@ ) ) ) + (property "MPN" "0402WGF1003TCE" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ba1d1fb-66f7-4e88-8841-c7ad7fd08f87") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9aa60e49-9169-456d-be71-44003e930c33") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25741" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b5cc936f-73d7-4d7f-ba1a-4a544f21bc5a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/33ce72fd-76d9-4897-b8ff-3769cd2a7734") (sheetname "/Power/") @@ -16383,7 +16778,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "Net-(U2-PR1)") - (pinfunction "~_1") (pintype "passive") (uuid "33ab8c9f-4099-4935-a2db-a26455b6d7af") ) @@ -16393,7 +16787,6 @@ (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "GND") - (pinfunction "~_2") (pintype "passive") (uuid "463f798b-bd3c-4114-b79d-278811bf70ea") ) @@ -16413,11 +16806,11 @@ (footprint "Capacitor_SMD:C_0805_2012Metric_Pad1.18x1.45mm_HandSolder" (layer "F.Cu") (uuid "f49a8535-3944-4938-8e37-c215fde9d242") - (at 197.9 68.7375 -90) + (at 197.93 68.7375 -90) (descr "Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing)") (tags "capacitor handsolder") (property "Reference" "C3" - (at 0 -1.68 90) + (at 2.6025 0.02 180) (layer "F.SilkS") (uuid "2a27c944-9aa3-4960-b2fd-d61076ce8a27") (effects @@ -16449,7 +16842,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "F.Fab") (hide yes) @@ -16498,6 +16891,45 @@ ) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e5119ba1-d987-42c6-b4e0-3dcdc3c0dc4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f423af65-e6c8-4c1d-ad76-0ccd5465091c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C15850" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "41395620-9e70-4522-8e8b-78058f9e7388") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/17d4e916-c91e-4b00-87a8-a49e744912b2") (sheetname "/Power/") @@ -16601,7 +17033,7 @@ (descr "LQFP, 48 Pin (JEDEC MS-026 variation BBC, 1.40mm body thickness, https://www.jedec.org/document_search?search_api_views_fulltext=MS-026, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfp/05081760_a_lx48.pdf)") (tags "LQFP QFP CASE-932AA CASE-932-03 C48-1 C48-2 C48-3 C48-5 C48-6 C48-6C PT0048A") (property "Reference" "U11" - (at 0 -5.85 0) + (at -4.5775 -4.34 0) (layer "F.SilkS") (uuid "96c55892-5d27-4594-9b7f-a7dccd7e2b01") (effects @@ -16669,6 +17101,32 @@ ) ) ) + (property "MPN" "W5100S-L" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ddbafdbf-a964-4dbf-a454-0231346102dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C194673" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "40fb44e0-b0b2-4158-b362-980b05e9fd04") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "LQFP*7x7mm*P0.5mm*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/71fdeaba-68dd-41c1-b431-48a573ddbded") (sheetname "/ethernet/") @@ -17500,7 +17958,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R7" - (at 0 -1.17 0) + (at -2.38 -0.09 0) (layer "F.SilkS") (uuid "365879e8-be5a-46fa-a5df-8911fd7a4d55") (effects @@ -17532,7 +17990,7 @@ ) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "F.Fab") (hide yes) @@ -17568,6 +18026,45 @@ ) ) ) + (property "MPN" "0402WGF5101TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e504bcfd-33d0-4905-851e-fe6a74db3663") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "806a7a1d-8823-4843-bc44-6e8f5f0fe681") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25905" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ebbb74cc-76bc-4e81-98a8-df218f798482") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) (property ki_fp_filters "R_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/1b8b4c9f-a016-46ef-9284-f933dbb33750") (sheetname "/Usb Connector/") @@ -17664,12 +18161,12 @@ ) ) ) - (footprint "gc:SP1 BoardConnector" + (footprint "hardware:SP1 BoardConnector" (layer "F.Cu") (uuid "fdebdf84-5b35-4515-b08d-b01dc0d306e7") (at 189.85 59.9) (property "Reference" "J3" - (at 0 -4.5 0) + (at 0.48 -0.38 0) (unlocked yes) (layer "F.SilkS") (uuid "52dcffa0-3be0-41d8-82b7-45b20e70f607") @@ -17727,7 +18224,7 @@ (pins "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12") ) ) - (attr smd) + (attr smd dnp) (duplicate_pad_numbers_are_jumpers no) (fp_line (start 0.6 -3.2) @@ -17849,6 +18346,7 @@ (net "GND") (pinfunction "Ground(Shield)_2") (pintype "passive") + (zone_connect 2) (uuid "47e3fff4-0150-4323-82c4-eab7afb234f9") ) (pad "2" thru_hole circle @@ -17860,6 +18358,7 @@ (net "GND") (pinfunction "Ground(Shield)_2") (pintype "passive") + (zone_connect 2) (thermal_bridge_angle 90) (uuid "9b4eb775-fa52-47a4-811a-934c14b2a96d") ) @@ -18040,6 +18539,7 @@ (net "GND") (pinfunction "Ground_11") (pintype "power_in") + (zone_connect 2) (thermal_bridge_angle 90) (uuid "490f0c70-0fd7-4116-a74f-2cc14b5c7890") ) @@ -18050,6 +18550,7 @@ (net "GND") (pinfunction "Ground_11") (pintype "power_in") + (zone_connect 2) (uuid "3ad60739-fee1-41b5-a02c-308efcbb5c56") ) (pad "12" smd rect @@ -18059,6 +18560,7 @@ (net "GND") (pinfunction "Ground_12") (pintype "power_in") + (zone_connect 2) (uuid "7a81e25d-662e-4370-873e-5a73dda4f5f9") ) (pad "12" thru_hole circle @@ -18070,19 +18572,20 @@ (net "GND") (pinfunction "Ground_12") (pintype "power_in") + (zone_connect 2) (thermal_bridge_angle 90) (uuid "2acb085d-a18c-4b39-8a95-f84367a80d66") ) (embedded_fonts no) ) - (footprint "Package_TO_SOT_SMD:SOT-23-6_Handsoldering" + (footprint "Package_TO_SOT_SMD:SOT-23-6" (layer "F.Cu") (uuid "ff3baa05-c2af-4edf-a7c6-4d75ad08de4d") (at 143 46 -90) - (descr "6-pin SOT-23 package, Handsoldering") - (tags "SOT-23-6 Handsoldering") + (descr "SOT, 6 Pin (JEDEC MO-178 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-178)") + (tags "SOT TO_SOT_SMD") (property "Reference" "D1" - (at 0 -2.9 90) + (at -1.99 -2.72 0) (layer "F.SilkS") (uuid "7f1bde79-a280-4180-a663-0fb923be2eda") (effects @@ -18093,7 +18596,7 @@ ) ) (property "Value" "USBLC6-2SC6" - (at 0 2.9 90) + (at 0 2.4 270) (layer "F.Fab") (uuid "31f5773a-40f3-405e-943b-0fa694b8d2e0") (effects @@ -18103,28 +18606,75 @@ ) ) ) - (property "Datasheet" "" + (property "Datasheet" "https://www.st.com/resource/en/datasheet/usblc6-2.pdf" (at 0 0 270) - (unlocked yes) (layer "F.Fab") (hide yes) (uuid "fe08319a-7b7a-4cfa-a1b1-ec050eeb50ed") (effects (font (size 1.27 1.27) - (thickness 0.15) ) ) ) - (property "Description" "" + (property "Description" "Very low capacitance ESD protection diode, 2 data-line, SOT-23-6" (at 0 0 270) - (unlocked yes) (layer "F.Fab") (hide yes) (uuid "08f0a3b9-fff2-4041-8634-cf08f76d3947") (effects (font (size 1.27 1.27) + ) + ) + ) + (property "KiLib_Generator" "package/gullwing" + (at 0 0 270) + (layer "F.SilkS") + (hide yes) + (uuid "fe3c6c01-df31-4d46-a2a3-88abde39daec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "MPN" "USBLC6-2SC6" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "23097610-a92b-4fb9-bc80-7fdab8084e9e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d8156d53-7999-4af4-af04-ab32106a28a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C7519" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d6cbfd4b-0e00-4946-bc49-4575244bcf78") + (effects + (font + (size 1 1) (thickness 0.15) ) ) @@ -18142,18 +18692,38 @@ (attr smd) (duplicate_pad_numbers_are_jumpers no) (fp_line - (start -0.9 1.61) - (end 0.9 1.61) + (start -0.91 1.56) + (end -0.91 1.51) (stroke (width 0.12) (type solid) ) (layer "F.SilkS") - (uuid "f8fcc3f5-4458-462f-8fbb-26128f841e54") + (uuid "a7487874-ad56-4fa6-b82b-5dd1ab19f6af") ) (fp_line - (start 0.1 -1.61) - (end -0.7 -1.61) + (start 0.91 1.56) + (end -0.91 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "c5a45b8a-bc8d-4af3-8bfa-ad31880e1fd7") + ) + (fp_line + (start 0.91 1.51) + (end 0.91 1.56) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "89b940b7-9ac9-4db6-9628-3747514757dd") + ) + (fp_line + (start -0.91 -1.51) + (end -0.91 -1.56) (stroke (width 0.12) (type solid) @@ -18162,8 +18732,8 @@ (uuid "2ef50698-ff51-4dd6-af3e-e9bc11a1243a") ) (fp_line - (start 0.1 -1.61) - (end 0.9 -1.61) + (start -0.91 -1.56) + (end 0.91 -1.56) (stroke (width 0.12) (type solid) @@ -18171,9 +18741,19 @@ (layer "F.SilkS") (uuid "595dd659-9aae-4401-ad16-57609af55c23") ) + (fp_line + (start 0.91 -1.56) + (end 0.91 -1.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "f8fcc3f5-4458-462f-8fbb-26128f841e54") + ) (fp_poly (pts - (xy -1.2 -1.56) (xy -1.44 -1.89) (xy -0.96 -1.89) (xy -1.2 -1.56) + (xy -1.45 -1.51) (xy -1.69 -1.84) (xy -1.21 -1.84) ) (stroke (width 0.12) @@ -18184,8 +18764,28 @@ (uuid "857cd60a-7458-4639-aa94-1ddd4b20b7fd") ) (fp_line - (start -2.4 1.8) - (end -2.4 -1.8) + (start -1.05 1.7) + (end -1.05 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "736a6cf2-4a3f-46e6-a16c-d723302bd2df") + ) + (fp_line + (start 1.05 1.7) + (end -1.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "53623668-3236-400a-b62b-2211baf67405") + ) + (fp_line + (start -2.05 1.5) + (end -2.05 -1.5) (stroke (width 0.05) (type solid) @@ -18194,18 +18794,8 @@ (uuid "b18a5e1a-00a6-4d3f-b215-9ae1df01ec34") ) (fp_line - (start 2.4 1.8) - (end -2.4 1.8) - (stroke - (width 0.05) - (type solid) - ) - (layer "F.CrtYd") - (uuid "82c56d10-100b-4579-ae46-5f81e77c2210") - ) - (fp_line - (start -2.4 -1.8) - (end 2.4 -1.8) + (start -1.05 1.5) + (end -2.05 1.5) (stroke (width 0.05) (type solid) @@ -18214,8 +18804,28 @@ (uuid "46b40872-e08f-491c-87c0-761b1dd949d7") ) (fp_line - (start 2.4 -1.8) - (end 2.4 1.8) + (start 1.05 1.5) + (end 1.05 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "82c56d10-100b-4579-ae46-5f81e77c2210") + ) + (fp_line + (start 2.05 1.5) + (end 1.05 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1d86cc3c-b774-47a2-b45a-17c0cc2cec14") + ) + (fp_line + (start -2.05 -1.5) + (end -1.05 -1.5) (stroke (width 0.05) (type solid) @@ -18224,69 +18834,81 @@ (uuid "18080685-65ba-47c8-987c-b1d1552781e6") ) (fp_line - (start 0.9 1.55) - (end -0.9 1.55) + (start -1.05 -1.5) + (end -1.05 -1.7) (stroke - (width 0.1) + (width 0.05) (type solid) ) - (layer "F.Fab") - (uuid "53623668-3236-400a-b62b-2211baf67405") + (layer "F.CrtYd") + (uuid "0a75e851-d3cd-40b4-8773-fa53974dd62b") ) (fp_line - (start -0.9 -0.9) - (end -0.9 1.55) + (start 1.05 -1.5) + (end 2.05 -1.5) (stroke - (width 0.1) + (width 0.05) (type solid) ) - (layer "F.Fab") + (layer "F.CrtYd") + (uuid "33046794-c358-4ad0-86cc-8823b7036874") + ) + (fp_line + (start 2.05 -1.5) + (end 2.05 1.5) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") (uuid "239b7ce5-3285-4a09-8efc-7d762673fb18") ) (fp_line - (start -0.9 -0.9) - (end -0.25 -1.55) + (start -1.05 -1.7) + (end 1.05 -1.7) (stroke - (width 0.1) + (width 0.05) (type solid) ) - (layer "F.Fab") - (uuid "c5a45b8a-bc8d-4af3-8bfa-ad31880e1fd7") + (layer "F.CrtYd") + (uuid "d771a16a-456c-41de-b1c3-1196c6b8f493") ) (fp_line - (start 0.9 -1.55) - (end 0.9 1.55) + (start 1.05 -1.7) + (end 1.05 -1.5) (stroke - (width 0.1) + (width 0.05) (type solid) ) - (layer "F.Fab") - (uuid "89b940b7-9ac9-4db6-9628-3747514757dd") + (layer "F.CrtYd") + (uuid "d24f79e6-b514-41d1-9b35-81b754b3f198") ) - (fp_line - (start 0.9 -1.55) - (end -0.25 -1.55) + (fp_poly + (pts + (xy -0.4 -1.45) (xy 0.8 -1.45) (xy 0.8 1.45) (xy -0.8 1.45) (xy -0.8 -1.05) + ) (stroke (width 0.1) (type solid) ) + (fill no) (layer "F.Fab") - (uuid "0a75e851-d3cd-40b4-8773-fa53974dd62b") + (uuid "d035c74e-105f-4104-9131-5eb05ca4266e") ) (fp_text user "${REFERENCE}" - (at 0 -1.6 0) + (at 0 0 0) (layer "F.Fab") (uuid "9da3f9a2-7e82-4934-b950-a618cd099cb0") (effects (font - (size 0.5 0.5) - (thickness 0.075) + (size 0.72 0.72) + (thickness 0.11) ) ) ) (pad "1" smd roundrect - (at -1.35 -0.95 270) - (size 1.56 0.65) + (at -1.1375 -0.95 270) + (size 1.325 0.6) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/UDP") @@ -18295,8 +18917,8 @@ (uuid "09a854f9-9825-44d0-aedd-4ba46edbaf09") ) (pad "2" smd roundrect - (at -1.35 0 270) - (size 1.56 0.65) + (at -1.1375 0 270) + (size 1.325 0.6) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/USB_GND") @@ -18305,8 +18927,8 @@ (uuid "12c4d0fe-1f9d-4eac-b8ee-bb8464b80bd8") ) (pad "3" smd roundrect - (at -1.35 0.95 270) - (size 1.56 0.65) + (at -1.1375 0.95 270) + (size 1.325 0.6) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/UDN") @@ -18315,8 +18937,8 @@ (uuid "c0c43f69-5b41-46e2-a5f4-9035e1f007d7") ) (pad "4" smd roundrect - (at 1.35 0.95 270) - (size 1.56 0.65) + (at 1.1375 0.95 270) + (size 1.325 0.6) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/UDN") @@ -18325,8 +18947,8 @@ (uuid "98dee3c4-4fda-4628-9737-755365e3f3f5") ) (pad "5" smd roundrect - (at 1.35 0 270) - (size 1.56 0.65) + (at 1.1375 0 270) + (size 1.325 0.6) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/USB_VBUS") @@ -18335,8 +18957,8 @@ (uuid "1005ff85-35f0-470c-90ed-7506777aa17b") ) (pad "6" smd roundrect - (at 1.35 -0.95 270) - (size 1.56 0.65) + (at 1.1375 -0.95 270) + (size 1.325 0.6) (layers "F.Cu" "F.Mask" "F.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/UDP") @@ -18399,7 +19021,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -18452,6 +19074,48 @@ (justify mirror) ) ) + (property "MPN" "CL10A475KO8NNNC" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "90a083f4-f5c1-4666-9488-59a10114e156") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "dd513095-b692-4910-9877-68b9e42fd952") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C19666" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "78441d23-6785-49b7-8b59-009748577803") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/05f0dc12-4220-4878-a923-954d49d73d25") (sheetname "/Usb Connector/") @@ -18557,7 +19221,7 @@ (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C61" - (at 0 1.43 0) + (at 2.7875 -0.56 0) (layer "B.SilkS") (uuid "fb34e2f2-766e-42d1-a625-c2806cb51d56") (effects @@ -18568,7 +19232,7 @@ (justify mirror) ) ) - (property "Value" "3.3uF" + (property "Value" "4.7uF" (at 0 -1.43 0) (layer "B.Fab") (uuid "73ffa3de-963e-4553-9b8c-a19a6bb6727c") @@ -18592,7 +19256,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -18617,7 +19281,7 @@ (justify mirror) ) ) - (property "Type" "X7R" + (property "Type" "X5R" (at 0 0 0) (unlocked yes) (layer "B.Fab") @@ -18645,6 +19309,48 @@ (justify mirror) ) ) + (property "MPN" "CL10A475KO8NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "b76e8051-91b9-4627-8a36-f799b0e6f95a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "fb1759ef-e91c-4b21-899a-aaa6b81606fa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C19666" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7f325c9f-bcbf-4873-991e-1ba86337e220") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/2e143cd8-1f59-45d9-9bde-f16efc92d953") (sheetname "/ethernet/") @@ -18749,7 +19455,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C44" - (at 0 1.16 90) + (at -0.0975 1.87 180) (layer "B.SilkS") (uuid "16cf1b82-7608-4c19-898f-a80d00034c16") (effects @@ -18784,7 +19490,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -18837,6 +19543,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "73cfb240-1a18-408e-b9a2-a2f97ac91dc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "71395e94-b5f9-4170-aa48-dfb8b39087ea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "0a7c431e-b0f9-4e44-a2bf-6658aa237b12") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/bbbc01cb-ff9a-4efe-a15e-d40dca5053a3") (sheetname "/fpga/") @@ -18937,11 +19685,11 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "0e3de586-8a61-43b9-90a9-3cd6c2a8cbc5") - (at 141.98 61.7825 -90) + (at 141.3325 61.2 180) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C51" - (at 0 1.16 90) + (at 0 1.16 0) (layer "B.SilkS") (uuid "8e7b91a4-8a08-417c-b06d-dd5601773110") (effects @@ -18953,7 +19701,7 @@ ) ) (property "Value" "100nF" - (at 0 -1.16 90) + (at 0 -1.16 0) (layer "B.Fab") (uuid "92f70fb6-47b8-4552-ab40-b0e5be474076") (effects @@ -18965,7 +19713,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 0) (layer "B.Fab") (hide yes) (uuid "0fa0d538-b799-4e06-b3b0-971b4d27719f") @@ -18976,8 +19724,8 @@ (justify mirror) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) (layer "B.Fab") (hide yes) (uuid "adba838b-8572-4b51-ade4-ca28e5f006c5") @@ -18989,7 +19737,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) + (at 0 0 0) (layer "B.SilkS") (hide yes) (uuid "fc5bd7ab-5f54-44b1-941b-58ce88d2db8f") @@ -19002,7 +19750,7 @@ ) ) (property "Type" "X7R" - (at 0 0 90) + (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) @@ -19016,7 +19764,7 @@ ) ) (property "V" "10V" - (at 0 0 90) + (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) @@ -19029,6 +19777,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "bc51e938-989f-4e51-b7a7-377e99fea01d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "221cbd0e-be5f-4996-bf1d-80f4dd348bf5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "a5f362c3-c072-451d-8187-0a369ea15750") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/5732288c-e135-4e01-a857-b7c1cdd85e89") (sheetname "/ethernet/") @@ -19084,7 +19874,7 @@ (uuid "6c920900-b692-41f6-abe2-ae61c14097d0") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 0) (layer "B.Fab") (uuid "85eb4599-b234-4136-b7b1-540965240d39") (effects @@ -19096,7 +19886,7 @@ ) ) (pad "1" smd roundrect - (at -0.5675 0 270) + (at -0.5675 0 180) (size 0.735 0.62) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -19105,7 +19895,7 @@ (uuid "a2fbe51a-94e7-4c2f-98c7-e7c4d94294df") ) (pad "2" smd roundrect - (at 0.5675 0 270) + (at 0.5675 0 180) (size 0.735 0.62) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -19133,7 +19923,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C59" - (at 0 1.16 0) + (at 0.0075 1.06 0) (layer "B.SilkS") (uuid "ceac5687-a5f1-48f9-a87e-6bc47174def9") (effects @@ -19168,7 +19958,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -19221,6 +20011,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "08151876-27a0-4943-b89c-b8cab0181d82") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "619bbd08-2077-4808-b6fe-5b880baead2f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "853c5fc6-5666-48fd-880e-77a7e1fb0a0c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/fb9de64d-1cb0-4a56-9731-147f67552985") (sheetname "/ethernet/") @@ -19318,10 +20150,244 @@ ) ) ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "1985dd31-8465-409e-bb91-80505a030b45") + (at 153.2375 53.73 180) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C49" + (at 0 0.98 0) + (layer "B.SilkS") + (uuid "e66e104d-d77a-43c4-99d3-cc73ce359bd6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.16 0) + (layer "B.Fab") + (uuid "f286011c-34a7-471a-bcfe-115058c688c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "bcdd04b0-2e0d-45f6-874c-4a7c05774a43") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "0bdc2529-4ee4-41cb-bfc4-4d45172fc60a") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 0) + (layer "B.SilkS") + (hide yes) + (uuid "07542b42-3600-4c37-b68d-44cd2cd70352") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "361f51a9-b746-4be9-9880-2dc28f43ec2e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "6dc0007e-5926-42df-a22f-ffe78e11d417") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "272c95f5-6381-4f47-9a65-11d437c10525") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ca0f13a5-c517-4f8a-99e7-aa040ad663e2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "28ba4643-69fb-46a5-a788-0bf93a292d94") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/6f1678d1-05c7-42c0-a0a5-eb125f5a6c53") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "46c7230e-835e-464d-a629-54a5bea39368") + ) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4f82855e-21e7-49ae-adb8-ce8c2ff282ae") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "a43966ad-3d23-4d86-8a76-9853060ee536") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "d42538ac-d2c8-46d1-bb55-eb3b9d993316") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "f3576ae7-c585-43f7-9497-052cc1ac69ef") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 180) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "45f08b39-4704-4c3a-8dbf-70a063912784") + ) + (pad "2" smd roundrect + (at 0.5675 0 180) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "18cc0c90-5ea7-43cf-9bc9-e699dfebcb09") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "1a46d491-0abb-4f40-b8ef-8dadec8c3368") - (at 159.7825 68.57) + (at 159.97 68.56) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C40" @@ -19360,7 +20426,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -19413,6 +20479,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7986c738-1e05-4a38-a6d0-b70ec4cb9c23") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "6c933643-8dff-4271-9587-9266d51f5f43") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "0145582d-ecf6-4fa6-989a-cd9abaeb2889") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/4f7d5035-f167-47a3-afbd-9e69d8524e27") (sheetname "/fpga/") @@ -19517,7 +20625,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C43" - (at 0 1.16 90) + (at 0.2025 -1.76 180) (layer "B.SilkS") (uuid "28a981db-73df-4d22-b37c-94d6870a25bd") (effects @@ -19552,7 +20660,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -19605,6 +20713,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "bfe579fc-7478-43ed-8585-13c1b055fe47") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "924d0982-bc50-49b3-bdfa-d997cd4efa03") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7b12f925-7106-4e52-97ad-b9b142dbe960") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/1b0091f4-0628-436b-b8e4-f629b2ec0d83") (sheetname "/fpga/") @@ -19709,7 +20859,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C50" - (at 0 1.16 0) + (at -0.0225 -0.97 0) (layer "B.SilkS") (uuid "778d4d62-33de-4229-8721-fe5620334ea4") (effects @@ -19744,7 +20894,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -19797,6 +20947,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7e287f92-2598-4b33-ab91-fd7f427bb8b2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "cf9fbc95-e3de-496d-a2dc-5ea28d50948a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2d7a892e-0f87-4cd1-a1b5-e3638dd3fcd2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/2d6c9bb8-a909-4391-8586-56fae18c5d19") (sheetname "/fpga/") @@ -19894,6 +21086,240 @@ ) ) ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "27c3518c-0fd1-4608-a6bf-8da22ce4d478") + (at 150.13 63.5075 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C48" + (at 0.1075 -3.45 90) + (layer "B.SilkS") + (uuid "b6b0d1e7-0094-4ebb-8387-6a4707b8075f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.16 90) + (layer "B.Fab") + (uuid "bef0f702-d2e1-48f8-a7c6-f75e8265b8d9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "c9bcae7b-6be3-4e98-b33f-22de6bb2b0fc") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "f8165380-0c1a-43fb-b035-9bd28c1fe421") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "fe140552-7a43-4453-b411-3eb771a321b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ede0b73a-9001-4d3e-b8c6-38d572c15572") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "03bcd20c-13cd-4ed7-a28a-39373b933635") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "58980fb7-4528-46fc-9767-9c23c61c3fdd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "b0da9e17-4f09-4a03-bcac-e0ada209e399") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "bfe34202-4531-4884-9c1d-8dcd6b8db63e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/a0f9d5a2-4857-4091-bc6b-c353047234c9") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2631f737-d7dc-4dd9-b268-a272d514bc1d") + ) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "c4a5de5b-0a09-4d52-a0bb-53422dbc7262") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "f40b553e-1618-4968-b720-102fbe89d3c5") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "d5542a2f-d5b7-4c03-8169-2d1227ee0bf4") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "97fdc80c-9487-4297-84ac-3ff0bb890411") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 90) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/fpga/VCCPLL_F") + (pintype "passive") + (uuid "a4fa1ed4-467f-442f-a8fe-a7e6289bd4bb") + ) + (pad "2" smd roundrect + (at 0.5675 0 90) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "8f7347ed-d535-4106-a38c-b29ecca5b025") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" (placed yes) (layer "B.Cu") @@ -19902,7 +21328,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R10" - (at 0 1.17 90) + (at -4.4525 0.12 180) (layer "B.SilkS") (uuid "8e0283ea-5238-40b5-b417-f27f2ac69e1b") (effects @@ -19937,7 +21363,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -19976,6 +21402,48 @@ (justify mirror) ) ) + (property "MPN" "0402WGF1202TCE" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "82c74d34-51b4-4a53-8fcf-67fa37d5ea24") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2de41d9b-3c99-4744-9ad4-870ab52aa1fd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25752" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "fded696c-ece1-44be-b26c-dee66650245d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "R_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c8b06b44-7310-4191-8477-73fae983e5e1") (sheetname "/Usb Connector/") @@ -20076,11 +21544,11 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "3ab67f65-3050-46c2-b90a-0f315fd4b540") - (at 136.9075 62.8) + (at 136.3 62.1675 90) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C57" - (at 0 1.16 0) + (at 1.6175 -0.52 180) (layer "B.SilkS") (uuid "94c6f7b9-9002-4133-afab-00b0ea38b9e6") (effects @@ -20092,7 +21560,7 @@ ) ) (property "Value" "100nF" - (at 0 -1.16 0) + (at 0 -1.16 90) (layer "B.Fab") (uuid "de7c0d36-b10c-4cba-9bb2-eb751bbc8ee5") (effects @@ -20104,7 +21572,7 @@ ) ) (property "Datasheet" "" - (at 0 0 0) + (at 0 0 90) (layer "B.Fab") (hide yes) (uuid "c869d48a-a563-4e9c-a880-b2a6067bcd49") @@ -20115,8 +21583,8 @@ (justify mirror) ) ) - (property "Description" "" - (at 0 0 0) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) (layer "B.Fab") (hide yes) (uuid "b862b111-94f0-4513-9a50-a82749ed5476") @@ -20128,7 +21596,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 0) + (at 0 0 90) (layer "B.SilkS") (hide yes) (uuid "8ebdbebc-3960-4ac0-b79f-870ec15e580a") @@ -20141,7 +21609,7 @@ ) ) (property "Type" "X7R" - (at 0 0 180) + (at 0 0 270) (unlocked yes) (layer "B.Fab") (hide yes) @@ -20155,7 +21623,7 @@ ) ) (property "V" "10V" - (at 0 0 180) + (at 0 0 270) (unlocked yes) (layer "B.Fab") (hide yes) @@ -20168,6 +21636,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "84addd5a-525e-4f7f-8610-1d7ffad6b2e3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "8da14e77-50e8-428a-85ac-430f13573b09") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "cc4f1386-0fe2-453f-9fc9-e7c6d66f655d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/486c8abb-72e7-4ccc-8cb5-14ff7c4e50c0") (sheetname "/ethernet/") @@ -20223,7 +21733,7 @@ (uuid "a19a806f-362e-41df-825e-472c4cbb1981") ) (fp_text user "${REFERENCE}" - (at 0 0 0) + (at 0 0 90) (layer "B.Fab") (uuid "26dd6081-eb7c-4a5c-a9fc-22a5ffbd6274") (effects @@ -20235,7 +21745,7 @@ ) ) (pad "1" smd roundrect - (at -0.5675 0) + (at -0.5675 0 90) (size 0.735 0.62) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -20244,7 +21754,7 @@ (uuid "563672e9-0b42-47fe-89a6-2ae385a1433c") ) (pad "2" smd roundrect - (at 0.5675 0) + (at 0.5675 0 90) (size 0.735 0.62) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -20307,7 +21817,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -20360,6 +21870,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "6c4dc012-b206-4266-93cf-1549876360e9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "61663855-cdef-4a80-88af-eabf1e61993e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "71f122d6-8973-4c0f-b3b5-79c3c1a821ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c136e02e-260c-444e-bce9-b2e169355f5f") (sheetname "/Usb Connector/") @@ -20457,6 +22009,460 @@ ) ) ) + (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" + (layer "B.Cu") + (uuid "44cad7d6-38fa-4528-9687-e8dfd91e6fc7") + (at 162.0025 55.08) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "resistor handsolder") + (property "Reference" "R23" + (at 0 1.17 0) + (layer "B.SilkS") + (uuid "1e774cfd-978b-48ba-a65d-ab739a332a05") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10k" + (at 0 -1.17 0) + (layer "B.Fab") + (uuid "583a04cf-e840-4c18-99cf-b2ae87e18d98") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "7c2543f5-d850-463d-8233-53eca6362336") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "92fdc25c-e219-4880-8178-26e3f16f7d52") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 0) + (layer "B.SilkS") + (hide yes) + (uuid "69178ffd-95e5-459b-80a6-63753202284c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "d801d31d-5dc2-41f3-8a0c-ba7fe98c7e44") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "a02d4d11-b60e-4215-bf5d-abd77d17f6fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25744" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "4b9466d1-bbb6-4bda-81c8-c6dbef9e6a64") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Tolerance" "5%" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "71e17def-a6e3-4924-98e6-747758af2113") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "R_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/2edcfebc-4b88-41d8-aeb6-d819daf340ac") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.167621 -0.38) + (end 0.167621 -0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "423a1dfe-3268-477e-b25a-29da4f919689") + ) + (fp_line + (start -0.167621 0.38) + (end 0.167621 0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "a5f3beef-cef0-4941-8414-c63ec65d9fec") + ) + (fp_rect + (start -1.11 0.47) + (end 1.11 -0.47) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "4f06e7f5-e5ce-4b3b-9263-626c8d7a67d0") + ) + (fp_rect + (start -0.525 0.27) + (end 0.525 -0.27) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "b75b6e46-1f31-4c5b-8e09-d0ef374da476") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "c1d1f4f4-30a9-4210-99fa-2aa7e5a7c17a") + (effects + (font + (size 0.26 0.26) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5975 0) + (size 0.715 0.64) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "ac1809ed-6a32-42dd-9b8e-2524482c31c8") + ) + (pad "2" smd roundrect + (at 0.5975 0) + (size 0.715 0.64) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "Net-(U10-~{HOLD}{slash}~{RESET}{slash}IO_{3})") + (pintype "passive") + (uuid "db5237ef-0a66-4f48-b8e3-b3ec2680a894") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" + (layer "B.Cu") + (uuid "4a45a937-d131-47f4-b575-d6acc1a7fd14") + (at 147.3075 55.74 180) + (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C64" + (at 0.5975 1.13 0) + (layer "B.SilkS") + (uuid "07a8d50d-a3da-4d50-969e-0d653f996ae2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "1uF" + (at 0 -1.43 0) + (layer "B.Fab") + (uuid "e8e8cf0a-9749-45f5-ac45-1d8f3d9d6248") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "9350ce8c-e6dc-44ab-856c-7c95bb9d8f17") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "f56aa524-a6d2-4569-97c7-cd00b1410191") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 0) + (layer "B.SilkS") + (hide yes) + (uuid "c4864094-17df-44e8-9517-197d1fec6593") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5fee8ea5-cdf2-4226-aa22-a9405b2a64ea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e1e28b18-a1a1-4624-b0b1-57d7fa279c68") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "88700970-fed2-4831-842b-db029babb493") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "87e3b0be-4b9e-4558-b751-4d2bd0920d54") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5e3120f3-d813-47d2-8a69-5dad7e076be1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/799dac55-4653-4856-af6e-ddab4a32162e") + (sheetname "/ethernet/") + (sheetfile "ethernet.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.146267 0.51) + (end 0.146267 0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "d4950416-ef83-4687-a942-47dc22945fa9") + ) + (fp_line + (start -0.146267 -0.51) + (end 0.146267 -0.51) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "62a7b8a7-ba20-4794-bd10-0ba02a7206ba") + ) + (fp_rect + (start -1.65 0.73) + (end 1.65 -0.73) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "283a82eb-b998-4b90-9541-2914aa13852d") + ) + (fp_rect + (start -0.8 0.4) + (end 0.8 -0.4) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "a6ac314a-ff33-4a59-a6b9-2fc0d82fa555") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "320c06d5-f870-4d64-adb1-591d25f84fd8") + (effects + (font + (size 0.4 0.4) + (thickness 0.06) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.8625 0 180) + (size 1.075 0.95) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "602e469f-7e34-44ac-b1b6-234b107ad925") + ) + (pad "2" smd roundrect + (at 0.8625 0 180) + (size 1.075 0.95) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "2a9cc8b5-68a8-4a77-98ab-6db00489cbc7") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0603_1608Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "51c1bcf6-aa20-449c-9c78-7efc0da059db") @@ -20499,7 +22505,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -20552,6 +22558,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "310c96e4-f0e7-4377-82fd-dbd8f06e1a5b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "8700c2af-b7dc-404d-a858-fd398979d13c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "0a1b8664-9ddc-46d1-a1ff-5d5b43147789") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/d06d554d-99ad-4b7d-b4c3-51888c2d368d") (sheetname "/Usb Connector/") @@ -20649,6 +22697,240 @@ ) ) ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "53adbd27-e38f-408c-aa72-91c9085cc45c") + (at 150.13 65.7425 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C45" + (at -0.3775 -3.44 90) + (layer "B.SilkS") + (uuid "eff0c79b-cba8-4acd-a4d4-75bc85ca43c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.16 90) + (layer "B.Fab") + (uuid "fa0af32e-9d7c-44e2-bb4d-f2a4c9201cf3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "01a2d74f-a0ff-4039-8b38-70112e2a2d96") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "4f21a174-22cc-48d5-8dea-f58ac16dcd71") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "d9a67ac2-b6c3-412f-8657-f7b5e1ec6bdd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "b6c89282-ed7b-4b3d-a117-857ed4045765") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "902bc6bc-213f-43d4-8fa0-54582b4c059e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "f0113426-30d4-40ad-b4f6-151b256ef2e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7f985bd4-d984-44f0-bb81-8f22ec58bce0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "55a8a9ed-666e-4db7-86cf-edf5a67c77b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/1a586e8e-5eb2-46d2-a8b1-0287b1ce1c01") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "779ca31d-c91a-42e8-900d-9d06851da9a8") + ) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "6f93544c-1731-4a78-aa5c-c58bf61bfb95") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "b78f1504-b6ed-4ffe-ab36-eb5ed5dcb604") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "56f71654-c903-46c0-af54-e819b566f631") + ) + (fp_text user "${REFERENCE}" + (at -0.0325 0 90) + (layer "B.Fab") + (uuid "25e73632-3d79-423f-8457-58c988071327") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 90) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/fpga/1V2") + (pintype "passive") + (uuid "dbe5f659-9f2b-437f-85ae-d264a666bbbe") + ) + (pad "2" smd roundrect + (at 0.5675 0 90) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "040201ab-81ac-4617-841a-7e8ea88b75bb") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "5e81f266-bfd4-4077-9203-e0c25e701577") @@ -20656,7 +22938,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C52" - (at 0 1.16 0) + (at 1.0775 -0.98 0) (layer "B.SilkS") (uuid "43ec681f-00e3-497b-8461-fd8107e08fcb") (effects @@ -20691,7 +22973,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -20744,6 +23026,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "f87f564d-6d0e-43d3-99eb-0c7ef5895699") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e302135b-ee16-4d45-a156-62c43063ef50") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "9d3e56d5-8284-4da1-b1f4-76410c7040d6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/f90fe6ac-e8e3-4366-ad0c-21a6d851e853") (sheetname "/ethernet/") @@ -20883,7 +23207,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -20936,6 +23260,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "90eb8bb3-a0a2-4196-9736-8619ef3a87cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "cb7284c6-e573-44ce-bdb9-3357a867fff7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "80770852-0ca4-452d-95ed-41d01ad8b720") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/db7280c0-20bf-4bf5-bcfe-9d2f881bd151") (sheetname "/ethernet/") @@ -21042,7 +23408,7 @@ (property "Reference" "C54" (at 0 1.68 0) (layer "B.SilkS") - (uuid "0ff08ea2-d5a0-4275-81c6-b560c3f70ad2") + (uuid "d09c1068-2255-4186-84cc-2539cd15289f") (effects (font (size 1 1) @@ -21054,7 +23420,7 @@ (property "Value" "10uF" (at 0 -1.68 0) (layer "B.Fab") - (uuid "ad20c94f-9b98-461f-ab32-7bcb9f8c996f") + (uuid "53d372a5-f018-405e-ab58-d86268890cf7") (effects (font (size 1 1) @@ -21067,7 +23433,7 @@ (at 0 0 0) (layer "B.Fab") (hide yes) - (uuid "c33e19db-df2d-4b49-86ba-50deef71262d") + (uuid "5d7ce0ce-5bfd-4381-894d-bc2a40f26fee") (effects (font (size 1.27 1.27) @@ -21075,11 +23441,11 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) - (uuid "4b595b1f-8dbd-449f-b02f-343bfea9d9eb") + (uuid "b337ec6b-b357-4b63-bf60-eb5b6ce81ebf") (effects (font (size 1.27 1.27) @@ -21128,6 +23494,48 @@ (justify mirror) ) ) + (property "MPN" "CL21A106KAYNNNE" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "abd67931-9294-4121-85c9-fef52d754783") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c6b6662f-e81e-4e3b-b5c4-751db3cab008") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C15850" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "13f6aa6d-f21f-441f-b1f2-a2bb206d2236") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/87c8bbff-7aad-43d6-9b68-36ac5beb18c2") (sheetname "/ethernet/") @@ -21225,6 +23633,461 @@ ) ) ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "68e2604f-248b-41cf-bcc8-c4599877f6b8") + (at 151.12 68.0175 -90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C39" + (at 0.9725 3.16 90) + (layer "B.SilkS") + (uuid "072a5956-40ee-49ab-81a0-cea5e884b913") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.16 90) + (layer "B.Fab") + (uuid "64094fdf-e7c1-412b-aaa6-517c65b74c17") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "ee9f2bbd-84f7-4628-8a4f-50067a4c75dc") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "b954ec9f-a7fa-45d6-988c-eac76fee17b6") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "f3e9cd74-c59f-4cfb-b502-e44bfbb4c81c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c1df0e03-f08a-4792-a4d4-35a5f9931ff5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "3e95a8a3-602e-4ab9-a06c-51df88214f28") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e6890f28-c279-4672-8109-eae50e15d642") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "89e414d2-9b7d-4882-8b43-db7bca388b2b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c846adff-b482-407f-bfff-1088dfdc8f70") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/2654a7e3-3523-44af-99fa-0d7b07654129") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "290cf7eb-b0c6-4e81-b86e-1a2362eccc0d") + ) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "835d5d7f-44d5-45dc-b9c3-bd9958db3ce7") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "b193bcdb-7033-4d2c-95b0-0507033b3a20") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "ffc8d766-8379-44b1-996a-8af02af30449") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "a80a3e65-573a-412b-af21-83c3e3496755") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 270) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "ae3969fd-2b2d-4c9a-8178-8cda5ad1208f") + ) + (pad "2" smd roundrect + (at 0.5675 0 270) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "bfac238e-42d5-4d92-93ac-fd349f6265f6") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" + (placed yes) + (layer "B.Cu") + (uuid "6c65f523-273a-4e34-a25b-808f20bd660b") + (at 151.11 65.7625 90) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "resistor handsolder") + (property "Reference" "R13" + (at -0.4375 -3.16 90) + (layer "B.SilkS") + (uuid "215abfa1-9250-4a12-a71d-85a17abeeb53") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100" + (at 0 -1.17 90) + (layer "B.Fab") + (uuid "b8b94f85-ca95-4100-82fc-04b55aad7812") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "437ab88a-aeae-4c0a-a30d-d309181ece22") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Resistor" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "694f4ba5-5981-498f-93aa-05fab2b88d92") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "7e693285-bf36-4c79-af29-92829bdf278e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Tolerance" "5%" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "842b7967-9ffe-4f86-bf9f-e29c32384ed8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "0402WGF1000TCE" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "13ead725-daab-4f27-b48a-080f434a7d0e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "aeb8e441-9bf8-421d-b0b7-e6956beff7a2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25076" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "267926b2-5a68-4ea4-828a-f20cb1903327") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "R_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/5dd7b07d-4f90-45ca-9c8c-fbd5a40e7801") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.167621 -0.38) + (end 0.167621 -0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2eb36eb0-050a-4ad7-8b79-2626fba4ea14") + ) + (fp_line + (start -0.167621 0.38) + (end 0.167621 0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ea298741-516d-4816-b1e1-eb08e2cea7d4") + ) + (fp_rect + (start -1.11 0.47) + (end 1.11 -0.47) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "490fd39c-9953-4104-b953-5c03c154eba6") + ) + (fp_rect + (start -0.525 0.27) + (end 0.525 -0.27) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "0314fc94-5177-4d70-91df-e96f95443dc3") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "c4aa8195-3e88-47ef-9f38-52cbe4bd59ee") + (effects + (font + (size 0.26 0.26) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5975 0 90) + (size 0.715 0.64) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/fpga/1V2") + (pintype "passive") + (uuid "9fa52f17-ae15-433f-b2c3-3f5bb80c33db") + ) + (pad "2" smd roundrect + (at 0.5975 0 90) + (size 0.715 0.64) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/fpga/VCCPLL_F") + (pintype "passive") + (uuid "6bac5041-b184-4b01-ab59-5d52751758e7") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "7438e2b7-73a3-4a47-be02-5913cc5de695") @@ -21267,7 +24130,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -21320,6 +24183,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2d6f78ba-d0af-41fd-b145-a41d150e8c54") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "8c25d50a-be2a-4210-b5d4-b32800d34030") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "93acb90f-25a4-438b-b1be-b800e5be638f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/fefa453b-a56a-4d1e-9e90-e2119d111222") (sheetname "/Usb Connector/") @@ -21420,11 +24325,11 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "7846b04f-b162-4e84-824d-c4584ec4c3cb") - (at 138.5 61.75 -90) + (at 139.0675 61.2) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C56" - (at 0 1.16 90) + (at 0.33 1.16 0) (layer "B.SilkS") (uuid "f0087faa-6680-47b9-86aa-00d19193e8d2") (effects @@ -21436,7 +24341,7 @@ ) ) (property "Value" "100nF" - (at 0 -1.16 90) + (at 0 -1.16 0) (layer "B.Fab") (uuid "cfbab684-4bce-41ba-a27a-0a75a3f6f5a6") (effects @@ -21448,7 +24353,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 0) (layer "B.Fab") (hide yes) (uuid "13661af3-a8f8-47aa-8f64-4753e854a6ba") @@ -21459,8 +24364,8 @@ (justify mirror) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) (layer "B.Fab") (hide yes) (uuid "8b9ab598-2bfe-4f83-bf5a-4c264d662e72") @@ -21472,7 +24377,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) + (at 0 0 0) (layer "B.SilkS") (hide yes) (uuid "0115248a-5dae-4664-a7bf-b1b5553eeb21") @@ -21485,7 +24390,7 @@ ) ) (property "Type" "X7R" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "B.Fab") (hide yes) @@ -21499,7 +24404,7 @@ ) ) (property "V" "10V" - (at 0 0 90) + (at 0 0 180) (unlocked yes) (layer "B.Fab") (hide yes) @@ -21512,6 +24417,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "54a56335-a058-4232-b72a-4186cd9d1453") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c49a4277-5849-416d-9dab-bea5eafc9159") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "706138e6-8d55-489a-be8a-fcb7ee6498ea") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/c5a015ef-cd71-47f0-877f-8349f444c150") (sheetname "/ethernet/") @@ -21524,16 +24471,6 @@ ) (attr smd) (duplicate_pad_numbers_are_jumpers no) - (fp_line - (start -0.115835 0.36) - (end 0.115835 0.36) - (stroke - (width 0.12) - (type solid) - ) - (layer "B.SilkS") - (uuid "5267d48c-3f21-4ff9-9b7a-a7caebc42884") - ) (fp_line (start -0.115835 -0.36) (end 0.115835 -0.36) @@ -21544,6 +24481,16 @@ (layer "B.SilkS") (uuid "32c072be-9f5c-4e4c-a183-b95b988374ec") ) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "5267d48c-3f21-4ff9-9b7a-a7caebc42884") + ) (fp_rect (start -1.09 0.46) (end 1.09 -0.46) @@ -21567,7 +24514,7 @@ (uuid "9216f787-6132-4222-b78c-d4df2251b5e1") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 0) (layer "B.Fab") (uuid "e48718d5-d1b6-4087-ac06-c653139924ff") (effects @@ -21579,7 +24526,7 @@ ) ) (pad "1" smd roundrect - (at -0.5675 0 270) + (at -0.5675 0) (size 0.735 0.62) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -21588,7 +24535,7 @@ (uuid "908de346-bf09-41a6-9a83-dcc96a8b6691") ) (pad "2" smd roundrect - (at 0.5675 0 270) + (at 0.5675 0) (size 0.735 0.62) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -21704,6 +24651,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e6c7c537-5858-4f9c-8a71-02caec336720") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e8465d92-2922-42db-8d9a-828ae92c40fd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "fc66b6b1-ed8b-4896-b4d6-92c8966557eb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4ba1fb55-31b4-4fae-890d-32ed7ee02c28") (sheetname "/Usb Connector/") @@ -21801,6 +24790,694 @@ ) ) ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "81ea70a0-e437-49db-83f1-cde0288b1148") + (at 151.1 63.5075 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C46" + (at 0.0275 -3.15 90) + (layer "B.SilkS") + (uuid "f0531d99-5ca5-448b-8ca3-652b94aaf2ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10nF" + (at 0 -1.16 90) + (layer "B.Fab") + (uuid "d2702429-0c2e-4049-8ce0-9573cc99358e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "b678c5da-df7c-443a-82a2-08dd2b726831") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "ad12a913-db91-466d-a089-07a8440f8853") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "d97909be-9b6a-4edb-9b09-e1c51a286fb8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "45f2cf21-bb91-403d-8141-4565e1c30031") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "a66f1925-5ab4-42a6-b0e3-5d931d873d40") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B103KB5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5c3d016e-b3b5-4dd2-ac4d-53dd42a39eb9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "659a0192-4c54-4c58-b7b8-67802d38e38c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C15195" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "dd272e16-4ee1-4748-b22e-563688e79bef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/d1e24540-41c7-4c30-ba19-966c89396a11") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "f963c977-1f6e-4ebb-82b1-519ebf404b34") + ) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fc98525f-71cb-47f4-a23d-31bed0d696a6") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "d457a79e-55a4-4498-a278-5dc925294f5e") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "0ce1a481-538d-480f-ac59-a21f5fef7d2c") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "b87911b7-aaac-4dcd-b02b-2277fc68da1a") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 90) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/fpga/VCCPLL_F") + (pintype "passive") + (uuid "4910aee7-1242-4dc3-af76-e16f9a0eac48") + ) + (pad "2" smd roundrect + (at 0.5675 0 90) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "d2221115-48f7-4f8d-a7e3-2c4a45407bd7") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Resistor_SMD:R_0402_1005Metric_Pad0.72x0.64mm_HandSolder" + (layer "B.Cu") + (uuid "83b69f41-b424-465f-8a19-6686e3984349") + (at 156.9325 56.35 180) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "resistor handsolder") + (property "Reference" "R22" + (at 0 1.17 0) + (layer "B.SilkS") + (uuid "16b1e16f-805d-43f9-a862-74fe820073cc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "10k" + (at 0 -1.17 0) + (layer "B.Fab") + (uuid "cea8c845-8340-4559-b674-f306a5681bec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "77f810f6-d671-409d-9c26-04c66359e14d") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Resistor" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "51516f3c-c007-4ed5-9c07-226f1377defa") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 0) + (layer "B.SilkS") + (hide yes) + (uuid "81adb143-2fd7-45b5-ab53-ac20e8a55249") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "47f81592-360b-47f5-9f9d-b0e770f8dda7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "835f09d7-daf4-4604-b5bd-c7784726b425") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "67eb6e03-82c4-4a35-906e-a751d773b13c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Tolerance" "5%" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e0e31840-70d0-4164-b124-1b12b3914927") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "R_*") + (path "/73763384-ff95-4826-8da6-2de53070e62f/82134b94-7df9-47aa-a1a3-2cc47ae2d232") + (sheetname "/fpga/") + (sheetfile "Fpga.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.167621 0.38) + (end 0.167621 0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4244bb0f-9392-44d0-9c3c-16a85ebc58f8") + ) + (fp_line + (start -0.167621 -0.38) + (end 0.167621 -0.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2d0dd8f3-2cf3-4f68-9835-f6698ab996dc") + ) + (fp_rect + (start -1.11 0.47) + (end 1.11 -0.47) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "8373b300-4399-47ae-bc44-3a2da5bf0977") + ) + (fp_rect + (start -0.525 0.27) + (end 0.525 -0.27) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "68e1eed5-fe82-4c3f-b300-f45abe5eafad") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "f86a8af6-d582-4f01-97ae-566228b9da39") + (effects + (font + (size 0.26 0.26) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5975 0 180) + (size 0.715 0.64) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "3e29e8d7-8cf5-4c34-8dc1-9c65e4fb9be9") + ) + (pad "2" smd roundrect + (at 0.5975 0 180) + (size 0.715 0.64) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "Net-(U10-~{WP}{slash}IO_{2})") + (pintype "passive") + (uuid "7db214a2-8ff9-4f04-89ca-ed5240c64435") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Resistor_SMD.3dshapes/R_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "863f96cd-6abd-4268-a4b9-8a171cea15fc") + (at 179.05 50.77 -90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C30" + (at 0 1.16 90) + (layer "B.SilkS") + (uuid "e8e50628-5854-4046-8820-2098b14741be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.16 90) + (layer "B.Fab") + (uuid "17844d92-c073-490d-b7e7-3728d8057a00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "797aa1a8-5a30-45eb-b5e9-076d00c41d6a") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 90) + (layer "B.Fab") + (hide yes) + (uuid "98cab10d-5943-41eb-8a0b-be9792bfbbb5") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 90) + (layer "B.SilkS") + (hide yes) + (uuid "1be4a317-b106-4d14-8f19-064551d975eb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5bbbcb71-e750-49b8-9365-88114a4f6d6a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "addb4513-a2e3-4cd6-8066-6c815c0c978c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "4903ee7a-507d-476a-9db4-2be2ecf099cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "9a40db28-e0d0-4222-b347-6893bcf4583e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c7453252-8e25-4f1d-b2ae-eeb73ce91f96") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/19d0fbca-0635-4f4e-9e3b-e407a6625f21") + (sheetname "/Usb Connector/") + (sheetfile "Usb Connector.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "dc0bf41e-acdc-4a03-972f-71c9b50f2d73") + ) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "67ed31aa-8a3f-4559-a358-20416e4b6fb9") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "ba17f9e6-a39c-48c3-a8ba-1cc610cc7c99") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "42bd4e68-ed87-45e5-873b-9637d17159f1") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "B.Fab") + (uuid "04906e5f-260b-4313-b442-1048663cb5f8") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 270) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "20d43b10-064c-4e0e-93fa-207dc574c679") + ) + (pad "2" smd roundrect + (at 0.5675 0 270) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "d9f2ca70-f6c3-45bb-9b99-7904e3ca9dd7") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Inductor_SMD:L_0603_1608Metric_Pad1.05x0.95mm_HandSolder" (layer "B.Cu") (uuid "89d56981-4acf-41a4-9b0d-635b363983c0") @@ -21808,7 +25485,7 @@ (descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)") (tags "inductor handsolder") (property "Reference" "FB2" - (at 0 1.43 90) + (at -0.885 1.11 90) (layer "B.SilkS") (uuid "cefd4be2-40c5-4833-8808-876e2c216773") (effects @@ -21843,7 +25520,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Ferrite bead, small symbol" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -21882,6 +25559,48 @@ (justify mirror) ) ) + (property "MPN" "GZ1608D601TF" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "09362d2c-feb9-41e5-9768-88349cd1fefc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Sunlord" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "df1fc918-1bfc-4d45-a1ee-5b8aa339c0ee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1002" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ef85dade-b9a3-4409-a1fa-c7a5d5893804") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "Inductor_* L_* *Ferrite*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/e5f506f5-b7d3-4532-bead-734eb617ac9a") (sheetname "/Usb Connector/") @@ -21982,11 +25701,11 @@ (footprint "Capacitor_SMD:C_0603_1608Metric_Pad1.08x0.95mm_HandSolder" (layer "B.Cu") (uuid "92916c2c-57c7-4230-91dd-4160bcea946c") - (at 134.75 58.6125 -90) + (at 133.74 59.27 180) (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C1" - (at 0 1.43 90) + (at 0 1.43 0) (layer "B.SilkS") (uuid "44e0ba06-7526-45b8-a5e8-8ba8f1743f58") (effects @@ -21998,7 +25717,7 @@ ) ) (property "Value" "1uF" - (at 0 -1.43 90) + (at 0 -1.43 0) (layer "B.Fab") (uuid "a381c930-96c4-44d5-bb10-1a0793fcb369") (effects @@ -22010,7 +25729,7 @@ ) ) (property "Datasheet" "" - (at 0 0 90) + (at 0 0 0) (layer "B.Fab") (hide yes) (uuid "01ea7a04-bb0e-4c83-8dac-e032ca20bfb3") @@ -22021,8 +25740,8 @@ (justify mirror) ) ) - (property "Description" "" - (at 0 0 90) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) (layer "B.Fab") (hide yes) (uuid "f0060680-7a58-4764-82ae-98801e3dc423") @@ -22034,7 +25753,7 @@ ) ) (property "KiLib_Generator" "SMD_2terminal_chip_molded" - (at 0 0 90) + (at 0 0 0) (layer "B.SilkS") (hide yes) (uuid "160d21fd-4d82-43f7-8b09-e3f80122f4ad") @@ -22047,7 +25766,7 @@ ) ) (property "Type" "X7R" - (at 0 0 90) + (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) @@ -22061,7 +25780,7 @@ ) ) (property "V" "10V" - (at 0 0 90) + (at 0 0 0) (unlocked yes) (layer "B.Fab") (hide yes) @@ -22074,6 +25793,48 @@ (justify mirror) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7e31ac1e-67ee-4083-bd38-77ad8eda8e79") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e9f6649b-6f51-4167-974f-b8e03224f88e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C15849" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "da03a754-fe4b-415d-8f7f-bdb140f3140e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/40418d5d-4330-4011-bbd6-b7348f3de494") (sheetname "/Power/") @@ -22129,7 +25890,7 @@ (uuid "afd5bed7-4be4-429c-8bbd-ff7b7724e8a5") ) (fp_text user "${REFERENCE}" - (at 0 0 90) + (at 0 0 0) (layer "B.Fab") (uuid "163baaf8-9a6c-4723-b36d-1ef4408488ca") (effects @@ -22141,7 +25902,7 @@ ) ) (pad "1" smd roundrect - (at -0.8625 0 270) + (at -0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -22150,7 +25911,7 @@ (uuid "35a80c8f-703b-46db-90d7-e35cba078b75") ) (pad "2" smd roundrect - (at 0.8625 0 270) + (at 0.8625 0 180) (size 1.075 0.95) (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) @@ -22178,7 +25939,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C58" - (at 0 1.16 90) + (at -1.5675 0.01 180) (layer "B.SilkS") (uuid "b8106ece-67d7-4fa8-9bcd-b57efed0cb66") (effects @@ -22213,7 +25974,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -22266,6 +26027,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "3fc42d15-a0fc-4c72-acc6-6c72aee4eb51") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "261455b5-b433-49e5-b4f2-b3766b16c402") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "1e5c471e-3254-412d-930f-525e18050d16") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/a68469bc-94a6-40c1-92f5-6966ad8047ea") (sheetname "/ethernet/") @@ -22370,7 +26173,7 @@ (descr "Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "inductor handsolder") (property "Reference" "FB3" - (at 0 1.55 0) + (at 3.04 0 0) (layer "B.SilkS") (uuid "85fd4043-2362-4f75-9f10-96eed2562224") (effects @@ -22405,7 +26208,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Ferrite bead, small symbol" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -22444,6 +26247,48 @@ (justify mirror) ) ) + (property "MPN" "FBU201209T-121Y-S-H" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e8d57658-c0e5-48c2-974b-a242bde42aed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "CAL-CHIP" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7524937a-e44f-4191-b23b-8ea3938b4713") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C3716685" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "6ee48591-3f76-4530-9a59-2cb9b8bad2e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "Inductor_* L_* *Ferrite*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/37825bb5-a52b-44e9-a948-b80f4dcc7d17") (sheetname "/ethernet/") @@ -22549,7 +26394,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R12" - (at 0 1.17 0) + (at -2.9225 0.73 0) (layer "B.SilkS") (uuid "cd193f73-7e34-47ab-bff5-9f2abab1be37") (effects @@ -22584,7 +26429,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -22623,6 +26468,48 @@ (justify mirror) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c5482b59-2528-44e5-bbda-1d0d5aaac0c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "1ce67141-b9a7-4513-aaeb-1a51586f2356") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25744" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "4f4ed3d0-0c35-4435-8601-fe3ab5ed49b4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "R_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/9a32e9a6-0619-4f80-a056-6d0e2f66bc71") (sheetname "/fpga/") @@ -22695,7 +26582,6 @@ (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) (net "/Power/3V3") - (pinfunction "~_1") (pintype "passive") (uuid "1b05e904-42d1-45b2-8720-3fdccfc36378") ) @@ -22705,7 +26591,6 @@ (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/CDONE") - (pinfunction "~_2") (pintype "passive") (uuid "a8e9db9b-b46a-4496-800a-7187c5d54bbf") ) @@ -22729,7 +26614,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C38" - (at 0 1.16 0) + (at 2.4975 0.02 0) (layer "B.SilkS") (uuid "2bb4c4aa-09d0-4279-b7f1-888fc5a7aab1") (effects @@ -22764,7 +26649,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -22817,6 +26702,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "3cd6496a-f819-473c-859a-aa2c271a5a1a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "83c4732c-e857-440f-87f8-5d83dbb8c4a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "3b95d2a3-6e45-4f33-a624-20416cac8e02") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/a0ff8352-595a-4cd8-b36e-256eb1cc7db0") (sheetname "/Usb Connector/") @@ -22921,7 +26848,7 @@ (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C2" - (at 0 1.43 0) + (at 1.1175 1.17 0) (layer "B.SilkS") (uuid "c35e111f-abf4-4184-bf2f-593b724397c2") (effects @@ -22956,7 +26883,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -23009,6 +26936,48 @@ (justify mirror) ) ) + (property "MPN" "CL10A105KB8NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "59f91c13-d41a-43af-9f55-524a070963af") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5a3e1219-ccb7-4125-8bf7-261d606bf252") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C15849" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "5a290212-da7d-4ef1-9a58-e459f11f92ae") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/69f32f10-d46b-43fd-9030-7f4135d40b78/15183678-c2b8-4762-8391-d50dbec9b01f") (sheetname "/Power/") @@ -23114,7 +27083,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R9" - (at 0 1.17 90) + (at 0.3575 0.985 90) (layer "B.SilkS") (uuid "272d22c9-d450-4f2b-bcd8-2f6e66ef6811") (effects @@ -23149,7 +27118,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -23188,6 +27157,48 @@ (justify mirror) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2dfe8c00-328f-4835-aefc-568f76265201") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "d73b5d2b-62b0-4027-bf2a-63524ad971a4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25744" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ee4db80f-46da-46da-8151-ee27fcf569ad") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "R_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/93aff3cc-9831-4437-b1aa-0e5dbb35883c") (sheetname "/Usb Connector/") @@ -23328,7 +27339,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -23367,6 +27378,48 @@ (justify mirror) ) ) + (property "MPN" "0402WGF1242TCE" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "0895247b-1a1c-4e3c-ab98-51bde71b5f32") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "1aaaef5f-d1b8-462c-821c-880de67ac701") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C11692" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "f91a6617-0587-4eeb-a5a4-7a7b036e9712") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "R_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/8fa0e05f-7b05-4576-a7f1-bee85be14a55") (sheetname "/ethernet/") @@ -23439,7 +27492,6 @@ (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) (net "Net-(U11-RSET_BG)") - (pinfunction "~_1") (pintype "passive") (uuid "7052f03a-1ee6-48be-a2b3-5e3f5411b1bd") ) @@ -23449,7 +27501,6 @@ (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) (net "GND") - (pinfunction "~_2") (pintype "passive") (uuid "0440f1f7-b88c-4585-8058-141f1d3d8e8a") ) @@ -23473,7 +27524,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C47" - (at 0 1.16 0) + (at 2.3575 0.58 0) (layer "B.SilkS") (uuid "47848cee-aa6e-447a-a740-fd6352720c62") (effects @@ -23508,7 +27559,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -23561,6 +27612,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "03b94976-c1ee-4fa7-9f50-a6ce03b9d4ee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "6aa653b1-1f2d-4551-8a52-22430368d277") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "95cef920-2a95-420b-b3c5-7d1c9f997c46") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/32fb54c4-87ff-496a-b533-4c8b556284e3") (sheetname "/fpga/") @@ -23665,7 +27758,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C36" - (at 0 1.16 0) + (at -0.0125 2.53 0) (layer "B.SilkS") (uuid "c79c2007-bc94-4aef-9bec-0aee14d69c71") (effects @@ -23700,7 +27793,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -23753,6 +27846,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "cd7cea54-f1f7-44d1-9ff4-d6ed37d6f4e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "92b37b22-a047-45a0-af28-98e19960bddd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "a60d79bf-4c25-4ad0-8471-e9d0a87c1728") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/dad5042a-47c2-4667-854c-aeaf6e74a8be") (sheetname "/Usb Connector/") @@ -23857,7 +27992,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C23" - (at 0 1.16 90) + (at 2.425 -0.63 90) (layer "B.SilkS") (uuid "97cc3018-3651-403c-98be-e2e5b638edb7") (effects @@ -23892,7 +28027,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -23945,6 +28080,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "b7c337fa-5029-428b-ab83-65b1a4c1ddd4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "bf2c3001-8a38-437d-8bca-d673218a395b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ee11fdca-01db-49d2-bc98-7d49e3b9e7a9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/f818f753-a2ba-416e-840b-85744c6dd0b5") (sheetname "/Usb Connector/") @@ -24084,7 +28261,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -24137,6 +28314,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "a9f02220-19ee-4c73-b07a-e62182ef4626") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "51d4a0a8-6fd0-4a11-9266-1ac51f78747d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c0a79da8-d383-447a-947f-055d5c72718c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/c6375d09-4912-4f54-9d1f-c93aa166d641") (sheetname "/Usb Connector/") @@ -24276,7 +28495,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -24329,6 +28548,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "7537c6a3-acb9-403d-9d9b-b6bee58454ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "86c6bb0e-9135-42b0-ac13-5df5dd59f237") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c02d617b-a527-4db2-b506-4b0c7b0b3aa0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/f38f677c-6616-4307-a1b7-f335121bc64d") (sheetname "/Usb Connector/") @@ -24429,11 +28690,11 @@ (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "e29385a1-345b-445d-a370-df3eb7a4cae4") - (at 141.3425 63.4 180) + (at 141.3425 63.8 180) (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C53" - (at 0 1.16 0) + (at 2.3025 -0.01 0) (layer "B.SilkS") (uuid "53f600f0-ac40-4711-b805-a9656fd2a5b0") (effects @@ -24468,7 +28729,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -24521,6 +28782,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "050d08f4-aeb3-4348-8a2c-43bfe3aa4fee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "712e864a-f21e-4585-b730-197e41cef535") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "b3cd0a0f-75c9-4c26-8d19-07486b7ddc9f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/86b0237d-2733-4f4b-a43d-cee173dea09a") (sheetname "/ethernet/") @@ -24618,6 +28921,240 @@ ) ) ) + (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" + (layer "B.Cu") + (uuid "e30171d0-c0c0-4ea1-b83e-3ee2972a83be") + (at 170.2675 50.58 180) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") + (tags "capacitor handsolder") + (property "Reference" "C20" + (at -0.0125 2.75 0) + (layer "B.SilkS") + (uuid "d5465119-5eac-490e-b6a4-e0162261f73e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "100nF" + (at 0 -1.16 0) + (layer "B.Fab") + (uuid "ef6f6b2a-3d68-4af3-9fd6-6054754c4176") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "77757ceb-8616-48c7-93aa-d9e599862921") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "Description" "Unpolarized capacitor" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "b4bdebb7-b9c2-4fa3-8e01-f049a1706e86") + (effects + (font + (size 1.27 1.27) + ) + (justify mirror) + ) + ) + (property "KiLib_Generator" "SMD_2terminal_chip_molded" + (at 0 0 0) + (layer "B.SilkS") + (hide yes) + (uuid "7ce1be09-6c3a-4b5d-a3a3-4c1f20b8205d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Type" "X7R" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "38eb008d-555f-4df9-b909-b0d5dca53f9f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "V" "10V" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "ad91dfb4-942f-4b44-b7ec-4afb0eeddfee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "e4d9669b-6e18-44c6-8a49-1575e5e30de9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "f5d67054-0177-4294-bd7a-a81272c8b245") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "dccde52a-a45a-430a-a13b-1c9d43fef73a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "C_*") + (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4c941593-b81d-4a2e-a6a5-787c20d5f444") + (sheetname "/Usb Connector/") + (sheetfile "Usb Connector.kicad_sch") + (units + (unit + (name "A") + (pins "1" "2") + ) + ) + (attr smd) + (duplicate_pad_numbers_are_jumpers no) + (fp_line + (start -0.115835 0.36) + (end 0.115835 0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "46b9467b-eac6-43f0-a13e-ba493c0f1da3") + ) + (fp_line + (start -0.115835 -0.36) + (end 0.115835 -0.36) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "b936ee9b-ab52-4ee2-b42d-58e59dbbb1ed") + ) + (fp_rect + (start -1.09 0.46) + (end 1.09 -0.46) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "B.CrtYd") + (uuid "98b3d3ed-0b97-445f-adf4-1b3f200f68ef") + ) + (fp_rect + (start -0.5 0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (fill no) + (layer "B.Fab") + (uuid "a305ef7d-70c8-44ce-8424-26a4c9bbbbd8") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "B.Fab") + (uuid "40323839-30b8-4613-ac5e-22f77a7b04b1") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + (justify mirror) + ) + ) + (pad "1" smd roundrect + (at -0.5675 0 180) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "GND") + (pintype "passive") + (uuid "3519e04a-b68e-4338-adfb-f258bfaf4459") + ) + (pad "2" smd roundrect + (at 0.5675 0 180) + (size 0.735 0.62) + (layers "B.Cu" "B.Mask" "B.Paste") + (roundrect_rratio 0.25) + (net "/Power/3V3") + (pintype "passive") + (uuid "d1642d5d-a9fd-4948-a786-63dfb21308c8") + ) + (embedded_fonts no) + (model "${KICAD10_3DMODEL_DIR}/Capacitor_SMD.3dshapes/C_0402_1005Metric.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) (footprint "Capacitor_SMD:C_0402_1005Metric_Pad0.74x0.62mm_HandSolder" (layer "B.Cu") (uuid "eb7a3d72-768c-4f4a-8d06-fd2ae11a3db7") @@ -24625,7 +29162,7 @@ (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C60" - (at 0 1.16 0) + (at 0.0025 1.71 0) (layer "B.SilkS") (uuid "8d52ff2e-1341-4730-8149-bfd719e9b942") (effects @@ -24660,7 +29197,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -24713,6 +29250,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "f6ca5e1c-b436-4cd0-a0be-50de6adf6eac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "af348ace-c17e-430a-bc83-b67d518ccac3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "a1763b4c-9a15-4efc-9248-5f4ce7c0aadf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/c2ddb95f-8a63-4bb0-b3f2-a27a372fea3a/6f202e5c-3771-4e1c-a64b-882d9195bdf4") (sheetname "/ethernet/") @@ -24852,7 +29431,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -24905,6 +29484,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "92b0b1d1-77aa-440e-a90c-5830116738f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "2a25c4b1-3ad9-4ce4-9a2d-5cc41716f0d8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "139a747b-fde6-4721-b425-0e2e64b64238") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/4d7819e8-1253-4696-a4fe-93a881eaa454") (sheetname "/Usb Connector/") @@ -25009,7 +29630,7 @@ (descr "Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf)") (tags "inductor handsolder") (property "Reference" "FB1" - (at 0 1.43 90) + (at -4.61 -0.235 90) (layer "B.SilkS") (uuid "a6d3f8e2-c7bd-4a87-97e1-c9e5114ae4a7") (effects @@ -25044,7 +29665,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Ferrite bead, small symbol" (at 0 0 90) (layer "B.Fab") (hide yes) @@ -25083,6 +29704,48 @@ (justify mirror) ) ) + (property "MPN" "GZ1608D601TF" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "36cfce64-68d1-4c13-8bee-4158e9ab426e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Sunlord" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "9d014d9a-bb8f-43a1-b02b-c158a3cac6c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1002" + (at 0 0 270) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c2bbbba1-61a1-42ef-a22d-bd29b1261914") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "Inductor_* L_* *Ferrite*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/5b37f370-0a43-4f87-b9aa-18f15d5a7a01") (sheetname "/Usb Connector/") @@ -25188,7 +29851,7 @@ (descr "Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "capacitor handsolder") (property "Reference" "C42" - (at 0 1.43 0) + (at 0.2975 1.16 0) (layer "B.SilkS") (uuid "cfb1579b-a601-476f-9b80-ff172b373d7f") (effects @@ -25199,7 +29862,7 @@ (justify mirror) ) ) - (property "Value" "4.7uF" + (property "Value" "10uF" (at 0 -1.43 0) (layer "B.Fab") (uuid "bf7a843a-85d8-44f9-a989-f60325c9335b") @@ -25223,7 +29886,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -25248,7 +29911,7 @@ (justify mirror) ) ) - (property "Type" "X7R" + (property "Type" "X5R" (at 0 0 180) (unlocked yes) (layer "B.Fab") @@ -25276,6 +29939,48 @@ (justify mirror) ) ) + (property "MPN" "CL10A106KP8NNNC" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "0cdd69ca-fbdb-4cb7-b623-dd261f3186bb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "4e3adc2a-5c4c-44e1-abaa-7a12009475b3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C19702" + (at 0 0 0) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "103d5bb2-9963-4573-9307-92f221d77b91") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/170fb1df-3975-4fe7-a89c-98fb9f597901") (sheetname "/fpga/") @@ -25381,7 +30086,7 @@ (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC-7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf)") (tags "resistor handsolder") (property "Reference" "R11" - (at 0 1.17 0) + (at -0.2425 1.6 0) (layer "B.SilkS") (uuid "c66aea58-a2f1-4470-b54f-afb58f15297e") (effects @@ -25416,7 +30121,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Resistor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -25455,6 +30160,48 @@ (justify mirror) ) ) + (property "MPN" "0402WGF1002TCE" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "c725a1ea-6c9e-4ae0-befd-c1351dbc3919") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "UNI-ROYAL" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "30bdfcf5-caa1-4f0f-81bf-907ca443a5b1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C25744" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "1d574400-6671-42ad-8d5d-5079017d7bc0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "R_*") (path "/73763384-ff95-4826-8da6-2de53070e62f/4f677ad0-bb05-4434-8c1e-5d3a6ddffd4b") (sheetname "/fpga/") @@ -25527,7 +30274,6 @@ (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) (net "/Power/3V3") - (pinfunction "~_1") (pintype "passive") (uuid "900e1d59-aabc-4960-8748-d28952b922ae") ) @@ -25537,7 +30283,6 @@ (layers "B.Cu" "B.Mask" "B.Paste") (roundrect_rratio 0.25) (net "/Usb Connector/CRESET") - (pinfunction "~_2") (pintype "passive") (uuid "ffbd2f24-e6d3-4d08-8c84-b643f64c7d02") ) @@ -25596,7 +30341,7 @@ (justify mirror) ) ) - (property "Description" "" + (property "Description" "Unpolarized capacitor" (at 0 0 0) (layer "B.Fab") (hide yes) @@ -25649,6 +30394,48 @@ (justify mirror) ) ) + (property "MPN" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "0aa9fa74-70bb-49a0-a569-6f8c5f80f229") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Manufacturer" "Samsung" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "1149f2a5-7222-49f0-828a-ca837474f780") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "B.Fab") + (hide yes) + (uuid "d5cbdb7e-c882-46d6-92d2-727615831cc5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) (property ki_fp_filters "C_*") (path "/64033f5d-a512-44d7-9483-4c31ef84bd56/038bed8f-e394-4f9a-b327-b6d4caf6d69d") (sheetname "/Usb Connector/") @@ -25847,36 +30634,20 @@ (uuid "a6cb8d27-e451-4ead-95f6-b40c4d65dd18") ) (segment - (start 157.45 59.344314) - (end 157.72 59.074314) + (start 157.029239 62.3625) + (end 157.029239 61.508677) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_CS") - (uuid "14eefe4d-07bc-4bda-bbdf-d215954827b9") + (uuid "0a973f95-87c2-4f0e-9636-c2d63de38e26") ) (segment - (start 157.029239 61.57939) - (end 157.45 61.158627) + (start 157.029239 61.508677) + (end 158.780002 59.757914) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_CS") - (uuid "1d0a8d8c-9793-4a25-bd12-2e95ab7e5770") - ) - (segment - (start 157.72 54.842501) - (end 156.694999 53.8175) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "45d35e3a-7a9e-4961-8740-c18aaebacbf5") - ) - (segment - (start 157.72 59.074314) - (end 157.72 58.38) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_CS") - (uuid "53a37a2b-06dc-4a26-b08d-d70281d427cc") + (uuid "31936482-e3bd-4017-ac92-83c032f1aebc") ) (segment (start 163.825 59.77) @@ -25895,36 +30666,36 @@ (uuid "5ca1c3a7-eaad-4429-9516-1998b7fefb99") ) (segment - (start 157.45 61.158627) - (end 157.45 59.344314) + (start 158.780002 59.757914) + (end 158.780002 56.92) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_CS") - (uuid "974b7f8e-515d-4a34-b7f9-2dddf26fd488") + (uuid "61de2905-0a57-4304-a047-10e6d72558d4") ) (segment - (start 157.72 58.38) - (end 157.72 54.842501) + (start 157.255319 53.8175) + (end 158.780002 55.342183) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_CS") - (uuid "b91261aa-11ad-470a-935a-976b72d3ada7") + (uuid "869dd4b0-ad2c-4794-b680-853a14eaa7f3") ) (segment - (start 157.029239 62.3625) - (end 157.029239 61.57939) + (start 158.780002 55.342183) + (end 158.780002 56.92) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_CS") - (uuid "c88bed26-cb44-44ce-8858-55141786556e") + (uuid "9c829673-665f-4da7-940a-76357e32753a") ) (segment - (start 156.694999 53.8175) - (end 155.8825 53.8175) + (start 155.8825 53.8175) + (end 157.255319 53.8175) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_CS") - (uuid "ffd7a8ee-c07b-4fd2-bea8-690220c07426") + (uuid "eece6805-dc4b-4e19-b678-0219d8061163") ) (via (at 160.46 58.4) @@ -25935,52 +30706,44 @@ (uuid "43608628-d0f7-4a1f-87c4-970c523f6dae") ) (via - (at 157.72 58.38) + (at 158.780002 56.92) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "/fpga/FLASH_CS") (uuid "a16c6251-b276-4a89-8a75-29fc4d8ef60f") ) + (segment + (start 160.270002 58.41) + (end 158.780002 56.92) + (width 0.2) + (layer "B.Cu") + (net "/fpga/FLASH_CS") + (uuid "7b28e052-5eac-4a8c-89ad-44698faa4055") + ) + (segment + (start 160.45 58.41) + (end 160.270002 58.41) + (width 0.2) + (layer "B.Cu") + (net "/fpga/FLASH_CS") + (uuid "d6df4846-b85b-495a-b405-7322eac7807e") + ) (segment (start 160.46 58.4) - (end 157.74 58.4) + (end 160.45 58.41) (width 0.2) (layer "B.Cu") (net "/fpga/FLASH_CS") - (uuid "3ddb34e2-bd02-42b7-9c6b-ba2a5307e5e4") + (uuid "eafce66e-8f64-46f7-837b-4b20962a613f") ) (segment - (start 157.74 58.4) - (end 157.72 58.38) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_CS") - (uuid "b6e3bba0-91ff-4110-9bf0-b0da1aa66933") - ) - (segment - (start 156.529239 62.3625) - (end 156.529239 61.513703) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "14e046ff-49a9-4cfc-99a9-7be8f3c6dee9") - ) - (segment - (start 157.05 55.442501) - (end 156.694999 55.0875) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "169eec48-2952-41aa-b8f3-7e507c3bb1c6") - ) - (segment - (start 156.694999 55.0875) + (start 157.7475 55.0875) (end 155.8825 55.0875) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_MISO") - (uuid "2b6d331f-fa1e-4642-96d9-da555d315325") + (uuid "17d42b1d-036b-488f-826d-cee0c454307a") ) (segment (start 164.9 59.00241) @@ -25990,22 +30753,6 @@ (net "/fpga/FLASH_MISO") (uuid "3e6aa480-f04a-470b-ab78-8638d0d22f8d") ) - (segment - (start 156.529239 61.513703) - (end 157.05 60.992942) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "637ee115-cbb4-43ad-a493-3fad413a01ad") - ) - (segment - (start 157.05 60.992942) - (end 157.05 55.442501) - (width 0.2) - (layer "F.Cu") - (net "/fpga/FLASH_MISO") - (uuid "79ca1cc2-aa3a-45af-9f5f-92cd33965751") - ) (segment (start 164.63241 59.27) (end 164.9 59.00241) @@ -26014,6 +30761,14 @@ (net "/fpga/FLASH_MISO") (uuid "93e367ce-4d23-43d9-beea-bf9d7d94f15f") ) + (segment + (start 158.23 59.812942) + (end 158.23 55.57) + (width 0.2) + (layer "F.Cu") + (net "/fpga/FLASH_MISO") + (uuid "979625cd-5a43-4333-b6f3-57bd63112dae") + ) (segment (start 161.4625 56.9825) (end 161.44 56.96) @@ -26030,6 +30785,22 @@ (net "/fpga/FLASH_MISO") (uuid "a711e880-55e3-4752-ae70-c1f56e6c465a") ) + (segment + (start 156.529239 62.3625) + (end 156.529239 61.513703) + (width 0.2) + (layer "F.Cu") + (net "/fpga/FLASH_MISO") + (uuid "bc187ed4-e7e1-45a7-bb48-d78a5588f347") + ) + (segment + (start 158.23 55.57) + (end 157.7475 55.0875) + (width 0.2) + (layer "F.Cu") + (net "/fpga/FLASH_MISO") + (uuid "d5122121-a838-412c-a791-b7e912f59c4f") + ) (segment (start 163.883576 56.9825) (end 161.4625 56.9825) @@ -26046,8 +30817,16 @@ (net "/fpga/FLASH_MISO") (uuid "f49e4b70-95c5-468d-b917-ce042f809a77") ) + (segment + (start 156.529239 61.513703) + (end 158.23 59.812942) + (width 0.2) + (layer "F.Cu") + (net "/fpga/FLASH_MISO") + (uuid "fea2266c-a915-4a06-9566-7de678d8ae6c") + ) (via - (at 157.055971 55.707157) + (at 158.230002 55.570001) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -26062,449 +30841,30 @@ (net "/fpga/FLASH_MISO") (uuid "c3c2cb1a-3e13-442e-8e1e-37affd6732c4") ) - (segment - (start 160.187157 55.707157) - (end 157.055971 55.707157) - (width 0.2) - (layer "B.Cu") - (net "/fpga/FLASH_MISO") - (uuid "3957079e-7e30-48fa-8030-c19870b780e1") - ) (segment (start 161.44 56.96) - (end 160.187157 55.707157) + (end 159.62 56.96) (width 0.2) (layer "B.Cu") (net "/fpga/FLASH_MISO") - (uuid "85085e41-5b75-4d2d-88c9-29dc55fbc0df") + (uuid "0fd34afb-c2f1-4a09-85c9-b9627313b558") ) (segment - (start 152.341739 67.05) - (end 151.506671 67.05) + (start 159.62 56.96) + (end 158.230002 55.570001) (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "38256427-945c-40dc-bd14-21e78bee13e9") - ) - (segment - (start 184.95 62.02) - (end 184.95 63.5) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "43213d84-d0b8-46db-9db8-ad66ebf3b8eb") - ) - (segment - (start 134.745 57.73) - (end 135.98 57.73) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "492649a1-eac5-473a-9695-927e64c7fc54") - ) - (segment - (start 135.98 57.73) - (end 136 57.75) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "6181c829-0872-4781-afda-9cc5f097ff7f") - ) - (segment - (start 179.655 49.465) - (end 180.355 50.165) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "63e3c0cf-0d58-4bf2-a094-793f3577fe36") - ) - (segment - (start 153.975 52.39) - (end 153.22 52.39) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "7fb3c3b4-ba67-4eec-b578-a89788c438dd") - ) - (segment - (start 168.5775 50.61) - (end 169.7 50.61) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "8cd77f77-8d9b-4dc6-afc9-98846394f0dd") - ) - (segment - (start 150.456671 68.1) - (end 150.34 68.1) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "adb77d59-a78d-43c1-9fbd-c547ac069aa4") - ) - (segment - (start 150.34 68.1) - (end 150.3075 68.1) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "b2b700f2-a76c-498c-8d51-e9b58f000511") - ) - (segment - (start 151.506671 67.05) - (end 150.456671 68.1) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "b587e931-59e8-48fa-887b-3aea6b0d60ae") - ) - (segment - (start 153.12 53.63) - (end 152.09 54.66) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "e03fad1c-1ce4-4c06-86c5-e35b552d71f4") - ) - (segment - (start 179.1 49.465) - (end 179.655 49.465) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "ed3cbd1b-e56e-4e12-b37a-ee95efaa308e") - ) - (segment - (start 150.185 55.425) - (end 150.185 55.74) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "fc4b5cef-1560-466b-b4e5-fee61c649873") - ) - (segment - (start 153.22 52.39) - (end 150.185 55.425) - (width 0.2) - (layer "F.Cu") - (net "/Power/3V3") - (uuid "fce73aa1-df8c-4534-8ceb-360e451abe45") + (layer "B.Cu") + (net "/fpga/FLASH_MISO") + (uuid "8e9226a5-f4bc-45f5-9562-bb38a84801c2") ) (via - (at 159.21 68.56) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "20f1872f-1458-447f-9754-1998a1a65f2a") - ) - (via - (at 170.26 68.17) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "2137e37b-c7ad-4b9f-9b5a-9fbe19e9363e") - ) - (via - (at 184.998153 62.750687) + (at 156.37 56.36) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "250a510b-ee14-4869-bebb-361b199db2bd") - ) - (via - (at 190.02 63.53) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "2c39476d-ec15-46b7-aba0-622e2178a1a3") - ) - (via - (at 164.7675 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "331157a1-8104-4058-8aa8-ab2bb51c42d0") - ) - (via - (at 168.5775 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "3366e1f5-15be-45b4-af58-82d2c15a0d37") - ) - (via - (at 150.34 68.1) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "3a99f360-dde2-4e9f-a8b8-fcb8d388a1ca") - ) - (via - (at 150.185 55.74) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "3d1c1ab9-9fe3-4605-aad9-92146dbf9b03") - ) - (via - (at 186.525 62.425) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "4062ead8-29fc-4425-a194-a6da1910150e") - ) - (via - (at 153 62.35) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "492e9190-80a3-4ad6-aa64-6e733cd910cf") - ) - (via - (at 150.270343 57.596308) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "4fd646aa-cc55-4651-8137-ea3c111e639b") - ) - (via - (at 166.275 54.055) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "50263a66-85bb-4831-a4eb-66ebe63efe62") - ) - (via - (at 134.745 57.73) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "65341331-dc18-4392-970d-ce368284c8d9") - ) - (via - (at 163.8 60.3) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "67b2535d-1ce2-49ea-b46c-e94957975348") - ) - (via - (at 163.85 65.75) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "6f555f5d-4b08-4194-84f2-b0aa8372c7e6") - ) - (via - (at 190.02 61.6) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "700a53a6-def0-4a1a-acfe-d6b7ed0f4abe") - ) - (via - (at 155.8825 56.3575) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") + (net "Net-(U10-~{WP}{slash}IO_{2})") (uuid "754ed3b3-491c-450f-84a9-696ccd9869cf") ) - (via - (at 163.0575 55.0875) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "77d9cb3f-4e98-444b-aeef-9e5a924f71eb") - ) - (via - (at 163.0575 53.8175) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "87a41306-bebc-4aab-83c6-a323537029bb") - ) - (via - (at 152.09 57.2775) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "89cdb298-18dc-4b33-a2a2-c82ba4f671b2") - ) - (via - (at 163.4975 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "9318de10-e24b-453f-8ddb-df3949969565") - ) - (via - (at 166.0375 50.61) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "95efb47e-723f-4fd2-8dd2-e8afe0df506f") - ) - (via - (at 154.05 62.35) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "9a3d2935-4e34-47db-b10d-36767e49ecbe") - ) - (via - (at 136 57.75) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "9be7b19c-a4ba-4164-bb89-34a489603ef2") - ) - (via - (at 161.65 65.55) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "a03c17cb-6b0b-4c74-a631-3e5c411f4090") - ) - (via - (at 175.15 62.75) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "b0596318-81cf-44d9-9a53-065feeaa34fb") - ) - (via - (at 161.65 64.2) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "bb6d8399-8ffe-4592-8ee6-fbe293a42163") - ) - (via - (at 175.15 65.75) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/Power/3V3") - (uuid "bfde6220-64e3-4908-988e-6ac8bdd92c93") - ) - (via - (at 153.12 53.63) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "c92abf37-3c1d-4426-a2da-352ae6ef75b2") - ) - (via - (at 188.025 63.52) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "db964702-b819-4e93-ae3a-4303c000e1f2") - ) - (via - (at 152.09 55.0025) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "e5046617-e6e1-4a8d-ba72-795ed6e501e8") - ) - (via - (at 180.355 50.165) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Power/3V3") - (uuid "f08fa8a3-6a64-4ff0-8ce9-6275713622ed") - ) - (segment - (start 147.034451 57.596308) - (end 136.153692 57.596308) - (width 0.2) - (layer "B.Cu") - (net "/Power/3V3") - (uuid "1794894e-0d43-470c-bc80-853ae81f22ee") - ) - (segment - (start 150.270343 57.596308) - (end 148.785549 57.596308) - (width 0.2) - (layer "B.Cu") - (net "/Power/3V3") - (uuid "183c3351-f830-4f23-a66c-b811ed6beb97") - ) - (segment - (start 147.640761 56.989998) - (end 147.034451 57.596308) - (width 0.2) - (layer "B.Cu") - (net "/Power/3V3") - (uuid "4a4f746e-5a2c-475b-8390-9eee5ede7c3e") - ) - (segment - (start 136.153692 57.596308) - (end 136 57.75) - (width 0.2) - (layer "B.Cu") - (net "/Power/3V3") - (uuid "82358c71-266d-44b4-b3e8-ee1784489c01") - ) - (segment - (start 148.179239 56.989998) - (end 147.640761 56.989998) - (width 0.2) - (layer "B.Cu") - (net "/Power/3V3") - (uuid "94f69080-3977-470b-9b49-f731bd0fe3ee") - ) - (segment - (start 148.785549 57.596308) - (end 148.179239 56.989998) - (width 0.2) - (layer "B.Cu") - (net "/Power/3V3") - (uuid "e90c3534-1bd8-4073-80ff-ee6818a746e8") - ) (segment (start 176.17 65.27) (end 176.5 64.94) @@ -26513,6 +30873,14 @@ (net "GND") (uuid "05b0d11a-38e0-44e7-9701-5c4cc7e17045") ) + (segment + (start 141.79 66.3) + (end 141.67 66.18) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "081ea73b-2976-4c43-8d36-e99539ed2cb2") + ) (segment (start 172.75 67.075) (end 172.725 67.05) @@ -26522,12 +30890,28 @@ (uuid "084e0d42-8cd5-4d00-8ec0-a0794fc54132") ) (segment - (start 143.3 66.3) - (end 141.9 66.3) + (start 133.665 56.78) + (end 133.66 56.775) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "13cdca7a-66e7-435c-8784-f9d27eae9451") + (uuid "0ad6c8a7-203e-4558-a4a6-53518f04679d") + ) + (segment + (start 142.31 65.3) + (end 142.04 65.57) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "0f4d386e-2d2d-4b48-8eb2-bec8feccf53f") + ) + (segment + (start 143.3 64.3) + (end 142.525452 64.3) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "1c337e36-20d8-42f8-bc58-6b7d12ea155d") ) (segment (start 168.75 56.845) @@ -26537,6 +30921,14 @@ (net "GND") (uuid "24f7dd5a-6c2a-478b-9db4-b903fe14fdf5") ) + (segment + (start 166.75 68.195) + (end 166.75 66.96) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "24ff5751-1a77-478c-ac1b-0840bcafb636") + ) (segment (start 172.75 68.195) (end 172.75 67.075) @@ -26554,36 +30946,20 @@ (uuid "2cc55625-e0b2-415e-86c2-2917b0d37b35") ) (segment - (start 185.93 49.73) - (end 184.2 48) + (start 141.3875 68.2125) + (end 141.3875 66.9925) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "2d2ad81d-0053-4fb2-bd55-c7ac46552a89") + (uuid "356e7f33-2fe5-42eb-90ee-d3ae07c4035e") ) (segment - (start 142.3 66.8) - (end 142.2 66.7) + (start 142.47 66.8) + (end 142.23 67.04) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "3867df49-a10a-43e3-a483-667aa65983aa") - ) - (segment - (start 166.75 68.195) - (end 166.75 67.112945) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "41fd5a8f-ad44-4793-9c2b-1c5f4dd61f0c") - ) - (segment - (start 141.3875 67.1125) - (end 141.5 67) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "430afbdb-e14a-45f5-883b-d7041fefec5a") + (uuid "3fcfbb98-3592-4ba0-8425-b1ebce2ac494") ) (segment (start 135.858573 64.3) @@ -26594,12 +30970,20 @@ (uuid "44d0dbb6-3863-4fcf-86a9-ec5fbf291afd") ) (segment - (start 143.3 64.3) - (end 142.1 64.3) + (start 143.3 65.3) + (end 142.31 65.3) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "509c418e-b211-40fb-8abb-ed18b3548f73") + (uuid "4b65192b-edc5-409b-aa4d-7e3220290c43") + ) + (segment + (start 141.3875 66.9925) + (end 141.51 66.87) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "4d5fce97-3354-4329-a236-0275ca0cc6b5") ) (segment (start 173.25 58.03) @@ -26625,22 +31009,6 @@ (net "GND") (uuid "663efbed-926a-4d44-b40f-24c7aba6e5cc") ) - (segment - (start 197.43 46.74) - (end 197.43 49.295) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "68c47a49-d42f-48fa-a812-fe080716c280") - ) - (segment - (start 141.9 66.3) - (end 141.8 66.2) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "6d7f7a13-a29e-4d6d-a301-aac333dc33f6") - ) (segment (start 171.25 58.025) (end 171.3 58.075) @@ -26658,12 +31026,20 @@ (uuid "75894245-92da-4934-a675-c0a9f5ba383c") ) (segment - (start 143.3 66.8) - (end 142.3 66.8) + (start 196.19 47.6625) + (end 196.19 49.62) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "77001ed3-2f11-4758-a1b9-c9ca4d871e4d") + (uuid "75ce2d9c-9131-41e9-b2a1-f7c11cec02ed") + ) + (segment + (start 134.975 61.3) + (end 136 61.3) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "7678cb66-b5d5-40f6-a37b-661e6bbb11f1") ) (segment (start 134.975 65.8) @@ -26697,14 +31073,6 @@ (net "GND") (uuid "8716817d-039b-4143-b09b-5e3f23d494bb") ) - (segment - (start 143.3 65.3) - (end 142.1 65.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "89beb43d-dc9e-4aa5-97ca-8ce610e90556") - ) (segment (start 166.25 57.97) (end 166.27 57.99) @@ -26714,12 +31082,12 @@ (uuid "92153619-d2cf-4f40-be84-26fa6c022c89") ) (segment - (start 197.425 49.3) - (end 197.425 49.975) + (start 143.3 66.3) + (end 141.79 66.3) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "952ca80e-d893-4e9b-b772-69a415125d87") + (uuid "93b193d6-ae16-442d-83fc-f2257d197d7c") ) (segment (start 168.25 57.920491) @@ -26737,22 +31105,6 @@ (net "GND") (uuid "9a3da26b-68ce-4094-a454-d894bf6162bc") ) - (segment - (start 197.43 49.295) - (end 197.425 49.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "9b594585-b797-4267-8858-e559e242b20d") - ) - (segment - (start 184.2 48) - (end 184.2 47.225) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "a22398fe-184a-48e5-a390-25f85bcc811a") - ) (segment (start 167.25 56.845) (end 167.25 57.863981) @@ -26761,6 +31113,22 @@ (net "GND") (uuid "a46f3111-14ea-43f8-9150-f8e0f084a7b0") ) + (segment + (start 196.19 49.62) + (end 196.21 49.64) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "a95c8ca3-aa58-411b-b9d5-51b9ed666b64") + ) + (segment + (start 136 61.3) + (end 136.3 61.6) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "b9f7d5ff-0dcc-49a2-85ff-246d9738b89a") + ) (segment (start 164.91161 62.77) (end 164.966645 62.714965) @@ -26786,20 +31154,12 @@ (uuid "ca5f9da0-a243-4bbb-a807-6820fcc0a6e2") ) (segment - (start 186.3 49.73) - (end 185.93 49.73) + (start 134.745 56.78) + (end 133.665 56.78) (width 0.2) (layer "F.Cu") (net "GND") - (uuid "d29a3ea3-3ea5-48db-aa9a-caf46b439275") - ) - (segment - (start 134.975 61.3) - (end 136.1 61.3) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "d40b8f1c-fd5d-4feb-a8d4-24f4ca4cb79b") + (uuid "d17323c2-0a5b-4067-9738-fad218b72299") ) (segment (start 137.3875 59.8875) @@ -26809,6 +31169,22 @@ (net "GND") (uuid "dd361011-1cd1-491b-8b36-008fca97be66") ) + (segment + (start 143.3 66.8) + (end 142.47 66.8) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "e151c895-fbba-449b-8796-227495a8ad84") + ) + (segment + (start 142.525452 64.3) + (end 141.06 65.765452) + (width 0.2) + (layer "F.Cu") + (net "GND") + (uuid "e5b3e345-2c94-4a06-8c92-d5a815b79fe0") + ) (segment (start 185.45 61.623269) (end 185.583269 61.49) @@ -26833,22 +31209,6 @@ (net "GND") (uuid "f526e72c-40af-47a6-b8ae-3c07d399d5be") ) - (segment - (start 141.3875 68.2125) - (end 141.3875 67.1125) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "f9527375-3946-4939-92da-8bba46ba774e") - ) - (segment - (start 166.75 67.112945) - (end 166.67485 67.037795) - (width 0.2) - (layer "F.Cu") - (net "GND") - (uuid "fa9b37e2-aa31-4d86-9bc7-69eed54653a7") - ) (segment (start 173.25 56.845) (end 173.25 58.03) @@ -26859,8 +31219,8 @@ ) (via (at 154.05 61.2) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -26875,9 +31235,9 @@ (uuid "04fbec2c-323b-480b-91e3-4425d9106c1d") ) (via - (at 160.35 68.56) - (size 0.3) - (drill 0.15) + (at 160.5375 68.56) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -26899,14 +31259,6 @@ (net "GND") (uuid "0aa7aa72-a240-4cc9-b7cb-90153044f7e4") ) - (via - (at 183.38 67.045) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "0ae5da56-dff9-4e1a-abb0-e29e25e0574a") - ) (via (at 203.885 50.65) (size 0.6) @@ -26916,7 +31268,7 @@ (uuid "0b53e954-e1d1-4d32-b278-27eeddc21d11") ) (via - (at 150.04 62.955) + (at 151.1 62.95) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -26932,7 +31284,7 @@ (uuid "0d574015-4c92-4dc5-a0d8-966753ebbe82") ) (via - (at 196.4 68.83) + (at 196.15 65.974998) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -26957,17 +31309,17 @@ ) (via (at 153.05 61.2) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") (uuid "15dc1c73-444f-4438-ae90-2b945eaf347d") ) (via - (at 170.26 69.28) - (size 0.3) - (drill 0.15) + (at 170.25 69.32) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -26982,17 +31334,25 @@ (uuid "1c8b2aa1-0aa1-491b-b8a2-a691e78e3ddd") ) (via - (at 128.5 71) + (at 134.45 68.89) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "21c1ec90-a137-4b3d-af44-cb61027221a6") + (uuid "1dd8d913-1b66-4d64-b9f2-fbc08092f2e2") ) (via - (at 176.25 62.75) - (size 0.3) - (drill 0.15) + (at 129.965 66.67) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "232c35d6-5493-4c85-a583-d1ea5b56ef4e") + ) + (via + (at 176.3 62.76) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27007,15 +31367,23 @@ (uuid "28b0ebb3-15d2-47f0-9492-3c3080ea8b59") ) (via - (at 128.5 67.5) + (at 157.8792 67.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "2ea410c6-74a2-45e6-b486-fbeb93493466") + (uuid "2af315a0-6665-46c1-86af-2b2fe5e137e3") ) (via - (at 192.48 66.75) + (at 152.67 53.73) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "2e5c2657-0ba8-4647-8b91-85caf1154a00") + ) + (via + (at 191.984998 66.75) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27023,7 +31391,7 @@ (uuid "2fd3fe45-cae3-433d-a66f-b67fcafbe93c") ) (via - (at 141.98 62.35) + (at 140.765 61.2) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27032,8 +31400,8 @@ ) (via (at 162.65 60.3) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27063,6 +31431,14 @@ (net "GND") (uuid "3c492eca-c95f-493c-ae26-da954cda8366") ) + (via + (at 129.69 68.4) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "3ccc4ac3-311d-4158-9f09-3a48a649779b") + ) (via (at 167.3075 50.61) (size 0.6) @@ -27079,6 +31455,30 @@ (net "GND") (uuid "45717444-d201-40f0-bd8a-b246e2fee4b7") ) + (via + (at 156.4792 67.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "45d0b567-db27-4afd-b2ed-9ccbbda225a5") + ) + (via + (at 156.4792 63.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "49232685-93f9-4397-a526-afafff0f9310") + ) + (via + (at 155.0792 65.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "4a8373f8-6e15-41e6-b12d-66bb9ddb230d") + ) (via (at 181.69 62.82) (size 0.6) @@ -27088,7 +31488,7 @@ (uuid "4aeae44b-c4dd-47b2-831d-f33d39a9afe8") ) (via - (at 141.5 67) + (at 141.51 66.87) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27096,22 +31496,13 @@ (uuid "4c28c2eb-ecbc-468b-831c-9d85710ee24a") ) (via - (at 149.06 62.95) + (at 150.13 62.94) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") (uuid "4e275cfd-19a5-4ef3-afea-9886c1515cf2") ) - (via - (at 186.3 49.73) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "4e2ba934-e338-4c06-9fbf-7e30dc84212b") - ) (via (at 197.9 69.775) (size 0.6) @@ -27121,41 +31512,17 @@ (uuid "4f1a88dd-2afe-4956-a0a0-6451e2b370f4") ) (via - (at 170.855 50.63) + (at 155.0792 67.9) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "556ec229-c9fa-4dae-b064-948e50981739") - ) - (via - (at 155.779239 65.8) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "584c9d46-43ce-4b45-902d-4555615ae452") - ) - (via - (at 155.779239 65.8) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "5ac2deeb-bcd1-40da-a7a8-c0d089f152f5") - ) - (via - (at 139.65 56.05) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "5b85f4a7-56b6-4107-bbd8-101f22c507cc") + (uuid "56c0b047-39c5-408d-931a-256886680adf") ) (via (at 132.55 64.65) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27170,7 +31537,7 @@ (uuid "5db58f0b-d400-4c99-991f-98bac8ec6ada") ) (via - (at 166.67485 67.037795) + (at 166.75 66.96) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27178,7 +31545,7 @@ (uuid "6013dc7b-f3fa-4d34-a050-4550d7f423fa") ) (via - (at 196.32 69.975) + (at 195.107498 69.91) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27212,28 +31579,20 @@ (uuid "65d0925b-683c-47f6-ac73-5711736cd7de") ) (via - (at 138.5 62.3175) + (at 139.65 56.05) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "671617af-5f28-49b5-af8d-4f6e77f02380") + (uuid "65f13f71-2fbe-48be-a797-13ecc3203053") ) (via - (at 183.87 65.58) + (at 185.09 67.0075) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "7064ad2b-fe38-4f7c-bb8f-03f89b345086") - ) - (via - (at 155.779239 65.8) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "74f871b1-e1cd-4e5e-9d4b-907dbdbe8725") + (uuid "73a30358-33bf-4268-856a-d12899a2ad7a") ) (via (at 206.425 50.65) @@ -27243,6 +31602,22 @@ (net "GND") (uuid "768bfd29-1ee8-4ea2-91fa-0f1616f8d62f") ) + (via + (at 157.8792 66.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "7a431ab4-a4ba-4c55-9186-994e0df5e081") + ) + (via + (at 196.21 49.64) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "7d32556d-b1d5-4b41-9602-c6febb7d6cf9") + ) (via (at 204.9 62) (size 0.6) @@ -27276,20 +31651,12 @@ (uuid "83b8c145-ef97-4acd-ac61-8ea983c7f04f") ) (via - (at 185.74 67.0375) + (at 146.445 55.74) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "8657bfd9-b32e-41dd-89fc-993db3bc5673") - ) - (via - (at 155.7 52.39) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "87956115-4c72-4064-857b-63ade056030b") + (uuid "84bcfb25-0c85-418a-b6ae-c3b39ecdf251") ) (via (at 168.29 55.325) @@ -27299,14 +31666,6 @@ (net "GND") (uuid "8930284e-3c5f-4997-a601-3bc149058e2b") ) - (via - (at 137.475 62.8) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "8a5a0d1b-394c-4aa0-9912-75817e81732a") - ) (via (at 164.4 53.85) (size 0.6) @@ -27324,14 +31683,6 @@ (net "GND") (uuid "8f29132e-50b5-41ad-bee1-85f856a43f36") ) - (via - (at 132.6 67.5) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "9360bebd-905d-4d35-9b50-a53e34098792") - ) (via (at 137.74 67.021619) (size 0.6) @@ -27341,7 +31692,7 @@ (uuid "99979a8a-aab3-48fd-a431-1beca85c27f9") ) (via - (at 142.1 64.3) + (at 141.06 65.765452) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27349,7 +31700,7 @@ (uuid "99ef274d-6e8f-4492-9dcb-2401b86402f9") ) (via - (at 134.75 56.775) + (at 133.66 56.775) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27364,6 +31715,14 @@ (net "GND") (uuid "9b660195-73e7-4817-8197-403a1a1fb22c") ) + (via + (at 156.4792 66.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "9ed124bd-5a07-4a3f-9d20-1744d543db2b") + ) (via (at 136.1 65.8) (size 0.6) @@ -27390,7 +31749,7 @@ (uuid "a278af3b-8d7d-47e7-a314-2926b5432266") ) (via - (at 141.8 66.2) + (at 141.67 66.18) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27405,6 +31764,14 @@ (net "GND") (uuid "a34e463b-4ca9-42f4-aac7-003a24f457a9") ) + (via + (at 157.8792 63.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "a5a6ab0a-d283-4b7d-bfb8-806dffb646b3") + ) (via (at 167.021452 58.092529) (size 0.6) @@ -27423,12 +31790,12 @@ (uuid "a5d2c340-6a41-4390-a1f0-38f792a735d7") ) (via - (at 179.1 50.6) + (at 155.0792 66.5) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "a839867b-b356-49f7-865e-c3ac80483e36") + (uuid "a5f32466-cae5-4426-9431-98f37a995f1a") ) (via (at 137.3875 60.939352) @@ -27439,9 +31806,33 @@ (uuid "ace199ce-c061-42de-bb9b-d8db61eb0c70") ) (via - (at 136.1 69.35) - (size 0.3) - (drill 0.15) + (at 153.6792 63.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "ad7d222b-b8bb-490f-bd4f-5a54c48588b7") + ) + (via + (at 153.6792 67.9) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "adcae720-4b01-44b5-9ada-8df37dd4374e") + ) + (via + (at 183.1975 65.58) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "aef87383-ba25-4ed0-9791-a6c891e17693") + ) + (via + (at 136.12 69.39) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27455,14 +31846,6 @@ (net "GND") (uuid "af6d7297-d66b-4bd6-8769-e9b5f14b7ed0") ) - (via - (at 155.779239 65.8) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "afec7e84-d9e6-4bef-b546-1de17ad53a91") - ) (via (at 205.9425 53.5925) (size 0.6) @@ -27472,15 +31855,7 @@ (uuid "b040dd0b-d8db-481b-9d91-1cd451b5b010") ) (via - (at 154.26 53.63) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "b34e3539-4aa1-492a-a57c-d46507d01447") - ) - (via - (at 142.2 66.7) + (at 142.23 67.04) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27488,30 +31863,29 @@ (uuid "b5779ac2-ac69-4810-b5f4-b48bae25615d") ) (via - (at 153.04 57.2775) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "b60f4301-8209-4424-8c62-963a8dcb81d5") - ) - (via - (at 197.425 49.975) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (free yes) - (net "GND") - (uuid "b74987af-030e-4803-93a2-9ceb1c0bd845") - ) - (via - (at 197.790855 64.04) + (at 197.930001 63.872499) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") (uuid "bc328bdf-087b-41a8-ad61-a530729f179f") ) + (via + (at 182.56 67.0075) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "bc9f9ab3-70ab-4dc3-8572-dd7ffd9b1260") + ) + (via + (at 155.0792 63.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "bd87f8c7-2a35-4f74-8aac-bede01413b70") + ) (via (at 166.615 58.93) (size 0.6) @@ -27522,15 +31896,31 @@ ) (via (at 162.7 65.8) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") (uuid "c0d1ad48-b5b7-4152-9e8e-e0bfee2c31de") ) (via - (at 149.1725 68.1) + (at 156.4792 65.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "c2d835a9-26d9-46a4-8cd8-f21bccc4424b") + ) + (via + (at 190.4 50.17) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "c6e12b3a-34e6-49f3-a05a-40d461f3dc37") + ) + (via + (at 151.104239 68.63) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27546,7 +31936,7 @@ (uuid "cb709e33-225c-4f8d-a773-00a86b68bddd") ) (via - (at 149.04 66.3175) + (at 150.13 65.17) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27561,14 +31951,6 @@ (net "GND") (uuid "ce9f0f14-6efc-4b56-bbbb-dd2a58cc8a1f") ) - (via - (at 134.75 59.475) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "GND") - (uuid "d246574d-2f90-4a9e-8c9c-8536a2d5b874") - ) (via (at 139.375 66.525) (size 0.6) @@ -27578,7 +31960,7 @@ (uuid "d395d6a3-ca02-40c8-ad9f-981b73e95bc2") ) (via - (at 140.775 63.4) + (at 140.775 63.8) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27586,12 +31968,36 @@ (uuid "d42ceb57-27f9-4d83-93cb-353ba6709b45") ) (via - (at 155.779239 65.8) + (at 153.6792 65.1) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "dbba6b7a-a88b-4af0-a3dd-ab341e19eea4") + (uuid "d44abad6-1754-4ac5-ad14-4b6e58105083") + ) + (via + (at 157.8792 65.1) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "d814289a-30db-46fe-a2bf-1420af401077") + ) + (via + (at 170.835 50.58) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "da68e496-ace7-4235-8cca-b5499242b5d9") + ) + (via + (at 132.59 70.7) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "dfa2e0b0-106a-4bff-8911-4e18ae7dd976") ) (via (at 173.8625 54.18) @@ -27611,25 +32017,33 @@ (uuid "e2aff099-b7b2-4ba3-8131-7daa8367c873") ) (via - (at 155.779239 65.8) + (at 152.15 57.39) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "e86d6f37-4cb9-4575-8dc4-b1aed86ac868") + (uuid "e3b3458e-8cd0-4b00-98d5-0df70ea80c67") ) (via - (at 130.3 70.4) + (at 179.05 51.3375) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "GND") - (uuid "e9322cde-59d5-46c2-953f-f7fad25869fd") + (uuid "e9a838ca-0755-4f8d-af6a-62764da4d948") + ) + (via + (at 153.6792 66.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "ec015803-2f62-4ee9-95cb-b6d2dda189c2") ) (via (at 160.41 66.55) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27637,8 +32051,8 @@ ) (via (at 176.3 65.75) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27662,8 +32076,8 @@ ) (via (at 130.2 65.3) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "GND") @@ -27678,7 +32092,15 @@ (uuid "f3476897-7ad6-411e-a0d0-fc62f47727a1") ) (via - (at 136.1 61.3) + (at 132.8775 59.27) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "f5138d29-59e8-49e2-b086-6f959474f6c1") + ) + (via + (at 136.3 61.6) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27695,7 +32117,15 @@ (uuid "f813ca26-295d-40dd-980c-e3df8d4cb10f") ) (via - (at 142.1 65.3) + (at 139.7 61.2) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "GND") + (uuid "f8165ab4-4657-4881-a73e-767cd5d5c99b") + ) + (via + (at 142.04 65.57) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -27728,44 +32158,44 @@ (uuid "ae8b484d-2ba8-4a09-9f6d-c26b99afb9b3") ) (segment - (start 158.25 59.68) - (end 160.3025 57.6275) + (start 158.029239 62.3625) + (end 158.029239 61.498625) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_MOSI") - (uuid "77551ed4-40e4-43d4-b6ec-dde88adf8bd6") + (uuid "0a6f8206-f562-4747-8ae5-64e9f952424a") ) (segment - (start 160.3025 57.6275) + (start 160.445292 57.6275) (end 163.0575 57.6275) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_MOSI") - (uuid "8883e5b4-f907-40b1-a3a5-9368715b136e") + (uuid "6e582530-38e6-4b5c-8815-22dbe997619f") ) (segment - (start 158.029239 61.71076) - (end 158.25 61.489997) + (start 158.029239 61.498625) + (end 159.68 59.847864) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_MOSI") - (uuid "89a7f84a-4ab2-4f7d-aef9-b09234359806") + (uuid "b10a0cad-6e98-477d-a530-8bfa5172cd95") ) (segment - (start 158.25 61.489997) - (end 158.25 59.68) + (start 159.68 59.847864) + (end 159.68 58.392792) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_MOSI") - (uuid "cdb28a73-a9bd-4840-9bdb-9cd098d4342b") + (uuid "bc5a13a2-5564-4478-ac27-55759ea05d2a") ) (segment - (start 158.029239 62.3625) - (end 158.029239 61.71076) + (start 159.68 58.392792) + (end 160.445292 57.6275) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_MOSI") - (uuid "d137abae-6437-474d-bbd0-790f167ababb") + (uuid "f51d585e-4176-4650-a090-88e78c3ee460") ) (segment (start 163.825 58.77) @@ -27784,12 +32214,12 @@ (uuid "f8bc15cf-4217-4453-909e-796f8968072a") ) (segment - (start 157.85 61.324312) - (end 157.85 59.51) + (start 159.33 59.70289) + (end 159.33 58.247818) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_SCK") - (uuid "1cc3325c-69ef-406e-9c54-d4cd3d25f85b") + (uuid "2a44428f-831c-408b-b4c8-d634d0fecfc2") ) (segment (start 165.75 56.845) @@ -27800,20 +32230,20 @@ (uuid "3613cc65-e4e3-4992-bfc7-5fb52efcf622") ) (segment - (start 161.0025 56.3575) - (end 163.0575 56.3575) + (start 157.529239 62.3625) + (end 157.529239 61.503651) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_SCK") - (uuid "4bc73641-ad8d-4d55-9a2a-9b667510db25") + (uuid "4f8d8ded-97c9-4cec-b653-55bd6ef49546") ) (segment - (start 157.529239 62.3625) - (end 157.529239 61.645075) + (start 159.33 58.247818) + (end 161.220318 56.3575) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_SCK") - (uuid "8af28be1-ae74-41e4-81e5-8ffc7437ed97") + (uuid "516c2552-2406-415d-8781-e13b12e96d63") ) (segment (start 165.2625 56.3575) @@ -27824,36 +32254,463 @@ (uuid "9bc84273-ed96-43de-a2c4-364663c9c3ef") ) (segment - (start 157.529239 61.645075) - (end 157.85 61.324312) + (start 157.529239 61.503651) + (end 159.33 59.70289) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_SCK") - (uuid "9f609ec9-153a-421a-b5bd-8b55ce038230") + (uuid "dc6a1da9-bbeb-4eda-86e0-4c7c718042d6") ) (segment - (start 157.85 59.51) - (end 161.0025 56.3575) + (start 161.220318 56.3575) + (end 163.0575 56.3575) (width 0.2) (layer "F.Cu") (net "/fpga/FLASH_SCK") - (uuid "fdb149af-da82-45a0-9c68-2f1d90b8a587") + (uuid "fc401c02-6250-4404-8a95-78a1deb1b848") + ) + (via + (at 162.54 55.08) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "Net-(U10-~{HOLD}{slash}~{RESET}{slash}IO_{3})") + (uuid "77d9cb3f-4e98-444b-aeef-9e5a924f71eb") ) (segment - (start 155.029239 58.316739) + (start 184.95 62.02) + (end 184.95 63.5) + (width 0.2) + (layer "F.Cu") + (net "/Power/3V3") + (uuid "43213d84-d0b8-46db-9db8-ad66ebf3b8eb") + ) + (segment + (start 152.341739 67.05) + (end 151.52 67.05) + (width 0.2) + (layer "F.Cu") + (net "/Power/3V3") + (uuid "9729921a-501f-4445-9b49-d1ca05b8d597") + ) + (segment + (start 151.52 67.05) + (end 151.12 67.45) + (width 0.2) + (layer "F.Cu") + (net "/Power/3V3") + (uuid "b1b276b0-dba6-4959-844e-eb195ceaed27") + ) + (segment + (start 153.8 55.29) + (end 152.15 55.29) + (width 0.2) + (layer "F.Cu") + (net "/Power/3V3") + (uuid "be81df9a-7d6a-4d80-9da4-8294f272174c") + ) + (segment + (start 134.62 57.855) + (end 134.745 57.73) + (width 0.2) + (layer "F.Cu") + (net "/Power/3V3") + (uuid "e84692e7-f3f2-41d1-a683-01931c3ae012") + ) + (via + (at 159.21 68.56) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "20f1872f-1458-447f-9754-1998a1a65f2a") + ) + (via + (at 170.249999 68.195002) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "2137e37b-c7ad-4b9f-9b5a-9fbe19e9363e") + ) + (via + (at 184.998153 62.750687) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "250a510b-ee14-4869-bebb-361b199db2bd") + ) + (via + (at 153.805 53.73) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "27d6ce89-0b4b-46f9-be19-c6207ad99b5b") + ) + (via + (at 190.02 63.53) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "2c39476d-ec15-46b7-aba0-622e2178a1a3") + ) + (via + (at 164.7675 50.61) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "331157a1-8104-4058-8aa8-ab2bb51c42d0") + ) + (via + (at 168.5775 50.61) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "3366e1f5-15be-45b4-af58-82d2c15a0d37") + ) + (via + (at 151.12 67.45) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "3a99f360-dde2-4e9f-a8b8-fcb8d388a1ca") + ) + (via + (at 150.185 55.74) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "3d1c1ab9-9fe3-4605-aad9-92146dbf9b03") + ) + (via + (at 186.525 62.425) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "4062ead8-29fc-4425-a194-a6da1910150e") + ) + (via + (at 153 62.35) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "492e9190-80a3-4ad6-aa64-6e733cd910cf") + ) + (via + (at 150.270343 57.596308) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "4fd646aa-cc55-4651-8137-ea3c111e639b") + ) + (via + (at 166.275 54.055) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "50263a66-85bb-4831-a4eb-66ebe63efe62") + ) + (via + (at 134.4 57.73) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "65341331-dc18-4392-970d-ce368284c8d9") + ) + (via + (at 163.825001 60.269999) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "67b2535d-1ce2-49ea-b46c-e94957975348") + ) + (via + (at 163.824999 65.770001) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "6f555f5d-4b08-4194-84f2-b0aa8372c7e6") + ) + (via + (at 190.02 61.6) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "700a53a6-def0-4a1a-acfe-d6b7ed0f4abe") + ) + (via + (at 135.11 57.73) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "7ac06eae-89fe-4713-8cbf-2587b9ea0042") + ) + (via + (at 153.8 55.29) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "7ac27a73-d81a-4730-be34-079f6dd03134") + ) + (via + (at 163.0575 53.8175) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "87a41306-bebc-4aab-83c6-a323537029bb") + ) + (via + (at 163.4975 50.61) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "9318de10-e24b-453f-8ddb-df3949969565") + ) + (via + (at 166.0375 50.61) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "95efb47e-723f-4fd2-8dd2-e8afe0df506f") + ) + (via + (at 154.05 62.35) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "9a3d2935-4e34-47db-b10d-36767e49ecbe") + ) + (via + (at 161.690686 65.509314) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "a03c17cb-6b0b-4c74-a631-3e5c411f4090") + ) + (via + (at 175.175001 62.770001) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "b0596318-81cf-44d9-9a53-065feeaa34fb") + ) + (via + (at 161.65 64.2) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "bb6d8399-8ffe-4592-8ee6-fbe293a42163") + ) + (via + (at 175.175001 65.770001) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/Power/3V3") + (uuid "bfde6220-64e3-4908-988e-6ac8bdd92c93") + ) + (via + (at 188.025 63.52) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "db964702-b819-4e93-ae3a-4303c000e1f2") + ) + (via + (at 161.405 55.08) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "efaba8b8-54b3-4e0e-933f-297be64dc7bf") + ) + (via + (at 180.355 50.165) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "f08fa8a3-6a64-4ff0-8ce9-6275713622ed") + ) + (via + (at 157.53 56.35) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Power/3V3") + (uuid "fc868c2b-851e-4315-9238-7f041ba9cb9c") + ) + (segment + (start 180.355 50.165) + (end 179.0875 50.165) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "19e7ed4b-1d72-4417-840e-c667558e8842") + ) + (segment + (start 134.44 57.77) + (end 134.4 57.73) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "4092ed11-933c-44a3-af11-ebb77952f300") + ) + (segment + (start 153.805 53.73) + (end 153.805 55.285) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "4842b89c-7485-496e-9557-90f87df23485") + ) + (segment + (start 179.0875 50.165) + (end 179.05 50.2025) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "4deaf3ad-f6bc-45ab-8adb-363db9358321") + ) + (segment + (start 169.67 50.61) + (end 169.7 50.58) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "582e2620-745a-461e-8cba-0c96e9145967") + ) + (segment + (start 148.459998 56.989998) + (end 147.240002 56.989998) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "5f56c764-b2b8-4b52-b96d-729c780d5f8b") + ) + (segment + (start 150.185 55.74) + (end 148.17 55.74) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "6df917d0-dc69-40e0-b7f2-c69b88b7f057") + ) + (segment + (start 150.270343 57.596308) + (end 149.066308 57.596308) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "6f071c83-a132-4b7c-a242-f2f76e02e79f") + ) + (segment + (start 134.6025 57.9325) + (end 134.4 57.73) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "80daeab4-81c1-4766-b284-e7fb04698ddd") + ) + (segment + (start 146.46 57.77) + (end 134.44 57.77) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "9adab61e-c038-4c58-ac53-bf8f8fbdc93f") + ) + (segment + (start 149.066308 57.596308) + (end 148.459998 56.989998) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "b5ec5907-c0dd-4e8f-938e-e9cb00fdc7a8") + ) + (segment + (start 168.5775 50.61) + (end 169.67 50.61) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "b8f548fd-0189-497b-be4c-3161ae314877") + ) + (segment + (start 134.6025 59.27) + (end 134.6025 57.9325) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "c373235d-09b3-4da6-95cb-9730907d825d") + ) + (segment + (start 147.240002 56.989998) + (end 146.46 57.77) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "dac353f1-cf8c-419f-a23c-8e6b3e7d77f5") + ) + (segment + (start 153.805 55.285) + (end 153.8 55.29) + (width 0.2) + (layer "B.Cu") + (net "/Power/3V3") + (uuid "e8cc293f-00fd-41f3-b739-db58b4be2666") + ) + (segment + (start 153.8 57.39) + (end 155.029239 58.619239) + (width 0.2) + (layer "F.Cu") + (net "/fpga/CLK12") + (uuid "22bd1e01-f1a2-4302-87ac-e1a2bea12d5a") + ) + (segment + (start 155.029239 58.619239) (end 155.029239 62.3625) (width 0.2) (layer "F.Cu") (net "/fpga/CLK12") - (uuid "43157a87-67fd-4736-a7f6-26a7b57a2533") - ) - (segment - (start 153.99 57.2775) - (end 155.029239 58.316739) - (width 0.2) - (layer "F.Cu") - (net "/fpga/CLK12") - (uuid "b4ef0c8f-bc7d-42ec-a670-cda3639afe65") + (uuid "f99e4b6f-5dc2-4038-aa2e-154030afd91f") ) (segment (start 184.45 62.40136) @@ -27871,14 +32728,6 @@ (net "/Power/GC_3V3") (uuid "17f0b5df-dfd8-4eba-a644-d00890c8c287") ) - (segment - (start 183.95 63.5) - (end 183.95 64.365) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "1d844cfd-f9c9-49fb-be7b-0f8c46427214") - ) (segment (start 184.03136 62.82) (end 182.825 62.82) @@ -27887,22 +32736,6 @@ (net "/Power/GC_3V3") (uuid "22450b0a-eb23-41dd-86fe-73aae7354d58") ) - (segment - (start 192.65 69.95) - (end 189.48 69.95) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "29b171d5-0a1a-4eaf-b85c-5ea4bd262eb9") - ) - (segment - (start 181.95 68.74) - (end 181.95 66.365) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "2afc4b64-6cb5-445e-8898-c3c7cf4ca8cf") - ) (segment (start 184.45 61.63864) (end 185.46864 60.62) @@ -27911,6 +32744,22 @@ (net "/Power/GC_3V3") (uuid "36ee8705-e32e-4efb-aecc-8e61b013b8d3") ) + (segment + (start 182.0625 65.58) + (end 181.42 65.58) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "3776d876-dd6c-4e51-a79a-fd0108e59bce") + ) + (segment + (start 183.95 63.6925) + (end 182.0625 65.58) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "3a12c8c2-2ef5-4589-ad37-c5f2f91d6d29") + ) (segment (start 184.4 62.45136) (end 183.95 62.90136) @@ -27920,20 +32769,68 @@ (uuid "41f45a9e-5c1b-4d95-afa8-b3199e490c5f") ) (segment - (start 183.38 70.17) - (end 181.95 68.74) + (start 188.61 69.92) + (end 188.34 70.19) (width 0.2) (layer "F.Cu") (net "/Power/GC_3V3") - (uuid "69addd87-79c3-4c78-80f7-d4dbb7f191ec") + (uuid "429ef247-8895-4274-bc71-ecdf06cba474") ) (segment - (start 183.95 64.365) - (end 182.735 65.58) + (start 181.17 69.6) + (end 181.7025 70.1325) (width 0.2) (layer "F.Cu") (net "/Power/GC_3V3") - (uuid "76e59e4d-3e35-4928-be4a-7ee9bf0ff49e") + (uuid "485a8fa5-2116-4e98-9eb7-c7161c930938") + ) + (segment + (start 184.9 70.1325) + (end 188.2825 70.1325) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "4e01e4d6-ebbe-49b0-a0b1-d1d7db49fa0e") + ) + (segment + (start 191.65 69.92) + (end 188.61 69.92) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "56cf94b2-8d4a-4513-88a5-0debfb482166") + ) + (segment + (start 181.17 65.83) + (end 181.17 69.6) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "5d05c9af-a00d-4dcf-96b0-9b05ed723999") + ) + (segment + (start 188.2825 70.1325) + (end 188.34 70.19) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "6419929f-b62f-45de-b596-f0f091e28ff7") + ) + (segment + (start 181.7025 70.1325) + (end 182.56 70.1325) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "87e6d86e-d037-4092-9172-043fe41c7ece") + ) + (segment + (start 182.56 70.1325) + (end 184.9 70.1325) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "92b6eb80-9bed-43ba-b032-cb746d5544b7") ) (segment (start 184.45 62.02) @@ -27943,6 +32840,14 @@ (net "/Power/GC_3V3") (uuid "a9c209ad-483f-4d2f-8e22-fc6d013b5dc2") ) + (segment + (start 183.95 63.5) + (end 183.95 63.6925) + (width 0.2) + (layer "F.Cu") + (net "/Power/GC_3V3") + (uuid "ab6c93ee-90fe-4c42-9c37-5dfc9e1f0bfd") + ) (segment (start 184.4 62.07) (end 184.4 62.45136) @@ -27952,20 +32857,12 @@ (uuid "af396b25-4ea5-4242-800b-daec89d05ca7") ) (segment - (start 189.23 70.2) - (end 183.41 70.2) + (start 181.42 65.58) + (end 181.17 65.83) (width 0.2) (layer "F.Cu") (net "/Power/GC_3V3") - (uuid "c802c15b-5c78-4b9d-b3ec-8b84333993d9") - ) - (segment - (start 181.95 66.365) - (end 182.735 65.58) - (width 0.2) - (layer "F.Cu") - (net "/Power/GC_3V3") - (uuid "f14ee193-2346-47f4-aaf6-56dbcea5e642") + (uuid "bca7f203-03f2-432b-9080-aef182f3df03") ) (segment (start 184.45 62.02) @@ -27976,92 +32873,92 @@ (uuid "fc8484e8-7685-457a-8481-93568c612304") ) (segment - (start 190.93 65.5) - (end 193.195 65.5) + (start 192.715 65.5) + (end 190.95 65.5) (width 0.2) (layer "F.Cu") (net "/Power/SWN") - (uuid "5bd634d2-60fc-48ca-b5e2-e7e1e34c83a9") + (uuid "07b6eab9-ec09-4f0e-befe-5a3f62763510") ) (segment - (start 193.405 65.71) - (end 193.195 65.5) + (start 189.26 67.19) + (end 188.34 67.19) (width 0.2) (layer "F.Cu") (net "/Power/SWN") - (uuid "7d32ccad-93ab-404d-b4c7-736a8cb9009f") + (uuid "12211814-67f7-42d3-b25b-6cdf25382a03") ) (segment - (start 189.23 67.2) - (end 190.93 65.5) + (start 190.95 65.5) + (end 189.26 67.19) (width 0.2) (layer "F.Cu") (net "/Power/SWN") - (uuid "8b7b37bc-3f5d-4d47-bbdf-8dad565138c6") + (uuid "14c980de-8018-41ee-986f-bf45ce3e64af") ) (segment - (start 192.833106 67.7) - (end 193.405 67.128106) + (start 192.61 67.7) + (end 192.88 67.43) (width 0.2) (layer "F.Cu") (net "/Power/SWN") - (uuid "c95dcd91-fa54-408f-ab67-d7d0bbf4f27b") + (uuid "35c079c2-a463-490c-ba9c-ca52bccef424") ) (segment - (start 193.405 67.128106) - (end 193.405 65.71) + (start 192.88 65.665) + (end 192.715 65.5) (width 0.2) (layer "F.Cu") (net "/Power/SWN") - (uuid "eb8d8b2f-f7a9-4824-9d02-cb122593b0ab") + (uuid "6afa4cc2-e226-49c5-97b3-76c834c1edb5") ) (segment - (start 197.9 67.7) - (end 197.9 65.9475) + (start 191.985 67.7) + (end 192.61 67.7) + (width 0.2) + (layer "F.Cu") + (net "/Power/SWN") + (uuid "8bab45b8-f571-476b-b132-b3612550b1b4") + ) + (segment + (start 192.88 67.43) + (end 192.88 65.665) + (width 0.2) + (layer "F.Cu") + (net "/Power/SWN") + (uuid "9e584100-adcf-4068-9c13-815affef2fc9") + ) + (segment + (start 193.65 67.7) + (end 192.7 68.65) (width 0.2) (layer "F.Cu") (net "/Power/12V_EXI") - (uuid "04d14831-dbfd-4a37-b4ed-d5b74c0e4be5") + (uuid "0023817d-3b29-4b30-8348-4f34ce73a9cd") ) (segment - (start 194.055 67.7) - (end 194.99 67.7) + (start 197.93 65.9475) + (end 197.93 67.7) (width 0.2) (layer "F.Cu") (net "/Power/12V_EXI") - (uuid "07a574b4-ae0a-451e-8ab7-d19c0c12ae02") + (uuid "66a8d7eb-8f66-40d1-94ef-6c68fe5cffaf") ) (segment - (start 196.405 67.7) - (end 196.4 67.695) + (start 194.495 67.7) + (end 196.15 67.7) (width 0.2) (layer "F.Cu") (net "/Power/12V_EXI") - (uuid "162d4355-c7f3-4ac2-a3f1-f270e24d01df") + (uuid "6d6102c0-e7f7-4474-9287-800ac433b396") ) (segment - (start 197.9 67.7) - (end 196.405 67.7) + (start 192.7 68.65) + (end 191.985 68.65) (width 0.2) (layer "F.Cu") (net "/Power/12V_EXI") - (uuid "2b5a9c36-bb8e-4f3c-9fcc-2368191c414d") - ) - (segment - (start 196.395 67.7) - (end 196.4 67.695) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "431cdf8a-4df6-4e16-aa85-b25520583019") - ) - (segment - (start 194.99 67.7) - (end 196.395 67.7) - (width 0.2) - (layer "F.Cu") - (net "/Power/12V_EXI") - (uuid "4a57d2fe-f052-4be7-939e-efa49305f5fe") + (uuid "791edd1d-bb4b-4413-a2d6-f4574425bd10") ) (segment (start 199.17 65.82) @@ -28080,12 +32977,12 @@ (uuid "93bce084-adaa-46b2-a4b2-0439656580c1") ) (segment - (start 194.055 67.7) - (end 193.105 68.65) + (start 194.495 67.7) + (end 193.65 67.7) (width 0.2) (layer "F.Cu") (net "/Power/12V_EXI") - (uuid "9c0befc7-d27b-4254-9499-94125be0df70") + (uuid "af387e52-ea75-44bc-82cc-b9085707577b") ) (segment (start 199.17 61.979239) @@ -28112,36 +33009,60 @@ (uuid "f248d1e0-1471-455c-a2f4-c89bac2a7502") ) (segment - (start 193.845 69.95) - (end 195.1 69.95) + (start 197.93 67.7) + (end 196.15 67.7) + (width 0.2) + (layer "F.Cu") + (net "/Power/12V_EXI") + (uuid "f640a5ad-8391-4d21-a748-3736fe1ba364") + ) + (segment + (start 194.495 68.65) + (end 194.495 69.3275) (width 0.2) (layer "F.Cu") (net "Net-(U3-VFB)") - (uuid "199daed2-c3f3-46a7-83b7-0f40c21aea79") + (uuid "11a069c2-1849-4e9b-b43c-38ae8b48698e") ) (segment - (start 194.99 68.65) - (end 194.99 69.84) + (start 193.9025 69.92) + (end 193.9125 69.91) (width 0.2) (layer "F.Cu") (net "Net-(U3-VFB)") - (uuid "eb42dfe1-3322-4a7e-b327-b4764f1f62e7") + (uuid "74bd320d-610b-48e4-b100-e7bf44d8fb0e") ) (segment - (start 194.3125 65.4) - (end 194.3125 66.0725) + (start 194.495 69.3275) + (end 193.9125 69.91) + (width 0.2) + (layer "F.Cu") + (net "Net-(U3-VFB)") + (uuid "783d2375-98a5-46e9-b5bb-cf906a1f7c30") + ) + (segment + (start 192.845 69.92) + (end 193.9025 69.92) + (width 0.2) + (layer "F.Cu") + (net "Net-(U3-VFB)") + (uuid "88270bb7-15b2-4e9a-9e05-c00aace6dd1d") + ) + (segment + (start 194.495 66.75) + (end 194.495 66.145) (width 0.2) (layer "F.Cu") (net "Net-(U3-VBST)") - (uuid "4a76d34a-b27b-4181-80d0-b128b451b2af") + (uuid "87d38440-ea82-45ad-8cf2-49e3694c8aef") ) (segment - (start 194.3125 66.0725) - (end 194.99 66.75) + (start 194.495 66.145) + (end 193.85 65.5) (width 0.2) (layer "F.Cu") (net "Net-(U3-VBST)") - (uuid "cbda9e78-2719-481f-ae12-e6efaa2cbaf0") + (uuid "ea20646c-fede-40d3-9874-58117ff00f54") ) (segment (start 134.775 41.312528) @@ -28183,14 +33104,6 @@ (net "/Usb Connector/USB_VBUS") (uuid "2e010a33-3086-4b56-9522-85fb4e1f0a73") ) - (segment - (start 197.4 40.7) - (end 197.4 42.5325) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "38fe92c3-28a1-4565-b028-826312be64fb") - ) (segment (start 147.2 41.765552) (end 147.2 40.775001) @@ -28239,6 +33152,14 @@ (net "/Usb Connector/USB_VBUS") (uuid "53896a49-7d77-4c0d-921b-d76bf5cbe31d") ) + (segment + (start 196.91 39.63) + (end 199.379999 39.63) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/USB_VBUS") + (uuid "55235bd9-782a-41bd-a495-0bb012452feb") + ) (segment (start 199.379999 39.63) (end 200.93 39.63) @@ -28353,7 +33274,7 @@ ) (segment (start 196.33 39.63) - (end 199.379999 39.63) + (end 196.91 39.63) (width 0.2) (layer "F.Cu") (net "/Usb Connector/USB_VBUS") @@ -28383,6 +33304,14 @@ (net "/Usb Connector/USB_VBUS") (uuid "d55b0ef5-ef45-44d5-a3d7-9b1bc4d290b5") ) + (segment + (start 197.34 40.06) + (end 196.91 39.63) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/USB_VBUS") + (uuid "d89fa5f1-84ce-4579-a5b2-131848d52566") + ) (segment (start 200.075 40.325001) (end 200.075 41.35) @@ -28391,14 +33320,6 @@ (net "/Usb Connector/USB_VBUS") (uuid "d93f58c2-d043-4f29-ae9d-a3c4d0cd5a95") ) - (segment - (start 196.33 39.63) - (end 197.4 40.7) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_VBUS") - (uuid "dde417f0-1a72-4d9a-9b0e-546aa713089e") - ) (segment (start 142.677756 42.4) (end 144.602756 40.475) @@ -28423,6 +33344,14 @@ (net "/Usb Connector/USB_VBUS") (uuid "ed39f85e-6f9c-4d57-91c0-a5d487f497e2") ) + (segment + (start 197.34 40.58) + (end 197.34 40.06) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/USB_VBUS") + (uuid "f50c4d29-b09a-4aed-be8b-355444ca8dd8") + ) (segment (start 134.775 44.725) (end 134.775 47.025) @@ -28527,14 +33456,6 @@ (net "/Usb Connector/USB_GND") (uuid "5644f272-e75f-4505-8738-69c59635ca7f") ) - (segment - (start 197.43 43.67) - (end 197.43 45.925) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_GND") - (uuid "6f778b79-bbc8-48d9-a1ff-87e223747e52") - ) (segment (start 139.175 45.625) (end 139.2 45.6) @@ -28567,6 +33488,14 @@ (net "/Usb Connector/USB_GND") (uuid "bd238408-3db3-46d5-ae0b-bd7426fb37ca") ) + (segment + (start 196.19 42.59) + (end 196.19 44.5375) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/USB_GND") + (uuid "f57a128b-deef-457a-9625-94c4ee69b856") + ) (segment (start 137.51 42.7) (end 137.74 42.47) @@ -28592,12 +33521,12 @@ (uuid "1b4f5c0e-b316-4493-baea-02a4990f9d75") ) (via - (at 184.5 41.7) + (at 196.19 42.59) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "/Usb Connector/USB_GND") - (uuid "2218d476-110d-49ae-95a4-478c9273e2ba") + (uuid "2289cf3c-3156-4986-bf51-4edd77f44699") ) (via (at 206.425 41.35) @@ -28616,14 +33545,6 @@ (net "/Usb Connector/USB_GND") (uuid "270b619c-9458-4f5e-8fae-d951f405b375") ) - (via - (at 184.2 45.4) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "4dc1afba-5809-431a-a35a-02ab72d85b36") - ) (via (at 143 44.65) (size 0.6) @@ -28633,7 +33554,7 @@ (uuid "572703a5-5561-4e8e-86d3-c683b1e66b50") ) (via - (at 197.42 43.66) + (at 197.34 41.714998) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -28657,6 +33578,14 @@ (net "/Usb Connector/USB_GND") (uuid "6211ef82-4850-499d-9991-a8128c75e8da") ) + (via + (at 190.4 42.13) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/Usb Connector/USB_GND") + (uuid "77428e15-7ea1-4c14-a99f-29704a16f416") + ) (via (at 143.0675 40.9) (size 0.6) @@ -28730,68 +33659,28 @@ (uuid "fc945350-c5b7-41ae-8b8e-da69e4c19773") ) (segment - (start 184.5 42.1) - (end 184.5 41.7) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "45243923-77b0-491e-86cd-3a9b114dcb06") - ) - (segment - (start 184.2 42.4) - (end 184.5 42.1) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "7742feb2-92cd-462e-9249-f3770f5f80c1") - ) - (segment - (start 184.2 42.4) - (end 184.2 45.4) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/USB_GND") - (uuid "91a3f7e1-822e-4e11-89c8-82608bed69f9") - ) - (segment - (start 150.06 65.155) - (end 150.06 64.11) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "5846f1e0-de52-461b-9918-e52c65b9178b") - ) - (segment - (start 149.06 64.085) - (end 150.035 64.085) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "685f4879-7fc9-41e7-81ef-7893631fc200") - ) - (segment - (start 150.165 65.05) - (end 152.341739 65.05) - (width 0.2) - (layer "F.Cu") - (net "/fpga/VCCPLL_F") - (uuid "8ee19ffe-47cc-4263-8d67-9c52e9d8d33b") - ) - (segment - (start 154.2 59.25) - (end 153.4 58.45) + (start 148.42 56.77) + (end 149.1 57.45) (width 0.2) (layer "F.Cu") (net "/GC_ON") - (uuid "14c595fe-a9b5-4bec-87ed-0a53aa63929a") + (uuid "073431f8-0840-4dd7-a4b7-c1e87b7dc462") ) (segment - (start 147.616948 56.75) - (end 146.7475 55.880552) + (start 145.78 56.43) + (end 146.12 56.77) (width 0.2) (layer "F.Cu") (net "/GC_ON") - (uuid "21506e48-1c89-451c-8cc3-f6f04f6b0c60") + (uuid "1046ce91-6b2a-44b5-9289-e3e2fddc523d") + ) + (segment + (start 149.1 58.05) + (end 149.6 58.55) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "158be165-9aa5-4213-aee2-35dd61b8343b") ) (segment (start 154.529239 59.579239) @@ -28801,6 +33690,22 @@ (net "/GC_ON") (uuid "30b6f69a-38d3-419e-b665-8900f46c7253") ) + (segment + (start 136.3125 56.4875) + (end 136.3175 56.4875) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "37585b89-dbd4-475d-b7e2-4a67b8809c9f") + ) + (segment + (start 149.6 58.55) + (end 153.5 58.55) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "3823ca42-ac88-4860-9333-d3b00b08a97f") + ) (segment (start 186.525 63.62) (end 186.52 63.62) @@ -28809,14 +33714,6 @@ (net "/GC_ON") (uuid "40df05ab-b13f-49da-9d1b-c19441e81ac7") ) - (segment - (start 134.75 55.825) - (end 134.745 55.83) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "4285d181-1061-441f-9385-8c7b322abcc3") - ) (segment (start 154.529239 62.3625) (end 154.529239 59.579239) @@ -28825,61 +33722,69 @@ (net "/GC_ON") (uuid "490ef656-545f-4fde-9dc2-fa405562b547") ) + (segment + (start 146.12 56.77) + (end 148.42 56.77) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "69c73043-9fad-41a6-b6a7-43579f24e9fe") + ) + (segment + (start 153.5 58.55) + (end 154.2 59.25) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "6dd41d59-8e96-4643-93e9-5ed28ae529d0") + ) + (segment + (start 134.745 55.83) + (end 135.655 55.83) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "6f1879ce-0954-48bc-b072-219c29e651b4") + ) + (segment + (start 136.3175 56.4875) + (end 137.09 57.26) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "6fabff2a-3f7e-47a4-8d63-ed2094b6add4") + ) + (segment + (start 139.79 57.26) + (end 140.62 56.43) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "758ce114-10a4-4978-9710-62dbe8c10d7d") + ) + (segment + (start 137.09 57.26) + (end 139.79 57.26) + (width 0.2) + (layer "F.Cu") + (net "/GC_ON") + (uuid "896679a2-5262-4a3f-9568-357de444a6ff") + ) (segment (start 149.1 57.45) - (end 148.4 56.75) + (end 149.1 58.05) (width 0.2) (layer "F.Cu") (net "/GC_ON") - (uuid "626ef719-cab4-40af-83b0-ea7133dd1f7f") + (uuid "8b93ec4f-da96-47b8-989e-f1136aa70455") ) (segment - (start 135.825 55.925) - (end 135.725 55.825) + (start 140.62 56.43) + (end 145.78 56.43) (width 0.2) (layer "F.Cu") (net "/GC_ON") - (uuid "6b85aafe-df36-4d52-a3aa-fe6bf4f04fc3") - ) - (segment - (start 153.4 58.45) - (end 149.5 58.45) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "6ede21bf-f965-4837-ad06-49a6c7cc7dfb") - ) - (segment - (start 135.725 55.825) - (end 134.75 55.825) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "71f1446e-8205-44ae-824d-5745b535741a") - ) - (segment - (start 146.7475 55.880552) - (end 146.7475 55.759771) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "77c38739-2648-4ac2-9865-046aa8ae9f3a") - ) - (segment - (start 149.1 58.05) - (end 149.1 57.45) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "94c8f051-f2b3-4f43-8b06-4d309f63b58b") - ) - (segment - (start 148.4 56.75) - (end 147.616948 56.75) - (width 0.2) - (layer "F.Cu") - (net "/GC_ON") - (uuid "9d5c2272-575a-4978-90b6-b87daac27523") + (uuid "916f6680-6b69-4609-bb4f-1aa8209b1118") ) (segment (start 185.45 63.5) @@ -28890,28 +33795,12 @@ (uuid "aabb1f7c-0fd4-4c8c-a523-dac5d38d8c5c") ) (segment - (start 149.5 58.45) - (end 149.1 58.05) + (start 135.655 55.83) + (end 136.3125 56.4875) (width 0.2) (layer "F.Cu") (net "/GC_ON") - (uuid "f6aa3c86-c200-4241-9c2a-729b92609878") - ) - (via - (at 146.7475 55.759771) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/GC_ON") - (uuid "51a6dbe9-7236-4a33-a3a8-e12c3c09c7e3") - ) - (via - (at 135.825 55.925) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/GC_ON") - (uuid "855cae32-a6b1-44bd-8836-d53ea09e5756") + (uuid "af78a8cb-2238-4b6c-8e6f-a5b187e80fe9") ) (via (at 154.2 59.25) @@ -28930,20 +33819,28 @@ (uuid "bea71486-78c1-4666-b16b-295bd0bd7f37") ) (segment - (start 184.54 68.05) - (end 184.05 68.54) + (start 186.52 63.62) + (end 186.52 64.24) (width 0.2) (layer "B.Cu") (net "/GC_ON") - (uuid "07ab8254-3c9d-460c-9ae5-0a29cab050b0") + (uuid "23cf77ef-24fb-4634-9d32-24c75ce1dce6") ) (segment - (start 186.52 64.48) - (end 184.54 66.46) + (start 165.1 68.96) + (end 165.1 63.806892) (width 0.2) (layer "B.Cu") (net "/GC_ON") - (uuid "27c0e73b-6068-4ce8-9dd5-94d5c04926db") + (uuid "2d0195bb-c3bd-4c9e-9485-faf2edfe677d") + ) + (segment + (start 165.1 63.806892) + (end 160.543108 59.25) + (width 0.2) + (layer "B.Cu") + (net "/GC_ON") + (uuid "2d5851ad-f284-4ddb-be87-41df6617e5ee") ) (segment (start 167.38 71.24) @@ -28951,103 +33848,31 @@ (width 0.2) (layer "B.Cu") (net "/GC_ON") - (uuid "3eb65c84-e9a8-49ef-bb72-6e5d1a09785d") + (uuid "4f861182-2fb6-46bd-8a63-659d09560d20") ) (segment - (start 136.975 57.15) - (end 135.825 56) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "42973ea5-c277-4997-90c1-cb7db2144b31") - ) - (segment - (start 135.825 56) - (end 135.825 55.925) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "65c0dc20-f763-4d9a-911d-660e719e1550") - ) - (segment - (start 181.91 68.54) - (end 179.21 71.24) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "77e87ed7-a596-4d73-b3b0-fc03ec7a07d9") - ) - (segment - (start 186.52 63.62) - (end 186.52 64.48) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "8bc165ae-8ab1-45f2-b260-9baeab9ac2e3") - ) - (segment - (start 145.357271 57.15) - (end 136.975 57.15) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "aee6e21d-f857-4c76-8d2d-c3a92600349f") - ) - (segment - (start 179.21 71.24) + (start 179.52 71.24) (end 167.38 71.24) (width 0.2) (layer "B.Cu") (net "/GC_ON") - (uuid "b77bfced-705d-45c7-87fd-4bf20b242ed6") + (uuid "518268b0-0f6b-49e7-ac1f-b23e588a3e10") ) (segment - (start 184.05 68.54) - (end 181.91 68.54) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "c204c2b4-4c3c-405e-8631-a1b9ae12c871") - ) - (segment - (start 184.54 66.46) - (end 184.54 68.05) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "cb665559-9ea6-4ea7-80c4-c27aed162830") - ) - (segment - (start 165.1 68.96) - (end 165.1 63.963603) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "cbbf64df-5672-4695-af36-674855fbea56") - ) - (segment - (start 146.7475 55.759771) - (end 145.357271 57.15) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "ec13b7a8-9090-456d-a24a-bdf62efe080f") - ) - (segment - (start 165.1 63.963603) - (end 160.386397 59.25) - (width 0.2) - (layer "B.Cu") - (net "/GC_ON") - (uuid "ee4bd53c-20ef-4cd9-b74b-435524af83b0") - ) - (segment - (start 160.386397 59.25) + (start 160.543108 59.25) (end 154.2 59.25) (width 0.2) (layer "B.Cu") (net "/GC_ON") - (uuid "fca62b5e-0493-4334-9cc8-d8b4a92cc158") + (uuid "56c9b9ad-db22-423d-83f0-2971bf03d4a3") + ) + (segment + (start 186.52 64.24) + (end 179.52 71.24) + (width 0.2) + (layer "B.Cu") + (net "/GC_ON") + (uuid "ba21574e-cc09-4d2f-b675-dc5a94476e2b") ) (segment (start 141.8875 68.2125) @@ -29066,7 +33891,7 @@ (uuid "ebf2debf-4b0c-44f5-9aa8-b76cfbc4a0e6") ) (via - (at 125.5 68.3) + (at 124.37 68.77) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -29074,39 +33899,39 @@ (uuid "0e915a7d-681a-450a-b4f6-92c5ac08f139") ) (via - (at 137.39 68.21) - (size 0.3) - (drill 0.15) + (at 132.1 57.73) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/ethernet/ETH_3V3") + (uuid "266aec73-9b01-4941-aec9-08f94fe4f809") + ) + (via + (at 137.387499 68.212501) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/ETH_3V3") (uuid "35f872ae-ecee-4ed1-af56-6e57394a90a4") ) (via - (at 143.3 65.82) - (size 0.3) - (drill 0.15) + (at 143.3 65.799998) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/ETH_3V3") (uuid "4e5108eb-bf66-4b21-96c7-2d7169f5bb57") ) (via - (at 125.495 67.2) + (at 124.38 67.67) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "/ethernet/ETH_3V3") (uuid "5a83d829-e265-43c9-9eda-963b290b99f5") ) - (via - (at 137.575 56.05) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/ethernet/ETH_3V3") - (uuid "69c90da6-05a3-42c4-a2b5-1e9c090e2344") - ) (via (at 142.865 68.32) (size 0.6) @@ -29123,17 +33948,25 @@ (net "/ethernet/ETH_3V3") (uuid "a04a3d55-f3ca-4585-84c6-578388c8cb36") ) + (via + (at 137.575 56.05) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/ethernet/ETH_3V3") + (uuid "ba21dd20-0d0e-45e0-a746-879b2306f171") + ) (via (at 143.31 61.3) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/ETH_3V3") (uuid "c850e387-2e61-40b7-89b7-d9da82498246") ) (via - (at 132.475 57.75) + (at 132.83 57.73) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -29141,29 +33974,37 @@ (uuid "d29be42d-abb7-4bd3-a766-e59663b71b56") ) (via - (at 135 64.82) - (size 0.3) - (drill 0.15) + (at 134.79 64.8) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/ETH_3V3") (uuid "e32e236f-c045-4dab-b367-807bfa787824") ) (segment - (start 141.98 61.215) - (end 143.225 61.215) + (start 141.9 61.2) + (end 143.21 61.2) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_3V3") - (uuid "11701c5b-fc58-4628-af70-20f110f58984") + (uuid "29038147-723b-4cbd-bc86-932cf1ed5cff") ) (segment - (start 143.225 61.215) - (end 143.31 61.3) + (start 137.385 69.68) + (end 137.385 68.215) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_3V3") - (uuid "60b4b8ff-2f4f-4540-a95f-1b3e8bc405b8") + (uuid "3178e3da-e6f9-47df-82b6-46b9f2303f58") + ) + (segment + (start 137.385 68.215) + (end 137.387499 68.212501) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/ETH_3V3") + (uuid "7d58f9f0-6cc0-4c83-9b5c-9f3da283f048") ) (segment (start 135 64.8) @@ -29182,28 +34023,12 @@ (uuid "953ae331-cf8e-45df-8773-a86ca4e318d4") ) (segment - (start 137.385 68.215) - (end 137.39 68.21) + (start 143.21 61.2) + (end 143.31 61.3) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_3V3") - (uuid "98e949e5-a6dd-4515-b3a5-5a703a83ca2c") - ) - (segment - (start 137.385 69.68) - (end 137.385 68.215) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/ETH_3V3") - (uuid "bd66549a-3fef-4939-8544-756809e69803") - ) - (segment - (start 176.5125 54.18) - (end 175.4725 55.22) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "113de781-1573-4034-945c-ba6a94b5bbf5") + (uuid "c0025202-2412-4982-9f60-f285abe46dd2") ) (segment (start 175.8425 53.51) @@ -29222,28 +34047,20 @@ (uuid "25948daf-bf98-43a0-ac2e-db48a69cb20c") ) (segment - (start 175.4725 55.22) - (end 175.4725 55.2525) + (start 172.75 56.03759) + (end 172.75 56.845) (width 0.2) (layer "F.Cu") (net "Net-(U8-OSCI)") - (uuid "343ea660-0d92-4b48-8644-e278cbc619f9") + (uuid "5de99dcf-23dc-40a8-a1be-c64c2de27592") ) (segment - (start 174.95 55.775) - (end 173.48741 55.775) + (start 176.5125 54.18) + (end 175.0125 55.68) (width 0.2) (layer "F.Cu") (net "Net-(U8-OSCI)") - (uuid "376414fd-5986-4624-8e5b-947854e1406d") - ) - (segment - (start 173.48241 55.77) - (end 173.01759 55.77) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "633e9f0e-01bd-4922-8c44-aab392838615") + (uuid "78a5ae15-112c-43cf-ba1a-b04db13d75bb") ) (segment (start 177.1925 50.12) @@ -29254,36 +34071,20 @@ (uuid "896f6a80-03ba-409f-bf0d-06aaeb1cdcef") ) (segment - (start 173.48741 55.775) - (end 173.48241 55.77) + (start 175.0125 55.68) + (end 173.10759 55.68) (width 0.2) (layer "F.Cu") (net "Net-(U8-OSCI)") - (uuid "9d7e6921-9adb-4c7d-8054-0e1347e6b6f2") + (uuid "c0759aef-1dd1-42a9-be33-a6705a73f272") ) (segment - (start 173.01759 55.77) + (start 173.10759 55.68) (end 172.75 56.03759) (width 0.2) (layer "F.Cu") (net "Net-(U8-OSCI)") - (uuid "a45c6f5b-5e69-4e3a-ba65-c36926878405") - ) - (segment - (start 172.75 56.03759) - (end 172.75 56.845) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "d9cdbb8e-271e-4f50-b287-e0e817465334") - ) - (segment - (start 175.4725 55.2525) - (end 174.95 55.775) - (width 0.2) - (layer "F.Cu") - (net "Net-(U8-OSCI)") - (uuid "e0b2e544-2706-461e-91d3-9ae1940181ac") + (uuid "fe29bdc1-5329-4ddb-a47f-302447d2fe47") ) (segment (start 174.2925 53.475) @@ -29335,8 +34136,8 @@ ) (via (at 171.75 56.85) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "Net-(U8-VPHY)") @@ -29376,8 +34177,8 @@ ) (via (at 170.75 56.875) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "Net-(U8-REF)") @@ -29473,8 +34274,8 @@ ) (via (at 169.25 56.875) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "Net-(U8-VPLL)") @@ -29520,28 +34321,36 @@ (net "Net-(U8-VPLL)") (uuid "d434c9b0-3bf4-421b-9fd2-96a38599bf71") ) + (segment + (start 175.175 66.27) + (end 175.175 67) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/VCORE") + (uuid "b156c453-e639-4961-98b1-bfdee3456ee2") + ) (via - (at 175.15 66.275) - (size 0.3) - (drill 0.15) + (at 175.175 67) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/VCORE") (uuid "07d30e2e-5977-44a4-8d78-39c5471564bd") ) (via - (at 175.2 58.775) - (size 0.3) - (drill 0.15) + (at 175.174998 58.77) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/VCORE") (uuid "404a2df7-22e3-48fb-8cb0-36452b74afdb") ) (via - (at 167.76 56.85) - (size 0.3) - (drill 0.15) + (at 167.749998 56.844999) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/VCORE") @@ -29549,8 +34358,8 @@ ) (via (at 167.75 68.175) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/VCORE") @@ -29564,6 +34373,14 @@ (net "/Usb Connector/VCORE") (uuid "03a7ca17-ae1e-4136-81d9-fbc6c9cf9b54") ) + (segment + (start 174.125 58.75) + (end 175.154998 58.75) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/VCORE") + (uuid "05bb45c3-0b66-467f-88cc-39255bb5fe77") + ) (segment (start 174.125 58.75) (end 174.125 66.05) @@ -29588,6 +34405,14 @@ (net "/Usb Connector/VCORE") (uuid "1cb2d37e-7c38-4d10-bee7-1a416505dcd6") ) + (segment + (start 175.154998 58.75) + (end 175.174998 58.77) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/VCORE") + (uuid "268c5b0f-8cb9-4622-bbd6-2cb572d43247") + ) (segment (start 174.125 58.75) (end 172.6 58.75) @@ -29604,6 +34429,14 @@ (net "/Usb Connector/VCORE") (uuid "3b4f18f4-45cb-4675-8c04-09474f800146") ) + (segment + (start 167.75 58.93) + (end 167.671452 58.851452) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/VCORE") + (uuid "3ef5b4bf-0fa2-431d-8ed5-b17d94b8a5c1") + ) (segment (start 168.375 66.45) (end 174.525 66.45) @@ -29613,20 +34446,12 @@ (uuid "468b3134-b0c3-4989-a2a7-43d1d981a25c") ) (segment - (start 174.525 66.45) - (end 174.5375 66.4625) + (start 167.671452 56.923545) + (end 167.749998 56.844999) (width 0.2) (layer "B.Cu") (net "/Usb Connector/VCORE") - (uuid "4a43000e-c21f-4bf0-9e42-4860f7598b00") - ) - (segment - (start 175.175 67) - (end 175.175 66.385) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/VCORE") - (uuid "4eeaec68-211f-437c-9741-f460e163b671") + (uuid "4f4d16a3-09f6-4d63-9239-ec5002c96677") ) (segment (start 167.725 66.86) @@ -29644,14 +34469,6 @@ (net "/Usb Connector/VCORE") (uuid "54859751-d668-4b16-8051-9adb382d06f5") ) - (segment - (start 167.671452 56.938548) - (end 167.76 56.85) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/VCORE") - (uuid "57ac2d99-1fed-451a-bb52-72b5883f01f5") - ) (segment (start 167.75 68.175) (end 167.75 66.885) @@ -29660,14 +34477,6 @@ (net "/Usb Connector/VCORE") (uuid "61ff3a15-7acf-4d2f-be62-c06eae28c9ea") ) - (segment - (start 175.175 66.385) - (end 175.15 66.36) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/VCORE") - (uuid "7d89be39-dcbd-433c-b3e4-d9b7d96673c7") - ) (segment (start 174.325 66.25) (end 174.125 66.05) @@ -29677,12 +34486,12 @@ (uuid "97683e9d-4baf-4481-aa49-0bfa2acca025") ) (segment - (start 174.125 58.75) - (end 175.175 58.75) + (start 167.671452 58.851452) + (end 167.671452 56.923545) (width 0.2) (layer "B.Cu") (net "/Usb Connector/VCORE") - (uuid "a3bbf0b5-2f16-410b-9dc0-b0fc09a953e6") + (uuid "9f65f955-89e0-4c09-b619-4947cc449e8b") ) (segment (start 175.175 67) @@ -29692,14 +34501,6 @@ (net "/Usb Connector/VCORE") (uuid "a52f1edd-a6b2-4250-9082-782c23998542") ) - (segment - (start 167.671452 58.851452) - (end 167.671452 56.938548) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/VCORE") - (uuid "b643a29e-60ed-40a9-be03-cbe586f0141e") - ) (segment (start 174.925 57.95) (end 174.925 56.275) @@ -29708,14 +34509,6 @@ (net "/Usb Connector/VCORE") (uuid "c3250a5d-d8d7-4cb0-aeb1-73f3437457fc") ) - (segment - (start 175.175 58.75) - (end 175.2 58.775) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/VCORE") - (uuid "c97fc4ec-cb13-4727-938c-1b8462a295cd") - ) (segment (start 174.125 58.75) (end 174.925 57.95) @@ -29764,18 +34557,10 @@ (net "/Usb Connector/VCORE") (uuid "f11ec7c2-c188-4fed-9606-1caa4cee28ca") ) - (segment - (start 167.75 58.93) - (end 167.671452 58.851452) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/VCORE") - (uuid "ffc32308-e5c5-4134-aba7-1be293dc569b") - ) (via (at 166.75 56.85) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "Net-(U8-~{RESET})") @@ -29822,18 +34607,18 @@ (uuid "9480f58c-e3ed-44ee-9653-93802df4c67e") ) (via - (at 163.8 63.3) - (size 0.3) - (drill 0.15) + (at 163.926711 63.27) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/CRESET") (uuid "2e448464-d0f3-4686-a36a-964694bb094f") ) (via - (at 159.2 65.05) - (size 0.3) - (drill 0.15) + (at 159.651725 65.020835) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/CRESET") @@ -29841,69 +34626,101 @@ ) (segment (start 160.45 64.2) - (end 161.35 63.3) + (end 159.651725 64.998275) (width 0.2) (layer "B.Cu") (net "/Usb Connector/CRESET") - (uuid "6f530db1-ccc4-442b-9ccc-d4f4212d0c75") + (uuid "04844d26-db4c-4053-8b45-53e4c26fb2b2") ) (segment - (start 159.2 65.05) - (end 159.6 65.05) + (start 161.060001 63.27) + (end 163.926711 63.27) (width 0.2) (layer "B.Cu") (net "/Usb Connector/CRESET") - (uuid "7c3768e9-11f7-40df-917d-dd18538a4591") + (uuid "2373f299-d047-453a-848e-c30061a731f9") ) (segment - (start 159.6 65.05) - (end 160.45 64.2) + (start 160.45 64.2) + (end 160.45 63.880001) (width 0.2) (layer "B.Cu") (net "/Usb Connector/CRESET") - (uuid "9471aef3-30dc-43fe-92a3-398138589642") + (uuid "2996e6c0-3e48-4273-98e4-132fbc6426e4") ) (segment - (start 161.35 63.3) - (end 163.8 63.3) + (start 160.45 63.880001) + (end 161.060001 63.27) (width 0.2) (layer "B.Cu") (net "/Usb Connector/CRESET") - (uuid "d56a9dba-2163-4867-8f13-8f79fac382ca") + (uuid "615c3fb7-35b0-4800-8e13-7aaa132ff623") + ) + (segment + (start 159.651725 64.998275) + (end 159.651725 65.020835) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/CRESET") + (uuid "765ec782-1c77-4c8b-9324-a4158f2f6824") ) (via - (at 159.2 65.55) - (size 0.3) - (drill 0.15) + (at 159.670708 65.57051) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/CDONE") (uuid "80441a69-7025-4eff-ae5d-f34f44b311f8") ) (via - (at 163.8 63.8) - (size 0.3) - (drill 0.15) + (at 163.698703 63.77) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/Usb Connector/CDONE") (uuid "ca6a4d27-0f88-4732-9fd3-8200b853732b") ) - (segment - (start 161.07 64.93) - (end 161.927472 64.93) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CDONE") - (uuid "50d10263-7d22-4b02-ac86-ace6eeb1db2f") - ) (segment (start 162.5 64.35) (end 163.05 63.8) (width 0.2) (layer "B.Cu") (net "/Usb Connector/CDONE") - (uuid "70fef5ee-370e-4dca-b7c3-fed8f218e5bf") + (uuid "168fef36-27c9-4a53-bbb8-1b401f0d305b") + ) + (segment + (start 159.691218 65.55) + (end 159.670708 65.57051) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/CDONE") + (uuid "360b8063-403b-41ca-b547-bb64e70ea345") + ) + (segment + (start 163.05 63.8) + (end 163.668703 63.8) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/CDONE") + (uuid "497463ca-86a8-4e40-a8cb-607667257aab") + ) + (segment + (start 161.07 64.93) + (end 161.927472 64.93) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/CDONE") + (uuid "7b310557-c57d-4c10-bbac-3991c53cdcc6") + ) + (segment + (start 160.45 65.55) + (end 159.691218 65.55) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/CDONE") + (uuid "8d5539ac-fa6c-458b-8301-2100a98c2370") ) (segment (start 161.927472 64.93) @@ -29911,7 +34728,7 @@ (width 0.2) (layer "B.Cu") (net "/Usb Connector/CDONE") - (uuid "be0aca7d-43ba-43a8-bba4-2cb12e02c473") + (uuid "b3a1d10a-c761-4261-90f4-b04dbcefee8b") ) (segment (start 160.45 65.55) @@ -29919,23 +34736,7 @@ (width 0.2) (layer "B.Cu") (net "/Usb Connector/CDONE") - (uuid "d88af945-bf76-4f58-b754-565a0d80423c") - ) - (segment - (start 163.05 63.8) - (end 163.8 63.8) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CDONE") - (uuid "e297e90c-308c-4dbb-aa6d-8ac013e04ee8") - ) - (segment - (start 159.2 65.55) - (end 160.45 65.55) - (width 0.2) - (layer "B.Cu") - (net "/Usb Connector/CDONE") - (uuid "e33788cb-37b8-4274-b6df-0e8b4757a404") + (uuid "ce11bb79-70f5-4feb-84fa-ea1c5e7b4925") ) (segment (start 162.5 64.357472) @@ -29943,39 +34744,23 @@ (width 0.2) (layer "B.Cu") (net "/Usb Connector/CDONE") - (uuid "e4287666-0b27-48a8-9458-b61a23a62ef1") + (uuid "d867448a-3b76-4023-9bf3-88b3c3b2fc3c") ) (segment - (start 167.98241 69.27) - (end 165.235686 69.27) + (start 163.668703 63.8) + (end 163.698703 63.77) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/CDONE") + (uuid "f298b7d0-954d-44b0-aa96-2177662ec0c1") + ) + (segment + (start 162.23137 66.3) + (end 162.18137 66.25) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "09e684ea-df81-4a23-8389-13c3c790fc13") - ) - (segment - (start 160.55 64.934314) - (end 160.55 61.764314) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "1f28e965-270c-401e-a813-eb4a49609269") - ) - (segment - (start 160.36 60.94) - (end 160.07962 60.65962) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "32b777f8-89bf-474c-b5cf-a427b168d861") - ) - (segment - (start 160.55 61.764314) - (end 160.36 61.574315) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "371944f9-5fb1-4cf6-9c20-498d608dbe6c") + (uuid "0bba14c0-2c32-46fe-a47b-76f9b69dd674") ) (segment (start 160.36 61.574315) @@ -29983,7 +34768,23 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "48be541c-f1f5-4376-a986-3624e658f901") + (uuid "122cd1ab-d3b4-4def-887a-4715336e02a7") + ) + (segment + (start 162.18137 66.25) + (end 161.53 66.25) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_TXD") + (uuid "1822d6ba-d0de-4296-938d-ade09f6ca613") + ) + (segment + (start 161.53 66.25) + (end 160.55 65.27) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_TXD") + (uuid "460c9955-4061-41b8-8301-318012a5f5e9") ) (segment (start 168.25 68.195) @@ -29991,7 +34792,15 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "4d461908-5fe0-4953-8f6a-de7c8b6a6c99") + (uuid "595062cc-e5f5-4106-ae31-5a0e118bd9fb") + ) + (segment + (start 165.235686 69.27) + (end 162.265685 66.3) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_TXD") + (uuid "6c477df9-31c0-4089-b68c-60af2dd71876") ) (segment (start 156.029239 62.3625) @@ -30002,20 +34811,12 @@ (uuid "6f365bbb-0051-4ac4-be33-081b9d885a17") ) (segment - (start 161.865686 66.25) - (end 160.55 64.934314) + (start 160.55 65.27) + (end 160.55 61.764314) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "71fcb6c6-b60e-4f55-91f5-ca10d809c89f") - ) - (segment - (start 162.265685 66.3) - (end 162.23137 66.3) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_TXD") - (uuid "869c62cb-3852-480b-b167-8f42a51ac1b3") + (uuid "7b38b753-8e15-4f48-8723-9d6fd6b27589") ) (segment (start 156.38 60.969239) @@ -30031,15 +34832,23 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "ac4464b2-d691-4fc7-b4c2-a72dd7b7310a") + (uuid "b385fa38-d493-4ac1-8663-f0b2cffe1132") ) (segment - (start 162.23137 66.3) - (end 162.18137 66.25) + (start 167.98241 69.27) + (end 165.235686 69.27) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "c624fcc0-d74e-4d51-9b0a-cb14fc7f5f6e") + (uuid "c3ba66ae-4cea-4521-80f5-4c37eb93e8b0") + ) + (segment + (start 160.36 60.94) + (end 160.07962 60.65962) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_TXD") + (uuid "ce67dca7-a6d1-4b5a-933f-f21e56661f66") ) (segment (start 156.029239 61.32) @@ -30050,20 +34859,20 @@ (uuid "d12c2c71-e0b1-4ffe-a287-260a26bf6c45") ) (segment - (start 162.18137 66.25) - (end 161.865686 66.25) + (start 162.265685 66.3) + (end 162.23137 66.3) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "ebcfc749-fe3e-417e-8050-995a119701e6") + (uuid "d6364923-02b4-444a-957d-4f1d581b1d9d") ) (segment - (start 165.235686 69.27) - (end 162.265685 66.3) + (start 160.55 61.764314) + (end 160.36 61.574315) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_TXD") - (uuid "f75f43f6-d1a4-436e-b901-adbd162f242a") + (uuid "d6e1d060-8da5-4321-9eff-572c605df175") ) (via (at 160.07962 60.65962) @@ -30097,14 +34906,6 @@ (net "/Usb Connector/UART_TXD") (uuid "cfd88b74-ac27-43b7-b140-541332895c43") ) - (segment - (start 160.15 61.93) - (end 159.47962 61.25962) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "0234e2a0-b89c-4e18-afaf-aae17a22e71a") - ) (segment (start 155.529239 60.900761) (end 155.66 60.77) @@ -30113,6 +34914,14 @@ (net "/Usb Connector/UART_RXD") (uuid "1761a818-f638-47d0-bb96-82596e7931eb") ) + (segment + (start 160.15 61.93) + (end 159.47962 61.25962) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "1a1c5877-13b5-4ce0-9622-f975c399ae7e") + ) (segment (start 155.529239 62.3625) (end 155.529239 60.900761) @@ -30122,60 +34931,12 @@ (uuid "45e36cdd-b8ef-4ca6-a6d2-9b1ffac518ea") ) (segment - (start 168.75 68.195) - (end 168.75 69.070924) + (start 161.385026 66.6) + (end 160.15 65.364974) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_RXD") - (uuid "626312c2-692e-430f-8f85-505267198ca6") - ) - (segment - (start 165.072 69.672) - (end 162.1 66.7) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "77246db9-618e-48c3-a16e-fa59a3e5b40e") - ) - (segment - (start 162.015685 66.65) - (end 161.7 66.65) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "7f388ce8-eca6-4e04-a1ba-9e2d3994b144") - ) - (segment - (start 168.148924 69.672) - (end 165.072 69.672) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "8e19a48a-68f6-4f8d-b627-d48637f1f7e5") - ) - (segment - (start 161.7 66.65) - (end 160.15 65.1) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "8f104bfe-1cf5-4cc8-971e-1220f22d6639") - ) - (segment - (start 160.15 65.1) - (end 160.15 61.93) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "93de0d6d-2b2d-4fe8-9e95-d746e168544e") - ) - (segment - (start 168.75 69.070924) - (end 168.148924 69.672) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UART_RXD") - (uuid "ba16bd8c-cf39-4464-ae2a-c6e584448974") + (uuid "668b0765-61c5-4e02-b5c4-73bd4fd4f183") ) (segment (start 162.1 66.7) @@ -30183,15 +34944,63 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_RXD") - (uuid "cf412ab2-3d2f-4653-8193-e63f226b76f6") + (uuid "6e0c8a94-f9ec-499b-8400-c3522d00771c") ) (segment - (start 162.065685 66.7) - (end 162.015685 66.65) + (start 160.15 65.364974) + (end 160.15 61.93) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UART_RXD") - (uuid "ff483eee-4066-460e-b74e-5c3eb82bb225") + (uuid "98a35887-4719-48ab-b890-a9a435362d9c") + ) + (segment + (start 168.75 68.195) + (end 168.75 69.070924) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "a08f40c7-0065-40f2-ad49-2f2d46576d2a") + ) + (segment + (start 165.072 69.672) + (end 162.1 66.7) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "b6a22a94-185a-458a-b48d-be190063be34") + ) + (segment + (start 168.75 69.070924) + (end 168.148924 69.672) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "cdb45860-0a7a-4895-9be4-31eba7096f84") + ) + (segment + (start 162.065685 66.7) + (end 161.965685 66.6) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "e8e26974-e8c9-4bb7-9d52-5c1fe6a0ce2c") + ) + (segment + (start 168.148924 69.672) + (end 165.072 69.672) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "fa9ca641-ac74-4e44-b844-334d0132b4d3") + ) + (segment + (start 161.965685 66.6) + (end 161.385026 66.6) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UART_RXD") + (uuid "fb38c3a6-a23e-494c-9435-4f3b19480159") ) (via (at 159.47962 61.25962) @@ -30401,21 +35210,13 @@ (net "/Usb Connector/VDD1_ISO") (uuid "f405751c-ee88-4e13-be48-0e2ad8eca3bf") ) - (segment - (start 142.350001 45.73) - (end 144.308576 45.73) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "24ed7423-ae98-4b7a-ae99-06ce31c41739") - ) (segment (start 153.888198 43.25) (end 160.855686 43.25) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDN") - (uuid "2b7eb3d4-c85e-4640-b619-f9ef965fcf35") + (uuid "0b7e658e-de65-4e5a-81b3-89874f2444ae") ) (segment (start 140.72 43.864949) @@ -30425,21 +35226,29 @@ (net "/Usb Connector/UDN") (uuid "2ca3065d-7c0d-40f6-9990-f86fb8369287") ) - (segment - (start 152.038198 45.1) - (end 153.888198 43.25) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "36e25eee-74be-4ab4-8e5e-dd9f8a105eed") - ) (segment (start 144.938576 45.1) (end 152.038198 45.1) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDN") - (uuid "445dac05-bd31-45d3-b6f8-e3ffb149ca57") + (uuid "41dc4e4d-70e7-4b18-9d7a-082dc25445e7") + ) + (segment + (start 142.410001 45.79) + (end 144.248576 45.79) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "471babbf-1a62-484d-b581-4fc504d4317f") + ) + (segment + (start 160.855686 43.25) + (end 162.2275 41.878186) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "589366a4-e028-43e1-b03e-91676d579a0d") ) (segment (start 140.725 43.859949) @@ -30450,12 +35259,20 @@ (uuid "5a110d3f-135d-421a-9604-67987ba81a96") ) (segment - (start 136.225 46.475) - (end 136.225 47.569144) + (start 144.248576 45.79) + (end 144.263576 45.775) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDN") - (uuid "8c9448b0-0ba7-4517-8314-477fc4ba19e4") + (uuid "5c996def-b764-423a-945a-1f137bc7ee43") + ) + (segment + (start 152.038198 45.1) + (end 153.888198 43.25) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "601a0d7a-13bb-41d6-ab86-3b7f18d65f76") ) (segment (start 142.05 44.65) @@ -30463,7 +35280,23 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDN") - (uuid "97b65db9-4647-4f4e-8f54-b8bc555995ce") + (uuid "62accad3-7cf7-46e3-a30a-b6f0988e5818") + ) + (segment + (start 144.5 45.538576) + (end 144.938576 45.1) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "665030a5-f170-458a-9611-ff7efe803779") + ) + (segment + (start 136.225 46.475) + (end 136.225 47.569144) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "8c9448b0-0ba7-4517-8314-477fc4ba19e4") ) (segment (start 140.62002 48.77998) @@ -30489,6 +35322,14 @@ (net "/Usb Connector/UDN") (uuid "ad5bbda9-30eb-4412-9e02-38d73b32058b") ) + (segment + (start 144.269842 45.775) + (end 144.5 45.544842) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "ad964b78-5bab-4852-846e-2ece1e801b7d") + ) (segment (start 137.435836 48.77998) (end 140.62002 48.77998) @@ -30529,6 +35370,14 @@ (net "/Usb Connector/UDN") (uuid "bec5bef8-525d-4b1b-b788-3f746fbb873f") ) + (segment + (start 142.05 45.429999) + (end 142.410001 45.79) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "c9f7f212-2947-4cdb-a4ff-4a267a0b3fe4") + ) (segment (start 141.18 44.65) (end 142.05 44.65) @@ -30537,14 +35386,6 @@ (net "/Usb Connector/UDN") (uuid "cc016cb0-b282-45da-9a61-6171c8ffdc74") ) - (segment - (start 142.05 45.429999) - (end 142.350001 45.73) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "cec15f65-5829-4523-a100-a265e9cd9e98") - ) (segment (start 137.15 43.9) (end 137.905051 43.9) @@ -30553,6 +35394,14 @@ (net "/Usb Connector/UDN") (uuid "d2016830-8651-4c53-b49f-d068e94d7098") ) + (segment + (start 144.5 45.544842) + (end 144.5 45.538576) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDN") + (uuid "d21b4e40-d6ff-45bf-9596-6b433d4f959f") + ) (segment (start 137.905051 43.9) (end 138.935051 42.87) @@ -30561,14 +35410,6 @@ (net "/Usb Connector/UDN") (uuid "e4bda0a9-7ab1-4b88-8d18-dec59de579d8") ) - (segment - (start 160.855686 43.25) - (end 162.2275 41.878186) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDN") - (uuid "e4deb9a2-82c4-42f6-9307-04ef6695ea61") - ) (segment (start 138.935051 42.87) (end 140.314949 42.87) @@ -30578,12 +35419,12 @@ (uuid "e6c59800-7550-4bf2-9d71-8747494b3368") ) (segment - (start 144.308576 45.73) - (end 144.938576 45.1) + (start 144.263576 45.775) + (end 144.269842 45.775) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDN") - (uuid "ecc6e101-059a-4e91-b118-6b1bd7b26310") + (uuid "e90758d9-f55f-49fa-8284-a0522d2a8793") ) (via (at 142.05 44.65) @@ -30610,12 +35451,12 @@ (uuid "46147522-5ed4-47d2-9438-5220021d9e9b") ) (segment - (start 138.934978 48.329927) - (end 138.935051 48.33) + (start 141.730158 46.225) + (end 141.736424 46.225) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "09c7d058-7fdc-4a52-ace2-fd33567ee479") + (uuid "0231cf95-ad9a-4020-9e4d-82d1915f9048") ) (segment (start 153.651802 42.85) @@ -30625,6 +35466,14 @@ (net "/Usb Connector/UDP") (uuid "0d2b0919-f2b4-4589-a9a5-c4a58d1d0200") ) + (segment + (start 141.736424 46.225) + (end 141.751424 46.21) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "18ee9a9a-1cdc-4506-a02f-fb990c2c3caf") + ) (segment (start 138.748663 42.42002) (end 140.501337 42.42002) @@ -30634,20 +35483,12 @@ (uuid "18f1ebd1-506c-4325-87f5-6585e019d77f") ) (segment - (start 136.925 46.475) - (end 136.925 47.703458) + (start 140.725 47.919949) + (end 140.725 47.236424) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "1f61607c-1949-457c-80b5-060eb975626d") - ) - (segment - (start 136.925 47.703458) - (end 137.551469 48.329927) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "22ff2a5a-bee4-48a8-9d88-4b3a3dbd23fb") + (uuid "1fe20dfa-a23f-4e52-938e-1cadcfd9b8d8") ) (segment (start 141.651317 43.57) @@ -30674,28 +35515,60 @@ (uuid "3393b96a-966e-4021-88b3-43571d8e704d") ) (segment - (start 140.725 47.236424) - (end 141.691424 46.27) + (start 143.298576 46.21) + (end 143.313576 46.225) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "44596b81-46dc-4f94-83e3-f58acf96ec6c") + (uuid "3557b702-07bf-4bc8-beab-c16b81169532") ) (segment - (start 140.725 47.919949) - (end 140.725 47.236424) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "607846b1-248c-4d28-a47a-5c9284acb961") - ) - (segment - (start 143.358576 46.27) + (start 143.55 46.461424) (end 143.625 46.536424) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "61f3edf2-6757-4f09-9bd5-b73e81201d86") + (uuid "48228eeb-aa6f-4a3f-a842-fd581538b242") + ) + (segment + (start 137.551469 48.329927) + (end 138.934978 48.329927) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "51a3fff4-2bac-43a9-aa87-76024c6fd608") + ) + (segment + (start 143.55 46.455158) + (end 143.55 46.461424) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "65243395-18d9-4e37-9799-ddc743103c04") + ) + (segment + (start 143.319842 46.225) + (end 143.55 46.455158) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "67003b81-72bc-42e0-bd79-045f2bac2f49") + ) + (segment + (start 141.5 46.461424) + (end 141.5 46.455158) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "67f366e6-0d72-4214-81a1-95c69579b985") + ) + (segment + (start 141.751424 46.21) + (end 143.298576 46.21) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "6a20282a-25ce-4845-a58f-1eddb2b5af30") ) (segment (start 141.17498 44.046337) @@ -30711,7 +35584,15 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "7a34beca-4687-4398-bff7-a66ecbf73887") + (uuid "76e4b56d-3a73-46aa-9bc2-7c857919460e") + ) + (segment + (start 136.925 46.475) + (end 136.925 47.703458) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "7bb0160b-be4a-4fed-b93a-f9449a9adfd7") ) (segment (start 140.501337 42.42002) @@ -30721,6 +35602,14 @@ (net "/Usb Connector/UDP") (uuid "8858ae10-402e-4e33-b8b2-8be6e2b02e72") ) + (segment + (start 143.313576 46.225) + (end 143.319842 46.225) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "8ac4bc54-f01d-40e5-b0b0-e82d1078c123") + ) (segment (start 137.718663 43.45002) (end 138.748663 42.42002) @@ -30729,6 +35618,14 @@ (net "/Usb Connector/UDP") (uuid "93c574bd-9fc0-43a7-b2e4-b4e9b6264401") ) + (segment + (start 138.935051 48.33) + (end 140.314949 48.33) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "975f1b54-f8c4-47b0-85b0-4f2fcca45f24") + ) (segment (start 143.358576 43.57) (end 143.95 44.161424) @@ -30753,6 +35650,14 @@ (net "/Usb Connector/UDP") (uuid "a556523f-19b8-4ba3-be21-26e47d764c02") ) + (segment + (start 136.925 47.703458) + (end 137.551469 48.329927) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "b268593c-0b55-4d0e-8e35-73699f221cc4") + ) (segment (start 136.225 44.725) (end 136.45 44.5) @@ -30762,12 +35667,12 @@ (uuid "c18463b5-ac61-4577-8ff2-015a35b056a5") ) (segment - (start 141.691424 46.27) - (end 143.358576 46.27) + (start 138.934978 48.329927) + (end 138.935051 48.33) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "c3e1882c-4a82-4d33-8dd5-8622fef05398") + (uuid "c2fe0d21-4038-41bb-8b3f-8a3b9cea6d7e") ) (segment (start 151.851802 44.65) @@ -30778,12 +35683,12 @@ (uuid "d1372767-d50e-490b-b87d-dea1c40d3b51") ) (segment - (start 160.69 42.85) - (end 160.9575 42.5825) + (start 140.725 47.236424) + (end 141.5 46.461424) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "dce4c6b9-5591-4069-a785-9be4fd8d1b21") + (uuid "d301bb07-b5e0-4a47-bd7b-b0ddd4be067b") ) (segment (start 140.314949 48.33) @@ -30791,7 +35696,15 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "e02c73ce-a38a-454b-8a08-89cf0b892554") + (uuid "dc9847ae-ad89-4898-9d15-40d2870da26b") + ) + (segment + (start 160.69 42.85) + (end 160.9575 42.5825) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/UDP") + (uuid "dce4c6b9-5591-4069-a785-9be4fd8d1b21") ) (segment (start 136.45 43.963632) @@ -30802,12 +35715,12 @@ (uuid "e17354a2-ef71-4e0b-b440-804cc1aaf783") ) (segment - (start 137.551469 48.329927) - (end 138.934978 48.329927) + (start 141.5 46.455158) + (end 141.730158 46.225) (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "e4b66240-2616-45e9-b4e0-432c98f10a6e") + (uuid "e3ba4793-3220-44f5-b98e-f9bf7e71072e") ) (segment (start 143.625 46.536424) @@ -30815,15 +35728,7 @@ (width 0.2) (layer "F.Cu") (net "/Usb Connector/UDP") - (uuid "eb2d49a2-6965-4d28-9c78-096f0f39c048") - ) - (segment - (start 138.935051 48.33) - (end 140.314949 48.33) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/UDP") - (uuid "f61f27f8-637f-46b4-a7d6-1a7cefebabac") + (uuid "eb2ea223-983d-43f4-8542-86a886d0284b") ) (segment (start 160.9575 42.5825) @@ -30858,12 +35763,12 @@ (uuid "141b80f6-e52f-424d-9015-8512ff584e85") ) (segment - (start 124.25 52.9) - (end 124.25 53.799) + (start 129.84 56.18) + (end 129.84 60.515686) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_TXP") - (uuid "161637ed-1e02-431d-909f-a84905a94b15") + (uuid "1495f33e-12fa-42aa-ad98-ccc832c67ced") ) (segment (start 131.624314 62.3) @@ -30871,7 +35776,15 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_TXP") - (uuid "56aa2908-a138-4da6-8ac8-2f8690dbed86") + (uuid "29380382-e330-41d0-ad24-ed8551261879") + ) + (segment + (start 124.17 53.719) + (end 125.861 55.41) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXP") + (uuid "45d300d3-d6db-49bb-9eb3-ac6c173029ef") ) (segment (start 125.861 55.41) @@ -30879,31 +35792,7 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_TXP") - (uuid "5aa8e969-b621-40b8-a93c-4f8ccaff121d") - ) - (segment - (start 129.84 56.18) - (end 129.84 60.515686) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "85c34a86-f9ad-4ff1-8f13-9f9cb9537a07") - ) - (segment - (start 124.25 53.799) - (end 125.861 55.41) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "c334ff1e-f349-436d-aceb-50e852d38efb") - ) - (segment - (start 129.84 60.515686) - (end 131.624314 62.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXP") - (uuid "d9374a1e-0f7f-4cc1-80f4-0173e9f7bd35") + (uuid "46a61934-0a57-476e-99de-fd35beca4f2a") ) (segment (start 129.07 55.41) @@ -30911,39 +35800,31 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_TXP") - (uuid "f6067f23-b86b-43cb-8ac4-754b206e8b90") + (uuid "59256b92-cfaa-4100-9077-6b99311482fa") ) (segment - (start 126.79 54.17) - (end 128.395686 54.17) + (start 129.84 60.515686) + (end 131.624314 62.3) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXP") + (uuid "8e3a2494-93b8-44e9-9947-c36798d327ff") + ) + (segment + (start 124.17 52.96) + (end 124.17 53.719) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXP") + (uuid "ae3413aa-e83e-4525-a015-3318c0ef3362") + ) + (segment + (start 126.71 54.23) + (end 128.455686 54.23) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_TXN") - (uuid "0e167a45-aa3f-4bc9-911f-9e27d23e234c") - ) - (segment - (start 128.395686 54.17) - (end 130.24 56.014314) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "5d7a1feb-d4a5-4263-8443-a418bd511cf8") - ) - (segment - (start 131.73 61.8) - (end 134.975 61.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "b3463396-d499-4628-ba0c-9a6288aa79cf") - ) - (segment - (start 130.24 56.014314) - (end 130.24 60.31) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_TXN") - (uuid "c0042606-2cc0-4d73-a8d7-2956a634675e") + (uuid "0ea6ed3e-d236-499c-971c-62041a81143c") ) (segment (start 130.24 60.31) @@ -30951,103 +35832,215 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_TXN") - (uuid "cfe58b9a-9d95-400c-8cf8-53139fa315a1") + (uuid "0f4dd2fb-8f33-47c4-bd7c-0141431db273") ) (segment - (start 122.851 56.839) - (end 122.851 61.316686) + (start 130.24 56.014314) + (end 130.24 60.31) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXN") + (uuid "71f66334-2e31-4d56-aa96-db9a4c61879d") + ) + (segment + (start 128.455686 54.23) + (end 130.24 56.014314) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXN") + (uuid "82d2dbea-2c75-4a88-a4a4-751458ac4f59") + ) + (segment + (start 131.73 61.8) + (end 134.975 61.8) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXN") + (uuid "d154a99d-4dd3-4359-8cbe-67936d3dff5b") + ) + (segment + (start 126.77 54.22) + (end 126.76 54.23) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXN") + (uuid "e6e5c89a-46fa-423d-99ae-b6ebde01a7a6") + ) + (segment + (start 126.76 54.23) + (end 126.71 54.23) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_TXN") + (uuid "ee6e798d-4501-4b3d-a766-b42932c4364a") + ) + (segment + (start 124.865025 63.26) + (end 124.875026 63.27) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXP") - (uuid "5af34ad6-0e36-464d-81c2-25d645f1d4c8") + (uuid "0591bf26-798a-4091-b258-fb0f0ddaf957") ) (segment - (start 124.25 55.44) - (end 122.851 56.839) + (start 122.851 56.869) + (end 122.851 57.154025) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXP") - (uuid "79e76640-b633-4705-8a46-ae1d9eafce6e") + (uuid "067e5fc7-6fc9-4698-aaf6-80208e60c0e6") ) (segment - (start 125.324315 63.79) + (start 133.795026 63.78) + (end 134.955 63.78) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "209cf53d-2cca-47a6-bfa9-c2c77a4de40c") + ) + (segment + (start 122.83 61.295686) + (end 124.794314 63.26) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "600d0364-9439-41a8-9b4e-8b8197ef7dcf") + ) + (segment + (start 134.955 63.78) (end 134.965 63.79) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXP") - (uuid "9c30e0a7-6d79-4bcf-b353-da02fc532e59") + (uuid "8db5f3f4-a06e-46f0-b3a8-04d4f33bb761") ) (segment - (start 122.851 61.316686) - (end 125.324315 63.79) + (start 124.875026 63.27) + (end 133.285026 63.27) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXP") - (uuid "b37f22b6-f142-45e2-9450-4093c2b4b4f8") + (uuid "a741ae34-c385-49e4-9268-5e7bf16c7657") ) (segment - (start 134.965 63.31) - (end 125.41 63.31) + (start 122.83 57.175026) + (end 122.83 61.295686) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "b6616f2f-5e24-40b0-891c-44287aaceedf") + ) + (segment + (start 122.851 57.154025) + (end 122.83 57.175026) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "ca776634-2f49-47e3-b99e-61f10339b4ba") + ) + (segment + (start 133.285026 63.27) + (end 133.795026 63.78) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "d8ffa60f-25c9-452d-8f62-4c59e6eb84f3") + ) + (segment + (start 124.23 55.49) + (end 122.851 56.869) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "e42989e8-5401-4ef7-9663-12c198950835") + ) + (segment + (start 124.794314 63.26) + (end 124.865025 63.26) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXP") + (uuid "f01d2f2e-0f99-43f7-a6f9-2634dca0a8c9") + ) + (segment + (start 133.81 63.3) + (end 133.43 62.92) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXN") - (uuid "3f412569-7f79-4820-8934-473ee6f56ba2") + (uuid "48ae8ce3-9e83-4032-ab86-cbca4668cbb6") ) (segment - (start 124.5 56.8) - (end 126.79 59.09) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "5015f817-2422-4a1a-ba23-c0a71bf4ac3f") - ) - (segment - (start 125.41 63.31) - (end 123.251 61.151) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RXN") - (uuid "771e4444-ebf4-4027-ac85-d1a4e697bd28") - ) - (segment - (start 123.251 57.249) + (start 123.18 57.32) (end 123.7 56.8) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXN") - (uuid "8be1c56b-5c7e-4bb5-898b-218ac56f640f") + (uuid "583e11e6-cbcc-4c35-9a2d-ec789771faa2") ) (segment - (start 123.251 61.151) - (end 123.251 57.249) + (start 134.965 63.31) + (end 134.955 63.3) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXN") - (uuid "8d0828f9-4047-4e2b-8e72-0fb1b72aeaf0") + (uuid "5fb75b96-21bb-4c06-bdb9-1350f0ab91ed") ) (segment (start 123.7 56.8) - (end 124.5 56.8) + (end 124.44 56.8) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RXN") - (uuid "a75bbf5d-1622-4a99-8b82-f9795cf94f20") + (uuid "6211d10c-5e60-4dc5-b9cf-24929cf0f645") ) (segment - (start 124.3 67.2) - (end 124.3 65.08) + (start 123.18 61.08) + (end 123.18 57.32) (width 0.2) (layer "F.Cu") - (net "Net-(J2-Pad9)") - (uuid "3c1b6093-72de-4ac2-8b03-454578228234") + (net "/ethernet/ETH_RXN") + (uuid "6aaea7d5-e878-4ad6-9757-d68da81bee98") ) (segment - (start 116.79 54.515) - (end 113 50.725) + (start 133.43 62.92) + (end 125.02 62.92) (width 0.2) (layer "F.Cu") - (net "Net-(J2-Pad9)") - (uuid "3d95d3d2-a78d-46a2-8820-a72bdc958c5e") + (net "/ethernet/ETH_RXN") + (uuid "97aaba12-f294-4542-a10a-7e37a94a5cee") + ) + (segment + (start 124.44 56.8) + (end 126.71 59.07) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXN") + (uuid "b0c99bea-498c-47c0-ab5d-700b4de4c905") + ) + (segment + (start 126.71 59.07) + (end 126.71 59.31) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXN") + (uuid "bdce78dd-cd92-48e0-92e1-9f62a009c8b2") + ) + (segment + (start 134.955 63.3) + (end 133.81 63.3) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXN") + (uuid "d4f510f9-b3af-4ad9-b7c6-bc10a45ca06a") + ) + (segment + (start 125.02 62.92) + (end 123.18 61.08) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RXN") + (uuid "fdccb8a8-a4ca-4acb-8989-e9c4f34b8fd3") ) (segment (start 116.79 57.57) @@ -31055,15 +36048,39 @@ (width 0.2) (layer "F.Cu") (net "Net-(J2-Pad9)") - (uuid "40c9f0d9-8e30-431f-b252-b9b3067542bd") + (uuid "5c02aeb1-2d7f-4b09-8ec4-f3b6de079101") ) (segment - (start 124.3 65.08) + (start 123.17 67.67) + (end 123.17 63.95) + (width 0.2) + (layer "F.Cu") + (net "Net-(J2-Pad9)") + (uuid "6ceb98db-568e-4155-93d8-158f1c6d6346") + ) + (segment + (start 123.17 63.95) (end 116.79 57.57) (width 0.2) (layer "F.Cu") (net "Net-(J2-Pad9)") - (uuid "b06d8bfd-cd4b-48e5-af3a-98bb2b416179") + (uuid "8a25b47a-243f-4768-a906-b8e01c439236") + ) + (segment + (start 113.05 50.775) + (end 112.98 50.775) + (width 0.2) + (layer "F.Cu") + (net "Net-(J2-Pad9)") + (uuid "bfe3656b-5ab6-4834-a527-10b1c79918ee") + ) + (segment + (start 116.79 54.515) + (end 113.05 50.775) + (width 0.2) + (layer "F.Cu") + (net "Net-(J2-Pad9)") + (uuid "e1513984-1c87-43e0-b885-3cceb255e726") ) (segment (start 138.39 65.73) @@ -31090,28 +36107,12 @@ (uuid "2bbfdbb0-6329-4580-a1cc-eb909db07dc6") ) (segment - (start 123.69 63.64) - (end 136.3 63.64) + (start 112.98 53.315) + (end 113.03 53.265) (width 0.2) (layer "B.Cu") (net "/ethernet/LED_LNK") - (uuid "112c0ef9-5ba8-4abc-938a-9353a7afe6bc") - ) - (segment - (start 113 53.265) - (end 113.315 53.265) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_LNK") - (uuid "54c74002-ae4f-409c-ad92-3589c83d0471") - ) - (segment - (start 113.315 53.265) - (end 123.69 63.64) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_LNK") - (uuid "67176e57-3436-4366-9bda-2cdd7ce262d0") + (uuid "2ad05c59-009c-4849-86ae-5cedc17c23d2") ) (segment (start 136.3 63.64) @@ -31119,88 +36120,56 @@ (width 0.2) (layer "B.Cu") (net "/ethernet/LED_LNK") - (uuid "86590c69-3261-44e1-b6e9-44c81367c944") + (uuid "61863e08-beee-42ec-922b-085ea4589a42") + ) + (segment + (start 113.315 53.265) + (end 123.69 63.64) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_LNK") + (uuid "8a151b50-252b-497f-8303-44eb9aacb904") + ) + (segment + (start 123.69 63.64) + (end 136.3 63.64) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_LNK") + (uuid "daca735a-814a-43b5-8d2a-600afec90c01") + ) + (segment + (start 113.03 53.265) + (end 113.315 53.265) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_LNK") + (uuid "f838e239-4bde-4cd6-a94c-c27c7b853626") ) (via - (at 139.89 68.21) - (size 0.3) - (drill 0.15) + (at 139.887501 67.732499) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/LED_ACT") (uuid "96825f2d-bf54-4c2f-ad3a-9eaf13fb83fb") ) (segment - (start 139.64 67.24) - (end 139.89 67.49) + (start 112.98 61.485) + (end 113.795 60.67) (width 0.2) (layer "B.Cu") (net "/ethernet/LED_ACT") - (uuid "81875067-318a-4f2d-8630-1e4bbe0e3737") - ) - (segment - (start 137.74 65.999239) - (end 138.980761 67.24) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "84954130-beca-4cb3-941a-7a914cba1db0") - ) - (segment - (start 138.980761 67.24) - (end 139.64 67.24) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "9c6afcc1-6c6e-44a8-81cb-98f11001058e") - ) - (segment - (start 139.89 67.49) - (end 139.89 68.21) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "a6be3557-8e6e-46d1-884e-4e5f70a2c275") - ) - (segment - (start 123.524315 64.04) - (end 136.134314 64.04) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "a72e92a9-acef-4eb1-a282-74ae4eb50c1c") - ) - (segment - (start 136.134314 64.04) - (end 137.74 65.645686) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "bb6a9a2e-05fe-4e01-8783-0cd09cb905de") + (uuid "48d34fab-7774-43d4-9c50-7d65ddf52ffc") ) (segment (start 137.74 65.645686) - (end 137.74 65.999239) + (end 137.74 65.99) (width 0.2) (layer "B.Cu") (net "/ethernet/LED_ACT") - (uuid "d085dee0-936d-4058-9ddc-991bee2fd75f") - ) - (segment - (start 113.765 60.67) - (end 120.154314 60.67) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "dd44154a-a360-4aaa-be2d-d44b7676ab81") - ) - (segment - (start 113 61.435) - (end 113.765 60.67) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/LED_ACT") - (uuid "e0cf1cec-738a-4097-a408-0e92855aa116") + (uuid "7658d4c2-641a-46a8-bb06-11eb01d9c1af") ) (segment (start 120.154314 60.67) @@ -31208,280 +36177,183 @@ (width 0.2) (layer "B.Cu") (net "/ethernet/LED_ACT") - (uuid "ff16c251-a2b8-4593-b76d-743ca5291056") + (uuid "9dfee5df-021a-4ef5-bf6c-c4b0d79a8759") ) (segment - (start 115.465 63.975) - (end 113 63.975) + (start 139.482499 67.732499) + (end 139.887501 67.732499) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_ACT") + (uuid "b76c308f-e5d7-4cc7-9e68-3db61c3b32de") + ) + (segment + (start 113.795 60.67) + (end 120.154314 60.67) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_ACT") + (uuid "cc641855-f86e-4556-b23a-ce71b74abe1b") + ) + (segment + (start 136.134314 64.04) + (end 137.74 65.645686) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_ACT") + (uuid "db0b36c0-f8bf-4c01-9e46-2858690339c7") + ) + (segment + (start 123.524315 64.04) + (end 136.134314 64.04) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_ACT") + (uuid "efbccd80-806d-4b05-b1b1-5522c3e3e216") + ) + (segment + (start 137.74 65.99) + (end 139.482499 67.732499) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/LED_ACT") + (uuid "f65acf36-21fc-40f3-ba16-5f52116b3856") + ) + (segment + (start 123.175 68.77) + (end 120.26 68.77) (width 0.2) (layer "F.Cu") (net "Net-(J2-Pad12)") - (uuid "a9b7ff33-6283-4d18-9e85-1df53fd5df10") + (uuid "3be42455-dc2e-4c3e-8d1e-a349d3cbd408") ) (segment - (start 124.305 68.3) - (end 119.79 68.3) + (start 113.03 63.975) + (end 112.98 64.025) (width 0.2) (layer "F.Cu") (net "Net-(J2-Pad12)") - (uuid "e7fcb593-b22c-47b3-83f4-602277386a25") + (uuid "9055ed7c-fe8b-47b0-9185-cd314a563f82") ) (segment - (start 119.79 68.3) + (start 120.26 68.77) (end 115.465 63.975) (width 0.2) (layer "F.Cu") (net "Net-(J2-Pad12)") - (uuid "f288973e-a0bf-42b9-90cf-4095c79835b5") + (uuid "c1e09034-32d8-49a7-913d-83bfefe163b2") ) (segment - (start 129.315 69.05) - (end 131.25 69.05) + (start 115.465 63.975) + (end 113.03 63.975) (width 0.2) (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "18763780-1bf4-4595-86c5-9c56704f6aa9") + (net "Net-(J2-Pad12)") + (uuid "f45f06ea-a41a-4274-bb4a-4138aa7e5401") ) (segment - (start 131.25 69.05) - (end 132.6 70.4) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "1a5b9529-ebd4-4e74-bf39-20ad32b09bae") - ) - (segment - (start 133.92 69.08) - (end 133.92 67.17) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "37264d73-d49a-4696-99fb-154b5ad1abc9") - ) - (segment - (start 127.5 69.9) - (end 128.465 69.9) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "40dc0b1c-dc9d-4b4d-a9ee-20efa8e315bd") - ) - (segment - (start 132.6 70.4) - (end 133.92 69.08) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_I") - (uuid "80617a58-84b1-4e45-828e-5f2e1a09a14b") - ) - (segment - (start 134.29 66.8) + (start 133.495 66.8) (end 134.975 66.8) (width 0.2) (layer "F.Cu") (net "/ethernet/XTAL_I") - (uuid "afb4b851-2601-4c3a-9d40-0b8e3b3d2510") + (uuid "509e7ba4-579e-47ff-a5ba-09627d3ab970") ) (segment - (start 128.5 69.865) - (end 129.315 69.05) + (start 133.805 68.4) + (end 134.45 67.755) (width 0.2) (layer "F.Cu") (net "/ethernet/XTAL_I") - (uuid "d6be8cf5-9a0e-4d2c-8ddc-87d94d8ac684") + (uuid "a322d6ea-697d-43e1-925a-f04628810da4") ) (segment - (start 133.92 67.17) - (end 134.29 66.8) + (start 132.59 68.4) + (end 133.805 68.4) (width 0.2) (layer "F.Cu") (net "/ethernet/XTAL_I") - (uuid "f8315c6e-3435-489c-a40f-599b1388a0f4") + (uuid "ad076c87-ccc1-4c46-9b56-11c779c73be6") ) (segment - (start 129.165 68.635) - (end 130.3 67.5) + (start 134.45 67.755) + (end 133.375 66.68) (width 0.2) (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "02a58107-d406-4282-bb2d-96b81728eb4d") + (net "/ethernet/XTAL_I") + (uuid "b5b94c64-dc31-4779-995b-82e1d9d974e6") ) (segment - (start 128.5 68.635) - (end 129.165 68.635) + (start 133.375 66.68) + (end 133.495 66.8) (width 0.2) (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "268bb52a-0386-43a9-91e2-2f08276a1504") + (net "/ethernet/XTAL_I") + (uuid "c3e68862-03b6-44f1-ae4a-e49920dd4f3c") ) (segment - (start 127.5 68.705) - (end 128.43 68.705) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "32411ba7-68ae-4cfc-985d-060b108fe69a") - ) - (segment - (start 134.002545 66.097455) - (end 134.20509 66.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "44d8de55-fa33-4b7f-ae62-52d9f14b862d") - ) - (segment - (start 131.702545 66.097455) - (end 134.002545 66.097455) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/XTAL_O") - (uuid "6151864f-db18-408f-87e4-49568dc30461") - ) - (segment - (start 134.20509 66.3) + (start 133.95 66.3) (end 134.975 66.3) (width 0.2) (layer "F.Cu") (net "/ethernet/XTAL_O") - (uuid "86b3871e-71cb-4d4f-b843-fbd7f2f7e76f") + (uuid "2ab80f61-9560-4c14-a6cd-4b005286dd92") ) (segment - (start 130.3 67.5) - (end 131.702545 66.097455) + (start 131.1 69.29) + (end 131.1 66.67) (width 0.2) (layer "F.Cu") (net "/ethernet/XTAL_O") - (uuid "aaac0f4c-006c-4093-aee9-68e601746585") + (uuid "5b9d81a9-6fb5-4a64-9141-b6544b9a0358") ) (segment - (start 150.86 65.55) - (end 150.06 66.35) + (start 129.69 70.7) + (end 131.1 69.29) (width 0.2) (layer "F.Cu") - (net "/fpga/1V2") - (uuid "b2484f46-82e9-44d9-bf78-f6e6d9e5256d") + (net "/ethernet/XTAL_O") + (uuid "7efe2e9f-6fd9-4abb-8485-fefa85336424") ) (segment - (start 150.06 66.2025) - (end 149.04 65.1825) + (start 132.17 66.67) + (end 132.18 66.68) (width 0.2) (layer "F.Cu") - (net "/fpga/1V2") - (uuid "cab7b99f-3100-4ee9-b1f2-fa684f69d388") + (net "/ethernet/XTAL_O") + (uuid "a247752d-fb69-4285-a5b5-c30c92df26fd") ) (segment - (start 152.341739 65.55) - (end 150.86 65.55) + (start 133.6 65.95) + (end 133.95 66.3) (width 0.2) (layer "F.Cu") - (net "/fpga/1V2") - (uuid "ef75d248-ea14-4966-a426-91361c98c4ba") - ) - (via - (at 149.04 65.1825) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/fpga/1V2") - (uuid "761d51a0-033a-4c1e-b160-f1eef4215f6e") - ) - (via - (at 147.91 57.639998) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/fpga/1V2") - (uuid "786c7648-c7b0-47bf-bd20-a44f7f3ff92e") - ) - (via - (at 159.24 66.56) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) - (net "/fpga/1V2") - (uuid "d59eabed-68c2-4247-8cc6-2e61d58d67c7") + (net "/ethernet/XTAL_O") + (uuid "ad6f1f29-2c73-4612-893e-d75122b4f4ed") ) (segment - (start 147.8 59.15) - (end 147.8 57.749998) + (start 131.1 66.67) + (end 132.17 66.67) (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "4ca9811e-8155-4ee5-a9a2-de8240ef2582") + (layer "F.Cu") + (net "/ethernet/XTAL_O") + (uuid "ba7af14a-d0cc-4571-8558-c5ebbc81e0ee") ) (segment - (start 148.51631 58.246308) - (end 147.91 57.639998) + (start 132.18 66.68) + (end 132.91 65.95) (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "4e6853e2-3b05-477e-b205-8779d7865758") + (layer "F.Cu") + (net "/ethernet/XTAL_O") + (uuid "bedaf79a-457b-476b-a2c0-3f37aa08ac80") ) (segment - (start 151.15 58.675) - (end 150.721308 58.246308) + (start 132.91 65.95) + (end 133.6 65.95) (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "53ef2cf3-d0d2-48d7-ae78-bbbedbef2ef2") - ) - (segment - (start 147.8 63.9425) - (end 149.04 65.1825) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "72dfd9df-a2ee-4e4d-8758-9a9503f2e71e") - ) - (segment - (start 149.04 65.1825) - (end 157.8975 65.1825) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "851ef3ea-7aad-43f5-8c7a-5acb0fa39cd3") - ) - (segment - (start 150.721308 58.246308) - (end 148.51631 58.246308) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "940c1fba-2f3c-4b20-9651-27fdac1cef00") - ) - (segment - (start 147.8 57.749998) - (end 147.91 57.639998) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "a4e8b6b7-9a1d-4df4-a5fc-af4470d3500c") - ) - (segment - (start 147.8 59.15) - (end 147.8 63.9425) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "df4f73ef-5f61-475b-9ec7-20fe618e154f") - ) - (segment - (start 151.15 59.15) - (end 151.15 58.675) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "ed4c168f-868f-4803-a0eb-6e3ea3118068") - ) - (segment - (start 157.8975 65.1825) - (end 159.245 66.53) - (width 0.2) - (layer "B.Cu") - (net "/fpga/1V2") - (uuid "f103594b-5fcd-4fa6-abcd-2491d6d369d0") + (layer "F.Cu") + (net "/ethernet/XTAL_O") + (uuid "e15824c2-c00b-4831-bff3-1fd22eb27a1a") ) (segment (start 184.425 60.62) @@ -31515,14 +36387,6 @@ (net "Net-(U2-PR1)") (uuid "e9ddf419-025a-4cc2-a96c-b4a0f535ce17") ) - (segment - (start 196.25 63.39) - (end 194.84 64.8) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "1aab7b9e-55e9-4c30-b2a9-bb733755bb37") - ) (segment (start 206.912499 52.4575) (end 205.9425 52.4575) @@ -31539,6 +36403,14 @@ (net "/Usb Connector/USB_3V3") (uuid "28037bc1-6feb-4ad5-a13a-6a7913f41e9a") ) + (segment + (start 194.52 64.8) + (end 196.14 63.18) + (width 0.2) + (layer "F.Cu") + (net "/Usb Connector/USB_3V3") + (uuid "30782c39-3af4-4de8-b763-33abf1207f59") + ) (segment (start 200.075 50.65) (end 200.075 51.674999) @@ -31587,14 +36459,6 @@ (net "/Usb Connector/USB_3V3") (uuid "6ec04f13-d2a4-4924-af22-3f0245ac10a9") ) - (segment - (start 194.84 64.8) - (end 185.36864 64.8) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "73cefad6-91b5-4d08-b4e0-9e3dc3a667d9") - ) (segment (start 185.36864 64.8) (end 184.65 64.8) @@ -31604,12 +36468,12 @@ (uuid "8ccca32f-f137-4721-ab9a-3fb123be4294") ) (segment - (start 182.79 64.62) - (end 182.79 63.89) + (start 185.36864 64.8) + (end 194.52 64.8) (width 0.2) (layer "F.Cu") (net "/Usb Connector/USB_3V3") - (uuid "a21c34aa-f8e1-4d47-95db-09326df04920") + (uuid "923f94de-7810-41a4-b9cc-0de2a57e4d1e") ) (segment (start 206.98 52.525001) @@ -31651,30 +36515,14 @@ (net "/Usb Connector/USB_3V3") (uuid "f3e20147-15b8-4631-92f6-d6ca08be2097") ) - (segment - (start 182.825 63.855) - (end 182.825 64.45636) - (width 0.2) - (layer "F.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "f609d26b-d562-4355-828f-b2fb72c64ccf") - ) (via - (at 196.25 63.39) + (at 196.14 63.18) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") (net "/Usb Connector/USB_3V3") (uuid "0ea23b5b-d155-4d33-8296-de0b908a7b5b") ) - (via - (at 182.79 64.62) - (size 0.6) - (drill 0.3) - (layers "F.Cu" "B.Cu") - (net "/Usb Connector/USB_3V3") - (uuid "1cf8d772-7d28-4eb5-a99c-d3c7b027891f") - ) (via (at 184.64 64.81) (size 0.6) @@ -31691,29 +36539,61 @@ (net "/Usb Connector/USB_3V3") (uuid "6823bb85-fb33-423b-9484-fad3187d7f37") ) - (segment - (start 184.64 64.81) - (end 182.98 64.81) - (width 0.2) - (layer "B.Cu") + (via + (at 182.825 63.855) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") (net "/Usb Connector/USB_3V3") - (uuid "48fcaea9-ecb3-4dd4-8e97-6811b4f6f98d") + (uuid "bd64bb87-7c23-4a8b-a475-48fe35267835") ) (segment - (start 182.98 64.81) - (end 182.79 64.62) + (start 184.64 64.81) + (end 183.78 64.81) (width 0.2) (layer "B.Cu") (net "/Usb Connector/USB_3V3") - (uuid "b3b0d54f-c299-4a21-b05b-8edd2b6bec53") + (uuid "3071358e-d82f-4bf9-b788-10f9aaa0c588") + ) + (segment + (start 200.93 62.95) + (end 196.37 62.95) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/USB_3V3") + (uuid "648496da-f4d0-4734-be83-18a0c2014cfd") ) (segment (start 201.37 63.39) - (end 196.25 63.39) + (end 200.93 62.95) (width 0.2) (layer "B.Cu") (net "/Usb Connector/USB_3V3") - (uuid "b65f6174-0f37-488d-8c50-4850f20874dc") + (uuid "a89fde76-a989-4cbf-ba26-b07d54d90b4b") + ) + (segment + (start 182.825 63.855) + (end 183.78 64.81) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/USB_3V3") + (uuid "c0df054f-9f11-4488-b8b2-b939c6799565") + ) + (segment + (start 196.37 62.95) + (end 196.14 63.18) + (width 0.2) + (layer "B.Cu") + (net "/Usb Connector/USB_3V3") + (uuid "d750ea08-cf92-4419-8308-e5b378bff1ca") + ) + (segment + (start 190.4 45.23) + (end 190.4 47.07) + (width 0.2) + (layer "F.Cu") + (net "Net-(R19-Pad1)") + (uuid "88f9dda6-fc3a-4891-b90e-4cdeaef7d142") ) (segment (start 137.625 46.475) @@ -31859,29 +36739,239 @@ (net "Net-(J3-ExtIn)") (uuid "426ae63d-d2d4-4d1a-bb4d-5c7f3f233fca") ) - (segment - (start 143.895573 59.940172) - (end 144.090172 59.940172) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RST") - (uuid "0afed5f4-cfbe-44ae-9de4-c86e24eeb5ac") + (via + (at 152.341739 65.549998) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/fpga/1V2") + (uuid "6272706c-a756-485f-b0d6-5618c17c8a51") + ) + (via + (at 148.238401 57.671599) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/fpga/1V2") + (uuid "786c7648-c7b0-47bf-bd20-a44f7f3ff92e") + ) + (via + (at 147.56 57.64) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/fpga/1V2") + (uuid "c45f5d85-06a7-46e2-a076-0ff752697e30") + ) + (via + (at 159.24 66.56) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/fpga/1V2") + (uuid "d59eabed-68c2-4247-8cc6-2e61d58d67c7") ) (segment - (start 147.13 62.98) - (end 147.13 68.14924) + (start 151.15 59.15) + (end 151.15 58.675) (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RST") - (uuid "0f2c57de-0544-4838-ac0a-ea1f39f6acfe") + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "02821042-6261-406b-99a4-0ccf8d3e03b0") ) (segment - (start 136.3875 59.8875) - (end 136.3875 58.679226) + (start 151.11 66.36) + (end 151.11 66.12) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "11944075-cb35-4315-9865-60806ee38b3e") + ) + (segment + (start 151.11 66.12) + (end 151.680002 65.549998) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "15f5e979-ed6d-4812-a3c5-a1b433183aff") + ) + (segment + (start 147.56 57.64) + (end 147.56 58.91) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "28df6d3f-bf58-4941-991b-a8ff01889da1") + ) + (segment + (start 151.73928 66.669281) + (end 151.429999 66.36) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "301697bb-94cc-424a-a37b-0ebee087c482") + ) + (segment + (start 150.721308 58.246308) + (end 148.72 58.246308) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "5a1bd16b-87d8-41ea-968e-b519e9169f97") + ) + (segment + (start 148.206802 57.64) + (end 148.238401 57.671599) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "710e2ad5-4c7f-4c1d-973a-807cbf40fe7a") + ) + (segment + (start 147.8 59.15) + (end 149.3 60.65) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "7dd53857-ee08-4503-b08c-7639ee4b5034") + ) + (segment + (start 149.3 65.48) + (end 150.13 66.31) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "7dfdea1c-7385-4893-9638-fa3bac63fa75") + ) + (segment + (start 151.680002 65.549998) + (end 152.341739 65.549998) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "88f20265-f660-4bfb-8213-4acf8756131c") + ) + (segment + (start 159.245 67.755) + (end 158.04 68.96) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "9f3fd2d8-f3c6-4f85-99c6-a4c921667cfc") + ) + (segment + (start 151.06 66.31) + (end 151.11 66.36) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "a8eb00b3-99e9-49aa-8bb2-27ad6128c500") + ) + (segment + (start 150.13 66.31) + (end 151.06 66.31) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "aa613a3e-a37c-412c-a20f-920bcfc58463") + ) + (segment + (start 151.15 58.675) + (end 150.721308 58.246308) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "abaa2491-59c5-40e9-bf07-c45c4df1c979") + ) + (segment + (start 152.8175 68.96) + (end 151.73928 67.88178) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "b378d785-5b3f-4288-b4af-e25ac5af0a71") + ) + (segment + (start 149.3 60.65) + (end 149.3 65.48) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "c1e717d5-d7dc-46d6-a037-fe19c3db23fd") + ) + (segment + (start 147.56 57.64) + (end 148.206802 57.64) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "c4e1b17c-489d-4c44-bb02-0097ff545b80") + ) + (segment + (start 148.72 58.246308) + (end 148.238401 57.764709) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "cde24453-7a8c-489e-9559-dd548ddff1da") + ) + (segment + (start 148.238401 57.764709) + (end 148.238401 57.671599) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "e23de202-bf34-4d25-b0d7-82c7cf13cce8") + ) + (segment + (start 158.04 68.96) + (end 152.8175 68.96) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "e2907048-7d6b-4369-babc-6d2c01dd5084") + ) + (segment + (start 151.429999 66.36) + (end 151.11 66.36) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "e59921c4-8db8-4a24-b2d6-1d94f6195d80") + ) + (segment + (start 147.56 58.91) + (end 147.8 59.15) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "ea102f64-3b92-4ecf-88ae-becf06c9562a") + ) + (segment + (start 151.73928 67.88178) + (end 151.73928 66.669281) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "ec64478c-d8d9-466e-8c36-a4e5a8d663a0") + ) + (segment + (start 159.245 66.53) + (end 159.245 67.755) + (width 0.2) + (layer "B.Cu") + (net "/fpga/1V2") + (uuid "f91d4170-c7b4-4e56-a7a8-faf027ed1dd3") + ) + (segment + (start 144.090172 59.940172) + (end 146.88 62.73) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RST") - (uuid "52946dd3-9591-471a-9946-5f2eb85811ed") + (uuid "42423440-112c-4442-b3ad-33cbf90e9435") ) (segment (start 161.435784 68.05) @@ -31892,28 +36982,44 @@ (uuid "645e7afd-f9af-47e4-9593-196de67766b0") ) (segment - (start 144.090172 59.940172) - (end 147.13 62.98) + (start 146.88 65.31) + (end 148.8 67.23) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RST") - (uuid "70dcdb71-2d6b-4e2f-aa94-10292626cbf4") + (uuid "7bf69437-3636-4a64-920e-dfdedd2ed42b") ) (segment - (start 147.13 68.14924) - (end 147.385291 68.404531) + (start 146.88 62.73) + (end 146.88 65.31) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RST") - (uuid "71015a9d-7b3d-4f30-80a0-9c57b6d178fb") + (uuid "92ca6530-4064-4a89-af63-85dc11904d40") ) (segment - (start 136.3875 58.679226) - (end 136.759389 58.307337) + (start 136.3875 59.8875) + (end 136.3875 58.860667) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RST") - (uuid "d796acee-07fb-4b2f-8932-3245827dffc8") + (uuid "a2a12f1a-ced3-439f-8201-ac47f1bc8fbb") + ) + (segment + (start 136.3875 58.860667) + (end 136.918878 58.329289) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RST") + (uuid "a8485c29-e1c2-4dec-bd88-c047d5a23eae") + ) + (segment + (start 143.895573 59.940172) + (end 144.090172 59.940172) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RST") + (uuid "b29bd62b-9673-485d-9e4c-0f65397f94c6") ) (segment (start 161.542892 68.157108) @@ -31924,7 +37030,7 @@ (uuid "da779f9d-38dd-4ed7-922d-dd3b80e48914") ) (via - (at 136.759389 58.307337) + (at 136.918878 58.329289) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -31940,7 +37046,7 @@ (uuid "4211bb96-9f53-4b1e-b4ac-db8bb17a4c2b") ) (via - (at 147.385291 68.404531) + (at 148.8 67.23) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -31956,12 +37062,20 @@ (uuid "86c532ca-8d0d-43d1-a541-c4808fee8cc0") ) (segment - (start 161.55 68.164216) - (end 161.55 69.76) + (start 142.54 58.12) + (end 137.128167 58.12) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_RST") - (uuid "07f5b70f-0dda-46d0-9c13-16fc03189347") + (uuid "2aa9be63-eed6-43ee-b20c-ab7ccd1a53b2") + ) + (segment + (start 160.73 70.58) + (end 152.15 70.58) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/ETH_RST") + (uuid "4babbd9e-4f05-4a26-9d2a-b848a59d86fd") ) (segment (start 143.895573 59.940172) @@ -31969,87 +37083,63 @@ (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_RST") - (uuid "2ad96538-662e-47ac-ad98-5e68045f06b7") + (uuid "56d5585b-c907-4f5a-97cf-0236517a9de5") ) (segment (start 161.542892 68.157108) - (end 161.55 68.164216) + (end 161.542892 69.767108) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_RST") - (uuid "4d80f8d3-67b1-48eb-a463-b7b20044e4d4") + (uuid "5a566e97-7b19-4dd5-bf80-ceb92a143036") ) (segment - (start 143.895573 59.475573) - (end 142.48803 58.06803) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/ETH_RST") - (uuid "54480519-341f-4f6e-ac63-eb099969a6f1") - ) - (segment - (start 149.56076 70.58) - (end 147.385291 68.404531) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/ETH_RST") - (uuid "6ae74796-f15d-4cfe-a4c1-9f155c0af270") - ) - (segment - (start 136.998696 58.06803) - (end 136.759389 58.307337) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/ETH_RST") - (uuid "b3ed2a59-dd00-4db4-ba40-63c190b04a7e") - ) - (segment - (start 142.48803 58.06803) - (end 136.998696 58.06803) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/ETH_RST") - (uuid "bd1a6070-a7cc-4def-bc72-9b75aa32fd1f") - ) - (segment - (start 161.55 69.76) + (start 161.542892 69.767108) (end 160.73 70.58) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_RST") - (uuid "c31e8c82-8c39-4688-80cf-5051b4a701de") + (uuid "67a89c32-c1fb-47e9-bd88-778ef8b17fa0") ) (segment - (start 160.73 70.58) - (end 149.56076 70.58) + (start 137.128167 58.12) + (end 136.918878 58.329289) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_RST") - (uuid "fd2fbff2-7616-42c0-8b3a-778eab99f737") + (uuid "9c704979-6428-4deb-8d2e-8384a539d039") ) (segment - (start 193.9 60.4) - (end 190.12 60.4) + (start 143.895573 59.475573) + (end 142.54 58.12) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/ETH_RST") + (uuid "b0c6e614-c8bf-4e3f-b924-144aadad22cb") + ) + (segment + (start 152.15 70.58) + (end 148.8 67.23) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/ETH_RST") + (uuid "fb284132-c73d-4b25-92d1-8c72e6ec4efb") + ) + (segment + (start 189.71 57.6) + (end 189.13 57.02) (width 0.2) (layer "F.Cu") (net "/exi/EXI_MOSI") - (uuid "025d37c0-af89-4ba1-b10a-fca266a45f7a") + (uuid "06ffeff8-949a-4469-a3dc-090a31bc09ca") ) (segment - (start 161.684314 67.45) - (end 159.960761 67.45) + (start 190.12 60.4) + (end 189.71 59.99) (width 0.2) (layer "F.Cu") (net "/exi/EXI_MOSI") - (uuid "09220a5a-0f2b-4a0b-b03e-0ab8aba646ed") - ) - (segment - (start 189.6 58.809239) - (end 189.78 58.629239) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "16914104-2261-4857-a7d9-11c78c284e15") + (uuid "1bf92fa7-1a29-4336-87a7-a55954821956") ) (segment (start 175.222941 70.48) @@ -32057,7 +37147,15 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MOSI") - (uuid "1c81bc19-f62c-4d83-bddc-1bd18d6b5d55") + (uuid "21d53cfc-4e7d-4415-a34e-1fcb609b4831") + ) + (segment + (start 189.71 59.99) + (end 189.71 57.6) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "29284469-f62b-48f6-8fed-dffacf8fba62") ) (segment (start 159.860761 67.55) @@ -32065,95 +37163,7 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MOSI") - (uuid "4669e662-b2a2-494e-90b1-a6fa72d73058") - ) - (segment - (start 189.78 58.090761) - (end 188.709239 57.02) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "5b611527-9823-4375-bdc2-5dcab30742eb") - ) - (segment - (start 194.85 59.35) - (end 193.9 60.3) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "63c2e92c-6bed-4756-b9a0-f0b159be0a75") - ) - (segment - (start 189.6 59.88) - (end 189.6 58.809239) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "80883ae1-15f6-4bb4-a637-7b7b5c449f79") - ) - (segment - (start 188.709239 57.02) - (end 182.862942 57.02) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "9e6438cc-a986-426b-85ba-c5bc7d157bee") - ) - (segment - (start 182.862942 57.02) - (end 178.18 61.702942) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "a7d0a90a-0a66-4e36-8f45-548896fc90a8") - ) - (segment - (start 178.18 67.522942) - (end 175.222941 70.48) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "ab054ba8-7b9c-4b20-8c43-24eae189d93d") - ) - (segment - (start 178.18 61.702942) - (end 178.18 67.522942) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "b927bf87-559e-4fa0-832d-2a6c3e9f3e7b") - ) - (segment - (start 164.714314 70.48) - (end 161.684314 67.45) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "bad1117b-5810-4c6e-a4bc-88112c2bdc20") - ) - (segment - (start 159.960761 67.45) - (end 159.860761 67.55) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "c62718b7-5a32-430a-a559-de5856e4eee5") - ) - (segment - (start 189.78 58.629239) - (end 189.78 58.090761) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "cecf554e-17a5-47fc-bdd9-fde63209880a") - ) - (segment - (start 190.12 60.4) - (end 189.6 59.88) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MOSI") - (uuid "dcca06bc-8345-4b1c-8793-112b12d46cfa") + (uuid "3f866beb-0192-4f03-b98a-4393bf286386") ) (segment (start 193.9 60.3) @@ -32161,31 +37171,95 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MOSI") - (uuid "f3f767f7-6885-41b0-aa22-5f1128f0b7da") + (uuid "5284d219-a7c4-4759-ace9-a7320147217d") ) (segment - (start 182.692 56.618) - (end 177.78 61.53) + (start 186.804975 57.02) + (end 186.174974 57.65) (width 0.2) (layer "F.Cu") - (net "/exi/EXI_MISO") - (uuid "1367c75b-4d21-4bfb-bf67-18897efcda9e") + (net "/exi/EXI_MOSI") + (uuid "6599d740-e347-4468-ac7f-c9fc13ed9cca") ) (segment - (start 177.78 61.53) - (end 177.78 67.357256) + (start 164.714314 70.48) + (end 161.684314 67.45) (width 0.2) (layer "F.Cu") - (net "/exi/EXI_MISO") - (uuid "30f5e0a6-6754-41cb-bc26-181181083d7d") + (net "/exi/EXI_MOSI") + (uuid "75fff58a-8518-4198-9650-c0aa5f8f9189") ) (segment - (start 189.33 54) - (end 186.712 56.618) + (start 178.18 61.702942) + (end 178.18 67.522942) (width 0.2) (layer "F.Cu") - (net "/exi/EXI_MISO") - (uuid "42c90353-ed2a-43aa-bbb9-655411781df6") + (net "/exi/EXI_MOSI") + (uuid "95813f86-fcd2-4b77-86cd-31f04c195a39") + ) + (segment + (start 186.174974 57.65) + (end 182.232942 57.65) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "98431656-d866-4ac6-9ec6-4a981f3b0870") + ) + (segment + (start 189.13 57.02) + (end 186.804975 57.02) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "9957ad07-aa0b-49b5-9ae2-0584988ad7ae") + ) + (segment + (start 182.232942 57.65) + (end 178.18 61.702942) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "9ff89d74-5ded-489f-b22f-9c03d72fe629") + ) + (segment + (start 194.85 59.35) + (end 193.9 60.3) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "a9cf68f1-a819-4884-8ee1-31d51be516be") + ) + (segment + (start 159.960761 67.45) + (end 159.860761 67.55) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "aa62491c-6bda-42c0-8241-ea761590cf30") + ) + (segment + (start 178.18 67.522942) + (end 175.222941 70.48) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "ba6ea006-d917-4163-89f7-a87f891f7e93") + ) + (segment + (start 161.684314 67.45) + (end 159.960761 67.45) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "be4316a1-2619-47c5-a579-6b17f3b2c8e8") + ) + (segment + (start 193.9 60.4) + (end 190.12 60.4) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MOSI") + (uuid "f0fc556f-ee31-4a66-9fc4-f31553ee0129") ) (segment (start 164.88 70.08) @@ -32193,15 +37267,15 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MISO") - (uuid "4b44385a-ccdc-4867-b2d4-8c58078c8832") + (uuid "0332256f-c30b-4aed-8dc9-36871fd6b78f") ) (segment - (start 197.85 55.45) - (end 196.4 54) + (start 189.33 54) + (end 186.03 57.3) (width 0.2) (layer "F.Cu") (net "/exi/EXI_MISO") - (uuid "6dca64e2-20c5-4839-88e2-bc27412ec366") + (uuid "0ebe8738-e6c9-4144-b43e-d0fca7b65968") ) (segment (start 175.057256 70.08) @@ -32209,7 +37283,23 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MISO") - (uuid "bf465222-03b6-4293-a03b-47047b0bf55f") + (uuid "1b9f4935-e38c-4f51-9597-db33e24355cf") + ) + (segment + (start 177.78 61.53) + (end 177.78 67.357256) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MISO") + (uuid "474c9e51-3ff9-4175-9b10-b4c83cdd511f") + ) + (segment + (start 186.03 57.3) + (end 182.01 57.3) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MISO") + (uuid "877e37d6-6972-40d1-92fd-e5843b6bdee5") ) (segment (start 161.85 67.05) @@ -32217,23 +37307,7 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MISO") - (uuid "e31c0f07-ba20-433e-bd2c-998c7864ec3e") - ) - (segment - (start 186.712 56.618) - (end 182.692 56.618) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MISO") - (uuid "e883aea9-ae3e-41c7-a1e2-89f62da033c5") - ) - (segment - (start 177.78 67.357256) - (end 175.057256 70.08) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_MISO") - (uuid "ed0d856b-1e32-427e-8836-ddcc9ab67dfa") + (uuid "91ec7aa8-e03a-4aa2-9c1f-fdbce92c0ecc") ) (segment (start 196.4 54) @@ -32241,31 +37315,39 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_MISO") - (uuid "f95a32da-d531-48b9-9dad-fbdb43aea07c") + (uuid "a423e658-9c2f-447a-9d98-ac41f0f728a7") ) (segment - (start 140.848148 56.259999) - (end 138.3875 58.720649) + (start 182.01 57.3) + (end 177.78 61.53) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MISO") + (uuid "c0f083ed-f026-45ac-8b5a-7dcbea5a66f9") + ) + (segment + (start 177.78 67.357256) + (end 175.057256 70.08) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MISO") + (uuid "dc850217-71fe-4c79-9fbf-a6a5bccc1da7") + ) + (segment + (start 197.85 55.45) + (end 196.4 54) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_MISO") + (uuid "efb9ca46-0a21-406a-98c1-5bc1ab63fe91") + ) + (segment + (start 139.934975 57.61) + (end 139.924974 57.61) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D7") - (uuid "057449fa-329d-463a-b0c2-3ed841babae8") - ) - (segment - (start 153.55 60.75) - (end 153.119 60.319) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "0d57ecba-9b6a-4486-ae38-2a118dde1fb1") - ) - (segment - (start 153.529239 61.910614) - (end 153.55 61.889853) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "16cc7b26-4d76-4585-b936-00b22d5fabfc") + (uuid "16e9d0b4-12e0-40ce-89df-46a409b85f01") ) (segment (start 153.55 61.889853) @@ -32273,15 +37355,23 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D7") - (uuid "1aaada66-b9ae-4c32-b079-0e8aab9b9652") + (uuid "55ceda63-0d4c-44e4-9155-5e45f9a812c6") ) (segment - (start 153.119 60.319) - (end 149.180415 60.319) + (start 139.924974 57.61) + (end 138.3875 59.147475) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D7") - (uuid "2404931c-b982-4cc9-bf2d-5bbf9e8d5413") + (uuid "6fa2e5e8-ba4f-41cc-8d35-3f04822be886") + ) + (segment + (start 153.119 60.319) + (end 149.174026 60.319) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D7") + (uuid "74a6a8f7-9f7b-4ae1-9202-a0015522c842") ) (segment (start 153.529239 62.3625) @@ -32289,663 +37379,560 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D7") - (uuid "27d47bc2-eb8e-47f9-aa67-b84f66987675") + (uuid "765038fc-d885-4c58-97a5-1688fc34c4a1") ) (segment - (start 138.3875 58.720649) + (start 140.764974 56.78) + (end 139.934975 57.61) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D7") + (uuid "97bc1a77-32da-4f1f-b8cc-71ed1264bbba") + ) + (segment + (start 145.635026 56.78) + (end 140.764974 56.78) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D7") + (uuid "a7491592-3d48-4963-84b8-54464103813f") + ) + (segment + (start 153.529239 61.910614) + (end 153.55 61.889853) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D7") + (uuid "b8354550-7ad6-4f5e-a1b8-19e1b27948ed") + ) + (segment + (start 149.174026 60.319) + (end 145.635026 56.78) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D7") + (uuid "dcbcd6d6-b6b3-45c6-934e-3f7e77d7c720") + ) + (segment + (start 138.3875 59.147475) (end 138.3875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D7") - (uuid "4d05d8fd-30fb-4425-8aaf-faf0079f4dba") + (uuid "de51ed7d-1869-46c0-a8d7-817484871b6a") ) (segment - (start 149.180415 60.319) - (end 145.12141 56.259999) + (start 153.55 60.75) + (end 153.119 60.319) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D7") - (uuid "87f01138-374a-4e6e-800d-08abd2a69f00") + (uuid "fc16427d-e399-4613-93c1-66bdd772a5ef") ) (segment - (start 145.12141 56.259999) - (end 140.848148 56.259999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D7") - (uuid "fc405f2b-bab9-4320-b6f4-fa79b817b5eb") - ) - (segment - (start 149.014729 60.719) - (end 150.617628 60.719) + (start 140.074949 57.96) + (end 140.07995 57.96) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D6") - (uuid "523b92b5-7417-4bbd-9f88-69242d938df4") + (uuid "326bed72-b3e3-48ce-9281-89420e71245f") ) (segment - (start 138.8875 58.786335) - (end 141.013836 56.659999) + (start 138.8875 59.14745) + (end 140.074949 57.96) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D6") - (uuid "88511223-f18d-42f6-ad08-203d462b5858") + (uuid "40b7a79b-fceb-4a09-a559-a30bc9af967c") ) (segment - (start 144.955725 56.659999) + (start 145.425726 57.13) (end 149.014729 60.719) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D6") - (uuid "b28e2592-7f67-477e-b82b-198ce72d166f") + (uuid "5054f3d0-0843-4604-b4aa-744594d4bc79") ) (segment - (start 150.617628 60.719) - (end 152.341739 62.443111) + (start 140.07995 57.96) + (end 140.909949 57.13) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D6") - (uuid "cfce814a-bd00-403d-9ada-da6db4763a83") + (uuid "5627f003-968a-4a6b-a1a8-5b9b22dbe004") ) (segment - (start 152.341739 62.443111) + (start 149.014729 60.719) + (end 150.010739 60.719) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D6") + (uuid "60388f1b-b8e5-46c5-bc3d-6776a22d5352") + ) + (segment + (start 138.8875 59.8875) + (end 138.8875 59.14745) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D6") + (uuid "84aa8887-ce19-4250-b8d3-eccdd3ebde45") + ) + (segment + (start 140.909949 57.13) + (end 145.425726 57.13) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D6") + (uuid "db96bb4c-4907-4917-b9f8-2754e87f235d") + ) + (segment + (start 150.010739 60.719) (end 152.341739 63.05) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D6") - (uuid "d38274fd-3c46-4edf-b670-83c7c2d23123") + (uuid "f3b0e516-67ec-49ca-a461-73aa9ec4b2f5") ) (segment - (start 138.8875 59.8875) - (end 138.8875 58.786335) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "db53de80-6e70-4cca-9c50-329b8cd894ba") - ) - (segment - (start 141.013836 56.659999) - (end 144.955725 56.659999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D6") - (uuid "ecd57aab-9b32-4394-900f-dc5239c6c49f") - ) - (segment - (start 150.45294 61.12) - (end 148.848629 61.12) + (start 141.054924 57.48) + (end 139.3875 59.147425) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "02de6d91-6f33-4fa3-ac93-a589d3672a8b") + (uuid "145ee406-98cf-4ded-b8a5-ac87e0c22949") ) (segment - (start 151.889853 63.55) - (end 151.604239 63.264386) + (start 152.341739 63.55) + (end 149.56 63.55) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "2a562fbc-a96d-4bb9-896c-c7fae952f520") + (uuid "59768837-61e9-4801-87fb-4e0eeb623ead") ) (segment - (start 151.466471 62.133529) - (end 150.45294 61.12) + (start 149.56 63.55) + (end 148.98 62.97) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "4ca85f6a-90a3-4b99-9eb0-ae23262502a1") + (uuid "5a804645-2af2-4766-9f43-5741d5928bfb") ) (segment - (start 144.789625 57.060999) - (end 141.179936 57.060999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "54383171-7623-431f-a8e6-0019f22b2351") - ) - (segment - (start 148.848629 61.12) - (end 144.789625 57.060999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "67f46670-9717-4780-a7c1-63d79bf3cf71") - ) - (segment - (start 139.3875 58.853435) + (start 139.3875 59.147425) (end 139.3875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "756e1aa9-0dc0-40b2-bfe0-a077ba3e3a76") + (uuid "83781f8f-e6c4-4897-8e1c-f4f796a33c25") ) (segment - (start 151.604239 63.264386) - (end 151.604239 62.288455) + (start 148.98 61.251374) + (end 145.208626 57.48) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "808592d9-fdfc-42bf-abc4-a6a11c1e8e07") + (uuid "894c1c1f-6787-4732-891d-355a9fcc7c9f") ) (segment - (start 151.466471 62.150686) - (end 151.466471 62.133529) + (start 145.208626 57.48) + (end 141.054924 57.48) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "899bc6d7-376d-424f-b601-a7fab8b8a307") + (uuid "a1cb9425-6871-4c46-a8ea-f8e421c2d292") ) (segment - (start 151.604239 62.288455) - (end 151.466471 62.150686) + (start 148.98 62.97) + (end 148.98 61.251374) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D5") - (uuid "9110345e-888e-4dd9-9cfa-ada5d1cb9de5") + (uuid "acb6b668-535c-42aa-b73e-344aa1a06f48") ) (segment - (start 152.341739 63.55) - (end 151.889853 63.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "930e000c-6d34-4697-a051-3d75128e4fa3") - ) - (segment - (start 141.179936 57.060999) - (end 139.3875 58.853435) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D5") - (uuid "cf28d005-441f-42d4-b230-a4a5c9152ee0") - ) - (segment - (start 151.204239 63.430071) - (end 151.204239 62.45414) + (start 144.992941 57.83) + (end 141.199899 57.83) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D4") - (uuid "1f4c61d4-7b79-4748-8290-5f223282f9e0") + (uuid "0554000d-3b40-4f6e-b2d4-ca55e60e8650") ) (segment - (start 150.287255 61.52) - (end 148.682943 61.52) + (start 141.199899 57.83) + (end 139.8875 59.142399) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D4") - (uuid "25374c31-12e6-4f86-9daa-7e927472aca4") + (uuid "0a0b2864-3241-4cef-b212-148897f8a9d2") ) (segment - (start 139.8875 58.919121) + (start 152.341739 64.05) + (end 149.565026 64.05) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D4") + (uuid "29c8d390-9ff0-4183-af02-3b75660eee8a") + ) + (segment + (start 148.63 61.467058) + (end 144.992941 57.83) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D4") + (uuid "398b55b4-9e0e-491d-becc-55ed5ea0f9a1") + ) + (segment + (start 139.8875 59.142399) (end 139.8875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D4") - (uuid "28249125-645b-4f52-8f21-37d79aafb55f") + (uuid "4240361b-95c4-4c9d-928e-43e571766308") ) (segment - (start 151.824167 64.05) - (end 151.204239 63.430071) + (start 148.63 63.114974) + (end 148.63 61.467058) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D4") - (uuid "362f198e-3dcd-497a-bd87-d6bfdf334266") + (uuid "5fbe91f4-5399-45b6-9e4b-35a781b1b9d0") ) (segment - (start 141.345622 57.460999) - (end 139.8875 58.919121) + (start 149.565026 64.05) + (end 148.63 63.114974) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D4") - (uuid "977e7ae7-4f6f-4ebc-8dc9-d481b4bf2caa") + (uuid "ab2614da-2206-4e39-9810-7b47f5ddd793") ) (segment - (start 144.62394 57.460999) - (end 141.345622 57.460999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "9ff81d18-7687-4a5f-b591-a50c8c24ac76") - ) - (segment - (start 148.682943 61.52) - (end 144.62394 57.460999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "b6544ce8-6dfe-4e27-b135-7f09f5cc578c") - ) - (segment - (start 151.02 62.252744) - (end 150.287255 61.52) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "c249b4ef-71ac-4fbb-8906-34c1faa43a46") - ) - (segment - (start 151.204239 62.45414) - (end 151.02 62.2699) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "de4d7926-986a-4939-b009-21467ee91cc0") - ) - (segment - (start 151.02 62.2699) - (end 151.02 62.252744) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "e276eed9-67b5-4adf-98d5-d09c5840c4e4") - ) - (segment - (start 152.341739 64.05) - (end 151.824167 64.05) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D4") - (uuid "e373d155-f562-42c1-9b02-d0489f5d8d82") - ) - (segment - (start 150.62 62.41843) - (end 150.12157 61.92) + (start 144.777256 58.18) + (end 141.344874 58.18) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "038e8c7c-4531-497c-ade4-f3a4e3a0fdd3") + (uuid "17fbc26f-87cc-4a34-92e9-1ad0915ac42c") ) (segment - (start 150.804239 63.595756) - (end 150.804239 62.619825) + (start 149.570052 64.55) + (end 148.28 63.259948) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "270a4d31-5b73-420a-ad9c-1d2f7cbc9901") + (uuid "1e427b09-a3a6-4da1-9753-dd7a71c097ca") ) (segment - (start 140.3875 58.984807) + (start 140.3875 59.137374) (end 140.3875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "57657bca-5e58-4179-ac11-ae739dd6b2c4") + (uuid "2ec1f5c4-7083-4eba-b3a0-f1a7d8a85fb0") ) (segment - (start 150.62 62.435585) - (end 150.62 62.41843) + (start 141.344874 58.18) + (end 140.3875 59.137374) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "61b5988c-022e-4133-a427-a8890f10dcd6") + (uuid "354586b9-f1a5-4b4c-9083-bc63f8ba8662") ) (segment - (start 150.804239 62.619825) - (end 150.62 62.435585) + (start 148.28 63.259948) + (end 148.28 61.682744) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "62762095-3d03-4873-90ee-fe0ec93f8c61") + (uuid "4c74580b-c5fe-4c09-978f-8b9994a3924b") ) (segment - (start 141.511308 57.860999) - (end 140.3875 58.984807) + (start 148.28 61.682744) + (end 144.777256 58.18) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "997d403d-3565-450e-9f31-897fc2e6cca2") - ) - (segment - (start 151.758482 64.55) - (end 150.804239 63.595756) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "b315b1a0-6ca2-41e7-9256-d598ac99fb88") - ) - (segment - (start 150.12157 61.92) - (end 148.517256 61.92) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "b9e4b9ba-b1a1-4699-ac88-ab2f1c1f7941") - ) - (segment - (start 148.517256 61.92) - (end 144.458255 57.860999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "cc62697c-c314-46f8-a79d-a7d8c5984a2d") - ) - (segment - (start 144.458255 57.860999) - (end 141.511308 57.860999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D3") - (uuid "ceee48eb-36fe-49a2-a58a-e7f681a1b26f") + (uuid "65146bf0-3c1a-4465-9157-2309a9b57c62") ) (segment (start 152.341739 64.55) - (end 151.758482 64.55) + (end 149.570052 64.55) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D3") - (uuid "d1bc2dff-6538-48c3-ad6e-1aa7ae732066") + (uuid "ccd62a53-75ad-4835-ae3d-b8c0f0b8353a") + ) + (via + (at 152.581741 65.05) + (size 0.4) + (drill 0.2) + (layers "F.Cu" "B.Cu") + (free yes) + (net "/fpga/VCCPLL_F") + (uuid "45ffa5c9-c21d-4f1d-bc52-d6ae20220d48") ) (segment - (start 140.8875 59.050492) + (start 151.1 64.66) + (end 151.49 65.05) + (width 0.2) + (layer "B.Cu") + (net "/fpga/VCCPLL_F") + (uuid "2ad1c25d-d9a9-4578-8299-88e761a10f19") + ) + (segment + (start 151.1 64.075) + (end 151.1 64.66) + (width 0.2) + (layer "B.Cu") + (net "/fpga/VCCPLL_F") + (uuid "412cfbca-d089-4ab7-8980-3ddb37478c56") + ) + (segment + (start 151.49 65.05) + (end 152.581741 65.05) + (width 0.2) + (layer "B.Cu") + (net "/fpga/VCCPLL_F") + (uuid "50df705a-f629-4467-b5db-5147b6b99170") + ) + (segment + (start 151.225 65.05) + (end 152.581741 65.05) + (width 0.2) + (layer "B.Cu") + (net "/fpga/VCCPLL_F") + (uuid "be6690a3-0719-4673-833d-4793499b84eb") + ) + (segment + (start 151.11 65.165) + (end 151.225 65.05) + (width 0.2) + (layer "B.Cu") + (net "/fpga/VCCPLL_F") + (uuid "e46dfabe-ff8a-4b72-b25e-c596b2da1d0e") + ) + (segment + (start 150.13 64.075) + (end 151.1 64.075) + (width 0.2) + (layer "B.Cu") + (net "/fpga/VCCPLL_F") + (uuid "e84c4dfb-9ba4-4bbe-8850-768cb9c9d7c1") + ) + (segment + (start 147.93 61.91) + (end 144.55 58.53) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D2") + (uuid "09d2a9ad-a8c6-4cfa-8f48-5610c49113e1") + ) + (segment + (start 141.489849 58.53) + (end 140.8875 59.13235) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D2") + (uuid "0d02c551-ab1a-4b37-ad37-1c93d4f2e455") + ) + (segment + (start 152.341739 66.05) + (end 149.599948 66.05) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D2") + (uuid "3a53ee54-5b63-46f0-be1a-58350ac45e39") + ) + (segment + (start 140.8875 59.13235) (end 140.8875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D2") - (uuid "03208f19-ff52-416a-bd49-3c2aba5bf9c6") + (uuid "409859a9-c5bc-4c5f-a050-5a41832b399c") ) (segment - (start 148.714738 67.0075) - (end 148.43 66.722762) + (start 147.93 64.380052) + (end 147.93 61.91) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D2") - (uuid "162395ed-8391-4f50-9da9-5726ab271f25") + (uuid "5ddc692e-3baa-4a3d-8f2f-0eefa6a0d63e") ) (segment - (start 152.341739 66.05) - (end 151.372472 66.05) + (start 144.55 58.53) + (end 141.489849 58.53) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D2") - (uuid "1ba0b460-b86c-40b2-bdda-3ea32ff9217f") + (uuid "6b809102-acf8-4418-b516-e4e9b581f171") ) (segment - (start 144.280999 58.260999) - (end 141.676994 58.260999) + (start 149.599948 66.05) + (end 147.93 64.380052) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D2") - (uuid "2b18ef82-b9b4-4f2e-8f4f-f1aea2b182ee") + (uuid "d32ea9a9-ff56-4190-83a1-efd66c4b90d5") ) (segment - (start 150.414972 67.0075) - (end 148.714738 67.0075) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "42eb77aa-d954-4747-bf0d-d868cd12b8c0") - ) - (segment - (start 148.429999 62.409999) - (end 144.280999 58.260999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "56b5e813-c189-4ee4-9f01-de35de812b03") - ) - (segment - (start 148.43 66.722762) - (end 148.429999 62.409999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "7d881eb1-3203-47b3-96c6-4bcec683b336") - ) - (segment - (start 151.372472 66.05) - (end 150.414972 67.0075) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "9c7337fd-4b53-45cd-af4f-4da134f96349") - ) - (segment - (start 141.676994 58.260999) - (end 140.8875 59.050492) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D2") - (uuid "f97383a8-0ba4-41db-9749-b512205fccd3") - ) - (segment - (start 148.03 66.888447) - (end 148.029999 62.575685) + (start 149.604974 66.55) + (end 147.58 64.525026) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D1") - (uuid "25d0784a-bd44-464e-8697-d780723b3ab9") + (uuid "020a49b9-3511-4cb6-b6a6-414afd3df5b3") ) (segment - (start 151.438158 66.55) - (end 150.580657 67.4075) + (start 147.58 64.525026) + (end 147.58 62.125686) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D1") - (uuid "2848ffaa-0469-49e2-9181-0c681c7e3cf8") + (uuid "a552eb2e-b553-41d8-98cc-aaae67f005b4") ) (segment - (start 141.3875 59.11759) + (start 147.58 62.125686) + (end 144.334314 58.88) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D1") + (uuid "bb309cc0-6f80-4c46-ba13-58e65a513edc") + ) + (segment + (start 152.341739 66.55) + (end 149.604974 66.55) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D1") + (uuid "ca0162b9-72fa-4ffb-b634-e220764a1775") + ) + (segment + (start 141.634824 58.88) + (end 141.3875 59.127325) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D1") + (uuid "d1f67735-f95f-466b-8316-f876045e0d85") + ) + (segment + (start 144.334314 58.88) + (end 141.634824 58.88) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D1") + (uuid "d5c12c19-a7b1-4868-a316-dc96e04cbffd") + ) + (segment + (start 141.3875 59.127325) (end 141.3875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D1") - (uuid "3317c8a1-9572-4b0b-8714-875f4f45ecee") + (uuid "f3973808-80c9-4767-aac3-b0b2bbf8ccf3") ) (segment - (start 144.124314 58.67) - (end 141.83509 58.67) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "80a0c591-a725-46a3-9873-0add1003a7ff") - ) - (segment - (start 150.580657 67.4075) - (end 148.549052 67.4075) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "93b0ea9d-40c8-45e7-a929-c8bf7ba0709b") - ) - (segment - (start 141.83509 58.67) - (end 141.3875 59.11759) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "a36118ff-14bf-4304-aa76-eda196269030") - ) - (segment - (start 152.341739 66.55) - (end 151.438158 66.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "b8f4f19a-1d29-4a1b-b632-20e2bbab0837") - ) - (segment - (start 148.549052 67.4075) - (end 148.03 66.888447) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "c07d47f5-c9e8-41eb-b790-7759c9c58975") - ) - (segment - (start 148.029999 62.575685) - (end 144.124314 58.67) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D1") - (uuid "f7d8bf24-6524-4b0e-8d4c-c462e1059a4f") - ) - (segment - (start 147.629999 67.729999) - (end 147.629999 62.741371) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "0017e1c2-ee5a-4056-9df8-7f09e9a35e9c") - ) - (segment - (start 151.204239 68.21102) - (end 150.975 68.440259) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "0fde617e-4f51-459f-8a47-6f9d8b142bac") - ) - (segment - (start 151.824167 67.55) - (end 151.204239 68.169929) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "128d806f-3b52-4922-bd6d-f81c3bf6977c") - ) - (segment - (start 151.204239 68.169929) - (end 151.204239 68.21102) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "30640a87-813b-4524-8fe3-612bb44946b5") - ) - (segment - (start 150.712762 68.71) - (end 150.705259 68.71) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "5bfb619c-0a73-4bff-9c33-33dd746adea9") - ) - (segment - (start 142.009 59.071) - (end 141.8875 59.1925) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "5e2a8dba-de98-4bdb-9c82-3dbfb861e1e9") - ) - (segment - (start 150.975 68.447762) - (end 150.712762 68.71) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "64c2e271-0cd2-4e13-97f9-f2e3e279b2d8") - ) - (segment - (start 143.959628 59.071) - (end 142.009 59.071) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "6532a9de-8d9a-4af0-be83-184e9d31f37d") - ) - (segment - (start 150.515259 68.9) - (end 148.8 68.9) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "81d9704c-0880-4f04-a535-9d841c882e01") - ) - (segment - (start 148.8 68.9) - (end 147.629999 67.729999) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "847c6694-0634-477f-b0cd-848c6842bca1") - ) - (segment - (start 152.341739 67.55) - (end 151.824167 67.55) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "9f7c852a-2552-4e3a-9fcd-fcaca928dc62") - ) - (segment - (start 147.629999 62.741371) - (end 143.959628 59.071) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "b8f06570-f1fa-435d-a981-b6444c222076") - ) - (segment - (start 150.975 68.440259) - (end 150.975 68.447762) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_D0") - (uuid "bf489354-82fb-4823-bb26-b47e10f15441") - ) - (segment - (start 141.8875 59.1925) + (start 142.545 59.23) (end 141.8875 59.8875) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D0") - (uuid "da722cd9-706c-4e00-a58b-e6b508c888ca") + (uuid "020055b9-d361-48f1-9d8b-ce03e62075ad") ) (segment - (start 150.705259 68.71) - (end 150.515259 68.9) + (start 151.90424 67.55) + (end 151.37424 68.08) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_D0") - (uuid "e08e00c1-cfd8-4b13-ae50-8bda49bcafa7") + (uuid "04e94220-cbe0-419f-afad-9dde8742f84a") ) (segment - (start 151.889853 68.05) - (end 151.604239 68.335614) + (start 147.23 62.341372) + (end 144.118628 59.23) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D0") + (uuid "1f7df4ff-6382-41b1-8a64-ab6943db4cc5") + ) + (segment + (start 152.341739 67.55) + (end 151.90424 67.55) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D0") + (uuid "50a90366-f406-433e-bf79-4acc7c4d3ccf") + ) + (segment + (start 151.37424 68.08) + (end 150.64 68.08) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D0") + (uuid "64168d96-791f-4d42-87d5-4c31e5de5797") + ) + (segment + (start 150.64 68.08) + (end 147.23 64.67) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D0") + (uuid "83dd3a00-d536-4e8d-a9ba-3fb0a49af7e5") + ) + (segment + (start 147.23 64.67) + (end 147.23 62.341372) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D0") + (uuid "ae89be94-4f89-4416-82a5-9782217ee60e") + ) + (segment + (start 144.118628 59.23) + (end 142.545 59.23) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_D0") + (uuid "e9fbd50e-aaad-4847-bb74-62e7c55339dc") + ) + (segment + (start 151.654239 68.743674) + (end 151.67 68.759435) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "19170c74-56e5-4f03-a1d5-ad5a8801132a") + (uuid "2d725d38-50b6-4b90-ade2-5494165ffb2a") ) (segment - (start 147.461521 69.4) - (end 146.73 68.668479) + (start 150.19 69.4) + (end 146.53 65.74) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "19a66277-5673-407e-9e78-807d665ff9a2") + (uuid "2e3288ca-00d6-484e-a111-070380cf48c2") ) (segment - (start 146.73 68.668479) - (end 146.73 63.145686) + (start 143.079116 60.209114) + (end 143.079116 59.78) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "1a9b0ded-0388-49b2-9f34-d44be014f5d6") + (uuid "2eebf3f9-9f6d-47c9-913a-1427a1803157") ) (segment - (start 150.580945 69.4) - (end 147.461521 69.4) + (start 151.67 68.857818) + (end 151.654239 68.873579) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "2712ba70-b98f-4795-9d18-f3daad9dc13f") + (uuid "4724efcf-f3e7-4b8d-b7bb-92de14e75273") ) (segment - (start 143.460002 60.59) - (end 143.079116 60.209114) + (start 151.2 69.4) + (end 150.19 69.4) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "38901b4d-6c7c-432d-b5af-12c506927521") - ) - (segment - (start 136.8875 59.09005) - (end 137.309165 58.668385) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "3dc4b80b-6dc8-4722-9edd-8f1db12c40a2") + (uuid "4a4a7dc8-28b7-4f8c-b56f-67e1f7ad2bc1") ) (segment (start 144.174314 60.59) @@ -32953,98 +37940,106 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "4645595a-ca5e-41b4-a2bf-21d1ad4741d2") + (uuid "5f7e2140-7333-4e97-9c1c-82c5d04687c0") ) (segment - (start 150.870945 69.11) - (end 150.580945 69.4) + (start 136.8875 59.138485) + (end 137.355985 58.67) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "49b2fcbe-0ce5-4b02-80e3-7eef78b1728d") + (uuid "625c42e3-bd69-4d8a-98aa-749611114c63") + ) + (segment + (start 151.654239 68.873579) + (end 151.654239 68.945761) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_INT") + (uuid "6b79bb60-87b5-4d00-aca8-894845508db9") + ) + (segment + (start 143.460002 60.59) + (end 143.079116 60.209114) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_INT") + (uuid "8538ff88-7473-4e8b-b876-a652f68f32e0") + ) + (segment + (start 151.67 68.759435) + (end 151.67 68.857818) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_INT") + (uuid "8b7ea5bf-3444-4c17-86d9-e388f98c2d4b") + ) + (segment + (start 151.90424 68.05) + (end 151.654239 68.300001) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_INT") + (uuid "92c237ed-3993-44df-b992-958d9b410948") + ) + (segment + (start 137.355985 58.67) + (end 137.646803 58.67) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_INT") + (uuid "9a34c8d2-e8bd-4e40-b113-3469e75942fb") ) (segment (start 152.341739 68.05) - (end 151.889853 68.05) + (end 151.90424 68.05) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "49e9e0b8-95d5-4a6a-8f90-8cfc39841ccf") + (uuid "a5e7f7c4-2f98-4956-ad8f-f90a8aeeafb6") ) (segment - (start 151.604239 68.376706) - (end 151.375 68.605945) + (start 151.654239 68.945761) + (end 151.2 69.4) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "63ab7aef-a8ac-4000-935c-12729656b7fa") - ) - (segment - (start 137.309165 58.668385) - (end 137.646803 58.668385) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "68babf06-0b1a-4375-9b3a-ebdc2d614d4e") + (uuid "abeb2f8a-0911-4e26-bbd9-b6a65e475d2f") ) (segment (start 136.8875 59.8875) - (end 136.8875 59.09005) + (end 136.8875 59.138485) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "77d35a60-fc1d-4564-821c-6296908c4595") + (uuid "c0a37e98-786c-4e88-a1b4-2d43452cfc33") ) (segment - (start 150.878447 69.11) - (end 150.870945 69.11) + (start 151.654239 68.300001) + (end 151.654239 68.743674) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "7ba722d4-3ef8-4357-abea-af38a4e70e17") + (uuid "c15ea8c5-60d2-4fa5-ba8e-e964141babb2") ) (segment - (start 143.079116 60.209114) - (end 143.079116 59.703735) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "8459d7fe-c265-4fc8-b29e-8a5de56b496e") - ) - (segment - (start 151.375 68.613448) - (end 150.878447 69.11) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "8daa606c-5db1-4ad4-947d-79a6376430a4") - ) - (segment - (start 151.604239 68.335614) - (end 151.604239 68.376706) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_INT") - (uuid "a1c93d39-d982-4171-9af5-f30d290b3276") - ) - (segment - (start 146.73 63.145686) + (start 146.53 62.945686) (end 144.174314 60.59) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "a7695629-0866-4e12-9db2-cd15eb58b0c0") + (uuid "cea4ec4f-87fb-4851-9c5e-960af0650009") ) (segment - (start 151.375 68.605945) - (end 151.375 68.613448) + (start 146.53 65.74) + (end 146.53 62.945686) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_INT") - (uuid "ca5a2441-5e89-4a51-b285-e43b464ae88a") + (uuid "df777ef7-6f7b-4dc5-b3d8-3ca994b95512") ) (via - (at 143.079116 59.703735) + (at 143.079116 59.78) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -33052,7 +38047,7 @@ (uuid "baba3463-e39f-4aca-8ea6-e07a1ae370af") ) (via - (at 137.646803 58.668385) + (at 137.646803 58.67) (size 0.6) (drill 0.3) (layers "F.Cu" "B.Cu") @@ -33060,36 +38055,76 @@ (uuid "e79569aa-5333-43c2-98a9-8b6e05310866") ) (segment - (start 142.218385 58.668385) - (end 137.646803 58.668385) + (start 142.22 58.67) + (end 137.646803 58.67) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_INT") - (uuid "147deb3a-136d-4fdc-8a5c-2b36074ef27c") + (uuid "29fc6282-7504-4ab8-9ff5-5297d0924530") ) (segment - (start 143.079116 59.703735) + (start 143.079116 59.529116) + (end 142.22 58.67) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/ETH_INT") + (uuid "3cfbb68f-8cb6-49cd-be45-946f4c0f8ace") + ) + (segment + (start 143.079116 59.78) (end 143.079116 59.529116) (width 0.2) (layer "B.Cu") (net "/ethernet/ETH_INT") - (uuid "1d0ff5cf-f9a1-453e-8ce8-261f0fe20125") + (uuid "ede4731b-e060-44bf-83dd-067c9d1750cc") ) (segment - (start 143.079116 59.529116) - (end 142.218385 58.668385) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/ETH_INT") - (uuid "b33b0183-6b38-4b8a-840c-dcdf9fb7cd7c") - ) - (segment - (start 152.341739 68.55) - (end 151.091739 69.8) + (start 151.294974 69.8) + (end 150.089896 69.8) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_WR") - (uuid "2427f232-c4a6-44f1-a21c-1936d347b5a0") + (uuid "154b9915-5877-4cd6-bc7c-d677f281760c") + ) + (segment + (start 152.341739 68.55) + (end 152.341739 68.753235) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_WR") + (uuid "1bde3aaa-9366-4191-ad6b-03025444c8c6") + ) + (segment + (start 150.089896 69.8) + (end 146.18 65.890104) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_WR") + (uuid "2afebba9-38f7-4e24-87fc-c9ac51009717") + ) + (segment + (start 146.18 63.162943) + (end 144.817057 61.8) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_WR") + (uuid "4376e89d-aef7-4c6e-af3e-e735382d0c9f") + ) + (segment + (start 146.18 65.890104) + (end 146.18 63.162943) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_WR") + (uuid "4751d37d-1907-4a23-9c96-630093ef61f9") + ) + (segment + (start 152.341739 68.753235) + (end 151.294974 69.8) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_WR") + (uuid "4d0c94c6-55c1-49bd-8397-9178efed30c7") ) (segment (start 144.817057 61.8) @@ -33097,71 +38132,7 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_WR") - (uuid "4c019f6b-94c3-4241-bb03-5afbbed7c5d9") - ) - (segment - (start 146.329999 63.312942) - (end 144.817057 61.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "54881917-206a-4f93-9dad-29ed030ee459") - ) - (segment - (start 151.091739 69.8) - (end 147.295835 69.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "becfe579-f83a-4627-8d42-363841352b5a") - ) - (segment - (start 146.33 68.834165) - (end 146.329999 63.312942) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "d5012593-bd02-4ffc-9def-06f3babba5cc") - ) - (segment - (start 147.295835 69.8) - (end 146.33 68.834165) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_WR") - (uuid "ea140217-6cc4-4e18-948f-765f4cf12dec") - ) - (segment - (start 145.93 63.478628) - (end 144.751372 62.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "02903748-d5ca-443a-af86-39f55bb96d26") - ) - (segment - (start 153.029239 69.2375) - (end 152.066739 70.2) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "50f4e17a-7c6b-48ef-9f65-ccc771ba24cf") - ) - (segment - (start 145.93 68.999851) - (end 145.93 63.478628) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "83a809da-2ca8-43e1-8329-4e886f6fd381") - ) - (segment - (start 147.130149 70.2) - (end 145.93 68.999851) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_RD") - (uuid "c39bad3f-2b29-42e3-b41f-f9bdd1c3f2b9") + (uuid "b54c5648-b0de-4512-9b01-85567345f75a") ) (segment (start 144.751372 62.3) @@ -33169,47 +38140,63 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RD") - (uuid "de21adab-513c-4b54-b7e5-28c3ec8b9245") + (uuid "43e9934f-4a02-4bb9-88b3-a10a279bbeb0") ) (segment - (start 152.066739 70.2) - (end 147.130149 70.2) + (start 145.83 63.378628) + (end 144.751372 62.3) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_RD") - (uuid "f4df76d0-b165-43ff-bd9a-c783eeed7abc") + (uuid "5940b369-f41c-46c5-8e22-ffd53556493a") + ) + (segment + (start 149.994922 70.2) + (end 145.83 66.035078) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RD") + (uuid "7ed30a22-5baf-4bc5-b080-37a8cb01bccf") + ) + (segment + (start 152.066739 70.2) + (end 149.994922 70.2) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RD") + (uuid "941ad73d-cbbe-43a8-8fd6-6bd03fc4d883") + ) + (segment + (start 145.83 66.035078) + (end 145.83 63.378628) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RD") + (uuid "a1b73aa7-b452-4e44-9efe-79cc6b743477") + ) + (segment + (start 153.029239 69.2375) + (end 152.066739 70.2) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_RD") + (uuid "dfddd936-2007-474d-aba6-e54deb5c4b39") + ) + (segment + (start 149.899947 70.599999) + (end 145.48 66.180052) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_A1") + (uuid "1f4a7fb1-c16a-4ac3-97e3-97f85c2ccce2") ) (segment (start 152.618625 70.6) - (end 146.964463 70.599999) + (end 149.899947 70.599999) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A1") - (uuid "0dce1db1-7f9b-45d0-a0af-6f52ea855533") - ) - (segment - (start 144.685686 62.8) - (end 143.3 62.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "2ce86529-6219-43f7-8b8f-1b2868d91819") - ) - (segment - (start 153.529239 69.2375) - (end 153.529239 69.689386) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "3ea80ac2-e187-4f36-adc8-93a9dc253fd4") - ) - (segment - (start 145.53 69.165536) - (end 145.53 63.644314) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A1") - (uuid "548e0ab4-6784-403c-ac86-e8c322b7b9b6") + (uuid "29c26d92-0326-4b08-9c48-9f38cf423025") ) (segment (start 153.529239 69.689386) @@ -33217,63 +38204,47 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A1") - (uuid "8e6c3ea7-810f-49bb-afbc-2301fe106abd") + (uuid "931ad679-dde1-4af6-b15d-7062760400da") ) (segment - (start 146.964463 70.599999) - (end 145.53 69.165536) + (start 145.48 66.180052) + (end 145.48 63.594314) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A1") - (uuid "ab673c0f-0053-486d-88ea-4f19eaf2d53e") + (uuid "98fb20c9-2474-43c7-96bc-35e544c3fa83") ) (segment - (start 145.53 63.644314) + (start 145.48 63.594314) (end 144.685686 62.8) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A1") - (uuid "d42b3735-f821-414e-8021-50ffe9c51a5a") + (uuid "9ec55471-1331-4db9-a515-098310649f5b") ) (segment - (start 152.784725 71.001) - (end 146.798367 71.001) + (start 153.529239 69.2375) + (end 153.529239 69.689386) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_A1") + (uuid "f19eab58-46fe-4e59-80b8-4ca9e1b269fe") + ) + (segment + (start 144.685686 62.8) + (end 143.3 62.8) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_A1") + (uuid "f870b0e4-fcaf-4c03-8969-23213aaf38c0") + ) + (segment + (start 145.129 64.565126) + (end 145.129 63.809) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A0") - (uuid "15cce20b-a697-4dba-8755-abfbffde4450") - ) - (segment - (start 152.985725 70.8) - (end 152.784725 71.001) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "1b8a32d1-b006-49a6-954f-cdb70ba90fc2") - ) - (segment - (start 145.13 63.81) - (end 144.62 63.3) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "22c49256-fbfe-48e2-8cb2-cd1835547e26") - ) - (segment - (start 155.529239 69.689386) - (end 154.418625 70.8) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "5a53522e-5c55-40af-a60d-f602200f0398") - ) - (segment - (start 155.529239 69.2375) - (end 155.529239 69.689386) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_A0") - (uuid "78f0fb2f-d8e4-4ced-94b4-2915eefe2c6c") + (uuid "2af284eb-c925-43a1-8c08-ef1250aa631f") ) (segment (start 144.62 63.3) @@ -33281,39 +38252,63 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A0") - (uuid "8a7b9b07-45e4-4e95-a70c-c255ad72e022") + (uuid "713186a9-22eb-46aa-bdf8-9fdf51c36d6b") ) (segment - (start 145.13 69.332633) - (end 145.13 63.81) + (start 145.13 64.566126) + (end 145.129 64.565126) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A0") - (uuid "a68448e6-9d39-4170-a373-faa4010bbee7") + (uuid "99b6049b-477f-4a17-8649-fa4cc0db214d") ) (segment - (start 154.418625 70.8) - (end 152.985725 70.8) + (start 155.529239 69.2375) + (end 155.529239 69.689386) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A0") - (uuid "dcc14a98-92ae-4987-8a17-2186ac91a9e8") + (uuid "a388f60f-a51f-4b28-9b69-0574040c29a1") ) (segment - (start 146.798367 71.001) - (end 145.13 69.332633) + (start 149.805974 71.001) + (end 145.13 66.325026) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_A0") - (uuid "ef8bdf7e-9293-466f-a4e5-53b0e4def674") + (uuid "afe3ff55-79e8-40c2-932b-ea0846d2aaa8") ) (segment - (start 146.632267 71.402) - (end 152.950825 71.402) + (start 145.129 63.809) + (end 144.62 63.3) (width 0.2) (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "3b50ad79-1475-4709-845d-d1ba9068a816") + (net "/ethernet/ETH_A0") + (uuid "cd1a79f7-3f07-4541-9892-125594f2f5c4") + ) + (segment + (start 155.529239 69.689386) + (end 154.217625 71.001) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_A0") + (uuid "da58f810-e86e-42b4-97c4-2801644151f1") + ) + (segment + (start 145.13 66.325026) + (end 145.13 64.566126) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_A0") + (uuid "e4db8986-7d20-4675-9674-d1d7577a94c8") + ) + (segment + (start 154.217625 71.001) + (end 149.805974 71.001) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_A0") + (uuid "e7a009dd-4a8e-49f8-a6ab-dfe46b167733") ) (segment (start 144.45 64.8) @@ -33321,7 +38316,7 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_CS") - (uuid "3e5cae49-bb38-4853-964d-340f36f3169c") + (uuid "1adf65b8-a7d6-4582-a4aa-b49dbf4fb916") ) (segment (start 156.029239 69.756486) @@ -33329,47 +38324,23 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_CS") - (uuid "6c22bda6-3ca0-415b-8502-91f48a48daa5") + (uuid "2386ab35-443e-4d6d-a9a0-1cd40bcdab1f") ) (segment - (start 154.584725 71.201) - (end 156.029239 69.756486) + (start 149.712 71.402) + (end 154.383725 71.402) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_CS") - (uuid "7ac5c9ba-9e2d-460e-9919-2a249c1d3e74") + (uuid "50a3a24c-86e9-4012-a448-5958670299ce") ) (segment (start 144.73 65.08) - (end 144.73 69.499733) + (end 144.73 66.42) (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_CS") - (uuid "a7c1bb6f-3041-4816-8909-4df1c393bb4b") - ) - (segment - (start 153.151825 71.201) - (end 154.584725 71.201) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "b0fd3443-68aa-4f28-986a-da7b0beedaaf") - ) - (segment - (start 144.73 69.499733) - (end 146.632267 71.402) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "c017b51c-c50a-4817-bdbf-78b71cbfb415") - ) - (segment - (start 152.950825 71.402) - (end 153.151825 71.201) - (width 0.2) - (layer "F.Cu") - (net "/ethernet/ETH_CS") - (uuid "c9e70837-e5dd-40ca-b915-c7a133cf3223") + (uuid "79d626b1-6113-4178-a642-e836714c436b") ) (segment (start 143.3 64.8) @@ -33377,7 +38348,23 @@ (width 0.2) (layer "F.Cu") (net "/ethernet/ETH_CS") - (uuid "e5dfe9af-88da-46be-abd6-9932606389e9") + (uuid "c0c36d38-94dc-4d1c-8569-e1dff8da6078") + ) + (segment + (start 154.383725 71.402) + (end 156.029239 69.756486) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_CS") + (uuid "c940756e-f3b9-4650-a23f-6b6a1cde670c") + ) + (segment + (start 144.73 66.42) + (end 149.712 71.402) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/ETH_CS") + (uuid "dc87e93a-8622-4a76-803e-722eb4040a1b") ) (segment (start 175.72 71.68) @@ -33516,36 +38503,44 @@ (uuid "ae9f0432-74b4-45d8-a296-01b93be532cc") ) (segment - (start 178.98 67.854314) - (end 175.554314 71.28) + (start 157.029239 69.7579) + (end 157.029239 69.2375) (width 0.2) (layer "F.Cu") (net "/exi/EXI_CS") - (uuid "25057c74-9934-4efa-8484-cb58b50520bc") + (uuid "00277445-af06-416a-8daf-8763a76719f3") ) (segment - (start 183.024314 57.99) + (start 158.551339 71.28) + (end 157.029239 69.7579) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_CS") + (uuid "0134161d-c1a6-4abe-90cd-764acada3f08") + ) + (segment + (start 188.030761 58.36) + (end 187.660761 57.99) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_CS") + (uuid "0dc4873d-fb83-4181-bc0c-83b408d748c4") + ) + (segment + (start 187.660761 57.99) + (end 186.824924 57.99) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_CS") + (uuid "39a3366d-fc06-4adf-bc46-208ef369f192") + ) + (segment + (start 182.664314 58.35) (end 178.98 62.034314) (width 0.2) (layer "F.Cu") (net "/exi/EXI_CS") - (uuid "580ff07d-40fb-4690-beec-cd6878f312e2") - ) - (segment - (start 189.13 58.36) - (end 188.030761 58.36) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_CS") - (uuid "68acd3d3-7939-43fe-92f8-5bdc25fa132c") - ) - (segment - (start 175.554314 71.28) - (end 158.551339 71.28) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_CS") - (uuid "6f4b6e42-34ca-420d-a686-52415f79caf9") + (uuid "57e75027-33be-4b79-8a81-79e59a57eefb") ) (segment (start 192.8 54.4) @@ -33555,6 +38550,22 @@ (net "/exi/EXI_CS") (uuid "77727144-7772-4817-b2f9-315c5c31863d") ) + (segment + (start 175.554314 71.28) + (end 158.551339 71.28) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_CS") + (uuid "80c36cbe-2f27-4508-84d8-e7f32e722ee6") + ) + (segment + (start 186.464923 58.350001) + (end 182.664314 58.35) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_CS") + (uuid "8cad25ec-56a8-4bd7-8b44-aef43476af96") + ) (segment (start 193.85 55.45) (end 192.8 54.4) @@ -33564,12 +38575,12 @@ (uuid "953f422a-7965-4831-8f8f-a6558f9879f5") ) (segment - (start 158.551339 71.28) - (end 157.029239 69.7579) + (start 189.13 58.36) + (end 188.030761 58.36) (width 0.2) (layer "F.Cu") (net "/exi/EXI_CS") - (uuid "97f14ee0-0d4d-4a5b-afb4-86d866bd9543") + (uuid "a7df0584-e9ed-4f03-84e0-9c60078f95ee") ) (segment (start 189.84924 54.4) @@ -33579,37 +38590,29 @@ (net "/exi/EXI_CS") (uuid "b21287b2-3495-4e2e-ba17-3f94fe46df79") ) - (segment - (start 157.029239 69.7579) - (end 157.029239 69.2375) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_CS") - (uuid "e05af807-00e7-4368-85d6-8eecc63088fa") - ) - (segment - (start 188.030761 58.36) - (end 187.660761 57.99) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_CS") - (uuid "e3165dcf-dc9e-4381-83cc-eac555215ccd") - ) (segment (start 178.98 62.034314) (end 178.98 67.854314) (width 0.2) (layer "F.Cu") (net "/exi/EXI_CS") - (uuid "e648adb4-9c33-4ef1-b100-35f8b548e388") + (uuid "c70006cc-4c08-4a0d-8ddf-d431ad946bc9") ) (segment - (start 187.660761 57.99) - (end 183.024314 57.99) + (start 178.98 67.854314) + (end 175.554314 71.28) (width 0.2) (layer "F.Cu") (net "/exi/EXI_CS") - (uuid "e92cda82-ee1c-4a51-9b5e-dc7f0361e014") + (uuid "e635600b-eb91-45cb-8e17-d33added905b") + ) + (segment + (start 186.824924 57.99) + (end 186.464923 58.350001) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_CS") + (uuid "fddf1092-ddad-450d-80df-701155c02a3a") ) (via (at 189.13 58.36) @@ -33651,30 +38654,6 @@ (net "/exi/EXI_CS") (uuid "eb320d10-65d5-46a8-9a35-dff64981a401") ) - (segment - (start 157.529239 69.689386) - (end 158.719853 70.88) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "06c8961a-8c2c-48ea-a653-4329f505a453") - ) - (segment - (start 186.0171 57.538) - (end 186.0191 57.54) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "17a9a64e-6318-4c0c-a270-8fdd1e9fb59a") - ) - (segment - (start 178.58 61.868628) - (end 182.910628 57.538) - (width 0.2) - (layer "F.Cu") - (net "/exi/EXI_INT") - (uuid "17c67e5b-4f79-4c3c-b033-4dedb86acea2") - ) (segment (start 200.85 59.500028) (end 199.71 60.640028) @@ -33684,20 +38663,20 @@ (uuid "22cb891b-c6b1-4c80-8811-a974248b4a80") ) (segment - (start 188.13 57.54) - (end 188.26 57.67) + (start 158.719853 70.88) + (end 175.388628 70.88) (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "2af552be-cc27-4fc6-a288-e6facb6f4823") + (uuid "34cde994-b644-44d4-abb6-7dd9e7a442c2") ) (segment - (start 186.0191 57.54) - (end 188.13 57.54) + (start 157.529239 69.2375) + (end 157.529239 69.689386) (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "6626ad01-6ee9-4c73-89a9-7ddde477109c") + (uuid "4e3870f9-1a30-45be-979d-86f10ab4a38a") ) (segment (start 178.58 67.688628) @@ -33705,15 +38684,23 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "7bcbec0d-117a-44a8-8922-c17ad5c041fa") + (uuid "6c0a38e6-9a84-438b-bbd4-47cbea7ec348") ) (segment - (start 158.719853 70.88) - (end 175.388628 70.88) + (start 186.319948 58.000001) + (end 186.779949 57.54) (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "98fb6af0-253d-4255-98df-1b15162dc9d2") + (uuid "718dd22d-e450-4a89-8889-eea6d7f858e1") + ) + (segment + (start 188.13 57.54) + (end 188.26 57.67) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_INT") + (uuid "7617e172-8137-42d1-b714-1fb792235f6e") ) (segment (start 175.388628 70.88) @@ -33721,15 +38708,23 @@ (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "99df0d9a-916b-4736-bb2d-be34de1776c5") + (uuid "7fc38942-29b5-4975-b677-7a29c464dbcc") ) (segment - (start 182.910628 57.538) - (end 186.0171 57.538) + (start 157.529239 69.689386) + (end 158.719853 70.88) (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "b864771a-bb14-400c-ae8f-3a800479f25a") + (uuid "8b9c9ce5-768d-4b9c-b5f3-ba3b579ce206") + ) + (segment + (start 182.448628 58) + (end 186.319948 58.000001) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_INT") + (uuid "c3c965c1-7582-4957-a217-099f75aee934") ) (segment (start 199.71 60.640028) @@ -33740,12 +38735,20 @@ (uuid "d05562f9-1492-48fc-ae99-4f507f4902c1") ) (segment - (start 157.529239 69.2375) - (end 157.529239 69.689386) + (start 178.58 61.868628) + (end 182.448628 58) (width 0.2) (layer "F.Cu") (net "/exi/EXI_INT") - (uuid "d7ea8553-6e02-4cf2-8d99-fa076bf42db2") + (uuid "ef217c9e-04b0-4c79-8d26-aefa21902323") + ) + (segment + (start 186.779949 57.54) + (end 188.13 57.54) + (width 0.2) + (layer "F.Cu") + (net "/exi/EXI_INT") + (uuid "fd3b71c5-b3b3-4e75-adfa-bcef0f51168f") ) (via (at 199.71 61.6) @@ -33843,6 +38846,14 @@ (net "/ethernet/1V2_ETH") (uuid "717969d1-e670-4ed1-8ade-e921507a3d22") ) + (segment + (start 138.4825 61.1825) + (end 138.5 61.1825) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/1V2_ETH") + (uuid "72c102d5-72b0-477c-94cf-914b021f95a7") + ) (segment (start 136.34 62.82) (end 136.34 63.05) @@ -33851,19 +38862,34 @@ (net "/ethernet/1V2_ETH") (uuid "9cc2a41a-61cf-4171-8908-266d38ceadbb") ) - (via - (at 137.9 59.925) - (size 0.3) - (drill 0.15) - (layers "F.Cu" "B.Cu") - (free yes) + (segment + (start 137.8875 59.8875) + (end 137.8875 60.5875) + (width 0.2) + (layer "F.Cu") (net "/ethernet/1V2_ETH") - (uuid "43333d0a-2488-44cc-8375-e70b0ec82fbb") + (uuid "cbc986df-e9d8-472c-a70e-04710e7a7ff3") + ) + (segment + (start 137.8875 60.5875) + (end 138.4825 61.1825) + (width 0.2) + (layer "F.Cu") + (net "/ethernet/1V2_ETH") + (uuid "f3a7e234-eca3-4d3d-bf72-f94f0c45a97f") ) (via - (at 136.4 68.2) - (size 0.3) - (drill 0.15) + (at 138.5 61.1825) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "1160c38a-5b89-4976-a3ec-9e886dc9889f") + ) + (via + (at 136.387499 68.212501) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/1V2_ETH") @@ -33871,8 +38897,8 @@ ) (via (at 136.34 62.82) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/1V2_ETH") @@ -33880,179 +38906,171 @@ ) (via (at 143.3 63.8) - (size 0.3) - (drill 0.15) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/1V2_ETH") (uuid "86d7d40e-7a6a-4f66-908a-dc4ca48995a3") ) (via - (at 140.9 68.25) - (size 0.3) - (drill 0.15) + (at 140.8875 68.212498) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/1V2_ETH") (uuid "980f57f7-67b0-408f-9ea5-54c827eefc5e") ) (via - (at 135 62.8) - (size 0.3) - (drill 0.15) + (at 134.974998 62.8) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "/ethernet/1V2_ETH") (uuid "e2ca4faf-d683-4e0f-8949-ce1dd21e1d91") ) (segment - (start 136.95 62.19) - (end 137.4925 62.19) + (start 141.9 63.8) + (end 140.6 62.5) (width 0.2) (layer "B.Cu") (net "/ethernet/1V2_ETH") - (uuid "0f241d48-b2f4-4c4b-a209-a82f9dbbe38b") + (uuid "103904b0-0104-4857-a160-7a0d93e19e2b") ) (segment - (start 140.9 68.25) - (end 140.9 66.915) + (start 139.43 62.5) + (end 138.5 61.57) (width 0.2) (layer "B.Cu") (net "/ethernet/1V2_ETH") - (uuid "18614a0e-c877-4491-ab86-f2f6ea63a619") + (uuid "220dccd5-6481-455e-97b7-80f2f617c6eb") ) (segment - (start 140.9 66.915) + (start 140.51 67.834998) + (end 140.8875 68.212498) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "24918ff7-ea8c-41ab-b572-43309750b67a") + ) + (segment + (start 140.85 71) + (end 140.85 68.249998) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "31519780-7f28-42d5-8c69-c1c9a1c7a253") + ) + (segment + (start 136.374998 68.2) + (end 136.387499 68.212501) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "435888a8-9fdc-4e63-9556-b431c00fcb90") + ) + (segment + (start 140.85 68.249998) + (end 140.8875 68.212498) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "447004af-8630-4ab3-a6e5-ccb8a73c0c8f") + ) + (segment + (start 138.5 61.52) + (end 137.22 62.8) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "5c908e31-792a-40a4-8810-b9888290ff23") + ) + (segment + (start 140.51 66.525) + (end 140.51 67.834998) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "6247b730-49d3-4d3d-8436-ab1d380da729") + ) + (segment + (start 138.5 61.57) + (end 138.5 61.52) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "634bfc19-e4ea-4b40-8d2c-4fdad5212018") + ) + (segment + (start 141.91 63.8) + (end 141.9 63.8) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "6f7cff67-6f79-4d87-82e9-ecd11da9354d") + ) + (segment + (start 140.6 62.5) + (end 139.43 62.5) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "743fd597-3f41-4d86-b07a-ff3e4bf8bff2") + ) + (segment + (start 137.22 62.8) + (end 134.974998 62.8) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "95b84e2f-a76a-4271-a03f-2bc7fc07b5f5") + ) + (segment + (start 141.91 63.8) + (end 140.51 65.2) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "997beff4-2867-4863-a0dc-31a582da10c5") + ) + (segment + (start 138.5 61.52) + (end 138.5 61.1825) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "a5ccc047-5d5a-4edb-b295-c988d11ed5cc") + ) + (segment + (start 143.3 63.8) + (end 141.91 63.8) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "a93b4101-c52e-45f7-b419-072a81534162") + ) + (segment + (start 136.1 68.2) + (end 136.374998 68.2) + (width 0.2) + (layer "B.Cu") + (net "/ethernet/1V2_ETH") + (uuid "cb6a6ec2-0672-44c8-a7e4-b16a21bea405") + ) + (segment + (start 140.51 65.2) (end 140.51 66.525) (width 0.2) (layer "B.Cu") (net "/ethernet/1V2_ETH") - (uuid "2aec2616-dd66-48e9-9853-11799eac3fcd") - ) - (segment - (start 139.6925 61.1825) - (end 138.5 61.1825) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "47ce9c4e-7dc6-4c5a-a3cf-09fb5a218912") - ) - (segment - (start 136.34 62.8) - (end 135 62.8) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "62b1196a-7910-4352-be6e-56bd5a831afc") - ) - (segment - (start 143.3 63.8) - (end 142.675 63.8) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "70843017-c609-4bc2-b6fc-c7511b8ca93e") - ) - (segment - (start 140.85 68.3) - (end 140.9 68.25) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "9fae60e7-bc43-4f47-b462-cc7936005af5") - ) - (segment - (start 140.85 71) - (end 140.85 68.3) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "a904d39d-17ca-4b57-a9fe-1801459a8089") - ) - (segment - (start 137.9 59.925) - (end 137.9 60.5825) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "b0636466-8979-4c65-bbde-b79515a49335") - ) - (segment - (start 137.4925 62.19) - (end 138.5 61.1825) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "b15db3a5-11b0-4045-b310-4eda964fa829") - ) - (segment - (start 142.275 63.4) - (end 141.91 63.4) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "b35c0520-d801-411a-af28-0fe4cde3bee8") - ) - (segment - (start 140.51 64.8) - (end 141.91 63.4) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "c8e30117-e8c0-4491-80e7-359b5c565577") - ) - (segment - (start 137.9 60.5825) - (end 138.5 61.1825) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "cb63d1a5-d705-48a3-be08-402d26198198") - ) - (segment - (start 140.51 66.525) - (end 140.51 64.8) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "cd0beb94-521d-491b-8c60-58bcc93239df") - ) - (segment - (start 136.34 62.8) - (end 136.95 62.19) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "cd18d501-352f-4e82-8efd-af0792288986") - ) - (segment - (start 136.4 68.2) - (end 136.1 68.2) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "cd8e9a10-c0a7-409f-9895-7550f1fc705c") - ) - (segment - (start 141.91 63.4) - (end 139.6925 61.1825) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "dace4325-c51b-4fd0-875a-bd4731175a84") - ) - (segment - (start 142.675 63.8) - (end 142.275 63.4) - (width 0.2) - (layer "B.Cu") - (net "/ethernet/1V2_ETH") - (uuid "e27d75dd-e8c9-4e07-8f7b-37f8c79cf136") + (uuid "ee73a601-30f5-446f-aa70-9f3457c69272") ) (via - (at 135 65.3) - (size 0.3) - (drill 0.15) + (at 135.06 65.3) + (size 0.4) + (drill 0.2) (layers "F.Cu" "B.Cu") (free yes) (net "Net-(U11-RSET_BG)") @@ -34115,1805 +39133,1129 @@ ) (polygon (pts - (xy 119.258711 48.1) (xy 119.575 69.885) (xy 122.15 72.41) (xy 208.75 72.41) (xy 208.8 48.91) (xy 156.548731 48.791419) - (xy 150.264853 55.007455) (xy 130.259569 55.072529) (xy 123.206897 48.1) + (xy 119.583592 48.098542) (xy 119.5 69.7) (xy 122.196928 72.404087) (xy 208.801588 72.398637) (xy 208.800109 48.9) + (xy 156.525362 48.788001) (xy 150.286886 54.999803) (xy 130.278775 55.046367) (xy 123.3 48.1) ) ) (filled_polygon (layer "In1.Cu") (pts - (xy 123.679306 48.605523) (xy 123.704669 48.61297) (xy 123.756913 48.643765) (xy 130.259569 55.072529) - (xy 135.257366 55.056271) (xy 135.271237 55.059674) (xy 135.282276 55.058716) (xy 135.292312 55.061179) - (xy 135.303172 55.064329) (xy 135.311278 55.0695) (xy 135.315529 55.070544) (xy 135.325451 55.075767) - (xy 135.333814 55.083879) (xy 135.362074 55.101909) (xy 135.369885 55.118866) (xy 135.375604 55.124413) - (xy 135.378857 55.138341) (xy 135.391308 55.165369) (xy 135.389004 55.181785) (xy 135.391496 55.192452) - (xy 135.384909 55.210968) (xy 135.381602 55.234539) (xy 135.380664 55.236612) (xy 135.372264 55.246517) - (xy 135.36808 55.258281) (xy 135.351285 55.271257) (xy 135.336585 55.288593) (xy 135.314708 55.303211) - (xy 135.314703 55.303215) (xy 135.203217 55.414701) (xy 135.203212 55.414707) (xy 135.203211 55.414708) - (xy 135.115613 55.545807) (xy 135.115603 55.545824) (xy 135.115598 55.545833) (xy 135.055264 55.691496) - (xy 135.055257 55.691527) (xy 135.0245 55.84615) (xy 135.0245 55.846153) (xy 135.0245 56.003846) - (xy 135.0245 56.003848) (xy 135.024499 56.003848) (xy 135.055257 56.158471) (xy 135.055264 56.158502) - (xy 135.115598 56.304165) (xy 135.115603 56.304174) (xy 135.115613 56.304191) (xy 135.203211 56.43529) - (xy 135.203212 56.435291) (xy 135.203217 56.435297) (xy 135.314701 56.546781) (xy 135.314707 56.546786) - (xy 135.314711 56.546789) (xy 135.445814 56.63439) (xy 135.445827 56.634397) (xy 135.568623 56.68526) - (xy 135.591503 56.694737) (xy 135.591507 56.694737) (xy 135.59151 56.694739) (xy 135.696101 56.715543) - (xy 135.739291 56.724134) (xy 135.746153 56.725499) (xy 135.746156 56.7255) (xy 135.746158 56.7255) - (xy 135.775438 56.7255) (xy 135.78829 56.7255) (xy 135.792212 56.726651) (xy 135.792391 56.726664) - (xy 135.792919 56.726859) (xy 135.855329 56.745185) (xy 135.901084 56.797989) (xy 135.911028 56.867147) - (xy 135.882003 56.930703) (xy 135.872295 56.936941) (xy 135.871828 56.937804) (xy 135.865779 56.941129) - (xy 135.823225 56.968477) (xy 135.812471 56.971118) (xy 135.809234 56.971762) (xy 135.808066 56.971995) - (xy 135.807937 56.97202) (xy 135.76652 56.980259) (xy 135.766496 56.980264) (xy 135.620833 57.040598) - (xy 135.620824 57.040603) (xy 135.620807 57.040613) (xy 135.496319 57.123794) (xy 135.496315 57.123796) - (xy 135.489714 57.128208) (xy 135.489708 57.128212) (xy 135.479698 57.138222) (xy 135.476389 57.141095) - (xy 135.472355 57.142941) (xy 135.454527 57.156287) (xy 135.440809 57.163777) (xy 135.414176 57.169571) - (xy 135.412859 57.170175) (xy 135.411981 57.170049) (xy 135.372556 57.178628) (xy 135.370749 57.178499) - (xy 135.312536 57.159126) (xy 135.306026 57.154942) (xy 135.285396 57.138317) (xy 135.255292 57.108213) - (xy 135.255291 57.108212) (xy 135.25529 57.108211) (xy 135.124191 57.020613) (xy 135.12419 57.020612) - (xy 135.124185 57.020609) (xy 135.124172 57.020602) (xy 135.124165 57.020598) (xy 134.978502 56.960264) - (xy 134.978471 56.960257) (xy 134.823847 56.9295) (xy 134.823845 56.9295) (xy 134.823842 56.9295) - (xy 134.666158 56.9295) (xy 134.666155 56.9295) (xy 134.666153 56.9295) (xy 134.511527 56.960257) - (xy 134.511496 56.960264) (xy 134.365833 57.020598) (xy 134.365824 57.020603) (xy 134.365807 57.020613) - (xy 134.234708 57.108211) (xy 134.234707 57.108212) (xy 134.234701 57.108217) (xy 134.123217 57.219701) - (xy 134.123212 57.219707) (xy 134.123211 57.219708) (xy 134.035613 57.350807) (xy 134.035603 57.350824) - (xy 134.035598 57.350833) (xy 133.975264 57.496496) (xy 133.975257 57.496527) (xy 133.9445 57.65115) - (xy 133.9445 57.651153) (xy 133.9445 57.808846) (xy 133.9445 57.808848) (xy 133.944499 57.808848) - (xy 133.975257 57.963471) (xy 133.975264 57.963502) (xy 134.035598 58.109165) (xy 134.035603 58.109174) - (xy 134.035613 58.109191) (xy 134.123211 58.24029) (xy 134.123212 58.240291) (xy 134.123217 58.240297) - (xy 134.234701 58.351781) (xy 134.234707 58.351786) (xy 134.234711 58.351789) (xy 134.365814 58.43939) - (xy 134.365827 58.439397) (xy 134.511498 58.499735) (xy 134.511503 58.499737) (xy 134.666153 58.530499) - (xy 134.666156 58.5305) (xy 134.666158 58.5305) (xy 134.823844 58.5305) (xy 134.823845 58.530499) - (xy 134.978497 58.499737) (xy 135.121625 58.440452) (xy 135.124172 58.439397) (xy 135.124172 58.439396) - (xy 135.124179 58.439394) (xy 135.124182 58.439391) (xy 135.126516 58.438425) (xy 135.126529 58.43842) - (xy 135.135791 58.434583) (xy 135.144675 58.425698) (xy 135.255289 58.351789) (xy 135.262209 58.344868) - (xy 135.290456 58.323719) (xy 135.304184 58.316223) (xy 135.372451 58.30137) (xy 135.374264 58.3015) - (xy 135.432454 58.320867) (xy 135.438973 58.325056) (xy 135.459601 58.34168) (xy 135.489707 58.371786) - (xy 135.489711 58.371789) (xy 135.620814 58.45939) (xy 135.620827 58.459397) (xy 135.72006 58.5005) - (xy 135.766503 58.519737) (xy 135.820607 58.530499) (xy 135.912142 58.548707) (xy 135.934361 58.555339) - (xy 135.955738 58.56397) (xy 136.008246 58.604198) (xy 136.015622 58.61396) (xy 136.031249 58.64126) - (xy 136.049997 58.686522) (xy 136.1376 58.817627) (xy 136.137601 58.817628) (xy 136.137606 58.817634) - (xy 136.24909 58.929118) (xy 136.249096 58.929123) (xy 136.2491 58.929126) (xy 136.380203 59.016727) - (xy 136.380216 59.016734) (xy 136.507358 59.069397) (xy 136.525892 59.077074) (xy 136.638715 59.099516) - (xy 136.672901 59.106316) (xy 136.675636 59.10704) (xy 136.680544 59.107837) (xy 136.838231 59.107837) - (xy 136.838233 59.107837) (xy 136.852859 59.104927) (xy 136.862577 59.102993) (xy 136.897812 59.101104) - (xy 136.913386 59.102497) (xy 136.9784 59.128075) (xy 136.989055 59.136352) (xy 136.989152 59.136427) - (xy 137.016189 59.165467) (xy 137.025008 59.178666) (xy 137.02501 59.17867) (xy 137.025017 59.178678) - (xy 137.025023 59.178685) (xy 137.136504 59.290166) (xy 137.136509 59.29017) (xy 137.13651 59.290171) - (xy 137.136514 59.290174) (xy 137.267617 59.377775) (xy 137.267624 59.377779) (xy 137.280468 59.383098) - (xy 137.280473 59.383102) (xy 137.280476 59.383102) (xy 137.28049 59.383108) (xy 137.310829 59.401111) - (xy 137.319851 59.408381) (xy 137.321638 59.409821) (xy 137.361485 59.467215) (xy 137.36398 59.537027) - (xy 137.361258 59.547695) (xy 137.34421 59.585927) (xy 137.323535 59.616869) (xy 137.323532 59.616877) - (xy 137.274502 59.735245) (xy 137.274495 59.735265) (xy 137.274493 59.735273) (xy 137.2495 59.860923) - (xy 137.2495 59.944702) (xy 137.244237 59.962622) (xy 137.274494 60.114726) (xy 137.274495 60.114732) - (xy 137.274499 60.114744) (xy 137.323529 60.233118) (xy 137.323534 60.233128) (xy 137.394723 60.339668) - (xy 137.394724 60.33967) (xy 137.39473 60.339677) (xy 137.485321 60.430268) (xy 137.485327 60.430273) - (xy 137.485331 60.430276) (xy 137.591866 60.501461) (xy 137.591872 60.501464) (xy 137.591873 60.501465) - (xy 137.705362 60.548473) (xy 137.705947 60.548724) (xy 137.706141 60.548884) (xy 137.709055 60.550262) - (xy 137.835926 60.5755) (xy 137.964071 60.5755) (xy 137.964073 60.5755) (xy 138.048615 60.558682) - (xy 138.089744 60.550501) (xy 138.208127 60.501465) (xy 138.314669 60.430276) (xy 138.405276 60.339669) - (xy 138.476465 60.233127) (xy 138.525501 60.114744) (xy 138.535559 60.064178) (xy 138.53828 60.050502) - (xy 138.53828 60.050499) (xy 138.5505 59.989071) (xy 138.5505 59.860925) (xy 138.534916 59.782583) - (xy 142.278615 59.782583) (xy 142.309373 59.937206) (xy 142.30938 59.937237) (xy 142.369714 60.0829) - (xy 142.369719 60.082909) (xy 142.369729 60.082926) (xy 142.457327 60.214025) (xy 142.457328 60.214026) - (xy 142.457333 60.214032) (xy 142.568817 60.325516) (xy 142.568823 60.325521) (xy 142.568827 60.325524) - (xy 142.69993 60.413125) (xy 142.699943 60.413132) (xy 142.699945 60.413132) (xy 142.699949 60.413135) - (xy 142.769077 60.441768) (xy 142.826493 60.46555) (xy 142.845619 60.473472) (xy 142.927393 60.489738) - (xy 142.943322 60.492906) (xy 142.976599 60.504644) (xy 142.986625 60.509889) (xy 142.999454 60.522267) - (xy 143.015253 60.530531) (xy 143.024075 60.546023) (xy 143.036905 60.558402) (xy 143.041005 60.575751) - (xy 143.049829 60.591246) (xy 143.048875 60.609051) (xy 143.052975 60.626399) (xy 143.047044 60.64321) - (xy 143.046091 60.661016) (xy 143.029733 60.69229) (xy 143.025248 60.69851) (xy 142.993559 60.729088) - (xy 142.895328 60.794724) (xy 142.895327 60.794725) (xy 142.895321 60.79473) (xy 142.80473 60.885321) - (xy 142.804725 60.885327) (xy 142.804724 60.885328) (xy 142.733534 60.99187) (xy 142.733529 60.99188) - (xy 142.684502 61.110245) (xy 142.684499 61.110253) (xy 142.684499 61.110255) (xy 142.684497 61.110261) - (xy 142.684493 61.110273) (xy 142.6595 61.235923) (xy 142.6595 61.319702) (xy 142.654237 61.337622) - (xy 142.684494 61.489726) (xy 142.684495 61.489732) (xy 142.684502 61.489753) (xy 142.733529 61.608118) - (xy 142.733534 61.608128) (xy 142.804724 61.71467) (xy 142.804725 61.714671) (xy 142.80473 61.714677) - (xy 142.895321 61.805268) (xy 142.895327 61.805273) (xy 142.895331 61.805276) (xy 143.001866 61.876461) - (xy 143.001875 61.876466) (xy 143.013811 61.88141) (xy 143.114644 61.923177) (xy 143.119052 61.925262) - (xy 143.245926 61.9505) (xy 143.374071 61.9505) (xy 143.374073 61.9505) (xy 143.458615 61.933682) - (xy 143.499744 61.925501) (xy 143.618127 61.876465) (xy 143.724669 61.805276) (xy 143.815276 61.714669) - (xy 143.886465 61.608127) (xy 143.935501 61.489744) (xy 143.955284 61.390292) (xy 143.9605 61.364071) - (xy 143.9605 61.235928) (xy 143.9605 61.235925) (xy 143.935262 61.109054) (xy 143.933175 61.104641) - (xy 143.897574 61.018691) (xy 143.886466 60.991875) (xy 143.886461 60.991866) (xy 143.886461 60.991865) - (xy 143.869292 60.966172) (xy 143.857401 60.948375) (xy 143.842174 60.916542) (xy 143.838105 60.903544) - (xy 143.837132 60.848848) (xy 154.859499 60.848848) (xy 154.890257 61.003471) (xy 154.890264 61.003502) - (xy 154.950598 61.149165) (xy 154.950602 61.149172) (xy 154.950608 61.149184) (xy 154.950613 61.149191) - (xy 155.038211 61.28029) (xy 155.038212 61.280291) (xy 155.038217 61.280297) (xy 155.149701 61.391781) - (xy 155.149707 61.391786) (xy 155.149711 61.391789) (xy 155.280814 61.47939) (xy 155.280827 61.479397) - (xy 155.426498 61.539735) (xy 155.426503 61.539737) (xy 155.581153 61.570499) (xy 155.581156 61.5705) - (xy 155.581158 61.5705) (xy 155.738844 61.5705) (xy 155.738845 61.570499) (xy 155.893497 61.539737) - (xy 156.039179 61.479394) (xy 156.170289 61.391789) (xy 156.22361 61.338468) (xy 158.679119 61.338468) - (xy 158.709877 61.493091) (xy 158.709884 61.493122) (xy 158.770218 61.638785) (xy 158.770223 61.638794) - (xy 158.770228 61.638804) (xy 158.770233 61.638811) (xy 158.857831 61.76991) (xy 158.857832 61.769911) - (xy 158.857837 61.769917) (xy 158.969324 61.881404) (xy 158.969328 61.881407) (xy 158.969331 61.881409) - (xy 159.100434 61.96901) (xy 159.100447 61.969017) (xy 159.225445 62.020792) (xy 159.246123 62.029357) - (xy 159.24613 62.029358) (xy 159.24613 62.029359) (xy 159.328888 62.04582) (xy 159.400773 62.060119) - (xy 159.400776 62.06012) (xy 159.400778 62.06012) (xy 159.558464 62.06012) (xy 159.558465 62.060119) - (xy 159.713117 62.029357) (xy 159.858799 61.969014) (xy 159.886976 61.950187) (xy 159.989911 61.881408) - (xy 159.989915 61.881404) (xy 160.101406 61.769912) (xy 160.101409 61.769909) (xy 160.110675 61.756041) - (xy 160.189014 61.638799) (xy 160.189891 61.636683) (xy 160.215808 61.574112) (xy 160.230047 61.539737) - (xy 160.237745 61.52115) (xy 160.241553 61.511954) (xy 160.242525 61.510318) (xy 160.259558 61.481606) - (xy 160.27607 61.461116) (xy 160.325162 61.424367) (xy 160.452248 61.371727) (xy 160.455035 61.370755) - (xy 160.45648 61.370087) (xy 160.461145 61.368042) (xy 160.47041 61.364204) (xy 160.479295 61.355318) - (xy 160.589909 61.281409) (xy 160.701409 61.169909) (xy 160.789014 61.038799) (xy 160.849357 60.893117) - (xy 160.88012 60.738462) (xy 160.88012 60.580778) (xy 160.88012 60.580775) (xy 160.88012 60.580591) - (xy 160.879684 60.578586) (xy 160.865271 60.506127) (xy 160.849359 60.42613) (xy 160.849357 60.426125) - (xy 160.849357 60.426123) (xy 160.813547 60.339669) (xy 160.812699 60.337622) (xy 163.144237 60.337622) - (xy 163.174494 60.489726) (xy 163.174495 60.489732) (xy 163.174502 60.489753) (xy 163.223529 60.608118) - (xy 163.223534 60.608128) (xy 163.294724 60.71467) (xy 163.294725 60.714671) (xy 163.29473 60.714677) - (xy 163.385321 60.805268) (xy 163.385327 60.805273) (xy 163.385331 60.805276) (xy 163.491866 60.876461) - (xy 163.491872 60.876464) (xy 163.491873 60.876465) (xy 163.605362 60.923473) (xy 163.605947 60.923724) - (xy 163.606141 60.923884) (xy 163.609053 60.925261) (xy 163.610252 60.925499) (xy 163.610256 60.925501) - (xy 163.610259 60.925501) (xy 163.61026 60.925501) (xy 163.610261 60.925502) (xy 163.707899 60.944924) - (xy 163.735927 60.9505) (xy 163.864071 60.9505) (xy 163.864072 60.9505) (xy 163.919922 60.93939) - (xy 163.949215 60.933563) (xy 163.949216 60.933563) (xy 163.962846 60.930851) (xy 163.989744 60.925501) - (xy 164.108127 60.876465) (xy 164.214669 60.805276) (xy 164.305276 60.714669) (xy 164.376465 60.608127) - (xy 164.425501 60.489744) (xy 164.425504 60.489732) (xy 164.438261 60.425598) (xy 164.438261 60.425597) - (xy 164.4505 60.364072) (xy 164.4505 60.235925) (xy 164.425262 60.109055) (xy 164.423176 60.104644) - (xy 164.414172 60.082907) (xy 164.37994 60.000263) (xy 164.376466 59.991875) (xy 164.376461 59.991866) - (xy 164.305276 59.885331) (xy 164.305273 59.885327) (xy 164.305268 59.885321) (xy 164.214677 59.79473) - (xy 164.214671 59.794725) (xy 164.21467 59.794724) (xy 164.108127 59.723534) (xy 164.108128 59.723534) - (xy 164.108118 59.723529) (xy 163.989753 59.674502) (xy 163.989733 59.674495) (xy 163.989725 59.674493) - (xy 163.864074 59.6495) (xy 163.864071 59.6495) (xy 163.864069 59.6495) (xy 163.735931 59.6495) - (xy 163.735929 59.6495) (xy 163.735926 59.6495) (xy 163.610273 59.674493) (xy 163.610265 59.674495) - (xy 163.610245 59.674502) (xy 163.49188 59.723529) (xy 163.49187 59.723534) (xy 163.385328 59.794724) - (xy 163.385327 59.794725) (xy 163.385321 59.79473) (xy 163.29473 59.885321) (xy 163.294725 59.885327) - (xy 163.294724 59.885328) (xy 163.223534 59.99187) (xy 163.223529 59.99188) (xy 163.174502 60.110245) - (xy 163.174495 60.110265) (xy 163.174493 60.110273) (xy 163.1495 60.235923) (xy 163.1495 60.319702) - (xy 163.144237 60.337622) (xy 160.812699 60.337622) (xy 160.79069 60.284487) (xy 160.789713 60.28187) - (xy 160.789474 60.281363) (xy 160.789291 60.280997) (xy 160.78902 60.28045) (xy 160.78901 60.280435) - (xy 160.78901 60.280434) (xy 160.701409 60.149331) (xy 160.701406 60.149327) (xy 160.701401 60.149321) - (xy 160.589917 60.037837) (xy 160.589911 60.037832) (xy 160.58991 60.037831) (xy 160.533687 60.000264) - (xy 160.458805 59.950229) (xy 160.458792 59.950222) (xy 160.458785 59.950218) (xy 160.313122 59.889884) - (xy 160.313091 59.889877) (xy 160.158467 59.85912) (xy 160.158465 59.85912) (xy 160.158462 59.85912) - (xy 160.000778 59.85912) (xy 160.000775 59.85912) (xy 160.000773 59.85912) (xy 159.846147 59.889877) - (xy 159.846116 59.889884) (xy 159.700453 59.950218) (xy 159.700444 59.950223) (xy 159.700439 59.950226) - (xy 159.700434 59.950229) (xy 159.661584 59.976188) (xy 159.569328 60.037831) (xy 159.569327 60.037832) - (xy 159.569321 60.037837) (xy 159.457837 60.149321) (xy 159.457832 60.149327) (xy 159.457831 60.149328) - (xy 159.373256 60.275904) (xy 159.370229 60.280434) (xy 159.370224 60.280444) (xy 159.358461 60.308842) - (xy 159.317684 60.407286) (xy 159.300347 60.436505) (xy 159.299676 60.437636) (xy 159.283173 60.458116) - (xy 159.234073 60.494873) (xy 159.100438 60.550226) (xy 159.100436 60.550227) (xy 158.969328 60.637831) - (xy 158.969327 60.637832) (xy 158.969321 60.637837) (xy 158.857837 60.749321) (xy 158.857832 60.749327) - (xy 158.857831 60.749328) (xy 158.770233 60.880427) (xy 158.770223 60.880444) (xy 158.770218 60.880453) - (xy 158.709884 61.026116) (xy 158.709877 61.026147) (xy 158.67912 61.18077) (xy 158.67912 61.180773) - (xy 158.67912 61.338466) (xy 158.67912 61.338468) (xy 158.679119 61.338468) (xy 156.22361 61.338468) - (xy 156.281789 61.280289) (xy 156.369394 61.149179) (xy 156.382749 61.116933) (xy 156.400751 61.086592) - (xy 156.41392 61.070249) (xy 156.461994 61.033924) (xy 156.468196 61.03129) (xy 156.492455 61.023813) - (xy 156.613497 60.999737) (xy 156.759179 60.939394) (xy 156.890289 60.851789) (xy 157.001789 60.740289) - (xy 157.064463 60.646491) (xy 157.089393 60.609181) (xy 157.089393 60.60918) (xy 157.089394 60.609179) - (xy 157.096823 60.591246) (xy 157.097553 60.589483) (xy 157.110311 60.558682) (xy 157.134012 60.501461) - (xy 157.149737 60.463497) (xy 157.150808 60.458116) (xy 157.1805 60.308843) (xy 157.1805 60.15097) - (xy 157.18007 60.148994) (xy 157.177178 60.13446) (xy 157.173257 60.114744) (xy 157.149737 59.996503) - (xy 157.146658 59.989069) (xy 157.134366 59.959393) (xy 157.103687 59.885327) (xy 157.089397 59.850827) - (xy 157.08939 59.850814) (xy 157.001789 59.719711) (xy 157.001786 59.719707) (xy 157.001781 59.719701) - (xy 156.890297 59.608217) (xy 156.890291 59.608212) (xy 156.89029 59.608211) (xy 156.759191 59.520613) - (xy 156.75919 59.520612) (xy 156.759185 59.520609) (xy 156.759172 59.520602) (xy 156.759165 59.520598) - (xy 156.613502 59.460264) (xy 156.613471 59.460257) (xy 156.458847 59.4295) (xy 156.458845 59.4295) - (xy 156.458842 59.4295) (xy 156.301158 59.4295) (xy 156.301155 59.4295) (xy 156.301153 59.4295) - (xy 156.146527 59.460257) (xy 156.146496 59.460264) (xy 156.000833 59.520598) (xy 156.000824 59.520603) - (xy 156.000807 59.520613) (xy 155.869708 59.608211) (xy 155.869707 59.608212) (xy 155.869701 59.608217) - (xy 155.758217 59.719701) (xy 155.758212 59.719707) (xy 155.758211 59.719708) (xy 155.670606 59.850817) - (xy 155.65725 59.883063) (xy 155.639243 59.913412) (xy 155.626081 59.929746) (xy 155.577999 59.966077) - (xy 155.571811 59.968705) (xy 155.54753 59.976188) (xy 155.426514 60.000259) (xy 155.426508 60.000261) - (xy 155.426498 60.000264) (xy 155.426493 60.000265) (xy 155.426475 60.000272) (xy 155.280833 60.060598) - (xy 155.280824 60.060603) (xy 155.280807 60.060613) (xy 155.149708 60.148211) (xy 155.149707 60.148212) - (xy 155.149701 60.148217) (xy 155.038217 60.259701) (xy 155.038212 60.259707) (xy 155.038211 60.259708) - (xy 154.950613 60.390807) (xy 154.950603 60.390824) (xy 154.950598 60.390833) (xy 154.890264 60.536496) - (xy 154.890257 60.536527) (xy 154.8595 60.69115) (xy 154.8595 60.691153) (xy 154.8595 60.848846) - (xy 154.8595 60.848848) (xy 154.859499 60.848848) (xy 143.837132 60.848848) (xy 143.836862 60.833686) - (xy 143.873586 60.774245) (xy 143.929006 60.745573) (xy 143.937069 60.743743) (xy 143.964496 60.740672) - (xy 143.978537 60.740672) (xy 143.986387 60.73829) (xy 144.12907 60.709909) (xy 144.274752 60.649566) - (xy 144.327379 60.614402) (xy 144.375926 60.581964) (xy 144.38681 60.574691) (xy 144.405862 60.561961) - (xy 144.517362 60.450461) (xy 144.604967 60.319351) (xy 144.66531 60.173669) (xy 144.696073 60.019014) - (xy 144.696073 59.86133) (xy 144.696073 59.861327) (xy 144.696073 59.861145) (xy 144.695638 59.859144) - (xy 144.685741 59.80939) (xy 144.66531 59.706675) (xy 144.665308 59.70667) (xy 144.60497 59.560999) - (xy 144.604963 59.560986) (xy 144.517362 59.429883) (xy 144.517359 59.429879) (xy 144.517354 59.429873) - (xy 144.416329 59.328848) (xy 153.399499 59.328848) (xy 153.429406 59.479191) (xy 153.430261 59.483489) - (xy 153.430263 59.483496) (xy 153.430263 59.4835) (xy 153.490598 59.629165) (xy 153.490602 59.629172) - (xy 153.490609 59.629185) (xy 153.520886 59.674497) (xy 153.578211 59.76029) (xy 153.578212 59.760291) - (xy 153.578217 59.760297) (xy 153.689701 59.871781) (xy 153.689707 59.871786) (xy 153.689711 59.871789) - (xy 153.820814 59.95939) (xy 153.820822 59.959394) (xy 153.820833 59.9594) (xy 153.964766 60.019018) - (xy 153.964765 60.019018) (xy 153.966498 60.019735) (xy 153.966503 60.019737) (xy 154.121153 60.050499) - (xy 154.121156 60.0505) (xy 154.121158 60.0505) (xy 154.278844 60.0505) (xy 154.278845 60.050499) - (xy 154.433497 60.019737) (xy 154.579179 59.959394) (xy 154.710289 59.871789) (xy 154.821789 59.760289) - (xy 154.909394 59.629179) (xy 154.914491 59.616875) (xy 154.937636 59.560996) (xy 154.954366 59.520607) - (xy 154.965347 59.494096) (xy 154.969737 59.483497) (xy 155.0005 59.328842) (xy 155.0005 59.171158) - (xy 155.0005 59.171155) (xy 155.000499 59.171153) (xy 154.996023 59.148652) (xy 154.969737 59.016503) - (xy 154.950109 58.969116) (xy 154.909397 58.870827) (xy 154.90939 58.870814) (xy 154.821789 58.739711) - (xy 154.821786 58.739707) (xy 154.821781 58.739701) (xy 154.710297 58.628217) (xy 154.710291 58.628212) - (xy 154.71029 58.628211) (xy 154.579191 58.540613) (xy 154.57919 58.540612) (xy 154.579185 58.540609) - (xy 154.579172 58.540602) (xy 154.579165 58.540598) (xy 154.433502 58.480264) (xy 154.433471 58.480257) - (xy 154.325842 58.458848) (xy 156.919499 58.458848) (xy 156.950257 58.613471) (xy 156.950264 58.613502) - (xy 157.010598 58.759165) (xy 157.010602 58.759172) (xy 157.010609 58.759185) (xy 157.010612 58.75919) - (xy 157.010613 58.759191) (xy 157.098211 58.89029) (xy 157.098212 58.890291) (xy 157.098217 58.890297) - (xy 157.209701 59.001781) (xy 157.209707 59.001786) (xy 157.209711 59.001789) (xy 157.340814 59.08939) - (xy 157.340827 59.089397) (xy 157.486498 59.149735) (xy 157.486503 59.149737) (xy 157.631968 59.178672) - (xy 157.641153 59.180499) (xy 157.641156 59.1805) (xy 157.641158 59.1805) (xy 157.798844 59.1805) - (xy 157.798845 59.180499) (xy 157.953497 59.149737) (xy 158.09381 59.091618) (xy 158.099172 59.089397) - (xy 158.099172 59.089396) (xy 158.099173 59.089395) (xy 158.099179 59.089394) (xy 158.099181 59.089392) - (xy 158.101534 59.088418) (xy 158.101534 59.088417) (xy 158.11079 59.084584) (xy 158.119675 59.075698) - (xy 158.230289 59.001789) (xy 158.341789 58.890289) (xy 158.429394 58.759179) (xy 158.489737 58.613497) - (xy 158.516521 58.478848) (xy 159.659499 58.478848) (xy 159.690257 58.633471) (xy 159.690264 58.633502) - (xy 159.750598 58.779165) (xy 159.750602 58.779172) (xy 159.750608 58.779184) (xy 159.750613 58.779191) - (xy 159.838211 58.91029) (xy 159.838212 58.910291) (xy 159.838217 58.910297) (xy 159.949701 59.021781) - (xy 159.949707 59.021786) (xy 159.949711 59.021789) (xy 160.080814 59.10939) (xy 160.080827 59.109397) - (xy 160.221851 59.16781) (xy 160.226503 59.169737) (xy 160.374673 59.19921) (xy 160.375794 59.199455) - (xy 160.376248 59.199703) (xy 160.381155 59.2005) (xy 160.538844 59.2005) (xy 160.542964 59.2005) - (xy 160.550814 59.198118) (xy 160.693497 59.169737) (xy 160.839179 59.109394) (xy 160.970289 59.021789) - (xy 161.081789 58.910289) (xy 161.147048 58.812622) (xy 174.544237 58.812622) (xy 174.574494 58.964726) - (xy 174.574495 58.964732) (xy 174.574502 58.964753) (xy 174.623529 59.083118) (xy 174.623534 59.083128) - (xy 174.694724 59.18967) (xy 174.694725 59.189671) (xy 174.69473 59.189677) (xy 174.785321 59.280268) - (xy 174.785327 59.280273) (xy 174.785331 59.280276) (xy 174.891866 59.351461) (xy 174.891872 59.351464) - (xy 174.891873 59.351465) (xy 175.005362 59.398473) (xy 175.005947 59.398724) (xy 175.006141 59.398884) - (xy 175.009055 59.400262) (xy 175.135926 59.4255) (xy 175.264071 59.4255) (xy 175.264072 59.4255) - (xy 175.307103 59.41694) (xy 175.350135 59.40838) (xy 175.350136 59.40838) (xy 175.363456 59.40573) - (xy 175.389744 59.400501) (xy 175.508127 59.351465) (xy 175.614669 59.280276) (xy 175.705276 59.189669) - (xy 175.776465 59.083127) (xy 175.825501 58.964744) (xy 175.832586 58.929126) (xy 175.835531 58.914323) - (xy 175.835531 58.914321) (xy 175.8505 58.839073) (xy 175.8505 58.766404) (xy 186.586706 58.766404) - (xy 186.617464 58.921027) (xy 186.617471 58.921058) (xy 186.677805 59.066721) (xy 186.677809 59.066728) - (xy 186.677813 59.066736) (xy 186.67782 59.066747) (xy 186.765418 59.197846) (xy 186.765419 59.197847) - (xy 186.765424 59.197853) (xy 186.876908 59.309337) (xy 186.876914 59.309342) (xy 186.876918 59.309345) - (xy 187.008021 59.396946) (xy 187.008034 59.396953) (xy 187.128906 59.447019) (xy 187.15371 59.457293) - (xy 187.285446 59.483497) (xy 187.300737 59.486538) (xy 187.303455 59.487259) (xy 187.308362 59.488056) - (xy 187.466051 59.488056) (xy 187.470171 59.488056) (xy 187.478021 59.485674) (xy 187.620704 59.457293) - (xy 187.757813 59.400501) (xy 187.75985 59.399656) (xy 187.759866 59.399655) (xy 187.762607 59.398699) - (xy 187.764061 59.398026) (xy 187.768734 59.395977) (xy 187.777997 59.39214) (xy 187.786884 59.383254) - (xy 187.859533 59.334711) (xy 187.897496 59.309345) (xy 188.008996 59.197845) (xy 188.096601 59.066735) - (xy 188.101949 59.053825) (xy 188.110274 59.033722) (xy 188.156944 58.921053) (xy 188.173769 58.836467) - (xy 188.183729 58.786395) (xy 188.195471 58.753113) (xy 188.200714 58.74309) (xy 188.24923 58.692811) - (xy 188.317227 58.676743) (xy 188.383113 58.699985) (xy 188.38706 58.702831) (xy 188.418421 58.736973) - (xy 188.418912 58.736646) (xy 188.508211 58.87029) (xy 188.508212 58.870291) (xy 188.508217 58.870297) - (xy 188.619699 58.981779) (xy 188.619707 58.981786) (xy 188.619711 58.981789) (xy 188.750814 59.06939) - (xy 188.750827 59.069397) (xy 188.875272 59.120943) (xy 188.896503 59.129737) (xy 189.009653 59.152244) - (xy 189.043528 59.158982) (xy 189.046252 59.159704) (xy 189.051155 59.1605) (xy 189.208844 59.1605) - (xy 189.212964 59.1605) (xy 189.220814 59.158118) (xy 189.363497 59.129737) (xy 189.509179 59.069394) - (xy 189.640289 58.981789) (xy 189.751789 58.870289) (xy 189.839394 58.739179) (xy 189.850876 58.71146) - (xy 189.877285 58.647702) (xy 189.899737 58.593497) (xy 189.906737 58.558302) (xy 189.907374 58.5565) - (xy 189.918478 58.525023) (xy 189.924791 58.512954) (xy 189.973306 58.462675) (xy 190.041303 58.446606) - (xy 190.100773 58.465518) (xy 190.105628 58.468578) (xy 190.107763 58.469923) (xy 190.129337 58.487151) - (xy 190.142686 58.5005) (xy 190.256814 58.566392) (xy 190.384108 58.6005) (xy 191.608292 58.6005) - (xy 191.639434 58.604977) (xy 191.643224 58.605521) (xy 191.659605 58.610331) (xy 191.716625 58.646119) - (xy 191.720814 58.650749) (xy 191.725556 58.655991) (xy 191.744085 58.682884) (xy 191.780902 58.75514) - (xy 191.780904 58.755143) (xy 191.896555 58.914321) (xy 192.035678 59.053444) (xy 192.194856 59.169095) - (xy 192.370162 59.258418) (xy 192.557283 59.319218) (xy 192.58932 59.324292) (xy 192.599999 59.325984) - (xy 192.599999 59.325983) (xy 192.6 59.325984) (xy 192.6 58.742329) (xy 192.600393 58.739599) (xy 192.605023 58.707393) - (xy 192.609427 58.692395) (xy 192.647172 58.633644) (xy 192.6472 58.633619) (xy 192.647199 58.633619) - (xy 192.648541 58.632456) (xy 192.70342 58.604977) (xy 192.710979 58.603333) (xy 192.737332 58.6005) - (xy 192.958171 58.6005) (xy 192.993106 58.605523) (xy 193.008104 58.609927) (xy 193.066855 58.647672) - (xy 193.066879 58.6477) (xy 193.066882 58.647702) (xy 193.066883 58.647704) (xy 193.068042 58.649041) - (xy 193.095518 58.703902) (xy 193.097163 58.71146) (xy 193.1 58.737831) (xy 193.1 59.325981) (xy 193.1 59.325983) - (xy 193.142716 59.319218) (xy 193.329837 59.258418) (xy 193.505143 59.169095) (xy 193.664321 59.053444) - (xy 193.664322 59.053443) (xy 193.749361 58.968405) (xy 193.777609 58.947258) (xy 193.791335 58.939763) - (xy 193.808756 58.935973) (xy 193.810683 58.934921) (xy 193.812872 58.935077) (xy 193.859592 58.924912) - (xy 193.861402 58.925041) (xy 193.919599 58.944407) (xy 193.926117 58.948596) (xy 193.946752 58.965226) - (xy 194.035354 59.053828) (xy 194.194595 59.169524) (xy 194.255389 59.2005) (xy 194.36997 59.258882) - (xy 194.369972 59.258882) (xy 194.369975 59.258884) (xy 194.369978 59.258885) (xy 194.370848 59.259328) - (xy 194.374593 59.260385) (xy 194.410406 59.272021) (xy 194.466264 59.29017) (xy 194.466265 59.290171) - (xy 194.488508 59.297398) (xy 194.557173 59.319709) (xy 194.751578 59.3505) (xy 194.751583 59.3505) - (xy 194.948421 59.3505) (xy 194.948422 59.3505) (xy 195.142826 59.319709) (xy 195.174732 59.309342) - (xy 195.330025 59.258884) (xy 195.505405 59.169524) (xy 195.664646 59.053828) (xy 195.749714 58.968758) - (xy 195.7662 58.954915) (xy 195.773943 58.949485) (xy 195.776947 58.948469) (xy 195.777984 58.947599) - (xy 195.781974 58.945421) (xy 195.782458 58.946307) (xy 195.796714 58.93785) (xy 195.796408 58.937179) - (xy 195.799175 58.935915) (xy 195.800233 58.935762) (xy 195.801819 58.934822) (xy 195.804611 58.933781) - (xy 195.805089 58.935063) (xy 195.819838 58.932941) (xy 195.828776 58.928064) (xy 195.835816 58.928569) - (xy 195.840133 58.92711) (xy 195.84752 58.928958) (xy 195.862378 58.92682) (xy 195.862476 58.925447) - (xy 195.863873 58.925546) (xy 195.865926 58.92631) (xy 195.868332 58.925964) (xy 195.868337 58.925965) - (xy 195.87135 58.926398) (xy 195.871086 58.928231) (xy 195.880632 58.931784) (xy 195.898466 58.933064) - (xy 195.92925 58.949881) (xy 195.92935 58.949918) (xy 195.930603 58.950856) (xy 195.943952 58.962426) - (xy 196.000574 59.019048) (xy 196.021724 59.0473) (xy 196.025079 59.053444) (xy 196.033786 59.06939) - (xy 196.034331 59.070387) (xy 196.0495 59.129816) (xy 196.0495 59.178846) (xy 196.0495 59.178848) - (xy 196.049499 59.178848) (xy 196.080257 59.333471) (xy 196.080264 59.333502) (xy 196.140598 59.479165) - (xy 196.140603 59.479174) (xy 196.140613 59.479191) (xy 196.228211 59.61029) (xy 196.228212 59.610291) - (xy 196.228217 59.610297) (xy 196.339701 59.721781) (xy 196.339707 59.721786) (xy 196.339711 59.721789) - (xy 196.470814 59.80939) (xy 196.470827 59.809397) (xy 196.616498 59.869735) (xy 196.616503 59.869737) - (xy 196.766292 59.899532) (xy 196.771153 59.900499) (xy 196.771156 59.9005) (xy 196.771158 59.9005) - (xy 196.928844 59.9005) (xy 196.928845 59.900499) (xy 197.083497 59.869737) (xy 197.229179 59.809394) - (xy 197.360289 59.721789) (xy 197.471789 59.610289) (xy 197.559394 59.479179) (xy 197.563098 59.470238) - (xy 197.601395 59.377779) (xy 197.619737 59.333497) (xy 197.620733 59.328493) (xy 197.6464 59.199455) - (xy 197.6505 59.178842) (xy 197.6505 59.137163) (xy 197.654763 59.104927) (xy 197.655121 59.103595) - (xy 197.659144 59.089895) (xy 197.66055 59.083428) (xy 197.661331 59.080531) (xy 197.678032 59.053203) - (xy 197.693379 59.025094) (xy 197.749714 58.968759) (xy 197.777964 58.947611) (xy 197.791688 58.940117) - (xy 197.859946 58.925266) (xy 197.861756 58.925395) (xy 197.919953 58.944761) (xy 197.926471 58.94895) - (xy 197.947106 58.96558) (xy 198.035354 59.053828) (xy 198.194595 59.169524) (xy 198.255389 59.2005) - (xy 198.36997 59.258882) (xy 198.369972 59.258882) (xy 198.369975 59.258884) (xy 198.369978 59.258885) - (xy 198.370848 59.259328) (xy 198.374593 59.260385) (xy 198.410406 59.272021) (xy 198.466264 59.29017) - (xy 198.466265 59.290171) (xy 198.488508 59.297398) (xy 198.557173 59.319709) (xy 198.751578 59.3505) - (xy 198.751583 59.3505) (xy 198.948421 59.3505) (xy 198.948422 59.3505) (xy 199.142826 59.319709) - (xy 199.174732 59.309342) (xy 199.330025 59.258884) (xy 199.505405 59.169524) (xy 199.664646 59.053828) - (xy 199.749717 58.968756) (xy 199.777964 58.947611) (xy 199.791688 58.940117) (xy 199.793315 58.939764) - (xy 199.859946 58.925266) (xy 199.861756 58.925395) (xy 199.919953 58.944761) (xy 199.926471 58.94895) - (xy 199.947106 58.96558) (xy 200.035354 59.053828) (xy 200.194595 59.169524) (xy 200.255389 59.2005) - (xy 200.36997 59.258882) (xy 200.369972 59.258882) (xy 200.369975 59.258884) (xy 200.369978 59.258885) - (xy 200.370848 59.259328) (xy 200.374593 59.260385) (xy 200.410406 59.272021) (xy 200.466264 59.29017) - (xy 200.466265 59.290171) (xy 200.488508 59.297398) (xy 200.557173 59.319709) (xy 200.751578 59.3505) - (xy 200.751583 59.3505) (xy 200.948421 59.3505) (xy 200.948422 59.3505) (xy 201.142826 59.319709) - (xy 201.174732 59.309342) (xy 201.330025 59.258884) (xy 201.505405 59.169524) (xy 201.664646 59.053828) - (xy 201.749717 58.968756) (xy 201.777964 58.947611) (xy 201.791688 58.940117) (xy 201.793315 58.939764) - (xy 201.859946 58.925266) (xy 201.861756 58.925395) (xy 201.919953 58.944761) (xy 201.926471 58.94895) - (xy 201.947106 58.96558) (xy 202.035354 59.053828) (xy 202.194595 59.169524) (xy 202.255389 59.2005) - (xy 202.36997 59.258882) (xy 202.369972 59.258882) (xy 202.369975 59.258884) (xy 202.369978 59.258885) - (xy 202.370848 59.259328) (xy 202.374593 59.260385) (xy 202.410406 59.272021) (xy 202.466264 59.29017) - (xy 202.466265 59.290171) (xy 202.488508 59.297398) (xy 202.557173 59.319709) (xy 202.751578 59.3505) - (xy 202.751583 59.3505) (xy 202.948421 59.3505) (xy 202.948422 59.3505) (xy 203.142826 59.319709) - (xy 203.174732 59.309342) (xy 203.330025 59.258884) (xy 203.505405 59.169524) (xy 203.664646 59.053828) - (xy 203.803828 58.914646) (xy 203.919524 58.755405) (xy 203.955861 58.684089) (xy 203.976194 58.655246) - (xy 203.987916 58.642834) (xy 204.045689 58.608277) (xy 204.05854 58.6048) (xy 204.090914 58.6005) - (xy 204.31589 58.6005) (xy 204.315892 58.6005) (xy 204.443186 58.566392) (xy 204.557314 58.5005) - (xy 204.6505 58.407314) (xy 204.716392 58.293186) (xy 204.7505 58.165892) (xy 204.7505 56.634108) - (xy 204.716392 56.506814) (xy 204.716387 56.506806) (xy 204.699178 56.476999) (xy 204.6505 56.392686) - (xy 204.557314 56.2995) (xy 204.50025 56.266554) (xy 204.443187 56.233608) (xy 204.331473 56.203675) - (xy 204.325469 56.202066) (xy 204.325458 56.202062) (xy 204.315894 56.1995) (xy 204.315892 56.1995) - (xy 204.315891 56.1995) (xy 203.091708 56.1995) (xy 203.091705 56.199499) (xy 203.091705 56.1995) - (xy 203.056771 56.194476) (xy 203.040391 56.189666) (xy 202.983378 56.153884) (xy 202.974447 56.144013) - (xy 202.955914 56.117117) (xy 202.919095 56.044856) (xy 202.803444 55.885678) (xy 202.664321 55.746555) - (xy 202.505143 55.630904) (xy 202.363235 55.558599) (xy 202.329839 55.541583) (xy 202.329838 55.541582) - (xy 202.329835 55.541581) (xy 202.142705 55.480778) (xy 202.142699 55.480777) (xy 202.1 55.474013) - (xy 202.1 56.05767) (xy 202.099999 56.057676) (xy 202.1 56.057679) (xy 202.094975 56.092614) (xy 202.09057 56.107612) - (xy 202.052827 56.166355) (xy 202.052792 56.166385) (xy 202.052791 56.166387) (xy 202.052789 56.166387) - (xy 202.051458 56.167542) (xy 201.996597 56.195018) (xy 201.989039 56.196663) (xy 201.962668 56.1995) - (xy 201.74183 56.1995) (xy 201.741825 56.199499) (xy 201.741823 56.1995) (xy 201.706889 56.194475) - (xy 201.69189 56.19007) (xy 201.633144 56.152327) (xy 201.633115 56.152293) (xy 201.633114 56.152293) - (xy 201.633113 56.152291) (xy 201.631957 56.150958) (xy 201.604477 56.096083) (xy 201.602832 56.088521) - (xy 201.6 56.062168) (xy 201.6 55.474014) (xy 201.599999 55.474014) (xy 201.587113 55.476054) (xy 201.557298 55.480777) - (xy 201.557295 55.480777) (xy 201.557294 55.480778) (xy 201.370164 55.541581) (xy 201.370161 55.541582) - (xy 201.370159 55.541583) (xy 201.194855 55.630904) (xy 201.035676 55.746556) (xy 201.035675 55.746557) - (xy 201.035664 55.746569) (xy 201.035663 55.746568) (xy 200.95064 55.831589) (xy 200.950639 55.831592) - (xy 200.922384 55.852743) (xy 200.908665 55.860234) (xy 200.840404 55.875086) (xy 200.83973 55.875037) - (xy 200.838597 55.874956) (xy 200.780387 55.855583) (xy 200.773879 55.8514) (xy 200.753244 55.83477) - (xy 200.664648 55.746174) (xy 200.664647 55.746173) (xy 200.664646 55.746172) (xy 200.589394 55.691498) - (xy 200.505409 55.630478) (xy 200.505406 55.630477) (xy 200.505407 55.630477) (xy 200.505405 55.630476) - (xy 200.493262 55.624289) (xy 200.493259 55.624287) (xy 200.43091 55.592519) (xy 200.330029 55.541117) - (xy 200.142826 55.48029) (xy 200.14282 55.480289) (xy 199.948427 55.4495) (xy 199.948422 55.4495) - (xy 199.948417 55.4495) (xy 199.751583 55.4495) (xy 199.751578 55.4495) (xy 199.751573 55.4495) - (xy 199.557178 55.480289) (xy 199.557176 55.480289) (xy 199.557173 55.48029) (xy 199.36997 55.541117) - (xy 199.33566 55.558599) (xy 199.194594 55.630475) (xy 199.125157 55.680926) (xy 199.125156 55.680926) - (xy 199.047225 55.737546) (xy 199.039843 55.74168) (xy 198.950285 55.831239) (xy 198.922027 55.852392) - (xy 198.908309 55.859882) (xy 198.890892 55.863671) (xy 198.875255 55.872212) (xy 198.840051 55.874733) - (xy 198.838245 55.874604) (xy 198.780044 55.855236) (xy 198.773529 55.851049) (xy 198.752893 55.834419) - (xy 198.664648 55.746174) (xy 198.664647 55.746173) (xy 198.664646 55.746172) (xy 198.589394 55.691498) - (xy 198.505409 55.630478) (xy 198.505406 55.630477) (xy 198.505407 55.630477) (xy 198.505405 55.630476) - (xy 198.493262 55.624289) (xy 198.493259 55.624287) (xy 198.43091 55.592519) (xy 198.330029 55.541117) - (xy 198.142826 55.48029) (xy 198.14282 55.480289) (xy 197.948427 55.4495) (xy 197.948422 55.4495) - (xy 197.948417 55.4495) (xy 197.751583 55.4495) (xy 197.751578 55.4495) (xy 197.751573 55.4495) - (xy 197.557178 55.480289) (xy 197.557176 55.480289) (xy 197.557173 55.48029) (xy 197.36997 55.541117) - (xy 197.33566 55.558599) (xy 197.194594 55.630475) (xy 197.125157 55.680926) (xy 197.125156 55.680926) - (xy 197.047225 55.737546) (xy 197.039843 55.74168) (xy 196.950285 55.831239) (xy 196.922027 55.852392) - (xy 196.908309 55.859882) (xy 196.890892 55.863671) (xy 196.875255 55.872212) (xy 196.840051 55.874733) - (xy 196.838245 55.874604) (xy 196.780044 55.855236) (xy 196.773529 55.851049) (xy 196.752893 55.834419) - (xy 196.664648 55.746174) (xy 196.664647 55.746173) (xy 196.664646 55.746172) (xy 196.589394 55.691498) - (xy 196.505409 55.630478) (xy 196.505406 55.630477) (xy 196.505407 55.630477) (xy 196.505405 55.630476) - (xy 196.493262 55.624289) (xy 196.493259 55.624287) (xy 196.43091 55.592519) (xy 196.330029 55.541117) - (xy 196.142826 55.48029) (xy 196.14282 55.480289) (xy 195.948427 55.4495) (xy 195.948422 55.4495) - (xy 195.948417 55.4495) (xy 195.751583 55.4495) (xy 195.751578 55.4495) (xy 195.751573 55.4495) - (xy 195.557178 55.480289) (xy 195.557176 55.480289) (xy 195.557173 55.48029) (xy 195.36997 55.541117) - (xy 195.33566 55.558599) (xy 195.194594 55.630475) (xy 195.125157 55.680926) (xy 195.125156 55.680926) - (xy 195.047225 55.737546) (xy 195.039843 55.74168) (xy 194.950285 55.831239) (xy 194.922027 55.852392) - (xy 194.908309 55.859882) (xy 194.890892 55.863671) (xy 194.875255 55.872212) (xy 194.840051 55.874733) - (xy 194.838245 55.874604) (xy 194.780044 55.855236) (xy 194.773529 55.851049) (xy 194.752893 55.834419) - (xy 194.664648 55.746174) (xy 194.664647 55.746173) (xy 194.664646 55.746172) (xy 194.589394 55.691498) - (xy 194.505409 55.630478) (xy 194.505406 55.630477) (xy 194.505407 55.630477) (xy 194.505405 55.630476) - (xy 194.493262 55.624289) (xy 194.493259 55.624287) (xy 194.43091 55.592519) (xy 194.330029 55.541117) - (xy 194.142826 55.48029) (xy 194.14282 55.480289) (xy 193.948427 55.4495) (xy 193.948422 55.4495) - (xy 193.948417 55.4495) (xy 193.751583 55.4495) (xy 193.751578 55.4495) (xy 193.751573 55.4495) - (xy 193.557178 55.480289) (xy 193.557176 55.480289) (xy 193.557173 55.48029) (xy 193.36997 55.541117) - (xy 193.33566 55.558599) (xy 193.194594 55.630475) (xy 193.125157 55.680926) (xy 193.125156 55.680926) - (xy 193.035647 55.745958) (xy 193.03535 55.746173) (xy 192.94993 55.831592) (xy 192.921676 55.852743) - (xy 192.907957 55.860234) (xy 192.890538 55.864023) (xy 192.8749 55.872565) (xy 192.839696 55.875086) - (xy 192.839022 55.875037) (xy 192.837889 55.874956) (xy 192.779679 55.855583) (xy 192.773171 55.8514) - (xy 192.752536 55.83477) (xy 192.664322 55.746556) (xy 192.663796 55.746174) (xy 192.505143 55.630904) - (xy 192.363235 55.558599) (xy 192.329839 55.541583) (xy 192.329838 55.541582) (xy 192.329835 55.541581) - (xy 192.142705 55.480778) (xy 192.142699 55.480777) (xy 192.1 55.474013) (xy 192.1 56.05767) (xy 192.099999 56.057676) - (xy 192.1 56.057679) (xy 192.094975 56.092614) (xy 192.09057 56.107612) (xy 192.052827 56.166355) - (xy 192.052792 56.166385) (xy 192.052791 56.166387) (xy 192.052789 56.166387) (xy 192.051458 56.167542) - (xy 191.996597 56.195018) (xy 191.989039 56.196663) (xy 191.962668 56.1995) (xy 191.74183 56.1995) - (xy 191.741825 56.199499) (xy 191.741823 56.1995) (xy 191.706889 56.194475) (xy 191.69189 56.19007) - (xy 191.633144 56.152327) (xy 191.633115 56.152293) (xy 191.633114 56.152293) (xy 191.633113 56.152291) - (xy 191.631957 56.150958) (xy 191.604477 56.096083) (xy 191.602832 56.088521) (xy 191.6 56.062168) - (xy 191.6 55.474014) (xy 191.599999 55.474014) (xy 191.587113 55.476054) (xy 191.557298 55.480777) - (xy 191.557295 55.480777) (xy 191.557294 55.480778) (xy 191.370164 55.541581) (xy 191.370161 55.541582) - (xy 191.370159 55.541583) (xy 191.194855 55.630904) (xy 191.035676 55.746556) (xy 190.896556 55.885676) - (xy 190.780906 56.044852) (xy 190.780905 56.044854) (xy 190.744701 56.115909) (xy 190.7447 56.11591) - (xy 190.7447 56.115911) (xy 190.724364 56.144757) (xy 190.712643 56.157167) (xy 190.654881 56.19172) - (xy 190.645904 56.194149) (xy 190.642032 56.195196) (xy 190.609648 56.1995) (xy 190.384108 56.1995) - (xy 190.256808 56.233609) (xy 190.256806 56.23361) (xy 190.142696 56.299493) (xy 190.142682 56.299502) - (xy 190.142677 56.299506) (xy 190.049506 56.392677) (xy 190.049502 56.392682) (xy 190.049493 56.392696) - (xy 189.98361 56.506806) (xy 189.983609 56.506808) (xy 189.9495 56.634108) (xy 189.9495 57.730229) - (xy 189.949499 57.730231) (xy 189.9495 57.730232) (xy 189.945891 57.755327) (xy 189.944476 57.765167) - (xy 189.941289 57.77602) (xy 189.903514 57.834797) (xy 189.839957 57.86382) (xy 189.770807 57.853879) - (xy 189.763829 57.850692) (xy 189.727659 57.82558) (xy 189.640292 57.738213) (xy 189.640291 57.738212) - (xy 189.64029 57.738211) (xy 189.581779 57.699115) (xy 189.509185 57.650609) (xy 189.509172 57.650602) - (xy 189.509165 57.650598) (xy 189.363502 57.590264) (xy 189.363471 57.590257) (xy 189.208847 57.5595) - (xy 189.208845 57.5595) (xy 189.208842 57.5595) (xy 189.173797 57.5595) (xy 189.173792 57.559499) - (xy 189.17379 57.5595) (xy 189.138856 57.554475) (xy 189.123857 57.55007) (xy 189.065088 57.512301) - (xy 189.060276 57.506748) (xy 189.032369 57.449735) (xy 189.029738 57.436508) (xy 189.029737 57.436507) - (xy 189.029737 57.436503) (xy 189.029735 57.436498) (xy 189.029497 57.4353) (xy 189.027421 57.430911) - (xy 189.025586 57.426483) (xy 189.025585 57.42648) (xy 189.025578 57.426464) (xy 188.969397 57.290827) - (xy 188.96939 57.290814) (xy 188.881789 57.159711) (xy 188.881786 57.159707) (xy 188.881781 57.159701) - (xy 188.770297 57.048217) (xy 188.770291 57.048212) (xy 188.77029 57.048211) (xy 188.639191 56.960613) - (xy 188.63919 56.960612) (xy 188.639185 56.960609) (xy 188.639172 56.960602) (xy 188.639165 56.960598) - (xy 188.493502 56.900264) (xy 188.493471 56.900257) (xy 188.338847 56.8695) (xy 188.338845 56.8695) - (xy 188.338842 56.8695) (xy 188.181158 56.8695) (xy 188.181155 56.8695) (xy 188.181153 56.8695) - (xy 188.026527 56.900257) (xy 188.026496 56.900264) (xy 187.880833 56.960598) (xy 187.880824 56.960603) - (xy 187.880807 56.960613) (xy 187.749708 57.048211) (xy 187.749707 57.048212) (xy 187.749701 57.048217) - (xy 187.638217 57.159701) (xy 187.638212 57.159707) (xy 187.638211 57.159708) (xy 187.550613 57.290807) - (xy 187.5506 57.290829) (xy 187.550599 57.290831) (xy 187.490264 57.436496) (xy 187.490257 57.436527) - (xy 187.4595 57.59115) (xy 187.4595 57.740316) (xy 187.457328 57.763424) (xy 187.453624 57.782952) - (xy 187.421791 57.845149) (xy 187.364071 57.87957) (xy 187.352156 57.882782) (xy 187.319881 57.887056) - (xy 187.30836 57.887056) (xy 187.153734 57.917813) (xy 187.153703 57.91782) (xy 187.00804 57.978154) - (xy 187.008031 57.978159) (xy 187.008014 57.978169) (xy 186.876915 58.065767) (xy 186.876914 58.065768) - (xy 186.876908 58.065773) (xy 186.765424 58.177257) (xy 186.765419 58.177263) (xy 186.765418 58.177264) - (xy 186.67782 58.308363) (xy 186.67781 58.30838) (xy 186.677805 58.308389) (xy 186.617471 58.454052) - (xy 186.617464 58.454083) (xy 186.586707 58.608706) (xy 186.586707 58.608709) (xy 186.586707 58.766402) - (xy 186.586707 58.766404) (xy 186.586706 58.766404) (xy 175.8505 58.766404) (xy 175.8505 58.710925) - (xy 175.833768 58.626813) (xy 175.833767 58.626809) (xy 175.825427 58.584882) (xy 175.825427 58.584881) - (xy 175.825262 58.584053) (xy 175.823177 58.579644) (xy 175.780797 58.477329) (xy 175.780797 58.47733) - (xy 175.776464 58.46687) (xy 175.712932 58.371789) (xy 175.705276 58.360331) (xy 175.705273 58.360327) - (xy 175.705268 58.360321) (xy 175.614677 58.26973) (xy 175.614671 58.269725) (xy 175.614667 58.269722) - (xy 175.508127 58.198534) (xy 175.508128 58.198534) (xy 175.508118 58.198529) (xy 175.389753 58.149502) - (xy 175.389733 58.149495) (xy 175.389725 58.149493) (xy 175.264074 58.1245) (xy 175.264071 58.1245) - (xy 175.264069 58.1245) (xy 175.135931 58.1245) (xy 175.135929 58.1245) (xy 175.135926 58.1245) - (xy 175.010273 58.149493) (xy 175.010265 58.149495) (xy 175.010245 58.149502) (xy 174.89188 58.198529) - (xy 174.89187 58.198534) (xy 174.785332 58.269722) (xy 174.785327 58.269725) (xy 174.785321 58.26973) - (xy 174.69473 58.360321) (xy 174.694725 58.360327) (xy 174.623534 58.46687) (xy 174.623529 58.46688) - (xy 174.574502 58.585245) (xy 174.574499 58.585255) (xy 174.574493 58.585273) (xy 174.5495 58.710923) - (xy 174.5495 58.794702) (xy 174.544237 58.812622) (xy 161.147048 58.812622) (xy 161.169394 58.779179) - (xy 161.177681 58.759172) (xy 161.209281 58.682884) (xy 161.224513 58.646111) (xy 161.224515 58.6461) - (xy 161.229737 58.633497) (xy 161.2605 58.478842) (xy 161.2605 58.321158) (xy 161.2605 58.321155) - (xy 161.2605 58.320976) (xy 161.260076 58.319027) (xy 161.256521 58.301153) (xy 161.229737 58.166503) - (xy 161.229484 58.165892) (xy 161.226253 58.158091) (xy 161.193078 58.077999) (xy 161.169397 58.020827) - (xy 161.16939 58.020814) (xy 161.115615 57.940335) (xy 161.10635 57.92097) (xy 161.100387 57.908506) - (xy 161.097005 57.897706) (xy 161.09576 57.827849) (xy 161.13248 57.768406) (xy 161.195501 57.738254) - (xy 161.203088 57.737025) (xy 161.247099 57.737811) (xy 161.266119 57.741595) (xy 161.342147 57.756719) - (xy 161.361154 57.7605) (xy 161.518844 57.7605) (xy 161.522964 57.7605) (xy 161.530814 57.758118) - (xy 161.673497 57.729737) (xy 161.805283 57.67515) (xy 161.819172 57.669397) (xy 161.819172 57.669396) - (xy 161.819176 57.669394) (xy 161.819179 57.669394) (xy 161.81918 57.669393) (xy 161.821511 57.668428) - (xy 161.821534 57.668418) (xy 161.830791 57.664583) (xy 161.839677 57.655698) (xy 161.907684 57.610257) - (xy 161.950289 57.581789) (xy 162.061789 57.470289) (xy 162.149394 57.339179) (xy 162.209737 57.193497) - (xy 162.2405 57.038842) (xy 162.2405 56.887622) (xy 166.094237 56.887622) (xy 166.124494 57.039726) - (xy 166.124495 57.039732) (xy 166.124502 57.039753) (xy 166.173529 57.158118) (xy 166.173534 57.158128) - (xy 166.244724 57.26467) (xy 166.244725 57.264671) (xy 166.24473 57.264677) (xy 166.335319 57.355266) - (xy 166.335327 57.355273) (xy 166.335328 57.355274) (xy 166.335331 57.355276) (xy 166.441866 57.426461) - (xy 166.441872 57.426464) (xy 166.441873 57.426465) (xy 166.555362 57.473473) (xy 166.555947 57.473724) - (xy 166.556141 57.473884) (xy 166.559055 57.475262) (xy 166.685926 57.5005) (xy 166.814071 57.5005) - (xy 166.814073 57.5005) (xy 166.898615 57.483682) (xy 166.939744 57.475501) (xy 167.058127 57.426465) - (xy 167.074946 57.415227) (xy 167.169739 57.351889) (xy 167.170054 57.35236) (xy 167.179275 57.346098) - (xy 167.19668 57.336593) (xy 167.264949 57.321737) (xy 167.266764 57.321867) (xy 167.32495 57.341233) - (xy 167.333954 57.347019) (xy 167.344941 57.355017) (xy 167.435053 57.415227) (xy 167.451866 57.426461) - (xy 167.451872 57.426464) (xy 167.451873 57.426465) (xy 167.565329 57.47346) (xy 167.565946 57.473724) - (xy 167.566138 57.473883) (xy 167.569055 57.475262) (xy 167.695926 57.5005) (xy 167.824071 57.5005) - (xy 167.824073 57.5005) (xy 167.908615 57.483682) (xy 167.949744 57.475501) (xy 168.068127 57.426465) - (xy 168.174669 57.355276) (xy 168.265276 57.264669) (xy 168.336465 57.158127) (xy 168.340768 57.14774) - (xy 168.380349 57.05218) (xy 168.389023 57.040508) (xy 168.392558 57.029633) (xy 168.398349 57.021839) - (xy 168.405457 57.013019) (xy 168.413706 57.007291) (xy 168.416425 57.003633) (xy 168.425111 56.996532) - (xy 168.435562 56.992116) (xy 168.462848 56.973172) (xy 168.482025 56.972487) (xy 168.489473 56.969341) - (xy 168.503264 56.971729) (xy 168.532674 56.970679) (xy 168.547292 56.979352) (xy 168.558318 56.981262) - (xy 168.572588 56.994361) (xy 168.592762 57.006332) (xy 168.594032 57.007696) (xy 168.594384 57.008074) - (xy 168.600459 57.019947) (xy 168.609789 57.028512) (xy 168.61501 57.048384) (xy 168.620875 57.059846) - (xy 168.62287 57.059255) (xy 168.624493 57.064729) (xy 168.624496 57.064738) (xy 168.624497 57.064739) - (xy 168.624499 57.064744) (xy 168.642504 57.108212) (xy 168.673535 57.183129) (xy 168.744724 57.28967) - (xy 168.744725 57.289671) (xy 168.74473 57.289677) (xy 168.835325 57.380272) (xy 168.835331 57.380276) - (xy 168.941866 57.451461) (xy 168.941872 57.451464) (xy 168.941873 57.451465) (xy 169.055362 57.498473) - (xy 169.055947 57.498724) (xy 169.056141 57.498884) (xy 169.059053 57.500261) (xy 169.060252 57.500499) - (xy 169.060256 57.500501) (xy 169.060259 57.500501) (xy 169.06026 57.500501) (xy 169.060261 57.500502) - (xy 169.156002 57.519547) (xy 169.185927 57.5255) (xy 169.314071 57.5255) (xy 169.314073 57.5255) - (xy 169.398615 57.508682) (xy 169.439744 57.500501) (xy 169.558127 57.451465) (xy 169.664669 57.380276) - (xy 169.664672 57.380273) (xy 169.664674 57.380272) (xy 169.755273 57.289672) (xy 169.755275 57.28967) - (xy 169.755276 57.289669) (xy 169.826465 57.183127) (xy 169.875501 57.064744) (xy 169.875504 57.064729) - (xy 169.875776 57.063833) (xy 169.875771 57.063729) (xy 169.875976 57.063176) (xy 169.877267 57.058921) - (xy 169.877527 57.059) (xy 169.886644 57.034463) (xy 169.890819 57.026482) (xy 169.903175 57.013677) - (xy 169.907261 57.005862) (xy 169.91981 56.996439) (xy 169.939335 56.976206) (xy 170.007333 56.960141) - (xy 170.073222 56.983388) (xy 170.113486 57.032454) (xy 170.114974 57.03571) (xy 170.115615 57.037114) - (xy 170.118173 57.045033) (xy 170.119649 57.047069) (xy 170.119821 57.050135) (xy 170.12334 57.061031) - (xy 170.123504 57.060988) (xy 170.124312 57.064039) (xy 170.124432 57.06441) (xy 170.124497 57.064737) - (xy 170.124497 57.06474) (xy 170.1245 57.064747) (xy 170.124502 57.064753) (xy 170.173529 57.183118) - (xy 170.173532 57.183123) (xy 170.173534 57.183127) (xy 170.244724 57.28967) (xy 170.244725 57.289671) - (xy 170.24473 57.289677) (xy 170.335325 57.380272) (xy 170.335331 57.380276) (xy 170.441866 57.451461) - (xy 170.441872 57.451464) (xy 170.441873 57.451465) (xy 170.555362 57.498473) (xy 170.555947 57.498724) - (xy 170.556141 57.498884) (xy 170.559053 57.500261) (xy 170.560252 57.500499) (xy 170.560256 57.500501) - (xy 170.560259 57.500501) (xy 170.56026 57.500501) (xy 170.560261 57.500502) (xy 170.656002 57.519547) - (xy 170.685927 57.5255) (xy 170.814071 57.5255) (xy 170.814073 57.5255) (xy 170.898615 57.508682) - (xy 170.939744 57.500501) (xy 171.058127 57.451465) (xy 171.164669 57.380276) (xy 171.164673 57.380271) - (xy 171.169379 57.376411) (xy 171.169707 57.376811) (xy 171.19169 57.360352) (xy 171.20542 57.352855) - (xy 171.273678 57.338001) (xy 171.281008 57.338525) (xy 171.341063 57.359106) (xy 171.441873 57.426465) - (xy 171.560256 57.475501) (xy 171.560257 57.475501) (xy 171.560259 57.475502) (xy 171.685926 57.5005) - (xy 171.814071 57.5005) (xy 171.814073 57.5005) (xy 171.898615 57.483682) (xy 171.939744 57.475501) - (xy 172.058127 57.426465) (xy 172.164669 57.355276) (xy 172.255276 57.264669) (xy 172.326465 57.158127) - (xy 172.375501 57.039744) (xy 172.384115 56.996439) (xy 172.388475 56.974522) (xy 172.388475 56.974521) - (xy 172.4005 56.914072) (xy 172.4005 56.785925) (xy 172.375262 56.659055) (xy 172.373176 56.654644) - (xy 172.372632 56.653331) (xy 172.326465 56.541873) (xy 172.326464 56.541872) (xy 172.326463 56.54187) - (xy 172.326463 56.541869) (xy 172.255274 56.435328) (xy 172.255273 56.435327) (xy 172.255268 56.435321) - (xy 172.164677 56.34473) (xy 172.164671 56.344725) (xy 172.16467 56.344724) (xy 172.058127 56.273534) - (xy 172.058128 56.273534) (xy 172.058118 56.273529) (xy 171.939753 56.224502) (xy 171.939733 56.224495) - (xy 171.939725 56.224493) (xy 171.814074 56.1995) (xy 171.814071 56.1995) (xy 171.814069 56.1995) - (xy 171.685931 56.1995) (xy 171.685929 56.1995) (xy 171.685926 56.1995) (xy 171.560273 56.224493) - (xy 171.560265 56.224495) (xy 171.560245 56.224502) (xy 171.44188 56.273529) (xy 171.44187 56.273534) - (xy 171.335342 56.344715) (xy 171.335322 56.34473) (xy 171.333241 56.346631) (xy 171.333054 56.346426) - (xy 171.332712 56.346682) (xy 171.332607 56.346542) (xy 171.332606 56.346544) (xy 171.332582 56.346508) - (xy 171.33257 56.346493) (xy 171.308294 56.364654) (xy 171.294577 56.372144) (xy 171.226304 56.386996) - (xy 171.22629 56.386995) (xy 171.218961 56.38647) (xy 171.15893 56.365889) (xy 171.103637 56.328943) - (xy 171.05814 56.298542) (xy 171.058113 56.298527) (xy 170.939753 56.249502) (xy 170.939733 56.249495) - (xy 170.939725 56.249493) (xy 170.814074 56.2245) (xy 170.814071 56.2245) (xy 170.814069 56.2245) - (xy 170.685931 56.2245) (xy 170.685929 56.2245) (xy 170.685926 56.2245) (xy 170.560273 56.249493) - (xy 170.560265 56.249495) (xy 170.560245 56.249502) (xy 170.44188 56.298529) (xy 170.44187 56.298534) - (xy 170.335328 56.369724) (xy 170.335327 56.369725) (xy 170.335321 56.36973) (xy 170.24473 56.460321) - (xy 170.244725 56.460327) (xy 170.244724 56.460328) (xy 170.173535 56.566869) (xy 170.154529 56.612755) - (xy 170.124499 56.685255) (xy 170.124497 56.685259) (xy 170.124202 56.686254) (xy 170.124208 56.68635) - (xy 170.124041 56.686796) (xy 170.122872 56.69074) (xy 170.122604 56.69066) (xy 170.113351 56.715543) - (xy 170.109183 56.723511) (xy 170.096794 56.736349) (xy 170.092695 56.744184) (xy 170.080174 56.753573) - (xy 170.060668 56.77379) (xy 169.992671 56.789858) (xy 169.926781 56.766614) (xy 169.886518 56.717556) - (xy 169.884384 56.712885) (xy 169.881808 56.704907) (xy 169.880324 56.702857) (xy 169.880153 56.69978) - (xy 169.875562 56.685565) (xy 169.875502 56.68526) (xy 169.875501 56.685258) (xy 169.875501 56.685256) - (xy 169.8755 56.685254) (xy 169.875368 56.684589) (xy 169.873825 56.681209) (xy 169.832245 56.580827) - (xy 169.832244 56.580824) (xy 169.826467 56.566877) (xy 169.826464 56.56687) (xy 169.755274 56.460328) - (xy 169.755273 56.460327) (xy 169.755268 56.460321) (xy 169.664677 56.36973) (xy 169.664671 56.369725) - (xy 169.66467 56.369724) (xy 169.558127 56.298534) (xy 169.558128 56.298534) (xy 169.558118 56.298529) - (xy 169.439753 56.249502) (xy 169.439733 56.249495) (xy 169.439725 56.249493) (xy 169.314074 56.2245) - (xy 169.314071 56.2245) (xy 169.314069 56.2245) (xy 169.185931 56.2245) (xy 169.185929 56.2245) - (xy 169.185926 56.2245) (xy 169.060273 56.249493) (xy 169.060265 56.249495) (xy 169.060245 56.249502) - (xy 168.94188 56.298529) (xy 168.94187 56.298534) (xy 168.835328 56.369724) (xy 168.835327 56.369725) - (xy 168.835321 56.36973) (xy 168.74473 56.460321) (xy 168.744725 56.460327) (xy 168.744724 56.460328) - (xy 168.673536 56.566867) (xy 168.673531 56.56688) (xy 168.629648 56.67282) (xy 168.620959 56.684507) - (xy 168.617411 56.695409) (xy 168.611637 56.703175) (xy 168.604541 56.71198) (xy 168.596262 56.717727) - (xy 168.593533 56.721399) (xy 168.584846 56.728495) (xy 168.574409 56.732899) (xy 168.547147 56.751827) - (xy 168.527934 56.752512) (xy 168.520474 56.755661) (xy 168.506698 56.753269) (xy 168.477322 56.754318) - (xy 168.462678 56.745629) (xy 168.451633 56.743712) (xy 168.437381 56.730618) (xy 168.417234 56.718664) - (xy 168.417233 56.718663) (xy 168.415642 56.716954) (xy 168.409552 56.705051) (xy 168.400181 56.696442) - (xy 168.394956 56.676523) (xy 168.389301 56.66547) (xy 168.387269 56.666087) (xy 168.385502 56.660261) - (xy 168.385501 56.660256) (xy 168.336465 56.541873) (xy 168.336464 56.541872) (xy 168.336463 56.54187) - (xy 168.336463 56.541869) (xy 168.265274 56.435328) (xy 168.265273 56.435327) (xy 168.265268 56.435321) - (xy 168.174677 56.34473) (xy 168.174671 56.344725) (xy 168.17467 56.344724) (xy 168.068127 56.273534) - (xy 168.068128 56.273534) (xy 168.068118 56.273529) (xy 167.949753 56.224502) (xy 167.949733 56.224495) - (xy 167.949725 56.224493) (xy 167.824074 56.1995) (xy 167.824071 56.1995) (xy 167.824069 56.1995) - (xy 167.695931 56.1995) (xy 167.695929 56.1995) (xy 167.695926 56.1995) (xy 167.570273 56.224493) - (xy 167.570265 56.224495) (xy 167.570245 56.224502) (xy 167.45188 56.273529) (xy 167.45187 56.273534) - (xy 167.345328 56.344724) (xy 167.343944 56.345705) (xy 167.343847 56.345568) (xy 167.331596 56.353425) - (xy 167.313311 56.363409) (xy 167.245051 56.378261) (xy 167.243245 56.378132) (xy 167.185046 56.358766) - (xy 167.176369 56.353189) (xy 167.168341 56.347174) (xy 167.168196 56.347368) (xy 167.164682 56.344732) - (xy 167.16467 56.344724) (xy 167.058127 56.273534) (xy 167.058128 56.273534) (xy 167.058118 56.273529) - (xy 166.939753 56.224502) (xy 166.939733 56.224495) (xy 166.939725 56.224493) (xy 166.814074 56.1995) - (xy 166.814071 56.1995) (xy 166.814069 56.1995) (xy 166.685931 56.1995) (xy 166.685929 56.1995) - (xy 166.685926 56.1995) (xy 166.560273 56.224493) (xy 166.560265 56.224495) (xy 166.560245 56.224502) - (xy 166.44188 56.273529) (xy 166.44187 56.273534) (xy 166.335328 56.344724) (xy 166.335327 56.344725) - (xy 166.335321 56.34473) (xy 166.24473 56.435321) (xy 166.244725 56.435327) (xy 166.244724 56.435328) - (xy 166.173534 56.54187) (xy 166.173529 56.54188) (xy 166.124502 56.660245) (xy 166.1245 56.660252) - (xy 166.124493 56.660273) (xy 166.0995 56.785923) (xy 166.0995 56.869702) (xy 166.094237 56.887622) - (xy 162.2405 56.887622) (xy 162.2405 56.881158) (xy 162.2405 56.881155) (xy 162.240499 56.881153) - (xy 162.238999 56.873614) (xy 162.238999 56.873609) (xy 162.225159 56.804031) (xy 162.223523 56.795808) - (xy 162.209738 56.726508) (xy 162.209737 56.726507) (xy 162.209737 56.726503) (xy 162.209736 56.7265) - (xy 162.209497 56.725299) (xy 162.207412 56.72089) (xy 162.196579 56.694737) (xy 162.196579 56.694736) - (xy 162.157914 56.60139) (xy 162.149397 56.580827) (xy 162.14939 56.580814) (xy 162.061789 56.449711) - (xy 162.061786 56.449707) (xy 162.061781 56.449701) (xy 161.950297 56.338217) (xy 161.950291 56.338212) - (xy 161.95029 56.338211) (xy 161.819191 56.250613) (xy 161.81919 56.250612) (xy 161.819185 56.250609) - (xy 161.819172 56.250602) (xy 161.819165 56.250598) (xy 161.673502 56.190264) (xy 161.673471 56.190257) - (xy 161.518847 56.1595) (xy 161.518845 56.1595) (xy 161.518842 56.1595) (xy 161.361158 56.1595) - (xy 161.361155 56.1595) (xy 161.361153 56.1595) (xy 161.206527 56.190257) (xy 161.206496 56.190264) - (xy 161.060833 56.250598) (xy 161.060824 56.250603) (xy 161.060807 56.250613) (xy 160.929708 56.338211) - (xy 160.929707 56.338212) (xy 160.929701 56.338217) (xy 160.818217 56.449701) (xy 160.818212 56.449707) - (xy 160.818211 56.449708) (xy 160.730613 56.580807) (xy 160.730603 56.580824) (xy 160.730602 56.580827) - (xy 160.730599 56.580831) (xy 160.670264 56.726496) (xy 160.670257 56.726527) (xy 160.6395 56.88115) - (xy 160.6395 56.881153) (xy 160.6395 57.038846) (xy 160.6395 57.038848) (xy 160.639499 57.038848) - (xy 160.670257 57.193471) (xy 160.670264 57.193502) (xy 160.730598 57.339165) (xy 160.730602 57.339172) - (xy 160.730609 57.339185) (xy 160.730613 57.339191) (xy 160.730619 57.339201) (xy 160.784378 57.419657) - (xy 160.795725 57.443371) (xy 160.799608 57.451485) (xy 160.802989 57.46228) (xy 160.804241 57.532139) - (xy 160.767526 57.591585) (xy 160.704501 57.621743) (xy 160.696922 57.622971) (xy 160.652895 57.622186) - (xy 160.538847 57.5995) (xy 160.538845 57.5995) (xy 160.538842 57.5995) (xy 160.381158 57.5995) - (xy 160.381155 57.5995) (xy 160.381153 57.5995) (xy 160.226527 57.630257) (xy 160.226496 57.630264) - (xy 160.080833 57.690598) (xy 160.080824 57.690603) (xy 160.080807 57.690613) (xy 159.949708 57.778211) - (xy 159.949707 57.778212) (xy 159.949701 57.778217) (xy 159.838217 57.889701) (xy 159.838212 57.889707) - (xy 159.838211 57.889708) (xy 159.750613 58.020807) (xy 159.750603 58.020824) (xy 159.750598 58.020833) - (xy 159.690264 58.166496) (xy 159.690257 58.166527) (xy 159.6595 58.32115) (xy 159.6595 58.321153) - (xy 159.6595 58.478846) (xy 159.6595 58.478848) (xy 159.659499 58.478848) (xy 158.516521 58.478848) - (xy 158.5205 58.458842) (xy 158.5205 58.301158) (xy 158.5205 58.301155) (xy 158.520499 58.301153) - (xy 158.515466 58.275854) (xy 158.514247 58.269722) (xy 158.500087 58.198538) (xy 158.489737 58.146503) - (xy 158.482559 58.129173) (xy 158.480623 58.124499) (xy 158.448357 58.046602) (xy 158.429397 58.000827) - (xy 158.42939 58.000814) (xy 158.342515 57.870797) (xy 158.341787 57.869708) (xy 158.341786 57.869707) - (xy 158.341781 57.869701) (xy 158.230297 57.758217) (xy 158.230291 57.758212) (xy 158.23029 57.758211) - (xy 158.099191 57.670613) (xy 158.09919 57.670612) (xy 158.099185 57.670609) (xy 158.099172 57.670602) - (xy 158.099165 57.670598) (xy 157.953502 57.610264) (xy 157.953471 57.610257) (xy 157.798847 57.5795) - (xy 157.798845 57.5795) (xy 157.798842 57.5795) (xy 157.641158 57.5795) (xy 157.641155 57.5795) - (xy 157.641153 57.5795) (xy 157.486527 57.610257) (xy 157.486496 57.610264) (xy 157.340833 57.670598) - (xy 157.340824 57.670603) (xy 157.340807 57.670613) (xy 157.209708 57.758211) (xy 157.209707 57.758212) - (xy 157.209701 57.758217) (xy 157.098217 57.869701) (xy 157.098212 57.869707) (xy 157.098211 57.869708) - (xy 157.010613 58.000807) (xy 157.010603 58.000824) (xy 157.010598 58.000833) (xy 156.950264 58.146496) - (xy 156.950257 58.146527) (xy 156.9195 58.30115) (xy 156.9195 58.301151) (xy 156.9195 58.301153) - (xy 156.9195 58.458846) (xy 156.9195 58.458848) (xy 156.919499 58.458848) (xy 154.325842 58.458848) - (xy 154.278847 58.4495) (xy 154.278845 58.4495) (xy 154.278842 58.4495) (xy 154.121158 58.4495) - (xy 154.121155 58.4495) (xy 154.121153 58.4495) (xy 153.966527 58.480257) (xy 153.966496 58.480264) - (xy 153.820833 58.540598) (xy 153.820827 58.540602) (xy 153.820807 58.540613) (xy 153.689708 58.628211) - (xy 153.689707 58.628212) (xy 153.689701 58.628217) (xy 153.578217 58.739701) (xy 153.578212 58.739707) - (xy 153.578211 58.739708) (xy 153.490613 58.870807) (xy 153.490603 58.870824) (xy 153.490598 58.870833) - (xy 153.430264 59.016496) (xy 153.430257 59.016527) (xy 153.3995 59.17115) (xy 153.3995 59.171153) - (xy 153.3995 59.328846) (xy 153.3995 59.328848) (xy 153.399499 59.328848) (xy 144.416329 59.328848) - (xy 144.40587 59.318389) (xy 144.405864 59.318384) (xy 144.405863 59.318383) (xy 144.330711 59.268168) - (xy 144.330667 59.268137) (xy 144.274774 59.230791) (xy 144.274764 59.230785) (xy 144.274758 59.230781) - (xy 144.274745 59.230774) (xy 144.274738 59.23077) (xy 144.129075 59.170436) (xy 144.129044 59.170429) - (xy 143.97442 59.139672) (xy 143.974418 59.139672) (xy 143.974415 59.139672) (xy 143.816731 59.139672) - (xy 143.773559 59.148259) (xy 143.757759 59.151402) (xy 143.722515 59.15329) (xy 143.701621 59.15142) - (xy 143.644716 59.131633) (xy 143.639092 59.127948) (xy 143.619373 59.111913) (xy 143.589408 59.081948) - (xy 143.589407 59.081947) (xy 143.589406 59.081946) (xy 143.458307 58.994348) (xy 143.458306 58.994347) - (xy 143.458301 58.994344) (xy 143.458288 58.994337) (xy 143.458281 58.994333) (xy 143.312618 58.933999) - (xy 143.312587 58.933992) (xy 143.157963 58.903235) (xy 143.157961 58.903235) (xy 143.157958 58.903235) - (xy 143.000274 58.903235) (xy 143.000271 58.903235) (xy 143.000269 58.903235) (xy 142.845643 58.933992) - (xy 142.845612 58.933999) (xy 142.699949 58.994333) (xy 142.69994 58.994338) (xy 142.699923 58.994348) - (xy 142.568824 59.081946) (xy 142.568823 59.081947) (xy 142.568817 59.081952) (xy 142.457333 59.193436) - (xy 142.457328 59.193442) (xy 142.457327 59.193443) (xy 142.369737 59.324531) (xy 142.369719 59.324559) - (xy 142.369714 59.324568) (xy 142.30938 59.470231) (xy 142.30938 59.470233) (xy 142.309377 59.470245) - (xy 142.305834 59.488056) (xy 142.278616 59.624885) (xy 142.278616 59.624888) (xy 142.278616 59.782581) - (xy 142.278616 59.782583) (xy 142.278615 59.782583) (xy 138.534916 59.782583) (xy 138.525262 59.734054) - (xy 138.523175 59.729641) (xy 138.520645 59.723534) (xy 138.481565 59.629185) (xy 138.48156 59.629174) - (xy 138.476467 59.616877) (xy 138.476465 59.616874) (xy 138.476461 59.616866) (xy 138.405276 59.510331) - (xy 138.405273 59.510327) (xy 138.405268 59.510321) (xy 138.314677 59.41973) (xy 138.314674 59.419728) - (xy 138.314672 59.419726) (xy 138.314668 59.419723) (xy 138.282999 59.398563) (xy 138.279645 59.39555) - (xy 138.25675 59.374984) (xy 138.247844 59.364328) (xy 138.21996 59.300269) (xy 138.231134 59.231302) - (xy 138.23589 59.221362) (xy 138.260066 59.187199) (xy 138.26859 59.178676) (xy 138.268592 59.178674) - (xy 138.356197 59.047564) (xy 138.41654 58.901882) (xy 138.447303 58.747227) (xy 138.447303 58.589543) - (xy 138.447303 58.58954) (xy 138.447303 58.589356) (xy 138.446867 58.587351) (xy 138.437568 58.540602) - (xy 138.416541 58.43489) (xy 138.416538 58.434881) (xy 138.406123 58.409738) (xy 138.406122 58.409736) - (xy 138.356203 58.289218) (xy 138.356198 58.289209) (xy 138.356193 58.289199) (xy 138.268592 58.158096) - (xy 138.268589 58.158092) (xy 138.268588 58.158091) (xy 138.268584 58.158086) (xy 138.1571 58.046602) - (xy 138.157093 58.046596) (xy 138.157091 58.046595) (xy 138.025994 57.958998) (xy 138.025993 57.958997) - (xy 138.025988 57.958994) (xy 138.025975 57.958987) (xy 138.025968 57.958983) (xy 137.880305 57.898649) - (xy 137.880274 57.898642) (xy 137.72565 57.867885) (xy 137.725648 57.867885) (xy 137.725645 57.867885) - (xy 137.567961 57.867885) (xy 137.567955 57.867885) (xy 137.543612 57.872726) (xy 137.54361 57.872728) - (xy 137.508366 57.874615) (xy 137.492798 57.873221) (xy 137.427785 57.847639) (xy 137.41703 57.839284) - (xy 137.39 57.810251) (xy 137.38118 57.797051) (xy 137.381178 57.797048) (xy 137.381176 57.797045) - (xy 137.381175 57.797044) (xy 137.381171 57.797039) (xy 137.302978 57.718846) (xy 147.109499 57.718846) - (xy 147.140257 57.873469) (xy 147.140264 57.8735) (xy 147.200598 58.019163) (xy 147.200603 58.019172) - (xy 147.200613 58.019189) (xy 147.288211 58.150288) (xy 147.288212 58.150289) (xy 147.288217 58.150295) - (xy 147.399701 58.261779) (xy 147.399707 58.261784) (xy 147.399711 58.261787) (xy 147.530814 58.349388) - (xy 147.530827 58.349395) (xy 147.645294 58.396808) (xy 147.676503 58.409735) (xy 147.80293 58.434883) - (xy 147.823533 58.438981) (xy 147.82625 58.439702) (xy 147.831155 58.440498) (xy 147.988844 58.440498) - (xy 147.992964 58.440498) (xy 148.000814 58.438116) (xy 148.143497 58.409735) (xy 148.283392 58.351789) - (xy 148.289172 58.349395) (xy 148.289172 58.349394) (xy 148.289179 58.349392) (xy 148.289183 58.349389) - (xy 148.291533 58.348416) (xy 148.291534 58.348415) (xy 148.300789 58.344583) (xy 148.309675 58.335696) - (xy 148.420289 58.261787) (xy 148.531789 58.150287) (xy 148.619394 58.019177) (xy 148.679737 57.873495) - (xy 148.7105 57.71884) (xy 148.7105 57.561156) (xy 148.7105 57.561153) (xy 148.7105 57.561151) (xy 148.7105 57.56115) - (xy 148.706599 57.541541) (xy 148.706597 57.541533) (xy 148.705408 57.535554) (xy 148.705408 57.535552) - (xy 148.701809 57.517458) (xy 149.469843 57.517458) (xy 149.469843 57.675156) (xy 149.5006 57.829779) - (xy 149.500607 57.82981) (xy 149.560941 57.975473) (xy 149.560946 57.975482) (xy 149.560956 57.975499) - (xy 149.648554 58.106598) (xy 149.648555 58.106599) (xy 149.64856 58.106605) (xy 149.760044 58.218089) - (xy 149.76005 58.218094) (xy 149.760054 58.218097) (xy 149.891157 58.305698) (xy 149.89117 58.305705) - (xy 149.891172 58.305705) (xy 149.891176 58.305708) (xy 149.962076 58.335075) (xy 150.023041 58.360327) - (xy 150.036846 58.366045) (xy 150.185588 58.395631) (xy 150.187258 58.396013) (xy 150.187527 58.396163) - (xy 150.191498 58.396808) (xy 150.349187 58.396808) (xy 150.353307 58.396808) (xy 150.361157 58.394426) - (xy 150.50384 58.366045) (xy 150.616509 58.319375) (xy 150.642977 58.308412) (xy 150.645768 58.307439) - (xy 150.647211 58.306772) (xy 150.651871 58.304729) (xy 150.66113 58.300893) (xy 150.670014 58.292009) - (xy 150.780632 58.218097) (xy 150.780635 58.218094) (xy 150.791345 58.207385) (xy 150.840644 58.158086) - (xy 150.89213 58.1066) (xy 150.892132 58.106597) (xy 150.949445 58.020822) (xy 150.979736 57.975489) - (xy 150.979739 57.975482) (xy 150.986574 57.958984) (xy 151.003623 57.917821) (xy 151.003624 57.91782) - (xy 151.003624 57.917819) (xy 151.04008 57.829805) (xy 151.040271 57.828848) (xy 151.058299 57.738211) - (xy 151.070843 57.67515) (xy 151.070843 57.517466) (xy 151.070843 57.516076) (xy 151.077375 57.493827) - (xy 151.079433 57.470726) (xy 151.087035 57.46093) (xy 151.089165 57.453675) (xy 151.084297 57.451452) - (xy 151.071748 57.431926) (xy 151.060372 57.420139) (xy 151.271177 57.420139) (xy 151.276046 57.422363) - (xy 151.288584 57.441873) (xy 151.304693 57.458553) (xy 151.311259 57.477157) (xy 151.31382 57.481141) - (xy 151.31645 57.491832) (xy 151.316639 57.49278) (xy 151.316649 57.492832) (xy 151.320256 57.510967) - (xy 151.320264 57.511001) (xy 151.380598 57.656665) (xy 151.380603 57.656674) (xy 151.380613 57.656691) - (xy 151.468211 57.78779) (xy 151.468212 57.787791) (xy 151.468217 57.787797) (xy 151.579701 57.899281) - (xy 151.579707 57.899286) (xy 151.579711 57.899289) (xy 151.710814 57.98689) (xy 151.710827 57.986897) - (xy 151.780233 58.015645) (xy 151.854952 58.046595) (xy 151.856498 58.047235) (xy 151.856503 58.047237) - (xy 151.99307 58.074402) (xy 152.003534 58.076483) (xy 152.006249 58.077204) (xy 152.011155 58.078) - (xy 152.168844 58.078) (xy 152.172964 58.078) (xy 152.180814 58.075618) (xy 152.323497 58.047237) - (xy 152.469179 57.986894) (xy 152.600289 57.899289) (xy 152.711789 57.787789) (xy 152.799394 57.656679) - (xy 152.801483 57.651636) (xy 152.801914 57.650597) (xy 152.813864 57.621744) (xy 152.826533 57.591158) - (xy 152.859737 57.510997) (xy 152.878787 57.415227) (xy 152.8905 57.356345) (xy 152.8905 57.198475) - (xy 152.890072 57.196511) (xy 152.88741 57.183124) (xy 152.876293 57.127235) (xy 152.859739 57.04401) - (xy 152.859737 57.044007) (xy 152.859737 57.044003) (xy 152.849053 57.018209) (xy 152.799397 56.898327) - (xy 152.79939 56.898314) (xy 152.711789 56.767211) (xy 152.711786 56.767207) (xy 152.711781 56.767201) - (xy 152.600297 56.655717) (xy 152.600291 56.655712) (xy 152.60029 56.655711) (xy 152.469191 56.568113) - (xy 152.46919 56.568112) (xy 152.469185 56.568109) (xy 152.469172 56.568102) (xy 152.469165 56.568098) - (xy 152.323502 56.507764) (xy 152.323471 56.507757) (xy 152.168847 56.477) (xy 152.168845 56.477) - (xy 152.168842 56.477) (xy 152.011158 56.477) (xy 152.011155 56.477) (xy 152.011153 56.477) (xy 151.856527 56.507757) - (xy 151.856496 56.507764) (xy 151.710833 56.568098) (xy 151.710824 56.568103) (xy 151.710807 56.568113) - (xy 151.579708 56.655711) (xy 151.579707 56.655712) (xy 151.579701 56.655717) (xy 151.468217 56.767201) - (xy 151.468212 56.767207) (xy 151.468211 56.767208) (xy 151.380613 56.898307) (xy 151.380603 56.898324) - (xy 151.380598 56.898333) (xy 151.320264 57.043996) (xy 151.320257 57.044027) (xy 151.2895 57.19865) - (xy 151.2895 57.357739) (xy 151.282961 57.380007) (xy 151.280895 57.403126) (xy 151.273301 57.412902) - (xy 151.271177 57.420139) (xy 151.060372 57.420139) (xy 151.055631 57.415227) (xy 151.04907 57.396638) - (xy 151.046523 57.392674) (xy 151.043888 57.381957) (xy 151.043553 57.380273) (xy 151.040081 57.362816) - (xy 151.04008 57.362815) (xy 151.04008 57.362811) (xy 151.040078 57.362806) (xy 151.039838 57.361599) - (xy 151.037724 57.357124) (xy 151.037401 57.356344) (xy 151.036959 57.355278) (xy 150.99943 57.264672) - (xy 150.97974 57.217135) (xy 150.979733 57.217122) (xy 150.892132 57.086019) (xy 150.892129 57.086015) - (xy 150.892124 57.086009) (xy 150.780637 56.974522) (xy 150.780634 56.97452) (xy 150.780633 56.974519) - (xy 150.649534 56.886921) (xy 150.649533 56.88692) (xy 150.649528 56.886917) (xy 150.649515 56.88691) - (xy 150.649508 56.886906) (xy 150.503845 56.826572) (xy 150.503814 56.826565) (xy 150.34919 56.795808) - (xy 150.349188 56.795808) (xy 150.349185 56.795808) (xy 150.191501 56.795808) (xy 150.191498 56.795808) - (xy 150.191496 56.795808) (xy 150.03687 56.826565) (xy 150.036839 56.826572) (xy 149.891176 56.886906) - (xy 149.891167 56.886911) (xy 149.89115 56.886921) (xy 149.760051 56.974519) (xy 149.760048 56.974522) - (xy 149.64856 57.086009) (xy 149.648555 57.086015) (xy 149.648554 57.086016) (xy 149.560956 57.217115) - (xy 149.560946 57.217132) (xy 149.560941 57.217141) (xy 149.500607 57.362804) (xy 149.5006 57.362835) - (xy 149.469843 57.517458) (xy 148.701809 57.517458) (xy 148.685704 57.436498) (xy 148.685303 57.434482) - (xy 148.679737 57.406501) (xy 148.668879 57.380287) (xy 148.668873 57.380272) (xy 148.631829 57.29084) - (xy 148.619397 57.260825) (xy 148.61939 57.260812) (xy 148.531789 57.129709) (xy 148.531786 57.129705) - (xy 148.531781 57.129699) (xy 148.420297 57.018215) (xy 148.42029 57.018209) (xy 148.420288 57.018208) - (xy 148.289191 56.930611) (xy 148.28919 56.93061) (xy 148.289185 56.930607) (xy 148.289172 56.9306) - (xy 148.289165 56.930596) (xy 148.143502 56.870262) (xy 148.143471 56.870255) (xy 147.988847 56.839498) - (xy 147.988845 56.839498) (xy 147.988842 56.839498) (xy 147.831158 56.839498) (xy 147.831155 56.839498) - (xy 147.831153 56.839498) (xy 147.676527 56.870255) (xy 147.676496 56.870262) (xy 147.530833 56.930596) - (xy 147.530824 56.930601) (xy 147.530807 56.930611) (xy 147.399711 57.018208) (xy 147.399709 57.018209) - (xy 147.399701 57.018215) (xy 147.288217 57.129699) (xy 147.288212 57.129705) (xy 147.288211 57.129706) - (xy 147.200613 57.260805) (xy 147.200603 57.260822) (xy 147.200598 57.260831) (xy 147.140264 57.406494) - (xy 147.140261 57.406508) (xy 147.1095 57.561148) (xy 147.1095 57.56115) (xy 147.1095 57.561151) - (xy 147.1095 57.718844) (xy 147.1095 57.718846) (xy 147.109499 57.718846) (xy 137.302978 57.718846) - (xy 137.269686 57.685554) (xy 137.26968 57.685549) (xy 137.269679 57.685548) (xy 137.228699 57.658166) - (xy 137.228655 57.658135) (xy 137.13859 57.597956) (xy 137.13858 57.59795) (xy 137.138574 57.597946) - (xy 137.138561 57.597939) (xy 137.138554 57.597935) (xy 136.992891 57.537601) (xy 136.99286 57.537594) - (xy 136.847244 57.508629) (xy 136.824999 57.501988) (xy 136.810042 57.495947) (xy 136.803633 57.493359) - (xy 136.751132 57.453128) (xy 136.743761 57.443371) (xy 136.728139 57.416077) (xy 136.724171 57.406498) - (xy 136.71172 57.376438) (xy 136.710075 57.37184) (xy 136.709392 57.370817) (xy 136.621789 57.239711) - (xy 136.621786 57.239707) (xy 136.621781 57.239701) (xy 136.510297 57.128217) (xy 136.51029 57.128211) - (xy 136.379191 57.040613) (xy 136.37919 57.040612) (xy 136.379185 57.040609) (xy 136.379172 57.040602) - (xy 136.379165 57.040598) (xy 136.233502 56.980264) (xy 136.233471 56.980257) (xy 136.078847 56.9495) - (xy 136.078845 56.9495) (xy 136.078842 56.9495) (xy 136.036711 56.9495) (xy 135.969672 56.929815) - (xy 135.923917 56.877011) (xy 135.913973 56.807853) (xy 135.942998 56.744297) (xy 136.001776 56.706523) - (xy 136.01252 56.703883) (xy 136.034553 56.699499) (xy 136.058497 56.694737) (xy 136.204179 56.634394) - (xy 136.335289 56.546789) (xy 136.446789 56.435289) (xy 136.534394 56.304179) (xy 136.556914 56.249809) - (xy 136.565594 56.238131) (xy 136.569136 56.227242) (xy 136.57492 56.219461) (xy 136.576443 56.217571) - (xy 136.582017 56.210653) (xy 136.590282 56.204914) (xy 136.593009 56.201247) (xy 136.601695 56.194149) - (xy 136.612137 56.189739) (xy 136.639407 56.170805) (xy 136.658606 56.170118) (xy 136.666062 56.166971) - (xy 136.679841 56.16936) (xy 136.709232 56.16831) (xy 136.723867 56.176993) (xy 136.734905 56.178907) - (xy 136.749162 56.192) (xy 136.76932 56.203959) (xy 136.769329 56.203969) (xy 136.770919 56.205677) - (xy 136.777006 56.217571) (xy 136.786366 56.226167) (xy 136.79159 56.24607) (xy 136.801775 56.26597) - (xy 136.80526 56.28349) (xy 136.805261 56.283493) (xy 136.805272 56.283523) (xy 136.865598 56.429165) - (xy 136.865603 56.429174) (xy 136.865613 56.429191) (xy 136.953211 56.56029) (xy 136.953212 56.560291) - (xy 136.953217 56.560297) (xy 137.064701 56.671781) (xy 137.064707 56.671786) (xy 137.064711 56.671789) - (xy 137.195814 56.75939) (xy 137.195827 56.759397) (xy 137.320243 56.810931) (xy 137.341503 56.819737) - (xy 137.440848 56.839498) (xy 137.488532 56.848983) (xy 137.491254 56.849704) (xy 137.496155 56.8505) - (xy 137.653844 56.8505) (xy 137.657964 56.8505) (xy 137.665814 56.848118) (xy 137.808497 56.819737) + (xy 123.467347 48.305523) (xy 123.492637 48.312949) (xy 123.545178 48.344041) (xy 130.278774 55.046366) + (xy 130.278775 55.046367) (xy 137.322897 55.029973) (xy 137.33881 55.034287) (xy 137.353404 55.033712) + (xy 137.357832 55.034912) (xy 137.363698 55.036619) (xy 137.375688 55.044284) (xy 137.386062 55.047097) + (xy 137.390512 55.049715) (xy 137.399991 55.059821) (xy 137.422565 55.074252) (xy 137.431246 55.093142) + (xy 137.438312 55.100675) (xy 137.440723 55.113763) (xy 137.451742 55.137738) (xy 137.448876 55.15801) + (xy 137.450973 55.169388) (xy 137.445318 55.183182) (xy 137.441964 55.20692) (xy 137.429815 55.221008) + (xy 137.424475 55.234038) (xy 137.409608 55.244441) (xy 137.396336 55.259834) (xy 137.396324 55.259841) + (xy 137.394912 55.260753) (xy 137.374462 55.269037) (xy 137.367231 55.274099) (xy 137.361403 55.274328) + (xy 137.351829 55.278208) (xy 137.341512 55.28026) (xy 137.341492 55.280265) (xy 137.341486 55.280268) + (xy 137.195833 55.340598) (xy 137.195824 55.340603) (xy 137.195807 55.340613) (xy 137.064709 55.428211) + (xy 137.064701 55.428217) (xy 136.953217 55.539701) (xy 136.953212 55.539707) (xy 136.953211 55.539708) + (xy 136.865613 55.670807) (xy 136.8656 55.670829) (xy 136.865599 55.670831) (xy 136.805264 55.816496) + (xy 136.805257 55.816527) (xy 136.7745 55.97115) (xy 136.7745 55.971153) (xy 136.7745 56.128846) + (xy 136.7745 56.128848) (xy 136.774499 56.128848) (xy 136.805257 56.283471) (xy 136.805264 56.283502) + (xy 136.865598 56.429165) (xy 136.865603 56.429174) (xy 136.865613 56.429191) (xy 136.953211 56.56029) + (xy 136.953212 56.560291) (xy 136.953217 56.560297) (xy 137.064701 56.671781) (xy 137.064707 56.671786) + (xy 137.064711 56.671789) (xy 137.195814 56.75939) (xy 137.195827 56.759397) (xy 137.341498 56.819735) + (xy 137.341503 56.819737) (xy 137.486068 56.848493) (xy 137.496153 56.850499) (xy 137.496156 56.8505) + (xy 137.496158 56.8505) (xy 137.653844 56.8505) (xy 137.653845 56.850499) (xy 137.808497 56.819737) (xy 137.954179 56.759394) (xy 138.085289 56.671789) (xy 138.196789 56.560289) (xy 138.284394 56.429179) - (xy 138.284419 56.42912) (xy 138.299511 56.392682) (xy 138.344737 56.283497) (xy 138.3755 56.128842) - (xy 138.3755 55.971158) (xy 138.3755 55.971155) (xy 138.3755 55.971143) (xy 138.37548 55.971059) - (xy 138.36703 55.928575) (xy 138.344737 55.816503) (xy 138.335861 55.795075) (xy 138.284397 55.670827) - (xy 138.28439 55.670814) (xy 138.196789 55.539711) (xy 138.196786 55.539707) (xy 138.196781 55.539701) - (xy 138.085297 55.428217) (xy 138.085291 55.428212) (xy 138.08529 55.428211) (xy 137.954179 55.340605) - (xy 137.95418 55.340605) (xy 137.95417 55.3406) (xy 137.839621 55.293154) (xy 137.838527 55.292272) - (xy 137.837133 55.292092) (xy 137.809263 55.275141) (xy 137.802199 55.269448) (xy 137.792035 55.254808) - (xy 137.785217 55.249314) (xy 137.778159 55.234821) (xy 137.762353 55.212054) (xy 137.759862 55.142229) - (xy 137.795517 55.082142) (xy 137.851306 55.052268) (xy 137.856252 55.05109) (xy 137.863527 55.050225) - (xy 137.865602 55.049243) (xy 137.868561 55.049626) (xy 137.884546 55.047725) (xy 146.036459 55.021208) - (xy 146.071398 55.026116) (xy 146.082267 55.029269) (xy 146.141164 55.066853) (xy 146.170393 55.130315) - (xy 146.160676 55.199499) (xy 146.157568 55.206364) (xy 146.132291 55.242898) (xy 146.125719 55.24947) - (xy 146.125707 55.249485) (xy 146.038113 55.380578) (xy 146.038103 55.380595) (xy 146.038098 55.380604) - (xy 145.977764 55.526267) (xy 145.977764 55.526268) (xy 145.977764 55.526269) (xy 145.977761 55.526281) - (xy 145.968189 55.574404) (xy 145.947 55.680921) (xy 145.947 55.680924) (xy 145.947 55.838617) (xy 145.947 55.838619) - (xy 145.946999 55.838619) (xy 145.977757 55.993242) (xy 145.977764 55.993273) (xy 146.038098 56.138936) - (xy 146.038103 56.138945) (xy 146.038113 56.138962) (xy 146.125711 56.270061) (xy 146.125712 56.270062) - (xy 146.125717 56.270068) (xy 146.237201 56.381552) (xy 146.237207 56.381557) (xy 146.237211 56.38156) - (xy 146.368314 56.469161) (xy 146.368327 56.469168) (xy 146.513998 56.529506) (xy 146.514003 56.529508) - (xy 146.608627 56.54833) (xy 146.625157 56.551618) (xy 146.661012 56.55875) (xy 146.663747 56.559474) - (xy 146.668655 56.560271) (xy 146.826344 56.560271) (xy 146.830464 56.560271) (xy 146.838314 56.557889) - (xy 146.980997 56.529508) (xy 147.093666 56.482838) (xy 147.120134 56.471875) (xy 147.122925 56.470902) - (xy 147.124368 56.470235) (xy 147.129028 56.468192) (xy 147.138287 56.464356) (xy 147.147171 56.455472) - (xy 147.257789 56.38156) (xy 147.369289 56.27006) (xy 147.456894 56.13895) (xy 147.517237 55.993268) - (xy 147.548 55.838613) (xy 147.548 55.680929) (xy 147.548 55.680926) (xy 147.548 55.680744) (xy 147.547565 55.678743) - (xy 147.54599 55.670827) (xy 147.537533 55.62831) (xy 147.531462 55.597791) (xy 147.519908 55.539701) - (xy 147.517237 55.526274) (xy 147.517234 55.526267) (xy 147.498392 55.480777) (xy 147.471027 55.414711) - (xy 147.456897 55.380598) (xy 147.45689 55.380585) (xy 147.369289 55.249482) (xy 147.369286 55.249478) - (xy 147.369285 55.249477) (xy 147.369281 55.249472) (xy 147.360756 55.240947) (xy 147.360754 55.240946) - (xy 147.339602 55.212692) (xy 147.338661 55.210968) (xy 147.334181 55.202764) (xy 147.319328 55.134495) - (xy 147.343742 55.06903) (xy 147.399672 55.027157) (xy 147.406996 55.024425) (xy 147.449917 55.01661) - (xy 149.465341 55.010054) (xy 149.500279 55.014962) (xy 149.511147 55.018114) (xy 149.526172 55.027701) - (xy 149.543293 55.032668) (xy 149.555014 55.046106) (xy 149.570045 55.055697) (xy 149.577502 55.071887) - (xy 149.589221 55.085322) (xy 149.591816 55.102963) (xy 149.599276 55.119158) (xy 149.596796 55.136812) - (xy 149.599391 55.154448) (xy 149.589559 55.188345) (xy 149.586451 55.19521) (xy 149.561169 55.231749) - (xy 149.560296 55.232621) (xy 149.556425 55.239863) (xy 149.475619 55.360797) (xy 149.475603 55.360824) - (xy 149.475598 55.360833) (xy 149.415264 55.506496) (xy 149.415264 55.506498) (xy 149.415261 55.50651) - (xy 149.411328 55.526281) (xy 149.3845 55.66115) (xy 149.3845 55.661153) (xy 149.3845 55.818846) - (xy 149.3845 55.818848) (xy 149.384499 55.818848) (xy 149.415257 55.973471) (xy 149.415264 55.973502) - (xy 149.475598 56.119165) (xy 149.475602 56.119172) (xy 149.475608 56.119184) (xy 149.475613 56.119191) - (xy 149.563211 56.25029) (xy 149.563212 56.250291) (xy 149.563217 56.250297) (xy 149.674701 56.361781) - (xy 149.674707 56.361786) (xy 149.674708 56.361787) (xy 149.674711 56.361789) (xy 149.805814 56.44939) - (xy 149.805827 56.449397) (xy 149.872468 56.477) (xy 149.951503 56.509737) (xy 149.951505 56.509737) - (xy 149.95151 56.509739) (xy 150.035279 56.526401) (xy 150.106153 56.540499) (xy 150.106156 56.5405) - (xy 150.106158 56.5405) (xy 150.263844 56.5405) (xy 150.263845 56.540499) (xy 150.418497 56.509737) + (xy 138.344737 56.283497) (xy 138.3755 56.128842) (xy 138.3755 55.971158) (xy 138.3755 55.971155) + (xy 138.3755 55.970971) (xy 138.375064 55.968966) (xy 138.357467 55.8805) (xy 138.344738 55.816506) + (xy 138.344735 55.816498) (xy 138.338021 55.800287) (xy 138.338021 55.800286) (xy 138.284399 55.670832) + (xy 138.284398 55.670829) (xy 138.284397 55.670827) (xy 138.28439 55.670814) (xy 138.196789 55.539711) + (xy 138.196786 55.539707) (xy 138.196781 55.539701) (xy 138.085297 55.428217) (xy 138.08529 55.428211) + (xy 137.954191 55.340613) (xy 137.95419 55.340612) (xy 137.954185 55.340609) (xy 137.954172 55.340602) + (xy 137.954165 55.340598) (xy 137.808501 55.280263) (xy 137.808469 55.280256) (xy 137.796865 55.277948) + (xy 137.781229 55.269835) (xy 137.764329 55.266592) (xy 137.763587 55.266207) (xy 137.758175 55.263376) + (xy 137.745841 55.251474) (xy 137.735563 55.246142) (xy 137.731876 55.242632) (xy 137.725811 55.232147) + (xy 137.707896 55.21486) (xy 137.702427 55.19172) (xy 137.696893 55.182151) (xy 137.697434 55.170589) + (xy 137.691828 55.146863) (xy 137.699575 55.124903) (xy 137.700163 55.112358) (xy 137.707782 55.10164) + (xy 137.715073 55.080974) (xy 137.731605 55.068129) (xy 137.740646 55.055412) (xy 137.7558 55.049331) + (xy 137.770232 55.038118) (xy 137.771961 55.037438) (xy 137.797678 55.032527) (xy 137.805491 55.029393) + (xy 137.809782 55.030216) (xy 137.817081 55.028822) (xy 149.473796 55.001694) (xy 149.508742 55.006636) + (xy 149.517056 55.009057) (xy 149.519598 55.009797) (xy 149.578462 55.047437) (xy 149.607633 55.110926) + (xy 149.597852 55.180098) (xy 149.594722 55.186995) (xy 149.569487 55.223432) (xy 149.563221 55.229697) + (xy 149.563219 55.229699) (xy 149.563207 55.229714) (xy 149.475613 55.360807) (xy 149.475603 55.360824) + (xy 149.475602 55.360827) (xy 149.475599 55.360831) (xy 149.415264 55.506496) (xy 149.415257 55.506527) + (xy 149.3845 55.66115) (xy 149.3845 55.661152) (xy 149.3845 55.661153) (xy 149.3845 55.818846) (xy 149.3845 55.818848) + (xy 149.384499 55.818848) (xy 149.415257 55.973471) (xy 149.415264 55.973502) (xy 149.475598 56.119165) + (xy 149.475602 56.119172) (xy 149.475609 56.119185) (xy 149.493015 56.145235) (xy 149.563211 56.25029) + (xy 149.563212 56.250291) (xy 149.563217 56.250297) (xy 149.674701 56.361781) (xy 149.674707 56.361786) + (xy 149.674711 56.361789) (xy 149.805814 56.44939) (xy 149.805827 56.449397) (xy 149.901719 56.489116) + (xy 149.951503 56.509737) (xy 150.101978 56.539668) (xy 150.103569 56.54008) (xy 150.106155 56.5405) + (xy 150.263844 56.5405) (xy 150.267964 56.5405) (xy 150.275814 56.538118) (xy 150.418497 56.509737) (xy 150.563414 56.449711) (xy 150.564172 56.449397) (xy 150.564172 56.449396) (xy 150.564179 56.449394) (xy 150.564184 56.44939) (xy 150.566539 56.448415) (xy 150.566541 56.448414) (xy 150.575791 56.444583) - (xy 150.584025 56.436348) (xy 155.081999 56.436348) (xy 155.112757 56.590971) (xy 155.112764 56.591002) - (xy 155.173098 56.736665) (xy 155.173102 56.736672) (xy 155.173107 56.736682) (xy 155.173113 56.736691) - (xy 155.260711 56.86779) (xy 155.260712 56.867791) (xy 155.260717 56.867797) (xy 155.372201 56.979281) - (xy 155.372207 56.979286) (xy 155.372211 56.979289) (xy 155.503314 57.06689) (xy 155.503327 57.066897) - (xy 155.648998 57.127235) (xy 155.649003 57.127237) (xy 155.803653 57.157999) (xy 155.803656 57.158) - (xy 155.803658 57.158) (xy 155.961344 57.158) (xy 155.961345 57.157999) (xy 156.115997 57.127237) - (xy 156.261679 57.066894) (xy 156.392789 56.979289) (xy 156.504289 56.867789) (xy 156.591894 56.736679) - (xy 156.596525 56.7255) (xy 156.623549 56.660256) (xy 156.652237 56.590997) (xy 156.6552 56.576098) - (xy 156.658795 56.566562) (xy 156.661256 56.563298) (xy 156.664949 56.552827) (xy 156.671383 56.540526) - (xy 156.719899 56.490248) (xy 156.787892 56.47418) (xy 156.802216 56.474947) (xy 156.807692 56.475241) - (xy 156.825247 56.477446) (xy 156.902264 56.492765) (xy 156.969489 56.506137) (xy 156.972217 56.50686) - (xy 156.977126 56.507657) (xy 157.134815 56.507657) (xy 157.138935 56.507657) (xy 157.146785 56.505275) - (xy 157.289468 56.476894) (xy 157.43515 56.416551) (xy 157.56626 56.328946) (xy 157.67776 56.217446) - (xy 157.765365 56.086336) (xy 157.767442 56.081323) (xy 157.799533 56.003846) (xy 157.825708 55.940654) - (xy 157.856471 55.785999) (xy 157.856471 55.628315) (xy 157.856471 55.628312) (xy 157.856471 55.628228) - (xy 157.856293 55.627424) (xy 157.850517 55.598381) (xy 157.825708 55.47366) (xy 157.822816 55.466679) - (xy 157.8157 55.4495) (xy 157.792135 55.392606) (xy 157.765368 55.327984) (xy 157.765361 55.327971) - (xy 157.67776 55.196868) (xy 157.677757 55.196864) (xy 157.677752 55.196858) (xy 157.566268 55.085374) - (xy 157.566262 55.085369) (xy 157.566261 55.085368) (xy 157.435162 54.99777) (xy 157.435161 54.997769) - (xy 157.435156 54.997766) (xy 157.435143 54.997759) (xy 157.435136 54.997755) (xy 157.289473 54.937421) - (xy 157.289442 54.937414) (xy 157.134818 54.906657) (xy 157.134816 54.906657) (xy 157.134813 54.906657) - (xy 156.977129 54.906657) (xy 156.977126 54.906657) (xy 156.977124 54.906657) (xy 156.822498 54.937414) - (xy 156.822467 54.937421) (xy 156.676804 54.997755) (xy 156.676795 54.99776) (xy 156.676778 54.99777) - (xy 156.545679 55.085368) (xy 156.545678 55.085369) (xy 156.545672 55.085374) (xy 156.434188 55.196858) - (xy 156.434183 55.196864) (xy 156.434182 55.196865) (xy 156.346584 55.327964) (xy 156.346581 55.32797) - (xy 156.346569 55.32799) (xy 156.286244 55.473631) (xy 156.286232 55.473662) (xy 156.286231 55.473667) - (xy 156.286229 55.473675) (xy 156.28526 55.478538) (xy 156.285261 55.478541) (xy 156.285259 55.478545) - (xy 156.285257 55.478558) (xy 156.273521 55.511825) (xy 156.26709 55.524121) (xy 156.218577 55.574404) - (xy 156.150581 55.590475) (xy 156.150577 55.590475) (xy 156.150571 55.590475) (xy 156.130766 55.589413) - (xy 156.113215 55.587208) (xy 155.961349 55.557) (xy 155.961345 55.557) (xy 155.961342 55.557) (xy 155.803658 55.557) - (xy 155.803655 55.557) (xy 155.803653 55.557) (xy 155.649027 55.587757) (xy 155.648996 55.587764) - (xy 155.503333 55.648098) (xy 155.503324 55.648103) (xy 155.503307 55.648113) (xy 155.372208 55.735711) - (xy 155.372207 55.735712) (xy 155.372201 55.735717) (xy 155.260717 55.847201) (xy 155.260712 55.847207) - (xy 155.173113 55.978307) (xy 155.173103 55.978324) (xy 155.173098 55.978333) (xy 155.112764 56.123996) - (xy 155.112761 56.12401) (xy 155.082 56.27865) (xy 155.082 56.278653) (xy 155.082 56.436346) (xy 155.082 56.436348) - (xy 155.081999 56.436348) (xy 150.584025 56.436348) (xy 150.584675 56.435698) (xy 150.695289 56.361789) - (xy 150.806789 56.250289) (xy 150.817935 56.233608) (xy 150.837937 56.203675) (xy 150.837937 56.203674) - (xy 150.840389 56.200004) (xy 150.84039 56.200003) (xy 150.847297 56.189666) (xy 150.891454 56.123578) - (xy 150.893471 56.120823) (xy 150.894979 56.118424) (xy 150.896714 56.113577) (xy 150.905397 56.092614) - (xy 150.954737 55.973497) (xy 150.9855 55.818842) (xy 150.9855 55.661158) (xy 150.9855 55.661155) - (xy 150.9855 55.660971) (xy 150.985064 55.658966) (xy 150.973013 55.598381) (xy 150.973013 55.59838) - (xy 150.963121 55.548653) (xy 150.954737 55.506503) (xy 150.949853 55.494712) (xy 150.946823 55.487398) - (xy 150.903039 55.381691) (xy 150.894397 55.360827) (xy 150.89439 55.360814) (xy 150.806789 55.229711) - (xy 150.806786 55.229707) (xy 150.806781 55.229701) (xy 150.695297 55.118217) (xy 150.695291 55.118212) - (xy 150.69529 55.118211) (xy 150.564182 55.030607) (xy 150.56418 55.030606) (xy 150.54138 55.021162) - (xy 150.525627 55.014636) (xy 150.49528 54.996629) (xy 150.484471 54.987918) (xy 150.444626 54.930525) - (xy 150.442135 54.860703) (xy 150.443407 54.855718) (xy 150.476346 54.798243) (xy 152.248331 53.045388) - (xy 152.276696 53.024394) (xy 152.277762 53.023818) (xy 152.282073 53.021495) (xy 152.29954 53.017794) - (xy 152.315261 53.009329) (xy 152.333008 53.010702) (xy 152.350424 53.007012) (xy 152.36712 53.013342) - (xy 152.384923 53.01472) (xy 152.399111 53.025471) (xy 152.415756 53.031782) (xy 152.426379 53.046134) - (xy 152.440611 53.056918) (xy 152.446733 53.073631) (xy 152.457325 53.08794) (xy 152.458502 53.105757) - (xy 152.464645 53.122524) (xy 152.461929 53.157604) (xy 152.461933 53.157658) (xy 152.461921 53.157713) - (xy 152.46149 53.15964) (xy 152.443583 53.201464) (xy 152.410609 53.250812) (xy 152.410598 53.250833) - (xy 152.350264 53.396496) (xy 152.350257 53.396527) (xy 152.3195 53.55115) (xy 152.3195 53.551153) - (xy 152.3195 53.708846) (xy 152.3195 53.708848) (xy 152.319499 53.708848) (xy 152.350257 53.863471) - (xy 152.350264 53.863502) (xy 152.410598 54.009165) (xy 152.410614 54.009193) (xy 152.420026 54.023279) - (xy 152.420027 54.02328) (xy 152.435259 54.055118) (xy 152.438639 54.065913) (xy 152.439885 54.135772) - (xy 152.403165 54.195215) (xy 152.340145 54.225367) (xy 152.332569 54.226594) (xy 152.288543 54.225809) - (xy 152.168849 54.202) (xy 152.168846 54.202) (xy 152.168842 54.202) (xy 152.011158 54.202) (xy 152.011155 54.202) - (xy 152.011153 54.202) (xy 151.856527 54.232757) (xy 151.856496 54.232764) (xy 151.710833 54.293098) - (xy 151.710824 54.293103) (xy 151.710807 54.293113) (xy 151.579708 54.380711) (xy 151.579707 54.380712) - (xy 151.579701 54.380717) (xy 151.468217 54.492201) (xy 151.468212 54.492207) (xy 151.380613 54.623307) - (xy 151.380604 54.623323) (xy 151.380599 54.623331) (xy 151.320264 54.768996) (xy 151.320257 54.769027) - (xy 151.2895 54.92365) (xy 151.2895 54.923653) (xy 151.2895 55.081346) (xy 151.2895 55.081348) (xy 151.289499 55.081348) - (xy 151.320257 55.235971) (xy 151.320264 55.236002) (xy 151.380598 55.381665) (xy 151.380603 55.381674) - (xy 151.380613 55.381691) (xy 151.468211 55.51279) (xy 151.468212 55.512791) (xy 151.468217 55.512797) - (xy 151.579701 55.624281) (xy 151.579707 55.624286) (xy 151.579711 55.624289) (xy 151.710814 55.71189) - (xy 151.710827 55.711897) (xy 151.856498 55.772235) (xy 151.856503 55.772237) (xy 152.000324 55.800845) - (xy 152.011153 55.802999) (xy 152.011156 55.803) (xy 152.011158 55.803) (xy 152.168844 55.803) (xy 152.168845 55.802999) - (xy 152.323497 55.772237) (xy 152.469179 55.711894) (xy 152.600289 55.624289) (xy 152.711789 55.512789) - (xy 152.799394 55.381679) (xy 152.859737 55.235997) (xy 152.8905 55.081342) (xy 152.8905 54.923658) - (xy 152.8905 54.923655) (xy 152.8905 54.92357) (xy 152.890322 54.922765) (xy 152.887731 54.909737) - (xy 152.859737 54.769003) (xy 152.856748 54.761786) (xy 152.83461 54.70834) (xy 152.8007 54.626472) - (xy 152.800699 54.62647) (xy 152.799397 54.623327) (xy 152.799395 54.623323) (xy 152.799394 54.623321) - (xy 152.78893 54.607661) (xy 152.787952 54.606097) (xy 152.787207 54.603442) (xy 152.774739 54.577383) - (xy 152.771357 54.566583) (xy 152.770983 54.545604) (xy 152.769082 54.538824) (xy 152.770765 54.533339) - (xy 152.770112 54.496726) (xy 152.806832 54.437283) (xy 152.869847 54.407132) (xy 152.877433 54.405903) - (xy 152.92145 54.406688) (xy 153.019246 54.426142) (xy 153.041154 54.4305) (xy 153.198844 54.4305) - (xy 153.202964 54.4305) (xy 153.210814 54.428118) (xy 153.353497 54.399737) (xy 153.499179 54.339394) - (xy 153.630289 54.251789) (xy 153.741789 54.140289) (xy 153.829394 54.009179) (xy 153.87613 53.896348) - (xy 162.256999 53.896348) (xy 162.287757 54.050971) (xy 162.287764 54.051002) (xy 162.348098 54.196665) - (xy 162.348103 54.196674) (xy 162.348113 54.196691) (xy 162.435706 54.327782) (xy 162.43571 54.327789) - (xy 162.435713 54.327792) (xy 162.460139 54.352218) (xy 162.481286 54.38047) (xy 162.488777 54.39419) - (xy 162.503628 54.462448) (xy 162.503499 54.464254) (xy 162.484131 54.522456) (xy 162.480751 54.527717) - (xy 162.47995 54.528963) (xy 162.463314 54.549606) (xy 162.435718 54.577201) (xy 162.43571 54.57721) - (xy 162.435707 54.577215) (xy 162.348113 54.708307) (xy 162.348103 54.708324) (xy 162.348098 54.708333) - (xy 162.287764 54.853996) (xy 162.287761 54.85401) (xy 162.257 55.00865) (xy 162.257 55.008653) - (xy 162.257 55.166346) (xy 162.257 55.166348) (xy 162.256999 55.166348) (xy 162.287757 55.320971) - (xy 162.287764 55.321002) (xy 162.348097 55.466661) (xy 162.348102 55.466673) (xy 162.348104 55.466677) - (xy 162.348108 55.466683) (xy 162.398155 55.541583) (xy 162.435711 55.59779) (xy 162.435712 55.597791) - (xy 162.435717 55.597797) (xy 162.547201 55.709281) (xy 162.547207 55.709286) (xy 162.547211 55.709289) - (xy 162.678314 55.79689) (xy 162.678327 55.796897) (xy 162.799788 55.847207) (xy 162.824003 55.857237) - (xy 162.965356 55.885354) (xy 162.971025 55.886481) (xy 162.971028 55.886483) (xy 162.973745 55.887203) - (xy 162.978655 55.888) (xy 163.136344 55.888) (xy 163.140464 55.888) (xy 163.148314 55.885618) (xy 163.290997 55.857237) - (xy 163.42194 55.802999) (xy 163.43014 55.799602) (xy 163.432915 55.798635) (xy 163.434353 55.79797) - (xy 163.439025 55.795921) (xy 163.448291 55.792082) (xy 163.457175 55.783198) (xy 163.567789 55.709289) - (xy 163.679289 55.597789) (xy 163.74028 55.50651) (xy 163.766892 55.466683) (xy 163.766897 55.466672) - (xy 163.802215 55.381406) (xy 163.827237 55.320997) (xy 163.830775 55.303213) (xy 163.850444 55.20433) - (xy 163.858 55.166342) (xy 163.858 55.008658) (xy 163.858 55.008655) (xy 163.858 55.008473) (xy 163.857565 55.006471) - (xy 163.844442 54.940498) (xy 163.844441 54.940497) (xy 163.827237 54.854003) (xy 163.827234 54.853996) - (xy 163.825325 54.849387) (xy 163.825324 54.849384) (xy 163.790118 54.764388) (xy 163.766897 54.708327) - (xy 163.76689 54.708314) (xy 163.679289 54.577211) (xy 163.679286 54.577207) (xy 163.654859 54.55278) - (xy 163.633713 54.524529) (xy 163.630798 54.519191) (xy 163.626222 54.510809) (xy 163.611371 54.442551) - (xy 163.6115 54.440742) (xy 163.630869 54.382542) (xy 163.635059 54.376023) (xy 163.651682 54.355395) - (xy 163.679286 54.327792) (xy 163.679289 54.327789) (xy 163.766894 54.196679) (xy 163.767501 54.195215) - (xy 163.792919 54.133848) (xy 165.474499 54.133848) (xy 165.505257 54.288471) (xy 165.505264 54.288502) - (xy 165.565598 54.434165) (xy 165.565603 54.434174) (xy 165.565613 54.434191) (xy 165.653211 54.56529) + (xy 150.581525 56.438848) (xy 155.569499 56.438848) (xy 155.600257 56.593471) (xy 155.600264 56.593502) + (xy 155.660598 56.739165) (xy 155.660603 56.739174) (xy 155.660613 56.739191) (xy 155.748211 56.87029) + (xy 155.748212 56.870291) (xy 155.748217 56.870297) (xy 155.859701 56.981781) (xy 155.859707 56.981786) + (xy 155.859711 56.981789) (xy 155.990814 57.06939) (xy 155.990827 57.069397) (xy 155.990829 57.069397) + (xy 155.990833 57.0694) (xy 156.13637 57.129682) (xy 156.13644 57.129711) (xy 156.136503 57.129737) + (xy 156.291153 57.160499) (xy 156.291156 57.1605) (xy 156.291158 57.1605) (xy 156.448844 57.1605) + (xy 156.448845 57.160499) (xy 156.603497 57.129737) (xy 156.749179 57.069394) (xy 156.778486 57.049812) + (xy 156.867654 56.990231) (xy 156.888041 56.979215) (xy 156.909259 56.970198) (xy 156.978654 56.962094) + (xy 156.988303 56.963744) (xy 157.03629 56.982866) (xy 157.047318 56.990235) (xy 157.150813 57.059389) + (xy 157.150818 57.059392) (xy 157.150821 57.059394) (xy 157.150823 57.059395) (xy 157.150827 57.059397) + (xy 157.278355 57.11222) (xy 157.296503 57.119737) (xy 157.296507 57.119737) (xy 157.29651 57.119739) + (xy 157.371681 57.134691) (xy 157.451153 57.150499) (xy 157.451156 57.1505) (xy 157.451158 57.1505) + (xy 157.608844 57.1505) (xy 157.608845 57.150499) (xy 157.763497 57.119737) (xy 157.831162 57.091708) + (xy 157.865355 57.082982) (xy 157.880896 57.081311) (xy 157.949633 57.093704) (xy 157.951254 57.094516) + (xy 157.997626 57.13469) (xy 158.002042 57.14105) (xy 158.014741 57.164304) (xy 158.070604 57.299172) + (xy 158.070605 57.299173) (xy 158.070605 57.299174) (xy 158.070615 57.299191) (xy 158.158213 57.43029) + (xy 158.158214 57.430291) (xy 158.158219 57.430297) (xy 158.269703 57.541781) (xy 158.269709 57.541786) + (xy 158.269713 57.541789) (xy 158.400816 57.62939) (xy 158.400829 57.629397) (xy 158.5465 57.689735) + (xy 158.546505 57.689737) (xy 158.692825 57.718842) (xy 158.693611 57.718998) (xy 158.693655 57.719021) + (xy 158.696208 57.719697) (xy 158.701157 57.7205) (xy 158.858846 57.7205) (xy 158.862966 57.7205) + (xy 158.870816 57.718118) (xy 159.013499 57.689737) (xy 159.159181 57.629394) (xy 159.290291 57.541789) + (xy 159.401791 57.430289) (xy 159.489396 57.299179) (xy 159.492559 57.291544) (xy 159.533169 57.193501) + (xy 159.549739 57.153497) (xy 159.550038 57.151997) (xy 159.570363 57.049812) (xy 159.580502 56.998842) + (xy 159.580502 56.841158) (xy 159.580502 56.841155) (xy 159.580502 56.840973) (xy 159.580067 56.838971) + (xy 159.568537 56.781006) (xy 159.560216 56.739174) (xy 159.549739 56.686503) (xy 159.549236 56.685288) + (xy 159.535476 56.652068) (xy 159.50945 56.589235) (xy 159.489399 56.540827) (xy 159.489392 56.540814) + (xy 159.401791 56.409711) (xy 159.401788 56.409707) (xy 159.401783 56.409701) (xy 159.290299 56.298217) + (xy 159.290293 56.298212) (xy 159.290292 56.298211) (xy 159.159193 56.210613) (xy 159.159192 56.210612) + (xy 159.159187 56.210609) (xy 159.159174 56.210602) (xy 159.159167 56.210598) (xy 159.012675 56.14992) + (xy 159.002654 56.145235) (xy 158.983412 56.13517) (xy 158.933132 56.086655) (xy 158.932334 56.083278) + (xy 158.917062 56.018668) (xy 158.91732 56.01386) (xy 158.934844 55.964175) (xy 158.936769 55.957826) + (xy 158.934929 55.956739) (xy 158.937642 55.952146) (xy 158.939981 55.948425) (xy 158.941712 55.943586) + (xy 158.999739 55.803498) (xy 159.030502 55.648843) (xy 159.030502 55.491159) (xy 159.030502 55.491156) + (xy 159.030502 55.490972) (xy 159.030066 55.488967) (xy 159.017981 55.428211) (xy 158.999741 55.336511) + (xy 158.999738 55.336502) (xy 158.990198 55.313471) (xy 158.976444 55.280264) (xy 158.939399 55.190828) + (xy 158.939392 55.190815) (xy 158.932231 55.180098) (xy 158.918032 55.158848) (xy 160.604499 55.158848) + (xy 160.635257 55.313471) (xy 160.635264 55.313502) (xy 160.695598 55.459165) (xy 160.695603 55.459174) + (xy 160.695613 55.459191) (xy 160.783211 55.59029) (xy 160.783212 55.590291) (xy 160.783217 55.590297) + (xy 160.894701 55.701781) (xy 160.894707 55.701786) (xy 160.894711 55.701789) (xy 161.025814 55.78939) + (xy 161.025827 55.789397) (xy 161.025829 55.789397) (xy 161.025833 55.7894) (xy 161.17137 55.849682) + (xy 161.17144 55.849711) (xy 161.171503 55.849737) (xy 161.326153 55.880499) (xy 161.326156 55.8805) + (xy 161.326158 55.8805) (xy 161.483844 55.8805) (xy 161.483845 55.880499) (xy 161.638497 55.849737) + (xy 161.784165 55.7894) (xy 161.784172 55.789397) (xy 161.784172 55.789396) (xy 161.784179 55.789394) + (xy 161.888791 55.719492) (xy 161.920617 55.704266) (xy 161.935544 55.699592) (xy 162.005394 55.698346) + (xy 162.01853 55.701949) (xy 162.054613 55.718428) (xy 162.160819 55.789393) (xy 162.16082 55.789393) + (xy 162.160821 55.789394) (xy 162.160823 55.789395) (xy 162.160827 55.789397) (xy 162.30644 55.849711) + (xy 162.306503 55.849737) (xy 162.461153 55.880499) (xy 162.461156 55.8805) (xy 162.461158 55.8805) + (xy 162.618844 55.8805) (xy 162.618845 55.880499) (xy 162.773497 55.849737) (xy 162.919165 55.7894) + (xy 162.919172 55.789397) (xy 162.919172 55.789396) (xy 162.919179 55.789394) (xy 163.050289 55.701789) + (xy 163.161789 55.590289) (xy 163.249394 55.459179) (xy 163.25016 55.457331) (xy 163.283615 55.376561) + (xy 163.309737 55.313497) (xy 163.3405 55.158842) (xy 163.3405 55.001158) (xy 163.3405 55.001155) + (xy 163.3405 55.000972) (xy 163.340066 54.998976) (xy 163.337781 54.987489) (xy 163.337781 54.987488) + (xy 163.309737 54.846503) (xy 163.269602 54.74961) (xy 163.260874 54.715418) (xy 163.259203 54.699869) + (xy 163.271608 54.631115) (xy 163.272437 54.629459) (xy 163.312586 54.58314) (xy 163.318945 54.578725) + (xy 163.342223 54.566018) (xy 163.343985 54.565289) (xy 163.353953 54.56116) (xy 163.436673 54.526897) + (xy 163.436676 54.526895) (xy 163.436679 54.526894) (xy 163.567789 54.439289) (xy 163.679289 54.327789) + (xy 163.766894 54.196679) (xy 163.792919 54.133848) (xy 165.474499 54.133848) (xy 165.505257 54.288471) + (xy 165.505264 54.288502) (xy 165.565598 54.434165) (xy 165.565603 54.434174) (xy 165.565613 54.434191) (xy 165.653212 54.565291) (xy 165.653217 54.565297) (xy 165.764701 54.676781) (xy 165.764707 54.676786) - (xy 165.764711 54.676789) (xy 165.895814 54.76439) (xy 165.895827 54.764397) (xy 166.009123 54.811325) - (xy 166.041503 54.824737) (xy 166.04151 54.824738) (xy 166.04151 54.824739) (xy 166.125075 54.84136) - (xy 166.188607 54.853998) (xy 166.196153 54.855499) (xy 166.196156 54.8555) (xy 166.196158 54.8555) - (xy 166.353844 54.8555) (xy 166.353845 54.855499) (xy 166.508497 54.824737) (xy 166.654179 54.764394) - (xy 166.785289 54.676789) (xy 166.896789 54.565289) (xy 166.984394 54.434179) (xy 167.044737 54.288497) - (xy 167.058591 54.218848) (xy 187.539499 54.218848) (xy 187.570257 54.373471) (xy 187.570264 54.373502) - (xy 187.630598 54.519165) (xy 187.630603 54.519174) (xy 187.630613 54.519191) (xy 187.718211 54.65029) - (xy 187.718212 54.650291) (xy 187.718217 54.650297) (xy 187.829701 54.761781) (xy 187.829707 54.761786) - (xy 187.829711 54.761789) (xy 187.960814 54.84939) (xy 187.960827 54.849397) (xy 188.077399 54.897682) - (xy 188.106503 54.909737) (xy 188.245664 54.937418) (xy 188.253522 54.938981) (xy 188.256243 54.939703) - (xy 188.261155 54.9405) (xy 188.418843 54.9405) (xy 188.418844 54.9405) (xy 188.433913 54.937502) - (xy 188.453337 54.933638) (xy 188.559989 54.912423) (xy 188.595229 54.910535) (xy 188.602782 54.91121) - (xy 188.610803 54.911929) (xy 188.627393 54.918455) (xy 188.629575 54.918651) (xy 188.631304 54.919994) - (xy 188.675806 54.937502) (xy 188.679783 54.940591) (xy 188.714851 54.983512) (xy 188.716945 54.987741) - (xy 188.719458 54.992818) (xy 188.722889 55.000376) (xy 188.780216 55.138778) (xy 188.780224 55.138796) - (xy 188.780233 55.138811) (xy 188.867831 55.26991) (xy 188.867832 55.269911) (xy 188.867837 55.269917) - (xy 188.979321 55.381401) (xy 188.979327 55.381406) (xy 188.979331 55.381409) (xy 189.110434 55.46901) - (xy 189.110447 55.469017) (xy 189.248668 55.526269) (xy 189.256123 55.529357) (xy 189.340738 55.546188) - (xy 189.399844 55.557945) (xy 189.403132 55.558599) (xy 189.405867 55.559323) (xy 189.410775 55.56012) + (xy 165.764711 54.676789) (xy 165.895814 54.76439) (xy 165.895827 54.764397) (xy 166.003993 54.8092) + (xy 166.041503 54.824737) (xy 166.191454 54.854564) (xy 166.193437 54.855059) (xy 166.196155 54.8555) + (xy 166.353844 54.8555) (xy 166.357964 54.8555) (xy 166.365814 54.853118) (xy 166.508497 54.824737) + (xy 166.654179 54.764394) (xy 166.785289 54.676789) (xy 166.896789 54.565289) (xy 166.984394 54.434179) + (xy 167.044737 54.288497) (xy 167.058591 54.218848) (xy 187.539499 54.218848) (xy 187.570257 54.373471) + (xy 187.570264 54.373502) (xy 187.630598 54.519165) (xy 187.630603 54.519174) (xy 187.630613 54.519191) + (xy 187.718209 54.650287) (xy 187.718212 54.650291) (xy 187.718217 54.650297) (xy 187.829701 54.761781) + (xy 187.829707 54.761786) (xy 187.829711 54.761789) (xy 187.960814 54.84939) (xy 187.960827 54.849397) + (xy 188.086593 54.90149) (xy 188.106503 54.909737) (xy 188.255567 54.939387) (xy 188.2576 54.939864) + (xy 188.257746 54.939946) (xy 188.261155 54.9405) (xy 188.418843 54.9405) (xy 188.418844 54.9405) + (xy 188.433913 54.937502) (xy 188.453337 54.933638) (xy 188.559989 54.912423) (xy 188.595229 54.910535) + (xy 188.602782 54.91121) (xy 188.610803 54.911929) (xy 188.627393 54.918455) (xy 188.629575 54.918651) + (xy 188.631304 54.919994) (xy 188.675806 54.937502) (xy 188.679783 54.940591) (xy 188.714851 54.983512) + (xy 188.716945 54.987741) (xy 188.719458 54.992818) (xy 188.722889 55.000376) (xy 188.780216 55.138778) + (xy 188.780224 55.138796) (xy 188.780233 55.138811) (xy 188.867831 55.26991) (xy 188.867832 55.269911) + (xy 188.867837 55.269917) (xy 188.979321 55.381401) (xy 188.979327 55.381406) (xy 188.979331 55.381409) + (xy 189.110434 55.46901) (xy 189.110447 55.469017) (xy 189.241985 55.523501) (xy 189.256123 55.529357) + (xy 189.404881 55.558947) (xy 189.406574 55.559334) (xy 189.406836 55.559481) (xy 189.410775 55.56012) (xy 189.568464 55.56012) (xy 189.572584 55.56012) (xy 189.580434 55.557738) (xy 189.723117 55.529357) - (xy 189.857566 55.473667) (xy 189.868792 55.469017) (xy 189.868792 55.469016) (xy 189.868799 55.469014) - (xy 189.868802 55.469011) (xy 189.871146 55.468041) (xy 189.880412 55.464202) (xy 189.889298 55.455317) - (xy 189.999909 55.381409) (xy 190.111406 55.269912) (xy 190.111408 55.26991) (xy 190.111409 55.269909) - (xy 190.199014 55.138799) (xy 190.199353 55.137982) (xy 190.234695 55.052657) (xy 190.259357 54.993117) - (xy 190.259417 54.992818) (xy 190.27834 54.897682) (xy 190.29012 54.838462) (xy 190.29012 54.680778) - (xy 190.29012 54.680775) (xy 190.29012 54.680593) (xy 190.289685 54.678591) (xy 190.285704 54.658577) - (xy 190.259358 54.526125) (xy 190.253014 54.510809) (xy 190.245309 54.492207) (xy 190.222559 54.437283) - (xy 190.19902 54.380453) (xy 190.199015 54.380444) (xy 190.19901 54.380434) (xy 190.111409 54.249331) - (xy 190.111406 54.249327) (xy 190.111401 54.249321) (xy 189.999917 54.137837) (xy 189.999911 54.137832) - (xy 189.99991 54.137831) (xy 189.868811 54.050233) (xy 189.86881 54.050232) (xy 189.868805 54.050229) - (xy 189.868792 54.050222) (xy 189.868785 54.050218) (xy 189.723122 53.989884) (xy 189.723091 53.989877) - (xy 189.568467 53.95912) (xy 189.568465 53.95912) (xy 189.568462 53.95912) (xy 189.410778 53.95912) - (xy 189.410773 53.95912) (xy 189.410771 53.95912) (xy 189.269635 53.987194) (xy 189.269631 53.987194) - (xy 189.26963 53.987195) (xy 189.234387 53.989083) (xy 189.218815 53.987689) (xy 189.153804 53.96211) - (xy 189.1538 53.962107) (xy 189.153797 53.962106) (xy 189.153794 53.962102) (xy 189.149835 53.959027) - (xy 189.114768 53.916103) (xy 189.110136 53.906744) (xy 189.106709 53.899193) (xy 189.102535 53.889115) - (xy 189.049397 53.760827) (xy 189.04939 53.760814) (xy 188.961789 53.629711) (xy 188.961786 53.629707) - (xy 188.961781 53.629701) (xy 188.850297 53.518217) (xy 188.850291 53.518212) (xy 188.850287 53.518209) - (xy 188.719191 53.430613) (xy 188.71919 53.430612) (xy 188.719185 53.430609) (xy 188.719172 53.430602) - (xy 188.719165 53.430598) (xy 188.573502 53.370264) (xy 188.573471 53.370257) (xy 188.418847 53.3395) - (xy 188.418845 53.3395) (xy 188.418842 53.3395) (xy 188.261158 53.3395) (xy 188.261155 53.3395) - (xy 188.261153 53.3395) (xy 188.106527 53.370257) (xy 188.106496 53.370264) (xy 187.960833 53.430598) - (xy 187.960824 53.430603) (xy 187.960807 53.430613) (xy 187.829712 53.518209) (xy 187.829707 53.518212) - (xy 187.829701 53.518217) (xy 187.718217 53.629701) (xy 187.718212 53.629707) (xy 187.718211 53.629708) - (xy 187.630613 53.760807) (xy 187.630603 53.760824) (xy 187.630598 53.760833) (xy 187.570264 53.906496) - (xy 187.570257 53.906527) (xy 187.5395 54.06115) (xy 187.5395 54.061153) (xy 187.5395 54.218846) - (xy 187.5395 54.218848) (xy 187.539499 54.218848) (xy 167.058591 54.218848) (xy 167.0755 54.133842) - (xy 167.0755 53.976158) (xy 167.0755 53.976155) (xy 167.075499 53.976153) (xy 167.071599 53.956546) - (xy 167.067919 53.938045) (xy 167.044739 53.82151) (xy 167.044736 53.821501) (xy 167.040101 53.810312) - (xy 167.021806 53.766142) (xy 166.984397 53.675827) (xy 166.98439 53.675814) (xy 166.896789 53.544711) - (xy 166.896786 53.544707) (xy 166.896781 53.544701) (xy 166.785297 53.433217) (xy 166.785291 53.433212) - (xy 166.78529 53.433211) (xy 166.654191 53.345613) (xy 166.65419 53.345612) (xy 166.654185 53.345609) - (xy 166.654172 53.345602) (xy 166.654165 53.345598) (xy 166.508502 53.285264) (xy 166.508471 53.285257) - (xy 166.353847 53.2545) (xy 166.353845 53.2545) (xy 166.353842 53.2545) (xy 166.196158 53.2545) - (xy 166.196155 53.2545) (xy 166.196153 53.2545) (xy 166.041527 53.285257) (xy 166.041496 53.285264) - (xy 165.895833 53.345598) (xy 165.895824 53.345603) (xy 165.895807 53.345613) (xy 165.764708 53.433211) - (xy 165.764707 53.433212) (xy 165.764701 53.433217) (xy 165.653217 53.544701) (xy 165.653212 53.544707) - (xy 165.653211 53.544708) (xy 165.565613 53.675807) (xy 165.565603 53.675824) (xy 165.565598 53.675833) - (xy 165.505264 53.821496) (xy 165.505257 53.821527) (xy 165.4745 53.97615) (xy 165.4745 53.976153) - (xy 165.4745 54.133846) (xy 165.4745 54.133848) (xy 165.474499 54.133848) (xy 163.792919 54.133848) - (xy 163.806196 54.101795) (xy 163.827237 54.050997) (xy 163.827237 54.050994) (xy 163.827239 54.05099) - (xy 163.835557 54.009173) (xy 163.835557 54.009172) (xy 163.848149 53.945869) (xy 163.848149 53.945867) - (xy 163.848151 53.94586) (xy 163.849334 53.939911) (xy 163.849336 53.939899) (xy 163.854859 53.912131) - (xy 163.857572 53.89849) (xy 163.858 53.896525) (xy 163.858 53.738473) (xy 163.857565 53.736472) - (xy 163.856966 53.733463) (xy 163.839743 53.646876) (xy 163.827237 53.584003) (xy 163.80956 53.541326) - (xy 163.766897 53.438327) (xy 163.76689 53.438314) (xy 163.679289 53.307211) (xy 163.679286 53.307207) - (xy 163.679281 53.307201) (xy 163.567797 53.195717) (xy 163.567791 53.195712) (xy 163.56779 53.195711) - (xy 163.436691 53.108113) (xy 163.43669 53.108112) (xy 163.436685 53.108109) (xy 163.436672 53.108102) - (xy 163.436665 53.108098) (xy 163.291002 53.047764) (xy 163.290971 53.047757) (xy 163.136347 53.017) - (xy 163.136345 53.017) (xy 163.136342 53.017) (xy 162.978658 53.017) (xy 162.978655 53.017) (xy 162.978653 53.017) - (xy 162.824027 53.047757) (xy 162.823996 53.047764) (xy 162.678333 53.108098) (xy 162.678324 53.108103) - (xy 162.678307 53.108113) (xy 162.547208 53.195711) (xy 162.547207 53.195712) (xy 162.547201 53.195717) - (xy 162.435717 53.307201) (xy 162.435712 53.307207) (xy 162.435711 53.307208) (xy 162.348113 53.438307) - (xy 162.348103 53.438324) (xy 162.348098 53.438333) (xy 162.287764 53.583996) (xy 162.287761 53.58401) + (xy 189.868799 55.469014) (xy 189.999909 55.381409) (xy 190.111409 55.269909) (xy 190.199014 55.138799) + (xy 190.199454 55.137738) (xy 190.230015 55.063956) (xy 190.259357 54.993117) (xy 190.29012 54.838462) + (xy 190.29012 54.680778) (xy 190.29012 54.680775) (xy 190.29012 54.680593) (xy 190.289685 54.678591) + (xy 190.284055 54.650287) (xy 190.259358 54.526127) (xy 190.259357 54.526125) (xy 190.259357 54.526123) + (xy 190.254779 54.515069) (xy 190.252884 54.510494) (xy 190.252884 54.510493) (xy 190.19902 54.380453) + (xy 190.199015 54.380444) (xy 190.19901 54.380434) (xy 190.111409 54.249331) (xy 190.111406 54.249327) + (xy 190.111401 54.249321) (xy 189.999917 54.137837) (xy 189.999911 54.137832) (xy 189.99991 54.137831) + (xy 189.868811 54.050233) (xy 189.86881 54.050232) (xy 189.868805 54.050229) (xy 189.868792 54.050222) + (xy 189.868785 54.050218) (xy 189.723122 53.989884) (xy 189.723091 53.989877) (xy 189.568467 53.95912) + (xy 189.568465 53.95912) (xy 189.568462 53.95912) (xy 189.410778 53.95912) (xy 189.410773 53.95912) + (xy 189.410771 53.95912) (xy 189.269635 53.987194) (xy 189.269631 53.987194) (xy 189.26963 53.987195) + (xy 189.234387 53.989083) (xy 189.218815 53.987689) (xy 189.153804 53.96211) (xy 189.1538 53.962107) + (xy 189.153797 53.962106) (xy 189.153794 53.962102) (xy 189.149835 53.959027) (xy 189.114768 53.916103) + (xy 189.110136 53.906744) (xy 189.106709 53.899193) (xy 189.069494 53.809347) (xy 189.049397 53.760827) + (xy 189.04939 53.760814) (xy 188.961789 53.629711) (xy 188.961786 53.629707) (xy 188.961781 53.629701) + (xy 188.850294 53.518214) (xy 188.850291 53.518212) (xy 188.85029 53.518211) (xy 188.719191 53.430613) + (xy 188.71919 53.430612) (xy 188.719185 53.430609) (xy 188.719172 53.430602) (xy 188.719165 53.430598) + (xy 188.573502 53.370264) (xy 188.573471 53.370257) (xy 188.418847 53.3395) (xy 188.418845 53.3395) + (xy 188.418842 53.3395) (xy 188.261158 53.3395) (xy 188.261155 53.3395) (xy 188.261153 53.3395) + (xy 188.106527 53.370257) (xy 188.106496 53.370264) (xy 187.960833 53.430598) (xy 187.960824 53.430603) + (xy 187.960807 53.430613) (xy 187.829708 53.518211) (xy 187.829705 53.518214) (xy 187.718217 53.629701) + (xy 187.718212 53.629707) (xy 187.718211 53.629708) (xy 187.630613 53.760807) (xy 187.630603 53.760824) + (xy 187.630598 53.760833) (xy 187.570264 53.906496) (xy 187.570257 53.906527) (xy 187.5395 54.06115) + (xy 187.5395 54.061153) (xy 187.5395 54.218846) (xy 187.5395 54.218848) (xy 187.539499 54.218848) + (xy 167.058591 54.218848) (xy 167.0755 54.133842) (xy 167.0755 53.976158) (xy 167.0755 53.976155) + (xy 167.075499 53.976153) (xy 167.069476 53.945873) (xy 167.044737 53.821503) (xy 167.040991 53.812459) + (xy 167.037323 53.803603) (xy 167.00182 53.717891) (xy 166.984397 53.675827) (xy 166.98439 53.675814) + (xy 166.896789 53.544711) (xy 166.896786 53.544707) (xy 166.896781 53.544701) (xy 166.785297 53.433217) + (xy 166.785291 53.433212) (xy 166.78529 53.433211) (xy 166.654191 53.345613) (xy 166.65419 53.345612) + (xy 166.654185 53.345609) (xy 166.654172 53.345602) (xy 166.654165 53.345598) (xy 166.508502 53.285264) + (xy 166.508471 53.285257) (xy 166.353847 53.2545) (xy 166.353845 53.2545) (xy 166.353842 53.2545) + (xy 166.196158 53.2545) (xy 166.196155 53.2545) (xy 166.196153 53.2545) (xy 166.041527 53.285257) + (xy 166.041496 53.285264) (xy 165.895833 53.345598) (xy 165.895824 53.345603) (xy 165.895807 53.345613) + (xy 165.764708 53.433211) (xy 165.764707 53.433212) (xy 165.764701 53.433217) (xy 165.653217 53.544701) + (xy 165.653212 53.544707) (xy 165.653211 53.544708) (xy 165.565613 53.675807) (xy 165.565603 53.675824) + (xy 165.565598 53.675833) (xy 165.505264 53.821496) (xy 165.505257 53.821527) (xy 165.4745 53.97615) + (xy 165.4745 53.976152) (xy 165.4745 53.976153) (xy 165.4745 54.133846) (xy 165.4745 54.133848) + (xy 165.474499 54.133848) (xy 163.792919 54.133848) (xy 163.827237 54.050997) (xy 163.83777 53.998045) + (xy 163.848148 53.945874) (xy 163.848148 53.945873) (xy 163.849002 53.941583) (xy 163.849334 53.939912) + (xy 163.849334 53.939908) (xy 163.857007 53.901335) (xy 163.858 53.896342) (xy 163.858 53.738658) + (xy 163.858 53.738655) (xy 163.858 53.738473) (xy 163.857565 53.736471) (xy 163.851678 53.706875) + (xy 163.836327 53.629701) (xy 163.827237 53.584003) (xy 163.799986 53.518213) (xy 163.766897 53.438327) + (xy 163.76689 53.438314) (xy 163.679289 53.307211) (xy 163.679286 53.307207) (xy 163.679281 53.307201) + (xy 163.567797 53.195717) (xy 163.567791 53.195712) (xy 163.56779 53.195711) (xy 163.436691 53.108113) + (xy 163.43669 53.108112) (xy 163.436685 53.108109) (xy 163.436672 53.108102) (xy 163.436665 53.108098) + (xy 163.291002 53.047764) (xy 163.290971 53.047757) (xy 163.136347 53.017) (xy 163.136345 53.017) + (xy 163.136342 53.017) (xy 162.978658 53.017) (xy 162.978655 53.017) (xy 162.978653 53.017) (xy 162.824027 53.047757) + (xy 162.823996 53.047764) (xy 162.678333 53.108098) (xy 162.678324 53.108103) (xy 162.678307 53.108113) + (xy 162.547208 53.195711) (xy 162.547207 53.195712) (xy 162.547201 53.195717) (xy 162.435717 53.307201) + (xy 162.435712 53.307207) (xy 162.435711 53.307208) (xy 162.348113 53.438307) (xy 162.348103 53.438324) + (xy 162.348102 53.438327) (xy 162.348099 53.438331) (xy 162.287764 53.583996) (xy 162.287757 53.584027) (xy 162.257 53.73865) (xy 162.257 53.738653) (xy 162.257 53.896346) (xy 162.257 53.896348) (xy 162.256999 53.896348) - (xy 153.87613 53.896348) (xy 153.889737 53.863497) (xy 153.909102 53.766142) (xy 153.919921 53.711752) - (xy 153.92041 53.709571) (xy 153.9205 53.708846) (xy 153.9205 53.550973) (xy 153.920065 53.548971) - (xy 153.913946 53.518209) (xy 153.889739 53.39651) (xy 153.889736 53.396501) (xy 153.878868 53.370264) - (xy 153.868655 53.345606) (xy 153.829397 53.250827) (xy 153.82939 53.250814) (xy 153.741789 53.119711) - (xy 153.741786 53.119707) (xy 153.741781 53.119701) (xy 153.630297 53.008217) (xy 153.630291 53.008212) - (xy 153.63029 53.008211) (xy 153.499191 52.920613) (xy 153.49919 52.920612) (xy 153.499185 52.920609) - (xy 153.499172 52.920602) (xy 153.49917 52.920601) (xy 153.499165 52.920598) (xy 153.353502 52.860264) - (xy 153.353471 52.860257) (xy 153.198847 52.8295) (xy 153.198845 52.8295) (xy 153.198842 52.8295) - (xy 153.041158 52.8295) (xy 153.041155 52.8295) (xy 153.041153 52.8295) (xy 152.886527 52.860257) - (xy 152.886496 52.860264) (xy 152.740829 52.9206) (xy 152.740826 52.920601) (xy 152.703558 52.945503) - (xy 152.688774 52.950593) (xy 152.678334 52.958456) (xy 152.671724 52.960733) (xy 152.665896 52.962558) - (xy 152.653379 52.962781) (xy 152.643868 52.966057) (xy 152.638666 52.966444) (xy 152.624038 52.963305) - (xy 152.596038 52.963806) (xy 152.579897 52.953836) (xy 152.570351 52.951788) (xy 152.560132 52.941627) - (xy 152.536594 52.927088) (xy 152.528503 52.910178) (xy 152.520805 52.902524) (xy 152.517354 52.886877) - (xy 152.506438 52.864062) (xy 152.508573 52.847058) (xy 152.505758 52.834293) (xy 152.512448 52.816196) - (xy 152.515144 52.794736) (xy 152.515147 52.79473) (xy 152.515773 52.793292) (xy 152.526947 52.776982) - (xy 152.529988 52.76876) (xy 152.535346 52.764724) (xy 152.54226 52.754633) (xy 154.630591 50.688848) - (xy 162.696999 50.688848) (xy 162.727757 50.843471) (xy 162.727764 50.843502) (xy 162.788098 50.989165) - (xy 162.788103 50.989174) (xy 162.788113 50.989191) (xy 162.875711 51.12029) (xy 162.875712 51.120291) - (xy 162.875717 51.120297) (xy 162.987201 51.231781) (xy 162.987207 51.231786) (xy 162.987211 51.231789) - (xy 163.118314 51.31939) (xy 163.118327 51.319397) (xy 163.263998 51.379735) (xy 163.264003 51.379737) - (xy 163.418653 51.410499) (xy 163.418656 51.4105) (xy 163.418658 51.4105) (xy 163.576344 51.4105) - (xy 163.576345 51.410499) (xy 163.730997 51.379737) (xy 163.876679 51.319394) (xy 164.007789 51.231789) - (xy 164.007792 51.231786) (xy 164.032213 51.207365) (xy 164.060464 51.186216) (xy 164.074188 51.178722) - (xy 164.09161 51.174932) (xy 164.093534 51.173882) (xy 164.095719 51.174038) (xy 164.142446 51.163871) - (xy 164.144256 51.164) (xy 164.202453 51.183366) (xy 164.208971 51.187555) (xy 164.229602 51.204181) - (xy 164.257207 51.231786) (xy 164.257211 51.231789) (xy 164.388314 51.31939) (xy 164.388327 51.319397) - (xy 164.533998 51.379735) (xy 164.534003 51.379737) (xy 164.688653 51.410499) (xy 164.688656 51.4105) + (xy 162.287757 54.050971) (xy 162.287764 54.051002) (xy 162.327895 54.147888) (xy 162.334306 54.173006) + (xy 162.336623 54.182083) (xy 162.338294 54.197623) (xy 162.3259 54.266362) (xy 162.32589 54.266381) + (xy 162.32589 54.266383) (xy 162.325888 54.266384) (xy 162.32509 54.267981) (xy 162.284918 54.314353) + (xy 162.278561 54.318767) (xy 162.255292 54.331474) (xy 162.239494 54.338018) (xy 162.160824 54.370604) + (xy 162.160818 54.370606) (xy 162.160813 54.370609) (xy 162.160811 54.37061) (xy 162.05622 54.440495) + (xy 162.056219 54.440497) (xy 162.056215 54.440498) (xy 162.056215 54.440499) (xy 162.024382 54.45573) + (xy 162.009463 54.460402) (xy 161.939604 54.461652) (xy 161.939599 54.46165) (xy 161.926466 54.458047) + (xy 161.890382 54.441568) (xy 161.784191 54.370613) (xy 161.784186 54.37061) (xy 161.784185 54.370609) + (xy 161.784172 54.370602) (xy 161.784165 54.370598) (xy 161.638502 54.310264) (xy 161.638471 54.310257) + (xy 161.483847 54.2795) (xy 161.483845 54.2795) (xy 161.483842 54.2795) (xy 161.326158 54.2795) + (xy 161.326155 54.2795) (xy 161.326153 54.2795) (xy 161.171527 54.310257) (xy 161.171496 54.310264) + (xy 161.025833 54.370598) (xy 161.025824 54.370603) (xy 161.025807 54.370613) (xy 160.894708 54.458211) + (xy 160.894707 54.458212) (xy 160.894701 54.458217) (xy 160.783217 54.569701) (xy 160.783212 54.569707) + (xy 160.783211 54.569708) (xy 160.695613 54.700807) (xy 160.695603 54.700824) (xy 160.695598 54.700833) + (xy 160.635264 54.846496) (xy 160.635257 54.846527) (xy 160.6045 55.00115) (xy 160.6045 55.001153) + (xy 160.6045 55.158846) (xy 160.6045 55.158848) (xy 160.604499 55.158848) (xy 158.918032 55.158848) + (xy 158.854628 55.063956) (xy 158.854626 55.063954) (xy 158.851789 55.059709) (xy 158.851786 55.059705) + (xy 158.740299 54.948218) (xy 158.740293 54.948213) (xy 158.740292 54.948212) (xy 158.609193 54.860614) + (xy 158.609192 54.860613) (xy 158.609187 54.86061) (xy 158.609174 54.860603) (xy 158.609167 54.860599) + (xy 158.463504 54.800265) (xy 158.463473 54.800258) (xy 158.308849 54.769501) (xy 158.308847 54.769501) + (xy 158.308844 54.769501) (xy 158.15116 54.769501) (xy 158.151157 54.769501) (xy 158.151155 54.769501) + (xy 157.996529 54.800258) (xy 157.996498 54.800265) (xy 157.850835 54.860599) (xy 157.850826 54.860604) + (xy 157.850809 54.860614) (xy 157.71971 54.948212) (xy 157.719709 54.948213) (xy 157.719703 54.948218) + (xy 157.608219 55.059702) (xy 157.608214 55.059708) (xy 157.608213 55.059709) (xy 157.520615 55.190808) + (xy 157.520605 55.190825) (xy 157.5206 55.190834) (xy 157.460274 55.336476) (xy 157.460261 55.336515) + (xy 157.436168 55.457639) (xy 157.424426 55.490923) (xy 157.417179 55.504777) (xy 157.376053 55.547398) + (xy 157.368663 55.555056) (xy 157.36866 55.555056) (xy 157.356838 55.561789) (xy 157.319672 55.575653) + (xy 157.302853 55.578998) (xy 157.296508 55.580261) (xy 157.296505 55.580261) (xy 157.296504 55.580262) + (xy 157.296475 55.580272) (xy 157.150833 55.640598) (xy 157.150824 55.640603) (xy 157.150807 55.640613) + (xy 157.032321 55.719784) (xy 157.011886 55.730822) (xy 156.990698 55.739817) (xy 156.9213 55.747896) + (xy 156.911647 55.746242) (xy 156.863698 55.727125) (xy 156.749191 55.650613) (xy 156.74919 55.650612) + (xy 156.749185 55.650609) (xy 156.749172 55.650602) (xy 156.749165 55.650598) (xy 156.603502 55.590264) + (xy 156.603471 55.590257) (xy 156.448847 55.5595) (xy 156.448845 55.5595) (xy 156.448842 55.5595) + (xy 156.291158 55.5595) (xy 156.291155 55.5595) (xy 156.291153 55.5595) (xy 156.136527 55.590257) + (xy 156.136496 55.590264) (xy 155.990833 55.650598) (xy 155.990824 55.650603) (xy 155.990807 55.650613) + (xy 155.859708 55.738211) (xy 155.859707 55.738212) (xy 155.859701 55.738217) (xy 155.748217 55.849701) + (xy 155.748212 55.849707) (xy 155.748211 55.849708) (xy 155.660613 55.980807) (xy 155.660603 55.980824) + (xy 155.660598 55.980833) (xy 155.600264 56.126496) (xy 155.600257 56.126527) (xy 155.5695 56.28115) + (xy 155.5695 56.281153) (xy 155.5695 56.438846) (xy 155.5695 56.438848) (xy 155.569499 56.438848) + (xy 150.581525 56.438848) (xy 150.584675 56.435698) (xy 150.695289 56.361789) (xy 150.806789 56.250289) + (xy 150.830515 56.21478) (xy 150.833303 56.210608) (xy 150.833304 56.210609) (xy 150.833312 56.210592) + (xy 150.836266 56.206174) (xy 150.836267 56.206172) (xy 150.89439 56.119185) (xy 150.89439 56.119184) + (xy 150.894394 56.119179) (xy 150.894397 56.119172) (xy 150.895074 56.118159) (xy 150.89671 56.113585) + (xy 150.954737 55.973497) (xy 150.9855 55.818842) (xy 150.9855 55.661158) (xy 150.9855 55.661155) + (xy 150.985499 55.661153) (xy 150.982202 55.644578) (xy 150.954737 55.506503) (xy 150.939207 55.46901) + (xy 150.897719 55.368848) (xy 152.999499 55.368848) (xy 153.029969 55.522021) (xy 153.030261 55.523489) + (xy 153.030264 55.5235) (xy 153.030263 55.5235) (xy 153.090598 55.669165) (xy 153.090603 55.669174) + (xy 153.090613 55.669191) (xy 153.178212 55.800291) (xy 153.178217 55.800297) (xy 153.289701 55.911781) + (xy 153.289706 55.911785) (xy 153.289707 55.911786) (xy 153.289711 55.911789) (xy 153.420814 55.99939) + (xy 153.420827 55.999397) (xy 153.559328 56.056765) (xy 153.566503 56.059737) (xy 153.714814 56.089238) + (xy 153.716115 56.089526) (xy 153.716517 56.089747) (xy 153.721155 56.0905) (xy 153.878844 56.0905) + (xy 153.882964 56.0905) (xy 153.890814 56.088118) (xy 154.033497 56.059737) (xy 154.179179 55.999394) + (xy 154.197735 55.986995) (xy 154.310291 55.911788) (xy 154.310292 55.911786) (xy 154.421791 55.800287) + (xy 154.468205 55.730822) (xy 154.509394 55.669179) (xy 154.512719 55.661153) (xy 154.530621 55.617931) + (xy 154.569737 55.523497) (xy 154.6005 55.368842) (xy 154.6005 55.211158) (xy 154.6005 55.211155) + (xy 154.6005 55.210971) (xy 154.600064 55.208966) (xy 154.569738 55.056506) (xy 154.569735 55.056498) + (xy 154.562714 55.039546) (xy 154.562714 55.039545) (xy 154.5094 54.910833) (xy 154.509395 54.910824) + (xy 154.50939 54.910814) (xy 154.421789 54.779711) (xy 154.421786 54.779707) (xy 154.421781 54.779701) + (xy 154.310297 54.668217) (xy 154.310291 54.668212) (xy 154.31029 54.668211) (xy 154.245135 54.624676) + (xy 154.245132 54.624673) (xy 154.245131 54.624673) (xy 154.218879 54.60109) (xy 154.209976 54.590438) + (xy 154.182094 54.526374) (xy 154.193272 54.457407) (xy 154.194075 54.45573) (xy 154.195536 54.452677) + (xy 154.238499 54.403099) (xy 154.295966 54.364701) (xy 154.295966 54.3647) (xy 154.315289 54.351789) + (xy 154.426789 54.240289) (xy 154.514394 54.109179) (xy 154.517038 54.102797) (xy 154.517042 54.102788) + (xy 154.552762 54.016549) (xy 154.552763 54.016548) (xy 154.56606 53.984446) (xy 154.574737 53.963497) + (xy 154.6055 53.808842) (xy 154.6055 53.651158) (xy 154.6055 53.651155) (xy 154.605499 53.651153) + (xy 154.595588 53.601326) (xy 154.574737 53.496503) (xy 154.55064 53.438327) (xy 154.514397 53.350827) + (xy 154.51439 53.350814) (xy 154.426789 53.219711) (xy 154.426786 53.219707) (xy 154.426781 53.219701) + (xy 154.315297 53.108217) (xy 154.315291 53.108212) (xy 154.31529 53.108211) (xy 154.184191 53.020613) + (xy 154.18419 53.020612) (xy 154.184185 53.020609) (xy 154.184172 53.020602) (xy 154.184165 53.020598) + (xy 154.038502 52.960264) (xy 154.038471 52.960257) (xy 153.883847 52.9295) (xy 153.883845 52.9295) + (xy 153.883842 52.9295) (xy 153.726158 52.9295) (xy 153.726155 52.9295) (xy 153.726153 52.9295) + (xy 153.571527 52.960257) (xy 153.571496 52.960264) (xy 153.425833 53.020598) (xy 153.425824 53.020603) + (xy 153.425807 53.020613) (xy 153.294708 53.108211) (xy 153.294707 53.108212) (xy 153.294701 53.108217) + (xy 153.183217 53.219701) (xy 153.183212 53.219707) (xy 153.183211 53.219708) (xy 153.095613 53.350807) + (xy 153.095603 53.350824) (xy 153.095598 53.350833) (xy 153.035264 53.496496) (xy 153.035257 53.496527) + (xy 153.0045 53.65115) (xy 153.0045 53.651153) (xy 153.0045 53.808846) (xy 153.0045 53.808848) (xy 153.004499 53.808848) + (xy 153.035257 53.963471) (xy 153.035264 53.963502) (xy 153.095598 54.109165) (xy 153.095603 54.109174) + (xy 153.095613 54.109191) (xy 153.183211 54.24029) (xy 153.183212 54.240291) (xy 153.183217 54.240297) + (xy 153.294701 54.351781) (xy 153.294707 54.351786) (xy 153.294724 54.351799) (xy 153.357858 54.393983) + (xy 153.359865 54.395324) (xy 153.386114 54.418902) (xy 153.395019 54.429557) (xy 153.422904 54.493617) + (xy 153.411729 54.562587) (xy 153.41172 54.562606) (xy 153.409458 54.567332) (xy 153.366501 54.6169) + (xy 153.289703 54.668215) (xy 153.178217 54.779701) (xy 153.178212 54.779707) (xy 153.178211 54.779708) + (xy 153.090613 54.910807) (xy 153.090603 54.910824) (xy 153.090598 54.910833) (xy 153.030264 55.056496) + (xy 153.030257 55.056527) (xy 152.9995 55.21115) (xy 152.9995 55.211153) (xy 152.9995 55.368846) + (xy 152.9995 55.368848) (xy 152.999499 55.368848) (xy 150.897719 55.368848) (xy 150.894397 55.360827) + (xy 150.89439 55.360814) (xy 150.836354 55.273957) (xy 150.833654 55.269917) (xy 150.806793 55.229717) + (xy 150.806786 55.229707) (xy 150.806781 55.229701) (xy 150.695297 55.118217) (xy 150.695291 55.118212) + (xy 150.69529 55.118211) (xy 150.564191 55.030613) (xy 150.56419 55.030612) (xy 150.564185 55.030609) + (xy 150.564172 55.030602) (xy 150.541427 55.021181) (xy 150.534822 55.018445) (xy 150.504474 55.000439) + (xy 150.493667 54.991731) (xy 150.453816 54.934341) (xy 150.451319 54.864522) (xy 150.45261 54.859464) + (xy 150.48526 54.802275) (xy 154.61635 50.688848) (xy 162.696999 50.688848) (xy 162.727757 50.843471) + (xy 162.727764 50.843502) (xy 162.788098 50.989165) (xy 162.788103 50.989174) (xy 162.788113 50.989191) + (xy 162.875711 51.12029) (xy 162.875712 51.120291) (xy 162.875717 51.120297) (xy 162.987201 51.231781) + (xy 162.987207 51.231786) (xy 162.987211 51.231789) (xy 163.118314 51.31939) (xy 163.118327 51.319397) + (xy 163.187078 51.347874) (xy 163.264003 51.379737) (xy 163.264005 51.379737) (xy 163.26401 51.379739) + (xy 163.343258 51.395502) (xy 163.418653 51.410499) (xy 163.418656 51.4105) (xy 163.418658 51.4105) + (xy 163.576344 51.4105) (xy 163.576345 51.410499) (xy 163.730997 51.379737) (xy 163.876679 51.319394) + (xy 164.007789 51.231789) (xy 164.007792 51.231786) (xy 164.032213 51.207365) (xy 164.060464 51.186216) + (xy 164.074188 51.178722) (xy 164.09161 51.174932) (xy 164.093534 51.173882) (xy 164.095719 51.174038) + (xy 164.142446 51.163871) (xy 164.144256 51.164) (xy 164.202453 51.183366) (xy 164.208971 51.187555) + (xy 164.229602 51.204181) (xy 164.257207 51.231786) (xy 164.257211 51.231789) (xy 164.388314 51.31939) + (xy 164.388327 51.319397) (xy 164.457078 51.347874) (xy 164.534003 51.379737) (xy 164.534005 51.379737) + (xy 164.53401 51.379739) (xy 164.613258 51.395502) (xy 164.688653 51.410499) (xy 164.688656 51.4105) (xy 164.688658 51.4105) (xy 164.846344 51.4105) (xy 164.846345 51.410499) (xy 165.000997 51.379737) (xy 165.146679 51.319394) (xy 165.277789 51.231789) (xy 165.277792 51.231786) (xy 165.302213 51.207365) (xy 165.330464 51.186216) (xy 165.344188 51.178722) (xy 165.36161 51.174932) (xy 165.363534 51.173882) (xy 165.365719 51.174038) (xy 165.412446 51.163871) (xy 165.414256 51.164) (xy 165.472453 51.183366) (xy 165.478971 51.187555) (xy 165.499602 51.204181) (xy 165.527207 51.231786) (xy 165.527211 51.231789) - (xy 165.658314 51.31939) (xy 165.658327 51.319397) (xy 165.803998 51.379735) (xy 165.804003 51.379737) - (xy 165.958653 51.410499) (xy 165.958656 51.4105) (xy 165.958658 51.4105) (xy 166.116344 51.4105) - (xy 166.116345 51.410499) (xy 166.270997 51.379737) (xy 166.416679 51.319394) (xy 166.547789 51.231789) - (xy 166.659289 51.120289) (xy 166.746894 50.989179) (xy 166.807237 50.843497) (xy 166.837999 50.688848) - (xy 167.776999 50.688848) (xy 167.807757 50.843471) (xy 167.807764 50.843502) (xy 167.868098 50.989165) - (xy 167.868103 50.989174) (xy 167.868113 50.989191) (xy 167.955711 51.12029) (xy 167.955712 51.120291) - (xy 167.955717 51.120297) (xy 168.067201 51.231781) (xy 168.067207 51.231786) (xy 168.067211 51.231789) - (xy 168.198314 51.31939) (xy 168.198327 51.319397) (xy 168.343998 51.379735) (xy 168.344003 51.379737) + (xy 165.658314 51.31939) (xy 165.658327 51.319397) (xy 165.727078 51.347874) (xy 165.804003 51.379737) + (xy 165.804005 51.379737) (xy 165.80401 51.379739) (xy 165.883258 51.395502) (xy 165.958653 51.410499) + (xy 165.958656 51.4105) (xy 165.958658 51.4105) (xy 166.116344 51.4105) (xy 166.116345 51.410499) + (xy 166.270997 51.379737) (xy 166.416679 51.319394) (xy 166.547789 51.231789) (xy 166.659289 51.120289) + (xy 166.746894 50.989179) (xy 166.747764 50.98708) (xy 166.794438 50.874397) (xy 166.807237 50.843497) + (xy 166.837999 50.688848) (xy 167.776999 50.688848) (xy 167.807757 50.843471) (xy 167.807764 50.843502) + (xy 167.868098 50.989165) (xy 167.868103 50.989174) (xy 167.868113 50.989191) (xy 167.955711 51.12029) + (xy 167.955712 51.120291) (xy 167.955717 51.120297) (xy 168.067201 51.231781) (xy 168.067207 51.231786) + (xy 168.067211 51.231789) (xy 168.198314 51.31939) (xy 168.198327 51.319397) (xy 168.267078 51.347874) + (xy 168.344003 51.379737) (xy 168.344005 51.379737) (xy 168.34401 51.379739) (xy 168.423258 51.395502) (xy 168.498653 51.410499) (xy 168.498656 51.4105) (xy 168.498658 51.4105) (xy 168.656344 51.4105) (xy 168.656345 51.410499) (xy 168.810997 51.379737) (xy 168.956679 51.319394) (xy 169.087789 51.231789) - (xy 169.199289 51.120289) (xy 169.286894 50.989179) (xy 169.347237 50.843497) (xy 169.378 50.688842) - (xy 169.378 50.531158) (xy 169.378 50.531155) (xy 169.378 50.530973) (xy 169.377565 50.528971) (xy 169.355889 50.419999) - (xy 169.355888 50.419998) (xy 169.347237 50.376503) (xy 169.326833 50.327243) (xy 169.29229 50.243848) - (xy 179.554499 50.243848) (xy 179.585257 50.398471) (xy 179.585264 50.398502) (xy 179.645598 50.544165) - (xy 179.645603 50.544174) (xy 179.645613 50.544191) (xy 179.733211 50.67529) (xy 179.733212 50.675291) - (xy 179.733217 50.675297) (xy 179.844701 50.786781) (xy 179.844707 50.786786) (xy 179.844711 50.786789) - (xy 179.975814 50.87439) (xy 179.975827 50.874397) (xy 180.121498 50.934735) (xy 180.121503 50.934737) - (xy 180.271136 50.964501) (xy 180.276153 50.965499) (xy 180.276156 50.9655) (xy 180.276158 50.9655) - (xy 180.433844 50.9655) (xy 180.433845 50.965499) (xy 180.588497 50.934737) (xy 180.734179 50.874394) - (xy 180.865289 50.786789) (xy 180.976789 50.675289) (xy 181.064394 50.544179) (xy 181.124737 50.398497) + (xy 169.199289 51.120289) (xy 169.286894 50.989179) (xy 169.287764 50.98708) (xy 169.334438 50.874397) + (xy 169.347237 50.843497) (xy 169.378 50.688842) (xy 169.378 50.531158) (xy 169.378 50.531155) (xy 169.378 50.530971) + (xy 169.377564 50.528966) (xy 169.357574 50.42847) (xy 169.347237 50.376503) (xy 169.33926 50.357244) + (xy 169.339259 50.357241) (xy 169.339259 50.35724) (xy 169.292291 50.243848) (xy 179.554499 50.243848) + (xy 179.585257 50.398471) (xy 179.585264 50.398502) (xy 179.645598 50.544165) (xy 179.645603 50.544174) + (xy 179.645613 50.544191) (xy 179.733211 50.67529) (xy 179.733212 50.675291) (xy 179.733217 50.675297) + (xy 179.844701 50.786781) (xy 179.844707 50.786786) (xy 179.844711 50.786789) (xy 179.975814 50.87439) + (xy 179.975827 50.874397) (xy 180.121498 50.934735) (xy 180.121503 50.934737) (xy 180.276153 50.965499) + (xy 180.276156 50.9655) (xy 180.276158 50.9655) (xy 180.433844 50.9655) (xy 180.433845 50.965499) + (xy 180.588497 50.934737) (xy 180.734179 50.874394) (xy 180.865289 50.786789) (xy 180.976789 50.675289) + (xy 181.064394 50.544179) (xy 181.072168 50.525412) (xy 181.112316 50.428483) (xy 181.124737 50.398497) (xy 181.1555 50.243842) (xy 181.1555 50.086158) (xy 181.1555 50.086155) (xy 181.1555 50.085971) - (xy 181.155064 50.083966) (xy 181.149052 50.053741) (xy 181.124739 49.931511) (xy 181.124738 49.931509) - (xy 181.124737 49.931503) (xy 181.124735 49.931498) (xy 181.064397 49.785827) (xy 181.06439 49.785814) - (xy 180.976789 49.654711) (xy 180.976786 49.654707) (xy 180.976781 49.654701) (xy 180.865297 49.543217) - (xy 180.865291 49.543212) (xy 180.86529 49.543211) (xy 180.734191 49.455613) (xy 180.73419 49.455612) - (xy 180.734185 49.455609) (xy 180.734172 49.455602) (xy 180.734165 49.455598) (xy 180.588502 49.395264) - (xy 180.588471 49.395257) (xy 180.433847 49.3645) (xy 180.433845 49.3645) (xy 180.433842 49.3645) - (xy 180.276158 49.3645) (xy 180.276155 49.3645) (xy 180.276153 49.3645) (xy 180.121527 49.395257) - (xy 180.121496 49.395264) (xy 179.975833 49.455598) (xy 179.975824 49.455603) (xy 179.975807 49.455613) - (xy 179.844708 49.543211) (xy 179.844707 49.543212) (xy 179.844701 49.543217) (xy 179.733217 49.654701) - (xy 179.733212 49.654707) (xy 179.733211 49.654708) (xy 179.645613 49.785807) (xy 179.645603 49.785824) - (xy 179.645598 49.785833) (xy 179.585264 49.931496) (xy 179.585257 49.931527) (xy 179.5545 50.08615) - (xy 179.5545 50.086153) (xy 179.5545 50.243846) (xy 179.5545 50.243848) (xy 179.554499 50.243848) - (xy 169.29229 50.243848) (xy 169.286897 50.230827) (xy 169.28689 50.230814) (xy 169.232195 50.148957) - (xy 169.199289 50.099711) (xy 169.199286 50.099707) (xy 169.199281 50.099701) (xy 169.087797 49.988217) - (xy 169.087791 49.988212) (xy 169.08779 49.988211) (xy 168.956691 49.900613) (xy 168.95669 49.900612) - (xy 168.956685 49.900609) (xy 168.956672 49.900602) (xy 168.956665 49.900598) (xy 168.811002 49.840264) - (xy 168.810971 49.840257) (xy 168.656347 49.8095) (xy 168.656345 49.8095) (xy 168.656342 49.8095) - (xy 168.498658 49.8095) (xy 168.498655 49.8095) (xy 168.498653 49.8095) (xy 168.344027 49.840257) - (xy 168.343996 49.840264) (xy 168.198333 49.900598) (xy 168.198324 49.900603) (xy 168.198307 49.900613) - (xy 168.067208 49.988211) (xy 168.067207 49.988212) (xy 168.067201 49.988217) (xy 167.955717 50.099701) - (xy 167.955712 50.099707) (xy 167.955711 50.099708) (xy 167.868113 50.230807) (xy 167.868103 50.230824) - (xy 167.868098 50.230833) (xy 167.807764 50.376496) (xy 167.807757 50.376527) (xy 167.777 50.53115) - (xy 167.777 50.531153) (xy 167.777 50.688846) (xy 167.777 50.688848) (xy 167.776999 50.688848) (xy 166.837999 50.688848) - (xy 166.838 50.688842) (xy 166.838 50.531158) (xy 166.838 50.531155) (xy 166.837999 50.531153) (xy 166.815889 50.42) - (xy 166.807237 50.376503) (xy 166.786833 50.327243) (xy 166.746897 50.230827) (xy 166.74689 50.230814) - (xy 166.659289 50.099711) (xy 166.659286 50.099707) (xy 166.659281 50.099701) (xy 166.547797 49.988217) - (xy 166.547791 49.988212) (xy 166.54779 49.988211) (xy 166.416691 49.900613) (xy 166.41669 49.900612) - (xy 166.416685 49.900609) (xy 166.416672 49.900602) (xy 166.416665 49.900598) (xy 166.271002 49.840264) - (xy 166.270971 49.840257) (xy 166.116347 49.8095) (xy 166.116345 49.8095) (xy 166.116342 49.8095) - (xy 165.958658 49.8095) (xy 165.958655 49.8095) (xy 165.958653 49.8095) (xy 165.804027 49.840257) - (xy 165.803996 49.840264) (xy 165.658333 49.900598) (xy 165.658324 49.900603) (xy 165.658307 49.900613) - (xy 165.527215 49.988207) (xy 165.52721 49.98821) (xy 165.527201 49.988218) (xy 165.502787 50.012633) - (xy 165.502785 50.012634) (xy 165.502784 50.012637) (xy 165.474529 50.033786) (xy 165.460809 50.041277) - (xy 165.392551 50.056128) (xy 165.392535 50.056126) (xy 165.392535 50.056127) (xy 165.392534 50.056126) - (xy 165.390745 50.055999) (xy 165.332544 50.036631) (xy 165.326029 50.032444) (xy 165.305396 50.015817) - (xy 165.277792 49.988213) (xy 165.277791 49.988212) (xy 165.27779 49.988211) (xy 165.146691 49.900613) - (xy 165.14669 49.900612) (xy 165.146685 49.900609) (xy 165.146672 49.900602) (xy 165.146665 49.900598) - (xy 165.001002 49.840264) (xy 165.000971 49.840257) (xy 164.846347 49.8095) (xy 164.846345 49.8095) - (xy 164.846342 49.8095) (xy 164.688658 49.8095) (xy 164.688655 49.8095) (xy 164.688653 49.8095) - (xy 164.534027 49.840257) (xy 164.533996 49.840264) (xy 164.388333 49.900598) (xy 164.388324 49.900603) - (xy 164.388307 49.900613) (xy 164.257215 49.988207) (xy 164.25721 49.98821) (xy 164.257201 49.988218) - (xy 164.232787 50.012633) (xy 164.232785 50.012634) (xy 164.232784 50.012637) (xy 164.204529 50.033786) - (xy 164.190809 50.041277) (xy 164.122551 50.056128) (xy 164.122535 50.056126) (xy 164.122535 50.056127) - (xy 164.122534 50.056126) (xy 164.120745 50.055999) (xy 164.062544 50.036631) (xy 164.056029 50.032444) - (xy 164.035396 50.015817) (xy 164.007792 49.988213) (xy 164.007791 49.988212) (xy 164.00779 49.988211) - (xy 163.876691 49.900613) (xy 163.87669 49.900612) (xy 163.876685 49.900609) (xy 163.876672 49.900602) - (xy 163.876665 49.900598) (xy 163.731002 49.840264) (xy 163.730971 49.840257) (xy 163.576347 49.8095) - (xy 163.576345 49.8095) (xy 163.576342 49.8095) (xy 163.418658 49.8095) (xy 163.418655 49.8095) - (xy 163.418653 49.8095) (xy 163.264027 49.840257) (xy 163.263996 49.840264) (xy 163.118333 49.900598) - (xy 163.118324 49.900603) (xy 163.118307 49.900613) (xy 162.987208 49.988211) (xy 162.987207 49.988212) - (xy 162.987201 49.988217) (xy 162.875717 50.099701) (xy 162.875712 50.099707) (xy 162.875711 50.099708) - (xy 162.788113 50.230807) (xy 162.788103 50.230824) (xy 162.788098 50.230833) (xy 162.727764 50.376496) - (xy 162.727757 50.376527) (xy 162.697 50.53115) (xy 162.697 50.531153) (xy 162.697 50.688846) (xy 162.697 50.688848) - (xy 162.696999 50.688848) (xy 154.630591 50.688848) (xy 156.499707 48.839912) (xy 156.502915 48.837539) - (xy 156.528068 48.818921) (xy 156.551293 48.806403) (xy 156.610401 48.791558) (xy 208.157957 48.908542) - (xy 208.192877 48.913644) (xy 208.207863 48.918082) (xy 208.266541 48.955973) (xy 208.267774 48.957402) - (xy 208.295085 49.012179) (xy 208.296695 49.01962) (xy 208.2995 49.045843) (xy 208.2995 71.75767) - (xy 208.299499 71.757676) (xy 208.2995 71.757679) (xy 208.294475 71.792614) (xy 208.29007 71.807612) - (xy 208.252327 71.866355) (xy 208.252292 71.866385) (xy 208.252291 71.866387) (xy 208.252289 71.866387) - (xy 208.250958 71.867542) (xy 208.196097 71.895018) (xy 208.188539 71.896663) (xy 208.162168 71.8995) - (xy 137.421269 71.8995) (xy 137.407153 71.895948) (xy 137.395737 71.896843) (xy 137.386334 71.894477) - (xy 137.37548 71.89129) (xy 137.367011 71.885847) (xy 137.362585 71.884734) (xy 137.352701 71.879424) - (xy 137.344634 71.871467) (xy 137.316702 71.853516) (xy 137.30872 71.836039) (xy 137.30296 71.830357) - (xy 137.299894 71.816712) (xy 137.287677 71.78996) (xy 137.290099 71.773114) (xy 137.287644 71.762187) - (xy 137.294284 71.744004) (xy 137.29762 71.720803) (xy 137.298601 71.718656) (xy 137.307256 71.708487) - (xy 137.311614 71.696557) (xy 137.328001 71.684114) (xy 137.342492 71.66709) (xy 137.353389 71.659807) - (xy 137.363981 71.65273) (xy 137.410289 71.621789) (xy 137.521789 71.510289) (xy 137.609394 71.379179) - (xy 137.669737 71.233497) (xy 137.7005 71.078842) (xy 137.7005 70.921158) (xy 137.7005 70.921155) - (xy 137.7005 70.920973) (xy 137.700065 70.918972) (xy 137.670397 70.769824) (xy 137.669994 70.767467) - (xy 137.669738 70.766508) (xy 137.669737 70.766506) (xy 137.669737 70.766503) (xy 137.669735 70.766498) - (xy 137.609397 70.620827) (xy 137.60939 70.620814) (xy 137.521789 70.489711) (xy 137.521786 70.489707) - (xy 137.521781 70.489701) (xy 137.410297 70.378217) (xy 137.410291 70.378212) (xy 137.41029 70.378211) - (xy 137.279191 70.290613) (xy 137.27919 70.290612) (xy 137.279185 70.290609) (xy 137.279172 70.290602) - (xy 137.279165 70.290598) (xy 137.133502 70.230264) (xy 137.133471 70.230257) (xy 136.978847 70.1995) - (xy 136.978845 70.1995) (xy 136.978842 70.1995) (xy 136.821158 70.1995) (xy 136.821155 70.1995) - (xy 136.821153 70.1995) (xy 136.666527 70.230257) (xy 136.666496 70.230264) (xy 136.520833 70.290598) - (xy 136.520824 70.290603) (xy 136.520807 70.290613) (xy 136.389708 70.378211) (xy 136.389707 70.378212) - (xy 136.389701 70.378217) (xy 136.278217 70.489701) (xy 136.278212 70.489707) (xy 136.278211 70.489708) - (xy 136.190613 70.620807) (xy 136.190603 70.620824) (xy 136.190598 70.620833) (xy 136.130264 70.766496) - (xy 136.130257 70.766527) (xy 136.0995 70.92115) (xy 136.0995 70.921153) (xy 136.0995 71.078846) - (xy 136.0995 71.078848) (xy 136.099499 71.078848) (xy 136.130257 71.233471) (xy 136.130264 71.233502) + (xy 181.155064 50.083966) (xy 181.148516 50.051047) (xy 181.124738 49.931505) (xy 181.122692 49.926567) + (xy 181.112818 49.902727) (xy 181.111936 49.900598) (xy 181.0644 49.785833) (xy 181.064395 49.785824) + (xy 181.06439 49.785814) (xy 180.976789 49.654711) (xy 180.976786 49.654707) (xy 180.976781 49.654701) + (xy 180.865297 49.543217) (xy 180.865291 49.543212) (xy 180.86529 49.543211) (xy 180.734191 49.455613) + (xy 180.73419 49.455612) (xy 180.734185 49.455609) (xy 180.734172 49.455602) (xy 180.734165 49.455598) + (xy 180.588502 49.395264) (xy 180.588471 49.395257) (xy 180.433847 49.3645) (xy 180.433845 49.3645) + (xy 180.433842 49.3645) (xy 180.276158 49.3645) (xy 180.276155 49.3645) (xy 180.276153 49.3645) + (xy 180.121527 49.395257) (xy 180.121496 49.395264) (xy 179.975833 49.455598) (xy 179.975824 49.455603) + (xy 179.975807 49.455613) (xy 179.844708 49.543211) (xy 179.844707 49.543212) (xy 179.844701 49.543217) + (xy 179.733217 49.654701) (xy 179.733212 49.654707) (xy 179.733211 49.654708) (xy 179.645613 49.785807) + (xy 179.645603 49.785824) (xy 179.645598 49.785833) (xy 179.585264 49.931496) (xy 179.585257 49.931527) + (xy 179.5545 50.08615) (xy 179.5545 50.086153) (xy 179.5545 50.243846) (xy 179.5545 50.243848) (xy 179.554499 50.243848) + (xy 169.292291 50.243848) (xy 169.286898 50.230829) (xy 169.286895 50.230824) (xy 169.28689 50.230814) + (xy 169.232195 50.148957) (xy 169.231209 50.147482) (xy 169.199293 50.099717) (xy 169.199286 50.099707) + (xy 169.199281 50.099701) (xy 169.087797 49.988217) (xy 169.087791 49.988212) (xy 169.08779 49.988211) + (xy 168.956691 49.900613) (xy 168.95669 49.900612) (xy 168.956685 49.900609) (xy 168.956672 49.900602) + (xy 168.956665 49.900598) (xy 168.811002 49.840264) (xy 168.810971 49.840257) (xy 168.656347 49.8095) + (xy 168.656345 49.8095) (xy 168.656342 49.8095) (xy 168.498658 49.8095) (xy 168.498655 49.8095) + (xy 168.498653 49.8095) (xy 168.344027 49.840257) (xy 168.343996 49.840264) (xy 168.198333 49.900598) + (xy 168.198324 49.900603) (xy 168.198307 49.900613) (xy 168.067208 49.988211) (xy 168.067207 49.988212) + (xy 168.067201 49.988217) (xy 167.955717 50.099701) (xy 167.955712 50.099707) (xy 167.955711 50.099708) + (xy 167.868113 50.230807) (xy 167.868103 50.230824) (xy 167.868098 50.230833) (xy 167.807764 50.376496) + (xy 167.807757 50.376527) (xy 167.777 50.53115) (xy 167.777 50.531153) (xy 167.777 50.688846) (xy 167.777 50.688848) + (xy 167.776999 50.688848) (xy 166.837999 50.688848) (xy 166.838 50.688842) (xy 166.838 50.531158) + (xy 166.838 50.531155) (xy 166.837999 50.531153) (xy 166.817574 50.42847) (xy 166.807237 50.376503) + (xy 166.79926 50.357244) (xy 166.799259 50.357241) (xy 166.799259 50.35724) (xy 166.746898 50.230829) + (xy 166.746895 50.230824) (xy 166.74689 50.230814) (xy 166.659289 50.099711) (xy 166.659286 50.099707) + (xy 166.659281 50.099701) (xy 166.547797 49.988217) (xy 166.547791 49.988212) (xy 166.54779 49.988211) + (xy 166.416691 49.900613) (xy 166.41669 49.900612) (xy 166.416685 49.900609) (xy 166.416672 49.900602) + (xy 166.416665 49.900598) (xy 166.271002 49.840264) (xy 166.270971 49.840257) (xy 166.116347 49.8095) + (xy 166.116345 49.8095) (xy 166.116342 49.8095) (xy 165.958658 49.8095) (xy 165.958655 49.8095) + (xy 165.958653 49.8095) (xy 165.804027 49.840257) (xy 165.803996 49.840264) (xy 165.658333 49.900598) + (xy 165.658324 49.900603) (xy 165.658307 49.900613) (xy 165.527215 49.988207) (xy 165.52721 49.98821) + (xy 165.527201 49.988218) (xy 165.502787 50.012633) (xy 165.502785 50.012634) (xy 165.502784 50.012637) + (xy 165.474529 50.033786) (xy 165.460809 50.041277) (xy 165.392551 50.056128) (xy 165.392535 50.056126) + (xy 165.392535 50.056127) (xy 165.392534 50.056126) (xy 165.390745 50.055999) (xy 165.332544 50.036631) + (xy 165.326029 50.032444) (xy 165.305396 50.015817) (xy 165.277792 49.988213) (xy 165.277791 49.988212) + (xy 165.27779 49.988211) (xy 165.146691 49.900613) (xy 165.14669 49.900612) (xy 165.146685 49.900609) + (xy 165.146672 49.900602) (xy 165.146665 49.900598) (xy 165.001002 49.840264) (xy 165.000971 49.840257) + (xy 164.846347 49.8095) (xy 164.846345 49.8095) (xy 164.846342 49.8095) (xy 164.688658 49.8095) + (xy 164.688655 49.8095) (xy 164.688653 49.8095) (xy 164.534027 49.840257) (xy 164.533996 49.840264) + (xy 164.388333 49.900598) (xy 164.388324 49.900603) (xy 164.388307 49.900613) (xy 164.257215 49.988207) + (xy 164.25721 49.98821) (xy 164.257201 49.988218) (xy 164.232787 50.012633) (xy 164.232785 50.012634) + (xy 164.232784 50.012637) (xy 164.204529 50.033786) (xy 164.190809 50.041277) (xy 164.122551 50.056128) + (xy 164.122535 50.056126) (xy 164.122535 50.056127) (xy 164.122534 50.056126) (xy 164.120745 50.055999) + (xy 164.062544 50.036631) (xy 164.056029 50.032444) (xy 164.035396 50.015817) (xy 164.007792 49.988213) + (xy 164.007791 49.988212) (xy 164.00779 49.988211) (xy 163.876691 49.900613) (xy 163.87669 49.900612) + (xy 163.876685 49.900609) (xy 163.876672 49.900602) (xy 163.876665 49.900598) (xy 163.731002 49.840264) + (xy 163.730971 49.840257) (xy 163.576347 49.8095) (xy 163.576345 49.8095) (xy 163.576342 49.8095) + (xy 163.418658 49.8095) (xy 163.418655 49.8095) (xy 163.418653 49.8095) (xy 163.264027 49.840257) + (xy 163.263996 49.840264) (xy 163.118333 49.900598) (xy 163.118324 49.900603) (xy 163.118307 49.900613) + (xy 162.987208 49.988211) (xy 162.987207 49.988212) (xy 162.987201 49.988217) (xy 162.875717 50.099701) + (xy 162.875712 50.099707) (xy 162.875711 50.099708) (xy 162.788113 50.230807) (xy 162.788103 50.230824) + (xy 162.788098 50.230833) (xy 162.727764 50.376496) (xy 162.727757 50.376527) (xy 162.697 50.53115) + (xy 162.697 50.531153) (xy 162.697 50.688846) (xy 162.697 50.688848) (xy 162.696999 50.688848) (xy 154.61635 50.688848) + (xy 156.476334 48.836817) (xy 156.480408 48.833782) (xy 156.504626 48.815733) (xy 156.527749 48.803171) + (xy 156.587201 48.788133) (xy 208.457947 48.899265) (xy 208.492865 48.904363) (xy 208.507853 48.908799) + (xy 208.566531 48.946681) (xy 208.567763 48.948108) (xy 208.595082 49.002889) (xy 208.596693 49.010331) + (xy 208.5995 49.036566) (xy 208.5995 72.05767) (xy 208.599499 72.057676) (xy 208.5995 72.057679) + (xy 208.594475 72.092614) (xy 208.59007 72.107612) (xy 208.552327 72.166355) (xy 208.552292 72.166385) + (xy 208.552291 72.166387) (xy 208.552289 72.166387) (xy 208.550958 72.167542) (xy 208.496097 72.195018) + (xy 208.488539 72.196663) (xy 208.462168 72.1995) (xy 122.352242 72.1995) (xy 122.352241 72.199499) + (xy 122.352241 72.1995) (xy 122.317306 72.194477) (xy 122.292064 72.187065) (xy 122.239319 72.155769) + (xy 121.162398 71.078848) (xy 136.099499 71.078848) (xy 136.130257 71.233471) (xy 136.130264 71.233502) (xy 136.190598 71.379165) (xy 136.190603 71.379174) (xy 136.190613 71.379191) (xy 136.278211 71.51029) (xy 136.278212 71.510291) (xy 136.278217 71.510297) (xy 136.389701 71.621781) (xy 136.389707 71.621786) - (xy 136.389724 71.621799) (xy 136.450628 71.662493) (xy 136.460393 71.673291) (xy 136.470392 71.678897) - (xy 136.476872 71.686063) (xy 136.484136 71.694754) (xy 136.488157 71.703993) (xy 136.491226 71.707386) - (xy 136.496492 71.717291) (xy 136.498776 71.728384) (xy 136.512023 71.758815) (xy 136.508948 71.77779) - (xy 136.510582 71.785725) (xy 136.505548 71.798773) (xy 136.500848 71.827785) (xy 136.489468 71.84046) - (xy 136.485436 71.850913) (xy 136.469848 71.862312) (xy 136.454203 71.879739) (xy 136.452217 71.880967) - (xy 136.439335 71.884627) (xy 136.429039 71.892158) (xy 136.408473 71.893398) (xy 136.387004 71.8995) - (xy 122.476506 71.8995) (xy 122.44157 71.894477) (xy 122.416328 71.887065) (xy 122.363583 71.855769) - (xy 119.611132 69.103318) (xy 119.589982 69.075065) (xy 119.577219 69.051692) (xy 119.562063 68.994064) - (xy 119.561781 68.974672) (xy 119.53716 67.278848) (xy 124.694499 67.278848) (xy 124.725257 67.433471) - (xy 124.725264 67.433502) (xy 124.785598 67.579165) (xy 124.785602 67.579172) (xy 124.785609 67.579185) - (xy 124.846307 67.670025) (xy 124.846308 67.670028) (xy 124.84631 67.670029) (xy 124.861541 67.701867) - (xy 124.866212 67.716787) (xy 124.86746 67.786634) (xy 124.864306 67.798135) (xy 124.863859 67.799763) - (xy 124.847377 67.835855) (xy 124.790613 67.920807) (xy 124.7906 67.920829) (xy 124.790599 67.920831) - (xy 124.730264 68.066496) (xy 124.730257 68.066527) (xy 124.6995 68.22115) (xy 124.6995 68.378846) - (xy 124.730257 68.533471) (xy 124.730264 68.533502) (xy 124.790598 68.679165) (xy 124.790603 68.679174) - (xy 124.790613 68.679191) (xy 124.878211 68.81029) (xy 124.878212 68.810291) (xy 124.878217 68.810297) - (xy 124.989701 68.921781) (xy 124.989707 68.921786) (xy 124.989711 68.921789) (xy 125.120814 69.00939) - (xy 125.120827 69.009397) (xy 125.255726 69.065273) (xy 125.266503 69.069737) (xy 125.371946 69.090711) - (xy 125.373937 69.091107) (xy 125.413512 69.098979) (xy 125.416247 69.099703) (xy 125.421155 69.1005) - (xy 125.578844 69.1005) (xy 125.582964 69.1005) (xy 125.590814 69.098118) (xy 125.733497 69.069737) - (xy 125.879179 69.009394) (xy 126.010289 68.921789) (xy 126.121789 68.810289) (xy 126.209394 68.679179) - (xy 126.211012 68.675274) (xy 126.226437 68.638033) (xy 126.269737 68.533497) (xy 126.296341 68.399753) - (xy 126.3005 68.378844) (xy 126.3005 68.237622) (xy 135.744237 68.237622) (xy 135.774494 68.389726) - (xy 135.774495 68.389732) (xy 135.774502 68.389753) (xy 135.823529 68.508118) (xy 135.823534 68.508128) - (xy 135.894724 68.61467) (xy 135.894725 68.614671) (xy 135.89473 68.614677) (xy 135.985321 68.705268) - (xy 135.985327 68.705273) (xy 135.985331 68.705276) (xy 136.091866 68.776461) (xy 136.091872 68.776464) - (xy 136.091873 68.776465) (xy 136.205362 68.823473) (xy 136.205947 68.823724) (xy 136.206141 68.823884) - (xy 136.209053 68.825261) (xy 136.210252 68.825499) (xy 136.210256 68.825501) (xy 136.210259 68.825501) - (xy 136.21026 68.825501) (xy 136.210261 68.825502) (xy 136.307899 68.844924) (xy 136.335927 68.8505) - (xy 136.464071 68.8505) (xy 136.464073 68.8505) (xy 136.548615 68.833682) (xy 136.589744 68.825501) - (xy 136.708127 68.776465) (xy 136.753031 68.746461) (xy 136.798122 68.716332) (xy 136.818372 68.705374) - (xy 136.821243 68.704149) (xy 136.821244 68.704151) (xy 136.841191 68.695646) (xy 136.910574 68.687463) - (xy 136.912955 68.687867) (xy 136.915513 68.688302) (xy 136.966743 68.709598) (xy 136.995882 68.730382) - (xy 137.009213 68.737915) (xy 137.0669 68.776461) (xy 137.081869 68.786463) (xy 137.081872 68.786464) - (xy 137.081873 68.786465) (xy 137.194644 68.833176) (xy 137.194645 68.833177) (xy 137.195966 68.833724) - (xy 137.200256 68.835501) (xy 137.200257 68.835501) (xy 137.20026 68.835501) (xy 137.200261 68.835502) - (xy 137.241383 68.843682) (xy 137.325926 68.8605) (xy 137.454071 68.8605) (xy 137.454073 68.8605) - (xy 137.538615 68.843682) (xy 137.579744 68.835501) (xy 137.698127 68.786465) (xy 137.804669 68.715276) - (xy 137.895276 68.624669) (xy 137.966465 68.518127) (xy 138.015501 68.399744) (xy 138.015501 68.39974) - (xy 138.015503 68.399737) (xy 138.022465 68.364736) (xy 138.030232 68.325689) (xy 138.0405 68.274071) - (xy 138.0405 68.247622) (xy 139.234237 68.247622) (xy 139.264494 68.399726) (xy 139.264495 68.399732) - (xy 139.264502 68.399753) (xy 139.313529 68.518118) (xy 139.313534 68.518128) (xy 139.384724 68.62467) - (xy 139.384725 68.624671) (xy 139.38473 68.624677) (xy 139.475321 68.715268) (xy 139.475327 68.715273) - (xy 139.475331 68.715276) (xy 139.581866 68.786461) (xy 139.581872 68.786464) (xy 139.581873 68.786465) - (xy 139.695362 68.833473) (xy 139.695947 68.833724) (xy 139.696141 68.833884) (xy 139.699055 68.835262) - (xy 139.825926 68.8605) (xy 139.954071 68.8605) (xy 139.954073 68.8605) (xy 140.038615 68.843682) - (xy 140.079744 68.835501) (xy 140.198127 68.786465) (xy 140.289557 68.725372) (xy 140.321385 68.710145) - (xy 140.336307 68.705472) (xy 140.40616 68.704225) (xy 140.413056 68.706116) (xy 140.413261 68.706173) - (xy 140.468123 68.73807) (xy 140.485321 68.755268) (xy 140.485327 68.755273) (xy 140.485328 68.755274) - (xy 140.591869 68.826463) (xy 140.59187 68.826463) (xy 140.591875 68.826466) (xy 140.599401 68.829583) - (xy 140.601107 68.83029) (xy 140.704644 68.873177) (xy 140.70905 68.875261) (xy 140.71026 68.875501) - (xy 140.710261 68.875502) (xy 140.751372 68.88368) (xy 140.835927 68.9005) (xy 140.964071 68.9005) - (xy 140.964073 68.9005) (xy 141.048615 68.883682) (xy 141.089744 68.875501) (xy 141.208127 68.826465) - (xy 141.314669 68.755276) (xy 141.405276 68.664669) (xy 141.476465 68.558127) (xy 141.525501 68.439744) - (xy 141.533636 68.398848) (xy 142.064499 68.398848) (xy 142.095257 68.553471) (xy 142.095264 68.553502) - (xy 142.155598 68.699165) (xy 142.155603 68.699174) (xy 142.155613 68.699191) (xy 142.243211 68.83029) + (xy 136.389711 71.621789) (xy 136.520814 71.70939) (xy 136.520827 71.709397) (xy 136.666498 71.769735) + (xy 136.666503 71.769737) (xy 136.821153 71.800499) (xy 136.821156 71.8005) (xy 136.821158 71.8005) + (xy 136.978844 71.8005) (xy 136.978845 71.800499) (xy 137.133497 71.769737) (xy 137.279179 71.709394) + (xy 137.410289 71.621789) (xy 137.521789 71.510289) (xy 137.609394 71.379179) (xy 137.669737 71.233497) + (xy 137.7005 71.078842) (xy 137.7005 70.921158) (xy 137.7005 70.921155) (xy 137.7005 70.920973) + (xy 137.700065 70.918972) (xy 137.670397 70.769824) (xy 137.669994 70.767467) (xy 137.669738 70.766508) + (xy 137.669737 70.766506) (xy 137.669737 70.766503) (xy 137.669735 70.766498) (xy 137.609397 70.620827) + (xy 137.60939 70.620814) (xy 137.521789 70.489711) (xy 137.521786 70.489707) (xy 137.521781 70.489701) + (xy 137.410297 70.378217) (xy 137.410291 70.378212) (xy 137.41029 70.378211) (xy 137.279191 70.290613) + (xy 137.27919 70.290612) (xy 137.279185 70.290609) (xy 137.279172 70.290602) (xy 137.279165 70.290598) + (xy 137.133502 70.230264) (xy 137.133471 70.230257) (xy 136.978847 70.1995) (xy 136.978845 70.1995) + (xy 136.978842 70.1995) (xy 136.821158 70.1995) (xy 136.821155 70.1995) (xy 136.821153 70.1995) + (xy 136.666527 70.230257) (xy 136.666496 70.230264) (xy 136.520833 70.290598) (xy 136.520824 70.290603) + (xy 136.520807 70.290613) (xy 136.389708 70.378211) (xy 136.389707 70.378212) (xy 136.389701 70.378217) + (xy 136.278217 70.489701) (xy 136.278212 70.489707) (xy 136.278211 70.489708) (xy 136.190613 70.620807) + (xy 136.190603 70.620824) (xy 136.190598 70.620833) (xy 136.130264 70.766496) (xy 136.130257 70.766527) + (xy 136.0995 70.92115) (xy 136.0995 70.921153) (xy 136.0995 71.078846) (xy 136.0995 71.078848) (xy 136.099499 71.078848) + (xy 121.162398 71.078848) (xy 119.550216 69.466666) (xy 119.529065 69.438412) (xy 119.516499 69.415399) + (xy 119.501332 69.355492) (xy 119.50177 69.242387) (xy 119.503293 68.848848) (xy 123.569499 68.848848) + (xy 123.600257 69.003471) (xy 123.600264 69.003502) (xy 123.660598 69.149165) (xy 123.660603 69.149174) + (xy 123.660613 69.149191) (xy 123.748211 69.28029) (xy 123.748212 69.280291) (xy 123.748217 69.280297) + (xy 123.859701 69.391781) (xy 123.859707 69.391786) (xy 123.859711 69.391789) (xy 123.990814 69.47939) + (xy 123.990827 69.479397) (xy 124.136498 69.539735) (xy 124.136503 69.539737) (xy 124.291153 69.570499) + (xy 124.291156 69.5705) (xy 124.291158 69.5705) (xy 124.448844 69.5705) (xy 124.448845 69.570499) + (xy 124.603497 69.539737) (xy 124.749179 69.479394) (xy 124.880289 69.391789) (xy 124.991789 69.280289) + (xy 125.079394 69.149179) (xy 125.139737 69.003497) (xy 125.1705 68.848842) (xy 125.1705 68.691158) + (xy 125.1705 68.691155) (xy 125.1705 68.690971) (xy 125.170064 68.688966) (xy 125.158135 68.628995) + (xy 125.139738 68.536508) (xy 125.139736 68.5365) (xy 125.135725 68.526818) (xy 125.135722 68.52681) + (xy 125.111979 68.469488) (xy 125.079397 68.390827) (xy 125.07939 68.390814) (xy 125.026188 68.311193) + (xy 125.010957 68.279355) (xy 125.007993 68.269888) (xy 125.009521 68.269409) (xy 125.007455 68.255047) + (xy 135.681736 68.255047) (xy 135.713915 68.416816) (xy 135.713916 68.41682) (xy 135.713917 68.416823) + (xy 135.71392 68.416833) (xy 135.713923 68.416841) (xy 135.713928 68.416855) (xy 135.766716 68.544298) + (xy 135.766721 68.544307) (xy 135.766725 68.544315) (xy 135.766731 68.544324) (xy 135.843385 68.659044) + (xy 135.843386 68.659045) (xy 135.843391 68.659051) (xy 135.940947 68.756607) (xy 135.940951 68.75661) + (xy 135.940953 68.756612) (xy 135.940957 68.756615) (xy 136.055681 68.833272) (xy 136.055694 68.833279) + (xy 136.157626 68.8755) (xy 136.177569 68.88376) (xy 136.181971 68.885842) (xy 136.183169 68.88608) + (xy 136.183171 68.886081) (xy 136.183172 68.886081) (xy 136.183175 68.886081) (xy 136.183176 68.886082) + (xy 136.228008 68.894999) (xy 136.3185 68.913001) (xy 136.456494 68.913001) (xy 136.456495 68.913001) + (xy 136.56299 68.891817) (xy 136.591827 68.886081) (xy 136.719298 68.833281) (xy 136.719303 68.833279) + (xy 136.719303 68.833278) (xy 136.71931 68.833276) (xy 136.80379 68.776826) (xy 136.835616 68.7616) + (xy 136.850543 68.756926) (xy 136.920393 68.75568) (xy 136.933527 68.759283) (xy 136.969609 68.77576) + (xy 137.026155 68.813542) (xy 137.055686 68.833275) (xy 137.055688 68.833276) (xy 137.05569 68.833277) + (xy 137.055694 68.833279) (xy 137.157626 68.8755) (xy 137.177569 68.88376) (xy 137.181971 68.885842) + (xy 137.183169 68.88608) (xy 137.183171 68.886081) (xy 137.183172 68.886081) (xy 137.183175 68.886081) + (xy 137.183176 68.886082) (xy 137.228008 68.894999) (xy 137.3185 68.913001) (xy 137.456494 68.913001) + (xy 137.456495 68.913001) (xy 137.56299 68.891817) (xy 137.591827 68.886081) (xy 137.719298 68.833281) + (xy 137.719303 68.833279) (xy 137.719303 68.833278) (xy 137.71931 68.833276) (xy 137.834041 68.756615) + (xy 137.931613 68.659043) (xy 138.008274 68.544312) (xy 138.011512 68.536496) (xy 138.027523 68.49784) + (xy 138.061079 68.416829) (xy 138.073243 68.355677) (xy 138.073722 68.353271) (xy 138.073722 68.35327) + (xy 138.087999 68.281497) (xy 138.087999 68.143502) (xy 138.06243 68.014961) (xy 138.062428 68.014957) + (xy 138.06108 68.008178) (xy 138.061079 68.008175) (xy 138.061079 68.008173) (xy 138.041245 67.960289) + (xy 138.008277 67.880696) (xy 138.00827 67.880683) (xy 137.937684 67.775045) (xy 139.181738 67.775045) + (xy 139.213917 67.936814) (xy 139.213918 67.936818) (xy 139.213919 67.936821) (xy 139.213922 67.936831) + (xy 139.213925 67.936839) (xy 139.21393 67.936853) (xy 139.266718 68.064296) (xy 139.266722 68.064303) + (xy 139.266728 68.064315) (xy 139.266733 68.064322) (xy 139.343386 68.17904) (xy 139.343388 68.179043) + (xy 139.343393 68.179049) (xy 139.440949 68.276605) (xy 139.440955 68.27661) (xy 139.440959 68.276613) + (xy 139.555683 68.35327) (xy 139.555696 68.353277) (xy 139.646351 68.390827) (xy 139.677561 68.403754) + (xy 139.681971 68.40584) (xy 139.818502 68.432999) (xy 139.956496 68.432999) (xy 139.956497 68.432999) + (xy 139.992878 68.425762) (xy 140.075657 68.409295) (xy 140.098691 68.406919) (xy 140.12221 68.406702) + (xy 140.18942 68.425762) (xy 140.193672 68.428439) (xy 140.232794 68.467713) (xy 140.233902 68.469488) + (xy 140.243275 68.487697) (xy 140.266719 68.544298) (xy 140.266721 68.544302) (xy 140.266723 68.544306) + (xy 140.266728 68.544315) (xy 140.293663 68.584626) (xy 140.343389 68.659045) (xy 140.440948 68.756604) + (xy 140.440952 68.756607) (xy 140.440954 68.756609) (xy 140.440958 68.756612) (xy 140.555682 68.833269) + (xy 140.555695 68.833276) (xy 140.640935 68.868583) (xy 140.67756 68.883753) (xy 140.68197 68.885839) + (xy 140.818501 68.912998) (xy 140.956495 68.912998) (xy 140.956496 68.912998) (xy 141.063006 68.891811) + (xy 141.091828 68.886078) (xy 141.219299 68.833278) (xy 141.219304 68.833276) (xy 141.219304 68.833275) + (xy 141.219311 68.833273) (xy 141.334042 68.756612) (xy 141.431614 68.65904) (xy 141.508275 68.544309) + (xy 141.511506 68.53651) (xy 141.530353 68.491007) (xy 141.56108 68.416826) (xy 141.564656 68.398848) + (xy 142.064499 68.398848) (xy 142.095257 68.553471) (xy 142.095264 68.553502) (xy 142.155598 68.699165) + (xy 142.155603 68.699174) (xy 142.155613 68.699191) (xy 142.243211 68.83029) (xy 142.243212 68.830291) (xy 142.243217 68.830297) (xy 142.354701 68.941781) (xy 142.354707 68.941786) (xy 142.354711 68.941789) (xy 142.485814 69.02939) (xy 142.485827 69.029397) (xy 142.631498 69.089735) (xy 142.631503 69.089737) - (xy 142.753119 69.113928) (xy 142.778528 69.118982) (xy 142.781252 69.119704) (xy 142.786155 69.1205) - (xy 142.943844 69.1205) (xy 142.947964 69.1205) (xy 142.955814 69.118118) (xy 143.098497 69.089737) - (xy 143.244179 69.029394) (xy 143.375289 68.941789) (xy 143.486789 68.830289) (xy 143.574394 68.699179) - (xy 143.634737 68.553497) (xy 143.648684 68.483379) (xy 146.58479 68.483379) (xy 146.615548 68.638002) - (xy 146.615555 68.638033) (xy 146.675889 68.783696) (xy 146.675894 68.783705) (xy 146.675904 68.783722) - (xy 146.763502 68.914821) (xy 146.763503 68.914822) (xy 146.763508 68.914828) (xy 146.874992 69.026312) - (xy 146.874998 69.026317) (xy 146.875002 69.02632) (xy 147.006105 69.113921) (xy 147.006118 69.113928) - (xy 147.151789 69.174266) (xy 147.151794 69.174268) (xy 147.306444 69.20503) (xy 147.306447 69.205031) - (xy 147.306449 69.205031) (xy 147.464135 69.205031) (xy 147.464136 69.20503) (xy 147.618788 69.174268) - (xy 147.731457 69.127598) (xy 147.757925 69.116635) (xy 147.760716 69.115662) (xy 147.762159 69.114995) - (xy 147.766819 69.112952) (xy 147.776078 69.109116) (xy 147.784962 69.100232) (xy 147.89558 69.02632) - (xy 148.00708 68.91482) (xy 148.094685 68.78371) (xy 148.09668 68.778895) (xy 148.110113 68.746463) - (xy 148.155028 68.638028) (xy 148.185791 68.483373) (xy 148.185791 68.325689) (xy 148.185791 68.325686) - (xy 148.185791 68.325502) (xy 148.185355 68.323497) (xy 148.171108 68.251873) (xy 148.168975 68.24115) - (xy 148.156582 68.178848) (xy 149.539499 68.178848) (xy 149.570257 68.333471) (xy 149.570264 68.333502) - (xy 149.630598 68.479165) (xy 149.630603 68.479174) (xy 149.630613 68.479191) (xy 149.718211 68.61029) - (xy 149.718212 68.610291) (xy 149.718217 68.610297) (xy 149.829701 68.721781) (xy 149.829707 68.721786) - (xy 149.829711 68.721789) (xy 149.960814 68.80939) (xy 149.960827 68.809397) (xy 150.106498 68.869735) - (xy 150.106503 68.869737) (xy 150.261153 68.900499) (xy 150.261156 68.9005) (xy 150.261158 68.9005) - (xy 150.418844 68.9005) (xy 150.418845 68.900499) (xy 150.573497 68.869737) (xy 150.717011 68.810292) - (xy 150.719172 68.809397) (xy 150.719172 68.809396) (xy 150.719179 68.809394) (xy 150.850289 68.721789) - (xy 150.961789 68.610289) (xy 150.970253 68.597622) (xy 158.554237 68.597622) (xy 158.584494 68.749726) - (xy 158.584495 68.749732) (xy 158.584502 68.749753) (xy 158.633527 68.868112) (xy 158.633534 68.868128) - (xy 158.704724 68.97467) (xy 158.704725 68.974671) (xy 158.70473 68.974677) (xy 158.795321 69.065268) - (xy 158.795325 69.065271) (xy 158.795327 69.065273) (xy 158.795331 69.065276) (xy 158.901866 69.136461) - (xy 158.901872 69.136464) (xy 158.901873 69.136465) (xy 159.015362 69.183473) (xy 159.015947 69.183724) - (xy 159.016141 69.183884) (xy 159.019053 69.185261) (xy 159.020252 69.185499) (xy 159.020256 69.185501) - (xy 159.020259 69.185501) (xy 159.02026 69.185501) (xy 159.020261 69.185502) (xy 159.117899 69.204924) - (xy 159.145927 69.2105) (xy 159.274071 69.2105) (xy 159.274073 69.2105) (xy 159.358615 69.193682) - (xy 159.399744 69.185501) (xy 159.518127 69.136465) (xy 159.624669 69.065276) (xy 159.624671 69.065273) - (xy 159.624675 69.065271) (xy 159.715273 68.974672) (xy 159.715275 68.97467) (xy 159.715276 68.974669) - (xy 159.786465 68.868127) (xy 159.835501 68.749744) (xy 159.844327 68.705374) (xy 159.849102 68.68137) - (xy 159.849102 68.681369) (xy 159.8605 68.624072) (xy 159.8605 68.495925) (xy 159.835295 68.369219) - (xy 159.833724 68.365946) (xy 159.83346 68.365329) (xy 159.786465 68.251873) (xy 159.786464 68.251872) - (xy 159.786461 68.251866) (xy 159.77583 68.235956) (xy 160.742391 68.235956) (xy 160.773149 68.390579) - (xy 160.773156 68.39061) (xy 160.83349 68.536273) (xy 160.833495 68.536282) (xy 160.833505 68.536299) - (xy 160.921103 68.667398) (xy 160.921104 68.667399) (xy 160.921109 68.667405) (xy 161.032593 68.778889) - (xy 161.032599 68.778894) (xy 161.032603 68.778897) (xy 161.163706 68.866498) (xy 161.163719 68.866505) - (xy 161.30939 68.926843) (xy 161.309395 68.926845) (xy 161.464045 68.957607) (xy 161.464048 68.957608) - (xy 161.46405 68.957608) (xy 161.621736 68.957608) (xy 161.621737 68.957607) (xy 161.776389 68.926845) - (xy 161.914266 68.869735) (xy 161.922064 68.866505) (xy 161.922064 68.866504) (xy 161.922065 68.866503) - (xy 161.922071 68.866502) (xy 161.922073 68.8665) (xy 161.924426 68.865526) (xy 161.924426 68.865525) - (xy 161.933682 68.861692) (xy 161.942567 68.852806) (xy 162.053181 68.778897) (xy 162.164681 68.667397) - (xy 162.252286 68.536287) (xy 162.253453 68.533471) (xy 162.274203 68.483375) (xy 162.312629 68.390605) - (xy 162.343392 68.23595) (xy 162.343392 68.212622) (xy 167.094237 68.212622) (xy 167.124494 68.364726) - (xy 167.124495 68.364732) (xy 167.124502 68.364753) (xy 167.173529 68.483118) (xy 167.173534 68.483128) - (xy 167.244724 68.58967) (xy 167.244725 68.589671) (xy 167.24473 68.589677) (xy 167.335321 68.680268) - (xy 167.335327 68.680273) (xy 167.335328 68.680274) (xy 167.441869 68.751463) (xy 167.441871 68.751463) - (xy 167.441875 68.751466) (xy 167.468691 68.762573) (xy 167.468691 68.762574) (xy 167.50223 68.776466) - (xy 167.548187 68.795502) (xy 167.554641 68.798175) (xy 167.559054 68.800262) (xy 167.685926 68.8255) - (xy 167.814071 68.8255) (xy 167.814073 68.8255) (xy 167.898615 68.808682) (xy 167.939744 68.800501) - (xy 168.058127 68.751465) (xy 168.164669 68.680276) (xy 168.255276 68.589669) (xy 168.326465 68.483127) - (xy 168.375501 68.364744) (xy 168.385581 68.314069) (xy 168.4005 68.239071) (xy 168.4005 68.207622) - (xy 169.604237 68.207622) (xy 169.634494 68.359726) (xy 169.634495 68.359732) (xy 169.634502 68.359753) - (xy 169.683529 68.478118) (xy 169.683534 68.478128) (xy 169.754724 68.58467) (xy 169.754725 68.584671) - (xy 169.75473 68.584677) (xy 169.845321 68.675268) (xy 169.845327 68.675273) (xy 169.845328 68.675274) - (xy 169.951867 68.746462) (xy 169.951869 68.746463) (xy 169.951871 68.746463) (xy 169.951875 68.746466) - (xy 169.978691 68.757573) (xy 169.978691 68.757574) (xy 170.03017 68.778897) (xy 170.048436 68.786463) - (xy 170.064641 68.793175) (xy 170.069054 68.795262) (xy 170.195926 68.8205) (xy 170.324071 68.8205) - (xy 170.324072 68.8205) (xy 170.374342 68.8105) (xy 170.424613 68.8005) (xy 170.449744 68.795501) - (xy 170.568127 68.746465) (xy 170.674669 68.675276) (xy 170.765276 68.584669) (xy 170.836465 68.478127) - (xy 170.885501 68.359744) (xy 170.902543 68.274071) (xy 170.904532 68.264073) (xy 170.904532 68.264071) - (xy 170.9105 68.234071) (xy 170.9105 68.105925) (xy 170.885295 67.97922) (xy 170.883724 67.975947) - (xy 170.883473 67.975362) (xy 170.836465 67.861873) (xy 170.836464 67.861872) (xy 170.836461 67.861866) - (xy 170.765276 67.755331) (xy 170.765273 67.755327) (xy 170.765268 67.755321) (xy 170.674677 67.66473) - (xy 170.674671 67.664725) (xy 170.67467 67.664724) (xy 170.568127 67.593534) (xy 170.568128 67.593534) - (xy 170.568118 67.593529) (xy 170.449753 67.544502) (xy 170.449733 67.544495) (xy 170.449725 67.544493) - (xy 170.324074 67.5195) (xy 170.324071 67.5195) (xy 170.324069 67.5195) (xy 170.195931 67.5195) - (xy 170.195929 67.5195) (xy 170.195926 67.5195) (xy 170.070273 67.544493) (xy 170.070265 67.544495) - (xy 170.070245 67.544502) (xy 169.95188 67.593529) (xy 169.95187 67.593534) (xy 169.845328 67.664724) - (xy 169.845327 67.664725) (xy 169.845321 67.66473) (xy 169.75473 67.755321) (xy 169.754725 67.755327) - (xy 169.754724 67.755328) (xy 169.683534 67.86187) (xy 169.683529 67.86188) (xy 169.634502 67.980245) - (xy 169.634495 67.980265) (xy 169.634493 67.980273) (xy 169.6095 68.105923) (xy 169.6095 68.189702) - (xy 169.604237 68.207622) (xy 168.4005 68.207622) (xy 168.4005 68.110928) (xy 168.4005 68.110925) - (xy 168.375502 67.985258) (xy 168.373432 67.980261) (xy 168.326465 67.866873) (xy 168.326464 67.866872) - (xy 168.326463 67.86687) (xy 168.326463 67.866869) (xy 168.255274 67.760328) (xy 168.255273 67.760327) - (xy 168.255268 67.760321) (xy 168.164677 67.66973) (xy 168.164671 67.669725) (xy 168.16467 67.669724) - (xy 168.058127 67.598534) (xy 168.058128 67.598534) (xy 168.058118 67.598529) (xy 167.939753 67.549502) - (xy 167.939733 67.549495) (xy 167.939725 67.549493) (xy 167.814074 67.5245) (xy 167.814071 67.5245) - (xy 167.814069 67.5245) (xy 167.685931 67.5245) (xy 167.685929 67.5245) (xy 167.685926 67.5245) - (xy 167.560273 67.549493) (xy 167.560265 67.549495) (xy 167.560245 67.549502) (xy 167.44188 67.598529) - (xy 167.44187 67.598534) (xy 167.335328 67.669724) (xy 167.335327 67.669725) (xy 167.335321 67.66973) - (xy 167.24473 67.760321) (xy 167.244725 67.760327) (xy 167.244724 67.760328) (xy 167.173534 67.86687) - (xy 167.173529 67.86688) (xy 167.124502 67.985245) (xy 167.124495 67.985265) (xy 167.124493 67.985273) - (xy 167.0995 68.110923) (xy 167.0995 68.194702) (xy 167.094237 68.212622) (xy 162.343392 68.212622) - (xy 162.343392 68.078266) (xy 162.343392 68.078263) (xy 162.343391 68.078261) (xy 162.341051 68.066498) - (xy 162.312629 67.923611) (xy 162.311471 67.920815) (xy 162.303624 67.90187) (xy 162.252292 67.777941) - (xy 162.252287 67.777932) (xy 162.252282 67.777922) (xy 162.164681 67.646819) (xy 162.164678 67.646815) - (xy 162.164673 67.646809) (xy 162.053189 67.535325) (xy 162.053183 67.53532) (xy 162.053182 67.535319) - (xy 161.922083 67.447721) (xy 161.922082 67.44772) (xy 161.922077 67.447717) (xy 161.922064 67.44771) - (xy 161.922057 67.447706) (xy 161.776394 67.387372) (xy 161.776363 67.387365) (xy 161.621739 67.356608) - (xy 161.621737 67.356608) (xy 161.621734 67.356608) (xy 161.46405 67.356608) (xy 161.464047 67.356608) - (xy 161.464045 67.356608) (xy 161.309419 67.387365) (xy 161.309388 67.387372) (xy 161.163725 67.447706) - (xy 161.163716 67.447711) (xy 161.163699 67.447721) (xy 161.0326 67.535319) (xy 161.032599 67.53532) - (xy 161.032593 67.535325) (xy 160.921109 67.646809) (xy 160.921104 67.646815) (xy 160.921103 67.646816) - (xy 160.833505 67.777915) (xy 160.833495 67.777932) (xy 160.83349 67.777941) (xy 160.773156 67.923604) - (xy 160.773149 67.923635) (xy 160.742392 68.078258) (xy 160.742392 68.078261) (xy 160.742392 68.235954) - (xy 160.742392 68.235956) (xy 160.742391 68.235956) (xy 159.77583 68.235956) (xy 159.715277 68.145331) - (xy 159.715274 68.145327) (xy 159.624677 68.05473) (xy 159.62467 68.054724) (xy 159.624668 68.054723) - (xy 159.518127 67.983534) (xy 159.518128 67.983534) (xy 159.518118 67.983529) (xy 159.399753 67.934502) - (xy 159.399733 67.934495) (xy 159.399725 67.934493) (xy 159.274074 67.9095) (xy 159.274071 67.9095) - (xy 159.274069 67.9095) (xy 159.145931 67.9095) (xy 159.145929 67.9095) (xy 159.145926 67.9095) - (xy 159.020273 67.934493) (xy 159.020265 67.934495) (xy 159.020245 67.934502) (xy 158.90188 67.983529) - (xy 158.90187 67.983534) (xy 158.795331 68.054723) (xy 158.795329 68.054724) (xy 158.795321 68.05473) - (xy 158.70473 68.145321) (xy 158.704725 68.145327) (xy 158.704724 68.145328) (xy 158.633534 68.25187) - (xy 158.633529 68.25188) (xy 158.584502 68.370245) (xy 158.584495 68.370265) (xy 158.584493 68.370273) - (xy 158.5595 68.495923) (xy 158.5595 68.579702) (xy 158.554237 68.597622) (xy 150.970253 68.597622) - (xy 151.049394 68.479179) (xy 151.065729 68.439744) (xy 151.109348 68.334434) (xy 151.109583 68.333945) - (xy 151.109731 68.33351) (xy 151.109735 68.333501) (xy 151.109737 68.333497) (xy 151.137345 68.194702) - (xy 151.1405 68.178844) (xy 151.1405 68.020972) (xy 151.140069 68.018992) (xy 151.138331 68.010255) - (xy 151.109737 67.866503) (xy 151.094271 67.829165) (xy 151.075043 67.782743) (xy 151.059296 67.744726) - (xy 151.049397 67.720827) (xy 151.04939 67.720814) (xy 150.961789 67.589711) (xy 150.961786 67.589707) - (xy 150.961781 67.589701) (xy 150.850297 67.478217) (xy 150.850291 67.478212) (xy 150.85029 67.478211) - (xy 150.719191 67.390613) (xy 150.71919 67.390612) (xy 150.719185 67.390609) (xy 150.719172 67.390602) - (xy 150.719165 67.390598) (xy 150.573502 67.330264) (xy 150.573471 67.330257) (xy 150.418847 67.2995) - (xy 150.418845 67.2995) (xy 150.418842 67.2995) (xy 150.261158 67.2995) (xy 150.261155 67.2995) - (xy 150.261153 67.2995) (xy 150.106527 67.330257) (xy 150.106496 67.330264) (xy 149.960833 67.390598) - (xy 149.960824 67.390603) (xy 149.960807 67.390613) (xy 149.829708 67.478211) (xy 149.829707 67.478212) - (xy 149.829701 67.478217) (xy 149.718217 67.589701) (xy 149.718212 67.589707) (xy 149.718211 67.589708) - (xy 149.630613 67.720807) (xy 149.630603 67.720824) (xy 149.630598 67.720833) (xy 149.570264 67.866496) - (xy 149.570257 67.866527) (xy 149.5395 68.02115) (xy 149.5395 68.021153) (xy 149.5395 68.178846) - (xy 149.5395 68.178848) (xy 149.539499 68.178848) (xy 148.156582 68.178848) (xy 148.155028 68.171034) - (xy 148.130133 68.110931) (xy 148.11008 68.062518) (xy 148.094688 68.025358) (xy 148.094681 68.025345) - (xy 148.00708 67.894242) (xy 148.007077 67.894238) (xy 148.007072 67.894232) (xy 147.895588 67.782748) - (xy 147.895582 67.782743) (xy 147.895581 67.782742) (xy 147.764482 67.695144) (xy 147.764481 67.695143) - (xy 147.764476 67.69514) (xy 147.764463 67.695133) (xy 147.764456 67.695129) (xy 147.618793 67.634795) - (xy 147.618762 67.634788) (xy 147.464138 67.604031) (xy 147.464136 67.604031) (xy 147.464133 67.604031) - (xy 147.306449 67.604031) (xy 147.306446 67.604031) (xy 147.306444 67.604031) (xy 147.151818 67.634788) - (xy 147.151787 67.634795) (xy 147.006124 67.695129) (xy 147.006115 67.695134) (xy 147.006098 67.695144) - (xy 146.874999 67.782742) (xy 146.874998 67.782743) (xy 146.874992 67.782748) (xy 146.763508 67.894232) - (xy 146.763503 67.894238) (xy 146.763502 67.894239) (xy 146.675904 68.025338) (xy 146.675894 68.025355) - (xy 146.675889 68.025364) (xy 146.615555 68.171027) (xy 146.615548 68.171058) (xy 146.584791 68.325681) - (xy 146.584791 68.325684) (xy 146.584791 68.483377) (xy 146.584791 68.483379) (xy 146.58479 68.483379) - (xy 143.648684 68.483379) (xy 143.6655 68.398842) (xy 143.6655 68.241158) (xy 143.6655 68.241155) - (xy 143.665499 68.241153) (xy 143.661521 68.221153) (xy 143.644569 68.135931) (xy 143.634739 68.08651) - (xy 143.634737 68.086507) (xy 143.634737 68.086503) (xy 143.621574 68.054724) (xy 143.574397 67.940827) - (xy 143.57439 67.940814) (xy 143.486789 67.809711) (xy 143.486786 67.809707) (xy 143.486781 67.809701) - (xy 143.375297 67.698217) (xy 143.375291 67.698212) (xy 143.37529 67.698211) (xy 143.244191 67.610613) - (xy 143.24419 67.610612) (xy 143.244185 67.610609) (xy 143.244172 67.610602) (xy 143.244165 67.610598) - (xy 143.098502 67.550264) (xy 143.098471 67.550257) (xy 142.943847 67.5195) (xy 142.943845 67.5195) - (xy 142.943842 67.5195) (xy 142.786158 67.5195) (xy 142.786155 67.5195) (xy 142.786153 67.5195) - (xy 142.631527 67.550257) (xy 142.631496 67.550264) (xy 142.485833 67.610598) (xy 142.485824 67.610603) - (xy 142.485807 67.610613) (xy 142.354708 67.698211) (xy 142.354707 67.698212) (xy 142.354701 67.698217) - (xy 142.243217 67.809701) (xy 142.243212 67.809707) (xy 142.243211 67.809708) (xy 142.155613 67.940807) - (xy 142.155603 67.940824) (xy 142.155598 67.940833) (xy 142.095264 68.086496) (xy 142.095257 68.086527) - (xy 142.0645 68.24115) (xy 142.0645 68.241153) (xy 142.0645 68.398846) (xy 142.0645 68.398848) (xy 142.064499 68.398848) - (xy 141.533636 68.398848) (xy 141.537615 68.378844) (xy 141.5505 68.314071) (xy 141.5505 68.185928) - (xy 141.5505 68.185925) (xy 141.525295 68.05922) (xy 141.523724 68.055947) (xy 141.523473 68.055362) - (xy 141.476465 67.941873) (xy 141.476464 67.941872) (xy 141.476461 67.941866) (xy 141.405276 67.835331) - (xy 141.405273 67.835327) (xy 141.405268 67.835321) (xy 141.314677 67.74473) (xy 141.314671 67.744725) - (xy 141.31467 67.744724) (xy 141.208127 67.673534) (xy 141.208128 67.673534) (xy 141.208118 67.673529) - (xy 141.089753 67.624502) (xy 141.089733 67.624495) (xy 141.089725 67.624493) (xy 140.964074 67.5995) - (xy 140.964071 67.5995) (xy 140.964069 67.5995) (xy 140.835931 67.5995) (xy 140.835929 67.5995) - (xy 140.835926 67.5995) (xy 140.710273 67.624493) (xy 140.710265 67.624495) (xy 140.710245 67.624502) - (xy 140.591884 67.673528) (xy 140.591873 67.673533) (xy 140.500446 67.734623) (xy 140.468608 67.749855) - (xy 140.453693 67.754525) (xy 140.383839 67.755773) (xy 140.376752 67.753829) (xy 140.321871 67.721925) - (xy 140.30467 67.704724) (xy 140.198127 67.633534) (xy 140.198128 67.633534) (xy 140.198118 67.633529) - (xy 140.079753 67.584502) (xy 140.079733 67.584495) (xy 140.079725 67.584493) (xy 139.954074 67.5595) - (xy 139.954071 67.5595) (xy 139.954069 67.5595) (xy 139.825931 67.5595) (xy 139.825929 67.5595) - (xy 139.825926 67.5595) (xy 139.700273 67.584493) (xy 139.700265 67.584495) (xy 139.700245 67.584502) - (xy 139.58188 67.633529) (xy 139.58187 67.633534) (xy 139.475328 67.704724) (xy 139.475327 67.704725) - (xy 139.475321 67.70473) (xy 139.38473 67.795321) (xy 139.384725 67.795327) (xy 139.384724 67.795328) - (xy 139.313534 67.90187) (xy 139.313529 67.90188) (xy 139.264502 68.020245) (xy 139.264495 68.020265) - (xy 139.264493 68.020273) (xy 139.2395 68.145923) (xy 139.2395 68.229702) (xy 139.234237 68.247622) - (xy 138.0405 68.247622) (xy 138.0405 68.145928) (xy 138.040381 68.145331) (xy 138.015262 68.019053) - (xy 138.013176 68.014644) (xy 138.01136 68.010261) (xy 137.966465 67.901873) (xy 137.966464 67.901872) - (xy 137.966463 67.90187) (xy 137.966463 67.901869) (xy 137.895274 67.795328) (xy 137.895273 67.795327) - (xy 137.895268 67.795321) (xy 137.804677 67.70473) (xy 137.804671 67.704725) (xy 137.80467 67.704724) - (xy 137.698127 67.633534) (xy 137.698128 67.633534) (xy 137.698118 67.633529) (xy 137.579753 67.584502) - (xy 137.579733 67.584495) (xy 137.579725 67.584493) (xy 137.454074 67.5595) (xy 137.454071 67.5595) - (xy 137.454069 67.5595) (xy 137.325931 67.5595) (xy 137.325929 67.5595) (xy 137.325926 67.5595) - (xy 137.200273 67.584493) (xy 137.200265 67.584495) (xy 137.200245 67.584502) (xy 137.081885 67.633527) - (xy 137.081875 67.633533) (xy 137.081866 67.633538) (xy 137.081854 67.633545) (xy 137.081854 67.633546) - (xy 136.99168 67.693798) (xy 136.971213 67.704849) (xy 136.94861 67.714437) (xy 136.879208 67.722495) - (xy 136.879207 67.722494) (xy 136.879207 67.722495) (xy 136.879206 67.722494) (xy 136.874233 67.721641) - (xy 136.823109 67.70031) (xy 136.819867 67.697993) (xy 136.819866 67.697993) (xy 136.79425 67.679683) - (xy 136.780737 67.672051) (xy 136.777709 67.670028) (xy 136.708133 67.623538) (xy 136.708132 67.623537) - (xy 136.708127 67.623534) (xy 136.708128 67.623534) (xy 136.708118 67.623529) (xy 136.589753 67.574502) - (xy 136.589733 67.574495) (xy 136.589725 67.574493) (xy 136.464074 67.5495) (xy 136.464071 67.5495) - (xy 136.464069 67.5495) (xy 136.335931 67.5495) (xy 136.335929 67.5495) (xy 136.335926 67.5495) - (xy 136.210273 67.574493) (xy 136.210265 67.574495) (xy 136.210245 67.574502) (xy 136.09188 67.623529) - (xy 136.09187 67.623534) (xy 135.985328 67.694724) (xy 135.985327 67.694725) (xy 135.985321 67.69473) - (xy 135.89473 67.785321) (xy 135.894725 67.785327) (xy 135.894724 67.785328) (xy 135.823534 67.89187) - (xy 135.823529 67.89188) (xy 135.774502 68.010245) (xy 135.774496 68.010264) (xy 135.7495 68.135923) - (xy 135.7495 68.219702) (xy 135.744237 68.237622) (xy 126.3005 68.237622) (xy 126.3005 68.235591) - (xy 126.3005 68.221158) (xy 126.3005 68.221155) (xy 126.300499 68.221153) (xy 126.287148 68.15403) - (xy 126.269738 68.066508) (xy 126.269737 68.066507) (xy 126.269498 68.065303) (xy 126.267411 68.060889) - (xy 126.209397 67.920827) (xy 126.209395 67.920823) (xy 126.209394 67.920821) (xy 126.148392 67.829526) - (xy 126.148155 67.829165) (xy 126.147894 67.828311) (xy 126.133458 67.798135) (xy 126.129448 67.785328) - (xy 126.128786 67.783216) (xy 126.128452 67.764474) (xy 126.127798 67.762327) (xy 126.128377 67.760278) - (xy 126.127539 67.713363) (xy 126.131143 67.700222) (xy 126.147622 67.664143) (xy 126.159201 67.646815) - (xy 126.204394 67.579179) (xy 126.264737 67.433497) (xy 126.2955 67.278842) (xy 126.2955 67.121158) - (xy 126.2955 67.121155) (xy 126.2955 67.120973) (xy 126.295065 67.118972) (xy 126.284384 67.065274) - (xy 126.265395 66.969815) (xy 126.264983 66.967403) (xy 126.264737 66.966504) (xy 126.247753 66.925499) - (xy 126.204402 66.82084) (xy 126.204399 66.820833) (xy 126.204397 66.820827) (xy 126.20439 66.820814) - (xy 126.116789 66.689711) (xy 126.116786 66.689707) (xy 126.116781 66.689701) (xy 126.005297 66.578217) - (xy 126.005291 66.578212) (xy 126.00529 66.578211) (xy 125.961389 66.548877) (xy 125.874185 66.490609) - (xy 125.874172 66.490602) (xy 125.874165 66.490598) (xy 125.728502 66.430264) (xy 125.728471 66.430257) - (xy 125.573847 66.3995) (xy 125.573845 66.3995) (xy 125.573842 66.3995) (xy 125.416158 66.3995) - (xy 125.416155 66.3995) (xy 125.416153 66.3995) (xy 125.261527 66.430257) (xy 125.261496 66.430264) - (xy 125.115833 66.490598) (xy 125.115824 66.490603) (xy 125.115819 66.490606) (xy 125.115814 66.490609) - (xy 125.063443 66.525602) (xy 124.984708 66.578211) (xy 124.984707 66.578212) (xy 124.984701 66.578217) - (xy 124.873217 66.689701) (xy 124.873212 66.689707) (xy 124.873211 66.689708) (xy 124.785613 66.820807) - (xy 124.785603 66.820824) (xy 124.785598 66.820833) (xy 124.725264 66.966496) (xy 124.725257 66.966527) - (xy 124.6945 67.12115) (xy 124.6945 67.121153) (xy 124.6945 67.278846) (xy 124.6945 67.278848) (xy 124.694499 67.278848) - (xy 119.53716 67.278848) (xy 119.521828 66.222788) (xy 119.540537 66.155473) (xy 119.55813 66.133314) - (xy 120.113965 65.577478) (xy 120.175286 65.543995) (xy 120.244977 65.548979) (xy 120.300911 65.59085) - (xy 120.304745 65.596269) (xy 120.316946 65.614529) (xy 120.316951 65.614535) (xy 120.430464 65.728048) - (xy 120.430468 65.728051) (xy 120.448726 65.740251) (xy 120.493531 65.793863) (xy 120.502238 65.863188) - (xy 120.472083 65.926216) (xy 120.467516 65.931034) (xy 119.921547 66.477003) (xy 119.921547 66.477004) - (xy 119.921547 66.477005) (xy 119.990977 66.53028) (xy 120.074006 66.578217) (xy 120.186521 66.643177) - (xy 120.186565 66.643199) (xy 120.187118 66.643424) (xy 120.395131 66.729586) (xy 120.613239 66.788028) - (xy 120.8371 66.8175) (xy 121.062893 66.8175) (xy 121.0629 66.8175) (xy 121.28676 66.788028) (xy 121.504868 66.729586) - (xy 121.712969 66.643387) (xy 121.713421 66.643203) (xy 121.713459 66.643184) (xy 121.71347 66.64318) - (xy 121.71348 66.643176) (xy 121.909018 66.530283) (xy 121.978451 66.477004) (xy 121.97845 66.477003) - (xy 121.97845 66.477002) (xy 121.432482 65.931035) (xy 121.398997 65.869712) (xy 121.403981 65.800021) - (xy 121.445852 65.744087) (xy 121.451273 65.740251) (xy 121.469532 65.728051) (xy 121.583051 65.614532) - (xy 121.595251 65.596272) (xy 121.648863 65.551468) (xy 121.718188 65.54276) (xy 121.781216 65.572914) - (xy 121.786035 65.577482) (xy 122.332002 66.12345) (xy 122.332003 66.12345) (xy 122.332004 66.123451) - (xy 122.385283 66.054018) (xy 122.498176 65.85848) (xy 122.49818 65.85847) (xy 122.498184 65.858459) - (xy 122.498203 65.858421) (xy 122.498387 65.857969) (xy 122.584586 65.649868) (xy 122.643028 65.43176) - (xy 122.6725 65.207899) (xy 122.6725 64.9821) (xy 122.643028 64.758239) (xy 122.635153 64.728848) - (xy 132.899499 64.728848) (xy 132.930257 64.883471) (xy 132.930264 64.883502) (xy 132.990598 65.029165) - (xy 132.990603 65.029174) (xy 132.990613 65.029191) (xy 133.078211 65.16029) (xy 133.078212 65.160291) - (xy 133.078217 65.160297) (xy 133.189701 65.271781) (xy 133.189707 65.271786) (xy 133.189711 65.271789) - (xy 133.320814 65.35939) (xy 133.320827 65.359397) (xy 133.320829 65.359397) (xy 133.320833 65.3594) - (xy 133.457453 65.415989) (xy 133.466421 65.419703) (xy 133.466503 65.419737) (xy 133.61137 65.448553) - (xy 133.613535 65.448983) (xy 133.613544 65.448988) (xy 133.616236 65.449701) (xy 133.621155 65.4505) + (xy 142.786153 69.120499) (xy 142.786156 69.1205) (xy 142.786158 69.1205) (xy 142.943844 69.1205) + (xy 142.943845 69.120499) (xy 143.098497 69.089737) (xy 143.244179 69.029394) (xy 143.375289 68.941789) + (xy 143.486789 68.830289) (xy 143.574394 68.699179) (xy 143.574395 68.699178) (xy 143.57772 68.69115) + (xy 143.577794 68.690971) (xy 143.588067 68.666166) (xy 143.61442 68.602546) (xy 158.504237 68.602546) + (xy 158.536416 68.764315) (xy 158.536417 68.764319) (xy 158.536418 68.764322) (xy 158.536421 68.764332) + (xy 158.536424 68.76434) (xy 158.536429 68.764354) (xy 158.589217 68.891797) (xy 158.589222 68.891806) + (xy 158.589232 68.891823) (xy 158.665886 69.006543) (xy 158.665887 69.006544) (xy 158.665892 69.00655) + (xy 158.763448 69.104106) (xy 158.763454 69.104111) (xy 158.763458 69.104114) (xy 158.878182 69.180771) + (xy 158.878195 69.180778) (xy 159.005667 69.233578) (xy 159.005672 69.23358) (xy 159.005676 69.23358) + (xy 159.005677 69.233581) (xy 159.049957 69.242389) (xy 159.141002 69.2605) (xy 159.278995 69.2605) + (xy 159.278996 69.2605) (xy 159.324518 69.251444) (xy 159.370041 69.242389) (xy 159.414328 69.23358) + (xy 159.541811 69.180775) (xy 159.656542 69.104114) (xy 159.754114 69.006542) (xy 159.830775 68.891811) + (xy 159.833149 68.886081) (xy 159.848573 68.848842) (xy 159.852802 68.838633) (xy 159.852802 68.838632) + (xy 159.855022 68.833273) (xy 159.88358 68.764328) (xy 159.896539 68.699179) (xy 159.9105 68.628995) + (xy 159.9105 68.491004) (xy 159.9105 68.491001) (xy 159.892168 68.398844) (xy 159.883581 68.355677) + (xy 159.88358 68.355676) (xy 159.883341 68.354472) (xy 159.881262 68.350078) (xy 159.859018 68.296373) + (xy 159.833993 68.235956) (xy 160.742391 68.235956) (xy 160.773149 68.390579) (xy 160.773156 68.39061) + (xy 160.83349 68.536273) (xy 160.833495 68.536282) (xy 160.833505 68.536299) (xy 160.921103 68.667398) + (xy 160.921104 68.667399) (xy 160.921109 68.667405) (xy 161.032593 68.778889) (xy 161.032599 68.778894) + (xy 161.032603 68.778897) (xy 161.163706 68.866498) (xy 161.163719 68.866505) (xy 161.275965 68.912998) + (xy 161.309395 68.926845) (xy 161.309397 68.926845) (xy 161.309402 68.926847) (xy 161.384483 68.941781) + (xy 161.464045 68.957607) (xy 161.464048 68.957608) (xy 161.46405 68.957608) (xy 161.621736 68.957608) + (xy 161.621737 68.957607) (xy 161.776389 68.926845) (xy 161.917047 68.868583) (xy 161.922064 68.866505) + (xy 161.922064 68.866504) (xy 161.922066 68.866503) (xy 161.922071 68.866502) (xy 161.922073 68.8665) + (xy 161.924419 68.865529) (xy 161.924419 68.865528) (xy 161.933681 68.861693) (xy 161.942567 68.852806) + (xy 162.053181 68.778897) (xy 162.164681 68.667397) (xy 162.252286 68.536287) (xy 162.256212 68.52681) + (xy 162.28069 68.467713) (xy 162.312629 68.390605) (xy 162.343392 68.23595) (xy 162.343392 68.217546) + (xy 167.044237 68.217546) (xy 167.076416 68.379315) (xy 167.076417 68.379319) (xy 167.076418 68.379322) + (xy 167.076421 68.379332) (xy 167.076424 68.37934) (xy 167.076429 68.379354) (xy 167.129217 68.506797) + (xy 167.129222 68.506806) (xy 167.129232 68.506823) (xy 167.205886 68.621543) (xy 167.205887 68.621544) + (xy 167.205892 68.62155) (xy 167.303448 68.719106) (xy 167.303454 68.719111) (xy 167.303458 68.719114) + (xy 167.418182 68.795771) (xy 167.418195 68.795778) (xy 167.508732 68.833279) (xy 167.540067 68.846258) + (xy 167.54447 68.848341) (xy 167.681001 68.8755) (xy 167.818995 68.8755) (xy 167.818996 68.8755) + (xy 167.888404 68.861693) (xy 167.910041 68.857389) (xy 167.954328 68.84858) (xy 168.081811 68.795775) + (xy 168.196542 68.719114) (xy 168.294114 68.621542) (xy 168.370775 68.506811) (xy 168.42358 68.379328) + (xy 168.443058 68.281408) (xy 168.4505 68.243995) (xy 168.4505 68.237548) (xy 169.544236 68.237548) + (xy 169.576415 68.399317) (xy 169.576416 68.399321) (xy 169.576417 68.399324) (xy 169.57642 68.399334) + (xy 169.576423 68.399342) (xy 169.576428 68.399356) (xy 169.629216 68.526799) (xy 169.62922 68.526806) + (xy 169.629227 68.526819) (xy 169.650035 68.55796) (xy 169.705885 68.641545) (xy 169.705886 68.641546) + (xy 169.705891 68.641552) (xy 169.803447 68.739108) (xy 169.803453 68.739113) (xy 169.803457 68.739116) + (xy 169.918181 68.815773) (xy 169.918194 68.81578) (xy 170.045666 68.86858) (xy 170.045671 68.868582) + (xy 170.045675 68.868582) (xy 170.045676 68.868583) (xy 170.101471 68.879681) (xy 170.181001 68.895502) + (xy 170.318994 68.895502) (xy 170.318995 68.895502) (xy 170.419548 68.8755) (xy 170.454327 68.868582) + (xy 170.58181 68.815777) (xy 170.696541 68.739116) (xy 170.794113 68.641544) (xy 170.852962 68.553471) + (xy 170.870771 68.526818) (xy 170.870772 68.526815) (xy 170.870774 68.526813) (xy 170.923579 68.39933) + (xy 170.946235 68.285433) (xy 170.947018 68.281498) (xy 170.947018 68.281494) (xy 170.947019 68.281493) + (xy 170.950499 68.263997) (xy 170.950499 68.126006) (xy 170.950499 68.126003) (xy 170.92334 67.989472) + (xy 170.921254 67.985061) (xy 170.915292 67.970667) (xy 170.903058 67.941131) (xy 170.87078 67.863203) + (xy 170.870775 67.863194) (xy 170.87077 67.863184) (xy 170.794113 67.74846) (xy 170.79411 67.748456) + (xy 170.794105 67.74845) (xy 170.696549 67.650894) (xy 170.696543 67.650889) (xy 170.696542 67.650888) + (xy 170.581822 67.574234) (xy 170.581821 67.574233) (xy 170.581816 67.57423) (xy 170.581803 67.574223) + (xy 170.581796 67.574219) (xy 170.454353 67.521431) (xy 170.454339 67.521426) (xy 170.454331 67.521423) + (xy 170.454321 67.52142) (xy 170.454318 67.521419) (xy 170.454314 67.521418) (xy 170.318997 67.494502) + (xy 170.318994 67.494502) (xy 170.318992 67.494502) (xy 170.181006 67.494502) (xy 170.181004 67.494502) + (xy 170.180999 67.494502) (xy 170.045682 67.521418) (xy 170.045676 67.52142) (xy 170.045666 67.521423) + (xy 170.045661 67.521424) (xy 170.045643 67.521431) (xy 169.9182 67.574219) (xy 169.918191 67.574224) + (xy 169.918174 67.574234) (xy 169.803454 67.650888) (xy 169.803453 67.650889) (xy 169.803447 67.650894) + (xy 169.705891 67.74845) (xy 169.705886 67.748456) (xy 169.705885 67.748457) (xy 169.629231 67.863177) + (xy 169.629221 67.863194) (xy 169.629216 67.863203) (xy 169.576428 67.990646) (xy 169.576417 67.990679) + (xy 169.549499 68.126002) (xy 169.549499 68.219628) (xy 169.544236 68.237548) (xy 168.4505 68.237548) + (xy 168.4505 68.106004) (xy 168.4505 68.106) (xy 168.42756 67.990679) (xy 168.423581 67.970677) + (xy 168.42358 67.970676) (xy 168.42358 67.970672) (xy 168.423579 67.97067) (xy 168.42334 67.969469) + (xy 168.42126 67.965072) (xy 168.370778 67.843195) (xy 168.370771 67.843182) (xy 168.294114 67.728458) + (xy 168.294111 67.728454) (xy 168.294106 67.728448) (xy 168.19655 67.630892) (xy 168.196544 67.630887) + (xy 168.196543 67.630886) (xy 168.158127 67.605217) (xy 168.081817 67.554228) (xy 168.081804 67.554221) + (xy 168.081797 67.554217) (xy 167.954354 67.501429) (xy 167.95434 67.501424) (xy 167.954332 67.501421) + (xy 167.954322 67.501418) (xy 167.954319 67.501417) (xy 167.954315 67.501416) (xy 167.818998 67.4745) + (xy 167.818995 67.4745) (xy 167.818993 67.4745) (xy 167.681007 67.4745) (xy 167.681005 67.4745) + (xy 167.681 67.4745) (xy 167.545683 67.501416) (xy 167.545677 67.501418) (xy 167.545667 67.501421) + (xy 167.545662 67.501422) (xy 167.545644 67.501429) (xy 167.418201 67.554217) (xy 167.418192 67.554222) + (xy 167.418187 67.554225) (xy 167.418182 67.554228) (xy 167.372354 67.584849) (xy 167.303455 67.630886) + (xy 167.303454 67.630887) (xy 167.303448 67.630892) (xy 167.205892 67.728448) (xy 167.205887 67.728454) + (xy 167.205886 67.728455) (xy 167.129232 67.843175) (xy 167.129222 67.843192) (xy 167.129217 67.843201) + (xy 167.076429 67.970644) (xy 167.076416 67.970683) (xy 167.0495 68.106) (xy 167.0495 68.199626) + (xy 167.044237 68.217546) (xy 162.343392 68.217546) (xy 162.343392 68.078266) (xy 162.343392 68.078263) + (xy 162.343391 68.078261) (xy 162.330984 68.015886) (xy 162.325968 67.990669) (xy 162.312631 67.923618) + (xy 162.312629 67.923615) (xy 162.312629 67.923611) (xy 162.294851 67.88069) (xy 162.252289 67.777935) + (xy 162.252282 67.777922) (xy 162.164681 67.646819) (xy 162.164678 67.646815) (xy 162.164673 67.646809) + (xy 162.053189 67.535325) (xy 162.053183 67.53532) (xy 162.053182 67.535319) (xy 161.922083 67.447721) + (xy 161.922082 67.44772) (xy 161.922077 67.447717) (xy 161.922064 67.44771) (xy 161.922057 67.447706) + (xy 161.776394 67.387372) (xy 161.776363 67.387365) (xy 161.621739 67.356608) (xy 161.621737 67.356608) + (xy 161.621734 67.356608) (xy 161.46405 67.356608) (xy 161.464047 67.356608) (xy 161.464045 67.356608) + (xy 161.309419 67.387365) (xy 161.309388 67.387372) (xy 161.163725 67.447706) (xy 161.163716 67.447711) + (xy 161.163699 67.447721) (xy 161.0326 67.535319) (xy 161.032599 67.53532) (xy 161.032593 67.535325) + (xy 160.921109 67.646809) (xy 160.921104 67.646815) (xy 160.921103 67.646816) (xy 160.833505 67.777915) + (xy 160.833495 67.777932) (xy 160.83349 67.777941) (xy 160.773156 67.923604) (xy 160.773149 67.923635) + (xy 160.742392 68.078258) (xy 160.742392 68.078261) (xy 160.742392 68.235954) (xy 160.742392 68.235956) + (xy 160.742391 68.235956) (xy 159.833993 68.235956) (xy 159.830778 68.228195) (xy 159.830771 68.228182) + (xy 159.784808 68.159394) (xy 159.77256 68.141063) (xy 159.77256 68.141062) (xy 159.772559 68.141062) + (xy 159.754114 68.113458) (xy 159.754111 68.113454) (xy 159.75411 68.113453) (xy 159.754106 68.113448) + (xy 159.65655 68.015892) (xy 159.656543 68.015886) (xy 159.541823 67.939232) (xy 159.541822 67.939231) + (xy 159.541817 67.939228) (xy 159.541804 67.939221) (xy 159.541797 67.939217) (xy 159.414354 67.886429) + (xy 159.41434 67.886424) (xy 159.414332 67.886421) (xy 159.414322 67.886418) (xy 159.414319 67.886417) + (xy 159.414315 67.886416) (xy 159.278998 67.8595) (xy 159.278995 67.8595) (xy 159.278993 67.8595) + (xy 159.141007 67.8595) (xy 159.141005 67.8595) (xy 159.141 67.8595) (xy 159.005683 67.886416) (xy 159.005677 67.886418) + (xy 159.005667 67.886421) (xy 159.005662 67.886422) (xy 159.005644 67.886429) (xy 158.878201 67.939217) + (xy 158.878192 67.939222) (xy 158.878175 67.939232) (xy 158.763456 68.015886) (xy 158.763448 68.015892) + (xy 158.665892 68.113448) (xy 158.665887 68.113454) (xy 158.665886 68.113455) (xy 158.589232 68.228175) + (xy 158.589222 68.228192) (xy 158.589217 68.228201) (xy 158.536429 68.355644) (xy 158.536416 68.355683) + (xy 158.5095 68.491) (xy 158.5095 68.584626) (xy 158.504237 68.602546) (xy 143.61442 68.602546) + (xy 143.621843 68.584626) (xy 143.632889 68.55796) (xy 143.634735 68.553501) (xy 143.634737 68.553497) + (xy 143.658706 68.432999) (xy 143.665403 68.399334) (xy 143.6655 68.398845) (xy 143.6655 68.240971) + (xy 143.665064 68.238966) (xy 143.653144 68.17904) (xy 143.649234 68.159385) (xy 143.634737 68.086503) + (xy 143.625547 68.064316) (xy 143.574397 67.940827) (xy 143.57439 67.940814) (xy 143.486789 67.809711) + (xy 143.486786 67.809707) (xy 143.486781 67.809701) (xy 143.375297 67.698217) (xy 143.375291 67.698212) + (xy 143.37529 67.698211) (xy 143.244191 67.610613) (xy 143.24419 67.610612) (xy 143.244185 67.610609) + (xy 143.244172 67.610602) (xy 143.244165 67.610598) (xy 143.098502 67.550264) (xy 143.098471 67.550257) + (xy 142.943847 67.5195) (xy 142.943845 67.5195) (xy 142.943842 67.5195) (xy 142.786158 67.5195) + (xy 142.786155 67.5195) (xy 142.786153 67.5195) (xy 142.631527 67.550257) (xy 142.631496 67.550264) + (xy 142.485833 67.610598) (xy 142.485824 67.610603) (xy 142.485807 67.610613) (xy 142.354708 67.698211) + (xy 142.354707 67.698212) (xy 142.354701 67.698217) (xy 142.243217 67.809701) (xy 142.243212 67.809707) + (xy 142.243211 67.809708) (xy 142.155613 67.940807) (xy 142.155603 67.940824) (xy 142.155598 67.940833) + (xy 142.095264 68.086496) (xy 142.095257 68.086527) (xy 142.0645 68.24115) (xy 142.0645 68.241153) + (xy 142.0645 68.398846) (xy 142.0645 68.398848) (xy 142.064499 68.398848) (xy 141.564656 68.398848) + (xy 141.587417 68.284419) (xy 141.587671 68.283516) (xy 141.588 68.281494) (xy 141.588 68.143499) + (xy 141.560841 68.006968) (xy 141.558754 68.002555) (xy 141.557587 67.999737) (xy 141.545546 67.970667) + (xy 141.508278 67.880693) (xy 141.508271 67.88068) (xy 141.431614 67.765956) (xy 141.431611 67.765952) + (xy 141.431606 67.765946) (xy 141.33405 67.66839) (xy 141.334044 67.668385) (xy 141.334043 67.668384) + (xy 141.277922 67.630885) (xy 141.219317 67.591726) (xy 141.219304 67.591719) (xy 141.219302 67.591718) + (xy 141.219297 67.591715) (xy 141.091854 67.538927) (xy 141.09184 67.538922) (xy 141.091832 67.538919) + (xy 141.091822 67.538916) (xy 141.091819 67.538915) (xy 141.091815 67.538914) (xy 140.956498 67.511998) + (xy 140.956495 67.511998) (xy 140.956493 67.511998) (xy 140.818507 67.511998) (xy 140.818505 67.511998) + (xy 140.818503 67.511998) (xy 140.699303 67.535709) (xy 140.6762 67.538087) (xy 140.652734 67.538293) + (xy 140.585534 67.519204) (xy 140.581275 67.51652) (xy 140.54219 67.477264) (xy 140.541091 67.475502) + (xy 140.53173 67.457312) (xy 140.508279 67.400693) (xy 140.508272 67.400681) (xy 140.44691 67.308848) + (xy 147.999499 67.308848) (xy 148.030257 67.463471) (xy 148.030264 67.463502) (xy 148.090598 67.609165) + (xy 148.090603 67.609174) (xy 148.090613 67.609191) (xy 148.178211 67.74029) (xy 148.178212 67.740291) + (xy 148.178217 67.740297) (xy 148.289701 67.851781) (xy 148.289707 67.851786) (xy 148.289711 67.851789) + (xy 148.420814 67.93939) (xy 148.420827 67.939397) (xy 148.544635 67.990679) (xy 148.566503 67.999737) + (xy 148.715684 68.029411) (xy 148.71781 68.029913) (xy 148.717918 68.029974) (xy 148.721155 68.0305) + (xy 148.878844 68.0305) (xy 148.882964 68.0305) (xy 148.890814 68.028118) (xy 149.033497 67.999737) + (xy 149.146166 67.953067) (xy 149.172634 67.942104) (xy 149.175425 67.941131) (xy 149.176868 67.940464) + (xy 149.181528 67.938421) (xy 149.190787 67.934585) (xy 149.199671 67.925701) (xy 149.310289 67.851789) + (xy 149.421789 67.740289) (xy 149.473096 67.663503) (xy 149.509393 67.609181) (xy 149.509395 67.609177) + (xy 149.516626 67.591721) (xy 149.523875 67.574219) (xy 149.532155 67.554228) (xy 149.542668 67.528848) + (xy 150.319499 67.528848) (xy 150.350257 67.683471) (xy 150.350264 67.683502) (xy 150.410598 67.829165) + (xy 150.410603 67.829174) (xy 150.410613 67.829191) (xy 150.49821 67.960288) (xy 150.498211 67.96029) + (xy 150.498217 67.960297) (xy 150.609701 68.071781) (xy 150.609707 68.071786) (xy 150.609711 68.071789) + (xy 150.740814 68.15939) (xy 150.740827 68.159397) (xy 150.864 68.210416) (xy 150.886503 68.219737) + (xy 151.011668 68.244634) (xy 151.033512 68.248979) (xy 151.036247 68.249703) (xy 151.041155 68.2505) + (xy 151.198844 68.2505) (xy 151.202964 68.2505) (xy 151.210814 68.248118) (xy 151.353497 68.219737) + (xy 151.499179 68.159394) (xy 151.630289 68.071789) (xy 151.741789 67.960289) (xy 151.829394 67.829179) + (xy 151.889737 67.683497) (xy 151.9205 67.528842) (xy 151.9205 67.371158) (xy 151.9205 67.371155) + (xy 151.9205 67.370971) (xy 151.920064 67.368966) (xy 151.914476 67.340873) (xy 151.889739 67.21651) + (xy 151.889737 67.216507) (xy 151.889737 67.216503) (xy 151.87809 67.188384) (xy 151.829397 67.070827) + (xy 151.82939 67.070814) (xy 151.741789 66.939711) (xy 151.741786 66.939707) (xy 151.741781 66.939701) + (xy 151.630297 66.828217) (xy 151.630291 66.828212) (xy 151.63029 66.828211) (xy 151.499191 66.740613) + (xy 151.49919 66.740612) (xy 151.499185 66.740609) (xy 151.499172 66.740602) (xy 151.499165 66.740598) + (xy 151.42584 66.710227) (xy 151.353502 66.680264) (xy 151.353471 66.680257) (xy 151.198847 66.6495) + (xy 151.198845 66.6495) (xy 151.198842 66.6495) (xy 151.041158 66.6495) (xy 151.041155 66.6495) + (xy 151.041153 66.6495) (xy 150.886527 66.680257) (xy 150.886496 66.680264) (xy 150.740833 66.740598) + (xy 150.740824 66.740603) (xy 150.740807 66.740613) (xy 150.609708 66.828211) (xy 150.609707 66.828212) + (xy 150.609701 66.828217) (xy 150.498217 66.939701) (xy 150.498212 66.939707) (xy 150.498211 66.939708) + (xy 150.410613 67.070807) (xy 150.410603 67.070824) (xy 150.410598 67.070833) (xy 150.350264 67.216496) + (xy 150.350257 67.216527) (xy 150.3195 67.37115) (xy 150.3195 67.371153) (xy 150.3195 67.528846) + (xy 150.3195 67.528848) (xy 150.319499 67.528848) (xy 149.542668 67.528848) (xy 149.569737 67.463497) + (xy 149.575655 67.433741) (xy 149.594129 67.340874) (xy 149.594129 67.340873) (xy 149.595931 67.331817) + (xy 149.600068 67.311015) (xy 149.6005 67.309026) (xy 149.6005 67.150973) (xy 149.600065 67.148972) + (xy 149.584518 67.070814) (xy 149.569737 66.996503) (xy 149.569735 66.996498) (xy 149.509397 66.850827) + (xy 149.50939 66.850814) (xy 149.421789 66.719711) (xy 149.421786 66.719707) (xy 149.421781 66.719701) + (xy 149.310294 66.608214) (xy 149.310288 66.60821) (xy 149.301811 66.602546) (xy 158.534237 66.602546) + (xy 158.566416 66.764315) (xy 158.56642 66.764328) (xy 158.566429 66.764354) (xy 158.619217 66.891797) + (xy 158.619222 66.891806) (xy 158.619232 66.891823) (xy 158.695886 67.006543) (xy 158.695887 67.006544) + (xy 158.695892 67.00655) (xy 158.793448 67.104106) (xy 158.793453 67.10411) (xy 158.793454 67.104111) + (xy 158.793458 67.104114) (xy 158.908182 67.180771) (xy 158.908195 67.180778) (xy 158.994432 67.216498) + (xy 159.03006 67.231255) (xy 159.03447 67.233341) (xy 159.171001 67.2605) (xy 159.308995 67.2605) + (xy 159.308996 67.2605) (xy 159.354518 67.251444) (xy 159.400041 67.242389) (xy 159.444328 67.23358) + (xy 159.571811 67.180775) (xy 159.686542 67.104114) (xy 159.686545 67.104111) (xy 159.686547 67.10411) + (xy 159.74811 67.042546) (xy 174.469237 67.042546) (xy 174.501416 67.204315) (xy 174.501417 67.204319) + (xy 174.501418 67.204322) (xy 174.501421 67.204332) (xy 174.501424 67.20434) (xy 174.501429 67.204354) + (xy 174.554217 67.331797) (xy 174.554222 67.331806) (xy 174.554232 67.331823) (xy 174.630886 67.446543) + (xy 174.630887 67.446544) (xy 174.630892 67.44655) (xy 174.728448 67.544106) (xy 174.728454 67.544111) + (xy 174.728458 67.544114) (xy 174.843182 67.620771) (xy 174.843195 67.620778) (xy 174.970667 67.673578) + (xy 174.970672 67.67358) (xy 174.970676 67.67358) (xy 174.970677 67.673581) (xy 175.020527 67.683497) + (xy 175.106002 67.7005) (xy 175.243995 67.7005) (xy 175.243996 67.7005) (xy 175.352321 67.678952) + (xy 175.379328 67.67358) (xy 175.506811 67.620775) (xy 175.621542 67.544114) (xy 175.719114 67.446542) + (xy 175.795775 67.331811) (xy 175.84858 67.204328) (xy 175.868515 67.104111) (xy 175.872007 67.086553) + (xy 175.8755 67.068996) (xy 175.8755 66.931001) (xy 175.848341 66.794469) (xy 175.846255 66.790058) + (xy 175.835608 66.764354) (xy 175.835597 66.764328) (xy 175.795778 66.668195) (xy 175.795771 66.668182) + (xy 175.719114 66.553458) (xy 175.719111 66.553454) (xy 175.650938 66.485281) (xy 175.629792 66.45703) + (xy 175.622301 66.44331) (xy 175.60745 66.375052) (xy 175.607579 66.373243) (xy 175.626949 66.315042) + (xy 175.631133 66.308531) (xy 175.647763 66.287896) (xy 175.719113 66.216546) (xy 175.719116 66.216542) + (xy 175.735994 66.191282) (xy 175.795776 66.101812) (xy 175.798966 66.094112) (xy 175.830883 66.017055) + (xy 175.848581 65.974329) (xy 175.859692 65.91847) (xy 175.875076 65.841131) (xy 175.875501 65.838997) + (xy 175.875501 65.701002) (xy 175.848342 65.56447) (xy 175.846252 65.560051) (xy 175.844282 65.555294) + (xy 175.844282 65.555293) (xy 175.795782 65.438202) (xy 175.795777 65.438193) (xy 175.795772 65.438183) + (xy 175.719115 65.323459) (xy 175.719112 65.323455) (xy 175.719107 65.323449) (xy 175.621551 65.225893) + (xy 175.621545 65.225888) (xy 175.621544 65.225887) (xy 175.506824 65.149233) (xy 175.506823 65.149232) + (xy 175.506818 65.149229) (xy 175.506805 65.149222) (xy 175.506798 65.149218) (xy 175.379355 65.09643) + (xy 175.379341 65.096425) (xy 175.379333 65.096422) (xy 175.379323 65.096419) (xy 175.37932 65.096418) + (xy 175.379316 65.096417) (xy 175.243999 65.069501) (xy 175.243996 65.069501) (xy 175.243994 65.069501) + (xy 175.106008 65.069501) (xy 175.106006 65.069501) (xy 175.106001 65.069501) (xy 174.970684 65.096417) + (xy 174.970678 65.096419) (xy 174.970668 65.096422) (xy 174.970663 65.096423) (xy 174.970645 65.09643) + (xy 174.843202 65.149218) (xy 174.843193 65.149223) (xy 174.843176 65.149233) (xy 174.728456 65.225887) + (xy 174.728455 65.225888) (xy 174.728449 65.225893) (xy 174.630893 65.323449) (xy 174.630888 65.323455) + (xy 174.630887 65.323456) (xy 174.554233 65.438176) (xy 174.554223 65.438193) (xy 174.554218 65.438202) + (xy 174.50143 65.565645) (xy 174.501417 65.565684) (xy 174.474501 65.701001) (xy 174.474501 65.794627) + (xy 174.469238 65.812547) (xy 174.501417 65.974316) (xy 174.501418 65.97432) (xy 174.501419 65.974323) + (xy 174.501422 65.974333) (xy 174.501425 65.974341) (xy 174.50143 65.974355) (xy 174.554218 66.101798) + (xy 174.554223 66.101807) (xy 174.554233 66.101824) (xy 174.630885 66.216541) (xy 174.630886 66.216543) + (xy 174.630889 66.216546) (xy 174.699061 66.284718) (xy 174.720208 66.31297) (xy 174.727699 66.32669) + (xy 174.74255 66.394948) (xy 174.742421 66.396754) (xy 174.723053 66.454956) (xy 174.718874 66.461459) + (xy 174.702238 66.482103) (xy 174.630896 66.553444) (xy 174.630888 66.553454) (xy 174.630882 66.553462) + (xy 174.554232 66.668175) (xy 174.554222 66.668192) (xy 174.554217 66.668201) (xy 174.501429 66.795644) + (xy 174.501416 66.795683) (xy 174.4745 66.931) (xy 174.4745 67.024626) (xy 174.469237 67.042546) + (xy 159.74811 67.042546) (xy 159.784111 67.006545) (xy 159.784113 67.006543) (xy 159.784114 67.006542) + (xy 159.814811 66.960602) (xy 159.860771 66.891817) (xy 159.860771 66.891816) (xy 159.860775 66.891811) + (xy 159.870017 66.8695) (xy 159.91358 66.764328) (xy 159.913581 66.764322) (xy 159.922682 66.718567) + (xy 159.925744 66.703177) (xy 159.925744 66.703175) (xy 159.925745 66.703173) (xy 159.9405 66.628995) + (xy 159.9405 66.491004) (xy 159.940499 66.491) (xy 159.93004 66.438421) (xy 159.914676 66.361184) + (xy 159.914058 66.358063) (xy 159.914069 66.357939) (xy 159.913207 66.349627) (xy 159.912874 66.348491) + (xy 159.912868 66.348424) (xy 159.91308 66.348404) (xy 159.911699 66.335089) (xy 159.911532 66.316453) + (xy 159.930615 66.249243) (xy 159.930615 66.249242) (xy 159.9333 66.24498) (xy 159.972546 66.205899) + (xy 159.97432 66.204792) (xy 159.992512 66.195429) (xy 160.002519 66.191285) (xy 160.11725 66.114624) + (xy 160.214822 66.017052) (xy 160.214824 66.01705) (xy 160.291479 65.902327) (xy 160.291479 65.902326) + (xy 160.291483 65.902321) (xy 160.344288 65.774838) (xy 160.353007 65.731005) (xy 160.356462 65.713636) + (xy 160.356462 65.713634) (xy 160.371208 65.639507) (xy 160.371208 65.501511) (xy 160.354941 65.419736) + (xy 160.344289 65.366187) (xy 160.344288 65.366183) (xy 160.344288 65.366182) (xy 160.33115 65.334466) + (xy 160.330339 65.332274) (xy 160.330115 65.329032) (xy 160.323339 65.302483) (xy 160.32318 65.301006) + (xy 160.320414 65.27527) (xy 160.324548 65.231367) (xy 160.324089 65.231277) (xy 160.324237 65.230529) + (xy 160.324871 65.227941) (xy 160.325056 65.225984) (xy 160.326592 65.220925) (xy 160.326903 65.219659) + (xy 160.331182 65.205085) (xy 160.330676 65.202694) (xy 160.332693 65.188022) (xy 160.352225 65.08983) + (xy 160.352225 64.951836) (xy 160.325066 64.815304) (xy 160.322979 64.810892) (xy 160.312884 64.786521) + (xy 160.295318 64.744111) (xy 160.272503 64.68903) (xy 160.272496 64.689017) (xy 160.195839 64.574293) + (xy 160.195836 64.574289) (xy 160.195831 64.574283) (xy 160.098275 64.476727) (xy 160.098269 64.476722) + (xy 160.098262 64.476717) (xy 159.983548 64.400067) (xy 159.983547 64.400066) (xy 159.983542 64.400063) + (xy 159.983529 64.400056) (xy 159.98353 64.400056) (xy 159.983526 64.400054) (xy 159.863231 64.350227) + (xy 159.85607 64.347261) (xy 159.856065 64.347259) (xy 159.856057 64.347256) (xy 159.856047 64.347253) + (xy 159.856044 64.347252) (xy 159.85604 64.347251) (xy 159.720723 64.320335) (xy 159.72072 64.320335) + (xy 159.720718 64.320335) (xy 159.582732 64.320335) (xy 159.58273 64.320335) (xy 159.582725 64.320335) + (xy 159.447408 64.347251) (xy 159.447402 64.347253) (xy 159.447392 64.347256) (xy 159.447387 64.347257) + (xy 159.447369 64.347264) (xy 159.319926 64.400052) (xy 159.319917 64.400057) (xy 159.3199 64.400067) + (xy 159.205187 64.476717) (xy 159.205179 64.476722) (xy 159.205173 64.476727) (xy 159.107617 64.574283) + (xy 159.107612 64.574289) (xy 159.107611 64.57429) (xy 159.030957 64.68901) (xy 159.030947 64.689027) + (xy 159.030942 64.689036) (xy 158.978154 64.816479) (xy 158.978141 64.816518) (xy 158.951225 64.951835) + (xy 158.951225 64.951839) (xy 158.951225 64.951842) (xy 158.951225 65.089828) (xy 158.951225 65.08983) + (xy 158.951224 65.08983) (xy 158.978143 65.225156) (xy 158.978144 65.225159) (xy 158.978145 65.225163) + (xy 158.990364 65.254664) (xy 158.998605 65.286951) (xy 158.999092 65.28886) (xy 159.002017 65.316071) + (xy 158.997508 65.360503) (xy 158.998348 65.36069) (xy 158.997969 65.362395) (xy 158.996892 65.366574) + (xy 158.996842 65.367071) (xy 158.996442 65.368322) (xy 158.995903 65.370415) (xy 158.99125 65.386262) + (xy 158.991757 65.388652) (xy 158.98974 65.403317) (xy 158.970208 65.501509) (xy 158.970208 65.501514) + (xy 158.970208 65.501517) (xy 158.970208 65.639503) (xy 158.970208 65.639505) (xy 158.970207 65.639505) + (xy 158.997127 65.774836) (xy 158.997212 65.775118) (xy 158.997764 65.778973) (xy 158.9975 65.780793) + (xy 158.999008 65.795425) (xy 158.999174 65.814059) (xy 158.980087 65.881272) (xy 158.980085 65.881275) + (xy 158.977401 65.885534) (xy 158.938134 65.924625) (xy 158.936371 65.925725) (xy 158.918188 65.935083) + (xy 158.908188 65.939225) (xy 158.908174 65.939232) (xy 158.793465 66.01588) (xy 158.793454 66.015887) + (xy 158.793448 66.015892) (xy 158.695892 66.113448) (xy 158.695887 66.113454) (xy 158.695886 66.113455) + (xy 158.619232 66.228175) (xy 158.619222 66.228192) (xy 158.619217 66.228201) (xy 158.566429 66.355644) + (xy 158.566416 66.355683) (xy 158.5395 66.491) (xy 158.5395 66.584626) (xy 158.534237 66.602546) + (xy 149.301811 66.602546) (xy 149.280067 66.588017) (xy 149.179185 66.520609) (xy 149.179172 66.520602) + (xy 149.179165 66.520598) (xy 149.033502 66.460264) (xy 149.033471 66.460257) (xy 148.878847 66.4295) + (xy 148.878845 66.4295) (xy 148.878842 66.4295) (xy 148.721158 66.4295) (xy 148.721155 66.4295) + (xy 148.721153 66.4295) (xy 148.566527 66.460257) (xy 148.566496 66.460264) (xy 148.420833 66.520598) + (xy 148.420824 66.520603) (xy 148.420807 66.520613) (xy 148.289708 66.608211) (xy 148.289707 66.608212) + (xy 148.289701 66.608217) (xy 148.178217 66.719701) (xy 148.178212 66.719707) (xy 148.178211 66.719708) + (xy 148.090613 66.850807) (xy 148.090603 66.850824) (xy 148.090598 66.850833) (xy 148.030264 66.996496) + (xy 148.030257 66.996527) (xy 147.9995 67.15115) (xy 147.9995 67.151153) (xy 147.9995 67.308846) + (xy 147.9995 67.308848) (xy 147.999499 67.308848) (xy 140.44691 67.308848) (xy 140.431615 67.285957) + (xy 140.431612 67.285953) (xy 140.431607 67.285947) (xy 140.334051 67.188391) (xy 140.334045 67.188386) + (xy 140.334041 67.188383) (xy 140.219324 67.111731) (xy 140.219323 67.11173) (xy 140.219318 67.111727) + (xy 140.219305 67.11172) (xy 140.219298 67.111716) (xy 140.091855 67.058928) (xy 140.091841 67.058923) + (xy 140.091833 67.05892) (xy 140.091823 67.058917) (xy 140.09182 67.058916) (xy 140.091816 67.058915) + (xy 139.956499 67.031999) (xy 139.956496 67.031999) (xy 139.956494 67.031999) (xy 139.818508 67.031999) + (xy 139.818506 67.031999) (xy 139.818501 67.031999) (xy 139.683184 67.058915) (xy 139.683178 67.058917) + (xy 139.683168 67.05892) (xy 139.683163 67.058921) (xy 139.683145 67.058928) (xy 139.555702 67.111716) + (xy 139.555693 67.111721) (xy 139.555676 67.111731) (xy 139.44096 67.188383) (xy 139.440955 67.188386) + (xy 139.440949 67.188391) (xy 139.343393 67.285947) (xy 139.343388 67.285953) (xy 139.343387 67.285954) + (xy 139.266733 67.400674) (xy 139.26673 67.40068) (xy 139.266718 67.4007) (xy 139.21393 67.528143) + (xy 139.213917 67.528182) (xy 139.187001 67.663499) (xy 139.187001 67.757125) (xy 139.181738 67.775045) + (xy 137.937684 67.775045) (xy 137.931613 67.765959) (xy 137.93161 67.765955) (xy 137.931608 67.765953) + (xy 137.931605 67.765949) (xy 137.834049 67.668393) (xy 137.834043 67.668388) (xy 137.834042 67.668387) + (xy 137.719322 67.591733) (xy 137.719321 67.591732) (xy 137.719316 67.591729) (xy 137.719303 67.591722) + (xy 137.719301 67.591721) (xy 137.719296 67.591718) (xy 137.591853 67.53893) (xy 137.591839 67.538925) + (xy 137.591831 67.538922) (xy 137.591821 67.538919) (xy 137.591818 67.538918) (xy 137.591814 67.538917) + (xy 137.456497 67.512001) (xy 137.456494 67.512001) (xy 137.456492 67.512001) (xy 137.318506 67.512001) + (xy 137.318504 67.512001) (xy 137.318499 67.512001) (xy 137.183182 67.538917) (xy 137.183176 67.538919) + (xy 137.183166 67.538922) (xy 137.183161 67.538923) (xy 137.183143 67.53893) (xy 137.0557 67.591718) + (xy 137.055695 67.591721) (xy 137.055694 67.591722) (xy 137.055681 67.591729) (xy 137.012225 67.620766) + (xy 136.971214 67.648168) (xy 136.939381 67.663398) (xy 136.924462 67.66807) (xy 136.854603 67.66932) + (xy 136.854598 67.669318) (xy 136.841465 67.665715) (xy 136.805381 67.649236) (xy 136.719322 67.591733) + (xy 136.719321 67.591732) (xy 136.719316 67.591729) (xy 136.719303 67.591722) (xy 136.719301 67.591721) + (xy 136.719296 67.591718) (xy 136.591853 67.53893) (xy 136.591839 67.538925) (xy 136.591831 67.538922) + (xy 136.591821 67.538919) (xy 136.591818 67.538918) (xy 136.591814 67.538917) (xy 136.456497 67.512001) + (xy 136.456494 67.512001) (xy 136.456492 67.512001) (xy 136.318506 67.512001) (xy 136.318504 67.512001) + (xy 136.318499 67.512001) (xy 136.183182 67.538917) (xy 136.183176 67.538919) (xy 136.183166 67.538922) + (xy 136.183161 67.538923) (xy 136.183143 67.53893) (xy 136.0557 67.591718) (xy 136.055696 67.591721) + (xy 136.055674 67.591733) (xy 135.940954 67.668387) (xy 135.940953 67.668388) (xy 135.940947 67.668393) + (xy 135.843391 67.765949) (xy 135.843386 67.765955) (xy 135.843385 67.765956) (xy 135.766731 67.880676) + (xy 135.766718 67.880698) (xy 135.766717 67.880701) (xy 135.713928 68.008145) (xy 135.713921 68.008163) + (xy 135.71392 68.008168) (xy 135.713919 68.008173) (xy 135.713915 68.008184) (xy 135.686999 68.143501) + (xy 135.686999 68.237127) (xy 135.681736 68.255047) (xy 125.007455 68.255047) (xy 125.006473 68.248222) + (xy 125.005313 68.244516) (xy 125.005724 68.243016) (xy 125.002161 68.218245) (xy 125.000556 68.218217) + (xy 125.000567 68.217589) (xy 125.001594 68.214303) (xy 125.000865 68.209233) (xy 125.000868 68.209212) + (xy 125.001801 68.202728) (xy 125.005067 68.203198) (xy 125.021423 68.150905) (xy 125.021447 68.150868) + (xy 125.036192 68.128801) (xy 125.051425 68.106004) (xy 125.076469 68.068524) (xy 125.08939 68.049185) + (xy 125.08939 68.049184) (xy 125.089394 68.049179) (xy 125.089397 68.049171) (xy 125.090074 68.048158) + (xy 125.09171 68.043585) (xy 125.149737 67.903497) (xy 125.1805 67.748842) (xy 125.1805 67.591158) + (xy 125.1805 67.591155) (xy 125.1805 67.590973) (xy 125.180065 67.588971) (xy 125.173154 67.554227) + (xy 125.165276 67.514627) (xy 125.149737 67.436503) (xy 125.134906 67.400697) (xy 125.134899 67.40068) + (xy 125.096861 67.308848) (xy 125.089397 67.290827) (xy 125.08939 67.290814) (xy 125.001789 67.159711) + (xy 125.001786 67.159707) (xy 125.001781 67.159701) (xy 124.890297 67.048217) (xy 124.890291 67.048212) + (xy 124.89029 67.048211) (xy 124.759191 66.960613) (xy 124.75919 66.960612) (xy 124.759185 66.960609) + (xy 124.759172 66.960602) (xy 124.759165 66.960598) (xy 124.613502 66.900264) (xy 124.613471 66.900257) + (xy 124.458847 66.8695) (xy 124.458845 66.8695) (xy 124.458842 66.8695) (xy 124.301158 66.8695) + (xy 124.301155 66.8695) (xy 124.301153 66.8695) (xy 124.146527 66.900257) (xy 124.146496 66.900264) + (xy 124.000833 66.960598) (xy 124.000824 66.960603) (xy 124.000807 66.960613) (xy 123.869708 67.048211) + (xy 123.869707 67.048212) (xy 123.869701 67.048217) (xy 123.758217 67.159701) (xy 123.758212 67.159707) + (xy 123.758211 67.159708) (xy 123.670613 67.290807) (xy 123.670603 67.290824) (xy 123.670598 67.290833) + (xy 123.610264 67.436496) (xy 123.610257 67.436527) (xy 123.5795 67.59115) (xy 123.5795 67.591153) + (xy 123.5795 67.748846) (xy 123.5795 67.748848) (xy 123.579499 67.748848) (xy 123.610257 67.903471) + (xy 123.610264 67.903502) (xy 123.670598 68.049165) (xy 123.670602 68.049172) (xy 123.670609 68.049185) + (xy 123.670613 68.049191) (xy 123.670619 68.049201) (xy 123.723806 68.128801) (xy 123.739039 68.160639) + (xy 123.743711 68.17556) (xy 123.744958 68.245418) (xy 123.741357 68.258544) (xy 123.724878 68.294628) + (xy 123.66061 68.390812) (xy 123.660603 68.390824) (xy 123.660602 68.390827) (xy 123.660599 68.390831) + (xy 123.600264 68.536496) (xy 123.600257 68.536527) (xy 123.5695 68.69115) (xy 123.5695 68.691153) + (xy 123.5695 68.848846) (xy 123.5695 68.848848) (xy 123.569499 68.848848) (xy 119.503293 68.848848) + (xy 119.513509 66.208816) (xy 119.533453 66.141855) (xy 119.549823 66.121621) (xy 120.033965 65.637478) + (xy 120.095286 65.603995) (xy 120.164977 65.608979) (xy 120.220911 65.65085) (xy 120.224745 65.656269) + (xy 120.236946 65.674529) (xy 120.23695 65.674534) (xy 120.350464 65.788048) (xy 120.350468 65.788051) + (xy 120.368726 65.800251) (xy 120.413531 65.853863) (xy 120.422238 65.923188) (xy 120.392083 65.986216) + (xy 120.387516 65.991034) (xy 119.841547 66.537003) (xy 119.841547 66.537004) (xy 119.841547 66.537005) + (xy 119.910977 66.59028) (xy 120.106517 66.703175) (xy 120.106521 66.703177) (xy 120.106565 66.703199) + (xy 120.107118 66.703424) (xy 120.315131 66.789586) (xy 120.533239 66.848028) (xy 120.7571 66.8775) + (xy 120.982893 66.8775) (xy 120.9829 66.8775) (xy 121.20676 66.848028) (xy 121.424868 66.789586) + (xy 121.632969 66.703387) (xy 121.633421 66.703203) (xy 121.633459 66.703184) (xy 121.63347 66.70318) + (xy 121.63348 66.703176) (xy 121.829018 66.590283) (xy 121.898451 66.537004) (xy 121.89845 66.537003) + (xy 121.89845 66.537002) (xy 121.352482 65.991035) (xy 121.318997 65.929712) (xy 121.323981 65.860021) + (xy 121.365852 65.804087) (xy 121.371273 65.800251) (xy 121.389532 65.788051) (xy 121.431042 65.746541) + (xy 121.50305 65.674534) (xy 121.515251 65.656273) (xy 121.568863 65.611468) (xy 121.638188 65.60276) + (xy 121.701216 65.632914) (xy 121.706035 65.637482) (xy 122.252002 66.18345) (xy 122.252003 66.18345) + (xy 122.252004 66.183451) (xy 122.305283 66.114018) (xy 122.418176 65.91848) (xy 122.41818 65.91847) + (xy 122.418184 65.918459) (xy 122.418203 65.918421) (xy 122.418387 65.917969) (xy 122.504586 65.709868) + (xy 122.563028 65.49176) (xy 122.5925 65.267899) (xy 122.5925 65.0421) (xy 122.563028 64.818239) + (xy 122.539076 64.728848) (xy 132.899499 64.728848) (xy 132.930257 64.883471) (xy 132.930264 64.883502) + (xy 132.990598 65.029165) (xy 132.990603 65.029174) (xy 132.990613 65.029191) (xy 133.078211 65.16029) + (xy 133.078212 65.160291) (xy 133.078217 65.160297) (xy 133.189701 65.271781) (xy 133.189707 65.271786) + (xy 133.189711 65.271789) (xy 133.320814 65.35939) (xy 133.320827 65.359397) (xy 133.406427 65.394853) + (xy 133.466503 65.419737) (xy 133.617375 65.449747) (xy 133.618721 65.450105) (xy 133.621155 65.4505) (xy 133.778844 65.4505) (xy 133.782964 65.4505) (xy 133.790814 65.448118) (xy 133.933497 65.419737) - (xy 134.067888 65.364071) (xy 134.079172 65.359397) (xy 134.079172 65.359396) (xy 134.079175 65.359395) - (xy 134.079179 65.359394) (xy 134.07918 65.359392) (xy 134.081532 65.358419) (xy 134.081533 65.358418) - (xy 134.09079 65.354584) (xy 134.099675 65.345698) (xy 134.147842 65.313513) (xy 134.179669 65.298286) - (xy 134.192924 65.294135) (xy 134.262778 65.292889) (xy 134.322215 65.329602) (xy 134.325718 65.333501) - (xy 134.35509 65.392176) (xy 134.374493 65.489724) (xy 134.374495 65.489732) (xy 134.374502 65.489753) - (xy 134.423528 65.608114) (xy 134.423534 65.608128) (xy 134.494724 65.71467) (xy 134.494725 65.714671) - (xy 134.49473 65.714677) (xy 134.585321 65.805268) (xy 134.585327 65.805273) (xy 134.585331 65.805276) - (xy 134.691866 65.876461) (xy 134.691875 65.876466) (xy 134.710235 65.884071) (xy 134.710237 65.884072) - (xy 134.804641 65.923175) (xy 134.809054 65.925262) (xy 134.935926 65.9505) (xy 135.064071 65.9505) - (xy 135.064073 65.9505) (xy 135.148615 65.933682) (xy 135.189744 65.925501) (xy 135.308127 65.876465) - (xy 135.409323 65.808848) (xy 137.589499 65.808848) (xy 137.620257 65.963471) (xy 137.620264 65.963502) - (xy 137.680598 66.109165) (xy 137.680603 66.109174) (xy 137.680613 66.109191) (xy 137.768211 66.24029) - (xy 137.768212 66.240291) (xy 137.768217 66.240297) (xy 137.879701 66.351781) (xy 137.879707 66.351786) - (xy 137.879711 66.351789) (xy 138.010814 66.43939) (xy 138.010827 66.439397) (xy 138.134466 66.490609) - (xy 138.156503 66.499737) (xy 138.3057 66.529414) (xy 138.307828 66.529917) (xy 138.307934 66.529977) - (xy 138.311155 66.5305) (xy 138.468844 66.5305) (xy 138.472964 66.5305) (xy 138.480814 66.528118) - (xy 138.623497 66.499737) (xy 138.769179 66.439394) (xy 138.900289 66.351789) (xy 139.011789 66.240289) - (xy 139.099394 66.109179) (xy 139.109302 66.08526) (xy 139.12054 66.058127) (xy 139.159737 65.963497) - (xy 139.180797 65.857622) (xy 142.644237 65.857622) (xy 142.674494 66.009726) (xy 142.674495 66.009732) - (xy 142.674502 66.009753) (xy 142.723529 66.128118) (xy 142.723534 66.128128) (xy 142.794724 66.23467) - (xy 142.794725 66.234671) (xy 142.79473 66.234677) (xy 142.885321 66.325268) (xy 142.885327 66.325273) - (xy 142.885331 66.325276) (xy 142.991866 66.396461) (xy 142.991872 66.396464) (xy 142.991873 66.396465) - (xy 143.105362 66.443473) (xy 143.105947 66.443724) (xy 143.106141 66.443884) (xy 143.109053 66.445261) - (xy 143.110252 66.445499) (xy 143.110256 66.445501) (xy 143.110259 66.445501) (xy 143.11026 66.445501) - (xy 143.110261 66.445502) (xy 143.206902 66.464726) (xy 143.235927 66.4705) (xy 143.364071 66.4705) - (xy 143.364073 66.4705) (xy 143.448615 66.453682) (xy 143.489744 66.445501) (xy 143.608127 66.396465) - (xy 143.714669 66.325276) (xy 143.805276 66.234669) (xy 143.876465 66.128127) (xy 143.925501 66.009744) - (xy 143.934702 65.963489) (xy 143.939426 65.939741) (xy 143.939426 65.939739) (xy 143.939427 65.939737) - (xy 143.9505 65.884071) (xy 143.9505 65.755928) (xy 143.9505 65.755925) (xy 143.925295 65.62922) - (xy 143.923724 65.625947) (xy 143.923473 65.625362) (xy 143.876465 65.511873) (xy 143.876464 65.511872) - (xy 143.876461 65.511866) (xy 143.805276 65.405331) (xy 143.805273 65.405327) (xy 143.805268 65.405321) - (xy 143.714677 65.31473) (xy 143.714671 65.314725) (xy 143.71467 65.314724) (xy 143.634787 65.261348) - (xy 148.239499 65.261348) (xy 148.270257 65.415971) (xy 148.270264 65.416002) (xy 148.330598 65.561665) - (xy 148.330603 65.561674) (xy 148.330613 65.561691) (xy 148.418211 65.69279) (xy 148.418212 65.692791) - (xy 148.418217 65.692797) (xy 148.529701 65.804281) (xy 148.529707 65.804286) (xy 148.529711 65.804289) - (xy 148.660814 65.89189) (xy 148.660827 65.891897) (xy 148.776332 65.93974) (xy 148.806503 65.952237) - (xy 148.80651 65.952238) (xy 148.80651 65.952239) (xy 148.890279 65.968901) (xy 148.961153 65.982999) - (xy 148.961156 65.983) (xy 148.961158 65.983) (xy 149.118844 65.983) (xy 149.118845 65.982999) (xy 149.273497 65.952237) - (xy 149.419179 65.891894) (xy 149.550289 65.804289) (xy 149.661789 65.692789) (xy 149.729903 65.59085) - (xy 149.749393 65.561681) (xy 149.7494 65.561665) (xy 149.749984 65.560256) (xy 149.776388 65.49651) - (xy 149.809737 65.415997) (xy 149.809739 65.415989) (xy 149.80974 65.415987) (xy 149.838422 65.271787) - (xy 149.8405 65.261342) (xy 149.8405 65.103658) (xy 149.8405 65.103655) (xy 149.839673 65.0995) - (xy 149.837311 65.087623) (xy 158.544237 65.087623) (xy 158.572115 65.227763) (xy 158.576558 65.250099) - (xy 158.581708 65.270278) (xy 158.584519 65.296432) (xy 158.575788 65.357141) (xy 158.574497 65.360256) - (xy 158.572115 65.372233) (xy 158.572115 65.372235) (xy 158.5495 65.485925) (xy 158.5495 65.569702) - (xy 158.544237 65.587622) (xy 158.574494 65.739726) (xy 158.574495 65.739732) (xy 158.574502 65.739753) - (xy 158.623529 65.858118) (xy 158.623534 65.858128) (xy 158.694724 65.96467) (xy 158.694725 65.964671) - (xy 158.694728 65.964675) (xy 158.706496 65.976442) (xy 158.706498 65.976445) (xy 158.7065 65.976446) - (xy 158.706505 65.976451) (xy 158.727652 66.004703) (xy 158.735143 66.018423) (xy 158.749993 66.086693) - (xy 158.749469 66.094019) (xy 158.728888 66.154062) (xy 158.663533 66.251873) (xy 158.663528 66.251884) - (xy 158.614502 66.370245) (xy 158.614495 66.370265) (xy 158.614493 66.370273) (xy 158.5895 66.495923) - (xy 158.5895 66.579702) (xy 158.584237 66.597622) (xy 158.614494 66.749726) (xy 158.614495 66.749732) - (xy 158.614502 66.749753) (xy 158.663529 66.868118) (xy 158.663534 66.868128) (xy 158.734724 66.97467) - (xy 158.734725 66.974671) (xy 158.73473 66.974677) (xy 158.825321 67.065268) (xy 158.825327 67.065273) - (xy 158.825331 67.065276) (xy 158.931866 67.136461) (xy 158.931872 67.136464) (xy 158.931873 67.136465) - (xy 159.045362 67.183473) (xy 159.045947 67.183724) (xy 159.046141 67.183884) (xy 159.049053 67.185261) - (xy 159.050252 67.185499) (xy 159.050256 67.185501) (xy 159.050259 67.185501) (xy 159.05026 67.185501) - (xy 159.050261 67.185502) (xy 159.147899 67.204924) (xy 159.175927 67.2105) (xy 159.304071 67.2105) - (xy 159.304073 67.2105) (xy 159.388615 67.193682) (xy 159.429744 67.185501) (xy 159.548127 67.136465) - (xy 159.654669 67.065276) (xy 159.745276 66.974669) (xy 159.816465 66.868127) (xy 159.865501 66.749744) - (xy 159.877443 66.689711) (xy 159.886699 66.64318) (xy 159.8905 66.624072) (xy 159.8905 66.495926) - (xy 159.877437 66.430261) (xy 159.865502 66.370261) (xy 159.865501 66.37026) (xy 159.865501 66.370256) - (xy 159.8655 66.370253) (xy 159.865261 66.369052) (xy 159.863177 66.364645) (xy 159.816468 66.25188) - (xy 159.816466 66.251875) (xy 159.816465 66.251873) (xy 159.816462 66.251868) (xy 159.816461 66.251866) - (xy 159.745276 66.145331) (xy 159.745273 66.145327) (xy 159.74527 66.145323) (xy 159.733502 66.133556) - (xy 159.733499 66.133552) (xy 159.733497 66.133551) (xy 159.733492 66.133546) (xy 159.712346 66.105295) - (xy 159.704855 66.091575) (xy 159.690004 66.023321) (xy 159.690354 66.018423) (xy 159.690528 66.015992) - (xy 159.71113 65.955906) (xy 159.712677 65.953591) (xy 159.713604 65.952206) (xy 159.776461 65.858133) - (xy 159.776464 65.858128) (xy 159.776465 65.858127) (xy 159.825501 65.739744) (xy 159.834841 65.692789) - (xy 159.836206 65.685929) (xy 159.836206 65.685927) (xy 159.836207 65.685925) (xy 159.847279 65.630265) - (xy 159.8505 65.614072) (xy 159.8505 65.485925) (xy 159.822082 65.343066) (xy 159.818009 65.327107) - (xy 159.817462 65.322021) (xy 159.815479 65.303573) (xy 159.823816 65.245597) (xy 159.823733 65.245572) - (xy 159.823898 65.245026) (xy 159.82421 65.24286) (xy 159.824622 65.241866) (xy 159.825501 65.239744) - (xy 159.839474 65.1695) (xy 159.847273 65.130292) (xy 159.8505 65.114072) (xy 159.8505 64.985925) - (xy 159.825295 64.85922) (xy 159.823724 64.855947) (xy 159.823473 64.855362) (xy 159.776465 64.741873) - (xy 159.776464 64.741872) (xy 159.776461 64.741866) (xy 159.705276 64.635331) (xy 159.705273 64.635327) - (xy 159.705268 64.635321) (xy 159.614677 64.54473) (xy 159.61467 64.544724) (xy 159.614668 64.544723) - (xy 159.508127 64.473534) (xy 159.508128 64.473534) (xy 159.508118 64.473529) (xy 159.389753 64.424502) - (xy 159.389733 64.424495) (xy 159.389725 64.424493) (xy 159.264074 64.3995) (xy 159.264071 64.3995) - (xy 159.264069 64.3995) (xy 159.135931 64.3995) (xy 159.135929 64.3995) (xy 159.135926 64.3995) - (xy 159.010273 64.424493) (xy 159.010265 64.424495) (xy 159.010245 64.424502) (xy 158.89188 64.473529) - (xy 158.89187 64.473534) (xy 158.785331 64.544723) (xy 158.785329 64.544724) (xy 158.785321 64.54473) - (xy 158.69473 64.635321) (xy 158.694725 64.635327) (xy 158.694724 64.635328) (xy 158.623534 64.74187) - (xy 158.623529 64.74188) (xy 158.574502 64.860245) (xy 158.574495 64.860265) (xy 158.574493 64.860273) - (xy 158.5495 64.985923) (xy 158.5495 65.069703) (xy 158.544237 65.087623) (xy 149.837311 65.087623) - (xy 149.833746 65.069703) (xy 149.820683 65.004031) (xy 149.820683 65.00403) (xy 149.81039 64.95229) - (xy 149.809982 64.949899) (xy 149.809737 64.949008) (xy 149.809737 64.949003) (xy 149.799587 64.924499) - (xy 149.799583 64.92449) (xy 149.771192 64.855947) (xy 149.749397 64.803327) (xy 149.74939 64.803314) - (xy 149.661789 64.672211) (xy 149.661786 64.672207) (xy 149.661781 64.672201) (xy 149.550297 64.560717) - (xy 149.550291 64.560712) (xy 149.55029 64.560711) (xy 149.419191 64.473113) (xy 149.41919 64.473112) - (xy 149.419185 64.473109) (xy 149.419172 64.473102) (xy 149.419165 64.473098) (xy 149.273502 64.412764) - (xy 149.273471 64.412757) (xy 149.118847 64.382) (xy 149.118845 64.382) (xy 149.118842 64.382) (xy 148.961158 64.382) - (xy 148.961155 64.382) (xy 148.961153 64.382) (xy 148.806527 64.412757) (xy 148.806496 64.412764) - (xy 148.660833 64.473098) (xy 148.660824 64.473103) (xy 148.660807 64.473113) (xy 148.529708 64.560711) - (xy 148.529707 64.560712) (xy 148.529701 64.560717) (xy 148.418217 64.672201) (xy 148.418212 64.672207) - (xy 148.418211 64.672208) (xy 148.330613 64.803307) (xy 148.330603 64.803324) (xy 148.330598 64.803333) - (xy 148.270264 64.948996) (xy 148.270261 64.94901) (xy 148.2395 65.10365) (xy 148.2395 65.103653) - (xy 148.2395 65.261346) (xy 148.2395 65.261348) (xy 148.239499 65.261348) (xy 143.634787 65.261348) - (xy 143.608139 65.243542) (xy 143.608138 65.243541) (xy 143.608133 65.243538) (xy 143.60812 65.243531) - (xy 143.604105 65.241868) (xy 143.532301 65.212126) (xy 143.532301 65.212124) (xy 143.532291 65.212122) - (xy 143.489753 65.194502) (xy 143.489733 65.194495) (xy 143.489725 65.194493) (xy 143.364074 65.1695) - (xy 143.364071 65.1695) (xy 143.364069 65.1695) (xy 143.235931 65.1695) (xy 143.235929 65.1695) - (xy 143.235926 65.1695) (xy 143.110273 65.194493) (xy 143.110265 65.194495) (xy 143.110245 65.194502) - (xy 142.99188 65.243529) (xy 142.99187 65.243534) (xy 142.885328 65.314724) (xy 142.885327 65.314725) - (xy 142.885321 65.31473) (xy 142.79473 65.405321) (xy 142.794725 65.405327) (xy 142.794724 65.405328) - (xy 142.723534 65.51187) (xy 142.723529 65.51188) (xy 142.674502 65.630245) (xy 142.674495 65.630265) - (xy 142.674493 65.630273) (xy 142.6495 65.755923) (xy 142.6495 65.839702) (xy 142.644237 65.857622) - (xy 139.180797 65.857622) (xy 139.1905 65.808842) (xy 139.1905 65.651158) (xy 139.1905 65.651155) - (xy 139.190499 65.651153) (xy 139.186342 65.630255) (xy 139.183215 65.614534) (xy 139.159739 65.49651) - (xy 139.159736 65.496501) (xy 139.155355 65.485925) (xy 139.128256 65.4205) (xy 139.099397 65.350827) - (xy 139.09939 65.350814) (xy 139.011789 65.219711) (xy 139.011786 65.219707) (xy 139.011781 65.219701) - (xy 138.900297 65.108217) (xy 138.900291 65.108212) (xy 138.90029 65.108211) (xy 138.769191 65.020613) - (xy 138.76919 65.020612) (xy 138.769185 65.020609) (xy 138.769172 65.020602) (xy 138.769165 65.020598) - (xy 138.623502 64.960264) (xy 138.623471 64.960257) (xy 138.468847 64.9295) (xy 138.468845 64.9295) - (xy 138.468842 64.9295) (xy 138.311158 64.9295) (xy 138.311155 64.9295) (xy 138.311153 64.9295) - (xy 138.156527 64.960257) (xy 138.156496 64.960264) (xy 138.010833 65.020598) (xy 138.010824 65.020603) - (xy 138.010807 65.020613) (xy 137.879708 65.108211) (xy 137.879707 65.108212) (xy 137.879701 65.108217) - (xy 137.768217 65.219701) (xy 137.768212 65.219707) (xy 137.768211 65.219708) (xy 137.680613 65.350807) - (xy 137.680603 65.350824) (xy 137.680598 65.350833) (xy 137.620264 65.496496) (xy 137.620261 65.49651) - (xy 137.5895 65.65115) (xy 137.5895 65.651153) (xy 137.5895 65.808846) (xy 137.5895 65.808848) (xy 137.589499 65.808848) - (xy 135.409323 65.808848) (xy 135.414669 65.805276) (xy 135.505276 65.714669) (xy 135.576465 65.608127) - (xy 135.625501 65.489744) (xy 135.639275 65.420499) (xy 135.6505 65.364071) (xy 135.6505 65.235928) - (xy 135.647273 65.219708) (xy 135.627884 65.122235) (xy 135.627884 65.122234) (xy 135.627381 65.11971) - (xy 135.625502 65.110261) (xy 135.625501 65.110257) (xy 135.625501 65.110256) (xy 135.6255 65.110255) - (xy 135.625223 65.108859) (xy 135.625209 65.10879) (xy 135.624717 65.106319) (xy 135.623041 65.095369) - (xy 135.62028 65.069703) (xy 135.619585 65.063242) (xy 135.624219 65.013966) (xy 135.625494 65.009758) - (xy 135.625501 65.009744) (xy 135.631795 64.978102) (xy 135.637582 64.949012) (xy 135.637582 64.94901) - (xy 135.6505 64.884072) (xy 135.6505 64.755925) (xy 135.625295 64.62922) (xy 135.623724 64.625947) - (xy 135.623473 64.625362) (xy 135.576465 64.511873) (xy 135.576464 64.511872) (xy 135.576461 64.511866) - (xy 135.505276 64.405331) (xy 135.505273 64.405327) (xy 135.505268 64.405321) (xy 135.414677 64.31473) - (xy 135.414671 64.314725) (xy 135.41467 64.314724) (xy 135.308127 64.243534) (xy 135.308128 64.243534) - (xy 135.308118 64.243529) (xy 135.189753 64.194502) (xy 135.189733 64.194495) (xy 135.189725 64.194493) - (xy 135.064074 64.1695) (xy 135.064071 64.1695) (xy 135.064069 64.1695) (xy 134.935931 64.1695) - (xy 134.935929 64.1695) (xy 134.935926 64.1695) (xy 134.810273 64.194493) (xy 134.810265 64.194495) - (xy 134.810245 64.194502) (xy 134.69188 64.243529) (xy 134.69187 64.243534) (xy 134.691859 64.243541) - (xy 134.601567 64.303872) (xy 134.601566 64.303874) (xy 134.579357 64.3145) (xy 134.569728 64.319107) - (xy 134.555612 64.323527) (xy 134.485753 64.324774) (xy 134.428181 64.290091) (xy 134.414732 64.275774) - (xy 134.402008 64.259766) (xy 134.321787 64.139708) (xy 134.321786 64.139707) (xy 134.321781 64.139701) - (xy 134.210297 64.028217) (xy 134.210291 64.028212) (xy 134.21029 64.028211) (xy 134.079191 63.940613) - (xy 134.07919 63.940612) (xy 134.079185 63.940609) (xy 134.079172 63.940602) (xy 134.079173 63.940602) - (xy 134.079169 63.9406) (xy 134.079166 63.940599) (xy 133.933523 63.880272) (xy 133.933509 63.880267) - (xy 133.933501 63.880264) (xy 133.933491 63.880261) (xy 133.933488 63.88026) (xy 133.933484 63.880259) - (xy 133.806719 63.855044) (xy 133.806709 63.85504) (xy 133.778847 63.8495) (xy 133.778846 63.8495) + (xy 134.001214 65.391688) (xy 134.063169 65.366026) (xy 134.068019 65.364016) (xy 134.079172 65.359397) + (xy 134.079172 65.359396) (xy 134.079179 65.359394) (xy 134.079182 65.359391) (xy 134.081526 65.358421) + (xy 134.081527 65.35842) (xy 134.090791 65.354583) (xy 134.099677 65.345697) (xy 134.121129 65.331364) + (xy 134.147326 65.313859) (xy 134.179115 65.298642) (xy 134.192447 65.294468) (xy 134.192541 65.294432) + (xy 134.194174 65.293921) (xy 134.227268 65.293317) (xy 134.257656 65.291823) (xy 134.257809 65.291121) + (xy 134.25943 65.291473) (xy 134.259443 65.291477) (xy 134.260253 65.291653) (xy 134.260331 65.291696) + (xy 134.261344 65.291944) (xy 134.261536 65.291992) (xy 134.261456 65.29231) (xy 134.262138 65.292682) + (xy 134.264032 65.292648) (xy 134.279014 65.301895) (xy 134.321578 65.325132) (xy 134.342736 65.353395) + (xy 134.355137 65.376106) (xy 134.367922 65.41134) (xy 134.385859 65.501514) (xy 134.386418 65.504322) + (xy 134.386421 65.504332) (xy 134.386424 65.50434) (xy 134.386429 65.504354) (xy 134.439217 65.631797) + (xy 134.439222 65.631806) (xy 134.439232 65.631823) (xy 134.515886 65.746543) (xy 134.515887 65.746544) + (xy 134.515892 65.74655) (xy 134.613448 65.844106) (xy 134.613454 65.844111) (xy 134.613458 65.844114) + (xy 134.728182 65.920771) (xy 134.728195 65.920778) (xy 134.83131 65.963489) (xy 134.850062 65.971256) + (xy 134.854471 65.973341) (xy 134.855676 65.97358) (xy 134.855677 65.973581) (xy 134.859568 65.974355) + (xy 134.991001 66.0005) (xy 135.128995 66.0005) (xy 135.128996 66.0005) (xy 135.150919 65.996138) + (xy 135.260542 65.974333) (xy 135.264328 65.97358) (xy 135.391811 65.920775) (xy 135.506542 65.844114) + (xy 135.541808 65.808848) (xy 137.589499 65.808848) (xy 137.620257 65.963471) (xy 137.620261 65.963488) + (xy 137.620263 65.9635) (xy 137.680598 66.109165) (xy 137.680602 66.109172) (xy 137.680606 66.10918) + (xy 137.680613 66.109191) (xy 137.768211 66.24029) (xy 137.768212 66.240291) (xy 137.768217 66.240297) + (xy 137.879701 66.351781) (xy 137.879707 66.351786) (xy 137.879711 66.351789) (xy 138.010814 66.43939) + (xy 138.010827 66.439397) (xy 138.156498 66.499735) (xy 138.156503 66.499737) (xy 138.311153 66.530499) + (xy 138.311156 66.5305) (xy 138.311158 66.5305) (xy 138.468844 66.5305) (xy 138.468845 66.530499) + (xy 138.623497 66.499737) (xy 138.715909 66.461459) (xy 138.759072 66.443581) (xy 138.760363 66.443045) + (xy 138.769172 66.439397) (xy 138.769172 66.439396) (xy 138.769179 66.439394) (xy 138.769182 66.439391) + (xy 138.771526 66.438421) (xy 138.780792 66.434582) (xy 138.789678 66.425697) (xy 138.900289 66.351789) + (xy 139.011786 66.240292) (xy 139.011788 66.24029) (xy 139.011789 66.240289) (xy 139.099394 66.109179) + (xy 139.102446 66.101812) (xy 139.138037 66.015885) (xy 139.159737 65.963497) (xy 139.183796 65.842544) + (xy 142.594237 65.842544) (xy 142.626416 66.004313) (xy 142.626417 66.004317) (xy 142.626418 66.00432) + (xy 142.626421 66.00433) (xy 142.626424 66.004338) (xy 142.626429 66.004352) (xy 142.679217 66.131795) + (xy 142.679221 66.131802) (xy 142.679225 66.13181) (xy 142.679232 66.131821) (xy 142.755886 66.246541) + (xy 142.755887 66.246542) (xy 142.755892 66.246548) (xy 142.853448 66.344104) (xy 142.853454 66.344109) + (xy 142.853458 66.344112) (xy 142.968182 66.420769) (xy 142.968195 66.420776) (xy 143.063529 66.460264) + (xy 143.09006 66.471253) (xy 143.090061 66.471254) (xy 143.094469 66.473339) (xy 143.231001 66.500498) + (xy 143.368995 66.500498) (xy 143.368996 66.500498) (xy 143.445472 66.485285) (xy 143.460041 66.482387) + (xy 143.504328 66.473578) (xy 143.631811 66.420773) (xy 143.746542 66.344112) (xy 143.844114 66.24654) + (xy 143.920775 66.131809) (xy 143.921488 66.130089) (xy 143.953241 66.053428) (xy 143.97358 66.004326) + (xy 143.986529 65.939228) (xy 143.997948 65.881821) (xy 144.0005 65.868994) (xy 144.0005 65.730999) + (xy 143.981793 65.63696) (xy 143.973581 65.595675) (xy 143.97358 65.595674) (xy 143.97358 65.59567) + (xy 143.972285 65.592544) (xy 151.635976 65.592544) (xy 151.668155 65.754313) (xy 151.668156 65.754317) + (xy 151.668157 65.75432) (xy 151.66816 65.75433) (xy 151.668163 65.754338) (xy 151.668168 65.754352) + (xy 151.720956 65.881795) (xy 151.720961 65.881804) (xy 151.720971 65.881821) (xy 151.797625 65.996541) + (xy 151.797626 65.996542) (xy 151.797631 65.996548) (xy 151.895187 66.094104) (xy 151.895193 66.094109) + (xy 151.895197 66.094112) (xy 152.009921 66.170769) (xy 152.009934 66.170776) (xy 152.120427 66.216543) + (xy 152.131798 66.221253) (xy 152.131803 66.221255) (xy 152.136209 66.223339) (xy 152.27274 66.250498) + (xy 152.410734 66.250498) (xy 152.410735 66.250498) (xy 152.456257 66.241442) (xy 152.50178 66.232387) + (xy 152.546067 66.223578) (xy 152.67355 66.170773) (xy 152.788281 66.094112) (xy 152.885853 65.99654) + (xy 152.962514 65.881809) (xy 152.962737 65.881272) (xy 152.998626 65.794627) (xy 153.015319 65.754326) + (xy 153.031191 65.674532) (xy 153.039644 65.632034) (xy 153.046271 65.60983) (xy 153.046615 65.608979) + (xy 153.059628 65.576733) (xy 153.086934 65.535461) (xy 153.125855 65.496542) (xy 153.202516 65.381811) + (xy 153.205607 65.37435) (xy 153.227999 65.320289) (xy 153.255321 65.254328) (xy 153.26828 65.189179) + (xy 153.282241 65.118995) (xy 153.282241 64.981004) (xy 153.282241 64.981001) (xy 153.255082 64.844471) + (xy 153.252997 64.840062) (xy 153.245078 64.820943) (xy 153.202519 64.718195) (xy 153.202512 64.718182) + (xy 153.125855 64.603458) (xy 153.125852 64.603454) (xy 153.125847 64.603448) (xy 153.028291 64.505892) + (xy 153.028285 64.505887) (xy 153.028284 64.505886) (xy 152.913564 64.429232) (xy 152.913563 64.429231) + (xy 152.913558 64.429228) (xy 152.913545 64.429221) (xy 152.913538 64.429217) (xy 152.786095 64.376429) + (xy 152.786081 64.376424) (xy 152.786073 64.376421) (xy 152.786063 64.376418) (xy 152.78606 64.376417) + (xy 152.786056 64.376416) (xy 152.650739 64.3495) (xy 152.650736 64.3495) (xy 152.650734 64.3495) + (xy 152.512748 64.3495) (xy 152.512746 64.3495) (xy 152.512741 64.3495) (xy 152.377424 64.376416) + (xy 152.377418 64.376418) (xy 152.377408 64.376421) (xy 152.377403 64.376422) (xy 152.377385 64.376429) + (xy 152.249942 64.429217) (xy 152.249933 64.429222) (xy 152.249916 64.429232) (xy 152.135196 64.505886) + (xy 152.135195 64.505887) (xy 152.135189 64.505892) (xy 152.037633 64.603448) (xy 152.037628 64.603454) + (xy 152.037627 64.603455) (xy 151.960973 64.718175) (xy 151.960963 64.718192) (xy 151.960958 64.718201) + (xy 151.90817 64.845644) (xy 151.908157 64.845683) (xy 151.883833 64.96797) (xy 151.877195 64.990211) + (xy 151.863836 65.023292) (xy 151.836538 65.064541) (xy 151.797632 65.103446) (xy 151.797624 65.103455) + (xy 151.797621 65.10346) (xy 151.720971 65.218173) (xy 151.720961 65.21819) (xy 151.720956 65.218199) + (xy 151.668168 65.345642) (xy 151.668155 65.345681) (xy 151.641239 65.480998) (xy 151.641239 65.574624) + (xy 151.635976 65.592544) (xy 143.972285 65.592544) (xy 143.968485 65.583368) (xy 143.966982 65.579739) + (xy 143.943218 65.522367) (xy 143.935746 65.50433) (xy 143.920776 65.46819) (xy 143.920775 65.468187) + (xy 143.920773 65.468184) (xy 143.920771 65.46818) (xy 143.844114 65.353456) (xy 143.844111 65.353452) + (xy 143.844106 65.353446) (xy 143.74655 65.25589) (xy 143.746544 65.255885) (xy 143.746543 65.255884) + (xy 143.631823 65.17923) (xy 143.631822 65.179229) (xy 143.631817 65.179226) (xy 143.631804 65.179219) + (xy 143.631797 65.179215) (xy 143.504354 65.126427) (xy 143.50434 65.126422) (xy 143.504332 65.126419) + (xy 143.504322 65.126416) (xy 143.504319 65.126415) (xy 143.504315 65.126414) (xy 143.368998 65.099498) + (xy 143.368995 65.099498) (xy 143.368993 65.099498) (xy 143.231007 65.099498) (xy 143.231005 65.099498) + (xy 143.231 65.099498) (xy 143.095683 65.126414) (xy 143.095677 65.126416) (xy 143.095667 65.126419) + (xy 143.095662 65.12642) (xy 143.095644 65.126427) (xy 142.968201 65.179215) (xy 142.968192 65.17922) + (xy 142.968175 65.17923) (xy 142.853455 65.255884) (xy 142.853454 65.255885) (xy 142.853448 65.25589) + (xy 142.755892 65.353446) (xy 142.755887 65.353452) (xy 142.755886 65.353453) (xy 142.679232 65.468173) + (xy 142.679222 65.46819) (xy 142.679221 65.468193) (xy 142.67922 65.468195) (xy 142.626429 65.595642) + (xy 142.626416 65.595681) (xy 142.5995 65.730998) (xy 142.5995 65.824624) (xy 142.594237 65.842544) + (xy 139.183796 65.842544) (xy 139.1905 65.808842) (xy 139.1905 65.651158) (xy 139.1905 65.651155) + (xy 139.190499 65.651153) (xy 139.184102 65.618993) (xy 139.176294 65.579738) (xy 139.159738 65.496505) + (xy 139.157725 65.491647) (xy 139.148011 65.468193) (xy 139.136463 65.440314) (xy 139.0994 65.350833) + (xy 139.099395 65.350824) (xy 139.09939 65.350814) (xy 139.011789 65.219711) (xy 139.011786 65.219707) + (xy 139.011781 65.219701) (xy 138.900297 65.108217) (xy 138.900291 65.108212) (xy 138.90029 65.108211) + (xy 138.769191 65.020613) (xy 138.76919 65.020612) (xy 138.769185 65.020609) (xy 138.769172 65.020602) + (xy 138.769165 65.020598) (xy 138.623502 64.960264) (xy 138.623471 64.960257) (xy 138.468847 64.9295) + (xy 138.468845 64.9295) (xy 138.468842 64.9295) (xy 138.311158 64.9295) (xy 138.311155 64.9295) + (xy 138.311153 64.9295) (xy 138.156527 64.960257) (xy 138.156496 64.960264) (xy 138.010833 65.020598) + (xy 138.010824 65.020603) (xy 138.010807 65.020613) (xy 137.879708 65.108211) (xy 137.879707 65.108212) + (xy 137.879701 65.108217) (xy 137.768217 65.219701) (xy 137.768212 65.219707) (xy 137.768211 65.219708) + (xy 137.680613 65.350807) (xy 137.680603 65.350824) (xy 137.680598 65.350833) (xy 137.620264 65.496496) + (xy 137.620257 65.496527) (xy 137.5895 65.65115) (xy 137.5895 65.651153) (xy 137.5895 65.808846) + (xy 137.5895 65.808848) (xy 137.589499 65.808848) (xy 135.541808 65.808848) (xy 135.604114 65.746542) + (xy 135.680775 65.631811) (xy 135.73358 65.504328) (xy 135.746312 65.440321) (xy 135.758559 65.378748) + (xy 135.7605 65.368996) (xy 135.7605 65.231001) (xy 135.733341 65.094471) (xy 135.731256 65.090063) + (xy 135.72274 65.069501) (xy 135.706035 65.029172) (xy 135.680781 64.968201) (xy 135.680776 64.968192) + (xy 135.680771 64.968182) (xy 135.604114 64.853458) (xy 135.604111 64.853454) (xy 135.531895 64.781238) + (xy 135.510748 64.752989) (xy 135.49486 64.723891) (xy 135.482077 64.688664) (xy 135.473699 64.646542) + (xy 135.467775 64.616759) (xy 135.463581 64.595674) (xy 135.45565 64.576527) (xy 135.450623 64.56439) + (xy 135.444951 64.550696) (xy 135.410781 64.468201) (xy 135.410776 64.468192) (xy 135.410771 64.468182) + (xy 135.334114 64.353458) (xy 135.334111 64.353454) (xy 135.334106 64.353448) (xy 135.23655 64.255892) + (xy 135.236544 64.255887) (xy 135.236543 64.255886) (xy 135.121823 64.179232) (xy 135.121822 64.179231) + (xy 135.121817 64.179228) (xy 135.121804 64.179221) (xy 135.121797 64.179217) (xy 134.994354 64.126429) + (xy 134.99434 64.126424) (xy 134.994332 64.126421) (xy 134.994322 64.126418) (xy 134.994319 64.126417) + (xy 134.994315 64.126416) (xy 134.858998 64.0995) (xy 134.858995 64.0995) (xy 134.858993 64.0995) + (xy 134.721007 64.0995) (xy 134.721005 64.0995) (xy 134.721 64.0995) (xy 134.585683 64.126416) (xy 134.585672 64.126419) + (xy 134.585667 64.126421) (xy 134.482026 64.16935) (xy 134.449091 64.177756) (xy 134.447833 64.178077) + (xy 134.432295 64.179748) (xy 134.363535 64.167345) (xy 134.363534 64.167344) (xy 134.353253 64.162198) + (xy 134.321074 64.138994) (xy 134.210297 64.028217) (xy 134.210291 64.028212) (xy 134.21029 64.028211) + (xy 134.14575 63.985087) (xy 134.079185 63.940609) (xy 134.079172 63.940602) (xy 134.079165 63.940598) + (xy 133.933502 63.880264) (xy 133.933471 63.880257) (xy 133.778847 63.8495) (xy 133.778845 63.8495) (xy 133.778842 63.8495) (xy 133.621158 63.8495) (xy 133.621155 63.8495) (xy 133.621153 63.8495) - (xy 133.466527 63.880257) (xy 133.466496 63.880264) (xy 133.320833 63.940598) (xy 133.320827 63.940602) - (xy 133.320807 63.940613) (xy 133.189708 64.028211) (xy 133.189707 64.028212) (xy 133.189701 64.028217) - (xy 133.078217 64.139701) (xy 133.078212 64.139707) (xy 133.078211 64.139708) (xy 132.990613 64.270807) - (xy 132.990603 64.270824) (xy 132.990598 64.270833) (xy 132.930264 64.416496) (xy 132.930257 64.416527) - (xy 132.8995 64.57115) (xy 132.8995 64.571153) (xy 132.8995 64.728846) (xy 132.8995 64.728848) (xy 132.899499 64.728848) - (xy 122.635153 64.728848) (xy 122.612954 64.646001) (xy 122.599867 64.597159) (xy 122.599866 64.597155) - (xy 122.598501 64.592062) (xy 122.584587 64.540133) (xy 122.498424 64.332118) (xy 122.498199 64.331565) - (xy 122.498177 64.331521) (xy 122.496948 64.329393) (xy 122.38528 64.135977) (xy 122.332005 64.066547) - (xy 122.332003 64.066547) (xy 121.786034 64.612516) (xy 121.724711 64.646001) (xy 121.655019 64.641017) - (xy 121.599086 64.599145) (xy 121.595251 64.593726) (xy 121.583051 64.575468) (xy 121.583048 64.575464) - (xy 121.469535 64.461951) (xy 121.469529 64.461946) (xy 121.451269 64.449745) (xy 121.406465 64.396133) - (xy 121.397758 64.326808) (xy 121.427913 64.26378) (xy 121.432458 64.258985) (xy 121.853823 63.837622) - (xy 142.644237 63.837622) (xy 142.674494 63.989726) (xy 142.674495 63.989732) (xy 142.674502 63.989753) - (xy 142.723529 64.108118) (xy 142.723534 64.108128) (xy 142.794724 64.21467) (xy 142.794725 64.214671) - (xy 142.79473 64.214677) (xy 142.885321 64.305268) (xy 142.885327 64.305273) (xy 142.885328 64.305274) - (xy 142.991869 64.376463) (xy 142.991871 64.376463) (xy 142.991875 64.376466) (xy 143.016095 64.386498) - (xy 143.079494 64.412759) (xy 143.104645 64.423177) (xy 143.109051 64.425261) (xy 143.110254 64.4255) - (xy 143.110256 64.425501) (xy 143.110257 64.425501) (xy 143.11026 64.425501) (xy 143.110261 64.425502) - (xy 143.185714 64.440511) (xy 143.235927 64.4505) (xy 143.364071 64.4505) (xy 143.364072 64.4505) - (xy 143.413552 64.440657) (xy 143.463034 64.430814) (xy 143.489744 64.425501) (xy 143.608127 64.376465) - (xy 143.714669 64.305276) (xy 143.782323 64.237622) (xy 160.994237 64.237622) (xy 161.024494 64.389726) - (xy 161.024495 64.389732) (xy 161.024502 64.389753) (xy 161.073529 64.508118) (xy 161.073534 64.508128) - (xy 161.144724 64.61467) (xy 161.144725 64.614671) (xy 161.14473 64.614677) (xy 161.235321 64.705268) - (xy 161.235326 64.705272) (xy 161.235327 64.705273) (xy 161.235331 64.705276) (xy 161.320215 64.761994) - (xy 161.320216 64.761995) (xy 161.320218 64.761996) (xy 161.34647 64.785578) (xy 161.355372 64.79623) - (xy 161.383255 64.860295) (xy 161.372083 64.929249) (xy 161.372076 64.929262) (xy 161.372076 64.929265) - (xy 161.372074 64.929266) (xy 161.369822 64.933976) (xy 161.326851 64.983571) (xy 161.271437 65.020598) - (xy 161.235335 65.04472) (xy 161.235322 65.044729) (xy 161.14473 65.135321) (xy 161.144725 65.135327) - (xy 161.144724 65.135328) (xy 161.073534 65.24187) (xy 161.073529 65.24188) (xy 161.024502 65.360245) - (xy 161.024495 65.360265) (xy 161.024493 65.360273) (xy 160.9995 65.485923) (xy 160.9995 65.569702) - (xy 160.994237 65.587622) (xy 161.024494 65.739726) (xy 161.024495 65.739732) (xy 161.024502 65.739753) - (xy 161.073529 65.858118) (xy 161.073534 65.858128) (xy 161.144724 65.96467) (xy 161.144725 65.964671) - (xy 161.14473 65.964677) (xy 161.235321 66.055268) (xy 161.235327 66.055273) (xy 161.235328 66.055274) - (xy 161.235331 66.055276) (xy 161.341866 66.126461) (xy 161.341872 66.126464) (xy 161.341873 66.126465) - (xy 161.455362 66.173473) (xy 161.455947 66.173724) (xy 161.456141 66.173884) (xy 161.459055 66.175262) - (xy 161.585926 66.2005) (xy 161.714071 66.2005) (xy 161.714073 66.2005) (xy 161.798615 66.183682) - (xy 161.839744 66.175501) (xy 161.958127 66.126465) (xy 161.967702 66.120067) (xy 162.064671 66.055275) - (xy 162.064672 66.055273) (xy 162.155273 65.964672) (xy 162.155275 65.96467) (xy 162.155276 65.964669) - (xy 162.226465 65.858127) (xy 162.255669 65.787622) (xy 163.194237 65.787622) (xy 163.224494 65.939726) - (xy 163.224495 65.939732) (xy 163.224502 65.939753) (xy 163.273529 66.058118) (xy 163.273534 66.058128) - (xy 163.344724 66.16467) (xy 163.344725 66.164671) (xy 163.34473 66.164677) (xy 163.435321 66.255268) - (xy 163.435327 66.255273) (xy 163.435331 66.255276) (xy 163.541866 66.326461) (xy 163.541872 66.326464) - (xy 163.541873 66.326465) (xy 163.655362 66.373473) (xy 163.655947 66.373724) (xy 163.656141 66.373884) - (xy 163.659055 66.375262) (xy 163.785926 66.4005) (xy 163.914071 66.4005) (xy 163.914073 66.4005) - (xy 163.998615 66.383682) (xy 164.039744 66.375501) (xy 164.158127 66.326465) (xy 164.178845 66.312622) - (xy 174.494237 66.312622) (xy 174.524494 66.464726) (xy 174.524495 66.464732) (xy 174.524502 66.464753) - (xy 174.573529 66.583118) (xy 174.573534 66.583128) (xy 174.644724 66.68967) (xy 174.644725 66.689671) - (xy 174.64473 66.689677) (xy 174.735321 66.780268) (xy 174.735327 66.780273) (xy 174.735331 66.780276) - (xy 174.841866 66.851461) (xy 174.841872 66.851464) (xy 174.841873 66.851465) (xy 174.955362 66.898473) - (xy 174.955947 66.898724) (xy 174.956141 66.898884) (xy 174.959053 66.900261) (xy 174.960252 66.900499) - (xy 174.960256 66.900501) (xy 174.960259 66.900501) (xy 174.96026 66.900501) (xy 174.960261 66.900502) - (xy 175.057899 66.919924) (xy 175.085927 66.9255) (xy 175.214071 66.9255) (xy 175.214072 66.9255) - (xy 175.259782 66.916407) (xy 175.305494 66.907314) (xy 175.339744 66.900501) (xy 175.458127 66.851465) - (xy 175.564669 66.780276) (xy 175.655276 66.689669) (xy 175.726465 66.583127) (xy 175.775501 66.464744) - (xy 175.789925 66.392233) (xy 175.793253 66.375502) (xy 175.793253 66.375499) (xy 175.797971 66.351786) - (xy 175.8005 66.339071) (xy 175.8005 66.210928) (xy 175.8005 66.210925) (xy 175.775263 66.084057) - (xy 175.773182 66.079658) (xy 175.771846 66.076434) (xy 175.763113 66.042233) (xy 175.7603 66.016069) - (xy 175.769031 65.955363) (xy 175.770326 65.952238) (xy 175.775501 65.939744) (xy 175.786575 65.884072) - (xy 175.8005 65.814071) (xy 175.8005 65.685925) (xy 175.775262 65.559054) (xy 175.773175 65.554641) - (xy 175.737574 65.468691) (xy 175.726466 65.441875) (xy 175.726461 65.441866) (xy 175.655276 65.335331) - (xy 175.655273 65.335327) (xy 175.655268 65.335321) (xy 175.564677 65.24473) (xy 175.564671 65.244725) - (xy 175.56467 65.244724) (xy 175.458127 65.173534) (xy 175.458128 65.173534) (xy 175.458118 65.173529) - (xy 175.339753 65.124502) (xy 175.339733 65.124495) (xy 175.339725 65.124493) (xy 175.214074 65.0995) - (xy 175.214071 65.0995) (xy 175.214069 65.0995) (xy 175.085931 65.0995) (xy 175.085929 65.0995) - (xy 175.085926 65.0995) (xy 174.960273 65.124493) (xy 174.960265 65.124495) (xy 174.960245 65.124502) - (xy 174.84188 65.173529) (xy 174.84187 65.173534) (xy 174.735328 65.244724) (xy 174.735327 65.244725) - (xy 174.735321 65.24473) (xy 174.64473 65.335321) (xy 174.644725 65.335327) (xy 174.644724 65.335328) - (xy 174.573534 65.44187) (xy 174.573529 65.44188) (xy 174.524503 65.560244) (xy 174.524495 65.560265) - (xy 174.524493 65.560273) (xy 174.4995 65.685923) (xy 174.4995 65.769703) (xy 174.494238 65.787622) - (xy 174.499499 65.814071) (xy 174.522766 65.931034) (xy 174.524498 65.939741) (xy 174.528158 65.948577) - (xy 174.536885 65.982772) (xy 174.539697 66.008926) (xy 174.53097 66.069633) (xy 174.5245 66.085253) - (xy 174.524497 66.08526) (xy 174.524493 66.085276) (xy 174.4995 66.210923) (xy 174.4995 66.294702) - (xy 174.494237 66.312622) (xy 164.178845 66.312622) (xy 164.264669 66.255276) (xy 164.355276 66.164669) - (xy 164.426465 66.058127) (xy 164.475501 65.939744) (xy 164.489432 65.869712) (xy 164.5005 65.814071) - (xy 164.5005 65.685925) (xy 164.475262 65.559054) (xy 164.473175 65.554641) (xy 164.437574 65.468691) - (xy 164.426466 65.441875) (xy 164.426461 65.441866) (xy 164.355276 65.335331) (xy 164.355273 65.335327) - (xy 164.355268 65.335321) (xy 164.264677 65.24473) (xy 164.264671 65.244725) (xy 164.26467 65.244724) - (xy 164.158127 65.173534) (xy 164.158128 65.173534) (xy 164.158118 65.173529) (xy 164.039753 65.124502) - (xy 164.039733 65.124495) (xy 164.039725 65.124493) (xy 163.914074 65.0995) (xy 163.914071 65.0995) - (xy 163.914069 65.0995) (xy 163.785931 65.0995) (xy 163.785929 65.0995) (xy 163.785926 65.0995) - (xy 163.660273 65.124493) (xy 163.660265 65.124495) (xy 163.660245 65.124502) (xy 163.54188 65.173529) - (xy 163.54187 65.173534) (xy 163.435328 65.244724) (xy 163.435327 65.244725) (xy 163.435321 65.24473) - (xy 163.34473 65.335321) (xy 163.344725 65.335327) (xy 163.344724 65.335328) (xy 163.273534 65.44187) - (xy 163.273529 65.44188) (xy 163.224503 65.560244) (xy 163.224495 65.560265) (xy 163.224493 65.560273) - (xy 163.1995 65.685923) (xy 163.1995 65.769702) (xy 163.194237 65.787622) (xy 162.255669 65.787622) - (xy 162.275501 65.739744) (xy 162.284841 65.692789) (xy 162.29223 65.655647) (xy 162.29223 65.655646) - (xy 162.30007 65.616229) (xy 162.3005 65.614253) (xy 162.3005 65.485925) (xy 162.275262 65.359054) - (xy 162.273175 65.354641) (xy 162.227155 65.243538) (xy 162.226466 65.241875) (xy 162.226461 65.241866) - (xy 162.155276 65.135331) (xy 162.155273 65.135327) (xy 162.155268 65.135321) (xy 162.064676 65.044729) - (xy 162.06467 65.044724) (xy 162.064665 65.044721) (xy 162.062839 65.043501) (xy 161.979784 64.988005) - (xy 161.977342 64.985812) (xy 161.953532 64.964425) (xy 161.944627 64.95377) (xy 161.916743 64.88971) - (xy 161.927917 64.820746) (xy 161.930185 64.816005) (xy 161.973146 64.76643) (xy 161.979784 64.761995) - (xy 162.019378 64.735539) (xy 162.059167 64.708953) (xy 162.059167 64.708951) (xy 162.064669 64.705276) - (xy 162.155276 64.614669) (xy 162.2044 64.54115) (xy 181.9895 64.54115) (xy 181.9895 64.698848) - (xy 182.020257 64.853471) (xy 182.020264 64.853502) (xy 182.080598 64.999165) (xy 182.080603 64.999174) - (xy 182.080613 64.999191) (xy 182.168211 65.13029) (xy 182.168212 65.130291) (xy 182.168217 65.130297) - (xy 182.279701 65.241781) (xy 182.279707 65.241786) (xy 182.279711 65.241789) (xy 182.410814 65.32939) - (xy 182.410827 65.329397) (xy 182.462516 65.350807) (xy 182.48534 65.360261) (xy 182.494534 65.364069) - (xy 182.556503 65.389737) (xy 182.68848 65.415989) (xy 182.703516 65.418979) (xy 182.706246 65.419703) - (xy 182.711155 65.4205) (xy 182.868844 65.4205) (xy 182.872964 65.4205) (xy 182.880814 65.418118) - (xy 183.023497 65.389737) (xy 183.154855 65.335327) (xy 183.15487 65.335321) (xy 183.155082 65.335232) - (xy 183.169172 65.329397) (xy 183.169172 65.329396) (xy 183.171531 65.32842) (xy 183.171531 65.328419) - (xy 183.180788 65.324586) (xy 183.189675 65.315698) (xy 183.300289 65.241789) (xy 183.411789 65.130289) - (xy 183.456586 65.063245) (xy 183.499393 64.999181) (xy 183.499395 64.999176) (xy 183.504883 64.985929) - (xy 183.506473 64.98209) (xy 183.515514 64.960261) (xy 183.516508 64.957863) (xy 183.545094 64.888848) - (xy 183.839499 64.888848) (xy 183.870257 65.043471) (xy 183.870264 65.043502) (xy 183.930598 65.189165) - (xy 183.930603 65.189174) (xy 183.930613 65.189191) (xy 184.018211 65.32029) (xy 184.018212 65.320291) - (xy 184.018217 65.320297) (xy 184.129701 65.431781) (xy 184.129707 65.431786) (xy 184.129711 65.431789) - (xy 184.260814 65.51939) (xy 184.260827 65.519397) (xy 184.362921 65.561685) (xy 184.406503 65.579737) - (xy 184.406505 65.579737) (xy 184.40651 65.579739) (xy 184.489614 65.596269) (xy 184.561153 65.610499) - (xy 184.561156 65.6105) (xy 184.561158 65.6105) (xy 184.718844 65.6105) (xy 184.718845 65.610499) - (xy 184.873497 65.579737) (xy 185.019179 65.519394) (xy 185.150289 65.431789) (xy 185.261789 65.320289) - (xy 185.349394 65.189179) (xy 185.409737 65.043497) (xy 185.4405 64.888842) (xy 185.4405 64.731158) - (xy 185.4405 64.731155) (xy 185.4405 64.730971) (xy 185.440064 64.728966) (xy 185.434072 64.698842) - (xy 185.409739 64.57651) (xy 185.409737 64.576507) (xy 185.409737 64.576503) (xy 185.396574 64.544724) - (xy 185.349397 64.430827) (xy 185.34939 64.430814) (xy 185.261789 64.299711) (xy 185.261786 64.299707) - (xy 185.261781 64.299701) (xy 185.150295 64.188215) (xy 185.15029 64.188211) (xy 185.150288 64.18821) - (xy 185.019191 64.100613) (xy 185.01919 64.100612) (xy 185.019185 64.100609) (xy 185.019172 64.100602) - (xy 185.019165 64.100598) (xy 184.873502 64.040264) (xy 184.873471 64.040257) (xy 184.718847 64.0095) - (xy 184.718845 64.0095) (xy 184.718842 64.0095) (xy 184.561158 64.0095) (xy 184.561155 64.0095) - (xy 184.561153 64.0095) (xy 184.406527 64.040257) (xy 184.406496 64.040264) (xy 184.260833 64.100598) - (xy 184.260824 64.100603) (xy 184.260807 64.100613) (xy 184.129711 64.18821) (xy 184.129709 64.188211) - (xy 184.129704 64.188215) (xy 184.018217 64.299701) (xy 184.018212 64.299707) (xy 184.018211 64.299708) - (xy 183.930613 64.430807) (xy 183.930603 64.430824) (xy 183.930598 64.430833) (xy 183.870264 64.576496) - (xy 183.870257 64.576527) (xy 183.8395 64.73115) (xy 183.8395 64.731153) (xy 183.8395 64.888846) - (xy 183.8395 64.888848) (xy 183.839499 64.888848) (xy 183.545094 64.888848) (xy 183.547073 64.884071) - (xy 183.559737 64.853497) (xy 183.58922 64.705279) (xy 183.590096 64.700875) (xy 183.590096 64.700874) - (xy 183.590097 64.70087) (xy 183.5905 64.698844) (xy 183.5905 64.541155) (xy 183.5905 64.540973) - (xy 183.590065 64.538971) (xy 183.576964 64.473108) (xy 183.563482 64.405331) (xy 183.559737 64.386503) - (xy 183.557872 64.382) (xy 183.555598 64.37651) (xy 183.555578 64.376463) (xy 183.551937 64.367672) - (xy 183.499397 64.240827) (xy 183.49939 64.240814) (xy 183.411789 64.109711) (xy 183.411786 64.109707) - (xy 183.411781 64.109701) (xy 183.300297 63.998217) (xy 183.300291 63.998212) (xy 183.30029 63.998211) - (xy 183.169191 63.910613) (xy 183.16919 63.910612) (xy 183.169185 63.910609) (xy 183.169172 63.910602) - (xy 183.169165 63.910598) (xy 183.023502 63.850264) (xy 183.023471 63.850257) (xy 182.868847 63.8195) - (xy 182.868845 63.8195) (xy 182.868842 63.8195) (xy 182.711158 63.8195) (xy 182.711155 63.8195) - (xy 182.711153 63.8195) (xy 182.556527 63.850257) (xy 182.556496 63.850264) (xy 182.410833 63.910598) - (xy 182.410824 63.910603) (xy 182.410807 63.910613) (xy 182.279708 63.998211) (xy 182.279707 63.998212) - (xy 182.279701 63.998217) (xy 182.168217 64.109701) (xy 182.168212 64.109707) (xy 182.168211 64.109708) - (xy 182.080613 64.240807) (xy 182.080604 64.240823) (xy 182.080599 64.240831) (xy 182.020265 64.386495) - (xy 182.020257 64.386527) (xy 181.9895 64.54115) (xy 162.2044 64.54115) (xy 162.226465 64.508127) - (xy 162.275501 64.389744) (xy 162.275501 64.38974) (xy 162.275503 64.389737) (xy 162.287506 64.329395) - (xy 162.287506 64.329393) (xy 162.292304 64.305276) (xy 162.3005 64.264071) (xy 162.3005 64.135928) - (xy 162.3005 64.135925) (xy 162.275262 64.009054) (xy 162.273175 64.004641) (xy 162.271896 64.001554) - (xy 162.246654 63.940613) (xy 162.234226 63.910608) (xy 162.234226 63.910607) (xy 162.226472 63.891888) - (xy 162.226464 63.891873) (xy 162.226461 63.891866) (xy 162.155276 63.785331) (xy 162.155273 63.785327) - (xy 162.155268 63.785321) (xy 162.064677 63.69473) (xy 162.064671 63.694725) (xy 162.06467 63.694724) - (xy 161.958127 63.623534) (xy 161.958128 63.623534) (xy 161.958118 63.623529) (xy 161.839753 63.574502) - (xy 161.839733 63.574495) (xy 161.839725 63.574493) (xy 161.714074 63.5495) (xy 161.714071 63.5495) - (xy 161.714069 63.5495) (xy 161.585931 63.5495) (xy 161.585929 63.5495) (xy 161.585926 63.5495) - (xy 161.460273 63.574493) (xy 161.460265 63.574495) (xy 161.460245 63.574502) (xy 161.34188 63.623529) - (xy 161.34187 63.623534) (xy 161.235328 63.694724) (xy 161.235327 63.694725) (xy 161.235321 63.69473) - (xy 161.14473 63.785321) (xy 161.144725 63.785327) (xy 161.144724 63.785328) (xy 161.073534 63.89187) - (xy 161.073531 63.891878) (xy 161.024502 64.010245) (xy 161.024495 64.010265) (xy 161.024493 64.010273) - (xy 160.9995 64.135923) (xy 160.9995 64.219702) (xy 160.994237 64.237622) (xy 143.782323 64.237622) - (xy 143.805276 64.214669) (xy 143.818753 64.194499) (xy 143.840568 64.161852) (xy 143.840568 64.161851) - (xy 143.861655 64.130292) (xy 143.876465 64.108127) (xy 143.925501 63.989744) (xy 143.935276 63.940602) - (xy 143.941245 63.910598) (xy 143.9505 63.864072) (xy 143.9505 63.735926) (xy 143.935339 63.659712) - (xy 143.925502 63.610261) (xy 143.925501 63.61026) (xy 143.925501 63.610256) (xy 143.925499 63.610252) - (xy 143.925261 63.609053) (xy 143.923176 63.604644) (xy 143.920774 63.598846) (xy 143.876465 63.491873) - (xy 143.876464 63.491872) (xy 143.876461 63.491866) (xy 143.814831 63.399631) (xy 143.814831 63.39963) - (xy 143.805286 63.385344) (xy 143.805273 63.385327) (xy 143.805268 63.385321) (xy 143.75757 63.337623) - (xy 163.144237 63.337623) (xy 163.17067 63.4705) (xy 163.174498 63.489742) (xy 163.174498 63.489744) - (xy 163.176471 63.494508) (xy 163.178692 63.50336) (xy 163.178516 63.507771) (xy 163.181708 63.520278) - (xy 163.184519 63.546432) (xy 163.175788 63.607141) (xy 163.174497 63.610256) (xy 163.172115 63.622233) - (xy 163.172115 63.622235) (xy 163.1495 63.735925) (xy 163.1495 63.819702) (xy 163.144237 63.837622) - (xy 163.174494 63.989726) (xy 163.174495 63.989732) (xy 163.174502 63.989753) (xy 163.223529 64.108118) - (xy 163.223534 64.108128) (xy 163.294724 64.21467) (xy 163.294725 64.214671) (xy 163.29473 64.214677) - (xy 163.385321 64.305268) (xy 163.385327 64.305273) (xy 163.385328 64.305274) (xy 163.491869 64.376463) - (xy 163.491871 64.376463) (xy 163.491875 64.376466) (xy 163.516095 64.386498) (xy 163.579494 64.412759) - (xy 163.604645 64.423177) (xy 163.609051 64.425261) (xy 163.610254 64.4255) (xy 163.610256 64.425501) - (xy 163.610257 64.425501) (xy 163.61026 64.425501) (xy 163.610261 64.425502) (xy 163.685714 64.440511) - (xy 163.735927 64.4505) (xy 163.864071 64.4505) (xy 163.864072 64.4505) (xy 163.883523 64.44663) - (xy 163.963034 64.430814) (xy 163.989744 64.425501) (xy 164.108127 64.376465) (xy 164.214669 64.305276) - (xy 164.305276 64.214669) (xy 164.376465 64.108127) (xy 164.425501 63.989744) (xy 164.435276 63.940602) - (xy 164.441245 63.910598) (xy 164.4505 63.864072) (xy 164.4505 63.735925) (xy 164.422082 63.593066) - (xy 164.418009 63.577107) (xy 164.417728 63.574497) (xy 164.415479 63.553573) (xy 164.423816 63.495597) - (xy 164.423733 63.495572) (xy 164.423898 63.495026) (xy 164.42421 63.49286) (xy 164.424618 63.491875) - (xy 164.425501 63.489744) (xy 164.444057 63.396461) (xy 164.4505 63.364071) (xy 164.4505 63.235928) - (xy 164.4505 63.235925) (xy 164.425262 63.109053) (xy 164.423177 63.104645) (xy 164.403907 63.058124) - (xy 164.383852 63.009707) (xy 164.382005 63.005249) (xy 164.376469 62.991881) (xy 164.376465 62.991874) - (xy 164.376463 62.99187) (xy 164.376461 62.991866) (xy 164.305276 62.885331) (xy 164.305273 62.885327) - (xy 164.305268 62.885321) (xy 164.214676 62.794729) (xy 164.214672 62.794726) (xy 164.214668 62.794723) - (xy 164.204041 62.787622) (xy 174.494237 62.787622) (xy 174.524494 62.939726) (xy 174.524495 62.939732) - (xy 174.524496 62.939736) (xy 174.524497 62.939738) (xy 174.524498 62.939742) (xy 174.524499 62.939743) - (xy 174.524502 62.939753) (xy 174.573529 63.058118) (xy 174.573534 63.058128) (xy 174.644724 63.16467) - (xy 174.644725 63.164671) (xy 174.64473 63.164677) (xy 174.735321 63.255268) (xy 174.735327 63.255273) - (xy 174.735331 63.255276) (xy 174.841866 63.326461) (xy 174.841872 63.326464) (xy 174.841873 63.326465) - (xy 174.955362 63.373473) (xy 174.955947 63.373724) (xy 174.956141 63.373884) (xy 174.959053 63.375261) - (xy 174.960252 63.375499) (xy 174.960256 63.375501) (xy 174.960259 63.375501) (xy 174.96026 63.375501) - (xy 174.960261 63.375502) (xy 175.057899 63.394924) (xy 175.085927 63.4005) (xy 175.214071 63.4005) - (xy 175.214073 63.4005) (xy 175.298615 63.383682) (xy 175.339744 63.375501) (xy 175.458127 63.326465) - (xy 175.564669 63.255276) (xy 175.655276 63.164669) (xy 175.726465 63.058127) (xy 175.775501 62.939744) - (xy 175.787443 62.879711) (xy 175.797424 62.829535) (xy 184.197652 62.829535) (xy 184.22841 62.984158) - (xy 184.228417 62.984189) (xy 184.288751 63.129852) (xy 184.288756 63.129861) (xy 184.288766 63.129878) - (xy 184.376364 63.260977) (xy 184.376365 63.260978) (xy 184.376367 63.260981) (xy 184.487854 63.372468) - (xy 184.48786 63.372473) (xy 184.487864 63.372476) (xy 184.618967 63.460077) (xy 184.61898 63.460084) - (xy 184.721506 63.502551) (xy 184.764656 63.520424) (xy 184.897352 63.546819) (xy 184.911669 63.549666) - (xy 184.914399 63.55039) (xy 184.919308 63.551187) (xy 185.076997 63.551187) (xy 185.081117 63.551187) - (xy 185.088967 63.548805) (xy 185.23165 63.520424) (xy 185.341911 63.474753) (xy 185.358101 63.468047) - (xy 185.37077 63.462799) (xy 185.377325 63.460084) (xy 185.377325 63.460083) (xy 185.377327 63.460082) - (xy 185.377332 63.460081) (xy 185.377334 63.460079) (xy 185.379667 63.459113) (xy 185.379682 63.459107) - (xy 185.388944 63.45527) (xy 185.39783 63.446385) (xy 185.508437 63.37248) (xy 185.508438 63.372478) - (xy 185.508442 63.372476) (xy 185.512133 63.368784) (xy 185.524623 63.361314) (xy 185.532059 63.352613) - (xy 185.540377 63.347637) (xy 185.550315 63.34221) (xy 185.560142 63.340072) (xy 185.564061 63.337729) - (xy 185.574803 63.334494) (xy 185.586143 63.334415) (xy 185.618587 63.327357) (xy 185.636579 63.334066) - (xy 185.644671 63.334011) (xy 185.656492 63.341493) (xy 185.684052 63.351771) (xy 185.694247 63.365389) - (xy 185.703709 63.371378) (xy 185.711873 63.388934) (xy 185.725924 63.407701) (xy 185.726748 63.40991) - (xy 185.727818 63.423218) (xy 185.733173 63.434732) (xy 185.730384 63.455127) (xy 185.732177 63.477418) - (xy 185.7195 63.541148) (xy 185.7195 63.541153) (xy 185.7195 63.698846) (xy 185.7195 63.698848) - (xy 185.719499 63.698848) (xy 185.750257 63.853471) (xy 185.750264 63.853502) (xy 185.810598 63.999165) - (xy 185.810603 63.999174) (xy 185.810613 63.999191) (xy 185.898211 64.13029) (xy 185.898212 64.130291) - (xy 185.898217 64.130297) (xy 186.009701 64.241781) (xy 186.009707 64.241786) (xy 186.009711 64.241789) - (xy 186.140814 64.32939) (xy 186.140827 64.329397) (xy 186.267824 64.382) (xy 186.286503 64.389737) - (xy 186.402252 64.412761) (xy 186.433528 64.418982) (xy 186.436252 64.419704) (xy 186.441155 64.4205) - (xy 186.598844 64.4205) (xy 186.602964 64.4205) (xy 186.610814 64.418118) (xy 186.753497 64.389737) - (xy 186.899179 64.329394) (xy 187.030289 64.241789) (xy 187.141789 64.130289) (xy 187.193151 64.053417) - (xy 187.216732 64.027166) (xy 187.227384 64.018265) (xy 187.291445 63.990381) (xy 187.360408 64.001554) - (xy 187.360413 64.001556) (xy 187.360415 64.001557) (xy 187.368218 64.00529) (xy 187.402389 64.029469) - (xy 187.514701 64.141781) (xy 187.514707 64.141786) (xy 187.514711 64.141789) (xy 187.645814 64.22939) - (xy 187.645827 64.229397) (xy 187.791498 64.289735) (xy 187.791503 64.289737) (xy 187.92441 64.316174) + (xy 133.466527 63.880257) (xy 133.466496 63.880264) (xy 133.320833 63.940598) (xy 133.320824 63.940603) + (xy 133.320819 63.940606) (xy 133.320814 63.940609) (xy 133.269608 63.974824) (xy 133.189708 64.028211) + (xy 133.189707 64.028212) (xy 133.189701 64.028217) (xy 133.078217 64.139701) (xy 133.078212 64.139707) + (xy 133.078211 64.139708) (xy 132.990613 64.270807) (xy 132.990603 64.270824) (xy 132.990598 64.270833) + (xy 132.930264 64.416496) (xy 132.930257 64.416527) (xy 132.8995 64.57115) (xy 132.8995 64.571153) + (xy 132.8995 64.728846) (xy 132.8995 64.728848) (xy 132.899499 64.728848) (xy 122.539076 64.728848) + (xy 122.504585 64.600129) (xy 122.418329 64.39189) (xy 122.418329 64.391885) (xy 122.418199 64.391565) + (xy 122.418177 64.391521) (xy 122.417146 64.389736) (xy 122.30528 64.195977) (xy 122.252005 64.126547) + (xy 122.252003 64.126547) (xy 121.706034 64.672516) (xy 121.644711 64.706001) (xy 121.575019 64.701017) + (xy 121.519086 64.659145) (xy 121.515251 64.653726) (xy 121.503051 64.635468) (xy 121.503048 64.635464) + (xy 121.389535 64.521951) (xy 121.389529 64.521946) (xy 121.371269 64.509745) (xy 121.326465 64.456133) + (xy 121.317758 64.386808) (xy 121.347913 64.32378) (xy 121.352458 64.318985) (xy 121.828899 63.842546) + (xy 142.594237 63.842546) (xy 142.626416 64.004315) (xy 142.626417 64.004319) (xy 142.626418 64.004322) + (xy 142.626421 64.004332) (xy 142.626424 64.00434) (xy 142.626429 64.004354) (xy 142.679217 64.131797) + (xy 142.679222 64.131806) (xy 142.679232 64.131823) (xy 142.755887 64.246544) (xy 142.755892 64.24655) + (xy 142.853448 64.344106) (xy 142.853454 64.344111) (xy 142.853458 64.344114) (xy 142.968182 64.420771) + (xy 142.968195 64.420778) (xy 142.968197 64.420778) (xy 142.968201 64.420781) (xy 143.023247 64.443581) + (xy 143.06954 64.462756) (xy 143.090061 64.471255) (xy 143.09447 64.473341) (xy 143.231001 64.5005) + (xy 143.368995 64.5005) (xy 143.368996 64.5005) (xy 143.406958 64.492948) (xy 143.488542 64.47672) + (xy 143.504328 64.47358) (xy 143.611411 64.429225) (xy 143.625265 64.423486) (xy 143.628049 64.422515) + (xy 143.629494 64.421847) (xy 143.634162 64.4198) (xy 143.643423 64.415964) (xy 143.652307 64.407079) + (xy 143.746542 64.344114) (xy 143.790974 64.299682) (xy 143.844113 64.246544) (xy 143.844114 64.246542) + (xy 143.846784 64.242546) (xy 160.944237 64.242546) (xy 160.976416 64.404315) (xy 160.976417 64.404319) + (xy 160.976418 64.404322) (xy 160.976421 64.404332) (xy 160.976424 64.40434) (xy 160.976429 64.404354) + (xy 161.029217 64.531797) (xy 161.029222 64.531806) (xy 161.029232 64.531823) (xy 161.105884 64.64654) + (xy 161.105887 64.646544) (xy 161.105892 64.64655) (xy 161.203448 64.744106) (xy 161.203451 64.744108) + (xy 161.203454 64.744111) (xy 161.203457 64.744113) (xy 161.203458 64.744114) (xy 161.205008 64.745149) + (xy 161.205028 64.745173) (xy 161.205033 64.745166) (xy 161.205034 64.745167) (xy 161.220536 64.755525) + (xy 161.220537 64.755526) (xy 161.220539 64.755527) (xy 161.246795 64.779113) (xy 161.255694 64.789762) + (xy 161.283578 64.853827) (xy 161.272402 64.922791) (xy 161.268588 64.930763) (xy 161.244412 64.964929) + (xy 161.146572 65.062769) (xy 161.069918 65.177489) (xy 161.069908 65.177506) (xy 161.069903 65.177515) + (xy 161.017115 65.304958) (xy 161.017102 65.304997) (xy 160.990186 65.440314) (xy 160.990186 65.53394) + (xy 160.984923 65.55186) (xy 161.017102 65.713629) (xy 161.017104 65.713636) (xy 161.017115 65.713668) + (xy 161.069903 65.841111) (xy 161.069908 65.84112) (xy 161.069918 65.841137) (xy 161.146572 65.955857) + (xy 161.146573 65.955858) (xy 161.146578 65.955864) (xy 161.244137 66.053423) (xy 161.24414 66.053425) + (xy 161.244144 66.053428) (xy 161.358868 66.130085) (xy 161.358881 66.130092) (xy 161.457095 66.170773) + (xy 161.480746 66.180569) (xy 161.485156 66.182655) (xy 161.621687 66.209814) (xy 161.759681 66.209814) + (xy 161.759682 66.209814) (xy 161.812265 66.199354) (xy 161.85285 66.191281) (xy 161.895014 66.182894) + (xy 162.018345 66.131809) (xy 162.019089 66.1315) (xy 162.020678 66.130942) (xy 162.024835 66.129121) + (xy 162.034107 66.125279) (xy 162.042993 66.116393) (xy 162.137228 66.053428) (xy 162.137231 66.053425) + (xy 162.137234 66.053423) (xy 162.234797 65.955859) (xy 162.234799 65.955857) (xy 162.2348 65.955856) + (xy 162.311461 65.841125) (xy 162.323298 65.812547) (xy 163.119236 65.812547) (xy 163.151415 65.974316) + (xy 163.151416 65.97432) (xy 163.151417 65.974323) (xy 163.15142 65.974333) (xy 163.151423 65.974341) + (xy 163.151428 65.974355) (xy 163.204216 66.101798) (xy 163.204221 66.101807) (xy 163.204231 66.101824) + (xy 163.280883 66.216541) (xy 163.280886 66.216545) (xy 163.280891 66.216551) (xy 163.378447 66.314107) + (xy 163.378453 66.314112) (xy 163.378457 66.314115) (xy 163.493181 66.390772) (xy 163.493194 66.390779) + (xy 163.61057 66.439397) (xy 163.615066 66.441259) (xy 163.61507 66.441262) (xy 163.619467 66.443342) + (xy 163.756 66.470501) (xy 163.893994 66.470501) (xy 163.893995 66.470501) (xy 163.939517 66.461445) + (xy 163.98504 66.45239) (xy 164.029327 66.443581) (xy 164.15681 66.390776) (xy 164.271541 66.314115) + (xy 164.305608 66.280048) (xy 164.369112 66.216545) (xy 164.369114 66.216542) (xy 164.385992 66.191282) + (xy 164.445774 66.101812) (xy 164.448964 66.094112) (xy 164.480881 66.017055) (xy 164.498579 65.974329) + (xy 164.50969 65.91847) (xy 164.525074 65.841131) (xy 164.525499 65.838997) (xy 164.525499 65.701002) + (xy 164.49834 65.56447) (xy 164.49625 65.560051) (xy 164.49428 65.555294) (xy 164.49428 65.555293) + (xy 164.44578 65.438202) (xy 164.445775 65.438193) (xy 164.44577 65.438183) (xy 164.369113 65.323459) + (xy 164.36911 65.323455) (xy 164.369105 65.323449) (xy 164.271549 65.225893) (xy 164.271543 65.225888) + (xy 164.271542 65.225887) (xy 164.156822 65.149233) (xy 164.156821 65.149232) (xy 164.156816 65.149229) + (xy 164.156803 65.149222) (xy 164.156796 65.149218) (xy 164.029353 65.09643) (xy 164.029339 65.096425) + (xy 164.029331 65.096422) (xy 164.029321 65.096419) (xy 164.029318 65.096418) (xy 164.029314 65.096417) + (xy 163.893997 65.069501) (xy 163.893994 65.069501) (xy 163.893992 65.069501) (xy 163.756006 65.069501) + (xy 163.756004 65.069501) (xy 163.755999 65.069501) (xy 163.620682 65.096417) (xy 163.620676 65.096419) + (xy 163.620666 65.096422) (xy 163.620661 65.096423) (xy 163.620643 65.09643) (xy 163.4932 65.149218) + (xy 163.493191 65.149223) (xy 163.493174 65.149233) (xy 163.378454 65.225887) (xy 163.378453 65.225888) + (xy 163.378447 65.225893) (xy 163.280891 65.323449) (xy 163.280886 65.323455) (xy 163.280885 65.323456) + (xy 163.204231 65.438176) (xy 163.204221 65.438193) (xy 163.204216 65.438202) (xy 163.151428 65.565645) + (xy 163.151415 65.565684) (xy 163.124499 65.701001) (xy 163.124499 65.794627) (xy 163.119236 65.812547) + (xy 162.323298 65.812547) (xy 162.364266 65.713642) (xy 162.383093 65.618993) (xy 162.391186 65.578309) + (xy 162.391186 65.440318) (xy 162.391186 65.440315) (xy 162.364027 65.303783) (xy 162.361943 65.299376) + (xy 162.311467 65.177515) (xy 162.311462 65.177506) (xy 162.311457 65.177496) (xy 162.2348 65.062772) + (xy 162.234797 65.062768) (xy 162.234792 65.062762) (xy 162.137244 64.965214) (xy 162.137236 64.965207) + (xy 162.137231 64.965202) (xy 162.137225 64.965197) (xy 162.120142 64.953782) (xy 162.093891 64.9302) + (xy 162.084993 64.919553) (xy 162.071627 64.888848) (xy 183.839499 64.888848) (xy 183.870257 65.043471) + (xy 183.870264 65.043502) (xy 183.930598 65.189165) (xy 183.930602 65.189172) (xy 183.930606 65.18918) + (xy 183.930613 65.189191) (xy 184.018211 65.32029) (xy 184.018212 65.320291) (xy 184.018217 65.320297) + (xy 184.129701 65.431781) (xy 184.129707 65.431786) (xy 184.129711 65.431789) (xy 184.260814 65.51939) + (xy 184.260827 65.519397) (xy 184.260829 65.519397) (xy 184.260833 65.5194) (xy 184.399253 65.576734) + (xy 184.403055 65.578309) (xy 184.406503 65.579737) (xy 184.561153 65.610499) (xy 184.561156 65.6105) + (xy 184.561158 65.6105) (xy 184.718844 65.6105) (xy 184.718845 65.610499) (xy 184.873497 65.579737) + (xy 184.986166 65.533067) (xy 185.012634 65.522104) (xy 185.015425 65.521131) (xy 185.016868 65.520464) + (xy 185.021528 65.518421) (xy 185.030787 65.514585) (xy 185.039671 65.505701) (xy 185.150289 65.431789) + (xy 185.261789 65.320289) (xy 185.349394 65.189179) (xy 185.409737 65.043497) (xy 185.4405 64.888842) + (xy 185.4405 64.731158) (xy 185.4405 64.731155) (xy 185.4405 64.730971) (xy 185.440064 64.728966) + (xy 185.409739 64.576511) (xy 185.409738 64.576507) (xy 185.409732 64.576492) (xy 185.408822 64.574293) + (xy 185.3494 64.430833) (xy 185.349395 64.430824) (xy 185.34939 64.430814) (xy 185.261789 64.299711) + (xy 185.261786 64.299707) (xy 185.261781 64.299701) (xy 185.150295 64.188215) (xy 185.15029 64.188211) + (xy 185.150288 64.18821) (xy 185.019191 64.100613) (xy 185.01919 64.100612) (xy 185.019185 64.100609) + (xy 185.019172 64.100602) (xy 185.019165 64.100598) (xy 184.873502 64.040264) (xy 184.873471 64.040257) + (xy 184.718847 64.0095) (xy 184.718845 64.0095) (xy 184.718842 64.0095) (xy 184.561158 64.0095) + (xy 184.561155 64.0095) (xy 184.561153 64.0095) (xy 184.406527 64.040257) (xy 184.406496 64.040264) + (xy 184.260833 64.100598) (xy 184.260824 64.100603) (xy 184.260807 64.100613) (xy 184.129711 64.18821) + (xy 184.129709 64.188211) (xy 184.129704 64.188215) (xy 184.018217 64.299701) (xy 184.018212 64.299707) + (xy 184.018211 64.299708) (xy 183.930613 64.430807) (xy 183.930603 64.430824) (xy 183.930598 64.430833) + (xy 183.870265 64.576492) (xy 183.870265 64.576494) (xy 183.870258 64.576527) (xy 183.8395 64.73115) + (xy 183.8395 64.731153) (xy 183.8395 64.888846) (xy 183.8395 64.888848) (xy 183.839499 64.888848) + (xy 162.071627 64.888848) (xy 162.057107 64.85549) (xy 162.059415 64.841245) (xy 162.068281 64.786522) + (xy 162.072098 64.778545) (xy 162.096273 64.744382) (xy 162.096539 64.744115) (xy 162.096542 64.744114) + (xy 162.194114 64.646542) (xy 162.270775 64.531811) (xy 162.32358 64.404328) (xy 162.336376 64.34) + (xy 162.338486 64.329394) (xy 162.3505 64.268997) (xy 162.3505 64.131001) (xy 162.323341 63.994469) + (xy 162.321255 63.990059) (xy 162.304553 63.949736) (xy 162.271182 63.869171) (xy 162.270778 63.868195) + (xy 162.270771 63.868182) (xy 162.233596 63.812546) (xy 162.99294 63.812546) (xy 163.025119 63.974315) + (xy 163.02512 63.974319) (xy 163.025121 63.974322) (xy 163.025124 63.974332) (xy 163.025127 63.97434) + (xy 163.025132 63.974354) (xy 163.07792 64.101797) (xy 163.077925 64.101806) (xy 163.077935 64.101823) + (xy 163.154589 64.216543) (xy 163.15459 64.216544) (xy 163.154595 64.21655) (xy 163.252151 64.314106) + (xy 163.252157 64.314111) (xy 163.252161 64.314114) (xy 163.366885 64.390771) (xy 163.366898 64.390778) + (xy 163.49437 64.443578) (xy 163.494375 64.44358) (xy 163.494379 64.44358) (xy 163.49438 64.443581) + (xy 163.53866 64.452389) (xy 163.629705 64.4705) (xy 163.767698 64.4705) (xy 163.767699 64.4705) + (xy 163.839922 64.456133) (xy 163.858744 64.452389) (xy 163.903031 64.44358) (xy 164.015571 64.396964) + (xy 164.030507 64.390778) (xy 164.030507 64.390777) (xy 164.030514 64.390775) (xy 164.145245 64.314114) + (xy 164.242817 64.216542) (xy 164.319478 64.101811) (xy 164.319481 64.101804) (xy 164.319482 64.101803) + (xy 164.361995 63.999165) (xy 164.372283 63.974328) (xy 164.385242 63.909179) (xy 164.397797 63.846061) + (xy 164.400436 63.835325) (xy 164.401101 63.833061) (xy 164.406758 63.813794) (xy 164.406758 63.813787) + (xy 164.407671 63.809664) (xy 164.408959 63.809948) (xy 164.424654 63.77615) (xy 182.0245 63.77615) + (xy 182.0245 63.933848) (xy 182.055257 64.088471) (xy 182.055264 64.088502) (xy 182.115598 64.234165) + (xy 182.1156 64.234168) (xy 182.115602 64.234172) (xy 182.115609 64.234185) (xy 182.115612 64.23419) + (xy 182.115613 64.234191) (xy 182.203211 64.36529) (xy 182.203212 64.365291) (xy 182.203217 64.365297) + (xy 182.314701 64.476781) (xy 182.314707 64.476786) (xy 182.314711 64.476789) (xy 182.445814 64.56439) + (xy 182.445827 64.564397) (xy 182.591498 64.624735) (xy 182.591503 64.624737) (xy 182.746153 64.655499) + (xy 182.746156 64.6555) (xy 182.746158 64.6555) (xy 182.903844 64.6555) (xy 182.903845 64.655499) + (xy 183.058497 64.624737) (xy 183.070941 64.619582) (xy 183.077746 64.616764) (xy 183.077748 64.616762) + (xy 183.092857 64.610505) (xy 183.106539 64.604838) (xy 183.180288 64.57429) (xy 183.197623 64.567109) + (xy 183.200416 64.566135) (xy 183.201858 64.565468) (xy 183.20652 64.563424) (xy 183.21579 64.559584) + (xy 183.224675 64.550698) (xy 183.335289 64.476789) (xy 183.446789 64.365289) (xy 183.534394 64.234179) + (xy 183.594737 64.088497) (xy 183.622338 63.949737) (xy 183.6255 63.933843) (xy 183.6255 63.775973) + (xy 183.625065 63.773972) (xy 183.62487 63.772994) (xy 183.616518 63.731004) (xy 183.616518 63.731003) + (xy 183.594738 63.621506) (xy 183.594735 63.621498) (xy 183.589493 63.608841) (xy 183.589493 63.60884) + (xy 183.534399 63.475832) (xy 183.534397 63.475827) (xy 183.534393 63.47582) (xy 183.53439 63.475814) + (xy 183.446789 63.344711) (xy 183.446786 63.344707) (xy 183.446781 63.344701) (xy 183.335297 63.233217) + (xy 183.335291 63.233212) (xy 183.33529 63.233211) (xy 183.204191 63.145613) (xy 183.20419 63.145612) + (xy 183.204185 63.145609) (xy 183.204172 63.145602) (xy 183.204165 63.145598) (xy 183.058502 63.085264) + (xy 183.058471 63.085257) (xy 182.903847 63.0545) (xy 182.903845 63.0545) (xy 182.903842 63.0545) + (xy 182.746158 63.0545) (xy 182.746155 63.0545) (xy 182.746153 63.0545) (xy 182.591527 63.085257) + (xy 182.591496 63.085264) (xy 182.445833 63.145598) (xy 182.445824 63.145603) (xy 182.445807 63.145613) + (xy 182.314708 63.233211) (xy 182.314707 63.233212) (xy 182.314701 63.233217) (xy 182.203217 63.344701) + (xy 182.203212 63.344707) (xy 182.203211 63.344708) (xy 182.115613 63.475807) (xy 182.115606 63.47582) + (xy 182.115602 63.475827) (xy 182.115599 63.475831) (xy 182.055264 63.621496) (xy 182.055257 63.621527) + (xy 182.0245 63.77615) (xy 164.424654 63.77615) (xy 164.435984 63.751752) (xy 164.441485 63.74588) + (xy 164.470825 63.716542) (xy 164.47087 63.716473) (xy 164.481098 63.701169) (xy 164.547482 63.601817) + (xy 164.547482 63.601816) (xy 164.547486 63.601811) (xy 164.550041 63.595644) (xy 164.578715 63.526418) + (xy 164.600291 63.474328) (xy 164.613544 63.407703) (xy 164.616911 63.390777) (xy 164.616911 63.390776) + (xy 164.627211 63.338997) (xy 164.627211 63.201001) (xy 164.607479 63.101807) (xy 164.600292 63.065677) + (xy 164.600291 63.065676) (xy 164.600291 63.065672) (xy 164.60029 63.06567) (xy 164.600051 63.064469) + (xy 164.597971 63.060072) (xy 164.547489 62.938195) (xy 164.547482 62.938182) (xy 164.470825 62.823458) + (xy 164.470822 62.823454) (xy 164.470817 62.823448) (xy 164.459916 62.812547) (xy 174.469238 62.812547) + (xy 174.501417 62.974316) (xy 174.501418 62.97432) (xy 174.501419 62.974323) (xy 174.501422 62.974333) + (xy 174.501425 62.974341) (xy 174.50143 62.974355) (xy 174.554218 63.101798) (xy 174.554223 63.101807) + (xy 174.554233 63.101824) (xy 174.630887 63.216544) (xy 174.630888 63.216545) (xy 174.630893 63.216551) + (xy 174.728449 63.314107) (xy 174.728455 63.314112) (xy 174.728459 63.314115) (xy 174.843183 63.390772) + (xy 174.843196 63.390779) (xy 174.963906 63.440778) (xy 174.965096 63.441271) (xy 174.965109 63.441281) + (xy 174.969466 63.443341) (xy 175.106002 63.470501) (xy 175.243996 63.470501) (xy 175.243997 63.470501) + (xy 175.341262 63.451153) (xy 175.379329 63.443581) (xy 175.506812 63.390776) (xy 175.621543 63.314115) + (xy 175.719115 63.216543) (xy 175.795776 63.101812) (xy 175.79688 63.099148) (xy 175.848581 62.974329) + (xy 175.848582 62.974323) (xy 175.864537 62.894114) (xy 175.875501 62.838996) (xy 175.875501 62.829535) + (xy 184.197652 62.829535) (xy 184.22841 62.984158) (xy 184.228417 62.984189) (xy 184.288751 63.129852) + (xy 184.288756 63.129861) (xy 184.288766 63.129878) (xy 184.376364 63.260977) (xy 184.376367 63.260981) + (xy 184.487854 63.372468) (xy 184.48786 63.372473) (xy 184.487864 63.372476) (xy 184.618967 63.460077) + (xy 184.61898 63.460084) (xy 184.618982 63.460084) (xy 184.618986 63.460087) (xy 184.69985 63.493581) + (xy 184.764629 63.520413) (xy 184.764656 63.520424) (xy 184.919306 63.551186) (xy 184.919309 63.551187) + (xy 184.919311 63.551187) (xy 185.076997 63.551187) (xy 185.076998 63.551186) (xy 185.23165 63.520424) + (xy 185.357743 63.468195) (xy 185.377325 63.460084) (xy 185.377325 63.460083) (xy 185.377332 63.460081) + (xy 185.377334 63.460079) (xy 185.379687 63.459105) (xy 185.379688 63.459104) (xy 185.388943 63.455271) + (xy 185.397828 63.446385) (xy 185.508442 63.372476) (xy 185.512133 63.368784) (xy 185.524623 63.361314) + (xy 185.532059 63.352613) (xy 185.540377 63.347637) (xy 185.550315 63.34221) (xy 185.560142 63.340072) + (xy 185.564061 63.337729) (xy 185.574803 63.334494) (xy 185.586143 63.334415) (xy 185.618587 63.327357) + (xy 185.636579 63.334066) (xy 185.644671 63.334011) (xy 185.656492 63.341493) (xy 185.684052 63.351771) + (xy 185.694247 63.365389) (xy 185.703709 63.371378) (xy 185.711873 63.388934) (xy 185.725924 63.407701) + (xy 185.726748 63.40991) (xy 185.727818 63.423218) (xy 185.733173 63.434732) (xy 185.730384 63.455127) + (xy 185.732177 63.477418) (xy 185.7195 63.541148) (xy 185.7195 63.541153) (xy 185.7195 63.698846) + (xy 185.7195 63.698848) (xy 185.719499 63.698848) (xy 185.750257 63.853471) (xy 185.750264 63.853502) + (xy 185.810598 63.999165) (xy 185.810603 63.999174) (xy 185.810613 63.999191) (xy 185.898211 64.13029) + (xy 185.898212 64.130291) (xy 185.898217 64.130297) (xy 186.009701 64.241781) (xy 186.009707 64.241786) + (xy 186.009711 64.241789) (xy 186.140814 64.32939) (xy 186.140827 64.329397) (xy 186.254355 64.376421) + (xy 186.286503 64.389737) (xy 186.421039 64.416498) (xy 186.433527 64.418982) (xy 186.436251 64.419704) + (xy 186.441155 64.4205) (xy 186.598844 64.4205) (xy 186.602964 64.4205) (xy 186.610814 64.418118) + (xy 186.753497 64.389737) (xy 186.899179 64.329394) (xy 187.030289 64.241789) (xy 187.141789 64.130289) + (xy 187.193151 64.053417) (xy 187.216732 64.027166) (xy 187.227384 64.018265) (xy 187.291445 63.990381) + (xy 187.360408 64.001554) (xy 187.360413 64.001556) (xy 187.360415 64.001557) (xy 187.368218 64.00529) + (xy 187.402389 64.029469) (xy 187.514701 64.141781) (xy 187.514707 64.141786) (xy 187.514711 64.141789) + (xy 187.645814 64.22939) (xy 187.645827 64.229397) (xy 187.791498 64.289735) (xy 187.791503 64.289737) (xy 187.946153 64.320499) (xy 187.946156 64.3205) (xy 187.946158 64.3205) (xy 188.103844 64.3205) - (xy 188.103845 64.320499) (xy 188.258497 64.289737) (xy 188.376592 64.240821) (xy 188.404172 64.229397) - (xy 188.404172 64.229396) (xy 188.404179 64.229394) (xy 188.404184 64.22939) (xy 188.406534 64.228417) - (xy 188.406534 64.228416) (xy 188.406537 64.228416) (xy 188.415792 64.224582) (xy 188.424677 64.215698) - (xy 188.480002 64.17873) (xy 188.535289 64.141789) (xy 188.646789 64.030289) (xy 188.734394 63.899179) - (xy 188.737422 63.89187) (xy 188.754972 63.8495) (xy 188.794737 63.753497) (xy 188.82351 63.608848) - (xy 189.219499 63.608848) (xy 189.250257 63.763471) (xy 189.250264 63.763502) (xy 189.310598 63.909165) - (xy 189.310603 63.909174) (xy 189.310613 63.909191) (xy 189.398211 64.04029) (xy 189.398212 64.040291) - (xy 189.398217 64.040297) (xy 189.509701 64.151781) (xy 189.509707 64.151786) (xy 189.509711 64.151789) - (xy 189.640814 64.23939) (xy 189.640827 64.239397) (xy 189.640829 64.239397) (xy 189.640833 64.2394) - (xy 189.78637 64.299682) (xy 189.78644 64.299711) (xy 189.786503 64.299737) (xy 189.935578 64.32939) - (xy 189.941153 64.330499) (xy 189.941156 64.3305) (xy 189.941158 64.3305) (xy 190.098844 64.3305) - (xy 190.098845 64.330499) (xy 190.253497 64.299737) (xy 190.366166 64.253067) (xy 190.392634 64.242104) - (xy 190.395425 64.241131) (xy 190.396868 64.240464) (xy 190.401528 64.238421) (xy 190.410787 64.234585) - (xy 190.419671 64.225701) (xy 190.530289 64.151789) (xy 190.641789 64.040289) (xy 190.685885 63.974293) - (xy 190.729393 63.909181) (xy 190.729393 63.90918) (xy 190.729394 63.909179) (xy 190.736562 63.891875) - (xy 190.78806 63.767544) (xy 190.789222 63.764997) (xy 190.78973 63.76351) (xy 190.789735 63.763501) - (xy 190.789737 63.763497) (xy 190.817836 63.622235) (xy 190.8205 63.608844) (xy 190.8205 63.468848) - (xy 195.449499 63.468848) (xy 195.480257 63.623471) (xy 195.480264 63.623502) (xy 195.540598 63.769165) - (xy 195.540603 63.769174) (xy 195.540613 63.769191) (xy 195.628211 63.90029) (xy 195.628212 63.900291) - (xy 195.628217 63.900297) (xy 195.739701 64.011781) (xy 195.739707 64.011786) (xy 195.739711 64.011789) - (xy 195.870814 64.09939) (xy 195.870827 64.099397) (xy 196.016498 64.159735) (xy 196.016503 64.159737) - (xy 196.159661 64.188213) (xy 196.163534 64.188983) (xy 196.163538 64.188985) (xy 196.166245 64.189703) - (xy 196.171155 64.1905) (xy 196.328844 64.1905) (xy 196.332964 64.1905) (xy 196.340814 64.188118) - (xy 196.483497 64.159737) (xy 196.629179 64.099394) (xy 196.760289 64.011789) (xy 196.871789 63.900289) - (xy 196.959394 63.769179) (xy 196.961746 63.763502) (xy 196.988944 63.697839) (xy 197.019737 63.623497) - (xy 197.050499 63.468848) (xy 200.569499 63.468848) (xy 200.600257 63.623471) (xy 200.600264 63.623502) - (xy 200.660598 63.769165) (xy 200.660603 63.769174) (xy 200.660613 63.769191) (xy 200.748211 63.90029) - (xy 200.748212 63.900291) (xy 200.748217 63.900297) (xy 200.859701 64.011781) (xy 200.859707 64.011786) - (xy 200.859711 64.011789) (xy 200.990814 64.09939) (xy 200.990827 64.099397) (xy 201.136498 64.159735) - (xy 201.136503 64.159737) (xy 201.279661 64.188213) (xy 201.283534 64.188983) (xy 201.283538 64.188985) - (xy 201.286245 64.189703) (xy 201.291155 64.1905) (xy 201.448844 64.1905) (xy 201.452964 64.1905) - (xy 201.460814 64.188118) (xy 201.603497 64.159737) (xy 201.749179 64.099394) (xy 201.880289 64.011789) - (xy 201.991789 63.900289) (xy 202.079394 63.769179) (xy 202.081746 63.763502) (xy 202.108944 63.697839) - (xy 202.139737 63.623497) (xy 202.1705 63.468842) (xy 202.1705 63.311158) (xy 202.1705 63.311155) - (xy 202.1705 63.310973) (xy 202.170065 63.308971) (xy 202.153071 63.223537) (xy 202.139738 63.156508) - (xy 202.139737 63.156505) (xy 202.139737 63.156503) (xy 202.137386 63.150827) (xy 202.127986 63.128133) + (xy 188.103845 64.320499) (xy 188.258497 64.289737) (xy 188.374262 64.241786) (xy 188.404172 64.229397) + (xy 188.404172 64.229396) (xy 188.404179 64.229394) (xy 188.404182 64.229391) (xy 188.406519 64.228424) + (xy 188.40653 64.228419) (xy 188.415791 64.224583) (xy 188.424675 64.215698) (xy 188.535289 64.141789) + (xy 188.646789 64.030289) (xy 188.734394 63.899179) (xy 188.794737 63.753497) (xy 188.8255 63.598842) + (xy 188.8255 63.45115) (xy 189.2195 63.45115) (xy 189.2195 63.608848) (xy 189.250257 63.763471) + (xy 189.250264 63.763502) (xy 189.310598 63.909165) (xy 189.310602 63.909172) (xy 189.310606 63.90918) + (xy 189.310613 63.909191) (xy 189.398211 64.04029) (xy 189.398212 64.040291) (xy 189.398217 64.040297) + (xy 189.509701 64.151781) (xy 189.509707 64.151786) (xy 189.509711 64.151789) (xy 189.640814 64.23939) + (xy 189.640827 64.239397) (xy 189.640829 64.239397) (xy 189.640833 64.2394) (xy 189.78637 64.299682) + (xy 189.78644 64.299711) (xy 189.786503 64.299737) (xy 189.935578 64.32939) (xy 189.941153 64.330499) + (xy 189.941156 64.3305) (xy 189.941158 64.3305) (xy 190.098844 64.3305) (xy 190.098845 64.330499) + (xy 190.253497 64.299737) (xy 190.381922 64.246542) (xy 190.399172 64.239397) (xy 190.399172 64.239396) + (xy 190.399179 64.239394) (xy 190.399183 64.239391) (xy 190.401518 64.238424) (xy 190.401533 64.238418) + (xy 190.410791 64.234583) (xy 190.419675 64.225698) (xy 190.530289 64.151789) (xy 190.641789 64.040289) + (xy 190.729394 63.909179) (xy 190.789737 63.763497) (xy 190.817983 63.621496) (xy 190.8205 63.608843) + (xy 190.8205 63.450976) (xy 190.820076 63.449027) (xy 190.814456 63.420771) (xy 190.800599 63.35111) + (xy 190.789739 63.29651) (xy 190.789737 63.296507) (xy 190.789737 63.296503) (xy 190.777327 63.266542) + (xy 190.77414 63.258848) (xy 195.339499 63.258848) (xy 195.370257 63.413471) (xy 195.370264 63.413502) + (xy 195.430598 63.559165) (xy 195.430603 63.559174) (xy 195.430613 63.559191) (xy 195.518211 63.69029) + (xy 195.518212 63.690291) (xy 195.518217 63.690297) (xy 195.629701 63.801781) (xy 195.629707 63.801786) + (xy 195.629711 63.801789) (xy 195.760814 63.88939) (xy 195.760827 63.889397) (xy 195.884466 63.940609) + (xy 195.906503 63.949737) (xy 196.03015 63.974332) (xy 196.053524 63.978981) (xy 196.05625 63.979704) + (xy 196.061155 63.9805) (xy 196.218844 63.9805) (xy 196.222964 63.9805) (xy 196.230814 63.978118) + (xy 196.373497 63.949737) (xy 196.519179 63.889394) (xy 196.650289 63.801789) (xy 196.761789 63.690289) + (xy 196.825007 63.595677) (xy 196.849393 63.559181) (xy 196.849393 63.55918) (xy 196.849394 63.559179) + (xy 196.856859 63.541158) (xy 196.883922 63.475821) (xy 196.88681 63.468848) (xy 200.569499 63.468848) + (xy 200.600257 63.623471) (xy 200.600264 63.623502) (xy 200.660598 63.769165) (xy 200.660603 63.769174) + (xy 200.660613 63.769191) (xy 200.748211 63.90029) (xy 200.748212 63.900291) (xy 200.748217 63.900297) + (xy 200.859701 64.011781) (xy 200.859707 64.011786) (xy 200.859711 64.011789) (xy 200.990814 64.09939) + (xy 200.990827 64.099397) (xy 201.136498 64.159735) (xy 201.136503 64.159737) (xy 201.279661 64.188213) + (xy 201.283534 64.188983) (xy 201.283538 64.188985) (xy 201.286245 64.189703) (xy 201.291155 64.1905) + (xy 201.448844 64.1905) (xy 201.452964 64.1905) (xy 201.460814 64.188118) (xy 201.603497 64.159737) + (xy 201.716166 64.113067) (xy 201.742634 64.102104) (xy 201.745425 64.101131) (xy 201.746868 64.100464) + (xy 201.751528 64.098421) (xy 201.760787 64.094585) (xy 201.769671 64.085701) (xy 201.880289 64.011789) + (xy 201.991789 63.900289) (xy 202.036795 63.832933) (xy 202.079393 63.769181) (xy 202.079396 63.769174) + (xy 202.085907 63.753457) (xy 202.091251 63.740554) (xy 202.099881 63.719719) (xy 202.139737 63.623497) + (xy 202.140457 63.61988) (xy 202.159048 63.526416) (xy 202.1705 63.468842) (xy 202.1705 63.311158) + (xy 202.1705 63.311155) (xy 202.1705 63.310971) (xy 202.170064 63.308966) (xy 202.160094 63.258844) + (xy 202.152081 63.218559) (xy 202.139737 63.156503) (xy 202.137386 63.150827) (xy 202.120524 63.110118) (xy 202.0794 63.010833) (xy 202.079395 63.010824) (xy 202.07939 63.010814) (xy 201.991789 62.879711) (xy 201.991786 62.879707) (xy 201.991781 62.879701) (xy 201.880297 62.768217) (xy 201.880291 62.768212) (xy 201.88029 62.768211) (xy 201.749191 62.680613) (xy 201.74919 62.680612) (xy 201.749185 62.680609) @@ -35924,530 +40266,1177 @@ (xy 200.859707 62.768212) (xy 200.859701 62.768217) (xy 200.748217 62.879701) (xy 200.748212 62.879707) (xy 200.748211 62.879708) (xy 200.660613 63.010807) (xy 200.660603 63.010824) (xy 200.660598 63.010833) (xy 200.600264 63.156496) (xy 200.600257 63.156527) (xy 200.5695 63.31115) (xy 200.5695 63.311153) - (xy 200.5695 63.468846) (xy 200.5695 63.468848) (xy 200.569499 63.468848) (xy 197.050499 63.468848) - (xy 197.0505 63.468842) (xy 197.0505 63.311158) (xy 197.0505 63.311155) (xy 197.050499 63.311153) - (xy 197.033071 63.223538) (xy 197.031308 63.214677) (xy 197.019738 63.156508) (xy 197.019737 63.156505) - (xy 197.019737 63.156503) (xy 197.017386 63.150827) (xy 197.007986 63.128133) (xy 196.9594 63.010833) - (xy 196.959395 63.010824) (xy 196.95939 63.010814) (xy 196.871789 62.879711) (xy 196.871786 62.879707) - (xy 196.871781 62.879701) (xy 196.760297 62.768217) (xy 196.760291 62.768212) (xy 196.76029 62.768211) - (xy 196.629191 62.680613) (xy 196.62919 62.680612) (xy 196.629185 62.680609) (xy 196.629172 62.680602) - (xy 196.629165 62.680598) (xy 196.483502 62.620264) (xy 196.483471 62.620257) (xy 196.328847 62.5895) - (xy 196.328845 62.5895) (xy 196.328842 62.5895) (xy 196.171158 62.5895) (xy 196.171155 62.5895) - (xy 196.171153 62.5895) (xy 196.016527 62.620257) (xy 196.016496 62.620264) (xy 195.870833 62.680598) - (xy 195.870824 62.680603) (xy 195.870807 62.680613) (xy 195.739708 62.768211) (xy 195.739707 62.768212) - (xy 195.739701 62.768217) (xy 195.628217 62.879701) (xy 195.628212 62.879707) (xy 195.628211 62.879708) - (xy 195.540613 63.010807) (xy 195.540603 63.010824) (xy 195.540598 63.010833) (xy 195.480264 63.156496) - (xy 195.480257 63.156527) (xy 195.4495 63.31115) (xy 195.4495 63.311153) (xy 195.4495 63.468846) - (xy 195.4495 63.468848) (xy 195.449499 63.468848) (xy 190.8205 63.468848) (xy 190.8205 63.450971) - (xy 190.820065 63.44897) (xy 190.820064 63.448968) (xy 190.796253 63.329257) (xy 190.789738 63.296508) - (xy 190.789737 63.296507) (xy 190.789737 63.296503) (xy 190.789736 63.2965) (xy 190.789497 63.295299) - (xy 190.787413 63.290894) (xy 190.775023 63.260979) (xy 190.744761 63.18792) (xy 190.729399 63.150831) - (xy 190.729397 63.150827) (xy 190.729395 63.150824) (xy 190.72939 63.150814) (xy 190.641789 63.019711) - (xy 190.641786 63.019707) (xy 190.641781 63.019701) (xy 190.530297 62.908217) (xy 190.530291 62.908212) - (xy 190.53029 62.908211) (xy 190.399191 62.820613) (xy 190.39919 62.820612) (xy 190.399185 62.820609) - (xy 190.399172 62.820602) (xy 190.399165 62.820598) (xy 190.253502 62.760264) (xy 190.253471 62.760257) - (xy 190.098847 62.7295) (xy 190.098845 62.7295) (xy 190.098842 62.7295) (xy 189.941158 62.7295) - (xy 189.941155 62.7295) (xy 189.941153 62.7295) (xy 189.786527 62.760257) (xy 189.786496 62.760264) - (xy 189.640833 62.820598) (xy 189.640824 62.820603) (xy 189.640807 62.820613) (xy 189.509708 62.908211) - (xy 189.509707 62.908212) (xy 189.509701 62.908217) (xy 189.398217 63.019701) (xy 189.398212 63.019707) - (xy 189.398211 63.019708) (xy 189.310613 63.150807) (xy 189.310603 63.150824) (xy 189.310602 63.150827) - (xy 189.310599 63.150831) (xy 189.250264 63.296496) (xy 189.250257 63.296527) (xy 189.2195 63.45115) - (xy 189.2195 63.451153) (xy 189.2195 63.608846) (xy 189.2195 63.608848) (xy 189.219499 63.608848) - (xy 188.82351 63.608848) (xy 188.8255 63.598842) (xy 188.8255 63.441158) (xy 188.8255 63.441155) - (xy 188.825499 63.441153) (xy 188.817705 63.401971) (xy 188.817412 63.4005) (xy 188.799641 63.311158) - (xy 188.794737 63.286503) (xy 188.784165 63.260979) (xy 188.773789 63.235928) (xy 188.7344 63.140833) - (xy 188.734395 63.140824) (xy 188.73439 63.140814) (xy 188.646789 63.009711) (xy 188.646786 63.009707) - (xy 188.646784 63.009705) (xy 188.646781 63.009701) (xy 188.535297 62.898217) (xy 188.535291 62.898212) - (xy 188.53529 62.898211) (xy 188.404191 62.810613) (xy 188.40419 62.810612) (xy 188.404185 62.810609) - (xy 188.404172 62.810602) (xy 188.404165 62.810598) (xy 188.258502 62.750264) (xy 188.258471 62.750257) - (xy 188.103847 62.7195) (xy 188.103845 62.7195) (xy 188.103842 62.7195) (xy 187.946158 62.7195) - (xy 187.946155 62.7195) (xy 187.946153 62.7195) (xy 187.791527 62.750257) (xy 187.791496 62.750264) - (xy 187.645833 62.810598) (xy 187.645824 62.810603) (xy 187.645807 62.810613) (xy 187.514708 62.898211) - (xy 187.514707 62.898212) (xy 187.514701 62.898217) (xy 187.403217 63.009701) (xy 187.403212 63.009708) - (xy 187.351848 63.086577) (xy 187.340737 63.095862) (xy 187.328268 63.112829) (xy 187.322121 63.117967) - (xy 187.322119 63.117969) (xy 187.318494 63.120999) (xy 187.317119 63.119354) (xy 187.304948 63.125771) - (xy 187.298236 63.131381) (xy 187.293081 63.132028) (xy 187.263108 63.147832) (xy 187.193496 63.141831) - (xy 187.138179 63.099148) (xy 187.12711 63.080002) (xy 187.126867 63.080123) (xy 187.126418 63.079218) - (xy 187.126312 63.078622) (xy 187.125313 63.076893) (xy 187.12474 63.075611) (xy 187.125704 63.07518) - (xy 187.114957 63.01438) (xy 187.113923 63.014307) (xy 187.113995 63.013294) (xy 187.114497 63.011782) - (xy 187.114256 63.010414) (xy 187.114268 63.010306) (xy 187.114381 63.009297) (xy 187.11529 63.009398) - (xy 187.128969 62.968278) (xy 187.129325 62.964974) (xy 187.13059 62.963404) (xy 187.133373 62.955036) - (xy 187.139574 62.945389) (xy 187.145226 62.937628) (xy 187.23439 62.804185) (xy 187.23439 62.804184) - (xy 187.234394 62.804179) (xy 187.235353 62.801865) (xy 187.278237 62.698331) (xy 187.294737 62.658497) - (xy 187.3255 62.503842) (xy 187.3255 62.346158) (xy 187.3255 62.346155) (xy 187.3255 62.345973) - (xy 187.325065 62.343971) (xy 187.303132 62.233707) (xy 187.29938 62.214846) (xy 187.294737 62.191503) - (xy 187.287901 62.174998) (xy 187.287295 62.173535) (xy 187.287295 62.173534) (xy 187.256629 62.0995) - (xy 187.234397 62.045827) (xy 187.23439 62.045814) (xy 187.146789 61.914711) (xy 187.146786 61.914707) - (xy 187.146781 61.914701) (xy 187.035297 61.803217) (xy 187.035291 61.803212) (xy 187.03529 61.803211) - (xy 186.904191 61.715613) (xy 186.90419 61.715612) (xy 186.904185 61.715609) (xy 186.904172 61.715602) - (xy 186.904165 61.715598) (xy 186.815441 61.678848) (xy 189.219499 61.678848) (xy 189.250257 61.833471) - (xy 189.250264 61.833502) (xy 189.310598 61.979166) (xy 189.310603 61.979176) (xy 189.344133 62.029356) - (xy 189.39821 62.110288) (xy 189.398213 62.110292) (xy 189.398215 62.110294) (xy 189.398217 62.110297) - (xy 189.509701 62.221781) (xy 189.509707 62.221786) (xy 189.509711 62.221789) (xy 189.640814 62.30939) - (xy 189.640827 62.309397) (xy 189.786498 62.369735) (xy 189.786503 62.369737) (xy 189.941153 62.400499) - (xy 189.941156 62.4005) (xy 189.941158 62.4005) (xy 190.098844 62.4005) (xy 190.098845 62.400499) - (xy 190.253497 62.369737) (xy 190.399179 62.309394) (xy 190.530289 62.221789) (xy 190.641789 62.110289) - (xy 190.729394 61.979179) (xy 190.733605 61.969014) (xy 190.769891 61.881409) (xy 190.789737 61.833497) - (xy 190.820499 61.678848) (xy 198.909499 61.678848) (xy 198.940257 61.833471) (xy 198.940264 61.833502) - (xy 199.000598 61.979166) (xy 199.000603 61.979176) (xy 199.034133 62.029356) (xy 199.08821 62.110288) - (xy 199.088213 62.110292) (xy 199.088215 62.110294) (xy 199.088217 62.110297) (xy 199.199701 62.221781) - (xy 199.199707 62.221786) (xy 199.199711 62.221789) (xy 199.330814 62.30939) (xy 199.330827 62.309397) - (xy 199.476498 62.369735) (xy 199.476503 62.369737) (xy 199.631153 62.400499) (xy 199.631156 62.4005) - (xy 199.631158 62.4005) (xy 199.788844 62.4005) (xy 199.788845 62.400499) (xy 199.943497 62.369737) - (xy 200.089179 62.309394) (xy 200.220289 62.221789) (xy 200.331789 62.110289) (xy 200.419394 61.979179) - (xy 200.423605 61.969014) (xy 200.437558 61.935327) (xy 200.479737 61.833497) (xy 200.490145 61.781168) - (xy 200.49284 61.773308) (xy 200.495498 61.76955) (xy 200.500265 61.756041) (xy 200.50751 61.742191) - (xy 200.55602 61.691916) (xy 200.567862 61.685173) (xy 200.605018 61.671314) (xy 200.713497 61.649737) - (xy 200.859179 61.589394) (xy 200.990289 61.501789) (xy 201.030958 61.46112) (xy 201.101788 61.390291) + (xy 200.5695 63.468846) (xy 200.5695 63.468848) (xy 200.569499 63.468848) (xy 196.88681 63.468848) + (xy 196.909737 63.413497) (xy 196.922146 63.35111) (xy 196.936118 63.280875) (xy 196.940075 63.260979) + (xy 196.940499 63.258848) (xy 196.9405 63.258844) (xy 196.9405 63.100971) (xy 196.940064 63.098966) + (xy 196.925069 63.023581) (xy 196.909739 62.94651) (xy 196.909736 62.946501) (xy 196.906294 62.938192) + (xy 196.88706 62.891755) (xy 196.858767 62.823448) (xy 196.849401 62.800836) (xy 196.849393 62.80082) + (xy 196.84939 62.800814) (xy 196.761789 62.669711) (xy 196.761786 62.669707) (xy 196.761781 62.669701) + (xy 196.650297 62.558217) (xy 196.65029 62.558211) (xy 196.650287 62.558209) (xy 196.519191 62.470613) + (xy 196.519186 62.47061) (xy 196.519185 62.470609) (xy 196.519172 62.470602) (xy 196.519165 62.470598) + (xy 196.373502 62.410264) (xy 196.373471 62.410257) (xy 196.218847 62.3795) (xy 196.218845 62.3795) + (xy 196.218842 62.3795) (xy 196.061158 62.3795) (xy 196.061155 62.3795) (xy 196.061153 62.3795) + (xy 195.906527 62.410257) (xy 195.906496 62.410264) (xy 195.760833 62.470598) (xy 195.760824 62.470603) + (xy 195.760807 62.470613) (xy 195.629712 62.558209) (xy 195.629709 62.558211) (xy 195.629701 62.558217) + (xy 195.518217 62.669701) (xy 195.518212 62.669707) (xy 195.518211 62.669708) (xy 195.430613 62.800807) + (xy 195.430606 62.80082) (xy 195.430598 62.800833) (xy 195.370264 62.946496) (xy 195.370257 62.946527) + (xy 195.3395 63.10115) (xy 195.3395 63.258844) (xy 195.339499 63.258848) (xy 190.77414 63.258848) + (xy 190.729394 63.15082) (xy 190.728461 63.149424) (xy 190.641787 63.019708) (xy 190.641786 63.019707) + (xy 190.641781 63.019701) (xy 190.530297 62.908217) (xy 190.530291 62.908212) (xy 190.53029 62.908211) + (xy 190.399191 62.820613) (xy 190.39919 62.820612) (xy 190.399185 62.820609) (xy 190.399172 62.820602) + (xy 190.399165 62.820598) (xy 190.253502 62.760264) (xy 190.253471 62.760257) (xy 190.098847 62.7295) + (xy 190.098845 62.7295) (xy 190.098842 62.7295) (xy 189.941158 62.7295) (xy 189.941155 62.7295) + (xy 189.941153 62.7295) (xy 189.786527 62.760257) (xy 189.786496 62.760264) (xy 189.640833 62.820598) + (xy 189.640824 62.820603) (xy 189.640807 62.820613) (xy 189.509708 62.908211) (xy 189.509707 62.908212) + (xy 189.509701 62.908217) (xy 189.398217 63.019701) (xy 189.398212 63.019707) (xy 189.398211 63.019708) + (xy 189.310621 63.150796) (xy 189.310603 63.150824) (xy 189.310602 63.150827) (xy 189.310599 63.150831) + (xy 189.250264 63.296496) (xy 189.250257 63.296527) (xy 189.2195 63.45115) (xy 188.8255 63.45115) + (xy 188.8255 63.441158) (xy 188.8255 63.441155) (xy 188.825499 63.441153) (xy 188.821446 63.420778) + (xy 188.821446 63.420777) (xy 188.794738 63.286505) (xy 188.792351 63.280743) (xy 188.784165 63.260979) + (xy 188.783282 63.258848) (xy 188.7344 63.140833) (xy 188.734395 63.140824) (xy 188.73439 63.140814) + (xy 188.646789 63.009711) (xy 188.646786 63.009707) (xy 188.646781 63.009701) (xy 188.535297 62.898217) + (xy 188.535291 62.898212) (xy 188.53529 62.898211) (xy 188.404191 62.810613) (xy 188.40419 62.810612) + (xy 188.404185 62.810609) (xy 188.404172 62.810602) (xy 188.404165 62.810598) (xy 188.258502 62.750264) + (xy 188.258471 62.750257) (xy 188.103847 62.7195) (xy 188.103845 62.7195) (xy 188.103842 62.7195) + (xy 187.946158 62.7195) (xy 187.946155 62.7195) (xy 187.946153 62.7195) (xy 187.791527 62.750257) + (xy 187.791496 62.750264) (xy 187.645833 62.810598) (xy 187.645824 62.810603) (xy 187.645807 62.810613) + (xy 187.514708 62.898211) (xy 187.514707 62.898212) (xy 187.514701 62.898217) (xy 187.403217 63.009701) + (xy 187.403212 63.009707) (xy 187.403205 63.009717) (xy 187.351848 63.086577) (xy 187.340737 63.095862) + (xy 187.328268 63.112829) (xy 187.322121 63.117967) (xy 187.322119 63.117969) (xy 187.318494 63.120999) + (xy 187.317119 63.119354) (xy 187.304948 63.125771) (xy 187.298236 63.131381) (xy 187.293081 63.132028) + (xy 187.263108 63.147832) (xy 187.193496 63.141831) (xy 187.138179 63.099148) (xy 187.12711 63.080002) + (xy 187.126867 63.080123) (xy 187.126418 63.079218) (xy 187.126312 63.078622) (xy 187.125313 63.076893) + (xy 187.12474 63.075611) (xy 187.125704 63.07518) (xy 187.114957 63.01438) (xy 187.113923 63.014307) + (xy 187.113995 63.013294) (xy 187.114497 63.011782) (xy 187.114256 63.010414) (xy 187.114268 63.010306) + (xy 187.114381 63.009297) (xy 187.11529 63.009398) (xy 187.128969 62.968278) (xy 187.129325 62.964974) + (xy 187.13059 62.963404) (xy 187.133373 62.955036) (xy 187.139574 62.945389) (xy 187.145234 62.937617) + (xy 187.183932 62.879701) (xy 187.234394 62.804179) (xy 187.235783 62.800827) (xy 187.237555 62.79655) + (xy 187.24529 62.777874) (xy 187.256727 62.750261) (xy 187.294737 62.658497) (xy 187.3255 62.503842) + (xy 187.3255 62.346158) (xy 187.3255 62.346155) (xy 187.3255 62.345971) (xy 187.325064 62.343966) + (xy 187.315324 62.295) (xy 187.294738 62.191507) (xy 187.294735 62.191498) (xy 187.289651 62.179222) + (xy 187.2344 62.045833) (xy 187.234395 62.045824) (xy 187.23439 62.045814) (xy 187.146789 61.914711) + (xy 187.146786 61.914707) (xy 187.146781 61.914701) (xy 187.035297 61.803217) (xy 187.035291 61.803212) + (xy 187.03529 61.803211) (xy 186.904191 61.715613) (xy 186.90419 61.715612) (xy 186.904185 61.715609) + (xy 186.904172 61.715602) (xy 186.904165 61.715598) (xy 186.815441 61.678848) (xy 189.219499 61.678848) + (xy 189.250257 61.833471) (xy 189.250264 61.833502) (xy 189.310598 61.979166) (xy 189.310603 61.979176) + (xy 189.336672 62.01819) (xy 189.39821 62.110288) (xy 189.398213 62.110292) (xy 189.398215 62.110294) + (xy 189.398217 62.110297) (xy 189.509701 62.221781) (xy 189.509707 62.221786) (xy 189.509711 62.221789) + (xy 189.640814 62.30939) (xy 189.640827 62.309397) (xy 189.786498 62.369735) (xy 189.786503 62.369737) + (xy 189.941153 62.400499) (xy 189.941156 62.4005) (xy 189.941158 62.4005) (xy 190.098844 62.4005) + (xy 190.098845 62.400499) (xy 190.253497 62.369737) (xy 190.399179 62.309394) (xy 190.530289 62.221789) + (xy 190.641789 62.110289) (xy 190.729394 61.979179) (xy 190.733605 61.969014) (xy 190.753584 61.920778) + (xy 190.789737 61.833497) (xy 190.820499 61.678848) (xy 198.909499 61.678848) (xy 198.940257 61.833471) + (xy 198.940264 61.833502) (xy 199.000598 61.979166) (xy 199.000603 61.979176) (xy 199.026672 62.01819) + (xy 199.08821 62.110288) (xy 199.088213 62.110292) (xy 199.088215 62.110294) (xy 199.088217 62.110297) + (xy 199.199701 62.221781) (xy 199.199707 62.221786) (xy 199.199711 62.221789) (xy 199.330814 62.30939) + (xy 199.330827 62.309397) (xy 199.476498 62.369735) (xy 199.476503 62.369737) (xy 199.631153 62.400499) + (xy 199.631156 62.4005) (xy 199.631158 62.4005) (xy 199.788844 62.4005) (xy 199.788845 62.400499) + (xy 199.943497 62.369737) (xy 200.089179 62.309394) (xy 200.220289 62.221789) (xy 200.331789 62.110289) + (xy 200.419394 61.979179) (xy 200.423605 61.969014) (xy 200.443584 61.920778) (xy 200.479737 61.833497) + (xy 200.490072 61.781535) (xy 200.4926 61.774015) (xy 200.495274 61.770187) (xy 200.500265 61.756041) + (xy 200.50048 61.755631) (xy 200.50751 61.74219) (xy 200.55602 61.691916) (xy 200.567862 61.685173) + (xy 200.605018 61.671314) (xy 200.713497 61.649737) (xy 200.859179 61.589394) (xy 200.990289 61.501789) (xy 201.101789 61.390289) (xy 201.189394 61.259179) (xy 201.249737 61.113497) (xy 201.2805 60.958842) - (xy 201.2805 60.801158) (xy 201.2805 60.801155) (xy 201.2805 60.801074) (xy 201.28034 60.800357) - (xy 201.276855 60.782832) (xy 201.249737 60.646503) (xy 201.246145 60.63783) (xy 201.223002 60.581958) - (xy 201.1894 60.500833) (xy 201.189395 60.500824) (xy 201.189394 60.500822) (xy 201.18939 60.500814) - (xy 201.101789 60.369711) (xy 201.101786 60.369707) (xy 201.101781 60.369701) (xy 200.990297 60.258217) - (xy 200.990291 60.258212) (xy 200.99029 60.258211) (xy 200.859191 60.170613) (xy 200.85919 60.170612) - (xy 200.859185 60.170609) (xy 200.859172 60.170602) (xy 200.859165 60.170598) (xy 200.713502 60.110264) - (xy 200.713471 60.110257) (xy 200.558847 60.0795) (xy 200.558845 60.0795) (xy 200.558842 60.0795) - (xy 200.401158 60.0795) (xy 200.401155 60.0795) (xy 200.401153 60.0795) (xy 200.246527 60.110257) - (xy 200.246496 60.110264) (xy 200.100833 60.170598) (xy 200.100824 60.170603) (xy 200.100807 60.170613) - (xy 199.969708 60.258211) (xy 199.969707 60.258212) (xy 199.969701 60.258217) (xy 199.858217 60.369701) - (xy 199.858212 60.369707) (xy 199.858211 60.369708) (xy 199.770613 60.500807) (xy 199.770604 60.500822) - (xy 199.770596 60.50084) (xy 199.710266 60.646491) (xy 199.710259 60.646511) (xy 199.701474 60.690677) - (xy 199.691836 60.717994) (xy 199.689732 60.723959) (xy 199.682488 60.737807) (xy 199.633972 60.788086) - (xy 199.622141 60.794823) (xy 199.584974 60.808685) (xy 199.476513 60.830259) (xy 199.476504 60.830262) - (xy 199.476498 60.830264) (xy 199.476493 60.830265) (xy 199.476475 60.830272) (xy 199.330833 60.890598) - (xy 199.330824 60.890603) (xy 199.330807 60.890613) (xy 199.199708 60.978211) (xy 199.199707 60.978212) - (xy 199.199701 60.978217) (xy 199.088217 61.089701) (xy 199.088212 61.089707) (xy 199.088211 61.089708) - (xy 199.000613 61.220807) (xy 199.000603 61.220824) (xy 199.000598 61.220833) (xy 198.940264 61.366496) - (xy 198.940257 61.366527) (xy 198.9095 61.52115) (xy 198.9095 61.521153) (xy 198.9095 61.678846) - (xy 198.9095 61.678848) (xy 198.909499 61.678848) (xy 190.820499 61.678848) (xy 190.8205 61.678842) - (xy 190.8205 61.521158) (xy 190.8205 61.521155) (xy 190.820499 61.521153) (xy 190.812193 61.479397) - (xy 190.812193 61.479395) (xy 190.789739 61.36651) (xy 190.789736 61.366501) (xy 190.788729 61.364071) - (xy 190.75607 61.285222) (xy 190.729397 61.220827) (xy 190.72939 61.220814) (xy 190.641789 61.089711) - (xy 190.641786 61.089707) (xy 190.641781 61.089701) (xy 190.530297 60.978217) (xy 190.530291 60.978212) - (xy 190.53029 60.978211) (xy 190.399191 60.890613) (xy 190.39919 60.890612) (xy 190.399185 60.890609) - (xy 190.399172 60.890602) (xy 190.399165 60.890598) (xy 190.253502 60.830264) (xy 190.253471 60.830257) - (xy 190.098847 60.7995) (xy 190.098845 60.7995) (xy 190.098842 60.7995) (xy 189.941158 60.7995) - (xy 189.941155 60.7995) (xy 189.941153 60.7995) (xy 189.786527 60.830257) (xy 189.786496 60.830264) - (xy 189.640833 60.890598) (xy 189.640824 60.890603) (xy 189.640807 60.890613) (xy 189.509708 60.978211) - (xy 189.509707 60.978212) (xy 189.509701 60.978217) (xy 189.398217 61.089701) (xy 189.398212 61.089707) - (xy 189.398211 61.089708) (xy 189.310613 61.220807) (xy 189.310603 61.220824) (xy 189.310598 61.220833) - (xy 189.250264 61.366496) (xy 189.250257 61.366527) (xy 189.2195 61.52115) (xy 189.2195 61.521153) - (xy 189.2195 61.678846) (xy 189.2195 61.678848) (xy 189.219499 61.678848) (xy 186.815441 61.678848) - (xy 186.758523 61.655272) (xy 186.758509 61.655267) (xy 186.758501 61.655264) (xy 186.758491 61.655261) - (xy 186.75849 61.65526) (xy 186.758485 61.655259) (xy 186.683133 61.640271) (xy 186.683132 61.640271) - (xy 186.665091 61.636682) (xy 186.665069 61.636677) (xy 186.665068 61.636677) (xy 186.603848 61.6245) - (xy 186.603845 61.6245) (xy 186.603842 61.6245) (xy 186.446158 61.6245) (xy 186.446155 61.6245) - (xy 186.446153 61.6245) (xy 186.291527 61.655257) (xy 186.291496 61.655264) (xy 186.145833 61.715598) - (xy 186.145824 61.715603) (xy 186.145807 61.715613) (xy 186.014708 61.803211) (xy 186.014707 61.803212) - (xy 186.014701 61.803217) (xy 185.903217 61.914701) (xy 185.903212 61.914707) (xy 185.903211 61.914708) - (xy 185.815605 62.045819) (xy 185.815604 62.04582) (xy 185.779147 62.133837) (xy 185.779147 62.133839) - (xy 185.761138 62.164192) (xy 185.75243 62.174998) (xy 185.695037 62.214846) (xy 185.625215 62.21734) - (xy 185.620136 62.216044) (xy 185.563122 62.183577) (xy 185.508449 62.128903) (xy 185.508444 62.128899) - (xy 185.508443 62.128898) (xy 185.377344 62.0413) (xy 185.377343 62.041299) (xy 185.377338 62.041296) - (xy 185.377325 62.041289) (xy 185.377318 62.041285) (xy 185.231655 61.980951) (xy 185.231624 61.980944) - (xy 185.077 61.950187) (xy 185.076998 61.950187) (xy 185.076995 61.950187) (xy 184.919311 61.950187) - (xy 184.919308 61.950187) (xy 184.919306 61.950187) (xy 184.76468 61.980944) (xy 184.764649 61.980951) - (xy 184.618986 62.041285) (xy 184.618977 62.04129) (xy 184.61896 62.0413) (xy 184.487861 62.128898) - (xy 184.48786 62.128899) (xy 184.487854 62.128904) (xy 184.37637 62.240388) (xy 184.376365 62.240394) - (xy 184.376364 62.240395) (xy 184.288766 62.371494) (xy 184.288759 62.371507) (xy 184.288751 62.37152) - (xy 184.228417 62.517183) (xy 184.228417 62.517185) (xy 184.228414 62.517197) (xy 184.22393 62.539738) - (xy 184.197653 62.671837) (xy 184.197653 62.67184) (xy 184.197653 62.829533) (xy 184.197653 62.829535) - (xy 184.197652 62.829535) (xy 175.797424 62.829535) (xy 175.8005 62.814071) (xy 175.8005 62.685928) - (xy 175.775502 62.560261) (xy 175.775501 62.56026) (xy 175.775262 62.559055) (xy 175.773176 62.554644) - (xy 175.767004 62.539744) (xy 175.726465 62.441873) (xy 175.726464 62.441872) (xy 175.726463 62.44187) - (xy 175.726463 62.441869) (xy 175.655274 62.335328) (xy 175.655273 62.335327) (xy 175.655268 62.335321) - (xy 175.564677 62.24473) (xy 175.564671 62.244725) (xy 175.56467 62.244724) (xy 175.458127 62.173534) - (xy 175.458128 62.173534) (xy 175.458118 62.173529) (xy 175.339753 62.124502) (xy 175.339733 62.124495) - (xy 175.339725 62.124493) (xy 175.214074 62.0995) (xy 175.214071 62.0995) (xy 175.214069 62.0995) - (xy 175.085931 62.0995) (xy 175.085929 62.0995) (xy 175.085926 62.0995) (xy 174.960273 62.124493) - (xy 174.960265 62.124495) (xy 174.960245 62.124502) (xy 174.84188 62.173529) (xy 174.84187 62.173534) - (xy 174.735328 62.244724) (xy 174.735327 62.244725) (xy 174.735321 62.24473) (xy 174.64473 62.335321) - (xy 174.644725 62.335327) (xy 174.644724 62.335328) (xy 174.573534 62.44187) (xy 174.573529 62.44188) - (xy 174.524502 62.560245) (xy 174.524495 62.560265) (xy 174.524493 62.560273) (xy 174.4995 62.685923) - (xy 174.4995 62.769702) (xy 174.494237 62.787622) (xy 164.204041 62.787622) (xy 164.197035 62.782941) - (xy 164.197033 62.782939) (xy 164.108127 62.723534) (xy 164.108128 62.723534) (xy 164.108118 62.723529) - (xy 163.989753 62.674502) (xy 163.989733 62.674495) (xy 163.989725 62.674493) (xy 163.864074 62.6495) - (xy 163.864071 62.6495) (xy 163.864069 62.6495) (xy 163.735931 62.6495) (xy 163.735929 62.6495) - (xy 163.735926 62.6495) (xy 163.610273 62.674493) (xy 163.610265 62.674495) (xy 163.610245 62.674502) - (xy 163.49188 62.723529) (xy 163.49187 62.723534) (xy 163.385328 62.794724) (xy 163.385327 62.794725) - (xy 163.385321 62.79473) (xy 163.29473 62.885321) (xy 163.294725 62.885327) (xy 163.294724 62.885328) - (xy 163.223534 62.99187) (xy 163.223529 62.99188) (xy 163.174502 63.110245) (xy 163.174495 63.110265) - (xy 163.174493 63.110273) (xy 163.1495 63.235923) (xy 163.1495 63.319703) (xy 163.144237 63.337623) - (xy 143.75757 63.337623) (xy 143.714677 63.29473) (xy 143.714671 63.294725) (xy 143.71467 63.294724) - (xy 143.608127 63.223534) (xy 143.608128 63.223534) (xy 143.608118 63.223529) (xy 143.489753 63.174502) - (xy 143.489733 63.174495) (xy 143.489725 63.174493) (xy 143.364074 63.1495) (xy 143.364071 63.1495) - (xy 143.364069 63.1495) (xy 143.235931 63.1495) (xy 143.235929 63.1495) (xy 143.235926 63.1495) - (xy 143.110273 63.174493) (xy 143.110265 63.174495) (xy 143.110245 63.174502) (xy 142.99188 63.223529) - (xy 142.99187 63.223534) (xy 142.885328 63.294724) (xy 142.885327 63.294725) (xy 142.885321 63.29473) - (xy 142.79473 63.385321) (xy 142.794725 63.385327) (xy 142.794724 63.385328) (xy 142.723534 63.49187) - (xy 142.723529 63.49188) (xy 142.674502 63.610245) (xy 142.674495 63.610265) (xy 142.674493 63.610273) - (xy 142.6495 63.735923) (xy 142.6495 63.819702) (xy 142.644237 63.837622) (xy 121.853823 63.837622) - (xy 121.978451 63.712994) (xy 121.978451 63.712993) (xy 121.90902 63.659719) (xy 121.909013 63.659714) - (xy 121.900111 63.654574) (xy 121.713477 63.546821) (xy 121.713427 63.546797) (xy 121.712789 63.546537) - (xy 121.504866 63.460412) (xy 121.395814 63.431192) (xy 121.28676 63.401971) (xy 121.286754 63.40197) - (xy 121.286749 63.401969) (xy 121.062901 63.3725) (xy 121.0629 63.3725) (xy 120.8371 63.3725) (xy 120.837099 63.3725) - (xy 120.613249 63.401969) (xy 120.613242 63.40197) (xy 120.613239 63.401971) (xy 120.583614 63.409909) - (xy 120.395132 63.460412) (xy 120.187209 63.546537) (xy 120.186579 63.546793) (xy 120.186521 63.546821) - (xy 119.990977 63.659718) (xy 119.906364 63.724644) (xy 119.906363 63.724645) (xy 119.875589 63.741927) - (xy 119.86504 63.746005) (xy 119.795412 63.751817) (xy 119.733696 63.719063) (xy 119.699486 63.658147) - (xy 119.698664 63.654574) (xy 119.699732 63.594679) (xy 119.700164 63.593066) (xy 119.743409 63.431677) - (xy 119.7755 63.187927) (xy 119.7755 62.942073) (xy 119.743409 62.698323) (xy 119.679778 62.460847) - (xy 119.672639 62.443613) (xy 119.642775 62.371514) (xy 119.61097 62.29473) (xy 119.585698 62.233716) - (xy 119.585693 62.233707) (xy 119.484833 62.059013) (xy 119.472684 62.029983) (xy 119.464518 62.000368) - (xy 119.460072 61.969218) (xy 119.440402 60.614405) (xy 123.050499 60.614405) (xy 123.07906 60.794726) - (xy 123.080035 60.800884) (xy 123.138381 60.980452) (xy 123.138382 60.980453) (xy 123.138383 60.980458) - (xy 123.204522 61.110259) (xy 123.204522 61.110261) (xy 123.204523 61.110261) (xy 123.224096 61.148675) - (xy 123.335073 61.301422) (xy 123.468578 61.434927) (xy 123.621325 61.545904) (xy 123.688792 61.58028) - (xy 123.743444 61.608127) (xy 123.7831 61.628333) (xy 123.784696 61.629268) (xy 123.788394 61.631059) - (xy 123.790409 61.63206) (xy 123.794177 61.633123) (xy 123.816177 61.640271) (xy 123.862316 61.655262) - (xy 123.862317 61.655263) (xy 123.897917 61.66683) (xy 123.969115 61.689964) (xy 124.029323 61.6995) - (xy 124.155597 61.7195) (xy 124.155598 61.7195) (xy 124.344402 61.7195) (xy 124.344403 61.7195) - (xy 124.530884 61.689964) (xy 124.710448 61.63162) (xy 124.878675 61.545904) (xy 125.031422 61.434927) - (xy 125.164927 61.301422) (xy 125.275904 61.148675) (xy 125.36162 60.980448) (xy 125.419964 60.800884) - (xy 125.4495 60.614403) (xy 125.4495 60.425597) (xy 125.4495 60.425592) (xy 125.431991 60.315049) - (xy 125.431008 60.308842) (xy 125.419964 60.239115) (xy 125.378094 60.110255) (xy 125.363115 60.064153) - (xy 125.362061 60.060417) (xy 125.358337 60.053106) (xy 125.358333 60.0531) (xy 125.350553 60.037832) - (xy 125.305917 59.950229) (xy 125.275904 59.891325) (xy 125.164927 59.738578) (xy 125.031422 59.605073) - (xy 124.878675 59.494096) (xy 124.857881 59.483501) (xy 124.710452 59.408381) (xy 124.632651 59.383102) - (xy 124.602915 59.37344) (xy 124.588429 59.363648) (xy 124.572348 59.358614) (xy 124.571247 59.35787) - (xy 124.56191 59.351486) (xy 124.551373 59.338601) (xy 124.54609 59.33503) (xy 124.538847 59.326364) - (xy 124.535979 59.319776) (xy 124.517679 59.297398) (xy 124.514614 59.270702) (xy 124.510958 59.262302) - (xy 124.512534 59.252573) (xy 124.509712 59.227985) (xy 124.519863 59.207335) (xy 124.522132 59.193331) - (xy 124.532327 59.181979) (xy 124.540531 59.165291) (xy 124.542631 59.163002) (xy 124.558575 59.152755) - (xy 124.56882 59.14135) (xy 124.58191 59.137758) (xy 124.595673 59.128912) (xy 124.620201 59.120943) - (xy 124.710448 59.09162) (xy 124.878675 59.005904) (xy 125.031422 58.894927) (xy 125.164927 58.761422) - (xy 125.275904 58.608675) (xy 125.358471 58.446626) (xy 125.361618 58.440452) (xy 125.361618 58.440451) - (xy 125.36162 58.440448) (xy 125.361622 58.440441) (xy 125.36206 58.439582) (xy 125.363112 58.435855) - (xy 125.419964 58.260884) (xy 125.4495 58.074403) (xy 125.4495 57.885597) (xy 125.446695 57.867885) - (xy 125.419964 57.699115) (xy 125.387091 57.597943) (xy 125.385025 57.591585) (xy 125.364231 57.527587) - (xy 125.364229 57.527583) (xy 125.36162 57.519552) (xy 125.361618 57.519549) (xy 125.361618 57.519547) - (xy 125.359372 57.51514) (xy 125.359063 57.514347) (xy 125.358337 57.513106) (xy 125.304022 57.406509) - (xy 125.304021 57.406508) (xy 125.296972 57.392674) (xy 125.275904 57.351325) (xy 125.164927 57.198578) - (xy 125.031422 57.065073) (xy 124.878675 56.954096) (xy 124.849183 56.939069) (xy 124.710452 56.868381) - (xy 124.621553 56.839496) (xy 124.602915 56.83344) (xy 124.588429 56.823648) (xy 124.572348 56.818614) - (xy 124.571247 56.81787) (xy 124.56191 56.811486) (xy 124.551373 56.798601) (xy 124.54609 56.79503) - (xy 124.538847 56.786364) (xy 124.535979 56.779776) (xy 124.517679 56.757398) (xy 124.514614 56.730702) - (xy 124.510958 56.722302) (xy 124.512534 56.712573) (xy 124.509712 56.687985) (xy 124.519863 56.667335) - (xy 124.522132 56.653331) (xy 124.532327 56.641979) (xy 124.540531 56.625291) (xy 124.542631 56.623002) - (xy 124.558575 56.612755) (xy 124.56882 56.60135) (xy 124.58191 56.597758) (xy 124.595673 56.588912) - (xy 124.620558 56.580827) (xy 124.710448 56.55162) (xy 124.878675 56.465904) (xy 125.031422 56.354927) - (xy 125.164927 56.221422) (xy 125.275904 56.068675) (xy 125.36162 55.900448) (xy 125.419964 55.720884) - (xy 125.4495 55.534403) (xy 125.4495 55.345597) (xy 125.448709 55.340602) (xy 125.446708 55.32797) - (xy 125.446708 55.327969) (xy 125.43512 55.254808) (xy 125.419964 55.159115) (xy 125.385454 55.052906) - (xy 125.37514 55.021162) (xy 125.375136 55.021151) (xy 125.363121 54.984173) (xy 125.36206 54.980408) - (xy 125.361063 54.978403) (xy 125.359268 54.974698) (xy 125.358335 54.973103) (xy 125.297653 54.85401) - (xy 125.275904 54.811325) (xy 125.164927 54.658578) (xy 125.031422 54.525073) (xy 124.878675 54.414096) - (xy 124.850492 54.399736) (xy 124.737329 54.342076) (xy 124.726496 54.331845) (xy 124.708485 54.321743) - (xy 124.700715 54.314405) (xy 124.691727 54.299006) (xy 124.686533 54.294101) (xy 124.681888 54.28536) - (xy 124.677994 54.277268) (xy 124.677585 54.27478) (xy 124.665493 54.254066) (xy 124.667288 54.212137) - (xy 124.666662 54.208323) (xy 124.667539 54.206295) (xy 124.668483 54.184261) (xy 124.690715 54.15272) - (xy 124.694403 54.144197) (xy 124.698809 54.141238) (xy 124.708738 54.127153) (xy 124.743987 54.110903) - (xy 124.75241 54.105248) (xy 124.75643 54.105167) (xy 124.762106 54.102551) (xy 124.76598 54.101795) - (xy 124.78973 54.099499) (xy 124.996871 54.099499) (xy 124.996872 54.099499) (xy 125.056483 54.093091) - (xy 125.191331 54.042796) (xy 125.306546 53.956546) (xy 125.379864 53.858604) (xy 125.392924 53.848828) - (xy 125.404816 53.833653) (xy 125.413594 53.827082) (xy 125.430295 53.820852) (xy 125.435797 53.816735) - (xy 125.440972 53.814934) (xy 125.449849 53.812063) (xy 125.454178 53.811945) (xy 125.479054 53.802667) - (xy 125.514201 53.810312) (xy 125.519693 53.810163) (xy 125.523162 53.812261) (xy 125.547327 53.817518) - (xy 125.571015 53.841205) (xy 125.579477 53.846324) (xy 125.582688 53.852879) (xy 125.596733 53.866923) - (xy 125.605566 53.899571) (xy 125.610219 53.909067) (xy 125.609593 53.914454) (xy 125.61185 53.922795) - (xy 125.611956 53.92649) (xy 125.61048 53.949444) (xy 125.5905 54.075591) (xy 125.5905 54.264406) - (xy 125.617387 54.434165) (xy 125.620035 54.450884) (xy 125.678381 54.630452) (xy 125.678382 54.630453) - (xy 125.678383 54.630458) (xy 125.746626 54.764388) (xy 125.746626 54.76439) (xy 125.746627 54.76439) - (xy 125.764096 54.798675) (xy 125.875073 54.951422) (xy 126.008578 55.084927) (xy 126.161325 55.195904) - (xy 126.224978 55.228337) (xy 126.329547 55.281618) (xy 126.330416 55.282061) (xy 126.334156 55.283116) - (xy 126.350022 55.288271) (xy 126.437083 55.316559) (xy 126.45157 55.326352) (xy 126.467658 55.33139) - (xy 126.468758 55.332133) (xy 126.478094 55.338517) (xy 126.48863 55.351402) (xy 126.493915 55.354975) - (xy 126.501157 55.363641) (xy 126.504024 55.37023) (xy 126.522321 55.392606) (xy 126.525384 55.419304) - (xy 126.529041 55.427706) (xy 126.527464 55.437434) (xy 126.530285 55.462021) (xy 126.520132 55.482671) - (xy 126.517863 55.496676) (xy 126.507668 55.508024) (xy 126.499465 55.524711) (xy 126.497371 55.526993) - (xy 126.481417 55.537247) (xy 126.471171 55.548653) (xy 126.458087 55.552241) (xy 126.444326 55.561087) - (xy 126.403341 55.574404) (xy 126.329547 55.598381) (xy 126.27097 55.628228) (xy 126.161323 55.684096) - (xy 126.073687 55.747768) (xy 126.008575 55.795075) (xy 126.008572 55.795077) (xy 125.875077 55.928572) - (xy 125.875077 55.928573) (xy 125.875075 55.928575) (xy 125.83893 55.978324) (xy 125.764096 56.081323) - (xy 125.732905 56.142539) (xy 125.678381 56.249547) (xy 125.620035 56.429115) (xy 125.620035 56.429117) - (xy 125.620034 56.42912) (xy 125.5905 56.615592) (xy 125.5905 56.804406) (xy 125.618353 56.980264) - (xy 125.620035 56.990884) (xy 125.678381 57.170452) (xy 125.739713 57.290821) (xy 125.764096 57.338675) - (xy 125.875073 57.491422) (xy 126.008578 57.624927) (xy 126.161325 57.735904) (xy 126.240804 57.7764) - (xy 126.323095 57.81833) (xy 126.323096 57.818331) (xy 126.324702 57.819271) (xy 126.32843 57.821077) - (xy 126.330406 57.822058) (xy 126.334165 57.823119) (xy 126.373007 57.835739) (xy 126.373008 57.83574) - (xy 126.391573 57.841772) (xy 126.437083 57.856559) (xy 126.45157 57.866352) (xy 126.467658 57.87139) - (xy 126.468742 57.872122) (xy 126.470757 57.8735) (xy 126.478094 57.878517) (xy 126.48863 57.891402) - (xy 126.493915 57.894975) (xy 126.501157 57.903641) (xy 126.504024 57.91023) (xy 126.522321 57.932606) - (xy 126.525384 57.959304) (xy 126.529041 57.967706) (xy 126.527464 57.977434) (xy 126.530285 58.002021) - (xy 126.520132 58.022671) (xy 126.517863 58.036676) (xy 126.507668 58.048024) (xy 126.499465 58.064711) - (xy 126.497371 58.066993) (xy 126.481417 58.077247) (xy 126.471171 58.088653) (xy 126.458087 58.092241) - (xy 126.444326 58.101087) (xy 126.419385 58.109191) (xy 126.329547 58.138381) (xy 126.274308 58.166527) - (xy 126.161323 58.224096) (xy 126.109447 58.261787) (xy 126.008575 58.335075) (xy 126.008573 58.335077) - (xy 126.008572 58.335077) (xy 125.875077 58.468572) (xy 125.875077 58.468573) (xy 125.875075 58.468575) - (xy 125.832954 58.526549) (xy 125.764096 58.621323) (xy 125.727883 58.692395) (xy 125.678381 58.789547) - (xy 125.620266 58.968406) (xy 125.620035 58.969116) (xy 125.593021 59.139669) (xy 125.593022 59.13967) - (xy 125.5905 59.155596) (xy 125.5905 59.344406) (xy 125.591391 59.350034) (xy 125.618407 59.520603) - (xy 125.620035 59.530884) (xy 125.678381 59.710452) (xy 125.703779 59.760297) (xy 125.749904 59.850823) - (xy 125.764094 59.878673) (xy 125.789334 59.913412) (xy 125.875073 60.031422) (xy 126.008578 60.164927) - (xy 126.161325 60.275904) (xy 126.329552 60.36162) (xy 126.437895 60.396823) (xy 126.452385 60.406619) - (xy 126.468491 60.411667) (xy 126.469463 60.412324) (xy 126.478905 60.41878) (xy 126.489455 60.431683) - (xy 126.494742 60.435258) (xy 126.501981 60.443924) (xy 126.504843 60.450504) (xy 126.523131 60.472871) - (xy 126.526195 60.499588) (xy 126.529852 60.507994) (xy 126.528274 60.517714) (xy 126.531093 60.542286) - (xy 126.520933 60.562949) (xy 126.51866 60.576961) (xy 126.50847 60.588299) (xy 126.500272 60.604975) - (xy 126.498177 60.607258) (xy 126.482211 60.617519) (xy 126.471958 60.628929) (xy 126.458884 60.632512) - (xy 126.445134 60.64135) (xy 126.329734 60.678845) (xy 126.161579 60.764526) (xy 126.136386 60.782831) - (xy 126.136386 60.782832) (xy 126.574113 61.220559) (xy 126.607598 61.281882) (xy 126.602614 61.351574) - (xy 126.560742 61.407507) (xy 126.548433 61.415627) (xy 126.516764 61.433911) (xy 126.516761 61.433913) - (xy 126.433913 61.516761) (xy 126.433911 61.516764) (xy 126.415627 61.548433) (xy 126.365059 61.596648) - (xy 126.296452 61.60987) (xy 126.231587 61.583902) (xy 126.220559 61.574113) (xy 125.782832 61.136386) - (xy 125.782831 61.136386) (xy 125.764526 61.161579) (xy 125.678845 61.329738) (xy 125.620521 61.509239) - (xy 125.591 61.695625) (xy 125.591 61.884373) (xy 125.61933 62.063238) (xy 125.620522 62.070763) - (xy 125.678844 62.250258) (xy 125.764523 62.418413) (xy 125.782832 62.443612) (xy 125.782833 62.443613) - (xy 126.220561 62.005883) (xy 126.281881 61.972401) (xy 126.351572 61.977385) (xy 126.407506 62.019256) - (xy 126.415625 62.031565) (xy 126.423859 62.045826) (xy 126.433911 62.063236) (xy 126.516764 62.146089) - (xy 126.547853 62.164038) (xy 126.548431 62.164372) (xy 126.596647 62.214939) (xy 126.60987 62.283546) - (xy 126.583901 62.348411) (xy 126.574112 62.35944) (xy 126.136385 62.797165) (xy 126.136386 62.797165) - (xy 126.136386 62.797166) (xy 126.161586 62.815476) (xy 126.329741 62.901155) (xy 126.509236 62.959477) - (xy 126.695632 62.989) (xy 126.884367 62.989) (xy 126.884368 62.989) (xy 127.070763 62.959477) (xy 127.250258 62.901155) - (xy 127.374948 62.837622) (xy 134.344237 62.837622) (xy 134.374494 62.989726) (xy 134.374495 62.989732) - (xy 134.374502 62.989753) (xy 134.423529 63.108118) (xy 134.423534 63.108128) (xy 134.494724 63.21467) - (xy 134.494725 63.214671) (xy 134.49473 63.214677) (xy 134.585321 63.305268) (xy 134.585327 63.305273) - (xy 134.585331 63.305276) (xy 134.691866 63.376461) (xy 134.691872 63.376464) (xy 134.691873 63.376465) - (xy 134.805362 63.423473) (xy 134.805947 63.423724) (xy 134.806141 63.423884) (xy 134.809053 63.425261) - (xy 134.810252 63.425499) (xy 134.810256 63.425501) (xy 134.810259 63.425501) (xy 134.81026 63.425501) - (xy 134.810261 63.425502) (xy 134.899105 63.443175) (xy 134.935927 63.4505) (xy 135.064071 63.4505) - (xy 135.064072 63.4505) (xy 135.111406 63.441084) (xy 135.158741 63.431668) (xy 135.158742 63.431668) - (xy 135.169168 63.429593) (xy 135.189744 63.425501) (xy 135.308127 63.376465) (xy 135.414669 63.305276) - (xy 135.505276 63.214669) (xy 135.550316 63.14726) (xy 135.573892 63.121014) (xy 135.584547 63.112109) - (xy 135.648607 63.084226) (xy 135.717574 63.095401) (xy 135.721565 63.097311) (xy 135.72232 63.097672) - (xy 135.771888 63.14063) (xy 135.834724 63.234671) (xy 135.925321 63.325268) (xy 135.925327 63.325273) - (xy 135.925328 63.325274) (xy 136.031869 63.396463) (xy 136.031871 63.396463) (xy 136.031875 63.396466) - (xy 136.058691 63.407573) (xy 136.058691 63.407574) (xy 136.144641 63.443175) (xy 136.149054 63.445262) - (xy 136.275926 63.4705) (xy 136.404071 63.4705) (xy 136.404072 63.4705) (xy 136.456494 63.460072) - (xy 136.504613 63.4505) (xy 136.529744 63.445501) (xy 136.648127 63.396465) (xy 136.754669 63.325276) - (xy 136.845276 63.234669) (xy 136.916465 63.128127) (xy 136.965501 63.009744) (xy 136.978962 62.942073) - (xy 136.979425 62.939746) (xy 136.979425 62.939743) (xy 136.979429 62.939726) (xy 136.9905 62.884071) - (xy 136.9905 62.755928) (xy 136.9905 62.755925) (xy 136.965262 62.629055) (xy 136.963176 62.624644) - (xy 136.957223 62.610273) (xy 136.91867 62.517197) (xy 136.916466 62.511875) (xy 136.916461 62.511866) - (xy 136.911101 62.503844) (xy 136.874878 62.449633) (xy 136.845274 62.405328) (xy 136.845273 62.405327) - (xy 136.845268 62.405321) (xy 136.827569 62.387622) (xy 152.344237 62.387622) (xy 152.374494 62.539726) - (xy 152.374495 62.539732) (xy 152.374502 62.539753) (xy 152.423529 62.658118) (xy 152.423534 62.658128) - (xy 152.494724 62.76467) (xy 152.494725 62.764671) (xy 152.49473 62.764677) (xy 152.585321 62.855268) - (xy 152.585327 62.855273) (xy 152.585331 62.855276) (xy 152.691866 62.926461) (xy 152.691872 62.926464) - (xy 152.691873 62.926465) (xy 152.805362 62.973473) (xy 152.805947 62.973724) (xy 152.806141 62.973884) - (xy 152.809055 62.975262) (xy 152.81026 62.975501) (xy 152.810261 62.975502) (xy 152.834417 62.980307) - (xy 152.935926 63.0005) (xy 153.064071 63.0005) (xy 153.064072 63.0005) (xy 153.118172 62.989738) - (xy 153.158756 62.981665) (xy 153.189744 62.975501) (xy 153.308127 62.926465) (xy 153.414669 62.855276) - (xy 153.424722 62.845222) (xy 153.452959 62.824084) (xy 153.466689 62.816587) (xy 153.534947 62.801737) - (xy 153.536762 62.801866) (xy 153.59496 62.821237) (xy 153.60147 62.825421) (xy 153.622108 62.842053) - (xy 153.635333 62.855278) (xy 153.735548 62.92224) (xy 153.73555 62.922241) (xy 153.741866 62.926461) - (xy 153.741872 62.926464) (xy 153.741873 62.926465) (xy 153.855297 62.973447) (xy 153.855945 62.973724) - (xy 153.856136 62.973882) (xy 153.859055 62.975262) (xy 153.86026 62.975501) (xy 153.860261 62.975502) - (xy 153.884417 62.980307) (xy 153.985926 63.0005) (xy 154.114071 63.0005) (xy 154.114072 63.0005) - (xy 154.168172 62.989738) (xy 154.208756 62.981665) (xy 154.239744 62.975501) (xy 154.358127 62.926465) - (xy 154.464669 62.855276) (xy 154.555276 62.764669) (xy 154.626465 62.658127) (xy 154.675501 62.539744) - (xy 154.682642 62.503844) (xy 154.694623 62.443615) (xy 154.694623 62.443612) (xy 154.694971 62.441866) - (xy 154.7005 62.414071) (xy 154.7005 62.285928) (xy 154.7005 62.285925) (xy 154.675262 62.159055) - (xy 154.673176 62.154644) (xy 154.671045 62.1495) (xy 154.6281 62.045821) (xy 154.628097 62.045814) - (xy 154.628094 62.045805) (xy 154.626469 62.041882) (xy 154.626464 62.041871) (xy 154.626463 62.041869) - (xy 154.598738 62.000376) (xy 154.555276 61.935331) (xy 154.555273 61.935327) (xy 154.555271 61.935324) - (xy 154.464677 61.84473) (xy 154.464671 61.844725) (xy 154.46467 61.844724) (xy 154.358127 61.773534) - (xy 154.358128 61.773534) (xy 154.358118 61.773529) (xy 154.239753 61.724502) (xy 154.239733 61.724495) - (xy 154.239725 61.724493) (xy 154.114074 61.6995) (xy 154.114071 61.6995) (xy 154.114069 61.6995) - (xy 153.985931 61.6995) (xy 153.985929 61.6995) (xy 153.985926 61.6995) (xy 153.860273 61.724493) - (xy 153.860265 61.724495) (xy 153.860245 61.724502) (xy 153.74188 61.773529) (xy 153.74187 61.773534) - (xy 153.635335 61.84472) (xy 153.635326 61.844726) (xy 153.635318 61.844733) (xy 153.625285 61.854767) - (xy 153.625282 61.854768) (xy 153.625282 61.85477) (xy 153.597027 61.87592) (xy 153.583309 61.88341) - (xy 153.515051 61.898261) (xy 153.515036 61.898259) (xy 153.515036 61.89826) (xy 153.515035 61.898259) - (xy 153.513245 61.898132) (xy 153.455035 61.878759) (xy 153.451467 61.876466) (xy 153.44853 61.874578) - (xy 153.427894 61.857947) (xy 153.414677 61.84473) (xy 153.414671 61.844725) (xy 153.41467 61.844724) - (xy 153.308127 61.773534) (xy 153.308128 61.773534) (xy 153.308118 61.773529) (xy 153.189753 61.724502) - (xy 153.189733 61.724495) (xy 153.189725 61.724493) (xy 153.064074 61.6995) (xy 153.064071 61.6995) - (xy 153.064069 61.6995) (xy 152.935931 61.6995) (xy 152.935929 61.6995) (xy 152.935926 61.6995) - (xy 152.810273 61.724493) (xy 152.810265 61.724495) (xy 152.810245 61.724502) (xy 152.69188 61.773529) - (xy 152.69187 61.773534) (xy 152.585328 61.844724) (xy 152.585327 61.844725) (xy 152.585321 61.84473) - (xy 152.49473 61.935321) (xy 152.494728 61.935324) (xy 152.494726 61.935327) (xy 152.494723 61.935331) - (xy 152.484587 61.9505) (xy 152.423534 62.04187) (xy 152.423529 62.04188) (xy 152.374502 62.160245) - (xy 152.374495 62.160265) (xy 152.374493 62.160273) (xy 152.3495 62.285923) (xy 152.3495 62.369702) - (xy 152.344237 62.387622) (xy 136.827569 62.387622) (xy 136.754677 62.31473) (xy 136.754671 62.314725) - (xy 136.75467 62.314724) (xy 136.648127 62.243534) (xy 136.648128 62.243534) (xy 136.648118 62.243529) - (xy 136.529753 62.194502) (xy 136.529733 62.194495) (xy 136.529725 62.194493) (xy 136.404074 62.1695) - (xy 136.404071 62.1695) (xy 136.404069 62.1695) (xy 136.275931 62.1695) (xy 136.275929 62.1695) - (xy 136.275926 62.1695) (xy 136.150273 62.194493) (xy 136.150265 62.194495) (xy 136.150245 62.194502) - (xy 136.03188 62.243529) (xy 136.03187 62.243534) (xy 135.925328 62.314724) (xy 135.925327 62.314725) - (xy 135.925321 62.31473) (xy 135.834728 62.405323) (xy 135.834725 62.405327) (xy 135.789688 62.47273) - (xy 135.789686 62.472731) (xy 135.789686 62.472733) (xy 135.770544 62.494042) (xy 135.7661 62.498989) - (xy 135.755451 62.507888) (xy 135.691386 62.535772) (xy 135.622432 62.524601) (xy 135.620656 62.523751) - (xy 135.617705 62.52234) (xy 135.568111 62.47937) (xy 135.505279 62.385335) (xy 135.505273 62.385327) - (xy 135.505272 62.385325) (xy 135.414677 62.29473) (xy 135.414671 62.294725) (xy 135.41467 62.294724) - (xy 135.308127 62.223534) (xy 135.308128 62.223534) (xy 135.308118 62.223529) (xy 135.189753 62.174502) - (xy 135.189733 62.174495) (xy 135.189725 62.174493) (xy 135.064074 62.1495) (xy 135.064071 62.1495) - (xy 135.064069 62.1495) (xy 134.935931 62.1495) (xy 134.935929 62.1495) (xy 134.935926 62.1495) - (xy 134.810273 62.174493) (xy 134.810265 62.174495) (xy 134.810245 62.174502) (xy 134.69188 62.223529) - (xy 134.69187 62.223534) (xy 134.585328 62.294724) (xy 134.585327 62.294725) (xy 134.585321 62.29473) - (xy 134.49473 62.385321) (xy 134.494725 62.385327) (xy 134.494724 62.385328) (xy 134.423534 62.49187) - (xy 134.423529 62.49188) (xy 134.374502 62.610245) (xy 134.374495 62.610265) (xy 134.374493 62.610273) - (xy 134.3495 62.735923) (xy 134.3495 62.819702) (xy 134.344237 62.837622) (xy 127.374948 62.837622) - (xy 127.418408 62.815478) (xy 127.418414 62.815475) (xy 127.443612 62.797166) (xy 127.434602 62.788156) - (xy 127.434603 62.788156) (xy 127.005887 62.35944) (xy 126.972402 62.298117) (xy 126.977386 62.228425) - (xy 127.019258 62.172492) (xy 127.031557 62.164378) (xy 127.063236 62.146089) (xy 127.146089 62.063236) - (xy 127.164373 62.031566) (xy 127.214937 61.983353) (xy 127.283543 61.970128) (xy 127.348409 61.996095) - (xy 127.35944 62.005886) (xy 127.797165 62.443612) (xy 127.797165 62.443611) (xy 127.797166 62.443612) - (xy 127.815475 62.418414) (xy 127.815478 62.418408) (xy 127.901155 62.250258) (xy 127.959477 62.070763) - (xy 127.989 61.884368) (xy 127.989 61.695631) (xy 127.959477 61.509236) (xy 127.901155 61.329741) - (xy 127.815476 61.161586) (xy 127.797166 61.136386) (xy 127.797165 61.136386) (xy 127.359439 61.574112) - (xy 127.298116 61.607597) (xy 127.228424 61.602613) (xy 127.172491 61.560741) (xy 127.164373 61.548433) - (xy 127.146089 61.516764) (xy 127.063236 61.433911) (xy 127.031566 61.415626) (xy 126.983351 61.36506) - (xy 126.970128 61.296453) (xy 126.996096 61.231588) (xy 127.005878 61.220567) (xy 127.443613 60.782833) - (xy 127.443612 60.782832) (xy 127.418413 60.764523) (xy 127.395435 60.752815) (xy 127.250266 60.678846) - (xy 127.142105 60.643702) (xy 127.127624 60.633915) (xy 127.11155 60.628885) (xy 127.110437 60.628132) - (xy 127.1011 60.621748) (xy 127.090571 60.608873) (xy 127.08529 60.605304) (xy 127.078046 60.596639) - (xy 127.075174 60.590044) (xy 127.056869 60.56766) (xy 127.053806 60.540978) (xy 127.050149 60.53258) - (xy 127.051725 60.522843) (xy 127.048902 60.498247) (xy 127.059047 60.477607) (xy 127.061314 60.463608) - (xy 127.071512 60.45225) (xy 127.079718 60.435556) (xy 127.081819 60.433267) (xy 127.097756 60.423024) - (xy 127.107996 60.411621) (xy 127.121092 60.408025) (xy 127.13486 60.399176) (xy 127.250448 60.36162) - (xy 127.418675 60.275904) (xy 127.571422 60.164927) (xy 127.704927 60.031422) (xy 127.815904 59.878675) - (xy 127.90162 59.710448) (xy 127.959964 59.530884) (xy 127.9895 59.344403) (xy 127.9895 59.155597) - (xy 127.989386 59.15488) (xy 127.988379 59.148517) (xy 127.986978 59.139672) (xy 127.959964 58.969115) - (xy 127.901618 58.789547) (xy 127.84194 58.672424) (xy 127.815904 58.621325) (xy 127.704927 58.468578) - (xy 127.571422 58.335073) (xy 127.418675 58.224096) (xy 127.406901 58.218097) (xy 127.250452 58.138381) - (xy 127.160614 58.109191) (xy 127.142915 58.10344) (xy 127.128429 58.093648) (xy 127.112348 58.088614) - (xy 127.111247 58.08787) (xy 127.10191 58.081486) (xy 127.091373 58.068601) (xy 127.08609 58.06503) - (xy 127.078847 58.056364) (xy 127.075979 58.049776) (xy 127.057679 58.027398) (xy 127.054614 58.000702) - (xy 127.050958 57.992302) (xy 127.052534 57.982573) (xy 127.049712 57.957985) (xy 127.059863 57.937335) - (xy 127.062132 57.923331) (xy 127.072327 57.911979) (xy 127.080531 57.895291) (xy 127.082631 57.893002) - (xy 127.098501 57.882838) (xy 127.10882 57.87135) (xy 127.122146 57.867693) (xy 127.135909 57.858878) - (xy 127.135897 57.85884) (xy 127.228203 57.828848) (xy 131.674499 57.828848) (xy 131.705257 57.983471) - (xy 131.705264 57.983502) (xy 131.765598 58.129165) (xy 131.765603 58.129174) (xy 131.765606 58.12918) - (xy 131.765613 58.129191) (xy 131.853211 58.26029) (xy 131.853212 58.260291) (xy 131.853217 58.260297) - (xy 131.964701 58.371781) (xy 131.964707 58.371786) (xy 131.964711 58.371789) (xy 132.095814 58.45939) - (xy 132.095827 58.459397) (xy 132.19506 58.5005) (xy 132.241503 58.519737) (xy 132.347484 58.540818) - (xy 132.388532 58.548983) (xy 132.391254 58.549704) (xy 132.396155 58.5505) (xy 132.553844 58.5505) - (xy 132.557964 58.5505) (xy 132.565814 58.548118) (xy 132.708497 58.519737) (xy 132.83614 58.466866) - (xy 132.854172 58.459397) (xy 132.854172 58.459396) (xy 132.854179 58.459394) (xy 132.854181 58.459392) - (xy 132.856534 58.458418) (xy 132.856535 58.458417) (xy 132.86579 58.454584) (xy 132.874675 58.445698) - (xy 132.985289 58.371789) (xy 133.096789 58.260289) (xy 133.184394 58.129179) (xy 133.185503 58.126503) - (xy 133.202201 58.086188) (xy 133.244737 57.983497) (xy 133.2755 57.828842) (xy 133.2755 57.671158) - (xy 133.2755 57.671155) (xy 133.2755 57.671106) (xy 133.275422 57.670768) (xy 133.27262 57.656679) - (xy 133.244737 57.516503) (xy 133.238109 57.500501) (xy 133.213825 57.441873) (xy 133.1844 57.370833) - (xy 133.184395 57.370824) (xy 133.18439 57.370814) (xy 133.096789 57.239711) (xy 133.096786 57.239707) - (xy 133.096781 57.239701) (xy 132.985297 57.128217) (xy 132.98529 57.128211) (xy 132.854191 57.040613) - (xy 132.85419 57.040612) (xy 132.854185 57.040609) (xy 132.854172 57.040602) (xy 132.854165 57.040598) - (xy 132.708502 56.980264) (xy 132.708471 56.980257) (xy 132.553847 56.9495) (xy 132.553845 56.9495) - (xy 132.553842 56.9495) (xy 132.396158 56.9495) (xy 132.396155 56.9495) (xy 132.396153 56.9495) - (xy 132.241527 56.980257) (xy 132.241496 56.980264) (xy 132.095833 57.040598) (xy 132.095824 57.040603) - (xy 132.095807 57.040613) (xy 131.964709 57.128211) (xy 131.964701 57.128217) (xy 131.853217 57.239701) - (xy 131.853212 57.239707) (xy 131.853211 57.239708) (xy 131.765613 57.370807) (xy 131.765603 57.370824) - (xy 131.765598 57.370833) (xy 131.705264 57.516496) (xy 131.705257 57.516527) (xy 131.6745 57.67115) - (xy 131.6745 57.671153) (xy 131.6745 57.828846) (xy 131.6745 57.828848) (xy 131.674499 57.828848) - (xy 127.228203 57.828848) (xy 127.250448 57.82162) (xy 127.254511 57.81955) (xy 127.254512 57.81955) - (xy 127.275519 57.808846) (xy 127.298679 57.797045) (xy 127.418675 57.735904) (xy 127.571422 57.624927) - (xy 127.704927 57.491422) (xy 127.815904 57.338675) (xy 127.90162 57.170448) (xy 127.959964 56.990884) - (xy 127.9895 56.804403) (xy 127.9895 56.615597) (xy 127.98905 56.612755) (xy 127.987633 56.603809) - (xy 127.987632 56.603807) (xy 127.983994 56.58084) (xy 127.975864 56.529506) (xy 127.959965 56.429119) - (xy 127.959964 56.429117) (xy 127.959964 56.429115) (xy 127.927416 56.328943) (xy 127.917849 56.299499) - (xy 127.917849 56.299498) (xy 127.90423 56.257585) (xy 127.90162 56.249552) (xy 127.901618 56.249549) - (xy 127.901618 56.249547) (xy 127.89938 56.245155) (xy 127.89907 56.24436) (xy 127.898335 56.243103) - (xy 127.837653 56.12401) (xy 127.815904 56.081325) (xy 127.704927 55.928578) (xy 127.571422 55.795073) - (xy 127.418675 55.684096) (xy 127.392633 55.670827) (xy 127.250452 55.598381) (xy 127.176658 55.574404) - (xy 127.142915 55.56344) (xy 127.128429 55.553648) (xy 127.112348 55.548614) (xy 127.111247 55.54787) - (xy 127.10191 55.541486) (xy 127.091373 55.528601) (xy 127.08609 55.52503) (xy 127.078847 55.516364) - (xy 127.075979 55.509776) (xy 127.057679 55.487398) (xy 127.054614 55.460702) (xy 127.050958 55.452302) - (xy 127.052534 55.442573) (xy 127.049712 55.417985) (xy 127.059863 55.397335) (xy 127.062132 55.383331) - (xy 127.072327 55.371979) (xy 127.080531 55.355291) (xy 127.082631 55.353002) (xy 127.098576 55.342754) - (xy 127.10882 55.33135) (xy 127.121908 55.327758) (xy 127.13567 55.318913) (xy 127.250448 55.28162) - (xy 127.418675 55.195904) (xy 127.571422 55.084927) (xy 127.704927 54.951422) (xy 127.815904 54.798675) - (xy 127.90162 54.630448) (xy 127.959964 54.450884) (xy 127.9895 54.264403) (xy 127.9895 54.075597) - (xy 127.9895 54.075592) (xy 127.97375 53.976156) (xy 127.97375 53.976155) (xy 127.970644 53.956544) - (xy 127.959964 53.889115) (xy 127.911076 53.738655) (xy 127.90162 53.709552) (xy 127.901618 53.709549) - (xy 127.901618 53.709547) (xy 127.899379 53.705153) (xy 127.899069 53.704358) (xy 127.898335 53.703103) - (xy 127.837653 53.58401) (xy 127.815904 53.541325) (xy 127.704927 53.388578) (xy 127.571422 53.255073) - (xy 127.418675 53.144096) (xy 127.370817 53.119711) (xy 127.370817 53.11971) (xy 127.370815 53.11971) - (xy 127.250458 53.058383) (xy 127.250454 53.058382) (xy 127.250452 53.058381) (xy 127.070884 53.000035) - (xy 127.07088 53.000034) (xy 127.070876 53.000033) (xy 127.070879 53.000033) (xy 126.909899 52.974538) - (xy 126.889502 52.971307) (xy 126.884404 52.9705) (xy 126.884403 52.9705) (xy 126.695597 52.9705) - (xy 126.695596 52.9705) (xy 126.673166 52.974052) (xy 126.673165 52.974051) (xy 126.50912 53.000034) - (xy 126.509118 53.000034) (xy 126.509115 53.000035) (xy 126.329547 53.058381) (xy 126.299618 53.073631) - (xy 126.161323 53.144096) (xy 126.090274 53.195717) (xy 126.008575 53.255075) (xy 126.008573 53.255077) - (xy 126.008572 53.255077) (xy 125.875076 53.388573) (xy 125.764094 53.541326) (xy 125.692075 53.682668) - (xy 125.681827 53.693518) (xy 125.671743 53.711511) (xy 125.664406 53.71928) (xy 125.649005 53.728269) - (xy 125.644101 53.733463) (xy 125.635427 53.738075) (xy 125.627335 53.741975) (xy 125.624816 53.74239) - (xy 125.604065 53.754504) (xy 125.562252 53.752713) (xy 125.558398 53.753349) (xy 125.556339 53.752459) - (xy 125.534259 53.751514) (xy 125.502794 53.729334) (xy 125.494254 53.725646) (xy 125.491274 53.721213) - (xy 125.477152 53.711259) (xy 125.460945 53.676103) (xy 125.455271 53.667663) (xy 125.455187 53.663611) - (xy 125.45255 53.657891) (xy 125.451795 53.654022) (xy 125.449499 53.630272) (xy 125.449499 52.153129) - (xy 125.449499 52.153128) (xy 125.443091 52.093517) (xy 125.392796 51.958669) (xy 125.392795 51.958668) - (xy 125.392793 51.958664) (xy 125.392782 51.958649) (xy 125.390392 51.954929) (xy 125.390391 51.954928) - (xy 125.387489 51.951579) (xy 125.306547 51.843455) (xy 125.306544 51.843452) (xy 125.306542 51.84345) - (xy 125.192307 51.757934) (xy 125.191335 51.757206) (xy 125.191332 51.757204) (xy 125.19133 51.757203) - (xy 125.191328 51.757202) (xy 125.056482 51.706908) (xy 125.056483 51.706908) (xy 124.996883 51.700501) - (xy 124.996881 51.7005) (xy 124.996873 51.7005) (xy 124.996864 51.7005) (xy 124.995841 51.7005) - (xy 123.503123 51.7005) (xy 123.501192 51.700659) (xy 123.499545 51.700885) (xy 123.443516 51.706908) - (xy 123.308666 51.757204) (xy 123.308665 51.757205) (xy 123.193456 51.84345) (xy 123.19345 51.843456) - (xy 123.107205 51.958665) (xy 123.107203 51.958668) (xy 123.056908 52.093516) (xy 123.0505 52.153125) - (xy 123.0505 53.646875) (xy 123.050659 53.648806) (xy 123.050885 53.650454) (xy 123.056907 53.706482) - (xy 123.077172 53.760814) (xy 123.107202 53.841328) (xy 123.107206 53.841335) (xy 123.150008 53.898511) - (xy 123.19345 53.956542) (xy 123.193452 53.956544) (xy 123.193455 53.956547) (xy 123.308664 54.042793) - (xy 123.308671 54.042797) (xy 123.443517 54.093091) (xy 123.443516 54.093091) (xy 123.450444 54.093835) - (xy 123.503127 54.0995) (xy 123.704428 54.099499) (xy 123.718728 54.103697) (xy 123.73936 54.10452) - (xy 123.749614 54.107531) (xy 123.764612 54.11717) (xy 123.771468 54.119183) (xy 123.779569 54.124858) - (xy 123.786713 54.1303) (xy 123.788209 54.132333) (xy 123.808392 54.145304) (xy 123.82582 54.183464) - (xy 123.828114 54.186583) (xy 123.828253 54.188792) (xy 123.837418 54.208859) (xy 123.831929 54.247044) - (xy 123.832514 54.256314) (xy 123.829929 54.260953) (xy 123.827477 54.278018) (xy 123.803451 54.308492) - (xy 123.798516 54.317354) (xy 123.794968 54.319252) (xy 123.791096 54.324165) (xy 123.787988 54.326597) - (xy 123.767869 54.339425) (xy 123.621328 54.414092) (xy 123.468573 54.525076) (xy 123.335077 54.658572) - (xy 123.335077 54.658573) (xy 123.335075 54.658575) (xy 123.287414 54.724174) (xy 123.224096 54.811323) - (xy 123.202346 54.85401) (xy 123.138381 54.979547) (xy 123.114545 55.052906) (xy 123.080033 55.15912) - (xy 123.051621 55.338517) (xy 123.05129 55.340609) (xy 123.0505 55.345597) (xy 123.0505 55.345598) - (xy 123.0505 55.534405) (xy 123.052308 55.545825) (xy 123.078611 55.711894) (xy 123.080035 55.720884) - (xy 123.138381 55.900452) (xy 123.224096 56.068675) (xy 123.335073 56.221422) (xy 123.468578 56.354927) - (xy 123.621325 56.465904) (xy 123.700804 56.5064) (xy 123.783095 56.54833) (xy 123.783096 56.548331) - (xy 123.784702 56.549271) (xy 123.78843 56.551077) (xy 123.790406 56.552058) (xy 123.794165 56.553119) - (xy 123.840289 56.568105) (xy 123.84029 56.568106) (xy 123.874008 56.579061) (xy 123.897083 56.586559) - (xy 123.91157 56.596352) (xy 123.927658 56.60139) (xy 123.928758 56.602133) (xy 123.938094 56.608517) - (xy 123.94863 56.621402) (xy 123.953915 56.624975) (xy 123.961157 56.633641) (xy 123.964024 56.64023) - (xy 123.982321 56.662606) (xy 123.985384 56.689304) (xy 123.989041 56.697706) (xy 123.987464 56.707434) - (xy 123.990285 56.732021) (xy 123.980132 56.752671) (xy 123.977863 56.766676) (xy 123.967668 56.778024) - (xy 123.959465 56.794711) (xy 123.957371 56.796993) (xy 123.941417 56.807247) (xy 123.931171 56.818653) - (xy 123.918087 56.822241) (xy 123.904326 56.831087) (xy 123.878446 56.839496) (xy 123.789547 56.868381) - (xy 123.730764 56.898333) (xy 123.621323 56.954096) (xy 123.54703 57.008074) (xy 123.468575 57.065075) - (xy 123.468573 57.065077) (xy 123.468572 57.065077) (xy 123.335077 57.198572) (xy 123.335077 57.198573) - (xy 123.335075 57.198575) (xy 123.321586 57.217141) (xy 123.224096 57.351323) (xy 123.187899 57.422363) - (xy 123.138381 57.519547) (xy 123.080035 57.699115) (xy 123.080035 57.699117) (xy 123.080034 57.69912) - (xy 123.0505 57.885592) (xy 123.0505 58.074406) (xy 123.074209 58.224097) (xy 123.080035 58.260884) - (xy 123.138381 58.440452) (xy 123.138382 58.440453) (xy 123.138383 58.440458) (xy 123.212163 58.585255) - (xy 123.212164 58.585258) (xy 123.224093 58.608671) (xy 123.227599 58.613497) (xy 123.335073 58.761422) - (xy 123.468578 58.894927) (xy 123.621325 59.005904) (xy 123.671864 59.031655) (xy 123.789547 59.091618) - (xy 123.79042 59.092063) (xy 123.794174 59.093122) (xy 123.813928 59.09954) (xy 123.844253 59.109393) - (xy 123.844254 59.109394) (xy 123.874853 59.119336) (xy 123.897083 59.126559) (xy 123.91157 59.136352) - (xy 123.927658 59.14139) (xy 123.928758 59.142133) (xy 123.938094 59.148517) (xy 123.94863 59.161402) - (xy 123.953915 59.164975) (xy 123.961157 59.173641) (xy 123.964024 59.18023) (xy 123.982321 59.202606) - (xy 123.985384 59.229304) (xy 123.989041 59.237706) (xy 123.987464 59.247434) (xy 123.990285 59.272021) - (xy 123.980132 59.292671) (xy 123.977863 59.306676) (xy 123.967668 59.318024) (xy 123.959465 59.334711) - (xy 123.957371 59.336993) (xy 123.941417 59.347247) (xy 123.931171 59.358653) (xy 123.918087 59.362241) - (xy 123.904326 59.371087) (xy 123.867348 59.383102) (xy 123.789547 59.408381) (xy 123.739729 59.433765) - (xy 123.621323 59.494096) (xy 123.534174 59.557414) (xy 123.468575 59.605075) (xy 123.468573 59.605077) - (xy 123.468572 59.605077) (xy 123.335077 59.738572) (xy 123.335077 59.738573) (xy 123.335075 59.738575) - (xy 123.319297 59.760292) (xy 123.224096 59.891323) (xy 123.194085 59.950223) (xy 123.138381 60.059547) - (xy 123.080035 60.239115) (xy 123.080034 60.239118) (xy 123.080034 60.23912) (xy 123.0505 60.425592) - (xy 123.0505 60.614402) (xy 123.050499 60.614405) (xy 119.440402 60.614405) (xy 119.403897 58.1) - (xy 119.328632 52.916075) (xy 119.333146 52.881084) (xy 119.341064 52.852595) (xy 119.362154 52.810326) - (xy 119.462767 52.679208) (xy 119.585694 52.466292) (xy 119.679778 52.239153) (xy 119.743409 52.001677) - (xy 119.7755 51.757927) (xy 119.7755 51.512073) (xy 119.743409 51.268323) (xy 119.701572 51.112186) - (xy 119.697383 51.077146) (xy 119.697652 51.065841) (xy 119.718926 50.999289) (xy 119.772803 50.954803) - (xy 119.842177 50.946508) (xy 119.845815 50.94712) (xy 119.900723 50.971025) (xy 119.924381 50.989179) - (xy 119.990981 51.040283) (xy 120.186519 51.153176) (xy 120.186529 51.15318) (xy 120.18658 51.153205) - (xy 120.187116 51.153423) (xy 120.395131 51.239586) (xy 120.613239 51.298028) (xy 120.8371 51.3275) - (xy 121.062893 51.3275) (xy 121.0629 51.3275) (xy 121.28676 51.298028) (xy 121.504868 51.239586) - (xy 121.712969 51.153387) (xy 121.713421 51.153203) (xy 121.713459 51.153184) (xy 121.71347 51.15318) - (xy 121.71348 51.153176) (xy 121.909018 51.040283) (xy 121.978451 50.987004) (xy 121.97845 50.987003) - (xy 121.97845 50.987002) (xy 121.432482 50.441035) (xy 121.398997 50.379712) (xy 121.403981 50.310021) - (xy 121.445852 50.254087) (xy 121.451273 50.250251) (xy 121.469532 50.238051) (xy 121.583051 50.124532) - (xy 121.595251 50.106272) (xy 121.648863 50.061468) (xy 121.718188 50.05276) (xy 121.781216 50.082914) - (xy 121.786035 50.087482) (xy 122.332002 50.63345) (xy 122.332003 50.63345) (xy 122.332004 50.633451) - (xy 122.385283 50.564018) (xy 122.498176 50.36848) (xy 122.49818 50.36847) (xy 122.498184 50.368459) - (xy 122.498203 50.368421) (xy 122.498387 50.367969) (xy 122.584586 50.159868) (xy 122.643028 49.94176) - (xy 122.6725 49.717899) (xy 122.6725 49.4921) (xy 122.643028 49.268239) (xy 122.584586 49.050131) - (xy 122.49818 48.841529) (xy 122.498178 48.841524) (xy 122.474745 48.800937) (xy 122.474196 48.799943) - (xy 122.473781 48.798084) (xy 122.462207 48.769173) (xy 122.458935 48.755685) (xy 122.459883 48.735784) - (xy 122.458983 48.73175) (xy 122.460238 48.728329) (xy 122.46226 48.685894) (xy 122.502787 48.628983) - (xy 122.504115 48.627938) (xy 122.557252 48.603689) (xy 122.562171 48.602741) (xy 122.585637 48.6005) - (xy 123.644372 48.6005) + (xy 201.2805 60.801158) (xy 201.2805 60.801155) (xy 201.2805 60.801082) (xy 201.28037 60.800505) + (xy 201.271495 60.755886) (xy 201.249737 60.646503) (xy 201.244961 60.634973) (xy 201.189397 60.500827) + (xy 201.18939 60.500814) (xy 201.101789 60.369711) (xy 201.101786 60.369707) (xy 201.101781 60.369701) + (xy 200.990297 60.258217) (xy 200.990291 60.258212) (xy 200.99029 60.258211) (xy 200.859191 60.170613) + (xy 200.85919 60.170612) (xy 200.859185 60.170609) (xy 200.859172 60.170602) (xy 200.85917 60.170601) + (xy 200.859165 60.170598) (xy 200.713502 60.110264) (xy 200.713471 60.110257) (xy 200.558847 60.0795) + (xy 200.558845 60.0795) (xy 200.558842 60.0795) (xy 200.401158 60.0795) (xy 200.401155 60.0795) + (xy 200.401153 60.0795) (xy 200.246527 60.110257) (xy 200.246496 60.110264) (xy 200.100833 60.170598) + (xy 200.100829 60.170601) (xy 200.100807 60.170613) (xy 199.969708 60.258211) (xy 199.969707 60.258212) + (xy 199.969701 60.258217) (xy 199.858217 60.369701) (xy 199.858212 60.369707) (xy 199.858211 60.369708) + (xy 199.770613 60.500807) (xy 199.770604 60.500822) (xy 199.770596 60.50084) (xy 199.710266 60.646491) + (xy 199.710259 60.646511) (xy 199.701474 60.690677) (xy 199.693263 60.71395) (xy 199.689732 60.723959) + (xy 199.682488 60.737807) (xy 199.633972 60.788086) (xy 199.622141 60.794823) (xy 199.584974 60.808685) + (xy 199.476513 60.830259) (xy 199.476504 60.830262) (xy 199.476498 60.830264) (xy 199.476493 60.830265) + (xy 199.476475 60.830272) (xy 199.330833 60.890598) (xy 199.330824 60.890603) (xy 199.330807 60.890613) + (xy 199.199708 60.978211) (xy 199.199707 60.978212) (xy 199.199701 60.978217) (xy 199.088217 61.089701) + (xy 199.088212 61.089707) (xy 199.088211 61.089708) (xy 199.000613 61.220807) (xy 199.000603 61.220824) + (xy 199.000598 61.220833) (xy 198.940264 61.366496) (xy 198.940257 61.366527) (xy 198.9095 61.52115) + (xy 198.9095 61.521153) (xy 198.9095 61.678846) (xy 198.9095 61.678848) (xy 198.909499 61.678848) + (xy 190.820499 61.678848) (xy 190.8205 61.678842) (xy 190.8205 61.521158) (xy 190.8205 61.521155) + (xy 190.820499 61.521153) (xy 190.812193 61.479397) (xy 190.812192 61.479394) (xy 190.798702 61.411574) + (xy 190.789737 61.366503) (xy 190.787633 61.361424) (xy 190.778122 61.338461) (xy 190.746179 61.261344) + (xy 190.729397 61.220827) (xy 190.72939 61.220814) (xy 190.641789 61.089711) (xy 190.641786 61.089707) + (xy 190.641781 61.089701) (xy 190.530297 60.978217) (xy 190.530291 60.978212) (xy 190.53029 60.978211) + (xy 190.399191 60.890613) (xy 190.39919 60.890612) (xy 190.399185 60.890609) (xy 190.399172 60.890602) + (xy 190.399165 60.890598) (xy 190.253502 60.830264) (xy 190.253471 60.830257) (xy 190.098847 60.7995) + (xy 190.098845 60.7995) (xy 190.098842 60.7995) (xy 189.941158 60.7995) (xy 189.941155 60.7995) + (xy 189.941153 60.7995) (xy 189.786527 60.830257) (xy 189.786496 60.830264) (xy 189.640833 60.890598) + (xy 189.640824 60.890603) (xy 189.640807 60.890613) (xy 189.509708 60.978211) (xy 189.509707 60.978212) + (xy 189.509701 60.978217) (xy 189.398217 61.089701) (xy 189.398212 61.089707) (xy 189.398211 61.089708) + (xy 189.310613 61.220807) (xy 189.310603 61.220824) (xy 189.310598 61.220833) (xy 189.250264 61.366496) + (xy 189.250257 61.366527) (xy 189.2195 61.52115) (xy 189.2195 61.521153) (xy 189.2195 61.678846) + (xy 189.2195 61.678848) (xy 189.219499 61.678848) (xy 186.815441 61.678848) (xy 186.758523 61.655272) + (xy 186.758509 61.655267) (xy 186.758501 61.655264) (xy 186.758491 61.655261) (xy 186.75849 61.65526) + (xy 186.758485 61.655259) (xy 186.683133 61.640271) (xy 186.683132 61.640271) (xy 186.665091 61.636682) + (xy 186.665069 61.636677) (xy 186.665068 61.636677) (xy 186.603848 61.6245) (xy 186.603845 61.6245) + (xy 186.603842 61.6245) (xy 186.446158 61.6245) (xy 186.446155 61.6245) (xy 186.446153 61.6245) + (xy 186.291527 61.655257) (xy 186.291496 61.655264) (xy 186.145833 61.715598) (xy 186.145824 61.715603) + (xy 186.145807 61.715613) (xy 186.014708 61.803211) (xy 186.014707 61.803212) (xy 186.014701 61.803217) + (xy 185.903217 61.914701) (xy 185.903212 61.914707) (xy 185.903211 61.914708) (xy 185.815605 62.045819) + (xy 185.815604 62.04582) (xy 185.779147 62.133837) (xy 185.779147 62.133839) (xy 185.761138 62.164192) + (xy 185.75243 62.174998) (xy 185.695037 62.214846) (xy 185.625215 62.21734) (xy 185.620136 62.216044) + (xy 185.563122 62.183577) (xy 185.508449 62.128903) (xy 185.508444 62.128899) (xy 185.508443 62.128898) + (xy 185.377344 62.0413) (xy 185.377343 62.041299) (xy 185.377338 62.041296) (xy 185.377325 62.041289) + (xy 185.377318 62.041285) (xy 185.231655 61.980951) (xy 185.231624 61.980944) (xy 185.077 61.950187) + (xy 185.076998 61.950187) (xy 185.076995 61.950187) (xy 184.919311 61.950187) (xy 184.919308 61.950187) + (xy 184.919306 61.950187) (xy 184.76468 61.980944) (xy 184.764649 61.980951) (xy 184.618986 62.041285) + (xy 184.618977 62.04129) (xy 184.61896 62.0413) (xy 184.487861 62.128898) (xy 184.48786 62.128899) + (xy 184.487854 62.128904) (xy 184.37637 62.240388) (xy 184.376365 62.240394) (xy 184.376364 62.240395) + (xy 184.288766 62.371494) (xy 184.288759 62.371507) (xy 184.288751 62.37152) (xy 184.228417 62.517183) + (xy 184.22841 62.517214) (xy 184.197653 62.671837) (xy 184.197653 62.67184) (xy 184.197653 62.829533) + (xy 184.197653 62.829535) (xy 184.197652 62.829535) (xy 175.875501 62.829535) (xy 175.875501 62.701005) + (xy 175.8755 62.701003) (xy 175.873301 62.689944) (xy 175.848582 62.565678) (xy 175.848342 62.564471) + (xy 175.84625 62.560046) (xy 175.845489 62.558209) (xy 175.828497 62.517185) (xy 175.795782 62.438202) + (xy 175.795777 62.438193) (xy 175.795772 62.438183) (xy 175.719115 62.323459) (xy 175.719112 62.323455) + (xy 175.719107 62.323449) (xy 175.621551 62.225893) (xy 175.621545 62.225888) (xy 175.621544 62.225887) + (xy 175.506824 62.149233) (xy 175.506823 62.149232) (xy 175.506818 62.149229) (xy 175.506805 62.149222) + (xy 175.506798 62.149218) (xy 175.379355 62.09643) (xy 175.379341 62.096425) (xy 175.379333 62.096422) + (xy 175.379323 62.096419) (xy 175.37932 62.096418) (xy 175.379316 62.096417) (xy 175.243999 62.069501) + (xy 175.243996 62.069501) (xy 175.243994 62.069501) (xy 175.106008 62.069501) (xy 175.106006 62.069501) + (xy 175.106001 62.069501) (xy 174.970684 62.096417) (xy 174.970678 62.096419) (xy 174.970668 62.096422) + (xy 174.970663 62.096423) (xy 174.970645 62.09643) (xy 174.843202 62.149218) (xy 174.843193 62.149223) + (xy 174.843176 62.149233) (xy 174.728456 62.225887) (xy 174.728455 62.225888) (xy 174.728449 62.225893) + (xy 174.630893 62.323449) (xy 174.630888 62.323455) (xy 174.630887 62.323456) (xy 174.554233 62.438176) + (xy 174.554223 62.438193) (xy 174.554218 62.438202) (xy 174.50143 62.565645) (xy 174.501417 62.565684) + (xy 174.474501 62.701001) (xy 174.474501 62.794627) (xy 174.469238 62.812547) (xy 164.459916 62.812547) + (xy 164.373261 62.725892) (xy 164.373255 62.725887) (xy 164.373254 62.725886) (xy 164.258534 62.649232) + (xy 164.258533 62.649231) (xy 164.258528 62.649228) (xy 164.258515 62.649221) (xy 164.258508 62.649217) + (xy 164.131065 62.596429) (xy 164.131051 62.596424) (xy 164.131043 62.596421) (xy 164.131033 62.596418) + (xy 164.13103 62.596417) (xy 164.131026 62.596416) (xy 163.995709 62.5695) (xy 163.995706 62.5695) + (xy 163.995704 62.5695) (xy 163.857718 62.5695) (xy 163.857716 62.5695) (xy 163.857711 62.5695) + (xy 163.722394 62.596416) (xy 163.722388 62.596418) (xy 163.722378 62.596421) (xy 163.722373 62.596422) + (xy 163.722355 62.596429) (xy 163.594912 62.649217) (xy 163.594903 62.649222) (xy 163.594886 62.649232) + (xy 163.480166 62.725886) (xy 163.480165 62.725887) (xy 163.480159 62.725892) (xy 163.382603 62.823448) + (xy 163.382598 62.823454) (xy 163.382597 62.823455) (xy 163.305943 62.938175) (xy 163.305933 62.938192) + (xy 163.305928 62.938201) (xy 163.25314 63.065644) (xy 163.253132 63.065668) (xy 163.253127 63.065684) + (xy 163.227618 63.193924) (xy 163.224978 63.204666) (xy 163.213776 63.242818) (xy 163.18248 63.295565) + (xy 163.154596 63.323448) (xy 163.154588 63.323457) (xy 163.154585 63.323462) (xy 163.077935 63.438175) + (xy 163.077925 63.438192) (xy 163.07792 63.438201) (xy 163.025132 63.565644) (xy 163.025119 63.565683) + (xy 162.998203 63.701) (xy 162.998203 63.794626) (xy 162.99294 63.812546) (xy 162.233596 63.812546) + (xy 162.201029 63.763806) (xy 162.201028 63.763805) (xy 162.194116 63.75346) (xy 162.194114 63.753457) + (xy 162.194098 63.75344) (xy 162.09655 63.655892) (xy 162.096544 63.655887) (xy 162.096543 63.655886) + (xy 161.981823 63.579232) (xy 161.981822 63.579231) (xy 161.981817 63.579228) (xy 161.981804 63.579221) + (xy 161.981797 63.579217) (xy 161.854354 63.526429) (xy 161.85434 63.526424) (xy 161.854332 63.526421) + (xy 161.854322 63.526418) (xy 161.854319 63.526417) (xy 161.854315 63.526416) (xy 161.718998 63.4995) + (xy 161.718995 63.4995) (xy 161.718993 63.4995) (xy 161.581007 63.4995) (xy 161.581005 63.4995) + (xy 161.581 63.4995) (xy 161.445683 63.526416) (xy 161.445677 63.526418) (xy 161.445667 63.526421) + (xy 161.445662 63.526422) (xy 161.445644 63.526429) (xy 161.318201 63.579217) (xy 161.318192 63.579222) + (xy 161.318175 63.579232) (xy 161.203455 63.655886) (xy 161.203454 63.655887) (xy 161.203448 63.655892) + (xy 161.105892 63.753448) (xy 161.10589 63.753451) (xy 161.105888 63.753454) (xy 161.105885 63.753458) + (xy 161.09317 63.772487) (xy 161.029232 63.868175) (xy 161.029222 63.868192) (xy 161.029217 63.868201) + (xy 160.976429 63.995644) (xy 160.976416 63.995683) (xy 160.9495 64.131) (xy 160.9495 64.224626) + (xy 160.944237 64.242546) (xy 143.846784 64.242546) (xy 143.852384 64.234165) (xy 143.920775 64.131811) + (xy 143.920781 64.131797) (xy 143.92141 64.13028) (xy 143.943287 64.077463) (xy 143.953245 64.053421) + (xy 143.963433 64.028826) (xy 143.97358 64.004328) (xy 143.987601 63.933842) (xy 143.996444 63.889385) + (xy 144.0005 63.868997) (xy 144.0005 63.731001) (xy 143.973341 63.594468) (xy 143.971253 63.590054) + (xy 143.966767 63.579222) (xy 143.966767 63.579221) (xy 143.920778 63.468195) (xy 143.920776 63.468192) + (xy 143.920771 63.468182) (xy 143.844114 63.353458) (xy 143.844111 63.353454) (xy 143.844106 63.353448) + (xy 143.74655 63.255892) (xy 143.746544 63.255887) (xy 143.746543 63.255886) (xy 143.631823 63.179232) + (xy 143.631822 63.179231) (xy 143.631817 63.179228) (xy 143.631804 63.179221) (xy 143.631797 63.179217) + (xy 143.504354 63.126429) (xy 143.50434 63.126424) (xy 143.504332 63.126421) (xy 143.504322 63.126418) + (xy 143.504319 63.126417) (xy 143.504315 63.126416) (xy 143.368998 63.0995) (xy 143.368995 63.0995) + (xy 143.368993 63.0995) (xy 143.231007 63.0995) (xy 143.231005 63.0995) (xy 143.231 63.0995) (xy 143.095683 63.126416) + (xy 143.095677 63.126418) (xy 143.095667 63.126421) (xy 143.095662 63.126422) (xy 143.095644 63.126429) + (xy 142.968201 63.179217) (xy 142.968192 63.179222) (xy 142.968175 63.179232) (xy 142.853455 63.255886) + (xy 142.853454 63.255887) (xy 142.853448 63.255892) (xy 142.755892 63.353448) (xy 142.755887 63.353454) + (xy 142.755886 63.353455) (xy 142.679232 63.468175) (xy 142.679222 63.468192) (xy 142.679221 63.468195) + (xy 142.67922 63.468197) (xy 142.626429 63.595644) (xy 142.626416 63.595683) (xy 142.5995 63.731) + (xy 142.5995 63.824626) (xy 142.594237 63.842546) (xy 121.828899 63.842546) (xy 121.898451 63.772994) + (xy 121.898451 63.772993) (xy 121.82902 63.719719) (xy 121.829013 63.719714) (xy 121.82901 63.719712) + (xy 121.633477 63.606821) (xy 121.633427 63.606797) (xy 121.632789 63.606537) (xy 121.627161 63.604206) + (xy 121.51844 63.559172) (xy 121.424866 63.520412) (xy 121.315814 63.491192) (xy 121.20676 63.461971) + (xy 121.206754 63.46197) (xy 121.206749 63.461969) (xy 120.982901 63.4325) (xy 120.9829 63.4325) + (xy 120.7571 63.4325) (xy 120.757099 63.4325) (xy 120.533249 63.461969) (xy 120.533242 63.46197) + (xy 120.533239 63.461971) (xy 120.507574 63.468848) (xy 120.315132 63.520412) (xy 120.107209 63.606537) + (xy 120.106579 63.606793) (xy 120.106521 63.606821) (xy 119.910999 63.719705) (xy 119.910987 63.719713) + (xy 119.910967 63.719726) (xy 119.841547 63.772992) (xy 119.841547 63.772993) (xy 120.387517 64.318964) + (xy 120.421002 64.380287) (xy 120.416018 64.449979) (xy 120.374146 64.505912) (xy 120.368731 64.509744) + (xy 120.350472 64.521945) (xy 120.350464 64.521951) (xy 120.236951 64.635464) (xy 120.236945 64.635472) + (xy 120.224744 64.653731) (xy 120.17113 64.698534) (xy 120.101805 64.707238) (xy 120.038779 64.677081) + (xy 120.033964 64.672517) (xy 119.557955 64.196508) (xy 119.52447 64.135185) (xy 119.521637 64.108354) + (xy 119.523405 63.651538) (xy 119.524496 63.635599) (xy 119.526596 63.61988) (xy 119.529729 63.604206) + (xy 119.532013 63.595683) (xy 119.565121 63.472126) (xy 119.5955 63.241372) (xy 119.5955 63.008628) + (xy 119.565121 62.777874) (xy 119.533751 62.660802) (xy 119.53056 62.644681) (xy 119.528454 62.628447) + (xy 119.527427 62.612048) (xy 119.544756 58.134405) (xy 122.970499 58.134405) (xy 122.999796 58.319375) + (xy 123.000035 58.320884) (xy 123.058381 58.500452) (xy 123.058382 58.500453) (xy 123.058383 58.500457) + (xy 123.122749 58.626779) (xy 123.126168 58.633489) (xy 123.144096 58.668675) (xy 123.255073 58.821422) + (xy 123.388578 58.954927) (xy 123.541325 59.065904) (xy 123.611808 59.101817) (xy 123.709547 59.151618) + (xy 123.71042 59.152063) (xy 123.714174 59.153122) (xy 123.729834 59.15821) (xy 123.769684 59.171158) + (xy 123.817084 59.186559) (xy 123.848757 59.202132) (xy 123.855586 59.206802) (xy 123.858094 59.208517) + (xy 123.869379 59.222318) (xy 123.87476 59.225998) (xy 123.877297 59.232002) (xy 123.902321 59.262606) + (xy 123.910285 59.332021) (xy 123.879465 59.394711) (xy 123.877371 59.396993) (xy 123.824326 59.431087) + (xy 123.785883 59.443578) (xy 123.709547 59.468381) (xy 123.625435 59.511238) (xy 123.541323 59.554096) + (xy 123.388572 59.665077) (xy 123.255077 59.798572) (xy 123.255077 59.798573) (xy 123.255075 59.798575) + (xy 123.217116 59.850821) (xy 123.144096 59.951323) (xy 123.119155 60.000272) (xy 123.058381 60.119547) + (xy 123.000035 60.299115) (xy 123.000034 60.299118) (xy 123.000034 60.29912) (xy 122.9705 60.485592) + (xy 122.9705 60.674406) (xy 122.998857 60.853448) (xy 123.000035 60.860884) (xy 123.058381 61.040452) + (xy 123.095596 61.113489) (xy 123.124344 61.169911) (xy 123.144094 61.208673) (xy 123.196127 61.28029) + (xy 123.255073 61.361422) (xy 123.388578 61.494927) (xy 123.541325 61.605904) (xy 123.592182 61.631817) + (xy 123.709547 61.691618) (xy 123.71042 61.692063) (xy 123.714174 61.693122) (xy 123.751997 61.705411) + (xy 123.8058 61.722892) (xy 123.805801 61.722893) (xy 123.805802 61.722893) (xy 123.889115 61.749964) + (xy 123.982356 61.764732) (xy 124.075597 61.7795) (xy 124.075598 61.7795) (xy 124.264402 61.7795) + (xy 124.264403 61.7795) (xy 124.450884 61.749964) (xy 124.630448 61.69162) (xy 124.798675 61.605904) + (xy 124.951422 61.494927) (xy 125.084927 61.361422) (xy 125.195904 61.208675) (xy 125.278757 61.046066) + (xy 125.281618 61.040452) (xy 125.281619 61.04045) (xy 125.28162 61.040448) (xy 125.339964 60.860884) + (xy 125.3695 60.674403) (xy 125.3695 60.485597) (xy 125.341505 60.308844) (xy 125.339964 60.299115) + (xy 125.298207 60.170602) (xy 125.282849 60.123336) (xy 125.282584 60.122477) (xy 125.28258 60.122256) + (xy 125.28206 60.12041) (xy 125.281055 60.118386) (xy 125.279269 60.114698) (xy 125.278333 60.1131) + (xy 125.251584 60.060603) (xy 125.227578 60.013489) (xy 125.195904 59.951325) (xy 125.084927 59.798578) + (xy 124.951422 59.665073) (xy 124.798675 59.554096) (xy 124.783763 59.546498) (xy 124.630452 59.468381) + (xy 124.554116 59.443578) (xy 124.522915 59.43344) (xy 124.516773 59.42924) (xy 124.491247 59.41787) + (xy 124.48191 59.411486) (xy 124.470621 59.397681) (xy 124.46524 59.394002) (xy 124.455625 59.379343) + (xy 124.437679 59.357398) (xy 124.429712 59.287985) (xy 124.43986 59.26734) (xy 124.44019 59.262735) + (xy 124.445824 59.255208) (xy 124.460531 59.225291) (xy 124.462631 59.223002) (xy 124.4767 59.213964) + (xy 124.482062 59.206802) (xy 124.512061 59.191245) (xy 124.515713 59.188899) (xy 124.518054 59.188139) + (xy 124.630448 59.15162) (xy 124.798675 59.065904) (xy 124.951422 58.954927) (xy 125.084927 58.821422) + (xy 125.195904 58.668675) (xy 125.28162 58.500448) (xy 125.339964 58.320884) (xy 125.3695 58.134403) + (xy 125.3695 57.945597) (xy 125.369499 57.945592) (xy 125.36632 57.925519) (xy 125.36632 57.925518) + (xy 125.36632 57.925517) (xy 125.339964 57.759115) (xy 125.304707 57.650606) (xy 125.298097 57.630264) + (xy 125.283121 57.584171) (xy 125.28206 57.580409) (xy 125.281068 57.578413) (xy 125.279269 57.574699) + (xy 125.278335 57.573103) (xy 125.209551 57.438109) (xy 125.209551 57.438108) (xy 125.20955 57.438107) + (xy 125.195908 57.411332) (xy 125.195906 57.411329) (xy 125.195904 57.411325) (xy 125.084927 57.258578) + (xy 124.951422 57.125073) (xy 124.86004 57.05868) (xy 124.79867 57.014092) (xy 124.776009 57.002546) + (xy 124.776005 57.002545) (xy 124.630452 56.928381) (xy 124.548838 56.901863) (xy 124.522915 56.89344) + (xy 124.508429 56.883648) (xy 124.492348 56.878614) (xy 124.491247 56.87787) (xy 124.48191 56.871486) + (xy 124.471373 56.858601) (xy 124.46609 56.85503) (xy 124.458847 56.846364) (xy 124.455979 56.839776) + (xy 124.437679 56.817398) (xy 124.434614 56.790702) (xy 124.430958 56.782302) (xy 124.432534 56.772573) + (xy 124.429712 56.747985) (xy 124.439863 56.727335) (xy 124.442132 56.713331) (xy 124.452327 56.701979) + (xy 124.460531 56.685291) (xy 124.462631 56.683002) (xy 124.478576 56.672754) (xy 124.48882 56.66135) + (xy 124.501908 56.657758) (xy 124.51567 56.648913) (xy 124.630448 56.61162) (xy 124.798675 56.525904) + (xy 124.951422 56.414927) (xy 125.084927 56.281422) (xy 125.195904 56.128675) (xy 125.28162 55.960448) + (xy 125.339964 55.780884) (xy 125.3695 55.594403) (xy 125.3695 55.405597) (xy 125.369047 55.402737) + (xy 125.367633 55.393809) (xy 125.367632 55.393807) (xy 125.365668 55.381409) (xy 125.354913 55.313501) + (xy 125.339965 55.219119) (xy 125.339964 55.219118) (xy 125.339964 55.219115) (xy 125.312893 55.135802) + (xy 125.307179 55.118217) (xy 125.283122 55.044175) (xy 125.282059 55.040406) (xy 125.281066 55.038409) + (xy 125.279267 55.034696) (xy 125.278335 55.033103) (xy 125.230641 54.9395) (xy 125.195904 54.871325) + (xy 125.084927 54.718578) (xy 124.951422 54.585073) (xy 124.798675 54.474096) (xy 124.774252 54.461652) + (xy 124.657329 54.402076) (xy 124.646496 54.391845) (xy 124.628485 54.381743) (xy 124.627092 54.380427) + (xy 124.620715 54.374405) (xy 124.611727 54.359006) (xy 124.606533 54.354101) (xy 124.601888 54.34536) + (xy 124.597994 54.337268) (xy 124.597585 54.33478) (xy 124.585493 54.314066) (xy 124.587288 54.272137) + (xy 124.586662 54.268323) (xy 124.587539 54.266295) (xy 124.588483 54.244261) (xy 124.610715 54.21272) + (xy 124.614403 54.204197) (xy 124.618809 54.201238) (xy 124.628738 54.187153) (xy 124.663987 54.170903) + (xy 124.67241 54.165248) (xy 124.67643 54.165167) (xy 124.682106 54.162551) (xy 124.68598 54.161795) + (xy 124.70973 54.159499) (xy 124.916871 54.159499) (xy 124.916872 54.159499) (xy 124.976483 54.153091) + (xy 125.111331 54.102796) (xy 125.226546 54.016546) (xy 125.299864 53.918604) (xy 125.312924 53.908828) + (xy 125.324816 53.893653) (xy 125.333594 53.887082) (xy 125.350295 53.880852) (xy 125.355797 53.876735) + (xy 125.360972 53.874934) (xy 125.369849 53.872063) (xy 125.374178 53.871945) (xy 125.399054 53.862667) + (xy 125.434201 53.870312) (xy 125.439693 53.870163) (xy 125.443162 53.872261) (xy 125.467327 53.877518) + (xy 125.491015 53.901205) (xy 125.499477 53.906324) (xy 125.502688 53.912879) (xy 125.516733 53.926923) + (xy 125.525566 53.959571) (xy 125.530219 53.969067) (xy 125.529593 53.974454) (xy 125.53185 53.982795) + (xy 125.531956 53.98649) (xy 125.53048 54.009444) (xy 125.5105 54.135591) (xy 125.5105 54.324406) + (xy 125.537018 54.491835) (xy 125.540035 54.510884) (xy 125.598381 54.690452) (xy 125.636061 54.764402) + (xy 125.677893 54.846502) (xy 125.682478 54.8555) (xy 125.684096 54.858675) (xy 125.795073 55.011422) + (xy 125.928578 55.144927) (xy 126.081325 55.255904) (xy 126.160804 55.2964) (xy 126.243095 55.33833) + (xy 126.243096 55.338331) (xy 126.244702 55.339271) (xy 126.24843 55.341077) (xy 126.250405 55.342058) + (xy 126.254158 55.343116) (xy 126.308665 55.360827) (xy 126.333345 55.368846) (xy 126.357085 55.37656) + (xy 126.357087 55.376561) (xy 126.388758 55.392133) (xy 126.398094 55.398517) (xy 126.409379 55.412318) + (xy 126.41476 55.415998) (xy 126.417297 55.422002) (xy 126.442321 55.452606) (xy 126.450285 55.522021) + (xy 126.419465 55.584711) (xy 126.417371 55.586993) (xy 126.364326 55.621087) (xy 126.335433 55.630475) + (xy 126.249547 55.658381) (xy 126.190014 55.688715) (xy 126.081323 55.744096) (xy 126.003981 55.800289) + (xy 125.928575 55.855075) (xy 125.928573 55.855077) (xy 125.928572 55.855077) (xy 125.795077 55.988572) + (xy 125.795077 55.988573) (xy 125.795075 55.988575) (xy 125.776701 56.013865) (xy 125.684096 56.141323) + (xy 125.648793 56.210609) (xy 125.598381 56.309547) (xy 125.552059 56.452111) (xy 125.540035 56.489116) + (xy 125.5105 56.675592) (xy 125.5105 56.864406) (xy 125.534861 57.018217) (xy 125.540035 57.050884) + (xy 125.598381 57.230452) (xy 125.681771 57.394112) (xy 125.681773 57.394115) (xy 125.681777 57.394123) + (xy 125.684095 57.398674) (xy 125.716474 57.443239) (xy 125.795073 57.551422) (xy 125.928578 57.684927) + (xy 126.081325 57.795904) (xy 126.147867 57.829809) (xy 126.249547 57.881618) (xy 126.25042 57.882063) + (xy 126.254174 57.883122) (xy 126.266282 57.887056) (xy 126.306923 57.900261) (xy 126.357087 57.91656) + (xy 126.357092 57.916564) (xy 126.388758 57.932133) (xy 126.398094 57.938517) (xy 126.409378 57.952318) + (xy 126.41476 57.955998) (xy 126.417297 57.962002) (xy 126.442321 57.992606) (xy 126.450285 58.062021) + (xy 126.419465 58.124711) (xy 126.417371 58.126993) (xy 126.364326 58.161087) (xy 126.347636 58.16651) + (xy 126.249547 58.198381) (xy 126.167303 58.240287) (xy 126.081323 58.284096) (xy 126.027151 58.323455) + (xy 125.928575 58.395075) (xy 125.928573 58.395077) (xy 125.928572 58.395077) (xy 125.795077 58.528572) + (xy 125.795077 58.528573) (xy 125.795075 58.528575) (xy 125.757694 58.580025) (xy 125.684096 58.681323) + (xy 125.654617 58.739179) (xy 125.598381 58.849547) (xy 125.540035 59.029115) (xy 125.540035 59.029117) + (xy 125.540034 59.02912) (xy 125.5105 59.215592) (xy 125.5105 59.404406) (xy 125.535299 59.560979) + (xy 125.540035 59.590884) (xy 125.598381 59.770452) (xy 125.664644 59.900499) (xy 125.671128 59.913224) + (xy 125.684094 59.938673) (xy 125.72611 59.996503) (xy 125.795073 60.091422) (xy 125.928578 60.224927) + (xy 126.081325 60.335904) (xy 126.249552 60.42162) (xy 126.357895 60.456823) (xy 126.372385 60.466619) + (xy 126.388491 60.471667) (xy 126.389463 60.472324) (xy 126.397995 60.478158) (xy 126.398905 60.47878) + (xy 126.409455 60.491683) (xy 126.414742 60.495258) (xy 126.421981 60.503924) (xy 126.424843 60.510504) + (xy 126.443131 60.532871) (xy 126.446195 60.559588) (xy 126.449852 60.567994) (xy 126.448274 60.577714) + (xy 126.451093 60.602286) (xy 126.440933 60.622949) (xy 126.43866 60.636961) (xy 126.42847 60.648299) + (xy 126.420272 60.664975) (xy 126.418177 60.667258) (xy 126.402211 60.677519) (xy 126.391958 60.688929) + (xy 126.378884 60.692512) (xy 126.365134 60.70135) (xy 126.249734 60.738845) (xy 126.081579 60.824526) + (xy 126.056386 60.842831) (xy 126.056386 60.842832) (xy 126.494113 61.280559) (xy 126.527598 61.341882) + (xy 126.522614 61.411574) (xy 126.480742 61.467507) (xy 126.468433 61.475627) (xy 126.436764 61.493911) + (xy 126.436761 61.493913) (xy 126.353913 61.576761) (xy 126.353911 61.576764) (xy 126.335627 61.608433) + (xy 126.285059 61.656648) (xy 126.216452 61.66987) (xy 126.151587 61.643902) (xy 126.140559 61.634113) + (xy 125.702832 61.196386) (xy 125.702831 61.196386) (xy 125.684526 61.221579) (xy 125.598845 61.389738) + (xy 125.540521 61.569239) (xy 125.511 61.755625) (xy 125.511 61.944369) (xy 125.510999 61.944371) + (xy 125.540521 62.130759) (xy 125.540522 62.130763) (xy 125.598844 62.310258) (xy 125.684523 62.478413) + (xy 125.702832 62.503612) (xy 125.702833 62.503613) (xy 126.140561 62.065883) (xy 126.201881 62.032401) + (xy 126.271572 62.037385) (xy 126.327506 62.079256) (xy 126.335625 62.091565) (xy 126.340207 62.0995) + (xy 126.353911 62.123236) (xy 126.436764 62.206089) (xy 126.456253 62.217341) (xy 126.468431 62.224372) + (xy 126.516647 62.274939) (xy 126.52987 62.343546) (xy 126.503901 62.408411) (xy 126.494112 62.41944) + (xy 126.056385 62.857165) (xy 126.056386 62.857165) (xy 126.056386 62.857166) (xy 126.081586 62.875476) + (xy 126.249741 62.961155) (xy 126.429236 63.019477) (xy 126.615632 63.049) (xy 126.804367 63.049) + (xy 126.804368 63.049) (xy 126.990763 63.019477) (xy 127.170258 62.961155) (xy 127.338408 62.875478) + (xy 127.338414 62.875475) (xy 127.363612 62.857166) (xy 127.348992 62.842546) (xy 134.269235 62.842546) + (xy 134.301414 63.004315) (xy 134.301415 63.004319) (xy 134.301416 63.004322) (xy 134.301419 63.004332) + (xy 134.301422 63.00434) (xy 134.301427 63.004354) (xy 134.354215 63.131797) (xy 134.35422 63.131806) + (xy 134.35423 63.131823) (xy 134.430884 63.246543) (xy 134.430885 63.246544) (xy 134.43089 63.24655) + (xy 134.528446 63.344106) (xy 134.528452 63.344111) (xy 134.528456 63.344114) (xy 134.64318 63.420771) + (xy 134.643193 63.420778) (xy 134.759241 63.468846) (xy 134.76505 63.471252) (xy 134.769467 63.473341) + (xy 134.905999 63.5005) (xy 135.043993 63.5005) (xy 135.043994 63.5005) (xy 135.090474 63.491254) + (xy 135.135039 63.482389) (xy 135.179326 63.47358) (xy 135.306809 63.420775) (xy 135.42154 63.344114) + (xy 135.519112 63.246542) (xy 135.52256 63.241382) (xy 135.537815 63.218551) (xy 135.561386 63.192309) + (xy 135.572047 63.183399) (xy 135.636105 63.155516) (xy 135.705071 63.16669) (xy 135.708441 63.168302) + (xy 135.709809 63.168957) (xy 135.759386 63.211917) (xy 135.788766 63.255887) (xy 135.795889 63.266547) + (xy 135.893448 63.364106) (xy 135.893454 63.364111) (xy 135.893458 63.364114) (xy 136.008182 63.440771) + (xy 136.008195 63.440778) (xy 136.092812 63.475827) (xy 136.13006 63.491255) (xy 136.13447 63.493341) + (xy 136.271001 63.5205) (xy 136.408995 63.5205) (xy 136.408996 63.5205) (xy 136.440569 63.514219) + (xy 136.514566 63.4995) (xy 136.544328 63.49358) (xy 136.665042 63.443579) (xy 136.66784 63.442419) + (xy 136.669848 63.441692) (xy 136.674155 63.439804) (xy 136.683423 63.435964) (xy 136.69231 63.427078) + (xy 136.786542 63.364114) (xy 136.884114 63.266542) (xy 136.897472 63.24655) (xy 136.960775 63.151811) + (xy 136.961186 63.15082) (xy 136.961187 63.150818) (xy 136.961196 63.150796) (xy 136.965326 63.140824) + (xy 136.982443 63.0995) (xy 137.01358 63.024328) (xy 137.022389 62.980041) (xy 137.039483 62.894106) + (xy 137.0405 62.888996) (xy 137.0405 62.751001) (xy 137.020254 62.649222) (xy 137.013581 62.615677) + (xy 137.01358 62.615676) (xy 137.01358 62.615672) (xy 137.013579 62.61567) (xy 137.013463 62.615086) + (xy 137.012508 62.613085) (xy 136.989779 62.55821) (xy 136.960778 62.488195) (xy 136.960771 62.488182) + (xy 136.896868 62.392546) (xy 152.294237 62.392546) (xy 152.326416 62.554315) (xy 152.326417 62.554319) + (xy 152.326418 62.554322) (xy 152.326421 62.554332) (xy 152.326424 62.55434) (xy 152.326429 62.554354) + (xy 152.379217 62.681797) (xy 152.379222 62.681806) (xy 152.379232 62.681823) (xy 152.455886 62.796543) + (xy 152.455887 62.796544) (xy 152.455892 62.79655) (xy 152.553448 62.894106) (xy 152.553454 62.894111) + (xy 152.553458 62.894114) (xy 152.668182 62.970771) (xy 152.668195 62.970778) (xy 152.690558 62.980041) + (xy 152.786332 63.019712) (xy 152.786331 63.019712) (xy 152.790061 63.021257) (xy 152.794466 63.02334) + (xy 152.795676 63.02358) (xy 152.795677 63.023581) (xy 152.81573 63.02757) (xy 152.931001 63.0505) + (xy 153.068995 63.0505) (xy 153.068996 63.0505) (xy 153.090129 63.046296) (xy 153.160041 63.032389) + (xy 153.204328 63.02358) (xy 153.323231 62.974329) (xy 153.326502 62.972973) (xy 153.32877 62.972182) + (xy 153.329503 62.971843) (xy 153.334164 62.9698) (xy 153.343423 62.965964) (xy 153.352309 62.957078) + (xy 153.377778 62.940061) (xy 153.436517 62.900812) (xy 153.456919 62.889788) (xy 153.477131 62.881203) + (xy 153.479 62.880986) (xy 153.54652 62.873113) (xy 153.554624 62.8745) (xy 153.600759 62.892416) + (xy 153.603979 62.894486) (xy 153.605816 62.89569) (xy 153.609592 62.898213) (xy 153.718182 62.970771) + (xy 153.718195 62.970778) (xy 153.740558 62.980041) (xy 153.836332 63.019712) (xy 153.836331 63.019712) + (xy 153.840061 63.021257) (xy 153.844466 63.02334) (xy 153.845676 63.02358) (xy 153.845677 63.023581) + (xy 153.86573 63.02757) (xy 153.981001 63.0505) (xy 154.118995 63.0505) (xy 154.118996 63.0505) + (xy 154.140129 63.046296) (xy 154.210041 63.032389) (xy 154.254328 63.02358) (xy 154.373231 62.974329) + (xy 154.376502 62.972973) (xy 154.37877 62.972182) (xy 154.379503 62.971843) (xy 154.384164 62.9698) + (xy 154.393422 62.965965) (xy 154.402307 62.957079) (xy 154.496542 62.894114) (xy 154.594114 62.796542) + (xy 154.670775 62.681811) (xy 154.670778 62.681804) (xy 154.670779 62.681803) (xy 154.709011 62.5895) + (xy 154.72358 62.554328) (xy 154.736737 62.488182) (xy 154.740233 62.47061) (xy 154.740233 62.470608) + (xy 154.7505 62.418996) (xy 154.7505 62.281001) (xy 154.723341 62.144469) (xy 154.721254 62.140057) + (xy 154.718678 62.133839) (xy 154.692029 62.069501) (xy 154.670778 62.018195) (xy 154.670771 62.018182) + (xy 154.594114 61.903458) (xy 154.594111 61.903454) (xy 154.594106 61.903448) (xy 154.49655 61.805892) + (xy 154.496544 61.805887) (xy 154.496543 61.805886) (xy 154.381823 61.729232) (xy 154.381822 61.729231) + (xy 154.381817 61.729228) (xy 154.381804 61.729221) (xy 154.381797 61.729217) (xy 154.254354 61.676429) + (xy 154.25434 61.676424) (xy 154.254332 61.676421) (xy 154.254322 61.676418) (xy 154.254319 61.676417) + (xy 154.254315 61.676416) (xy 154.118998 61.6495) (xy 154.118995 61.6495) (xy 154.118993 61.6495) + (xy 153.981007 61.6495) (xy 153.981005 61.6495) (xy 153.981 61.6495) (xy 153.845683 61.676416) (xy 153.845677 61.676418) + (xy 153.845667 61.676421) (xy 153.845662 61.676422) (xy 153.845644 61.676429) (xy 153.718201 61.729217) + (xy 153.71818 61.729228) (xy 153.718176 61.729231) (xy 153.613476 61.79919) (xy 153.593048 61.810225) + (xy 153.572855 61.818799) (xy 153.503456 61.826881) (xy 153.503455 61.826881) (xy 153.503454 61.826881) + (xy 153.503452 61.826881) (xy 153.499963 61.826283) (xy 153.495351 61.825493) (xy 153.449248 61.807589) + (xy 153.446052 61.805535) (xy 153.444202 61.804322) (xy 153.331823 61.729232) (xy 153.331822 61.729231) + (xy 153.331817 61.729228) (xy 153.331804 61.729221) (xy 153.331797 61.729217) (xy 153.204354 61.676429) + (xy 153.20434 61.676424) (xy 153.204332 61.676421) (xy 153.204322 61.676418) (xy 153.204319 61.676417) + (xy 153.204315 61.676416) (xy 153.068998 61.6495) (xy 153.068995 61.6495) (xy 153.068993 61.6495) + (xy 152.931007 61.6495) (xy 152.931005 61.6495) (xy 152.931 61.6495) (xy 152.795683 61.676416) (xy 152.795677 61.676418) + (xy 152.795667 61.676421) (xy 152.795662 61.676422) (xy 152.795644 61.676429) (xy 152.668201 61.729217) + (xy 152.668192 61.729222) (xy 152.668175 61.729232) (xy 152.553455 61.805886) (xy 152.553454 61.805887) + (xy 152.553448 61.805892) (xy 152.455892 61.903448) (xy 152.455887 61.903454) (xy 152.455886 61.903455) + (xy 152.379232 62.018175) (xy 152.379222 62.018192) (xy 152.379217 62.018201) (xy 152.326429 62.145644) + (xy 152.326416 62.145683) (xy 152.2995 62.281) (xy 152.2995 62.374626) (xy 152.294237 62.392546) + (xy 136.896868 62.392546) (xy 136.884114 62.373458) (xy 136.884113 62.373457) (xy 136.884112 62.373455) + (xy 136.884111 62.373454) (xy 136.884106 62.373448) (xy 136.78655 62.275892) (xy 136.786544 62.275887) + (xy 136.786543 62.275886) (xy 136.671823 62.199232) (xy 136.671822 62.199231) (xy 136.671817 62.199228) + (xy 136.671804 62.199221) (xy 136.671797 62.199217) (xy 136.544354 62.146429) (xy 136.54434 62.146424) + (xy 136.544332 62.146421) (xy 136.544322 62.146418) (xy 136.544319 62.146417) (xy 136.544315 62.146416) + (xy 136.408998 62.1195) (xy 136.408995 62.1195) (xy 136.408993 62.1195) (xy 136.271007 62.1195) + (xy 136.271005 62.1195) (xy 136.271 62.1195) (xy 136.135683 62.146416) (xy 136.135677 62.146418) + (xy 136.135667 62.146421) (xy 136.135662 62.146422) (xy 136.135644 62.146429) (xy 136.008201 62.199217) + (xy 136.008192 62.199222) (xy 136.008175 62.199232) (xy 135.893455 62.275886) (xy 135.893454 62.275887) + (xy 135.893448 62.275892) (xy 135.795888 62.373452) (xy 135.795884 62.373457) (xy 135.777184 62.401443) + (xy 135.753598 62.427699) (xy 135.742949 62.436598) (xy 135.678884 62.464482) (xy 135.609921 62.453306) + (xy 135.605197 62.451046) (xy 135.555609 62.408079) (xy 135.51911 62.353455) (xy 135.519109 62.353454) + (xy 135.519104 62.353448) (xy 135.421548 62.255892) (xy 135.421542 62.255887) (xy 135.421541 62.255886) + (xy 135.306821 62.179232) (xy 135.30682 62.179231) (xy 135.306815 62.179228) (xy 135.306802 62.179221) + (xy 135.306794 62.179217) (xy 135.179352 62.126429) (xy 135.179338 62.126424) (xy 135.17933 62.126421) + (xy 135.17932 62.126418) (xy 135.179317 62.126417) (xy 135.179313 62.126416) (xy 135.043996 62.0995) + (xy 135.043993 62.0995) (xy 135.043991 62.0995) (xy 134.906005 62.0995) (xy 134.906003 62.0995) + (xy 134.905998 62.0995) (xy 134.770681 62.126416) (xy 134.770675 62.126418) (xy 134.770665 62.126421) + (xy 134.77066 62.126422) (xy 134.770642 62.126429) (xy 134.643201 62.179217) (xy 134.6432 62.179217) + (xy 134.64319 62.179222) (xy 134.643173 62.179232) (xy 134.528453 62.255886) (xy 134.528452 62.255887) + (xy 134.528446 62.255892) (xy 134.43089 62.353448) (xy 134.430885 62.353454) (xy 134.430884 62.353455) + (xy 134.35423 62.468175) (xy 134.35422 62.468192) (xy 134.354215 62.468201) (xy 134.301427 62.595644) + (xy 134.301414 62.595683) (xy 134.274498 62.731) (xy 134.274498 62.824626) (xy 134.269235 62.842546) + (xy 127.348992 62.842546) (xy 127.319042 62.812596) (xy 127.126703 62.620257) (xy 126.925887 62.41944) + (xy 126.892402 62.358117) (xy 126.897386 62.288425) (xy 126.939258 62.232492) (xy 126.951557 62.224378) + (xy 126.983236 62.206089) (xy 127.066089 62.123236) (xy 127.084373 62.091566) (xy 127.134937 62.043353) + (xy 127.203543 62.030128) (xy 127.268409 62.056095) (xy 127.27944 62.065886) (xy 127.717165 62.503612) + (xy 127.717165 62.503611) (xy 127.717166 62.503612) (xy 127.735475 62.478414) (xy 127.735478 62.478408) + (xy 127.821155 62.310258) (xy 127.879477 62.130763) (xy 127.909 61.944368) (xy 127.909 61.755631) + (xy 127.879477 61.569236) (xy 127.821155 61.389741) (xy 127.755736 61.261348) (xy 137.699499 61.261348) + (xy 137.730257 61.415971) (xy 137.730264 61.416002) (xy 137.790598 61.561665) (xy 137.790603 61.561674) + (xy 137.790613 61.561691) (xy 137.878211 61.69279) (xy 137.878212 61.692791) (xy 137.878217 61.692797) + (xy 137.989701 61.804281) (xy 137.989707 61.804286) (xy 137.989711 61.804289) (xy 138.120814 61.89189) + (xy 138.120827 61.891897) (xy 138.120829 61.891897) (xy 138.120833 61.8919) (xy 138.18946 61.920325) + (xy 138.247505 61.944368) (xy 138.266503 61.952237) (xy 138.401949 61.979179) (xy 138.413527 61.981482) + (xy 138.416251 61.982204) (xy 138.421155 61.983) (xy 138.578844 61.983) (xy 138.582964 61.983) (xy 138.590814 61.980618) + (xy 138.733497 61.952237) (xy 138.851261 61.903458) (xy 138.879172 61.891897) (xy 138.879172 61.891896) + (xy 138.879179 61.891894) (xy 138.879183 61.89189) (xy 138.881508 61.890928) (xy 138.88153 61.890919) + (xy 138.890791 61.887083) (xy 138.899675 61.878198) (xy 139.010289 61.804289) (xy 139.121789 61.692789) + (xy 139.209394 61.561679) (xy 139.269737 61.415997) (xy 139.3005 61.261342) (xy 139.3005 61.103658) + (xy 139.3005 61.103655) (xy 139.3005 61.103471) (xy 139.300064 61.101466) (xy 139.2876 61.038805) + (xy 139.269737 60.949003) (xy 139.26749 60.943579) (xy 139.267489 60.943576) (xy 139.267488 60.943573) + (xy 139.228251 60.848846) (xy 139.209397 60.803327) (xy 139.20939 60.803314) (xy 139.121789 60.672211) + (xy 139.121786 60.672207) (xy 139.121781 60.672201) (xy 139.010297 60.560717) (xy 139.010291 60.560712) + (xy 139.01029 60.560711) (xy 138.879191 60.473113) (xy 138.87919 60.473112) (xy 138.879185 60.473109) + (xy 138.879172 60.473102) (xy 138.879165 60.473098) (xy 138.733502 60.412764) (xy 138.733471 60.412757) + (xy 138.578847 60.382) (xy 138.578845 60.382) (xy 138.578842 60.382) (xy 138.421158 60.382) (xy 138.421155 60.382) + (xy 138.421153 60.382) (xy 138.266527 60.412757) (xy 138.266496 60.412764) (xy 138.120833 60.473098) + (xy 138.120824 60.473103) (xy 138.120807 60.473113) (xy 137.989708 60.560711) (xy 137.989707 60.560712) + (xy 137.989701 60.560717) (xy 137.878217 60.672201) (xy 137.878212 60.672207) (xy 137.878211 60.672208) + (xy 137.790613 60.803307) (xy 137.790603 60.803324) (xy 137.790598 60.803333) (xy 137.730264 60.948996) + (xy 137.730257 60.949027) (xy 137.6995 61.10365) (xy 137.6995 61.103653) (xy 137.6995 61.261346) + (xy 137.6995 61.261348) (xy 137.699499 61.261348) (xy 127.755736 61.261348) (xy 127.735475 61.221584) + (xy 127.735474 61.221582) (xy 127.717167 61.196386) (xy 127.717166 61.196386) (xy 127.715913 61.197638) + (xy 127.279439 61.634112) (xy 127.218116 61.667597) (xy 127.148424 61.662613) (xy 127.092491 61.620741) + (xy 127.084373 61.608433) (xy 127.066089 61.576764) (xy 126.983236 61.493911) (xy 126.951566 61.475626) + (xy 126.903351 61.42506) (xy 126.890128 61.356453) (xy 126.916096 61.291588) (xy 126.925878 61.280567) + (xy 127.363613 60.842833) (xy 127.363612 60.842832) (xy 127.338413 60.824523) (xy 127.333428 60.821983) + (xy 127.170266 60.738846) (xy 127.169096 60.738466) (xy 127.119829 60.722458) (xy 127.062105 60.703702) + (xy 127.047624 60.693915) (xy 127.03155 60.688885) (xy 127.030437 60.688132) (xy 127.0211 60.681748) + (xy 127.010571 60.668873) (xy 127.00529 60.665304) (xy 126.998046 60.656639) (xy 126.995174 60.650044) + (xy 126.976869 60.62766) (xy 126.973806 60.600978) (xy 126.970149 60.59258) (xy 126.971725 60.582843) + (xy 126.968902 60.558247) (xy 126.979047 60.537607) (xy 126.981314 60.523608) (xy 126.991512 60.51225) + (xy 126.999718 60.495556) (xy 127.001819 60.493267) (xy 127.017756 60.483024) (xy 127.027996 60.471621) + (xy 127.041092 60.468025) (xy 127.05486 60.459176) (xy 127.170448 60.42162) (xy 127.338675 60.335904) + (xy 127.491422 60.224927) (xy 127.624927 60.091422) (xy 127.735904 59.938675) (xy 127.776578 59.858848) + (xy 142.278615 59.858848) (xy 142.309373 60.013471) (xy 142.30938 60.013502) (xy 142.369714 60.159165) + (xy 142.369719 60.159174) (xy 142.369729 60.159191) (xy 142.457327 60.29029) (xy 142.457328 60.290291) + (xy 142.457333 60.290297) (xy 142.568817 60.401781) (xy 142.568823 60.401786) (xy 142.568827 60.401789) + (xy 142.69993 60.48939) (xy 142.699942 60.489397) (xy 142.699953 60.489401) (xy 142.699954 60.489402) + (xy 142.787225 60.52555) (xy 142.787226 60.52555) (xy 142.816806 60.537802) (xy 142.839291 60.551143) + (xy 142.847159 60.555811) (xy 142.857963 60.564517) (xy 142.897813 60.621908) (xy 142.900308 60.691733) + (xy 142.900307 60.691738) (xy 142.899639 60.694355) (xy 142.873571 60.744464) (xy 142.868707 60.750129) + (xy 142.862308 60.757033) (xy 142.765892 60.853448) (xy 142.765887 60.853454) (xy 142.765886 60.853455) + (xy 142.689232 60.968175) (xy 142.689222 60.968192) (xy 142.689217 60.968201) (xy 142.636429 61.095644) + (xy 142.636416 61.095683) (xy 142.6095 61.231) (xy 142.6095 61.324626) (xy 142.604237 61.342546) + (xy 142.636416 61.504315) (xy 142.636417 61.504319) (xy 142.636418 61.504322) (xy 142.636421 61.504332) + (xy 142.636424 61.50434) (xy 142.636429 61.504354) (xy 142.689217 61.631797) (xy 142.689222 61.631806) + (xy 142.689232 61.631823) (xy 142.765886 61.746543) (xy 142.765887 61.746544) (xy 142.765892 61.74655) + (xy 142.863448 61.844106) (xy 142.863454 61.844111) (xy 142.863458 61.844114) (xy 142.978182 61.920771) + (xy 142.978195 61.920778) (xy 143.094656 61.969017) (xy 143.100066 61.971258) (xy 143.100069 61.97126) + (xy 143.104468 61.973341) (xy 143.241001 62.0005) (xy 143.378995 62.0005) (xy 143.378996 62.0005) + (xy 143.486215 61.979172) (xy 143.514328 61.97358) (xy 143.641811 61.920775) (xy 143.756542 61.844114) + (xy 143.854114 61.746542) (xy 143.930775 61.631811) (xy 143.98358 61.504328) (xy 143.996389 61.439935) + (xy 144.001957 61.411944) (xy 144.0105 61.368997) (xy 144.0105 61.231001) (xy 143.983341 61.094469) + (xy 143.981254 61.090057) (xy 143.981109 61.089708) (xy 143.943842 60.999735) (xy 143.930778 60.968195) + (xy 143.930771 60.968182) (xy 143.914714 60.944152) (xy 143.899484 60.912319) (xy 143.895336 60.899073) + (xy 143.894438 60.848848) (xy 154.859499 60.848848) (xy 154.890257 61.003471) (xy 154.890264 61.003502) + (xy 154.950598 61.149165) (xy 154.950602 61.149172) (xy 154.950608 61.149184) (xy 154.950613 61.149191) + (xy 155.038211 61.28029) (xy 155.038212 61.280291) (xy 155.038217 61.280297) (xy 155.149701 61.391781) + (xy 155.149707 61.391786) (xy 155.149711 61.391789) (xy 155.280814 61.47939) (xy 155.280827 61.479397) + (xy 155.401028 61.529185) (xy 155.426503 61.539737) (xy 155.426505 61.539737) (xy 155.42651 61.539739) + (xy 155.510279 61.556401) (xy 155.581153 61.570499) (xy 155.581156 61.5705) (xy 155.581158 61.5705) + (xy 155.738844 61.5705) (xy 155.738845 61.570499) (xy 155.893497 61.539737) (xy 156.039179 61.479394) + (xy 156.170289 61.391789) (xy 156.281789 61.280289) (xy 156.348286 61.18077) (xy 158.67912 61.18077) + (xy 158.67912 61.338468) (xy 158.709877 61.493091) (xy 158.709884 61.493122) (xy 158.770218 61.638785) + (xy 158.770223 61.638794) (xy 158.770228 61.638804) (xy 158.770233 61.638811) (xy 158.857831 61.76991) + (xy 158.857832 61.769911) (xy 158.857837 61.769917) (xy 158.969321 61.881401) (xy 158.969327 61.881406) + (xy 158.969331 61.881409) (xy 159.100434 61.96901) (xy 159.100447 61.969017) (xy 159.246118 62.029355) + (xy 159.246123 62.029357) (xy 159.400773 62.060119) (xy 159.400776 62.06012) (xy 159.400778 62.06012) + (xy 159.558464 62.06012) (xy 159.558465 62.060119) (xy 159.713117 62.029357) (xy 159.825034 61.983) + (xy 159.847777 61.97358) (xy 159.849522 61.972856) (xy 159.858792 61.969017) (xy 159.858792 61.969016) + (xy 159.858799 61.969014) (xy 159.858802 61.969011) (xy 159.861146 61.968041) (xy 159.870412 61.964202) + (xy 159.879298 61.955317) (xy 159.989909 61.881409) (xy 160.101409 61.769909) (xy 160.117023 61.746541) + (xy 160.189014 61.638799) (xy 160.189891 61.636683) (xy 160.20948 61.58939) (xy 160.230047 61.539737) + (xy 160.241553 61.511956) (xy 160.242534 61.510303) (xy 160.259558 61.481606) (xy 160.27607 61.461116) + (xy 160.325162 61.424367) (xy 160.452248 61.371727) (xy 160.455035 61.370755) (xy 160.45648 61.370087) + (xy 160.461145 61.368042) (xy 160.47041 61.364204) (xy 160.479295 61.355318) (xy 160.589909 61.281409) + (xy 160.640498 61.23082) (xy 160.701408 61.169911) (xy 160.715791 61.148384) (xy 160.787836 61.040561) + (xy 160.78901 61.038805) (xy 160.78901 61.038804) (xy 160.789014 61.038799) (xy 160.789016 61.038792) + (xy 160.789692 61.037782) (xy 160.791329 61.033209) (xy 160.849357 60.893117) (xy 160.88012 60.738462) + (xy 160.88012 60.580778) (xy 160.88012 60.580775) (xy 160.88012 60.580592) (xy 160.879686 60.578596) + (xy 160.874042 60.550222) (xy 160.849358 60.426126) (xy 160.849357 60.426123) (xy 160.839278 60.401789) + (xy 160.825991 60.369711) (xy 160.802312 60.312545) (xy 163.119238 60.312545) (xy 163.151417 60.474314) + (xy 163.151418 60.474318) (xy 163.151419 60.474321) (xy 163.151422 60.474331) (xy 163.151425 60.474339) + (xy 163.15143 60.474353) (xy 163.204218 60.601796) (xy 163.204223 60.601805) (xy 163.204233 60.601822) + (xy 163.280887 60.716542) (xy 163.280888 60.716543) (xy 163.280893 60.716549) (xy 163.378449 60.814105) + (xy 163.378455 60.81411) (xy 163.378459 60.814113) (xy 163.493183 60.89077) (xy 163.493196 60.890777) + (xy 163.620668 60.943577) (xy 163.620673 60.943579) (xy 163.620677 60.943579) (xy 163.620678 60.94358) + (xy 163.664958 60.952388) (xy 163.756003 60.970499) (xy 163.893996 60.970499) (xy 163.893997 60.970499) + (xy 163.910883 60.967139) (xy 163.985042 60.952388) (xy 164.029329 60.943579) (xy 164.151146 60.893121) + (xy 164.153503 60.892144) (xy 164.155028 60.891611) (xy 164.159165 60.889799) (xy 164.168423 60.885964) + (xy 164.177308 60.877078) (xy 164.271543 60.814113) (xy 164.369115 60.716541) (xy 164.445776 60.60181) + (xy 164.498581 60.474327) (xy 164.510827 60.412764) (xy 164.51301 60.40179) (xy 164.51301 60.401788) + (xy 164.513011 60.401786) (xy 164.525501 60.338994) (xy 164.525501 60.201003) (xy 164.525501 60.201) + (xy 164.498342 60.064468) (xy 164.496256 60.060058) (xy 164.48705 60.037833) (xy 164.487049 60.037831) + (xy 164.487049 60.03783) (xy 164.445779 59.938194) (xy 164.445772 59.938181) (xy 164.369115 59.823457) + (xy 164.369112 59.823453) (xy 164.369107 59.823447) (xy 164.271551 59.725891) (xy 164.271545 59.725886) + (xy 164.271544 59.725885) (xy 164.156824 59.649231) (xy 164.156823 59.64923) (xy 164.156818 59.649227) + (xy 164.156805 59.64922) (xy 164.156798 59.649216) (xy 164.029355 59.596428) (xy 164.029341 59.596423) + (xy 164.029333 59.59642) (xy 164.029323 59.596417) (xy 164.02932 59.596416) (xy 164.029316 59.596415) + (xy 163.893999 59.569499) (xy 163.893996 59.569499) (xy 163.893994 59.569499) (xy 163.756008 59.569499) + (xy 163.756006 59.569499) (xy 163.756001 59.569499) (xy 163.620684 59.596415) (xy 163.620678 59.596417) + (xy 163.620668 59.59642) (xy 163.620663 59.596421) (xy 163.620645 59.596428) (xy 163.493202 59.649216) + (xy 163.493193 59.649221) (xy 163.493176 59.649231) (xy 163.378456 59.725885) (xy 163.378455 59.725886) + (xy 163.378449 59.725891) (xy 163.280893 59.823447) (xy 163.280888 59.823453) (xy 163.280887 59.823454) + (xy 163.204233 59.938174) (xy 163.204223 59.938191) (xy 163.204218 59.9382) (xy 163.15143 60.065643) + (xy 163.151417 60.065682) (xy 163.124501 60.200999) (xy 163.124501 60.294625) (xy 163.119238 60.312545) + (xy 160.802312 60.312545) (xy 160.789017 60.280447) (xy 160.789011 60.280436) (xy 160.777898 60.263804) + (xy 160.777897 60.263803) (xy 160.701409 60.149331) (xy 160.701406 60.149327) (xy 160.701403 60.149324) + (xy 160.701401 60.149321) (xy 160.589917 60.037837) (xy 160.589911 60.037832) (xy 160.58991 60.037831) + (xy 160.458811 59.950233) (xy 160.45881 59.950232) (xy 160.458805 59.950229) (xy 160.458792 59.950222) + (xy 160.458785 59.950218) (xy 160.313122 59.889884) (xy 160.313091 59.889877) (xy 160.158467 59.85912) + (xy 160.158465 59.85912) (xy 160.158462 59.85912) (xy 160.000778 59.85912) (xy 160.000775 59.85912) + (xy 160.000773 59.85912) (xy 159.846147 59.889877) (xy 159.846116 59.889884) (xy 159.700453 59.950218) + (xy 159.700444 59.950223) (xy 159.700427 59.950233) (xy 159.569328 60.037831) (xy 159.569327 60.037832) + (xy 159.569321 60.037837) (xy 159.457837 60.149321) (xy 159.457832 60.149327) (xy 159.457831 60.149328) + (xy 159.370228 60.280435) (xy 159.317684 60.407286) (xy 159.303169 60.431749) (xy 159.299676 60.437636) + (xy 159.283173 60.458116) (xy 159.234073 60.494873) (xy 159.100438 60.550226) (xy 159.100436 60.550227) + (xy 158.969328 60.637831) (xy 158.969327 60.637832) (xy 158.969321 60.637837) (xy 158.857837 60.749321) + (xy 158.857832 60.749327) (xy 158.857831 60.749328) (xy 158.770233 60.880427) (xy 158.770223 60.880444) + (xy 158.770218 60.880453) (xy 158.709884 61.026116) (xy 158.709877 61.026147) (xy 158.67912 61.18077) + (xy 156.348286 61.18077) (xy 156.369394 61.149179) (xy 156.382749 61.116933) (xy 156.400751 61.086592) + (xy 156.41392 61.070249) (xy 156.461994 61.033924) (xy 156.468196 61.03129) (xy 156.492455 61.023813) + (xy 156.613497 60.999737) (xy 156.749073 60.94358) (xy 156.752635 60.942104) (xy 156.752642 60.942103) + (xy 156.755403 60.941141) (xy 156.756853 60.94047) (xy 156.761525 60.938421) (xy 156.770791 60.934582) + (xy 156.779675 60.925698) (xy 156.890289 60.851789) (xy 157.001789 60.740289) (xy 157.089394 60.609179) + (xy 157.09627 60.59258) (xy 157.109469 60.560713) (xy 157.149737 60.463497) (xy 157.174502 60.338995) + (xy 157.1805 60.308844) (xy 157.1805 60.150973) (xy 157.180065 60.148972) (xy 157.179914 60.148211) + (xy 157.163494 60.065666) (xy 157.163494 60.065663) (xy 157.149738 59.996509) (xy 157.149737 59.996503) + (xy 157.134366 59.959394) (xy 157.134364 59.95939) (xy 157.108016 59.895778) (xy 157.089397 59.850827) + (xy 157.08939 59.850814) (xy 157.001789 59.719711) (xy 157.001786 59.719707) (xy 157.001781 59.719701) + (xy 156.890297 59.608217) (xy 156.890291 59.608212) (xy 156.89029 59.608211) (xy 156.759191 59.520613) + (xy 156.75919 59.520612) (xy 156.759185 59.520609) (xy 156.759172 59.520602) (xy 156.759165 59.520598) + (xy 156.613502 59.460264) (xy 156.613471 59.460257) (xy 156.458847 59.4295) (xy 156.458845 59.4295) + (xy 156.458842 59.4295) (xy 156.301158 59.4295) (xy 156.301155 59.4295) (xy 156.301153 59.4295) + (xy 156.146527 59.460257) (xy 156.146496 59.460264) (xy 156.000833 59.520598) (xy 156.000824 59.520603) + (xy 156.000807 59.520613) (xy 155.869708 59.608211) (xy 155.869707 59.608212) (xy 155.869701 59.608217) + (xy 155.758217 59.719701) (xy 155.758212 59.719707) (xy 155.758211 59.719708) (xy 155.670606 59.850817) + (xy 155.65725 59.883063) (xy 155.643709 59.905885) (xy 155.639243 59.913412) (xy 155.626081 59.929746) + (xy 155.577999 59.966077) (xy 155.571811 59.968705) (xy 155.54753 59.976188) (xy 155.426514 60.000259) + (xy 155.426508 60.000261) (xy 155.426498 60.000264) (xy 155.426493 60.000265) (xy 155.426475 60.000272) + (xy 155.280833 60.060598) (xy 155.280824 60.060603) (xy 155.280807 60.060613) (xy 155.149708 60.148211) + (xy 155.149707 60.148212) (xy 155.149701 60.148217) (xy 155.038217 60.259701) (xy 155.038212 60.259707) + (xy 155.038211 60.259708) (xy 154.950613 60.390807) (xy 154.950603 60.390824) (xy 154.950598 60.390833) + (xy 154.890264 60.536496) (xy 154.890257 60.536527) (xy 154.8595 60.69115) (xy 154.8595 60.691153) + (xy 154.8595 60.848846) (xy 154.8595 60.848848) (xy 154.859499 60.848848) (xy 143.894438 60.848848) + (xy 143.894087 60.829215) (xy 143.898554 60.821983) (xy 143.930801 60.769774) (xy 143.9347 60.766271) + (xy 143.993374 60.736901) (xy 143.999575 60.735666) (xy 144.003104 60.734965) (xy 144.12907 60.709909) + (xy 144.274752 60.649566) (xy 144.296592 60.634973) (xy 144.375926 60.581964) (xy 144.38681 60.574691) + (xy 144.405862 60.561961) (xy 144.517362 60.450461) (xy 144.604967 60.319351) (xy 144.66531 60.173669) + (xy 144.696073 60.019014) (xy 144.696073 59.86133) (xy 144.696073 59.861327) (xy 144.696073 59.861145) + (xy 144.695642 59.859163) (xy 144.693986 59.85084) (xy 144.693981 59.850814) (xy 144.66531 59.706675) + (xy 144.648078 59.665073) (xy 144.60497 59.560999) (xy 144.604963 59.560986) (xy 144.517362 59.429883) + (xy 144.517359 59.429879) (xy 144.517354 59.429873) (xy 144.416329 59.328848) (xy 153.399499 59.328848) + (xy 153.430257 59.483471) (xy 153.430263 59.483496) (xy 153.430263 59.4835) (xy 153.490598 59.629165) + (xy 153.490603 59.629174) (xy 153.490613 59.629191) (xy 153.578211 59.76029) (xy 153.578212 59.760291) + (xy 153.578217 59.760297) (xy 153.689701 59.871781) (xy 153.689707 59.871786) (xy 153.689711 59.871789) + (xy 153.820814 59.95939) (xy 153.820822 59.959394) (xy 153.820833 59.9594) (xy 153.964766 60.019018) + (xy 153.964765 60.019018) (xy 153.966498 60.019735) (xy 153.966503 60.019737) (xy 154.121153 60.050499) + (xy 154.121156 60.0505) (xy 154.121158 60.0505) (xy 154.278844 60.0505) (xy 154.278845 60.050499) + (xy 154.433497 60.019737) (xy 154.579179 59.959394) (xy 154.710289 59.871789) (xy 154.821789 59.760289) + (xy 154.909394 59.629179) (xy 154.969737 59.483497) (xy 155.0005 59.328842) (xy 155.0005 59.171158) + (xy 155.0005 59.171155) (xy 155.0005 59.170971) (xy 155.000064 59.168966) (xy 154.986706 59.101811) + (xy 154.969737 59.016503) (xy 154.969734 59.016496) (xy 154.967151 59.01026) (xy 154.96715 59.010257) + (xy 154.930201 58.921053) (xy 154.909397 58.870827) (xy 154.90939 58.870814) (xy 154.821789 58.739711) + (xy 154.821786 58.739707) (xy 154.821781 58.739701) (xy 154.710297 58.628217) (xy 154.710291 58.628212) + (xy 154.71029 58.628211) (xy 154.651563 58.588971) (xy 154.579185 58.540609) (xy 154.579172 58.540602) + (xy 154.579165 58.540598) (xy 154.433502 58.480264) (xy 154.433471 58.480257) (xy 154.426388 58.478848) + (xy 159.659499 58.478848) (xy 159.690257 58.633471) (xy 159.690264 58.633502) (xy 159.750598 58.779165) + (xy 159.750603 58.779174) (xy 159.750613 58.779191) (xy 159.838211 58.91029) (xy 159.838212 58.910291) + (xy 159.838217 58.910297) (xy 159.949701 59.021781) (xy 159.949707 59.021786) (xy 159.949711 59.021789) + (xy 160.080814 59.10939) (xy 160.080827 59.109397) (xy 160.209084 59.162522) (xy 160.226503 59.169737) + (xy 160.367811 59.197845) (xy 160.373514 59.198979) (xy 160.376246 59.199703) (xy 160.381155 59.2005) + (xy 160.538844 59.2005) (xy 160.542964 59.2005) (xy 160.550814 59.198118) (xy 160.693497 59.169737) + (xy 160.839179 59.109394) (xy 160.970289 59.021789) (xy 161.081789 58.910289) (xy 161.147099 58.812546) + (xy 174.469235 58.812546) (xy 174.501414 58.974315) (xy 174.501415 58.974319) (xy 174.501416 58.974322) + (xy 174.501419 58.974332) (xy 174.501422 58.97434) (xy 174.501427 58.974354) (xy 174.554215 59.101797) + (xy 174.55422 59.101806) (xy 174.55423 59.101823) (xy 174.630884 59.216543) (xy 174.630885 59.216544) + (xy 174.63089 59.21655) (xy 174.728446 59.314106) (xy 174.728452 59.314111) (xy 174.728456 59.314114) + (xy 174.84318 59.390771) (xy 174.843193 59.390778) (xy 174.970665 59.443578) (xy 174.97067 59.44358) + (xy 174.970674 59.44358) (xy 174.970675 59.443581) (xy 175.014955 59.452389) (xy 175.106 59.4705) + (xy 175.243993 59.4705) (xy 175.243994 59.4705) (xy 175.289516 59.461444) (xy 175.335039 59.452389) + (xy 175.379326 59.44358) (xy 175.499018 59.394002) (xy 175.506802 59.390778) (xy 175.506802 59.390777) + (xy 175.506809 59.390775) (xy 175.62154 59.314114) (xy 175.719112 59.216542) (xy 175.795773 59.101811) + (xy 175.800993 59.08921) (xy 175.825884 59.029117) (xy 175.848578 58.974328) (xy 175.858725 58.923315) + (xy 175.874433 58.844348) (xy 175.875498 58.838996) (xy 175.875498 58.766404) (xy 186.586706 58.766404) + (xy 186.617464 58.921027) (xy 186.617471 58.921058) (xy 186.677805 59.066721) (xy 186.677809 59.066728) + (xy 186.677813 59.066736) (xy 186.67782 59.066747) (xy 186.765416 59.197843) (xy 186.765419 59.197847) + (xy 186.765424 59.197853) (xy 186.876908 59.309337) (xy 186.876914 59.309342) (xy 186.876918 59.309345) + (xy 187.008021 59.396946) (xy 187.008034 59.396953) (xy 187.120606 59.443581) (xy 187.15371 59.457293) + (xy 187.285446 59.483497) (xy 187.300727 59.486536) (xy 187.303455 59.487259) (xy 187.308362 59.488056) + (xy 187.466051 59.488056) (xy 187.470171 59.488056) (xy 187.478021 59.485674) (xy 187.620704 59.457293) + (xy 187.757041 59.400821) (xy 187.766379 59.396953) (xy 187.766379 59.396952) (xy 187.766386 59.39695) + (xy 187.766389 59.396947) (xy 187.768733 59.395977) (xy 187.777999 59.392138) (xy 187.786885 59.383253) + (xy 187.897496 59.309345) (xy 188.008998 59.197843) (xy 188.087383 59.080531) (xy 188.096601 59.066735) + (xy 188.101949 59.053825) (xy 188.110269 59.033733) (xy 188.110276 59.033724) (xy 188.110274 59.033723) + (xy 188.131786 58.981789) (xy 188.156944 58.921053) (xy 188.173266 58.838996) (xy 188.176762 58.821423) + (xy 188.183729 58.786397) (xy 188.185466 58.781474) (xy 188.195471 58.753113) (xy 188.200714 58.74309) + (xy 188.24923 58.692811) (xy 188.317227 58.676743) (xy 188.383113 58.699985) (xy 188.38706 58.702831) + (xy 188.418421 58.736973) (xy 188.418912 58.736646) (xy 188.508211 58.87029) (xy 188.508212 58.870291) + (xy 188.508217 58.870297) (xy 188.619701 58.981781) (xy 188.619707 58.981786) (xy 188.619711 58.981789) + (xy 188.750814 59.06939) (xy 188.750827 59.069397) (xy 188.896498 59.129735) (xy 188.896503 59.129737) + (xy 189.039661 59.158213) (xy 189.043534 59.158983) (xy 189.043538 59.158985) (xy 189.046245 59.159703) + (xy 189.051155 59.1605) (xy 189.208844 59.1605) (xy 189.212964 59.1605) (xy 189.220814 59.158118) + (xy 189.363497 59.129737) (xy 189.509179 59.069394) (xy 189.640289 58.981789) (xy 189.751789 58.870289) + (xy 189.839394 58.739179) (xy 189.899737 58.593497) (xy 189.9305 58.438842) (xy 189.9305 58.281158) + (xy 189.9305 58.281155) (xy 189.9305 58.280973) (xy 189.930065 58.278971) (xy 189.922371 58.240291) + (xy 189.904469 58.150291) (xy 189.899737 58.126503) (xy 189.896419 58.118493) (xy 189.894392 58.1136) + (xy 189.858052 58.025866) (xy 189.839397 57.980827) (xy 189.83939 57.980814) (xy 189.751789 57.849711) + (xy 189.751786 57.849707) (xy 189.751781 57.849701) (xy 189.640297 57.738217) (xy 189.640291 57.738212) + (xy 189.64029 57.738211) (xy 189.509191 57.650613) (xy 189.50919 57.650612) (xy 189.509185 57.650609) + (xy 189.509172 57.650602) (xy 189.509165 57.650598) (xy 189.363502 57.590264) (xy 189.363471 57.590257) + (xy 189.208847 57.5595) (xy 189.208845 57.5595) (xy 189.208842 57.5595) (xy 189.173797 57.5595) + (xy 189.173792 57.559499) (xy 189.17379 57.5595) (xy 189.138856 57.554475) (xy 189.123857 57.55007) + (xy 189.065088 57.512301) (xy 189.060276 57.506748) (xy 189.032369 57.449733) (xy 189.030179 57.438723) + (xy 189.030178 57.438722) (xy 189.030054 57.438099) (xy 189.029738 57.436508) (xy 189.029737 57.436507) + (xy 189.029737 57.436503) (xy 189.029736 57.4365) (xy 189.029497 57.435299) (xy 189.027416 57.4309) + (xy 189.021628 57.416926) (xy 188.969397 57.290827) (xy 188.96939 57.290814) (xy 188.881789 57.159711) + (xy 188.881786 57.159707) (xy 188.881781 57.159701) (xy 188.770297 57.048217) (xy 188.770291 57.048212) + (xy 188.77029 57.048211) (xy 188.639191 56.960613) (xy 188.63919 56.960612) (xy 188.639185 56.960609) + (xy 188.639172 56.960602) (xy 188.639165 56.960598) (xy 188.493502 56.900264) (xy 188.493471 56.900257) + (xy 188.338847 56.8695) (xy 188.338845 56.8695) (xy 188.338842 56.8695) (xy 188.181158 56.8695) + (xy 188.181155 56.8695) (xy 188.181153 56.8695) (xy 188.026527 56.900257) (xy 188.026496 56.900264) + (xy 187.880833 56.960598) (xy 187.880824 56.960603) (xy 187.880807 56.960613) (xy 187.749708 57.048211) + (xy 187.749707 57.048212) (xy 187.749701 57.048217) (xy 187.638217 57.159701) (xy 187.638212 57.159707) + (xy 187.638211 57.159708) (xy 187.550613 57.290807) (xy 187.550603 57.290824) (xy 187.550598 57.290833) + (xy 187.490264 57.436496) (xy 187.490257 57.436527) (xy 187.4595 57.59115) (xy 187.4595 57.740316) + (xy 187.457328 57.763424) (xy 187.453624 57.782952) (xy 187.421791 57.845149) (xy 187.364071 57.87957) + (xy 187.352156 57.882782) (xy 187.319881 57.887056) (xy 187.30836 57.887056) (xy 187.153734 57.917813) + (xy 187.153703 57.91782) (xy 187.00804 57.978154) (xy 187.008031 57.978159) (xy 187.008014 57.978169) + (xy 186.876915 58.065767) (xy 186.876914 58.065768) (xy 186.876908 58.065773) (xy 186.765424 58.177257) + (xy 186.765419 58.177263) (xy 186.765418 58.177264) (xy 186.67782 58.308363) (xy 186.67781 58.30838) + (xy 186.677805 58.308389) (xy 186.617471 58.454052) (xy 186.617464 58.454083) (xy 186.586707 58.608706) + (xy 186.586707 58.608709) (xy 186.586707 58.766402) (xy 186.586707 58.766404) (xy 186.586706 58.766404) + (xy 175.875498 58.766404) (xy 175.875498 58.701004) (xy 175.870672 58.676743) (xy 175.861019 58.628217) + (xy 175.860738 58.626802) (xy 175.860738 58.6268) (xy 175.860734 58.626779) (xy 175.860734 58.626778) + (xy 175.856489 58.605441) (xy 175.856488 58.605436) (xy 175.848579 58.565674) (xy 175.846797 58.561373) + (xy 175.838197 58.540609) (xy 175.821562 58.500448) (xy 175.795778 58.438199) (xy 175.795776 58.438195) + (xy 175.795774 58.438192) (xy 175.795769 58.438182) (xy 175.719112 58.323458) (xy 175.719109 58.323454) + (xy 175.719104 58.323448) (xy 175.621548 58.225892) (xy 175.621542 58.225887) (xy 175.621541 58.225886) + (xy 175.506821 58.149232) (xy 175.50682 58.149231) (xy 175.506815 58.149228) (xy 175.506802 58.149221) + (xy 175.506795 58.149217) (xy 175.379352 58.096429) (xy 175.379338 58.096424) (xy 175.37933 58.096421) + (xy 175.37932 58.096418) (xy 175.379317 58.096417) (xy 175.379313 58.096416) (xy 175.243996 58.0695) + (xy 175.243993 58.0695) (xy 175.243991 58.0695) (xy 175.106005 58.0695) (xy 175.106003 58.0695) + (xy 175.105998 58.0695) (xy 174.970681 58.096416) (xy 174.970675 58.096418) (xy 174.970665 58.096421) + (xy 174.97066 58.096422) (xy 174.970642 58.096429) (xy 174.843199 58.149217) (xy 174.84319 58.149222) + (xy 174.843173 58.149232) (xy 174.728453 58.225886) (xy 174.728452 58.225887) (xy 174.728446 58.225892) + (xy 174.63089 58.323448) (xy 174.630885 58.323454) (xy 174.630884 58.323455) (xy 174.55423 58.438175) + (xy 174.55422 58.438192) (xy 174.554219 58.438195) (xy 174.554216 58.4382) (xy 174.501427 58.565644) + (xy 174.501414 58.565683) (xy 174.474498 58.701) (xy 174.474498 58.794626) (xy 174.469235 58.812546) + (xy 161.147099 58.812546) (xy 161.169394 58.779179) (xy 161.229737 58.633497) (xy 161.2605 58.478842) + (xy 161.2605 58.321158) (xy 161.2605 58.321155) (xy 161.2605 58.320973) (xy 161.260065 58.318971) + (xy 161.254976 58.293387) (xy 161.246433 58.250439) (xy 161.229737 58.166503) (xy 161.216441 58.134403) + (xy 161.169397 58.020827) (xy 161.16939 58.020814) (xy 161.115615 57.940335) (xy 161.100387 57.908506) + (xy 161.097005 57.897706) (xy 161.09576 57.827849) (xy 161.13248 57.768406) (xy 161.195501 57.738254) + (xy 161.203088 57.737025) (xy 161.247099 57.737811) (xy 161.266119 57.741595) (xy 161.333175 57.754934) + (xy 161.361154 57.7605) (xy 161.518844 57.7605) (xy 161.522964 57.7605) (xy 161.530814 57.758118) + (xy 161.673497 57.729737) (xy 161.819179 57.669394) (xy 161.950289 57.581789) (xy 162.061789 57.470289) + (xy 162.121418 57.381048) (xy 162.149391 57.339184) (xy 162.149392 57.339181) (xy 162.149394 57.339179) + (xy 162.156702 57.321537) (xy 162.169128 57.291536) (xy 162.209737 57.193497) (xy 162.2405 57.038842) + (xy 162.2405 56.892546) (xy 166.044237 56.892546) (xy 166.076416 57.054315) (xy 166.076417 57.054319) + (xy 166.076418 57.054322) (xy 166.076421 57.054332) (xy 166.076424 57.05434) (xy 166.076429 57.054354) + (xy 166.129217 57.181797) (xy 166.129221 57.181804) (xy 166.129226 57.181814) (xy 166.129232 57.181823) + (xy 166.205886 57.296543) (xy 166.205887 57.296544) (xy 166.205892 57.29655) (xy 166.303448 57.394106) + (xy 166.303454 57.394111) (xy 166.303458 57.394114) (xy 166.418182 57.470771) (xy 166.418195 57.470778) + (xy 166.445478 57.482079) (xy 166.533589 57.518576) (xy 166.540051 57.521252) (xy 166.544467 57.52334) + (xy 166.54567 57.523579) (xy 166.545672 57.52358) (xy 166.545673 57.52358) (xy 166.545676 57.52358) + (xy 166.545677 57.523581) (xy 166.571859 57.528789) (xy 166.681001 57.5505) (xy 166.818995 57.5505) + (xy 166.818996 57.5505) (xy 166.864518 57.541444) (xy 166.910041 57.532389) (xy 166.954328 57.52358) + (xy 167.066868 57.476964) (xy 167.081804 57.470778) (xy 167.081804 57.470777) (xy 167.081811 57.470775) + (xy 167.170033 57.411826) (xy 167.20186 57.396599) (xy 167.216782 57.391926) (xy 167.286635 57.390679) + (xy 167.299774 57.394283) (xy 167.335851 57.410759) (xy 167.377701 57.438722) (xy 167.418185 57.465773) + (xy 167.418186 57.465773) (xy 167.418187 57.465774) (xy 167.418189 57.465775) (xy 167.418193 57.465777) + (xy 167.536175 57.514646) (xy 167.540051 57.516251) (xy 167.540052 57.516252) (xy 167.540067 57.516258) + (xy 167.540069 57.516259) (xy 167.544467 57.51834) (xy 167.680999 57.545499) (xy 167.818993 57.545499) + (xy 167.818994 57.545499) (xy 167.840218 57.541276) (xy 167.929184 57.52358) (xy 167.954326 57.518579) + (xy 168.069728 57.470778) (xy 168.07764 57.4675) (xy 168.079833 57.466696) (xy 168.084156 57.464801) + (xy 168.093421 57.460963) (xy 168.102307 57.452078) (xy 168.154915 57.416926) (xy 168.19654 57.389113) + (xy 168.241203 57.34445) (xy 168.294111 57.291543) (xy 168.294115 57.291536) (xy 168.294592 57.290822) + (xy 168.370773 57.17681) (xy 168.372403 57.172873) (xy 168.390401 57.142535) (xy 168.397503 57.133723) + (xy 168.454888 57.093872) (xy 168.524713 57.091372) (xy 168.584803 57.127017) (xy 168.590033 57.132635) + (xy 168.613844 57.169681) (xy 168.627034 57.201523) (xy 168.629225 57.206812) (xy 168.629226 57.206814) + (xy 168.705886 57.321543) (xy 168.705887 57.321544) (xy 168.705892 57.32155) (xy 168.803448 57.419106) + (xy 168.803454 57.419111) (xy 168.803458 57.419114) (xy 168.918182 57.495771) (xy 168.918195 57.495778) + (xy 169.029277 57.541789) (xy 169.040062 57.546256) (xy 169.040064 57.546258) (xy 169.044469 57.548341) + (xy 169.181001 57.5755) (xy 169.318995 57.5755) (xy 169.318996 57.5755) (xy 169.391135 57.56115) + (xy 169.44004 57.551422) (xy 169.454328 57.54858) (xy 169.552924 57.50774) (xy 169.577033 57.497753) + (xy 169.578806 57.497083) (xy 169.579019 57.497066) (xy 169.579487 57.49685) (xy 169.584164 57.494799) + (xy 169.593424 57.490963) (xy 169.602309 57.482079) (xy 169.667195 57.438723) (xy 169.696542 57.419114) + (xy 169.794114 57.321542) (xy 169.870775 57.206811) (xy 169.878617 57.187877) (xy 169.896623 57.157531) + (xy 169.903724 57.148719) (xy 169.961115 57.108872) (xy 170.030941 57.106379) (xy 170.091027 57.14203) + (xy 170.095235 57.146549) (xy 170.096254 57.147643) (xy 170.12006 57.184686) (xy 170.129221 57.206804) + (xy 170.129226 57.206814) (xy 170.129232 57.206823) (xy 170.205886 57.321543) (xy 170.205887 57.321544) + (xy 170.205892 57.32155) (xy 170.303448 57.419106) (xy 170.303454 57.419111) (xy 170.303458 57.419114) + (xy 170.418182 57.495771) (xy 170.418195 57.495778) (xy 170.529277 57.541789) (xy 170.540062 57.546256) + (xy 170.540064 57.546258) (xy 170.544469 57.548341) (xy 170.681001 57.5755) (xy 170.818995 57.5755) + (xy 170.818996 57.5755) (xy 170.891135 57.56115) (xy 170.94004 57.551422) (xy 170.954328 57.54858) + (xy 171.052924 57.50774) (xy 171.077033 57.497753) (xy 171.078806 57.497083) (xy 171.079019 57.497066) + (xy 171.079487 57.49685) (xy 171.084164 57.494799) (xy 171.093421 57.490964) (xy 171.102304 57.482081) + (xy 171.184999 57.426826) (xy 171.186765 57.425982) (xy 171.216826 57.411599) (xy 171.231752 57.406925) + (xy 171.301597 57.405678) (xy 171.314736 57.409282) (xy 171.350819 57.42576) (xy 171.418182 57.470771) + (xy 171.418195 57.470778) (xy 171.445478 57.482079) (xy 171.533589 57.518576) (xy 171.540051 57.521252) + (xy 171.544467 57.52334) (xy 171.54567 57.523579) (xy 171.545672 57.52358) (xy 171.545673 57.52358) + (xy 171.545676 57.52358) (xy 171.545677 57.523581) (xy 171.571859 57.528789) (xy 171.681001 57.5505) + (xy 171.818995 57.5505) (xy 171.818996 57.5505) (xy 171.864518 57.541444) (xy 171.910041 57.532389) + (xy 171.954328 57.52358) (xy 172.066868 57.476964) (xy 172.081804 57.470778) (xy 172.081804 57.470777) + (xy 172.081811 57.470775) (xy 172.196542 57.394114) (xy 172.294114 57.296542) (xy 172.370775 57.181811) + (xy 172.372847 57.17681) (xy 172.392345 57.129737) (xy 172.42358 57.054328) (xy 172.441905 56.962205) + (xy 172.448192 56.930598) (xy 172.4505 56.918997) (xy 172.4505 56.781002) (xy 172.434387 56.7) (xy 190.45 56.7) + (xy 190.45 58.1) (xy 193.460177 58.1) (xy 193.495112 58.105023) (xy 193.51011 58.109427) (xy 193.568885 58.147199) + (xy 193.573203 58.152182) (xy 193.601965 58.213989) (xy 193.626048 58.366043) (xy 193.63029 58.392826) + (xy 193.691117 58.580029) (xy 193.736285 58.668675) (xy 193.772204 58.739172) (xy 193.777132 58.748842) + (xy 193.780476 58.755405) (xy 193.896172 58.914646) (xy 194.035354 59.053828) (xy 194.194595 59.169524) + (xy 194.277455 59.211743) (xy 194.362916 59.255288) (xy 194.363521 59.255596) (xy 194.365124 59.256534) + (xy 194.368823 59.258326) (xy 194.370831 59.259324) (xy 194.374597 59.260386) (xy 194.38143 59.262606) + (xy 194.470315 59.291486) (xy 194.470316 59.291487) (xy 194.492031 59.298542) (xy 194.557173 59.319709) + (xy 194.751578 59.3505) (xy 194.751583 59.3505) (xy 194.948421 59.3505) (xy 194.948422 59.3505) + (xy 195.142826 59.319709) (xy 195.14691 59.318382) (xy 195.330025 59.258884) (xy 195.505405 59.169524) + (xy 195.664646 59.053828) (xy 195.749714 58.968758) (xy 195.7662 58.954915) (xy 195.773943 58.949485) + (xy 195.776947 58.948469) (xy 195.777984 58.947599) (xy 195.781974 58.945421) (xy 195.782458 58.946307) + (xy 195.796714 58.93785) (xy 195.796408 58.937179) (xy 195.799175 58.935915) (xy 195.800233 58.935762) + (xy 195.801819 58.934822) (xy 195.804611 58.933781) (xy 195.805089 58.935063) (xy 195.819838 58.932941) + (xy 195.828776 58.928064) (xy 195.835816 58.928569) (xy 195.840133 58.92711) (xy 195.84752 58.928958) + (xy 195.862378 58.92682) (xy 195.862476 58.925447) (xy 195.863873 58.925546) (xy 195.865926 58.92631) + (xy 195.868332 58.925964) (xy 195.868337 58.925965) (xy 195.87135 58.926398) (xy 195.871086 58.928231) + (xy 195.880632 58.931784) (xy 195.898466 58.933064) (xy 195.92925 58.949881) (xy 195.92935 58.949918) + (xy 195.930603 58.950856) (xy 195.943952 58.962426) (xy 196.000574 59.019048) (xy 196.021724 59.0473) + (xy 196.025283 59.053818) (xy 196.033786 59.06939) (xy 196.034331 59.070387) (xy 196.0495 59.129816) + (xy 196.0495 59.178846) (xy 196.0495 59.178848) (xy 196.049499 59.178848) (xy 196.080257 59.333471) + (xy 196.080264 59.333502) (xy 196.140598 59.479165) (xy 196.140603 59.479174) (xy 196.140613 59.479191) + (xy 196.228211 59.61029) (xy 196.228212 59.610291) (xy 196.228217 59.610297) (xy 196.339701 59.721781) + (xy 196.339707 59.721786) (xy 196.339711 59.721789) (xy 196.470814 59.80939) (xy 196.470827 59.809397) + (xy 196.616498 59.869735) (xy 196.616503 59.869737) (xy 196.766292 59.899532) (xy 196.771153 59.900499) + (xy 196.771156 59.9005) (xy 196.771158 59.9005) (xy 196.928844 59.9005) (xy 196.928845 59.900499) + (xy 197.083497 59.869737) (xy 197.229179 59.809394) (xy 197.360289 59.721789) (xy 197.471789 59.610289) + (xy 197.559394 59.479179) (xy 197.619737 59.333497) (xy 197.6505 59.178842) (xy 197.6505 59.137163) + (xy 197.654763 59.104927) (xy 197.655121 59.103595) (xy 197.659144 59.089895) (xy 197.66055 59.083428) + (xy 197.661331 59.080531) (xy 197.678032 59.053203) (xy 197.693379 59.025094) (xy 197.749714 58.968759) + (xy 197.777964 58.947611) (xy 197.791688 58.940117) (xy 197.859946 58.925266) (xy 197.861756 58.925395) + (xy 197.919953 58.944761) (xy 197.926471 58.94895) (xy 197.947106 58.96558) (xy 198.035354 59.053828) + (xy 198.194595 59.169524) (xy 198.277455 59.211743) (xy 198.362916 59.255288) (xy 198.363521 59.255596) + (xy 198.365124 59.256534) (xy 198.368823 59.258326) (xy 198.370831 59.259324) (xy 198.374597 59.260386) + (xy 198.38143 59.262606) (xy 198.470315 59.291486) (xy 198.470316 59.291487) (xy 198.492031 59.298542) + (xy 198.557173 59.319709) (xy 198.751578 59.3505) (xy 198.751583 59.3505) (xy 198.948421 59.3505) + (xy 198.948422 59.3505) (xy 199.142826 59.319709) (xy 199.14691 59.318382) (xy 199.330025 59.258884) + (xy 199.505405 59.169524) (xy 199.664646 59.053828) (xy 199.749717 58.968756) (xy 199.777964 58.947611) + (xy 199.791688 58.940117) (xy 199.859946 58.925266) (xy 199.861756 58.925395) (xy 199.919953 58.944761) + (xy 199.926471 58.94895) (xy 199.947106 58.96558) (xy 200.035354 59.053828) (xy 200.194595 59.169524) + (xy 200.277455 59.211743) (xy 200.362916 59.255288) (xy 200.363521 59.255596) (xy 200.365124 59.256534) + (xy 200.368823 59.258326) (xy 200.370831 59.259324) (xy 200.374597 59.260386) (xy 200.38143 59.262606) + (xy 200.470315 59.291486) (xy 200.470316 59.291487) (xy 200.492031 59.298542) (xy 200.557173 59.319709) + (xy 200.751578 59.3505) (xy 200.751583 59.3505) (xy 200.948421 59.3505) (xy 200.948422 59.3505) + (xy 201.142826 59.319709) (xy 201.14691 59.318382) (xy 201.330025 59.258884) (xy 201.505405 59.169524) + (xy 201.664646 59.053828) (xy 201.749717 58.968756) (xy 201.777964 58.947611) (xy 201.791688 58.940117) + (xy 201.859946 58.925266) (xy 201.861756 58.925395) (xy 201.919953 58.944761) (xy 201.926471 58.94895) + (xy 201.947106 58.96558) (xy 202.035354 59.053828) (xy 202.194595 59.169524) (xy 202.277455 59.211743) + (xy 202.362916 59.255288) (xy 202.363521 59.255596) (xy 202.365124 59.256534) (xy 202.368823 59.258326) + (xy 202.370831 59.259324) (xy 202.374597 59.260386) (xy 202.38143 59.262606) (xy 202.470315 59.291486) + (xy 202.470316 59.291487) (xy 202.492031 59.298542) (xy 202.557173 59.319709) (xy 202.751578 59.3505) + (xy 202.751583 59.3505) (xy 202.948421 59.3505) (xy 202.948422 59.3505) (xy 203.142826 59.319709) + (xy 203.14691 59.318382) (xy 203.330025 59.258884) (xy 203.505405 59.169524) (xy 203.664646 59.053828) + (xy 203.803828 58.914646) (xy 203.919524 58.755405) (xy 204.008884 58.580025) (xy 204.069709 58.392826) + (xy 204.071583 58.380996) (xy 204.071584 58.38099) (xy 204.080696 58.323458) (xy 204.096733 58.2222) + (xy 204.107156 58.188495) (xy 204.113855 58.174363) (xy 204.160361 58.12222) (xy 204.160364 58.122218) + (xy 204.16596 58.118734) (xy 204.231497 58.1) (xy 204.25 58.1) (xy 204.25 56.7) (xy 201.239824 56.7) + (xy 201.239819 56.699999) (xy 201.239817 56.7) (xy 201.204883 56.694975) (xy 201.189884 56.69057) + (xy 201.131114 56.6528) (xy 201.126796 56.647817) (xy 201.098034 56.58601) (xy 201.096732 56.577787) + (xy 201.069709 56.407173) (xy 201.044922 56.330888) (xy 201.041487 56.320316) (xy 201.018839 56.250613) + (xy 201.008884 56.219975) (xy 201.008882 56.219972) (xy 201.008882 56.21997) (xy 201.006644 56.215579) + (xy 201.006333 56.21478) (xy 201.005596 56.213521) (xy 201.001851 56.206172) (xy 200.956661 56.117481) + (xy 200.925725 56.056765) (xy 200.919525 56.044596) (xy 200.897197 56.013865) (xy 200.803828 55.885354) + (xy 200.664646 55.746172) (xy 200.505405 55.630476) (xy 200.445663 55.600036) (xy 200.330029 55.541117) + (xy 200.142826 55.48029) (xy 200.128273 55.477985) (xy 199.948427 55.4495) (xy 199.948422 55.4495) + (xy 199.948417 55.4495) (xy 199.751583 55.4495) (xy 199.751578 55.4495) (xy 199.751573 55.4495) + (xy 199.557178 55.480289) (xy 199.557176 55.480289) (xy 199.557173 55.48029) (xy 199.36997 55.541117) + (xy 199.333929 55.559481) (xy 199.194594 55.630475) (xy 199.139065 55.670821) (xy 199.139064 55.670821) + (xy 199.047225 55.737546) (xy 199.039843 55.74168) (xy 198.950285 55.831239) (xy 198.922027 55.852392) + (xy 198.908309 55.859882) (xy 198.890892 55.863671) (xy 198.875255 55.872212) (xy 198.840051 55.874733) + (xy 198.838245 55.874604) (xy 198.780044 55.855236) (xy 198.773529 55.851049) (xy 198.752893 55.834419) + (xy 198.664648 55.746174) (xy 198.664646 55.746172) (xy 198.505405 55.630476) (xy 198.445663 55.600036) + (xy 198.330029 55.541117) (xy 198.142826 55.48029) (xy 198.128273 55.477985) (xy 197.948427 55.4495) + (xy 197.948422 55.4495) (xy 197.948417 55.4495) (xy 197.751583 55.4495) (xy 197.751578 55.4495) + (xy 197.751573 55.4495) (xy 197.557178 55.480289) (xy 197.557176 55.480289) (xy 197.557173 55.48029) + (xy 197.36997 55.541117) (xy 197.333929 55.559481) (xy 197.194594 55.630475) (xy 197.139065 55.670821) + (xy 197.139064 55.670821) (xy 197.047225 55.737546) (xy 197.039843 55.74168) (xy 196.950285 55.831239) + (xy 196.922027 55.852392) (xy 196.908309 55.859882) (xy 196.890892 55.863671) (xy 196.875255 55.872212) + (xy 196.840051 55.874733) (xy 196.838245 55.874604) (xy 196.780044 55.855236) (xy 196.773529 55.851049) + (xy 196.752893 55.834419) (xy 196.664648 55.746174) (xy 196.664646 55.746172) (xy 196.505405 55.630476) + (xy 196.445663 55.600036) (xy 196.330029 55.541117) (xy 196.142826 55.48029) (xy 196.128273 55.477985) + (xy 195.948427 55.4495) (xy 195.948422 55.4495) (xy 195.948417 55.4495) (xy 195.751583 55.4495) + (xy 195.751578 55.4495) (xy 195.751573 55.4495) (xy 195.557178 55.480289) (xy 195.557176 55.480289) + (xy 195.557173 55.48029) (xy 195.36997 55.541117) (xy 195.333929 55.559481) (xy 195.194594 55.630475) + (xy 195.139065 55.670821) (xy 195.139064 55.670821) (xy 195.047225 55.737546) (xy 195.039843 55.74168) + (xy 194.950285 55.831239) (xy 194.922027 55.852392) (xy 194.908309 55.859882) (xy 194.890892 55.863671) + (xy 194.875255 55.872212) (xy 194.840051 55.874733) (xy 194.838245 55.874604) (xy 194.780044 55.855236) + (xy 194.773529 55.851049) (xy 194.752893 55.834419) (xy 194.664648 55.746174) (xy 194.664646 55.746172) + (xy 194.505405 55.630476) (xy 194.445663 55.600036) (xy 194.330029 55.541117) (xy 194.142826 55.48029) + (xy 194.128273 55.477985) (xy 193.948427 55.4495) (xy 193.948422 55.4495) (xy 193.948417 55.4495) + (xy 193.751583 55.4495) (xy 193.751578 55.4495) (xy 193.751573 55.4495) (xy 193.557178 55.480289) + (xy 193.557176 55.480289) (xy 193.557173 55.48029) (xy 193.36997 55.541117) (xy 193.333929 55.559481) + (xy 193.194594 55.630475) (xy 193.139065 55.670821) (xy 193.047225 55.737547) (xy 193.039844 55.74168) + (xy 192.891679 55.889845) (xy 192.887545 55.897228) (xy 192.876967 55.911785) (xy 192.876968 55.911786) + (xy 192.780476 56.044594) (xy 192.780475 56.044596) (xy 192.780472 56.044601) (xy 192.743338 56.117481) + (xy 192.691117 56.21997) (xy 192.665695 56.29821) (xy 192.630288 56.407178) (xy 192.603268 56.577786) + (xy 192.603267 56.577787) (xy 192.603268 56.57779) (xy 192.592841 56.611509) (xy 192.586144 56.625635) + (xy 192.539657 56.677767) (xy 192.534062 56.681252) (xy 192.468503 56.7) (xy 190.45 56.7) (xy 172.434387 56.7) + (xy 172.428982 56.672831) (xy 172.428982 56.67283) (xy 172.428775 56.671789) (xy 172.42358 56.645672) + (xy 172.421509 56.640671) (xy 172.412117 56.617997) (xy 172.370781 56.518201) (xy 172.370776 56.518192) + (xy 172.370771 56.518182) (xy 172.294114 56.403458) (xy 172.294111 56.403454) (xy 172.294106 56.403448) + (xy 172.19655 56.305892) (xy 172.196544 56.305887) (xy 172.196543 56.305886) (xy 172.081823 56.229232) + (xy 172.081822 56.229231) (xy 172.081817 56.229228) (xy 172.081804 56.229221) (xy 172.081797 56.229217) + (xy 171.954354 56.176429) (xy 171.95434 56.176424) (xy 171.954332 56.176421) (xy 171.954322 56.176418) + (xy 171.954319 56.176417) (xy 171.954315 56.176416) (xy 171.818998 56.1495) (xy 171.818995 56.1495) + (xy 171.818993 56.1495) (xy 171.681007 56.1495) (xy 171.681005 56.1495) (xy 171.681 56.1495) (xy 171.545683 56.176416) + (xy 171.545677 56.176418) (xy 171.545667 56.176421) (xy 171.545662 56.176422) (xy 171.545644 56.176429) + (xy 171.4182 56.229217) (xy 171.41819 56.229222) (xy 171.418182 56.229227) (xy 171.418181 56.229227) + (xy 171.315007 56.298167) (xy 171.315006 56.298168) (xy 171.285883 56.312101) (xy 171.283168 56.3134) + (xy 171.26825 56.318071) (xy 171.198391 56.319317) (xy 171.185258 56.315714) (xy 171.149174 56.299235) + (xy 171.14765 56.298217) (xy 171.081817 56.254228) (xy 171.081804 56.254221) (xy 171.081797 56.254217) + (xy 170.954354 56.201429) (xy 170.95434 56.201424) (xy 170.954332 56.201421) (xy 170.954322 56.201418) + (xy 170.954319 56.201417) (xy 170.954315 56.201416) (xy 170.818998 56.1745) (xy 170.818995 56.1745) + (xy 170.818993 56.1745) (xy 170.681007 56.1745) (xy 170.681005 56.1745) (xy 170.681 56.1745) (xy 170.545683 56.201416) + (xy 170.545677 56.201418) (xy 170.545667 56.201421) (xy 170.545662 56.201422) (xy 170.545644 56.201429) + (xy 170.418201 56.254217) (xy 170.418192 56.254222) (xy 170.418175 56.254232) (xy 170.303455 56.330886) + (xy 170.303454 56.330887) (xy 170.303448 56.330892) (xy 170.205892 56.428448) (xy 170.205887 56.428454) + (xy 170.205886 56.428455) (xy 170.129225 56.543186) (xy 170.129216 56.543206) (xy 170.121382 56.562119) + (xy 170.105294 56.589235) (xy 170.103375 56.592469) (xy 170.096279 56.601275) (xy 170.038888 56.641125) + (xy 169.969063 56.64362) (xy 169.908973 56.607969) (xy 169.903745 56.602354) (xy 169.879937 56.565308) + (xy 169.872461 56.547259) (xy 169.871477 56.544625) (xy 169.870776 56.543192) (xy 169.870775 56.543189) + (xy 169.870773 56.543186) (xy 169.870771 56.543182) (xy 169.794114 56.428458) (xy 169.794111 56.428454) + (xy 169.794106 56.428448) (xy 169.69655 56.330892) (xy 169.696544 56.330887) (xy 169.696543 56.330886) + (xy 169.581823 56.254232) (xy 169.581822 56.254231) (xy 169.581817 56.254228) (xy 169.581804 56.254221) + (xy 169.581797 56.254217) (xy 169.454354 56.201429) (xy 169.45434 56.201424) (xy 169.454332 56.201421) + (xy 169.454322 56.201418) (xy 169.454319 56.201417) (xy 169.454315 56.201416) (xy 169.318998 56.1745) + (xy 169.318995 56.1745) (xy 169.318993 56.1745) (xy 169.181007 56.1745) (xy 169.181005 56.1745) + (xy 169.181 56.1745) (xy 169.045683 56.201416) (xy 169.045677 56.201418) (xy 169.045667 56.201421) + (xy 169.045662 56.201422) (xy 169.045644 56.201429) (xy 168.918201 56.254217) (xy 168.918192 56.254222) + (xy 168.918175 56.254232) (xy 168.803455 56.330886) (xy 168.803454 56.330887) (xy 168.803448 56.330892) + (xy 168.705892 56.428448) (xy 168.705887 56.428454) (xy 168.705886 56.428455) (xy 168.629226 56.543185) + (xy 168.629224 56.543189) (xy 168.62759 56.547132) (xy 168.609583 56.577477) (xy 168.602487 56.586282) + (xy 168.545093 56.626129) (xy 168.475268 56.62862) (xy 168.415185 56.59297) (xy 168.415182 56.592967) + (xy 168.41518 56.592966) (xy 168.415178 56.592963) (xy 168.409958 56.587356) (xy 168.386149 56.550309) + (xy 168.383201 56.543192) (xy 168.37285 56.518201) (xy 168.370778 56.513198) (xy 168.370774 56.513191) + (xy 168.370769 56.513181) (xy 168.294112 56.398457) (xy 168.294109 56.398453) (xy 168.294104 56.398447) + (xy 168.196548 56.300891) (xy 168.196542 56.300886) (xy 168.196541 56.300885) (xy 168.081821 56.224231) + (xy 168.08182 56.22423) (xy 168.081815 56.224227) (xy 168.081802 56.22422) (xy 168.081795 56.224216) + (xy 167.954352 56.171428) (xy 167.954338 56.171423) (xy 167.95433 56.17142) (xy 167.95432 56.171417) + (xy 167.954317 56.171416) (xy 167.954313 56.171415) (xy 167.818996 56.144499) (xy 167.818993 56.144499) + (xy 167.818991 56.144499) (xy 167.681005 56.144499) (xy 167.681003 56.144499) (xy 167.680998 56.144499) + (xy 167.545681 56.171415) (xy 167.545675 56.171417) (xy 167.545665 56.17142) (xy 167.54566 56.171421) + (xy 167.545642 56.171428) (xy 167.418198 56.224216) (xy 167.418188 56.224221) (xy 167.41818 56.224226) + (xy 167.418179 56.224226) (xy 167.329971 56.283166) (xy 167.32997 56.283167) (xy 167.304553 56.295327) + (xy 167.298132 56.298399) (xy 167.283214 56.30307) (xy 167.213355 56.304316) (xy 167.200222 56.300713) + (xy 167.164138 56.284234) (xy 167.113806 56.250603) (xy 167.081817 56.229228) (xy 167.081804 56.229221) + (xy 167.081797 56.229217) (xy 166.954354 56.176429) (xy 166.95434 56.176424) (xy 166.954332 56.176421) + (xy 166.954322 56.176418) (xy 166.954319 56.176417) (xy 166.954315 56.176416) (xy 166.818998 56.1495) + (xy 166.818995 56.1495) (xy 166.818993 56.1495) (xy 166.681007 56.1495) (xy 166.681005 56.1495) + (xy 166.681 56.1495) (xy 166.545683 56.176416) (xy 166.545677 56.176418) (xy 166.545667 56.176421) + (xy 166.545662 56.176422) (xy 166.545644 56.176429) (xy 166.418201 56.229217) (xy 166.418192 56.229222) + (xy 166.418175 56.229232) (xy 166.303455 56.305886) (xy 166.303454 56.305887) (xy 166.303448 56.305892) + (xy 166.205892 56.403448) (xy 166.205887 56.403454) (xy 166.205886 56.403455) (xy 166.129232 56.518175) + (xy 166.129222 56.518192) (xy 166.129217 56.518201) (xy 166.076429 56.645644) (xy 166.076416 56.645683) + (xy 166.0495 56.781) (xy 166.0495 56.874626) (xy 166.044237 56.892546) (xy 162.2405 56.892546) (xy 162.2405 56.881158) + (xy 162.2405 56.881155) (xy 162.22499 56.803184) (xy 162.224987 56.803166) (xy 162.215578 56.755866) + (xy 162.215578 56.755865) (xy 162.212256 56.739165) (xy 162.209737 56.726503) (xy 162.195241 56.691507) + (xy 162.193171 56.68651) (xy 162.162333 56.612059) (xy 162.149397 56.580827) (xy 162.14939 56.580814) + (xy 162.061789 56.449711) (xy 162.061786 56.449707) (xy 162.061781 56.449701) (xy 161.950297 56.338217) + (xy 161.950291 56.338212) (xy 161.95029 56.338211) (xy 161.819191 56.250613) (xy 161.81919 56.250612) + (xy 161.819185 56.250609) (xy 161.819172 56.250602) (xy 161.819165 56.250598) (xy 161.673502 56.190264) + (xy 161.673471 56.190257) (xy 161.518847 56.1595) (xy 161.518845 56.1595) (xy 161.518842 56.1595) + (xy 161.361158 56.1595) (xy 161.361155 56.1595) (xy 161.361153 56.1595) (xy 161.206527 56.190257) + (xy 161.206496 56.190264) (xy 161.060833 56.250598) (xy 161.060824 56.250603) (xy 161.060807 56.250613) + (xy 160.929708 56.338211) (xy 160.929707 56.338212) (xy 160.929701 56.338217) (xy 160.818217 56.449701) + (xy 160.818212 56.449707) (xy 160.818211 56.449708) (xy 160.730613 56.580807) (xy 160.730603 56.580824) + (xy 160.730598 56.580833) (xy 160.670264 56.726496) (xy 160.670257 56.726527) (xy 160.6395 56.88115) + (xy 160.6395 56.881153) (xy 160.6395 57.038846) (xy 160.6395 57.038848) (xy 160.639499 57.038848) + (xy 160.670257 57.193471) (xy 160.670264 57.193501) (xy 160.730598 57.339165) (xy 160.730602 57.339172) + (xy 160.730609 57.339185) (xy 160.730613 57.339191) (xy 160.730619 57.339201) (xy 160.784378 57.419657) + (xy 160.795662 57.443239) (xy 160.799608 57.451485) (xy 160.802989 57.46228) (xy 160.804241 57.532139) + (xy 160.767526 57.591585) (xy 160.704501 57.621743) (xy 160.696922 57.622971) (xy 160.652895 57.622186) + (xy 160.641357 57.619891) (xy 160.636857 57.618995) (xy 160.538847 57.5995) (xy 160.538845 57.5995) + (xy 160.538842 57.5995) (xy 160.381158 57.5995) (xy 160.381155 57.5995) (xy 160.381153 57.5995) + (xy 160.226527 57.630257) (xy 160.226496 57.630264) (xy 160.080833 57.690598) (xy 160.080824 57.690603) + (xy 160.080807 57.690613) (xy 159.949708 57.778211) (xy 159.949707 57.778212) (xy 159.949701 57.778217) + (xy 159.838217 57.889701) (xy 159.838212 57.889707) (xy 159.838211 57.889708) (xy 159.750613 58.020807) + (xy 159.750603 58.020824) (xy 159.750598 58.020833) (xy 159.690264 58.166496) (xy 159.690257 58.166527) + (xy 159.6595 58.32115) (xy 159.6595 58.321153) (xy 159.6595 58.478846) (xy 159.6595 58.478848) (xy 159.659499 58.478848) + (xy 154.426388 58.478848) (xy 154.278847 58.4495) (xy 154.278845 58.4495) (xy 154.278842 58.4495) + (xy 154.121158 58.4495) (xy 154.121155 58.4495) (xy 154.121153 58.4495) (xy 153.966527 58.480257) + (xy 153.966496 58.480264) (xy 153.820833 58.540598) (xy 153.820824 58.540603) (xy 153.820819 58.540606) + (xy 153.820814 58.540609) (xy 153.768443 58.575602) (xy 153.689708 58.628211) (xy 153.689707 58.628212) + (xy 153.689701 58.628217) (xy 153.578217 58.739701) (xy 153.578212 58.739707) (xy 153.578211 58.739708) + (xy 153.490613 58.870807) (xy 153.490603 58.870824) (xy 153.490598 58.870833) (xy 153.430264 59.016496) + (xy 153.430257 59.016527) (xy 153.3995 59.17115) (xy 153.3995 59.171153) (xy 153.3995 59.328846) + (xy 153.3995 59.328848) (xy 153.399499 59.328848) (xy 144.416329 59.328848) (xy 144.40587 59.318389) + (xy 144.405864 59.318384) (xy 144.405857 59.318379) (xy 144.330711 59.268168) (xy 144.330667 59.268137) + (xy 144.274774 59.230791) (xy 144.274764 59.230785) (xy 144.274758 59.230781) (xy 144.274745 59.230774) + (xy 144.274738 59.23077) (xy 144.129075 59.170436) (xy 144.129044 59.170429) (xy 143.97442 59.139672) + (xy 143.974418 59.139672) (xy 143.974415 59.139672) (xy 143.816731 59.139672) (xy 143.816728 59.139672) + (xy 143.816725 59.139672) (xy 143.688037 59.165269) (xy 143.688035 59.16527) (xy 143.688033 59.165271) + (xy 143.652792 59.167159) (xy 143.626589 59.164814) (xy 143.568751 59.14441) (xy 143.458307 59.070613) + (xy 143.458306 59.070612) (xy 143.458301 59.070609) (xy 143.458288 59.070602) (xy 143.458281 59.070598) + (xy 143.312618 59.010264) (xy 143.312587 59.010257) (xy 143.157963 58.9795) (xy 143.157961 58.9795) + (xy 143.157958 58.9795) (xy 143.000274 58.9795) (xy 143.000271 58.9795) (xy 143.000269 58.9795) + (xy 142.845643 59.010257) (xy 142.845612 59.010264) (xy 142.699949 59.070598) (xy 142.69994 59.070603) + (xy 142.699923 59.070613) (xy 142.568827 59.15821) (xy 142.568825 59.158211) (xy 142.56882 59.158215) + (xy 142.457333 59.269701) (xy 142.457328 59.269707) (xy 142.457327 59.269708) (xy 142.369729 59.400807) + (xy 142.369716 59.400829) (xy 142.369715 59.400831) (xy 142.30938 59.546496) (xy 142.309373 59.546527) + (xy 142.278616 59.70115) (xy 142.278616 59.701153) (xy 142.278616 59.858846) (xy 142.278616 59.858848) + (xy 142.278615 59.858848) (xy 127.776578 59.858848) (xy 127.82162 59.770448) (xy 127.855858 59.665075) + (xy 127.85586 59.66507) (xy 127.858568 59.656737) (xy 127.861579 59.647469) (xy 127.861579 59.647465) + (xy 127.879963 59.590888) (xy 127.879963 59.590887) (xy 127.879964 59.590884) (xy 127.9095 59.404403) + (xy 127.9095 59.215597) (xy 127.908746 59.210833) (xy 127.906688 59.197843) (xy 127.894327 59.119798) + (xy 127.879964 59.029115) (xy 127.85409 58.949485) (xy 127.845587 58.923314) (xy 127.824234 58.857597) + (xy 127.824233 58.857596) (xy 127.82162 58.849552) (xy 127.821618 58.849549) (xy 127.821618 58.849547) + (xy 127.81937 58.845136) (xy 127.819063 58.844348) (xy 127.818333 58.8431) (xy 127.765382 58.739179) + (xy 127.763074 58.73465) (xy 127.735904 58.681325) (xy 127.624927 58.528578) (xy 127.491422 58.395073) + (xy 127.338675 58.284096) (xy 127.338674 58.284095) (xy 127.338672 58.284094) (xy 127.332899 58.281152) + (xy 127.332899 58.281153) (xy 127.170452 58.198381) (xy 127.090764 58.172489) (xy 127.062915 58.16344) + (xy 127.061727 58.162628) (xy 127.060293 58.162555) (xy 127.031247 58.14787) (xy 127.02191 58.141486) + (xy 127.010621 58.127681) (xy 127.00524 58.124002) (xy 126.999172 58.113681) (xy 126.977679 58.087398) + (xy 126.969712 58.017985) (xy 126.980993 57.995036) (xy 126.981181 57.992413) (xy 126.98439 57.988126) + (xy 127.000531 57.955291) (xy 127.002631 57.953002) (xy 127.018146 57.943033) (xy 127.023053 57.93648) + (xy 127.050481 57.922257) (xy 127.0557 57.918903) (xy 127.059045 57.917817) (xy 127.170448 57.88162) + (xy 127.313271 57.808848) (xy 131.299499 57.808848) (xy 131.330257 57.963471) (xy 131.330264 57.963502) + (xy 131.390598 58.109165) (xy 131.390602 58.109172) (xy 131.390608 58.109184) (xy 131.390613 58.109191) + (xy 131.478211 58.24029) (xy 131.478212 58.240291) (xy 131.478217 58.240297) (xy 131.589701 58.351781) + (xy 131.589707 58.351786) (xy 131.589708 58.351787) (xy 131.589711 58.351789) (xy 131.720814 58.43939) + (xy 131.720827 58.439397) (xy 131.866498 58.499735) (xy 131.866503 58.499737) (xy 132.011496 58.528578) + (xy 132.013551 58.528986) (xy 132.013564 58.528993) (xy 132.016238 58.529702) (xy 132.021155 58.5305) + (xy 132.178844 58.5305) (xy 132.182964 58.5305) (xy 132.190814 58.528118) (xy 132.333497 58.499737) + (xy 132.333502 58.499734) (xy 132.333505 58.499734) (xy 132.401072 58.471746) (xy 132.401072 58.471745) + (xy 132.401078 58.471743) (xy 132.435273 58.463016) (xy 132.461426 58.460204) (xy 132.522133 58.468931) + (xy 132.596503 58.499737) (xy 132.741496 58.528578) (xy 132.743551 58.528986) (xy 132.743564 58.528993) + (xy 132.746238 58.529702) (xy 132.751155 58.5305) (xy 132.908844 58.5305) (xy 132.912964 58.5305) + (xy 132.920814 58.528118) (xy 133.063497 58.499737) (xy 133.184781 58.4495) (xy 133.209172 58.439397) + (xy 133.209172 58.439396) (xy 133.209179 58.439394) (xy 133.209183 58.439391) (xy 133.211508 58.438428) + (xy 133.21153 58.438419) (xy 133.220791 58.434583) (xy 133.229675 58.425698) (xy 133.340289 58.351789) + (xy 133.391185 58.300893) (xy 133.451788 58.240291) (xy 133.466617 58.218097) (xy 133.501997 58.165146) + (xy 133.525569 58.138904) (xy 133.53623 58.129994) (xy 133.600288 58.102111) (xy 133.669254 58.113285) + (xy 133.670082 58.113681) (xy 133.673992 58.115552) (xy 133.72357 58.158514) (xy 133.734896 58.175464) + (xy 133.77821 58.240288) (xy 133.778212 58.240291) (xy 133.778216 58.240296) (xy 133.889701 58.351781) + (xy 133.889707 58.351786) (xy 133.889708 58.351787) (xy 133.889711 58.351789) (xy 134.020814 58.43939) + (xy 134.020827 58.439397) (xy 134.166498 58.499735) (xy 134.166503 58.499737) (xy 134.311496 58.528578) + (xy 134.313551 58.528986) (xy 134.313564 58.528993) (xy 134.316238 58.529702) (xy 134.321155 58.5305) + (xy 134.478844 58.5305) (xy 134.482964 58.5305) (xy 134.490814 58.528118) (xy 134.633497 58.499737) + (xy 134.69108 58.475884) (xy 134.725272 58.467158) (xy 134.751427 58.464346) (xy 134.812132 58.473073) + (xy 134.876503 58.499737) (xy 135.021496 58.528578) (xy 135.023551 58.528986) (xy 135.023564 58.528993) + (xy 135.026238 58.529702) (xy 135.031155 58.5305) (xy 135.188844 58.5305) (xy 135.192964 58.5305) + (xy 135.200814 58.528118) (xy 135.343497 58.499737) (xy 135.464781 58.4495) (xy 135.489172 58.439397) + (xy 135.489172 58.439396) (xy 135.489179 58.439394) (xy 135.489183 58.439391) (xy 135.491508 58.438428) + (xy 135.49153 58.438419) (xy 135.500791 58.434583) (xy 135.509675 58.425698) (xy 135.535957 58.408137) + (xy 136.118377 58.408137) (xy 136.149135 58.56276) (xy 136.149141 58.562785) (xy 136.149141 58.562789) + (xy 136.209476 58.708454) (xy 136.209481 58.708463) (xy 136.209491 58.70848) (xy 136.297089 58.839579) + (xy 136.29709 58.83958) (xy 136.297095 58.839586) (xy 136.408579 58.95107) (xy 136.408585 58.951075) + (xy 136.408589 58.951078) (xy 136.539692 59.038679) (xy 136.539705 59.038686) (xy 136.539707 59.038686) + (xy 136.539711 59.038689) (xy 136.616775 59.070609) (xy 136.670777 59.092977) (xy 136.685381 59.099026) + (xy 136.787486 59.119336) (xy 136.83241 59.128272) (xy 136.835132 59.128993) (xy 136.840033 59.129789) + (xy 136.840034 59.129789) (xy 136.840036 59.129789) (xy 136.907163 59.129789) (xy 136.942096 59.134811) + (xy 136.962245 59.140728) (xy 137.01418 59.171222) (xy 137.048264 59.204686) (xy 137.055551 59.210827) + (xy 137.13651 59.291786) (xy 137.136514 59.291789) (xy 137.267617 59.37939) (xy 137.26763 59.379397) + (xy 137.389516 59.429883) (xy 137.413306 59.439737) (xy 137.516502 59.460264) (xy 137.560335 59.468983) + (xy 137.563057 59.469704) (xy 137.567958 59.4705) (xy 137.725647 59.4705) (xy 137.729767 59.4705) + (xy 137.737617 59.468118) (xy 137.8803 59.439737) (xy 138.004637 59.388235) (xy 138.025975 59.379397) + (xy 138.025975 59.379396) (xy 138.025982 59.379394) (xy 138.157092 59.291789) (xy 138.268592 59.180289) + (xy 138.356197 59.049179) (xy 138.3626 59.033722) (xy 138.387201 58.974328) (xy 138.41654 58.903497) + (xy 138.447303 58.748842) (xy 138.447303 58.591158) (xy 138.447303 58.591155) (xy 138.447303 58.590973) + (xy 138.446868 58.588971) (xy 138.437248 58.540608) (xy 138.416541 58.436505) (xy 138.416538 58.436496) + (xy 138.405454 58.409738) (xy 138.405453 58.409737) (xy 138.405453 58.409736) (xy 138.3562 58.290827) + (xy 138.356193 58.290814) (xy 138.268592 58.159711) (xy 138.268589 58.159707) (xy 138.268584 58.159701) + (xy 138.1571 58.048217) (xy 138.157094 58.048212) (xy 138.157093 58.048211) (xy 138.025994 57.960613) + (xy 138.025993 57.960612) (xy 138.025988 57.960609) (xy 138.025975 57.960602) (xy 138.025968 57.960598) + (xy 137.880305 57.900264) (xy 137.880274 57.900257) (xy 137.72565 57.8695) (xy 137.725648 57.8695) + (xy 137.725645 57.8695) (xy 137.65852 57.8695) (xy 137.658517 57.869499) (xy 137.658516 57.8695) + (xy 137.623581 57.864476) (xy 137.603432 57.858559) (xy 137.551499 57.828066) (xy 137.517423 57.79461) + (xy 137.510104 57.788435) (xy 137.440517 57.718848) (xy 146.759499 57.718848) (xy 146.790257 57.873471) + (xy 146.790264 57.873502) (xy 146.850598 58.019165) (xy 146.850603 58.019174) (xy 146.850613 58.019191) + (xy 146.938211 58.15029) (xy 146.938212 58.150291) (xy 146.938217 58.150297) (xy 147.049701 58.261781) + (xy 147.049707 58.261786) (xy 147.049711 58.261789) (xy 147.180814 58.34939) (xy 147.180827 58.349397) + (xy 147.295287 58.396807) (xy 147.326503 58.409737) (xy 147.461039 58.436498) (xy 147.473527 58.438982) + (xy 147.476251 58.439704) (xy 147.481155 58.4405) (xy 147.638844 58.4405) (xy 147.642476 58.4405) + (xy 147.648623 58.438574) (xy 147.649676 58.438344) (xy 147.793497 58.409737) (xy 147.807368 58.40399) + (xy 147.818194 58.401632) (xy 147.821939 58.401898) (xy 147.831325 58.399502) (xy 147.857487 58.396689) + (xy 147.91819 58.405418) (xy 147.960637 58.423) (xy 148.004904 58.441336) (xy 148.004907 58.441336) + (xy 148.004912 58.441338) (xy 148.151929 58.470581) (xy 148.154653 58.471303) (xy 148.159556 58.472099) + (xy 148.317245 58.472099) (xy 148.321365 58.472099) (xy 148.329215 58.469717) (xy 148.471898 58.441336) + (xy 148.61758 58.380993) (xy 148.703702 58.323448) (xy 148.748692 58.293387) (xy 148.748693 58.293385) + (xy 148.860188 58.18189) (xy 148.86019 58.181888) (xy 148.947795 58.050778) (xy 148.948858 58.048213) + (xy 148.989493 57.95011) (xy 149.008138 57.905096) (xy 149.011727 57.887056) (xy 149.033377 57.77821) + (xy 149.038901 57.750441) (xy 149.038901 57.675156) (xy 149.469842 57.675156) (xy 149.5006 57.829779) + (xy 149.500607 57.829809) (xy 149.560941 57.975473) (xy 149.560946 57.975482) (xy 149.560956 57.975499) + (xy 149.648554 58.106598) (xy 149.648555 58.106599) (xy 149.64856 58.106605) (xy 149.760044 58.218089) + (xy 149.76005 58.218094) (xy 149.760054 58.218097) (xy 149.891157 58.305698) (xy 149.89117 58.305705) + (xy 150.036841 58.366043) (xy 150.036846 58.366045) (xy 150.177078 58.393939) (xy 150.183866 58.395289) + (xy 150.183867 58.39529) (xy 150.186591 58.396011) (xy 150.191498 58.396808) (xy 150.349187 58.396808) + (xy 150.353307 58.396808) (xy 150.361157 58.394426) (xy 150.50384 58.366045) (xy 150.616509 58.319375) + (xy 150.642977 58.308412) (xy 150.645768 58.307439) (xy 150.647211 58.306772) (xy 150.651871 58.304729) + (xy 150.66113 58.300893) (xy 150.670014 58.292009) (xy 150.780632 58.218097) (xy 150.892132 58.106597) + (xy 150.979737 57.975487) (xy 151.04008 57.829805) (xy 151.070843 57.67515) (xy 151.070843 57.517466) + (xy 151.070843 57.517463) (xy 151.070843 57.517285) (xy 151.070428 57.51538) (xy 151.07035 57.514989) + (xy 151.070282 57.514646) (xy 151.04008 57.362811) (xy 151.030294 57.339185) (xy 150.97974 57.217135) + (xy 150.979733 57.217122) (xy 150.892132 57.086019) (xy 150.892129 57.086015) (xy 150.892124 57.086009) + (xy 150.78064 56.974525) (xy 150.780634 56.97452) (xy 150.780633 56.974519) (xy 150.649534 56.886921) + (xy 150.649533 56.88692) (xy 150.649528 56.886917) (xy 150.649515 56.88691) (xy 150.649508 56.886906) + (xy 150.503845 56.826572) (xy 150.503814 56.826565) (xy 150.34919 56.795808) (xy 150.349188 56.795808) + (xy 150.349185 56.795808) (xy 150.191501 56.795808) (xy 150.191498 56.795808) (xy 150.191496 56.795808) + (xy 150.03687 56.826565) (xy 150.036839 56.826572) (xy 149.891176 56.886906) (xy 149.891167 56.886911) + (xy 149.89115 56.886921) (xy 149.760051 56.974519) (xy 149.76005 56.97452) (xy 149.760044 56.974525) + (xy 149.64856 57.086009) (xy 149.648555 57.086015) (xy 149.648554 57.086016) (xy 149.560956 57.217115) + (xy 149.560946 57.217132) (xy 149.560941 57.217141) (xy 149.500607 57.362804) (xy 149.5006 57.362835) + (xy 149.469843 57.517458) (xy 149.469843 57.517461) (xy 149.469843 57.675154) (xy 149.469843 57.675156) + (xy 149.469842 57.675156) (xy 149.038901 57.675156) (xy 149.038901 57.592757) (xy 149.038901 57.592754) + (xy 149.027525 57.535566) (xy 149.027525 57.535565) (xy 149.026893 57.532389) (xy 149.01987 57.497083) + (xy 149.013642 57.465774) (xy 149.013448 57.464801) (xy 149.008139 57.438107) (xy 149.008138 57.438106) + (xy 149.008138 57.438102) (xy 148.995052 57.40651) (xy 148.995046 57.406496) (xy 148.959858 57.321542) + (xy 148.947798 57.292426) (xy 148.947791 57.292413) (xy 148.86019 57.16131) (xy 148.860187 57.161306) + (xy 148.860182 57.1613) (xy 148.748698 57.049816) (xy 148.748692 57.049811) (xy 148.748691 57.04981) + (xy 148.617592 56.962212) (xy 148.617591 56.962211) (xy 148.617586 56.962208) (xy 148.617573 56.962201) + (xy 148.617566 56.962197) (xy 148.471903 56.901863) (xy 148.471872 56.901856) (xy 148.317248 56.871099) + (xy 148.317246 56.871099) (xy 148.317243 56.871099) (xy 148.159559 56.871099) (xy 148.159556 56.871099) + (xy 148.159551 56.871099) (xy 148.001907 56.902456) (xy 148.000698 56.903431) (xy 147.9665 56.912157) + (xy 147.940908 56.914907) (xy 147.880211 56.90618) (xy 147.87122 56.902456) (xy 147.856305 56.896278) + (xy 147.825813 56.883648) (xy 147.793512 56.870268) (xy 147.793504 56.870265) (xy 147.793498 56.870263) + (xy 147.793488 56.87026) (xy 147.793485 56.870259) (xy 147.793481 56.870258) (xy 147.638849 56.8395) + (xy 147.638845 56.8395) (xy 147.638842 56.8395) (xy 147.481158 56.8395) (xy 147.481155 56.8395) + (xy 147.481153 56.8395) (xy 147.326527 56.870257) (xy 147.326496 56.870264) (xy 147.180833 56.930598) + (xy 147.180824 56.930603) (xy 147.180807 56.930613) (xy 147.049708 57.018211) (xy 147.049707 57.018212) + (xy 147.049701 57.018217) (xy 146.938217 57.129701) (xy 146.938212 57.129707) (xy 146.938211 57.129708) + (xy 146.850613 57.260807) (xy 146.850603 57.260824) (xy 146.850598 57.260833) (xy 146.790264 57.406496) + (xy 146.790261 57.40651) (xy 146.7595 57.56115) (xy 146.7595 57.561153) (xy 146.7595 57.718846) + (xy 146.7595 57.718848) (xy 146.759499 57.718848) (xy 137.440517 57.718848) (xy 137.429175 57.707506) + (xy 137.429172 57.707504) (xy 137.42917 57.707502) (xy 137.429166 57.707499) (xy 137.355337 57.658168) + (xy 137.355324 57.658158) (xy 137.298063 57.619898) (xy 137.298064 57.619898) (xy 137.298043 57.619887) + (xy 137.15238 57.559553) (xy 137.152349 57.559546) (xy 136.997725 57.528789) (xy 136.997723 57.528789) + (xy 136.99772 57.528789) (xy 136.840036 57.528789) (xy 136.840033 57.528789) (xy 136.840031 57.528789) + (xy 136.685405 57.559546) (xy 136.685374 57.559553) (xy 136.539711 57.619887) (xy 136.539702 57.619892) + (xy 136.539697 57.619895) (xy 136.539692 57.619898) (xy 136.492916 57.651153) (xy 136.408586 57.7075) + (xy 136.408585 57.707501) (xy 136.408579 57.707506) (xy 136.297095 57.81899) (xy 136.29709 57.818996) + (xy 136.297089 57.818997) (xy 136.209491 57.950096) (xy 136.209478 57.950118) (xy 136.209477 57.95012) + (xy 136.149142 58.095785) (xy 136.149135 58.095816) (xy 136.118378 58.250439) (xy 136.118378 58.250442) + (xy 136.118378 58.408135) (xy 136.118378 58.408137) (xy 136.118377 58.408137) (xy 135.535957 58.408137) + (xy 135.620289 58.351789) (xy 135.731789 58.240289) (xy 135.762606 58.194166) (xy 135.775104 58.175464) + (xy 135.81645 58.113584) (xy 135.818465 58.110832) (xy 135.819981 58.108422) (xy 135.821716 58.103574) + (xy 135.823197 58.1) (xy 135.844647 58.048213) (xy 135.879737 57.963497) (xy 135.880035 57.962002) + (xy 135.897644 57.873471) (xy 135.9105 57.808842) (xy 135.9105 57.651158) (xy 135.9105 57.651155) + (xy 135.9105 57.650972) (xy 135.910066 57.648976) (xy 135.904281 57.619893) (xy 135.879737 57.496503) + (xy 135.879736 57.496499) (xy 135.879446 57.495798) (xy 135.8194 57.350833) (xy 135.819395 57.350824) + (xy 135.81939 57.350814) (xy 135.731789 57.219711) (xy 135.731786 57.219707) (xy 135.731781 57.219701) + (xy 135.620297 57.108217) (xy 135.620291 57.108212) (xy 135.62029 57.108211) (xy 135.489191 57.020613) + (xy 135.48919 57.020612) (xy 135.489185 57.020609) (xy 135.489172 57.020602) (xy 135.489165 57.020598) + (xy 135.343502 56.960264) (xy 135.343471 56.960257) (xy 135.188847 56.9295) (xy 135.188845 56.9295) + (xy 135.188842 56.9295) (xy 135.031158 56.9295) (xy 135.031155 56.9295) (xy 135.03115 56.9295) (xy 134.876505 56.96026) + (xy 134.865341 56.964877) (xy 134.865281 56.964909) (xy 134.818923 56.984111) (xy 134.784726 56.992839) + (xy 134.758572 56.995651) (xy 134.697864 56.986923) (xy 134.644719 56.96491) (xy 134.644661 56.964879) + (xy 134.633493 56.96026) (xy 134.478849 56.9295) (xy 134.478845 56.9295) (xy 134.478842 56.9295) + (xy 134.321158 56.9295) (xy 134.321155 56.9295) (xy 134.321153 56.9295) (xy 134.166527 56.960257) + (xy 134.166496 56.960264) (xy 134.020833 57.020598) (xy 134.020824 57.020603) (xy 134.020807 57.020613) + (xy 133.889708 57.108211) (xy 133.889707 57.108212) (xy 133.889701 57.108217) (xy 133.778214 57.219704) + (xy 133.778205 57.219718) (xy 133.728007 57.294842) (xy 133.728007 57.294844) (xy 133.704422 57.321101) + (xy 133.693774 57.33) (xy 133.629711 57.357886) (xy 133.560741 57.346711) (xy 133.556015 57.34445) + (xy 133.506428 57.301483) (xy 133.504888 57.299179) (xy 133.451789 57.219711) (xy 133.451786 57.219707) + (xy 133.451781 57.219701) (xy 133.340297 57.108217) (xy 133.340291 57.108212) (xy 133.34029 57.108211) + (xy 133.209191 57.020613) (xy 133.20919 57.020612) (xy 133.209185 57.020609) (xy 133.209172 57.020602) + (xy 133.209165 57.020598) (xy 133.063502 56.960264) (xy 133.063471 56.960257) (xy 132.908847 56.9295) + (xy 132.908845 56.9295) (xy 132.908842 56.9295) (xy 132.751158 56.9295) (xy 132.751155 56.9295) + (xy 132.75115 56.9295) (xy 132.596505 56.96026) (xy 132.585336 56.964879) (xy 132.58528 56.964909) + (xy 132.528922 56.988253) (xy 132.494726 56.996981) (xy 132.468572 56.999793) (xy 132.407864 56.991065) + (xy 132.344719 56.96491) (xy 132.344661 56.964879) (xy 132.333493 56.96026) (xy 132.178849 56.9295) + (xy 132.178845 56.9295) (xy 132.178842 56.9295) (xy 132.021158 56.9295) (xy 132.021155 56.9295) + (xy 132.021153 56.9295) (xy 131.866527 56.960257) (xy 131.866496 56.960264) (xy 131.720833 57.020598) + (xy 131.720824 57.020603) (xy 131.720807 57.020613) (xy 131.589708 57.108211) (xy 131.589707 57.108212) + (xy 131.589701 57.108217) (xy 131.478217 57.219701) (xy 131.478212 57.219707) (xy 131.478211 57.219708) + (xy 131.390613 57.350807) (xy 131.390603 57.350824) (xy 131.390598 57.350833) (xy 131.330264 57.496496) + (xy 131.330257 57.496527) (xy 131.2995 57.65115) (xy 131.2995 57.651153) (xy 131.2995 57.808846) + (xy 131.2995 57.808848) (xy 131.299499 57.808848) (xy 127.313271 57.808848) (xy 127.338675 57.795904) + (xy 127.491422 57.684927) (xy 127.624927 57.551422) (xy 127.735904 57.398675) (xy 127.82162 57.230448) + (xy 127.879964 57.050884) (xy 127.9095 56.864403) (xy 127.9095 56.675597) (xy 127.906247 56.655058) + (xy 127.879964 56.489115) (xy 127.85416 56.409701) (xy 127.836988 56.35685) (xy 127.836984 56.35684) + (xy 127.823119 56.314166) (xy 127.822057 56.310403) (xy 127.821066 56.308409) (xy 127.819267 56.304696) + (xy 127.818335 56.303103) (xy 127.766523 56.201418) (xy 127.735904 56.141325) (xy 127.624927 55.988578) + (xy 127.491422 55.855073) (xy 127.338675 55.744096) (xy 127.318821 55.73398) (xy 127.170452 55.658381) + (xy 127.084566 55.630475) (xy 127.062915 55.62344) (xy 127.048426 55.613646) (xy 127.032341 55.608609) + (xy 127.031247 55.60787) (xy 127.02191 55.601486) (xy 127.01137 55.588597) (xy 127.006084 55.585024) + (xy 126.998842 55.576358) (xy 126.995975 55.569771) (xy 126.977679 55.547398) (xy 126.974613 55.520692) + (xy 126.970958 55.512293) (xy 126.972533 55.50257) (xy 126.969712 55.477985) (xy 126.979865 55.457331) + (xy 126.982136 55.443323) (xy 126.992332 55.431971) (xy 127.000535 55.415286) (xy 127.00265 55.412982) + (xy 127.018595 55.402737) (xy 127.028828 55.391346) (xy 127.041906 55.387758) (xy 127.055672 55.378912) + (xy 127.170448 55.34162) (xy 127.338675 55.255904) (xy 127.491422 55.144927) (xy 127.624927 55.011422) + (xy 127.735904 54.858675) (xy 127.82162 54.690448) (xy 127.879964 54.510884) (xy 127.9095 54.324403) + (xy 127.9095 54.135597) (xy 127.884246 53.976153) (xy 127.879964 53.949115) (xy 127.821618 53.769547) + (xy 127.761295 53.651158) (xy 127.735904 53.601325) (xy 127.624927 53.448578) (xy 127.491422 53.315073) + (xy 127.338675 53.204096) (xy 127.170452 53.118381) (xy 126.990884 53.060035) (xy 126.99088 53.060034) + (xy 126.990876 53.060033) (xy 126.990879 53.060033) (xy 126.829899 53.034538) (xy 126.809502 53.031307) + (xy 126.804404 53.0305) (xy 126.804403 53.0305) (xy 126.615597 53.0305) (xy 126.615596 53.0305) + (xy 126.593166 53.034052) (xy 126.593165 53.034051) (xy 126.42912 53.060034) (xy 126.429118 53.060034) + (xy 126.429115 53.060035) (xy 126.249547 53.118381) (xy 126.165435 53.161238) (xy 126.081323 53.204096) + (xy 126.011949 53.2545) (xy 125.928575 53.315075) (xy 125.928573 53.315077) (xy 125.928572 53.315077) + (xy 125.795076 53.448573) (xy 125.684094 53.601326) (xy 125.612075 53.742668) (xy 125.601827 53.753518) + (xy 125.591743 53.771511) (xy 125.584406 53.77928) (xy 125.569005 53.788269) (xy 125.564101 53.793463) + (xy 125.555427 53.798075) (xy 125.547335 53.801975) (xy 125.544816 53.80239) (xy 125.524065 53.814504) + (xy 125.482252 53.812713) (xy 125.478398 53.813349) (xy 125.476339 53.812459) (xy 125.454259 53.811514) + (xy 125.422794 53.789334) (xy 125.414254 53.785646) (xy 125.411274 53.781213) (xy 125.397152 53.771259) + (xy 125.380945 53.736103) (xy 125.375271 53.727663) (xy 125.375187 53.723611) (xy 125.37255 53.717891) + (xy 125.371795 53.714022) (xy 125.369499 53.690272) (xy 125.369499 52.213129) (xy 125.369499 52.213128) + (xy 125.363091 52.153517) (xy 125.312796 52.018669) (xy 125.312795 52.018668) (xy 125.312793 52.018664) + (xy 125.312782 52.018649) (xy 125.310392 52.014929) (xy 125.310391 52.014928) (xy 125.307489 52.011579) + (xy 125.226547 51.903455) (xy 125.226544 51.903452) (xy 125.226542 51.90345) (xy 125.168616 51.860086) + (xy 125.111335 51.817206) (xy 125.111332 51.817204) (xy 125.11133 51.817203) (xy 125.111328 51.817202) + (xy 124.976482 51.766908) (xy 124.976483 51.766908) (xy 124.916883 51.760501) (xy 124.916881 51.7605) + (xy 124.916873 51.7605) (xy 124.916864 51.7605) (xy 124.915841 51.7605) (xy 123.423123 51.7605) + (xy 123.421192 51.760659) (xy 123.419545 51.760885) (xy 123.363516 51.766908) (xy 123.244284 51.811379) + (xy 123.228666 51.817204) (xy 123.228665 51.817205) (xy 123.113456 51.90345) (xy 123.11345 51.903456) + (xy 123.027205 52.018665) (xy 123.027203 52.018668) (xy 122.976908 52.153516) (xy 122.9705 52.213125) + (xy 122.9705 53.706875) (xy 122.970659 53.708806) (xy 122.970885 53.710454) (xy 122.976907 53.766482) + (xy 122.997427 53.821498) (xy 123.027202 53.901328) (xy 123.027203 53.901329) (xy 123.027203 53.901331) + (xy 123.11345 54.016542) (xy 123.113456 54.016548) (xy 123.142419 54.038229) (xy 123.228664 54.102793) + (xy 123.228671 54.102797) (xy 123.363517 54.153091) (xy 123.363516 54.153091) (xy 123.370444 54.153835) + (xy 123.423127 54.1595) (xy 123.624428 54.159499) (xy 123.638728 54.163697) (xy 123.65936 54.16452) + (xy 123.669614 54.167531) (xy 123.684612 54.17717) (xy 123.691468 54.179183) (xy 123.699569 54.184858) + (xy 123.706713 54.1903) (xy 123.708209 54.192333) (xy 123.728392 54.205304) (xy 123.74582 54.243464) + (xy 123.748114 54.246583) (xy 123.748253 54.248792) (xy 123.757418 54.268859) (xy 123.751929 54.307044) + (xy 123.752514 54.316314) (xy 123.749929 54.320953) (xy 123.747477 54.338018) (xy 123.723451 54.368492) + (xy 123.718516 54.377354) (xy 123.714968 54.379252) (xy 123.711096 54.384165) (xy 123.707988 54.386597) + (xy 123.687869 54.399425) (xy 123.541328 54.474092) (xy 123.388573 54.585076) (xy 123.255077 54.718572) + (xy 123.255077 54.718573) (xy 123.255075 54.718575) (xy 123.221783 54.764397) (xy 123.144096 54.871323) + (xy 123.112345 54.933638) (xy 123.058381 55.039547) (xy 123.000035 55.219115) (xy 123.000034 55.219118) + (xy 123.000034 55.21912) (xy 122.9705 55.405592) (xy 122.9705 55.594406) (xy 122.994548 55.746242) + (xy 123.000035 55.780884) (xy 123.058381 55.960452) (xy 123.058382 55.960453) (xy 123.058383 55.960457) + (xy 123.139258 56.119179) (xy 123.139259 56.119186) (xy 123.139261 56.119186) (xy 123.14409 56.128664) + (xy 123.144098 56.128678) (xy 123.25507 56.281418) (xy 123.255073 56.281422) (xy 123.388578 56.414927) + (xy 123.541325 56.525904) (xy 123.575249 56.543189) (xy 123.703103 56.608335) (xy 123.704699 56.609269) + (xy 123.708413 56.611068) (xy 123.710408 56.612059) (xy 123.714171 56.613121) (xy 123.729178 56.617997) + (xy 123.775334 56.632994) (xy 123.817087 56.64656) (xy 123.817092 56.646564) (xy 123.848758 56.662133) + (xy 123.858094 56.668517) (xy 123.869378 56.682318) (xy 123.87476 56.685998) (xy 123.877297 56.692002) + (xy 123.902321 56.722606) (xy 123.910285 56.792021) (xy 123.879465 56.854711) (xy 123.877371 56.856993) + (xy 123.824326 56.891087) (xy 123.777875 56.90618) (xy 123.709547 56.928381) (xy 123.637917 56.964879) + (xy 123.541323 57.014096) (xy 123.465213 57.069394) (xy 123.388575 57.125075) (xy 123.388573 57.125077) + (xy 123.388572 57.125077) (xy 123.255077 57.258572) (xy 123.255077 57.258573) (xy 123.255075 57.258575) + (xy 123.217953 57.309669) (xy 123.144096 57.411323) (xy 123.119451 57.459692) (xy 123.058381 57.579547) + (xy 123.000035 57.759115) (xy 123.000035 57.759117) (xy 123.000034 57.75912) (xy 122.9705 57.945592) + (xy 122.9705 58.134403) (xy 122.970499 58.134405) (xy 119.544756 58.134405) (xy 119.544889 58.1) + (xy 119.568381 52.028791) (xy 119.568662 52.020936) (xy 119.568816 52.018665) (xy 119.56919 52.01312) + (xy 119.569969 52.005292) (xy 119.583377 51.903456) (xy 119.5955 51.811372) (xy 119.5955 51.578628) + (xy 119.572485 51.403811) (xy 119.571674 51.395502) (xy 119.571146 51.387206) (xy 119.570897 51.37885) + (xy 119.571204 51.299585) (xy 119.571942 51.108964) (xy 119.577101 51.074052) (xy 119.580683 51.062027) + (xy 119.618689 51.003398) (xy 119.682359 50.974624) (xy 119.74788 50.98325) (xy 119.756923 50.98708) + (xy 119.78405 51.002885) (xy 119.910982 51.100283) (xy 120.096457 51.207367) (xy 120.106521 51.213177) + (xy 120.106565 51.213199) (xy 120.107118 51.213424) (xy 120.315131 51.299586) (xy 120.533239 51.358028) + (xy 120.7571 51.3875) (xy 120.982893 51.3875) (xy 120.9829 51.3875) (xy 121.20676 51.358028) (xy 121.424868 51.299586) + (xy 121.632969 51.213387) (xy 121.633421 51.213203) (xy 121.633459 51.213184) (xy 121.63347 51.21318) + (xy 121.63348 51.213176) (xy 121.829018 51.100283) (xy 121.898451 51.047004) (xy 121.89845 51.047003) + (xy 121.89845 51.047002) (xy 121.352482 50.501035) (xy 121.318997 50.439712) (xy 121.323981 50.370021) + (xy 121.365852 50.314087) (xy 121.371273 50.310251) (xy 121.389532 50.298051) (xy 121.503051 50.184532) + (xy 121.515251 50.166272) (xy 121.568863 50.121468) (xy 121.638188 50.11276) (xy 121.701216 50.142914) + (xy 121.706035 50.147482) (xy 122.252002 50.69345) (xy 122.252003 50.69345) (xy 122.252004 50.693451) + (xy 122.305283 50.624018) (xy 122.418176 50.42848) (xy 122.41818 50.42847) (xy 122.418184 50.428459) + (xy 122.418203 50.428421) (xy 122.418387 50.427969) (xy 122.504586 50.219868) (xy 122.563028 50.00176) + (xy 122.5925 49.777899) (xy 122.5925 49.5521) (xy 122.563028 49.328239) (xy 122.504586 49.110131) + (xy 122.418424 48.902118) (xy 122.418199 48.901565) (xy 122.418177 48.901521) (xy 122.30528 48.705977) + (xy 122.252005 48.636547) (xy 122.252004 48.636547) (xy 122.252003 48.636547) (xy 121.706034 49.182516) + (xy 121.644711 49.216001) (xy 121.575019 49.211017) (xy 121.519086 49.169145) (xy 121.515251 49.163726) + (xy 121.503051 49.145468) (xy 121.503048 49.145464) (xy 121.389535 49.031951) (xy 121.389531 49.031948) + (xy 121.371271 49.019747) (xy 121.326466 48.966135) (xy 121.317759 48.89681) (xy 121.347914 48.833782) + (xy 121.352459 48.828986) (xy 121.832028 48.349418) (xy 121.860273 48.328275) (xy 121.883365 48.315667) + (xy 121.94279 48.3005) (xy 123.432411 48.3005) ) ) ) @@ -36474,198 +41463,180 @@ (filled_polygon (layer "In1.Cu") (pts - (xy 208.242539 39.520185) (xy 208.288294 39.572989) (xy 208.2995 39.6245) (xy 208.2995 43.356) (xy 208.279815 43.423039) - (xy 208.227011 43.468794) (xy 208.1755 43.48) (xy 154.319999 43.48) (xy 148.236319 49.563681) (xy 148.174996 49.597166) + (xy 208.542539 39.220185) (xy 208.588294 39.272989) (xy 208.5995 39.3245) (xy 208.5995 43.356) (xy 208.579815 43.423039) + (xy 208.527011 43.468794) (xy 208.4755 43.48) (xy 154.319999 43.48) (xy 148.236319 49.563681) (xy 148.174996 49.597166) (xy 148.148638 49.6) (xy 137.808036 49.6) (xy 137.740997 49.580315) (xy 137.695242 49.527511) (xy 137.685298 49.458353) (xy 137.693474 49.428549) (xy 137.699717 49.413477) (xy 137.73048 49.258822) (xy 137.73048 49.101138) - (xy 137.73048 49.101135) (xy 137.730479 49.101133) (xy 137.699718 48.94649) (xy 137.699717 48.946483) - (xy 137.699715 48.946478) (xy 137.639377 48.800807) (xy 137.63937 48.800794) (xy 137.551769 48.669691) - (xy 137.551766 48.669687) (xy 137.454234 48.572155) (xy 137.420749 48.510832) (xy 137.425733 48.44114) - (xy 137.467605 48.385207) (xy 137.533069 48.36079) (xy 137.545462 48.360956) (xy 137.545462 48.360824) - (xy 137.70924 48.360824) (xy 137.709241 48.360823) (xy 137.863893 48.330061) (xy 138.009575 48.269718) - (xy 138.140685 48.182113) (xy 138.252185 48.070613) (xy 138.252187 48.070609) (xy 138.255764 48.067033) - (xy 138.317087 48.033548) (xy 138.386779 48.038532) (xy 138.442713 48.080403) (xy 138.446548 48.085823) - (xy 138.525535 48.204034) (xy 138.525538 48.204038) (xy 138.650961 48.329461) (xy 138.650965 48.329464) - (xy 138.798446 48.428009) (xy 138.798459 48.428016) (xy 138.921363 48.478923) (xy 138.962334 48.495894) - (xy 138.962336 48.495894) (xy 138.962341 48.495896) (xy 139.136304 48.530499) (xy 139.136307 48.5305) - (xy 139.136309 48.5305) (xy 140.113693 48.5305) (xy 140.113694 48.530499) (xy 140.20181 48.512972) - (xy 140.287658 48.495896) (xy 140.287661 48.495894) (xy 140.287666 48.495894) (xy 140.451547 48.428013) - (xy 140.599035 48.329464) (xy 140.724464 48.204035) (xy 140.823013 48.056547) (xy 140.890894 47.892666) - (xy 140.897335 47.860289) (xy 140.913964 47.776682) (xy 140.9255 47.718691) (xy 140.9255 47.541309) - (xy 140.9255 47.541306) (xy 140.925499 47.541304) (xy 140.890896 47.367341) (xy 140.890894 47.367338) - (xy 140.890894 47.367334) (xy 140.851055 47.271153) (xy 141.2495 47.271153) (xy 141.2495 47.428846) - (xy 141.280261 47.583489) (xy 141.280264 47.583501) (xy 141.340602 47.729172) (xy 141.340609 47.729185) - (xy 141.42821 47.860288) (xy 141.428213 47.860292) (xy 141.539707 47.971786) (xy 141.539711 47.971789) - (xy 141.670814 48.05939) (xy 141.670827 48.059397) (xy 141.816498 48.119735) (xy 141.816503 48.119737) - (xy 141.971153 48.150499) (xy 141.971156 48.1505) (xy 141.971158 48.1505) (xy 142.128844 48.1505) - (xy 142.128845 48.150499) (xy 142.283497 48.119737) (xy 142.396166 48.073067) (xy 142.429172 48.059397) - (xy 142.429172 48.059396) (xy 142.429179 48.059394) (xy 142.560289 47.971789) (xy 142.671789 47.860289) - (xy 142.759394 47.729179) (xy 142.819737 47.583497) (xy 142.8505 47.428842) (xy 142.8505 47.271158) - (xy 142.8505 47.271155) (xy 142.850499 47.271153) (xy 143.1495 47.271153) (xy 143.1495 47.428846) - (xy 143.180261 47.583489) (xy 143.180264 47.583501) (xy 143.240602 47.729172) (xy 143.240609 47.729185) - (xy 143.32821 47.860288) (xy 143.328213 47.860292) (xy 143.439707 47.971786) (xy 143.439711 47.971789) - (xy 143.570814 48.05939) (xy 143.570827 48.059397) (xy 143.716498 48.119735) (xy 143.716503 48.119737) - (xy 143.871153 48.150499) (xy 143.871156 48.1505) (xy 143.871158 48.1505) (xy 144.028844 48.1505) - (xy 144.028845 48.150499) (xy 144.183497 48.119737) (xy 144.296166 48.073067) (xy 144.329172 48.059397) - (xy 144.329172 48.059396) (xy 144.329179 48.059394) (xy 144.460289 47.971789) (xy 144.571789 47.860289) - (xy 144.659394 47.729179) (xy 144.719737 47.583497) (xy 144.7505 47.428842) (xy 144.7505 47.271158) - (xy 144.7505 47.271155) (xy 144.750499 47.271153) (xy 144.737034 47.203459) (xy 144.719737 47.116503) - (xy 144.69466 47.055961) (xy 144.659397 46.970827) (xy 144.65939 46.970814) (xy 144.571789 46.839711) - (xy 144.571786 46.839707) (xy 144.460292 46.728213) (xy 144.460288 46.72821) (xy 144.329185 46.640609) - (xy 144.329172 46.640602) (xy 144.183501 46.580264) (xy 144.183489 46.580261) (xy 144.028845 46.5495) - (xy 144.028842 46.5495) (xy 143.871158 46.5495) (xy 143.871155 46.5495) (xy 143.71651 46.580261) - (xy 143.716498 46.580264) (xy 143.570827 46.640602) (xy 143.570814 46.640609) (xy 143.439711 46.72821) - (xy 143.439707 46.728213) (xy 143.328213 46.839707) (xy 143.32821 46.839711) (xy 143.240609 46.970814) - (xy 143.240602 46.970827) (xy 143.180264 47.116498) (xy 143.180261 47.11651) (xy 143.1495 47.271153) - (xy 142.850499 47.271153) (xy 142.837034 47.203459) (xy 142.819737 47.116503) (xy 142.79466 47.055961) - (xy 142.759397 46.970827) (xy 142.75939 46.970814) (xy 142.671789 46.839711) (xy 142.671786 46.839707) - (xy 142.560292 46.728213) (xy 142.560288 46.72821) (xy 142.429185 46.640609) (xy 142.429172 46.640602) - (xy 142.283501 46.580264) (xy 142.283489 46.580261) (xy 142.128845 46.5495) (xy 142.128842 46.5495) - (xy 141.971158 46.5495) (xy 141.971155 46.5495) (xy 141.81651 46.580261) (xy 141.816498 46.580264) - (xy 141.670827 46.640602) (xy 141.670814 46.640609) (xy 141.539711 46.72821) (xy 141.539707 46.728213) - (xy 141.428213 46.839707) (xy 141.42821 46.839711) (xy 141.340609 46.970814) (xy 141.340602 46.970827) - (xy 141.280264 47.116498) (xy 141.280261 47.11651) (xy 141.2495 47.271153) (xy 140.851055 47.271153) - (xy 140.823016 47.203459) (xy 140.823009 47.203446) (xy 140.724464 47.055965) (xy 140.724461 47.055961) - (xy 140.599038 46.930538) (xy 140.599034 46.930535) (xy 140.451553 46.83199) (xy 140.45154 46.831983) - (xy 140.287667 46.764106) (xy 140.287658 46.764103) (xy 140.113694 46.7295) (xy 140.113691 46.7295) - (xy 139.287262 46.7295) (xy 139.220223 46.709815) (xy 139.174468 46.657011) (xy 139.172712 46.652978) - (xy 139.159392 46.620821) (xy 139.159389 46.620816) (xy 139.159388 46.620814) (xy 139.071787 46.489711) - (xy 139.071784 46.489707) (xy 138.96029 46.378213) (xy 138.960286 46.37821) (xy 138.829183 46.290609) - (xy 138.82917 46.290602) (xy 138.683499 46.230264) (xy 138.683487 46.230261) (xy 138.528843 46.1995) - (xy 138.52884 46.1995) (xy 138.371156 46.1995) (xy 138.371153 46.1995) (xy 138.216508 46.230261) - (xy 138.216496 46.230264) (xy 138.070825 46.290602) (xy 138.070812 46.290609) (xy 137.939709 46.37821) - (xy 137.939705 46.378213) (xy 137.828211 46.489707) (xy 137.828208 46.489711) (xy 137.740606 46.620816) - (xy 137.740604 46.620821) (xy 137.714734 46.683277) (xy 137.670895 46.737679) (xy 137.604601 46.759745) - (xy 137.600174 46.759824) (xy 137.551551 46.759824) (xy 137.396906 46.790585) (xy 137.396894 46.790588) - (xy 137.251223 46.850926) (xy 137.25121 46.850933) (xy 137.120107 46.938534) (xy 137.120103 46.938537) - (xy 137.008609 47.050031) (xy 137.008606 47.050035) (xy 136.921005 47.181138) (xy 136.920998 47.181151) - (xy 136.86066 47.326822) (xy 136.860657 47.326834) (xy 136.829896 47.481477) (xy 136.829896 47.63917) - (xy 136.860657 47.793813) (xy 136.86066 47.793825) (xy 136.920998 47.939496) (xy 136.921005 47.939509) - (xy 137.008606 48.070612) (xy 137.008609 48.070616) (xy 137.106141 48.168148) (xy 137.139626 48.229471) - (xy 137.134642 48.299163) (xy 137.09277 48.355096) (xy 137.027306 48.379513) (xy 137.014914 48.379347) - (xy 137.014914 48.37948) (xy 136.851135 48.37948) (xy 136.69649 48.410241) (xy 136.696478 48.410244) - (xy 136.550807 48.470582) (xy 136.550794 48.470589) (xy 136.419691 48.55819) (xy 136.419687 48.558193) - (xy 136.308193 48.669687) (xy 136.30819 48.669691) (xy 136.220589 48.800794) (xy 136.220582 48.800807) - (xy 136.160244 48.946478) (xy 136.160241 48.94649) (xy 136.12948 49.101133) (xy 136.12948 49.258826) - (xy 136.160241 49.413469) (xy 136.160243 49.413476) (xy 136.166486 49.428549) (xy 136.173953 49.498019) - (xy 136.142678 49.560497) (xy 136.082588 49.596149) (xy 136.051924 49.6) (xy 132.924 49.6) (xy 132.856961 49.580315) - (xy 132.811206 49.527511) (xy 132.8 49.476) (xy 132.8 48.634589) (xy 132.819685 48.56755) (xy 132.872489 48.521795) - (xy 132.941647 48.511851) (xy 132.94818 48.512969) (xy 132.987947 48.52088) (xy 133.036307 48.5305) - (xy 133.036309 48.5305) (xy 134.013693 48.5305) (xy 134.013694 48.530499) (xy 134.10181 48.512972) - (xy 134.187658 48.495896) (xy 134.187661 48.495894) (xy 134.187666 48.495894) (xy 134.351547 48.428013) - (xy 134.499035 48.329464) (xy 134.624464 48.204035) (xy 134.723013 48.056547) (xy 134.790894 47.892666) - (xy 134.797335 47.860289) (xy 134.813964 47.776682) (xy 134.8255 47.718691) (xy 134.8255 47.541309) - (xy 134.8255 47.541306) (xy 134.825499 47.541304) (xy 134.790896 47.367341) (xy 134.790893 47.367332) - (xy 134.723016 47.203459) (xy 134.723009 47.203446) (xy 134.624464 47.055965) (xy 134.624461 47.055961) - (xy 134.499038 46.930538) (xy 134.499034 46.930535) (xy 134.351553 46.83199) (xy 134.35154 46.831983) - (xy 134.187667 46.764106) (xy 134.187658 46.764103) (xy 134.013694 46.7295) (xy 134.013691 46.7295) - (xy 133.036309 46.7295) (xy 133.036304 46.7295) (xy 132.948191 46.747027) (xy 132.927207 46.745149) - (xy 132.906353 46.748148) (xy 132.893105 46.742097) (xy 132.8786 46.7408) (xy 132.861961 46.727875) - (xy 132.842797 46.719123) (xy 132.834923 46.706871) (xy 132.823422 46.697937) (xy 132.816412 46.678068) - (xy 132.805023 46.660345) (xy 132.801488 46.635761) (xy 132.800178 46.632047) (xy 132.8 46.62541) - (xy 132.8 46.399167) (xy 132.819685 46.332128) (xy 132.872489 46.286373) (xy 132.927377 46.27723) - (xy 132.927377 46.2755) (xy 133.066533 46.2755) (xy 133.154325 46.258035) (xy 133.197036 46.24954) - (xy 133.319969 46.19862) (xy 133.430606 46.124695) (xy 133.524695 46.030606) (xy 133.59862 45.919969) - (xy 133.64954 45.797036) (xy 133.6755 45.666533) (xy 139.474499 45.666533) (xy 139.500458 45.79703) - (xy 139.500461 45.79704) (xy 139.551376 45.919961) (xy 139.551386 45.919979) (xy 139.625301 46.030601) - (xy 139.625307 46.030609) (xy 139.71939 46.124692) (xy 139.719398 46.124698) (xy 139.83002 46.198613) - (xy 139.830023 46.198614) (xy 139.830031 46.19862) (xy 139.830037 46.198622) (xy 139.830038 46.198623) - (xy 139.90642 46.230261) (xy 139.952964 46.24954) (xy 139.952968 46.24954) (xy 139.952969 46.249541) - (xy 140.083466 46.2755) (xy 140.083469 46.2755) (xy 140.216533 46.2755) (xy 140.304325 46.258035) - (xy 140.347036 46.24954) (xy 140.469969 46.19862) (xy 140.580606 46.124695) (xy 140.674695 46.030606) - (xy 140.74862 45.919969) (xy 140.79954 45.797036) (xy 140.8255 45.666531) (xy 140.8255 45.533469) - (xy 140.8255 45.533466) (xy 140.799541 45.402969) (xy 140.79954 45.402968) (xy 140.79954 45.402964) - (xy 140.74862 45.280031) (xy 140.674695 45.169394) (xy 140.674692 45.16939) (xy 140.580609 45.075307) - (xy 140.580601 45.075301) (xy 140.469979 45.001386) (xy 140.469972 45.001382) (xy 140.469969 45.00138) - (xy 140.469965 45.001378) (xy 140.469961 45.001376) (xy 140.34704 44.950461) (xy 140.34703 44.950458) - (xy 140.216533 44.9245) (xy 140.216531 44.9245) (xy 140.083469 44.9245) (xy 140.083467 44.9245) - (xy 139.952969 44.950458) (xy 139.952959 44.950461) (xy 139.830038 45.001376) (xy 139.83002 45.001386) - (xy 139.719398 45.075301) (xy 139.71939 45.075307) (xy 139.625307 45.16939) (xy 139.625301 45.169398) - (xy 139.551386 45.28002) (xy 139.551376 45.280038) (xy 139.500461 45.402959) (xy 139.500458 45.402969) - (xy 139.4745 45.533466) (xy 139.4745 45.533469) (xy 139.4745 45.666531) (xy 139.4745 45.666533) - (xy 139.474499 45.666533) (xy 133.6755 45.666533) (xy 133.6755 45.666531) (xy 133.6755 45.533469) - (xy 133.6755 45.533466) (xy 133.649541 45.402969) (xy 133.64954 45.402968) (xy 133.64954 45.402964) - (xy 133.59862 45.280031) (xy 133.524695 45.169394) (xy 133.524692 45.16939) (xy 133.430609 45.075307) - (xy 133.430601 45.075301) (xy 133.319979 45.001386) (xy 133.319972 45.001382) (xy 133.319969 45.00138) - (xy 133.319965 45.001378) (xy 133.319961 45.001376) (xy 133.19704 44.950461) (xy 133.19703 44.950458) - (xy 133.066533 44.9245) (xy 133.066531 44.9245) (xy 132.933469 44.9245) (xy 132.927377 44.9245) - (xy 132.927377 44.922574) (xy 132.921298 44.921421) (xy 132.906353 44.92357) (xy 132.887667 44.915036) - (xy 132.867488 44.911206) (xy 132.856531 44.900817) (xy 132.842797 44.894545) (xy 132.831691 44.877264) - (xy 132.816787 44.863132) (xy 132.812583 44.847531) (xy 132.805023 44.835767) (xy 132.8 44.800832) - (xy 132.8 44.574589) (xy 132.801009 44.571153) (xy 141.2495 44.571153) (xy 141.2495 44.728846) (xy 141.280261 44.883489) - (xy 141.280264 44.883501) (xy 141.340602 45.029172) (xy 141.340609 45.029185) (xy 141.42821 45.160288) - (xy 141.428213 45.160292) (xy 141.539707 45.271786) (xy 141.539711 45.271789) (xy 141.670814 45.35939) - (xy 141.670827 45.359397) (xy 141.775997 45.402959) (xy 141.816503 45.419737) (xy 141.971153 45.450499) - (xy 141.971156 45.4505) (xy 141.971158 45.4505) (xy 142.128844 45.4505) (xy 142.128845 45.450499) - (xy 142.283497 45.419737) (xy 142.429179 45.359394) (xy 142.560289 45.271789) (xy 142.671789 45.160289) - (xy 142.759394 45.029179) (xy 142.819737 44.883497) (xy 142.8505 44.728842) (xy 142.8505 44.571158) - (xy 142.8505 44.571155) (xy 142.850499 44.571153) (xy 143.1495 44.571153) (xy 143.1495 44.728846) - (xy 143.180261 44.883489) (xy 143.180264 44.883501) (xy 143.240602 45.029172) (xy 143.240609 45.029185) - (xy 143.32821 45.160288) (xy 143.328213 45.160292) (xy 143.439707 45.271786) (xy 143.439711 45.271789) - (xy 143.570814 45.35939) (xy 143.570827 45.359397) (xy 143.675997 45.402959) (xy 143.716503 45.419737) - (xy 143.871153 45.450499) (xy 143.871156 45.4505) (xy 143.871158 45.4505) (xy 144.028844 45.4505) - (xy 144.028845 45.450499) (xy 144.183497 45.419737) (xy 144.329179 45.359394) (xy 144.460289 45.271789) - (xy 144.571789 45.160289) (xy 144.659394 45.029179) (xy 144.719737 44.883497) (xy 144.7505 44.728842) - (xy 144.7505 44.571158) (xy 144.7505 44.571155) (xy 144.750499 44.571153) (xy 144.737847 44.50755) - (xy 144.719737 44.416503) (xy 144.69965 44.368009) (xy 144.659397 44.270827) (xy 144.65939 44.270814) - (xy 144.571789 44.139711) (xy 144.571786 44.139707) (xy 144.460292 44.028213) (xy 144.460288 44.02821) - (xy 144.329185 43.940609) (xy 144.329172 43.940602) (xy 144.183501 43.880264) (xy 144.183489 43.880261) - (xy 144.028845 43.8495) (xy 144.028842 43.8495) (xy 143.871158 43.8495) (xy 143.871155 43.8495) - (xy 143.71651 43.880261) (xy 143.716498 43.880264) (xy 143.570827 43.940602) (xy 143.570814 43.940609) - (xy 143.439711 44.02821) (xy 143.439707 44.028213) (xy 143.328213 44.139707) (xy 143.32821 44.139711) - (xy 143.240609 44.270814) (xy 143.240602 44.270827) (xy 143.180264 44.416498) (xy 143.180261 44.41651) - (xy 143.1495 44.571153) (xy 142.850499 44.571153) (xy 142.837847 44.50755) (xy 142.819737 44.416503) - (xy 142.79965 44.368009) (xy 142.759397 44.270827) (xy 142.75939 44.270814) (xy 142.671789 44.139711) - (xy 142.671786 44.139707) (xy 142.560292 44.028213) (xy 142.560288 44.02821) (xy 142.429185 43.940609) - (xy 142.429172 43.940602) (xy 142.283501 43.880264) (xy 142.283489 43.880261) (xy 142.128845 43.8495) - (xy 142.128842 43.8495) (xy 141.971158 43.8495) (xy 141.971155 43.8495) (xy 141.81651 43.880261) - (xy 141.816498 43.880264) (xy 141.670827 43.940602) (xy 141.670814 43.940609) (xy 141.539711 44.02821) - (xy 141.539707 44.028213) (xy 141.428213 44.139707) (xy 141.42821 44.139711) (xy 141.340609 44.270814) - (xy 141.340602 44.270827) (xy 141.280264 44.416498) (xy 141.280261 44.41651) (xy 141.2495 44.571153) - (xy 132.801009 44.571153) (xy 132.819685 44.50755) (xy 132.872489 44.461795) (xy 132.941647 44.451851) - (xy 132.94818 44.452969) (xy 132.987947 44.46088) (xy 133.036307 44.4705) (xy 133.036309 44.4705) - (xy 134.013693 44.4705) (xy 134.013694 44.470499) (xy 134.10181 44.452972) (xy 134.187658 44.435896) - (xy 134.187661 44.435894) (xy 134.187666 44.435894) (xy 134.351547 44.368013) (xy 134.499035 44.269464) - (xy 134.624464 44.144035) (xy 134.723013 43.996547) (xy 134.790894 43.832666) (xy 134.8255 43.658691) - (xy 134.8255 43.481309) (xy 134.8255 43.481306) (xy 134.825499 43.481304) (xy 138.3245 43.481304) - (xy 138.3245 43.658695) (xy 138.359103 43.832658) (xy 138.359106 43.832667) (xy 138.426983 43.99654) - (xy 138.42699 43.996553) (xy 138.525535 44.144034) (xy 138.525538 44.144038) (xy 138.650961 44.269461) - (xy 138.650965 44.269464) (xy 138.798446 44.368009) (xy 138.798459 44.368016) (xy 138.915507 44.416498) - (xy 138.962334 44.435894) (xy 138.962336 44.435894) (xy 138.962341 44.435896) (xy 139.136304 44.470499) - (xy 139.136307 44.4705) (xy 139.136309 44.4705) (xy 140.113693 44.4705) (xy 140.249686 44.443449) - (xy 140.249686 44.443448) (xy 140.271317 44.439145) (xy 140.287658 44.435896) (xy 140.287661 44.435894) - (xy 140.287666 44.435894) (xy 140.451547 44.368013) (xy 140.599035 44.269464) (xy 140.724464 44.144035) - (xy 140.823013 43.996547) (xy 140.890894 43.832666) (xy 140.9255 43.658691) (xy 140.9255 43.481309) - (xy 140.9255 43.481306) (xy 140.925499 43.481304) (xy 140.890896 43.307341) (xy 140.890893 43.307332) - (xy 140.823016 43.143459) (xy 140.823009 43.143446) (xy 140.724464 42.995965) (xy 140.724461 42.995961) - (xy 140.599038 42.870538) (xy 140.599034 42.870535) (xy 140.451553 42.77199) (xy 140.45154 42.771983) - (xy 140.287667 42.704106) (xy 140.287658 42.704103) (xy 140.113694 42.6695) (xy 140.113691 42.6695) - (xy 139.136309 42.6695) (xy 139.136306 42.6695) (xy 138.962341 42.704103) (xy 138.962332 42.704106) - (xy 138.798459 42.771983) (xy 138.798446 42.77199) (xy 138.650965 42.870535) (xy 138.650961 42.870538) - (xy 138.525538 42.995961) (xy 138.525535 42.995965) (xy 138.42699 43.143446) (xy 138.426983 43.143459) - (xy 138.359106 43.307332) (xy 138.359103 43.307341) (xy 138.3245 43.481304) (xy 134.825499 43.481304) - (xy 134.790896 43.307341) (xy 134.790893 43.307332) (xy 134.723016 43.143459) (xy 134.723009 43.143446) - (xy 134.624464 42.995965) (xy 134.624461 42.995961) (xy 134.499038 42.870538) (xy 134.499034 42.870535) - (xy 134.351553 42.77199) (xy 134.35154 42.771983) (xy 134.187667 42.704106) (xy 134.187658 42.704103) - (xy 134.013694 42.6695) (xy 134.013691 42.6695) (xy 133.036309 42.6695) (xy 133.036304 42.6695) - (xy 132.948191 42.687027) (xy 132.8786 42.6808) (xy 132.823422 42.637937) (xy 132.800178 42.572047) - (xy 132.8 42.56541) (xy 132.8 41.521153) (xy 134.6995 41.521153) (xy 134.6995 41.678846) (xy 134.730261 41.833489) - (xy 134.730264 41.833501) (xy 134.790602 41.979172) (xy 134.790609 41.979185) (xy 134.87821 42.110288) - (xy 134.878213 42.110292) (xy 134.989707 42.221786) (xy 134.989711 42.221789) (xy 135.120814 42.30939) - (xy 135.120827 42.309397) (xy 135.266498 42.369735) (xy 135.266503 42.369737) (xy 135.421153 42.400499) - (xy 135.421156 42.4005) (xy 135.421158 42.4005) (xy 135.578844 42.4005) (xy 135.578845 42.400499) - (xy 135.733497 42.369737) (xy 135.879179 42.309394) (xy 136.010289 42.221789) (xy 136.121789 42.110289) - (xy 136.209394 41.979179) (xy 136.269737 41.833497) (xy 136.3005 41.678842) (xy 136.3005 41.521158) - (xy 136.3005 41.521155) (xy 136.300499 41.521153) (xy 136.269738 41.36651) (xy 136.269737 41.366503) - (xy 136.269735 41.366498) (xy 136.209397 41.220827) (xy 136.20939 41.220814) (xy 136.121789 41.089711) - (xy 136.121786 41.089707) (xy 136.010292 40.978213) (xy 136.010288 40.97821) (xy 135.879185 40.890609) - (xy 135.879172 40.890602) (xy 135.733501 40.830264) (xy 135.733489 40.830261) (xy 135.578845 40.7995) - (xy 135.578842 40.7995) (xy 135.421158 40.7995) (xy 135.421155 40.7995) (xy 135.26651 40.830261) - (xy 135.266498 40.830264) (xy 135.120827 40.890602) (xy 135.120814 40.890609) (xy 134.989711 40.97821) - (xy 134.989707 40.978213) (xy 134.878213 41.089707) (xy 134.87821 41.089711) (xy 134.790609 41.220814) - (xy 134.790602 41.220827) (xy 134.730264 41.366498) (xy 134.730261 41.36651) (xy 134.6995 41.521153) - (xy 132.8 41.521153) (xy 132.8 39.6245) (xy 132.819685 39.557461) (xy 132.872489 39.511706) (xy 132.924 39.5005) - (xy 208.1755 39.5005) + (xy 137.73048 49.101135) (xy 137.730479 49.101133) (xy 137.699717 48.946483) (xy 137.655404 48.8395) + (xy 137.639377 48.800807) (xy 137.63937 48.800794) (xy 137.551769 48.669691) (xy 137.551766 48.669687) + (xy 137.454234 48.572155) (xy 137.420749 48.510832) (xy 137.425733 48.44114) (xy 137.467605 48.385207) + (xy 137.533069 48.36079) (xy 137.545462 48.360956) (xy 137.545462 48.360824) (xy 137.70924 48.360824) + (xy 137.709241 48.360823) (xy 137.863893 48.330061) (xy 138.009575 48.269718) (xy 138.140685 48.182113) + (xy 138.252185 48.070613) (xy 138.252187 48.070609) (xy 138.255764 48.067033) (xy 138.317087 48.033548) + (xy 138.386779 48.038532) (xy 138.442713 48.080403) (xy 138.446548 48.085823) (xy 138.525535 48.204034) + (xy 138.525538 48.204038) (xy 138.650961 48.329461) (xy 138.650965 48.329464) (xy 138.798446 48.428009) + (xy 138.798459 48.428016) (xy 138.921363 48.478923) (xy 138.962334 48.495894) (xy 138.962336 48.495894) + (xy 138.962341 48.495896) (xy 139.136304 48.530499) (xy 139.136307 48.5305) (xy 139.136309 48.5305) + (xy 140.113693 48.5305) (xy 140.113694 48.530499) (xy 140.20181 48.512972) (xy 140.287658 48.495896) + (xy 140.287661 48.495894) (xy 140.287666 48.495894) (xy 140.451547 48.428013) (xy 140.599035 48.329464) + (xy 140.724464 48.204035) (xy 140.823013 48.056547) (xy 140.890894 47.892666) (xy 140.897335 47.860289) + (xy 140.913964 47.776682) (xy 140.9255 47.718691) (xy 140.9255 47.541309) (xy 140.9255 47.541306) + (xy 140.925499 47.541304) (xy 140.890896 47.367341) (xy 140.890894 47.367338) (xy 140.890894 47.367334) + (xy 140.851055 47.271153) (xy 141.2495 47.271153) (xy 141.2495 47.428846) (xy 141.280261 47.583489) + (xy 141.280264 47.583501) (xy 141.340602 47.729172) (xy 141.340609 47.729185) (xy 141.42821 47.860288) + (xy 141.428213 47.860292) (xy 141.539707 47.971786) (xy 141.539711 47.971789) (xy 141.670814 48.05939) + (xy 141.670827 48.059397) (xy 141.816498 48.119735) (xy 141.816503 48.119737) (xy 141.971153 48.150499) + (xy 141.971156 48.1505) (xy 141.971158 48.1505) (xy 142.128844 48.1505) (xy 142.128845 48.150499) + (xy 142.283497 48.119737) (xy 142.396166 48.073067) (xy 142.429172 48.059397) (xy 142.429172 48.059396) + (xy 142.429179 48.059394) (xy 142.560289 47.971789) (xy 142.671789 47.860289) (xy 142.759394 47.729179) + (xy 142.819737 47.583497) (xy 142.8505 47.428842) (xy 142.8505 47.271158) (xy 142.8505 47.271155) + (xy 142.850499 47.271153) (xy 143.1495 47.271153) (xy 143.1495 47.428846) (xy 143.180261 47.583489) + (xy 143.180264 47.583501) (xy 143.240602 47.729172) (xy 143.240609 47.729185) (xy 143.32821 47.860288) + (xy 143.328213 47.860292) (xy 143.439707 47.971786) (xy 143.439711 47.971789) (xy 143.570814 48.05939) + (xy 143.570827 48.059397) (xy 143.716498 48.119735) (xy 143.716503 48.119737) (xy 143.871153 48.150499) + (xy 143.871156 48.1505) (xy 143.871158 48.1505) (xy 144.028844 48.1505) (xy 144.028845 48.150499) + (xy 144.183497 48.119737) (xy 144.296166 48.073067) (xy 144.329172 48.059397) (xy 144.329172 48.059396) + (xy 144.329179 48.059394) (xy 144.460289 47.971789) (xy 144.571789 47.860289) (xy 144.659394 47.729179) + (xy 144.719737 47.583497) (xy 144.7505 47.428842) (xy 144.7505 47.271158) (xy 144.7505 47.271155) + (xy 144.750499 47.271153) (xy 144.737034 47.203459) (xy 144.719737 47.116503) (xy 144.69466 47.055961) + (xy 144.659397 46.970827) (xy 144.65939 46.970814) (xy 144.571789 46.839711) (xy 144.571786 46.839707) + (xy 144.460292 46.728213) (xy 144.460288 46.72821) (xy 144.329185 46.640609) (xy 144.329172 46.640602) + (xy 144.183501 46.580264) (xy 144.183489 46.580261) (xy 144.028845 46.5495) (xy 144.028842 46.5495) + (xy 143.871158 46.5495) (xy 143.871155 46.5495) (xy 143.71651 46.580261) (xy 143.716498 46.580264) + (xy 143.570827 46.640602) (xy 143.570814 46.640609) (xy 143.439711 46.72821) (xy 143.439707 46.728213) + (xy 143.328213 46.839707) (xy 143.32821 46.839711) (xy 143.240609 46.970814) (xy 143.240602 46.970827) + (xy 143.180264 47.116498) (xy 143.180261 47.11651) (xy 143.1495 47.271153) (xy 142.850499 47.271153) + (xy 142.837034 47.203459) (xy 142.819737 47.116503) (xy 142.79466 47.055961) (xy 142.759397 46.970827) + (xy 142.75939 46.970814) (xy 142.671789 46.839711) (xy 142.671786 46.839707) (xy 142.560292 46.728213) + (xy 142.560288 46.72821) (xy 142.429185 46.640609) (xy 142.429172 46.640602) (xy 142.283501 46.580264) + (xy 142.283489 46.580261) (xy 142.128845 46.5495) (xy 142.128842 46.5495) (xy 141.971158 46.5495) + (xy 141.971155 46.5495) (xy 141.81651 46.580261) (xy 141.816498 46.580264) (xy 141.670827 46.640602) + (xy 141.670814 46.640609) (xy 141.539711 46.72821) (xy 141.539707 46.728213) (xy 141.428213 46.839707) + (xy 141.42821 46.839711) (xy 141.340609 46.970814) (xy 141.340602 46.970827) (xy 141.280264 47.116498) + (xy 141.280261 47.11651) (xy 141.2495 47.271153) (xy 140.851055 47.271153) (xy 140.823016 47.203459) + (xy 140.823009 47.203446) (xy 140.724464 47.055965) (xy 140.724461 47.055961) (xy 140.599038 46.930538) + (xy 140.599034 46.930535) (xy 140.451553 46.83199) (xy 140.45154 46.831983) (xy 140.287667 46.764106) + (xy 140.287658 46.764103) (xy 140.113694 46.7295) (xy 140.113691 46.7295) (xy 139.287262 46.7295) + (xy 139.220223 46.709815) (xy 139.174468 46.657011) (xy 139.172712 46.652978) (xy 139.159392 46.620821) + (xy 139.159389 46.620816) (xy 139.159388 46.620814) (xy 139.071787 46.489711) (xy 139.071784 46.489707) + (xy 138.96029 46.378213) (xy 138.960286 46.37821) (xy 138.829183 46.290609) (xy 138.82917 46.290602) + (xy 138.683499 46.230264) (xy 138.683487 46.230261) (xy 138.528843 46.1995) (xy 138.52884 46.1995) + (xy 138.371156 46.1995) (xy 138.371153 46.1995) (xy 138.216508 46.230261) (xy 138.216496 46.230264) + (xy 138.070825 46.290602) (xy 138.070812 46.290609) (xy 137.939709 46.37821) (xy 137.939705 46.378213) + (xy 137.828211 46.489707) (xy 137.828208 46.489711) (xy 137.740606 46.620816) (xy 137.740604 46.620821) + (xy 137.714734 46.683277) (xy 137.670895 46.737679) (xy 137.604601 46.759745) (xy 137.600174 46.759824) + (xy 137.551551 46.759824) (xy 137.396906 46.790585) (xy 137.396894 46.790588) (xy 137.251223 46.850926) + (xy 137.25121 46.850933) (xy 137.120107 46.938534) (xy 137.120103 46.938537) (xy 137.008609 47.050031) + (xy 137.008606 47.050035) (xy 136.921005 47.181138) (xy 136.920998 47.181151) (xy 136.86066 47.326822) + (xy 136.860657 47.326834) (xy 136.829896 47.481477) (xy 136.829896 47.63917) (xy 136.860657 47.793813) + (xy 136.86066 47.793825) (xy 136.920998 47.939496) (xy 136.921005 47.939509) (xy 137.008606 48.070612) + (xy 137.008609 48.070616) (xy 137.106141 48.168148) (xy 137.139626 48.229471) (xy 137.134642 48.299163) + (xy 137.09277 48.355096) (xy 137.027306 48.379513) (xy 137.014914 48.379347) (xy 137.014914 48.37948) + (xy 136.851135 48.37948) (xy 136.69649 48.410241) (xy 136.696478 48.410244) (xy 136.550807 48.470582) + (xy 136.550794 48.470589) (xy 136.419691 48.55819) (xy 136.419687 48.558193) (xy 136.308193 48.669687) + (xy 136.30819 48.669691) (xy 136.220589 48.800794) (xy 136.220582 48.800807) (xy 136.160244 48.946478) + (xy 136.160241 48.94649) (xy 136.12948 49.101133) (xy 136.12948 49.258826) (xy 136.160241 49.413469) + (xy 136.160243 49.413476) (xy 136.166486 49.428549) (xy 136.173953 49.498019) (xy 136.142678 49.560497) + (xy 136.082588 49.596149) (xy 136.051924 49.6) (xy 132.924 49.6) (xy 132.856961 49.580315) (xy 132.811206 49.527511) + (xy 132.8 49.476) (xy 132.8 48.634589) (xy 132.819685 48.56755) (xy 132.872489 48.521795) (xy 132.941647 48.511851) + (xy 132.94818 48.512969) (xy 132.987947 48.52088) (xy 133.036307 48.5305) (xy 133.036309 48.5305) + (xy 134.013693 48.5305) (xy 134.013694 48.530499) (xy 134.10181 48.512972) (xy 134.187658 48.495896) + (xy 134.187661 48.495894) (xy 134.187666 48.495894) (xy 134.351547 48.428013) (xy 134.499035 48.329464) + (xy 134.624464 48.204035) (xy 134.723013 48.056547) (xy 134.790894 47.892666) (xy 134.797335 47.860289) + (xy 134.813964 47.776682) (xy 134.8255 47.718691) (xy 134.8255 47.541309) (xy 134.8255 47.541306) + (xy 134.825499 47.541304) (xy 134.790896 47.367341) (xy 134.790893 47.367332) (xy 134.723016 47.203459) + (xy 134.723009 47.203446) (xy 134.624464 47.055965) (xy 134.624461 47.055961) (xy 134.499038 46.930538) + (xy 134.499034 46.930535) (xy 134.351553 46.83199) (xy 134.35154 46.831983) (xy 134.187667 46.764106) + (xy 134.187658 46.764103) (xy 134.013694 46.7295) (xy 134.013691 46.7295) (xy 133.036309 46.7295) + (xy 133.036304 46.7295) (xy 132.948191 46.747027) (xy 132.8786 46.7408) (xy 132.823422 46.697937) + (xy 132.800178 46.632047) (xy 132.8 46.62541) (xy 132.8 46.2995) (xy 132.819685 46.232461) (xy 132.872489 46.186706) + (xy 132.924 46.1755) (xy 133.075764 46.1755) (xy 133.075766 46.1755) (xy 133.222135 46.136281) (xy 133.353365 46.060515) + (xy 133.460515 45.953365) (xy 133.536281 45.822135) (xy 133.5755 45.675766) (xy 133.5755 45.524234) + (xy 139.5745 45.524234) (xy 139.5745 45.675765) (xy 139.613719 45.822136) (xy 139.651602 45.88775) + (xy 139.689485 45.953365) (xy 139.796635 46.060515) (xy 139.927865 46.136281) (xy 140.074234 46.1755) + (xy 140.074236 46.1755) (xy 140.225764 46.1755) (xy 140.225766 46.1755) (xy 140.372135 46.136281) + (xy 140.503365 46.060515) (xy 140.610515 45.953365) (xy 140.686281 45.822135) (xy 140.7255 45.675766) + (xy 140.7255 45.524234) (xy 140.686281 45.377865) (xy 140.610515 45.246635) (xy 140.503365 45.139485) + (xy 140.43775 45.101602) (xy 140.372136 45.063719) (xy 140.29895 45.044109) (xy 140.225766 45.0245) + (xy 140.074234 45.0245) (xy 139.927863 45.063719) (xy 139.796635 45.139485) (xy 139.796632 45.139487) + (xy 139.689487 45.246632) (xy 139.689485 45.246635) (xy 139.613719 45.377863) (xy 139.5745 45.524234) + (xy 133.5755 45.524234) (xy 133.536281 45.377865) (xy 133.460515 45.246635) (xy 133.353365 45.139485) + (xy 133.28775 45.101602) (xy 133.222136 45.063719) (xy 133.14895 45.044109) (xy 133.075766 45.0245) + (xy 132.924234 45.0245) (xy 132.924 45.0245) (xy 132.856961 45.004815) (xy 132.811206 44.952011) + (xy 132.8 44.9005) (xy 132.8 44.574589) (xy 132.801009 44.571153) (xy 141.2495 44.571153) (xy 141.2495 44.728846) + (xy 141.280261 44.883489) (xy 141.280264 44.883501) (xy 141.340602 45.029172) (xy 141.340609 45.029185) + (xy 141.42821 45.160288) (xy 141.428213 45.160292) (xy 141.539707 45.271786) (xy 141.539711 45.271789) + (xy 141.670814 45.35939) (xy 141.670827 45.359397) (xy 141.816498 45.419735) (xy 141.816503 45.419737) + (xy 141.971153 45.450499) (xy 141.971156 45.4505) (xy 141.971158 45.4505) (xy 142.128844 45.4505) + (xy 142.128845 45.450499) (xy 142.283497 45.419737) (xy 142.429179 45.359394) (xy 142.560289 45.271789) + (xy 142.671789 45.160289) (xy 142.759394 45.029179) (xy 142.819737 44.883497) (xy 142.8505 44.728842) + (xy 142.8505 44.571158) (xy 142.8505 44.571155) (xy 142.850499 44.571153) (xy 143.1495 44.571153) + (xy 143.1495 44.728846) (xy 143.180261 44.883489) (xy 143.180264 44.883501) (xy 143.240602 45.029172) + (xy 143.240609 45.029185) (xy 143.32821 45.160288) (xy 143.328213 45.160292) (xy 143.439707 45.271786) + (xy 143.439711 45.271789) (xy 143.570814 45.35939) (xy 143.570827 45.359397) (xy 143.716498 45.419735) + (xy 143.716503 45.419737) (xy 143.871153 45.450499) (xy 143.871156 45.4505) (xy 143.871158 45.4505) + (xy 144.028844 45.4505) (xy 144.028845 45.450499) (xy 144.183497 45.419737) (xy 144.329179 45.359394) + (xy 144.460289 45.271789) (xy 144.571789 45.160289) (xy 144.659394 45.029179) (xy 144.719737 44.883497) + (xy 144.7505 44.728842) (xy 144.7505 44.571158) (xy 144.7505 44.571155) (xy 144.750499 44.571153) + (xy 144.737847 44.50755) (xy 144.719737 44.416503) (xy 144.69965 44.368009) (xy 144.659397 44.270827) + (xy 144.65939 44.270814) (xy 144.571789 44.139711) (xy 144.571786 44.139707) (xy 144.460292 44.028213) + (xy 144.460288 44.02821) (xy 144.329185 43.940609) (xy 144.329172 43.940602) (xy 144.183501 43.880264) + (xy 144.183489 43.880261) (xy 144.028845 43.8495) (xy 144.028842 43.8495) (xy 143.871158 43.8495) + (xy 143.871155 43.8495) (xy 143.71651 43.880261) (xy 143.716498 43.880264) (xy 143.570827 43.940602) + (xy 143.570814 43.940609) (xy 143.439711 44.02821) (xy 143.439707 44.028213) (xy 143.328213 44.139707) + (xy 143.32821 44.139711) (xy 143.240609 44.270814) (xy 143.240602 44.270827) (xy 143.180264 44.416498) + (xy 143.180261 44.41651) (xy 143.1495 44.571153) (xy 142.850499 44.571153) (xy 142.837847 44.50755) + (xy 142.819737 44.416503) (xy 142.79965 44.368009) (xy 142.759397 44.270827) (xy 142.75939 44.270814) + (xy 142.671789 44.139711) (xy 142.671786 44.139707) (xy 142.560292 44.028213) (xy 142.560288 44.02821) + (xy 142.429185 43.940609) (xy 142.429172 43.940602) (xy 142.283501 43.880264) (xy 142.283489 43.880261) + (xy 142.128845 43.8495) (xy 142.128842 43.8495) (xy 141.971158 43.8495) (xy 141.971155 43.8495) + (xy 141.81651 43.880261) (xy 141.816498 43.880264) (xy 141.670827 43.940602) (xy 141.670814 43.940609) + (xy 141.539711 44.02821) (xy 141.539707 44.028213) (xy 141.428213 44.139707) (xy 141.42821 44.139711) + (xy 141.340609 44.270814) (xy 141.340602 44.270827) (xy 141.280264 44.416498) (xy 141.280261 44.41651) + (xy 141.2495 44.571153) (xy 132.801009 44.571153) (xy 132.819685 44.50755) (xy 132.872489 44.461795) + (xy 132.941647 44.451851) (xy 132.94818 44.452969) (xy 132.987947 44.46088) (xy 133.036307 44.4705) + (xy 133.036309 44.4705) (xy 134.013693 44.4705) (xy 134.013694 44.470499) (xy 134.10181 44.452972) + (xy 134.187658 44.435896) (xy 134.187661 44.435894) (xy 134.187666 44.435894) (xy 134.351547 44.368013) + (xy 134.499035 44.269464) (xy 134.624464 44.144035) (xy 134.723013 43.996547) (xy 134.790894 43.832666) + (xy 134.8255 43.658691) (xy 134.8255 43.481309) (xy 134.8255 43.481306) (xy 134.825499 43.481304) + (xy 138.3245 43.481304) (xy 138.3245 43.658695) (xy 138.359103 43.832658) (xy 138.359106 43.832667) + (xy 138.426983 43.99654) (xy 138.42699 43.996553) (xy 138.525535 44.144034) (xy 138.525538 44.144038) + (xy 138.650961 44.269461) (xy 138.650965 44.269464) (xy 138.798446 44.368009) (xy 138.798459 44.368016) + (xy 138.915507 44.416498) (xy 138.962334 44.435894) (xy 138.962336 44.435894) (xy 138.962341 44.435896) + (xy 139.136304 44.470499) (xy 139.136307 44.4705) (xy 139.136309 44.4705) (xy 140.113693 44.4705) + (xy 140.249686 44.443449) (xy 140.249686 44.443448) (xy 140.271317 44.439145) (xy 140.287658 44.435896) + (xy 140.287661 44.435894) (xy 140.287666 44.435894) (xy 140.451547 44.368013) (xy 140.599035 44.269464) + (xy 140.724464 44.144035) (xy 140.823013 43.996547) (xy 140.890894 43.832666) (xy 140.9255 43.658691) + (xy 140.9255 43.481309) (xy 140.9255 43.481306) (xy 140.925499 43.481304) (xy 140.890896 43.307341) + (xy 140.890893 43.307332) (xy 140.823016 43.143459) (xy 140.823009 43.143446) (xy 140.724464 42.995965) + (xy 140.724461 42.995961) (xy 140.599038 42.870538) (xy 140.599034 42.870535) (xy 140.451553 42.77199) + (xy 140.45154 42.771983) (xy 140.287667 42.704106) (xy 140.287658 42.704103) (xy 140.113694 42.6695) + (xy 140.113691 42.6695) (xy 139.136309 42.6695) (xy 139.136306 42.6695) (xy 138.962341 42.704103) + (xy 138.962332 42.704106) (xy 138.798459 42.771983) (xy 138.798446 42.77199) (xy 138.650965 42.870535) + (xy 138.650961 42.870538) (xy 138.525538 42.995961) (xy 138.525535 42.995965) (xy 138.42699 43.143446) + (xy 138.426983 43.143459) (xy 138.359106 43.307332) (xy 138.359103 43.307341) (xy 138.3245 43.481304) + (xy 134.825499 43.481304) (xy 134.790896 43.307341) (xy 134.790893 43.307332) (xy 134.723016 43.143459) + (xy 134.723009 43.143446) (xy 134.624464 42.995965) (xy 134.624461 42.995961) (xy 134.499038 42.870538) + (xy 134.499034 42.870535) (xy 134.351553 42.77199) (xy 134.35154 42.771983) (xy 134.187667 42.704106) + (xy 134.187658 42.704103) (xy 134.013694 42.6695) (xy 134.013691 42.6695) (xy 133.036309 42.6695) + (xy 133.036304 42.6695) (xy 132.948191 42.687027) (xy 132.8786 42.6808) (xy 132.823422 42.637937) + (xy 132.800178 42.572047) (xy 132.8 42.56541) (xy 132.8 41.521153) (xy 134.6995 41.521153) (xy 134.6995 41.678846) + (xy 134.730261 41.833489) (xy 134.730264 41.833501) (xy 134.790602 41.979172) (xy 134.790609 41.979185) + (xy 134.87821 42.110288) (xy 134.878213 42.110292) (xy 134.989707 42.221786) (xy 134.989711 42.221789) + (xy 135.120814 42.30939) (xy 135.120827 42.309397) (xy 135.266498 42.369735) (xy 135.266503 42.369737) + (xy 135.421153 42.400499) (xy 135.421156 42.4005) (xy 135.421158 42.4005) (xy 135.578844 42.4005) + (xy 135.578845 42.400499) (xy 135.733497 42.369737) (xy 135.879179 42.309394) (xy 136.010289 42.221789) + (xy 136.121789 42.110289) (xy 136.209394 41.979179) (xy 136.269737 41.833497) (xy 136.3005 41.678842) + (xy 136.3005 41.521158) (xy 136.3005 41.521155) (xy 136.300499 41.521153) (xy 136.269738 41.36651) + (xy 136.269737 41.366503) (xy 136.269735 41.366498) (xy 136.209397 41.220827) (xy 136.20939 41.220814) + (xy 136.121789 41.089711) (xy 136.121786 41.089707) (xy 136.010292 40.978213) (xy 136.010288 40.97821) + (xy 135.879185 40.890609) (xy 135.879172 40.890602) (xy 135.733501 40.830264) (xy 135.733489 40.830261) + (xy 135.578845 40.7995) (xy 135.578842 40.7995) (xy 135.421158 40.7995) (xy 135.421155 40.7995) + (xy 135.26651 40.830261) (xy 135.266498 40.830264) (xy 135.120827 40.890602) (xy 135.120814 40.890609) + (xy 134.989711 40.97821) (xy 134.989707 40.978213) (xy 134.878213 41.089707) (xy 134.87821 41.089711) + (xy 134.790609 41.220814) (xy 134.790602 41.220827) (xy 134.730264 41.366498) (xy 134.730261 41.36651) + (xy 134.6995 41.521153) (xy 132.8 41.521153) (xy 132.8 39.3245) (xy 132.819685 39.257461) (xy 132.872489 39.211706) + (xy 132.924 39.2005) (xy 208.4755 39.2005) ) ) ) @@ -36686,421 +41657,272 @@ ) (polygon (pts - (xy 119.25 48.1) (xy 123.2 48.1) (xy 130.25 55.05) (xy 144 55.05) (xy 144.1 72.4) (xy 122.2 72.4) - (xy 119.5 69.7) + (xy 119.581106 48.08642) (xy 123.288494 48.086671) (xy 130.244645 55.046432) (xy 144 55.05) (xy 144.1 72.4) + (xy 122.2 72.4) (xy 119.5 69.7) ) ) (filled_polygon (layer "In2.Cu") (pts - (xy 123.723896 48.620185) (xy 123.74391 48.636195) (xy 130.249999 55.05) (xy 130.25 55.05) (xy 135.284894 55.05) - (xy 135.351933 55.069685) (xy 135.397688 55.122489) (xy 135.407632 55.191647) (xy 135.378607 55.255203) - (xy 135.353785 55.277102) (xy 135.314711 55.30321) (xy 135.314707 55.303213) (xy 135.203213 55.414707) - (xy 135.20321 55.414711) (xy 135.115609 55.545814) (xy 135.115602 55.545827) (xy 135.055264 55.691498) - (xy 135.055261 55.69151) (xy 135.0245 55.846153) (xy 135.0245 55.862324) (xy 135.004815 55.929363) - (xy 134.952011 55.975118) (xy 134.882853 55.985062) (xy 134.876309 55.983941) (xy 134.828846 55.9745) - (xy 134.828842 55.9745) (xy 134.671158 55.9745) (xy 134.671155 55.9745) (xy 134.51651 56.005261) - (xy 134.516498 56.005264) (xy 134.370827 56.065602) (xy 134.370814 56.065609) (xy 134.239711 56.15321) - (xy 134.239707 56.153213) (xy 134.128213 56.264707) (xy 134.12821 56.264711) (xy 134.040609 56.395814) - (xy 134.040602 56.395827) (xy 133.980264 56.541498) (xy 133.980261 56.54151) (xy 133.9495 56.696153) - (xy 133.9495 56.853846) (xy 133.980261 57.008489) (xy 133.980264 57.008501) (xy 134.040602 57.154172) - (xy 134.04061 57.154187) (xy 134.057769 57.179866) (xy 134.078648 57.246543) (xy 134.060164 57.313924) - (xy 134.057771 57.317647) (xy 134.035611 57.350812) (xy 134.035602 57.350828) (xy 133.975264 57.496498) - (xy 133.975261 57.49651) (xy 133.9445 57.651153) (xy 133.9445 57.808846) (xy 133.975261 57.963489) - (xy 133.975264 57.963501) (xy 134.035602 58.109172) (xy 134.035609 58.109185) (xy 134.12321 58.240288) - (xy 134.123213 58.240292) (xy 134.234707 58.351786) (xy 134.234711 58.351789) (xy 134.365814 58.43939) - (xy 134.365826 58.439397) (xy 134.468226 58.481811) (xy 134.480516 58.486902) (xy 134.485519 58.488974) - (xy 134.539923 58.532814) (xy 134.561988 58.599108) (xy 134.544709 58.666808) (xy 134.493572 58.714419) - (xy 134.48552 58.718096) (xy 134.370823 58.765604) (xy 134.370814 58.765609) (xy 134.239711 58.85321) - (xy 134.239707 58.853213) (xy 134.128213 58.964707) (xy 134.12821 58.964711) (xy 134.040609 59.095814) - (xy 134.040602 59.095827) (xy 133.980264 59.241498) (xy 133.980261 59.24151) (xy 133.9495 59.396153) - (xy 133.9495 59.553846) (xy 133.980261 59.708489) (xy 133.980264 59.708501) (xy 134.040602 59.854172) - (xy 134.040609 59.854185) (xy 134.12821 59.985288) (xy 134.128213 59.985292) (xy 134.239707 60.096786) - (xy 134.239711 60.096789) (xy 134.370814 60.18439) (xy 134.370827 60.184397) (xy 134.516498 60.244735) - (xy 134.516503 60.244737) (xy 134.671153 60.275499) (xy 134.671156 60.2755) (xy 134.671158 60.2755) - (xy 134.828844 60.2755) (xy 134.828845 60.275499) (xy 134.983497 60.244737) (xy 135.129179 60.184394) - (xy 135.260289 60.096789) (xy 135.371789 59.985289) (xy 135.459394 59.854179) (xy 135.519737 59.708497) - (xy 135.5505 59.553842) (xy 135.5505 59.396158) (xy 135.5505 59.396155) (xy 135.550499 59.396153) - (xy 135.536988 59.32823) (xy 135.519737 59.241503) (xy 135.515295 59.230778) (xy 135.459397 59.095827) - (xy 135.45939 59.095814) (xy 135.371789 58.964711) (xy 135.371786 58.964707) (xy 135.260292 58.853213) - (xy 135.260288 58.85321) (xy 135.129185 58.765609) (xy 135.129172 58.765602) (xy 135.00948 58.716025) - (xy 134.955076 58.672184) (xy 134.933011 58.60589) (xy 134.95029 58.538191) (xy 135.001427 58.49058) - (xy 135.009444 58.486918) (xy 135.124179 58.439394) (xy 135.255289 58.351789) (xy 135.274817 58.33226) - (xy 135.336138 58.298774) (xy 135.40583 58.303757) (xy 135.45018 58.332259) (xy 135.489707 58.371786) - (xy 135.489711 58.371789) (xy 135.620814 58.45939) (xy 135.620827 58.459397) (xy 135.696111 58.49058) - (xy 135.766503 58.519737) (xy 135.820612 58.5305) (xy 135.921155 58.5505) (xy 135.922769 58.550659) - (xy 135.92356 58.550978) (xy 135.927132 58.551689) (xy 135.926997 58.552366) (xy 135.987557 58.576817) - (xy 136.025181 58.626609) (xy 136.049996 58.686519) (xy 136.137599 58.817625) (xy 136.137602 58.817629) - (xy 136.249096 58.929123) (xy 136.2491 58.929126) (xy 136.380203 59.016727) (xy 136.380216 59.016734) - (xy 136.525887 59.077072) (xy 136.525892 59.077074) (xy 136.638715 59.099516) (xy 136.680542 59.107836) - (xy 136.680545 59.107837) (xy 136.680547 59.107837) (xy 136.83823 59.107837) (xy 136.838231 59.107837) - (xy 136.88006 59.099516) (xy 136.949648 59.105742) (xy 137.004827 59.148603) (xy 137.007354 59.152244) - (xy 137.025012 59.178672) (xy 137.025016 59.178677) (xy 137.13651 59.290171) (xy 137.136514 59.290174) - (xy 137.267617 59.377775) (xy 137.267624 59.377779) (xy 137.296947 59.389924) (xy 137.35135 59.433765) - (xy 137.373416 59.500058) (xy 137.356138 59.567758) (xy 137.352598 59.573376) (xy 137.323537 59.616868) - (xy 137.323533 59.616875) (xy 137.274499 59.735255) (xy 137.274497 59.735261) (xy 137.2495 59.860928) - (xy 137.2495 59.860931) (xy 137.2495 59.989069) (xy 137.251594 59.999597) (xy 137.25622 60.022854) - (xy 137.249991 60.092445) (xy 137.207128 60.147622) (xy 137.158801 60.16866) (xy 137.154008 60.169613) - (xy 137.153998 60.169616) (xy 137.008327 60.229954) (xy 137.008314 60.229961) (xy 136.877211 60.317562) - (xy 136.877207 60.317565) (xy 136.765713 60.429059) (xy 136.76571 60.429063) (xy 136.674721 60.565238) - (xy 136.673684 60.564545) (xy 136.629278 60.609733) (xy 136.561138 60.625181) (xy 136.500014 60.604527) - (xy 136.479183 60.590608) (xy 136.479172 60.590602) (xy 136.333501 60.530264) (xy 136.333489 60.530261) - (xy 136.178845 60.4995) (xy 136.178842 60.4995) (xy 136.021158 60.4995) (xy 136.021155 60.4995) - (xy 135.86651 60.530261) (xy 135.866498 60.530264) (xy 135.720827 60.590602) (xy 135.720814 60.590609) - (xy 135.589711 60.67821) (xy 135.589707 60.678213) (xy 135.478213 60.789707) (xy 135.47821 60.789711) - (xy 135.390609 60.920814) (xy 135.390602 60.920827) (xy 135.330264 61.066498) (xy 135.330261 61.06651) - (xy 135.2995 61.221153) (xy 135.2995 61.378846) (xy 135.330261 61.533489) (xy 135.330264 61.533501) - (xy 135.390602 61.679172) (xy 135.390609 61.679185) (xy 135.47821 61.810288) (xy 135.478213 61.810292) - (xy 135.589707 61.921786) (xy 135.589711 61.921789) (xy 135.720814 62.00939) (xy 135.720827 62.009397) - (xy 135.80823 62.045599) (xy 135.866503 62.069737) (xy 135.900765 62.076552) (xy 135.962674 62.108936) - (xy 135.997248 62.169652) (xy 135.993509 62.239421) (xy 135.952643 62.296093) (xy 135.945465 62.30127) - (xy 135.92533 62.314724) (xy 135.925327 62.314726) (xy 135.834726 62.405327) (xy 135.779783 62.487555) - (xy 135.72617 62.532359) (xy 135.656845 62.541066) (xy 135.593818 62.510911) (xy 135.573579 62.487553) - (xy 135.505279 62.385335) (xy 135.505273 62.385327) (xy 135.414672 62.294726) (xy 135.414668 62.294723) - (xy 135.308133 62.223538) (xy 135.308124 62.223533) (xy 135.189744 62.174499) (xy 135.189738 62.174497) - (xy 135.064071 62.1495) (xy 135.064069 62.1495) (xy 134.935931 62.1495) (xy 134.935929 62.1495) - (xy 134.810261 62.174497) (xy 134.810255 62.174499) (xy 134.691875 62.223533) (xy 134.691866 62.223538) - (xy 134.585331 62.294723) (xy 134.585327 62.294726) (xy 134.494726 62.385327) (xy 134.494723 62.385331) - (xy 134.423538 62.491866) (xy 134.423533 62.491875) (xy 134.374499 62.610255) (xy 134.374497 62.610261) - (xy 134.3495 62.735928) (xy 134.3495 62.735931) (xy 134.3495 62.864069) (xy 134.3495 62.864071) - (xy 134.349499 62.864071) (xy 134.374497 62.989738) (xy 134.374499 62.989744) (xy 134.423533 63.108124) - (xy 134.423538 63.108133) (xy 134.494723 63.214668) (xy 134.494726 63.214672) (xy 134.585327 63.305273) - (xy 134.585331 63.305276) (xy 134.691866 63.376461) (xy 134.691872 63.376464) (xy 134.691873 63.376465) - (xy 134.810256 63.425501) (xy 134.81026 63.425501) (xy 134.810261 63.425502) (xy 134.935928 63.4505) - (xy 134.935931 63.4505) (xy 135.064071 63.4505) (xy 135.158741 63.431668) (xy 135.189744 63.425501) - (xy 135.308127 63.376465) (xy 135.414669 63.305276) (xy 135.505276 63.214669) (xy 135.560216 63.132444) - (xy 135.613827 63.08764) (xy 135.683152 63.078933) (xy 135.74618 63.109087) (xy 135.76642 63.132445) - (xy 135.834723 63.234669) (xy 135.925327 63.325273) (xy 135.925331 63.325276) (xy 136.031866 63.396461) - (xy 136.031875 63.396466) (xy 136.054699 63.40592) (xy 136.150256 63.445501) (xy 136.15026 63.445501) - (xy 136.150261 63.445502) (xy 136.275928 63.4705) (xy 136.275931 63.4705) (xy 136.404071 63.4705) - (xy 136.504613 63.4505) (xy 136.529744 63.445501) (xy 136.648127 63.396465) (xy 136.738111 63.336339) - (xy 136.804787 63.315462) (xy 136.872167 63.333946) (xy 136.894682 63.351761) (xy 136.964707 63.421786) - (xy 136.964711 63.421789) (xy 137.095814 63.50939) (xy 137.095827 63.509397) (xy 137.241498 63.569735) - (xy 137.241503 63.569737) (xy 137.396153 63.600499) (xy 137.396156 63.6005) (xy 137.396158 63.6005) - (xy 137.553844 63.6005) (xy 137.553845 63.600499) (xy 137.708497 63.569737) (xy 137.854179 63.509394) - (xy 137.985289 63.421789) (xy 138.096789 63.310289) (xy 138.184394 63.179179) (xy 138.186884 63.173166) - (xy 138.230724 63.118762) (xy 138.297018 63.096696) (xy 138.325638 63.099) (xy 138.421155 63.118) - (xy 138.421158 63.118) (xy 138.578844 63.118) (xy 138.578845 63.117999) (xy 138.733497 63.087237) - (xy 138.879179 63.026894) (xy 139.010289 62.939289) (xy 139.121789 62.827789) (xy 139.209394 62.696679) - (xy 139.21191 62.690606) (xy 139.245192 62.610255) (xy 139.269737 62.550997) (xy 139.3005 62.396342) - (xy 139.3005 62.238658) (xy 139.3005 62.238655) (xy 139.300499 62.238653) (xy 139.286774 62.169652) - (xy 139.269737 62.084003) (xy 139.263827 62.069735) (xy 139.209397 61.938327) (xy 139.20939 61.938314) - (xy 139.121789 61.807211) (xy 139.121786 61.807207) (xy 139.010292 61.695713) (xy 139.010288 61.69571) - (xy 138.879185 61.608109) (xy 138.879172 61.608102) (xy 138.733501 61.547764) (xy 138.733489 61.547761) - (xy 138.578845 61.517) (xy 138.578842 61.517) (xy 138.421158 61.517) (xy 138.421155 61.517) (xy 138.26651 61.547761) - (xy 138.266503 61.547763) (xy 138.19786 61.576195) (xy 138.128391 61.583662) (xy 138.065912 61.552387) - (xy 138.03026 61.492297) (xy 138.032755 61.422472) (xy 138.047308 61.392741) (xy 138.056593 61.378846) - (xy 138.08953 61.329552) (xy 138.096889 61.318539) (xy 138.09689 61.318536) (xy 138.096894 61.318531) - (xy 138.157237 61.172849) (xy 138.188 61.018194) (xy 138.188 60.86051) (xy 138.188 60.860507) (xy 138.187999 60.860505) - (xy 138.178582 60.813161) (xy 138.157237 60.705855) (xy 138.139878 60.663947) (xy 138.13241 60.594483) - (xy 138.163684 60.532003) (xy 138.202967 60.504729) (xy 138.202757 60.504335) (xy 138.206142 60.502525) - (xy 138.206993 60.501935) (xy 138.208122 60.501467) (xy 138.208121 60.501467) (xy 138.208127 60.501465) - (xy 138.314669 60.430276) (xy 138.405276 60.339669) (xy 138.476465 60.233127) (xy 138.525501 60.114744) - (xy 138.54378 60.022854) (xy 138.5505 59.989071) (xy 138.5505 59.860928) (xy 138.525502 59.735261) - (xy 138.525501 59.73526) (xy 138.525501 59.735256) (xy 138.476465 59.616873) (xy 138.476462 59.616868) - (xy 138.476461 59.616866) (xy 138.405276 59.510331) (xy 138.405273 59.510327) (xy 138.314672 59.419726) - (xy 138.314668 59.419723) (xy 138.268179 59.38866) (xy 138.223374 59.335048) (xy 138.214667 59.265723) - (xy 138.244821 59.202695) (xy 138.249391 59.197875) (xy 138.26859 59.178676) (xy 138.268592 59.178674) - (xy 138.356197 59.047564) (xy 138.41654 58.901882) (xy 138.447303 58.747227) (xy 138.447303 58.589543) - (xy 138.447303 58.58954) (xy 138.447302 58.589538) (xy 138.436019 58.532814) (xy 138.41654 58.434888) - (xy 138.390404 58.371789) (xy 138.3562 58.289212) (xy 138.356193 58.289199) (xy 138.268592 58.158096) - (xy 138.268589 58.158092) (xy 138.157095 58.046598) (xy 138.157091 58.046595) (xy 138.025988 57.958994) - (xy 138.025975 57.958987) (xy 137.880304 57.898649) (xy 137.880292 57.898646) (xy 137.725648 57.867885) - (xy 137.725645 57.867885) (xy 137.567961 57.867885) (xy 137.526129 57.876205) (xy 137.456537 57.869976) - (xy 137.401361 57.827112) (xy 137.398837 57.823477) (xy 137.388653 57.808236) (xy 137.381178 57.797048) - (xy 137.381176 57.797045) (xy 137.269681 57.68555) (xy 137.269677 57.685547) (xy 137.138574 57.597946) - (xy 137.138561 57.597939) (xy 136.99289 57.537601) (xy 136.992878 57.537598) (xy 136.83823 57.506836) - (xy 136.836605 57.506676) (xy 136.835809 57.506354) (xy 136.832257 57.505648) (xy 136.832391 57.504974) - (xy 136.771819 57.48051) (xy 136.734207 57.430726) (xy 136.709394 57.370821) (xy 136.709392 57.370819) - (xy 136.709392 57.370817) (xy 136.621789 57.239711) (xy 136.621786 57.239707) (xy 136.510292 57.128213) - (xy 136.510288 57.12821) (xy 136.379185 57.040609) (xy 136.379172 57.040602) (xy 136.233501 56.980264) - (xy 136.233489 56.980261) (xy 136.078845 56.9495) (xy 136.078842 56.9495) (xy 136.036711 56.9495) - (xy 135.969672 56.929815) (xy 135.923917 56.877011) (xy 135.913973 56.807853) (xy 135.942998 56.744297) - (xy 136.001776 56.706523) (xy 136.01252 56.703883) (xy 136.034553 56.699499) (xy 136.058497 56.694737) - (xy 136.204179 56.634394) (xy 136.335289 56.546789) (xy 136.446789 56.435289) (xy 136.534394 56.304179) - (xy 136.594737 56.158497) (xy 136.6255 56.003842) (xy 136.6255 55.846158) (xy 136.6255 55.846155) - (xy 136.625499 55.846153) (xy 136.600581 55.720884) (xy 136.594737 55.691503) (xy 136.58617 55.670821) - (xy 136.534397 55.545827) (xy 136.53439 55.545814) (xy 136.446789 55.414711) (xy 136.446786 55.414707) - (xy 136.335292 55.303213) (xy 136.335288 55.30321) (xy 136.296215 55.277102) (xy 136.25141 55.22349) - (xy 136.242703 55.154165) (xy 136.272858 55.091137) (xy 136.332301 55.054418) (xy 136.365106 55.05) - (xy 139.349017 55.05) (xy 139.416056 55.069685) (xy 139.461811 55.122489) (xy 139.471755 55.191647) - (xy 139.44273 55.255203) (xy 139.396469 55.288561) (xy 139.270827 55.340602) (xy 139.270814 55.340609) + (xy 123.51787 48.320185) (xy 123.538535 48.336842) (xy 129.544585 54.346009) (xy 130.244645 55.046432) + (xy 139.35196 55.048794) (xy 139.418994 55.068496) (xy 139.464735 55.121312) (xy 139.47466 55.190473) + (xy 139.445619 55.254021) (xy 139.39938 55.287355) (xy 139.270823 55.340604) (xy 139.270814 55.340609) (xy 139.139711 55.42821) (xy 139.139707 55.428213) (xy 139.028213 55.539707) (xy 139.02821 55.539711) (xy 138.940609 55.670814) (xy 138.940602 55.670827) (xy 138.880264 55.816498) (xy 138.880261 55.81651) (xy 138.8495 55.971153) (xy 138.8495 56.128846) (xy 138.880261 56.283489) (xy 138.880264 56.283501) (xy 138.940602 56.429172) (xy 138.940609 56.429185) (xy 139.02821 56.560288) (xy 139.028213 56.560292) (xy 139.139707 56.671786) (xy 139.139711 56.671789) (xy 139.270814 56.75939) (xy 139.270827 56.759397) - (xy 139.387812 56.807853) (xy 139.416503 56.819737) (xy 139.571153 56.850499) (xy 139.571156 56.8505) - (xy 139.571158 56.8505) (xy 139.728844 56.8505) (xy 139.728845 56.850499) (xy 139.883497 56.819737) - (xy 140.029179 56.759394) (xy 140.160289 56.671789) (xy 140.271789 56.560289) (xy 140.359394 56.429179) - (xy 140.419737 56.283497) (xy 140.4505 56.128842) (xy 140.4505 55.971158) (xy 140.4505 55.971155) - (xy 140.450499 55.971153) (xy 140.442186 55.929363) (xy 140.419737 55.816503) (xy 140.372654 55.702833) - (xy 140.359397 55.670827) (xy 140.35939 55.670814) (xy 140.271789 55.539711) (xy 140.271786 55.539707) - (xy 140.160292 55.428213) (xy 140.160288 55.42821) (xy 140.029185 55.340609) (xy 140.029172 55.340602) - (xy 139.903531 55.288561) (xy 139.849127 55.24472) (xy 139.827062 55.178426) (xy 139.844341 55.110727) - (xy 139.895478 55.063116) (xy 139.950983 55.05) (xy 143.876713 55.05) (xy 143.943752 55.069685) - (xy 143.989507 55.122489) (xy 144.00071 55.173283) (xy 144.021921 58.85321) (xy 144.022853 59.014957) - (xy 144.02192 59.0182) (xy 144.022719 59.02148) (xy 144.012338 59.051545) (xy 144.003555 59.082109) - (xy 144.001017 59.084333) (xy 143.999916 59.087524) (xy 143.974933 59.1072) (xy 143.951016 59.128168) - (xy 143.946889 59.129288) (xy 143.945027 59.130755) (xy 143.93275 59.133125) (xy 143.910734 59.139102) - (xy 143.904811 59.139672) (xy 143.816731 59.139672) (xy 143.734164 59.156095) (xy 143.727963 59.156692) - (xy 143.699527 59.151233) (xy 143.670683 59.148652) (xy 143.664304 59.144471) (xy 143.659346 59.14352) - (xy 143.651601 59.136146) (xy 143.628403 59.120943) (xy 143.589408 59.081948) (xy 143.589404 59.081945) - (xy 143.458301 58.994344) (xy 143.458288 58.994337) (xy 143.312617 58.933999) (xy 143.312605 58.933996) - (xy 143.157961 58.903235) (xy 143.157958 58.903235) (xy 143.000274 58.903235) (xy 143.000271 58.903235) - (xy 142.845626 58.933996) (xy 142.845614 58.933999) (xy 142.699943 58.994337) (xy 142.69993 58.994344) - (xy 142.568827 59.081945) (xy 142.568823 59.081948) (xy 142.457329 59.193442) (xy 142.457326 59.193446) - (xy 142.369725 59.324549) (xy 142.369718 59.324562) (xy 142.30938 59.470233) (xy 142.309377 59.470245) - (xy 142.278616 59.624888) (xy 142.278616 59.782581) (xy 142.309377 59.937224) (xy 142.30938 59.937236) - (xy 142.369718 60.082907) (xy 142.369725 60.08292) (xy 142.457326 60.214023) (xy 142.457329 60.214027) - (xy 142.568823 60.325521) (xy 142.568827 60.325524) (xy 142.69993 60.413125) (xy 142.699943 60.413132) - (xy 142.790065 60.450461) (xy 142.845619 60.473472) (xy 142.988711 60.501935) (xy 143.000269 60.504234) - (xy 143.000272 60.504235) (xy 143.000274 60.504235) (xy 143.157959 60.504235) (xy 143.234412 60.489027) - (xy 143.304003 60.495254) (xy 143.346285 60.522963) (xy 143.38528 60.561958) (xy 143.385284 60.561961) - (xy 143.516387 60.649562) (xy 143.5164 60.649569) (xy 143.662071 60.709907) (xy 143.662076 60.709909) + (xy 139.416498 56.819735) (xy 139.416503 56.819737) (xy 139.519704 56.840265) (xy 139.571153 56.850499) + (xy 139.571156 56.8505) (xy 139.571158 56.8505) (xy 139.728844 56.8505) (xy 139.728845 56.850499) + (xy 139.883497 56.819737) (xy 140.029179 56.759394) (xy 140.160289 56.671789) (xy 140.271789 56.560289) + (xy 140.359394 56.429179) (xy 140.419737 56.283497) (xy 140.4505 56.128842) (xy 140.4505 55.971158) + (xy 140.4505 55.971155) (xy 140.450499 55.971153) (xy 140.419738 55.81651) (xy 140.419737 55.816503) + (xy 140.404983 55.780884) (xy 140.359397 55.670827) (xy 140.35939 55.670814) (xy 140.271789 55.539711) + (xy 140.271786 55.539707) (xy 140.160292 55.428213) (xy 140.160288 55.42821) (xy 140.029185 55.340609) + (xy 140.029172 55.340602) (xy 139.900994 55.28751) (xy 139.84659 55.243669) (xy 139.824525 55.177375) + (xy 139.841804 55.109676) (xy 139.892941 55.062065) (xy 139.948477 55.048949) (xy 143.876744 55.049968) + (xy 143.943779 55.06967) (xy 143.98952 55.122486) (xy 144.00071 55.173253) (xy 144.013611 57.41158) + (xy 144.022648 58.9795) (xy 144.022853 59.014957) (xy 144.003555 59.082109) (xy 143.951016 59.128168) + (xy 143.898855 59.139672) (xy 143.816728 59.139672) (xy 143.670549 59.168749) (xy 143.600958 59.162522) + (xy 143.577467 59.150234) (xy 143.458301 59.070609) (xy 143.458288 59.070602) (xy 143.312617 59.010264) + (xy 143.312605 59.010261) (xy 143.157961 58.9795) (xy 143.157958 58.9795) (xy 143.000274 58.9795) + (xy 143.000271 58.9795) (xy 142.845626 59.010261) (xy 142.845614 59.010264) (xy 142.699943 59.070602) + (xy 142.69993 59.070609) (xy 142.568827 59.15821) (xy 142.568823 59.158213) (xy 142.457329 59.269707) + (xy 142.457326 59.269711) (xy 142.369725 59.400814) (xy 142.369718 59.400827) (xy 142.30938 59.546498) + (xy 142.309377 59.54651) (xy 142.278616 59.701153) (xy 142.278616 59.858846) (xy 142.309377 60.013489) + (xy 142.30938 60.013501) (xy 142.369718 60.159172) (xy 142.369725 60.159185) (xy 142.457326 60.290288) + (xy 142.457329 60.290292) (xy 142.568823 60.401786) (xy 142.568827 60.401789) (xy 142.69993 60.48939) + (xy 142.699943 60.489397) (xy 142.844834 60.549412) (xy 142.845619 60.549737) (xy 142.988777 60.578213) + (xy 143.000269 60.580499) (xy 143.000272 60.5805) (xy 143.000274 60.5805) (xy 143.157959 60.5805) + (xy 143.187252 60.574672) (xy 143.30414 60.551422) (xy 143.373729 60.557649) (xy 143.397221 60.569937) + (xy 143.516387 60.649562) (xy 143.5164 60.649569) (xy 143.652303 60.705861) (xy 143.662076 60.709909) (xy 143.816726 60.740671) (xy 143.816729 60.740672) (xy 143.909511 60.740672) (xy 143.97655 60.760357) - (xy 144.022305 60.813161) (xy 144.033509 60.863957) (xy 144.047773 63.338768) (xy 144.028475 63.40592) - (xy 143.975936 63.451979) (xy 143.906836 63.462321) (xy 143.843114 63.433662) (xy 143.820672 63.408373) - (xy 143.805274 63.385328) (xy 143.714672 63.294726) (xy 143.714668 63.294723) (xy 143.608133 63.223538) - (xy 143.608124 63.223533) (xy 143.489744 63.174499) (xy 143.489738 63.174497) (xy 143.364071 63.1495) - (xy 143.364069 63.1495) (xy 143.235931 63.1495) (xy 143.235929 63.1495) (xy 143.110261 63.174497) - (xy 143.110255 63.174499) (xy 142.991875 63.223533) (xy 142.991866 63.223538) (xy 142.885331 63.294723) - (xy 142.885327 63.294726) (xy 142.794726 63.385327) (xy 142.794723 63.385331) (xy 142.723538 63.491866) - (xy 142.723533 63.491876) (xy 142.696355 63.55749) (xy 142.652514 63.611893) (xy 142.586219 63.633958) - (xy 142.51852 63.616678) (xy 142.512903 63.613139) (xy 142.479185 63.590609) (xy 142.479172 63.590602) - (xy 142.333501 63.530264) (xy 142.333489 63.530261) (xy 142.178845 63.4995) (xy 142.178842 63.4995) - (xy 142.021158 63.4995) (xy 142.021155 63.4995) (xy 141.86651 63.530261) (xy 141.866507 63.530262) - (xy 141.866506 63.530262) (xy 141.866503 63.530263) (xy 141.804431 63.555974) (xy 141.746952 63.579782) - (xy 141.718345 63.582857) (xy 141.690219 63.588872) (xy 141.684045 63.586544) (xy 141.677482 63.58725) - (xy 141.651754 63.574371) (xy 141.624841 63.564225) (xy 141.620905 63.558928) (xy 141.615003 63.555974) - (xy 141.600322 63.531231) (xy 141.583166 63.508144) (xy 141.581676 63.499804) (xy 141.579351 63.495885) - (xy 141.575786 63.473631) (xy 141.5755 63.469424) (xy 141.5755 63.321158) (xy 141.560186 63.244171) - (xy 141.559645 63.236209) (xy 141.565537 63.209573) (xy 141.567969 63.182398) (xy 141.572974 63.175954) - (xy 141.574737 63.167988) (xy 141.594094 63.148766) (xy 141.610832 63.12722) (xy 141.618526 63.124505) - (xy 141.624316 63.118757) (xy 141.650994 63.113051) (xy 141.676722 63.103976) (xy 141.686003 63.105565) - (xy 141.69264 63.104146) (xy 141.70506 63.108828) (xy 141.730812 63.113237) (xy 141.746503 63.119737) - (xy 141.892441 63.148766) (xy 141.901153 63.150499) (xy 141.901156 63.1505) (xy 141.901158 63.1505) - (xy 142.058844 63.1505) (xy 142.058845 63.150499) (xy 142.213497 63.119737) (xy 142.359179 63.059394) - (xy 142.490289 62.971789) (xy 142.601789 62.860289) (xy 142.689394 62.729179) (xy 142.749737 62.583497) - (xy 142.7805 62.428842) (xy 142.7805 62.271158) (xy 142.7805 62.271155) (xy 142.780499 62.271153) - (xy 142.762012 62.178213) (xy 142.749737 62.116503) (xy 142.746603 62.108936) (xy 142.689397 61.970827) - (xy 142.68939 61.970814) (xy 142.601789 61.839711) (xy 142.601786 61.839707) (xy 142.490292 61.728213) - (xy 142.490288 61.72821) (xy 142.359185 61.640609) (xy 142.359172 61.640602) (xy 142.213501 61.580264) - (xy 142.213489 61.580261) (xy 142.058845 61.5495) (xy 142.058842 61.5495) (xy 141.901158 61.5495) - (xy 141.901155 61.5495) (xy 141.74651 61.580261) (xy 141.746498 61.580264) (xy 141.600827 61.640602) - (xy 141.600814 61.640609) (xy 141.469711 61.72821) (xy 141.469707 61.728213) (xy 141.358213 61.839707) - (xy 141.35821 61.839711) (xy 141.270609 61.970814) (xy 141.270602 61.970827) (xy 141.210264 62.116498) - (xy 141.210261 62.11651) (xy 141.1795 62.271153) (xy 141.1795 62.271158) (xy 141.1795 62.428842) - (xy 141.179501 62.428846) (xy 141.193258 62.498011) (xy 141.187029 62.567602) (xy 141.144166 62.622779) - (xy 141.078276 62.646023) (xy 141.024188 62.636762) (xy 141.008501 62.630264) (xy 141.008489 62.630261) - (xy 140.853845 62.5995) (xy 140.853842 62.5995) (xy 140.696158 62.5995) (xy 140.696155 62.5995) - (xy 140.54151 62.630261) (xy 140.541498 62.630264) (xy 140.395827 62.690602) (xy 140.395814 62.690609) - (xy 140.264711 62.77821) (xy 140.264707 62.778213) (xy 140.153213 62.889707) (xy 140.15321 62.889711) - (xy 140.065609 63.020814) (xy 140.065602 63.020827) (xy 140.005264 63.166498) (xy 140.005261 63.16651) - (xy 139.9745 63.321153) (xy 139.9745 63.478846) (xy 140.005261 63.633489) (xy 140.005264 63.633501) - (xy 140.065602 63.779172) (xy 140.065609 63.779185) (xy 140.15321 63.910288) (xy 140.153213 63.910292) - (xy 140.264707 64.021786) (xy 140.264711 64.021789) (xy 140.395814 64.10939) (xy 140.395827 64.109397) - (xy 140.541498 64.169735) (xy 140.541503 64.169737) (xy 140.670479 64.195392) (xy 140.696153 64.200499) - (xy 140.696156 64.2005) (xy 140.696158 64.2005) (xy 140.853844 64.2005) (xy 140.853845 64.200499) - (xy 141.008497 64.169737) (xy 141.075631 64.141929) (xy 141.128048 64.120218) (xy 141.197517 64.112749) - (xy 141.259996 64.144024) (xy 141.295648 64.204113) (xy 141.2995 64.234779) (xy 141.2995 64.378846) - (xy 141.330261 64.533489) (xy 141.330264 64.533501) (xy 141.390602 64.679172) (xy 141.390609 64.679185) - (xy 141.425304 64.731109) (xy 141.446182 64.797786) (xy 141.427698 64.865167) (xy 141.425304 64.868891) - (xy 141.390609 64.920814) (xy 141.390602 64.920827) (xy 141.330264 65.066498) (xy 141.330261 65.06651) - (xy 141.2995 65.221153) (xy 141.2995 65.378846) (xy 141.318022 65.471963) (xy 141.311795 65.541555) - (xy 141.284086 65.583835) (xy 141.178213 65.689707) (xy 141.17821 65.689711) (xy 141.090609 65.820814) - (xy 141.090602 65.820827) (xy 141.030264 65.966498) (xy 141.030261 65.96651) (xy 140.9995 66.121153) - (xy 140.9995 66.278842) (xy 141.001432 66.288556) (xy 140.995203 66.358148) (xy 140.967495 66.400426) - (xy 140.878213 66.489707) (xy 140.87821 66.489711) (xy 140.790609 66.620814) (xy 140.790602 66.620827) - (xy 140.730264 66.766498) (xy 140.730261 66.76651) (xy 140.6995 66.921153) (xy 140.6995 67.078846) - (xy 140.730261 67.233489) (xy 140.730264 67.233501) (xy 140.790602 67.379172) (xy 140.790608 67.379183) - (xy 140.822764 67.427308) (xy 140.843641 67.493985) (xy 140.825156 67.561365) (xy 140.773177 67.608055) - (xy 140.743855 67.617815) (xy 140.710258 67.624498) (xy 140.710255 67.624499) (xy 140.591875 67.673533) - (xy 140.591868 67.673537) (xy 140.485623 67.744528) (xy 140.418946 67.765405) (xy 140.351566 67.74692) - (xy 140.329052 67.729106) (xy 140.304672 67.704726) (xy 140.304668 67.704723) (xy 140.198133 67.633538) - (xy 140.198124 67.633533) (xy 140.079744 67.584499) (xy 140.079738 67.584497) (xy 139.954071 67.5595) - (xy 139.954069 67.5595) (xy 139.825931 67.5595) (xy 139.825929 67.5595) (xy 139.700261 67.584497) - (xy 139.700255 67.584499) (xy 139.581875 67.633533) (xy 139.581866 67.633538) (xy 139.475331 67.704723) - (xy 139.475327 67.704726) (xy 139.384726 67.795327) (xy 139.384723 67.795331) (xy 139.313538 67.901866) - (xy 139.313533 67.901875) (xy 139.264499 68.020255) (xy 139.264497 68.020261) (xy 139.2395 68.145928) - (xy 139.2395 68.145931) (xy 139.2395 68.274069) (xy 139.2395 68.274071) (xy 139.239499 68.274071) - (xy 139.264497 68.399738) (xy 139.264499 68.399744) (xy 139.313533 68.518124) (xy 139.313538 68.518133) - (xy 139.384723 68.624668) (xy 139.384726 68.624672) (xy 139.475327 68.715273) (xy 139.475331 68.715276) - (xy 139.581866 68.786461) (xy 139.581872 68.786464) (xy 139.581873 68.786465) (xy 139.700256 68.835501) - (xy 139.70026 68.835501) (xy 139.700261 68.835502) (xy 139.825928 68.8605) (xy 139.825931 68.8605) - (xy 139.954071 68.8605) (xy 140.049998 68.841418) (xy 140.079744 68.835501) (xy 140.198127 68.786465) - (xy 140.304376 68.715471) (xy 140.371052 68.694594) (xy 140.438432 68.713078) (xy 140.460947 68.730893) - (xy 140.485327 68.755273) (xy 140.485331 68.755276) (xy 140.591866 68.826461) (xy 140.591875 68.826466) - (xy 140.601105 68.830289) (xy 140.710256 68.875501) (xy 140.71026 68.875501) (xy 140.710261 68.875502) - (xy 140.835928 68.9005) (xy 140.835931 68.9005) (xy 140.964071 68.9005) (xy 141.06964 68.8795) (xy 141.089744 68.875501) - (xy 141.208127 68.826465) (xy 141.314669 68.755276) (xy 141.405276 68.664669) (xy 141.476465 68.558127) - (xy 141.525501 68.439744) (xy 141.5505 68.314069) (xy 141.5505 68.185931) (xy 141.5505 68.185928) - (xy 141.525502 68.060261) (xy 141.525501 68.06026) (xy 141.525501 68.060256) (xy 141.487977 67.969667) - (xy 141.480509 67.900198) (xy 141.511784 67.837719) (xy 141.571873 67.802067) (xy 141.578348 67.800598) - (xy 141.578841 67.8005) (xy 141.578842 67.8005) (xy 141.733497 67.769737) (xy 141.879179 67.709394) - (xy 142.010289 67.621789) (xy 142.09526 67.536817) (xy 142.156581 67.503334) (xy 142.18294 67.5005) - (xy 142.278844 67.5005) (xy 142.278845 67.500499) (xy 142.433497 67.469737) (xy 142.579179 67.409394) - (xy 142.710289 67.321789) (xy 142.821789 67.210289) (xy 142.909394 67.079179) (xy 142.969737 66.933497) - (xy 143.0005 66.778842) (xy 143.0005 66.621158) (xy 143.0005 66.621155) (xy 143.000499 66.621153) - (xy 142.990271 66.569735) (xy 142.969737 66.466503) (xy 142.942121 66.399832) (xy 142.909397 66.320827) - (xy 142.90939 66.320814) (xy 142.821789 66.189711) (xy 142.821786 66.189707) (xy 142.710291 66.078212) - (xy 142.697149 66.069431) (xy 142.682205 66.059445) (xy 142.637401 66.005835) (xy 142.628692 65.93651) - (xy 142.658847 65.873482) (xy 142.663396 65.868681) (xy 142.721789 65.810289) (xy 142.809394 65.679179) - (xy 142.869737 65.533497) (xy 142.9005 65.378842) (xy 142.9005 65.221158) (xy 142.9005 65.221155) - (xy 142.900499 65.221153) (xy 142.887395 65.155276) (xy 142.869737 65.066503) (xy 142.850724 65.020602) - (xy 142.809396 64.920825) (xy 142.809394 64.920822) (xy 142.809394 64.920821) (xy 142.774694 64.868889) - (xy 142.753816 64.802215) (xy 142.7723 64.734835) (xy 142.774676 64.731136) (xy 142.809394 64.679179) - (xy 142.869737 64.533497) (xy 142.878415 64.489868) (xy 142.910799 64.42796) (xy 142.971514 64.393385) - (xy 143.041284 64.397124) (xy 143.047474 64.399496) (xy 143.110256 64.425501) (xy 143.11026 64.425501) - (xy 143.110261 64.425502) (xy 143.235928 64.4505) (xy 143.235931 64.4505) (xy 143.364071 64.4505) - (xy 143.448615 64.433682) (xy 143.489744 64.425501) (xy 143.608127 64.376465) (xy 143.714669 64.305276) - (xy 143.805276 64.214669) (xy 143.825937 64.183747) (xy 143.879546 64.138944) (xy 143.94887 64.130235) - (xy 144.011899 64.160389) (xy 144.048619 64.219831) (xy 144.053036 64.251924) (xy 144.071151 67.394785) - (xy 144.051853 67.461937) (xy 143.999314 67.507996) (xy 143.947153 67.5195) (xy 143.921155 67.5195) - (xy 143.76651 67.550261) (xy 143.766498 67.550264) (xy 143.620827 67.610602) (xy 143.620814 67.610609) - (xy 143.489711 67.69821) (xy 143.489707 67.698213) (xy 143.378213 67.809707) (xy 143.37821 67.809711) - (xy 143.290609 67.940814) (xy 143.290602 67.940827) (xy 143.230264 68.086498) (xy 143.230261 68.08651) - (xy 143.1995 68.241153) (xy 143.1995 68.398846) (xy 143.230261 68.553489) (xy 143.230264 68.553501) - (xy 143.290602 68.699172) (xy 143.290609 68.699185) (xy 143.37821 68.830288) (xy 143.378213 68.830292) - (xy 143.489707 68.941786) (xy 143.489711 68.941789) (xy 143.620814 69.02939) (xy 143.620827 69.029397) - (xy 143.766498 69.089735) (xy 143.766503 69.089737) (xy 143.921153 69.120499) (xy 143.921156 69.1205) - (xy 143.95781 69.1205) (xy 144.024849 69.140185) (xy 144.070604 69.192989) (xy 144.081808 69.243785) - (xy 144.096396 71.774785) (xy 144.077098 71.841937) (xy 144.024559 71.887996) (xy 143.972398 71.8995) - (xy 137.403439 71.8995) (xy 137.3364 71.879815) (xy 137.290645 71.827011) (xy 137.280701 71.757853) - (xy 137.309726 71.694297) (xy 137.334548 71.672398) (xy 137.363981 71.65273) (xy 137.410289 71.621789) - (xy 137.521789 71.510289) (xy 137.609394 71.379179) (xy 137.669737 71.233497) (xy 137.7005 71.078842) - (xy 137.7005 70.921158) (xy 137.7005 70.921155) (xy 137.700499 70.921153) (xy 137.698338 70.910288) - (xy 137.669737 70.766503) (xy 137.651274 70.721929) (xy 137.609397 70.620827) (xy 137.60939 70.620814) - (xy 137.521789 70.489711) (xy 137.521786 70.489707) (xy 137.410292 70.378213) (xy 137.410288 70.37821) - (xy 137.279185 70.290609) (xy 137.279172 70.290602) (xy 137.133501 70.230264) (xy 137.133489 70.230261) - (xy 136.978845 70.1995) (xy 136.978842 70.1995) (xy 136.821158 70.1995) (xy 136.821155 70.1995) - (xy 136.66651 70.230261) (xy 136.666498 70.230264) (xy 136.520827 70.290602) (xy 136.520814 70.290609) - (xy 136.389711 70.37821) (xy 136.389707 70.378213) (xy 136.278213 70.489707) (xy 136.27821 70.489711) - (xy 136.190609 70.620814) (xy 136.190602 70.620827) (xy 136.152061 70.713876) (xy 136.10822 70.76828) - (xy 136.041926 70.790345) (xy 135.974227 70.773066) (xy 135.926616 70.721929) (xy 135.922939 70.713876) - (xy 135.884397 70.620827) (xy 135.88439 70.620814) (xy 135.796789 70.489711) (xy 135.796786 70.489707) - (xy 135.685292 70.378213) (xy 135.685288 70.37821) (xy 135.554185 70.290609) (xy 135.554172 70.290602) - (xy 135.408501 70.230264) (xy 135.408489 70.230261) (xy 135.253845 70.1995) (xy 135.253842 70.1995) - (xy 135.096158 70.1995) (xy 135.096155 70.1995) (xy 134.94151 70.230261) (xy 134.941498 70.230264) - (xy 134.795827 70.290602) (xy 134.795814 70.290609) (xy 134.664711 70.37821) (xy 134.664707 70.378213) - (xy 134.553213 70.489707) (xy 134.55321 70.489711) (xy 134.465609 70.620814) (xy 134.465602 70.620827) - (xy 134.405264 70.766498) (xy 134.405261 70.76651) (xy 134.3745 70.921153) (xy 134.3745 71.078846) - (xy 134.405261 71.233489) (xy 134.405264 71.233501) (xy 134.465602 71.379172) (xy 134.465609 71.379185) - (xy 134.55321 71.510288) (xy 134.553213 71.510292) (xy 134.664707 71.621786) (xy 134.664711 71.621789) - (xy 134.740452 71.672398) (xy 134.785257 71.72601) (xy 134.793964 71.795335) (xy 134.76381 71.858363) - (xy 134.704366 71.895082) (xy 134.671561 71.8995) (xy 129.003439 71.8995) (xy 128.9364 71.879815) - (xy 128.890645 71.827011) (xy 128.880701 71.757853) (xy 128.909726 71.694297) (xy 128.934548 71.672398) - (xy 128.963981 71.65273) (xy 129.010289 71.621789) (xy 129.121789 71.510289) (xy 129.209394 71.379179) - (xy 129.269737 71.233497) (xy 129.3005 71.078842) (xy 129.3005 70.921158) (xy 129.3005 70.921155) - (xy 129.300499 70.921153) (xy 129.298338 70.910288) (xy 129.269737 70.766503) (xy 129.251274 70.721929) - (xy 129.209397 70.620827) (xy 129.20939 70.620814) (xy 129.121789 70.489711) (xy 129.121786 70.489707) - (xy 129.010292 70.378213) (xy 129.010288 70.37821) (xy 128.924897 70.321153) (xy 129.4995 70.321153) - (xy 129.4995 70.478846) (xy 129.530261 70.633489) (xy 129.530264 70.633501) (xy 129.590602 70.779172) - (xy 129.590609 70.779185) (xy 129.67821 70.910288) (xy 129.678213 70.910292) (xy 129.789707 71.021786) - (xy 129.789711 71.021789) (xy 129.920814 71.10939) (xy 129.920827 71.109397) (xy 130.066498 71.169735) - (xy 130.066503 71.169737) (xy 130.221153 71.200499) (xy 130.221156 71.2005) (xy 130.221158 71.2005) - (xy 130.378844 71.2005) (xy 130.378845 71.200499) (xy 130.533497 71.169737) (xy 130.679179 71.109394) - (xy 130.810289 71.021789) (xy 130.921789 70.910289) (xy 131.009394 70.779179) (xy 131.013909 70.76828) - (xy 131.023067 70.746166) (xy 131.069737 70.633497) (xy 131.1005 70.478842) (xy 131.1005 70.321158) - (xy 131.1005 70.321155) (xy 131.100499 70.321153) (xy 131.082419 70.230261) (xy 131.069737 70.166503) - (xy 131.025285 70.059185) (xy 131.009397 70.020827) (xy 131.00939 70.020814) (xy 130.921789 69.889711) - (xy 130.921786 69.889707) (xy 130.810292 69.778213) (xy 130.810288 69.77821) (xy 130.679185 69.690609) - (xy 130.679172 69.690602) (xy 130.533501 69.630264) (xy 130.533489 69.630261) (xy 130.378845 69.5995) - (xy 130.378842 69.5995) (xy 130.221158 69.5995) (xy 130.221155 69.5995) (xy 130.06651 69.630261) - (xy 130.066498 69.630264) (xy 129.920827 69.690602) (xy 129.920814 69.690609) (xy 129.789711 69.77821) - (xy 129.789707 69.778213) (xy 129.678213 69.889707) (xy 129.67821 69.889711) (xy 129.590609 70.020814) - (xy 129.590602 70.020827) (xy 129.530264 70.166498) (xy 129.530261 70.16651) (xy 129.4995 70.321153) - (xy 128.924897 70.321153) (xy 128.879185 70.290609) (xy 128.879172 70.290602) (xy 128.733501 70.230264) - (xy 128.733489 70.230261) (xy 128.578845 70.1995) (xy 128.578842 70.1995) (xy 128.421158 70.1995) - (xy 128.421155 70.1995) (xy 128.26651 70.230261) (xy 128.266498 70.230264) (xy 128.120827 70.290602) - (xy 128.120814 70.290609) (xy 127.989711 70.37821) (xy 127.989707 70.378213) (xy 127.878213 70.489707) - (xy 127.87821 70.489711) (xy 127.790609 70.620814) (xy 127.790602 70.620827) (xy 127.730264 70.766498) - (xy 127.730261 70.76651) (xy 127.6995 70.921153) (xy 127.6995 71.078846) (xy 127.730261 71.233489) - (xy 127.730264 71.233501) (xy 127.790602 71.379172) (xy 127.790609 71.379185) (xy 127.87821 71.510288) - (xy 127.878213 71.510292) (xy 127.989707 71.621786) (xy 127.989711 71.621789) (xy 128.065452 71.672398) - (xy 128.110257 71.72601) (xy 128.118964 71.795335) (xy 128.08881 71.858363) (xy 128.029366 71.895082) - (xy 127.996561 71.8995) (xy 122.458676 71.8995) (xy 122.391637 71.879815) (xy 122.370995 71.863181) - (xy 119.921885 69.414071) (xy 135.449499 69.414071) (xy 135.474497 69.539738) (xy 135.474499 69.539744) - (xy 135.523533 69.658124) (xy 135.523538 69.658133) (xy 135.594723 69.764668) (xy 135.594726 69.764672) - (xy 135.685327 69.855273) (xy 135.685331 69.855276) (xy 135.791866 69.926461) (xy 135.791872 69.926464) - (xy 135.791873 69.926465) (xy 135.910256 69.975501) (xy 135.91026 69.975501) (xy 135.910261 69.975502) - (xy 136.035928 70.0005) (xy 136.035931 70.0005) (xy 136.164071 70.0005) (xy 136.248615 69.983682) - (xy 136.289744 69.975501) (xy 136.408127 69.926465) (xy 136.514669 69.855276) (xy 136.605276 69.764669) - (xy 136.676465 69.658127) (xy 136.700064 69.601153) (xy 137.7195 69.601153) (xy 137.7195 69.758846) + (xy 144.022305 60.813161) (xy 144.033509 60.863957) (xy 144.047299 63.256567) (xy 144.028001 63.323719) + (xy 143.975462 63.369778) (xy 143.906362 63.38012) (xy 143.84264 63.351461) (xy 143.83562 63.344963) + (xy 143.746545 63.255888) (xy 143.746541 63.255885) (xy 143.631817 63.179228) (xy 143.631804 63.179221) + (xy 143.504332 63.126421) (xy 143.504322 63.126418) (xy 143.368995 63.0995) (xy 143.368993 63.0995) + (xy 143.231007 63.0995) (xy 143.231005 63.0995) (xy 143.095677 63.126418) (xy 143.095667 63.126421) + (xy 142.968195 63.179221) (xy 142.968182 63.179228) (xy 142.853458 63.255885) (xy 142.853454 63.255888) + (xy 142.755888 63.353454) (xy 142.755885 63.353458) (xy 142.679228 63.468182) (xy 142.679221 63.468195) + (xy 142.626421 63.595667) (xy 142.626418 63.595677) (xy 142.5995 63.731004) (xy 142.5995 63.731007) + (xy 142.5995 63.868993) (xy 142.5995 63.868995) (xy 142.599499 63.868995) (xy 142.626418 64.004322) + (xy 142.626421 64.004332) (xy 142.679221 64.131804) (xy 142.679228 64.131817) (xy 142.755885 64.246541) + (xy 142.755888 64.246545) (xy 142.853454 64.344111) (xy 142.853458 64.344114) (xy 142.968182 64.420771) + (xy 142.968195 64.420778) (xy 143.06954 64.462756) (xy 143.095672 64.47358) (xy 143.095676 64.47358) + (xy 143.095677 64.473581) (xy 143.231004 64.5005) (xy 143.231007 64.5005) (xy 143.368995 64.5005) + (xy 143.460041 64.482389) (xy 143.504328 64.47358) (xy 143.631811 64.420775) (xy 143.746542 64.344114) + (xy 143.841842 64.248813) (xy 143.903163 64.21533) (xy 143.972855 64.220314) (xy 144.028789 64.262185) + (xy 144.053206 64.327649) (xy 144.05352 64.335781) (xy 144.071151 67.394785) (xy 144.051853 67.461937) + (xy 143.999314 67.507996) (xy 143.947153 67.5195) (xy 143.921155 67.5195) (xy 143.76651 67.550261) + (xy 143.766498 67.550264) (xy 143.620827 67.610602) (xy 143.620814 67.610609) (xy 143.489711 67.69821) + (xy 143.489707 67.698213) (xy 143.378213 67.809707) (xy 143.37821 67.809711) (xy 143.290609 67.940814) + (xy 143.290602 67.940827) (xy 143.230264 68.086498) (xy 143.230261 68.08651) (xy 143.1995 68.241153) + (xy 143.1995 68.398846) (xy 143.230261 68.553489) (xy 143.230264 68.553501) (xy 143.290602 68.699172) + (xy 143.290609 68.699185) (xy 143.37821 68.830288) (xy 143.378213 68.830292) (xy 143.489707 68.941786) + (xy 143.489711 68.941789) (xy 143.620814 69.02939) (xy 143.620827 69.029397) (xy 143.766498 69.089735) + (xy 143.766503 69.089737) (xy 143.921153 69.120499) (xy 143.921156 69.1205) (xy 143.95781 69.1205) + (xy 144.024849 69.140185) (xy 144.070604 69.192989) (xy 144.081808 69.243785) (xy 144.098125 72.074785) + (xy 144.078827 72.141937) (xy 144.026288 72.187996) (xy 143.974127 72.1995) (xy 122.334412 72.1995) + (xy 122.267373 72.179815) (xy 122.246731 72.163181) (xy 120.704703 70.621153) (xy 131.7895 70.621153) + (xy 131.7895 70.778846) (xy 131.820261 70.933489) (xy 131.820264 70.933501) (xy 131.880602 71.079172) + (xy 131.880609 71.079185) (xy 131.96821 71.210288) (xy 131.968213 71.210292) (xy 132.079707 71.321786) + (xy 132.079711 71.321789) (xy 132.210814 71.40939) (xy 132.210827 71.409397) (xy 132.356498 71.469735) + (xy 132.356503 71.469737) (xy 132.511153 71.500499) (xy 132.511156 71.5005) (xy 132.511158 71.5005) + (xy 132.668844 71.5005) (xy 132.668845 71.500499) (xy 132.823497 71.469737) (xy 132.969179 71.409394) + (xy 133.100289 71.321789) (xy 133.211789 71.210289) (xy 133.299394 71.079179) (xy 133.359737 70.933497) + (xy 133.362192 70.921153) (xy 134.3745 70.921153) (xy 134.3745 71.078846) (xy 134.405261 71.233489) + (xy 134.405264 71.233501) (xy 134.465602 71.379172) (xy 134.465609 71.379185) (xy 134.55321 71.510288) + (xy 134.553213 71.510292) (xy 134.664707 71.621786) (xy 134.664711 71.621789) (xy 134.795814 71.70939) + (xy 134.795827 71.709397) (xy 134.941498 71.769735) (xy 134.941503 71.769737) (xy 135.096153 71.800499) + (xy 135.096156 71.8005) (xy 135.096158 71.8005) (xy 135.253844 71.8005) (xy 135.253845 71.800499) + (xy 135.408497 71.769737) (xy 135.554179 71.709394) (xy 135.685289 71.621789) (xy 135.796789 71.510289) + (xy 135.884394 71.379179) (xy 135.922939 71.286123) (xy 135.966779 71.231719) (xy 136.033073 71.209654) + (xy 136.100773 71.226933) (xy 136.148384 71.27807) (xy 136.152061 71.286123) (xy 136.190602 71.379172) + (xy 136.190609 71.379185) (xy 136.27821 71.510288) (xy 136.278213 71.510292) (xy 136.389707 71.621786) + (xy 136.389711 71.621789) (xy 136.520814 71.70939) (xy 136.520827 71.709397) (xy 136.666498 71.769735) + (xy 136.666503 71.769737) (xy 136.821153 71.800499) (xy 136.821156 71.8005) (xy 136.821158 71.8005) + (xy 136.978844 71.8005) (xy 136.978845 71.800499) (xy 137.133497 71.769737) (xy 137.279179 71.709394) + (xy 137.410289 71.621789) (xy 137.521789 71.510289) (xy 137.609394 71.379179) (xy 137.669737 71.233497) + (xy 137.7005 71.078842) (xy 137.7005 70.921158) (xy 137.7005 70.921155) (xy 137.700499 70.921153) + (xy 137.694476 70.890873) (xy 137.669737 70.766503) (xy 137.651274 70.721929) (xy 137.609397 70.620827) + (xy 137.60939 70.620814) (xy 137.521789 70.489711) (xy 137.521786 70.489707) (xy 137.410292 70.378213) + (xy 137.410288 70.37821) (xy 137.279185 70.290609) (xy 137.279172 70.290602) (xy 137.133501 70.230264) + (xy 137.133489 70.230261) (xy 136.978845 70.1995) (xy 136.978842 70.1995) (xy 136.821158 70.1995) + (xy 136.821155 70.1995) (xy 136.66651 70.230261) (xy 136.666498 70.230264) (xy 136.520827 70.290602) + (xy 136.520814 70.290609) (xy 136.389711 70.37821) (xy 136.389707 70.378213) (xy 136.278213 70.489707) + (xy 136.27821 70.489711) (xy 136.190609 70.620814) (xy 136.190602 70.620827) (xy 136.152061 70.713876) + (xy 136.10822 70.76828) (xy 136.041926 70.790345) (xy 135.974227 70.773066) (xy 135.926616 70.721929) + (xy 135.922939 70.713876) (xy 135.884397 70.620827) (xy 135.88439 70.620814) (xy 135.796789 70.489711) + (xy 135.796786 70.489707) (xy 135.685292 70.378213) (xy 135.685288 70.37821) (xy 135.554185 70.290609) + (xy 135.554172 70.290602) (xy 135.408501 70.230264) (xy 135.408489 70.230261) (xy 135.253845 70.1995) + (xy 135.253842 70.1995) (xy 135.096158 70.1995) (xy 135.096155 70.1995) (xy 134.94151 70.230261) + (xy 134.941498 70.230264) (xy 134.795827 70.290602) (xy 134.795814 70.290609) (xy 134.664711 70.37821) + (xy 134.664707 70.378213) (xy 134.553213 70.489707) (xy 134.55321 70.489711) (xy 134.465609 70.620814) + (xy 134.465602 70.620827) (xy 134.405264 70.766498) (xy 134.405261 70.76651) (xy 134.3745 70.921153) + (xy 133.362192 70.921153) (xy 133.368216 70.890874) (xy 133.368216 70.890873) (xy 133.390499 70.778846) + (xy 133.3905 70.778844) (xy 133.3905 70.621155) (xy 133.390499 70.621153) (xy 133.364353 70.489711) + (xy 133.359737 70.466503) (xy 133.327796 70.38939) (xy 133.299397 70.320827) (xy 133.29939 70.320814) + (xy 133.211789 70.189711) (xy 133.211786 70.189707) (xy 133.100292 70.078213) (xy 133.100288 70.07821) + (xy 132.969185 69.990609) (xy 132.969172 69.990602) (xy 132.823501 69.930264) (xy 132.823489 69.930261) + (xy 132.668845 69.8995) (xy 132.668842 69.8995) (xy 132.511158 69.8995) (xy 132.511155 69.8995) + (xy 132.35651 69.930261) (xy 132.356498 69.930264) (xy 132.210827 69.990602) (xy 132.210814 69.990609) + (xy 132.079711 70.07821) (xy 132.079707 70.078213) (xy 131.968213 70.189707) (xy 131.96821 70.189711) + (xy 131.880609 70.320814) (xy 131.880602 70.320827) (xy 131.820264 70.466498) (xy 131.820261 70.46651) + (xy 131.7895 70.621153) (xy 120.704703 70.621153) (xy 119.537571 69.454021) (xy 119.504086 69.392698) + (xy 119.501253 69.365882) (xy 119.505174 68.321153) (xy 128.8895 68.321153) (xy 128.8895 68.478846) + (xy 128.920261 68.633489) (xy 128.920264 68.633501) (xy 128.980602 68.779172) (xy 128.980609 68.779185) + (xy 129.06821 68.910288) (xy 129.068213 68.910292) (xy 129.179707 69.021786) (xy 129.179711 69.021789) + (xy 129.310814 69.10939) (xy 129.310827 69.109397) (xy 129.45644 69.169711) (xy 129.456503 69.169737) + (xy 129.573398 69.192989) (xy 129.611153 69.200499) (xy 129.611156 69.2005) (xy 129.611158 69.2005) + (xy 129.768844 69.2005) (xy 129.768845 69.200499) (xy 129.923497 69.169737) (xy 130.069179 69.109394) + (xy 130.200289 69.021789) (xy 130.311789 68.910289) (xy 130.37803 68.811153) (xy 133.6495 68.811153) + (xy 133.6495 68.968846) (xy 133.680261 69.123489) (xy 133.680264 69.123501) (xy 133.740602 69.269172) + (xy 133.740609 69.269185) (xy 133.82821 69.400288) (xy 133.828213 69.400292) (xy 133.939707 69.511786) + (xy 133.939711 69.511789) (xy 134.070814 69.59939) (xy 134.070827 69.599397) (xy 134.216498 69.659735) + (xy 134.216503 69.659737) (xy 134.371153 69.690499) (xy 134.371156 69.6905) (xy 134.371158 69.6905) + (xy 134.528844 69.6905) (xy 134.528845 69.690499) (xy 134.683497 69.659737) (xy 134.796166 69.613067) + (xy 134.829172 69.599397) (xy 134.829172 69.599396) (xy 134.829179 69.599394) (xy 134.960289 69.511789) + (xy 135.013083 69.458995) (xy 135.419499 69.458995) (xy 135.446418 69.594322) (xy 135.446421 69.594332) + (xy 135.499221 69.721804) (xy 135.499228 69.721817) (xy 135.575885 69.836541) (xy 135.575888 69.836545) + (xy 135.673454 69.934111) (xy 135.673458 69.934114) (xy 135.788182 70.010771) (xy 135.788195 70.010778) + (xy 135.90503 70.059172) (xy 135.915672 70.06358) (xy 135.915676 70.06358) (xy 135.915677 70.063581) + (xy 136.051004 70.0905) (xy 136.051007 70.0905) (xy 136.188995 70.0905) (xy 136.280041 70.072389) + (xy 136.324328 70.06358) (xy 136.451811 70.010775) (xy 136.566542 69.934114) (xy 136.664114 69.836542) + (xy 136.740775 69.721811) (xy 136.790753 69.601153) (xy 137.7195 69.601153) (xy 137.7195 69.758846) (xy 137.750261 69.913489) (xy 137.750264 69.913501) (xy 137.810602 70.059172) (xy 137.810609 70.059185) (xy 137.89821 70.190288) (xy 137.898213 70.190292) (xy 138.009707 70.301786) (xy 138.009711 70.301789) (xy 138.140814 70.38939) (xy 138.140827 70.389397) (xy 138.286498 70.449735) (xy 138.286503 70.449737) - (xy 138.432823 70.478842) (xy 138.441153 70.480499) (xy 138.441156 70.4805) (xy 138.441158 70.4805) - (xy 138.598844 70.4805) (xy 138.598845 70.480499) (xy 138.753497 70.449737) (xy 138.899179 70.389394) - (xy 139.030289 70.301789) (xy 139.141789 70.190289) (xy 139.229394 70.059179) (xy 139.289737 69.913497) - (xy 139.3205 69.758842) (xy 139.3205 69.601158) (xy 139.3205 69.601155) (xy 139.320499 69.601153) - (xy 139.289738 69.44651) (xy 139.289737 69.446503) (xy 139.276303 69.414071) (xy 139.229397 69.300827) - (xy 139.22939 69.300814) (xy 139.141789 69.169711) (xy 139.141786 69.169707) (xy 139.030292 69.058213) - (xy 139.030288 69.05821) (xy 138.899185 68.970609) (xy 138.899172 68.970602) (xy 138.753501 68.910264) - (xy 138.753489 68.910261) (xy 138.598845 68.8795) (xy 138.598842 68.8795) (xy 138.441158 68.8795) - (xy 138.441155 68.8795) (xy 138.28651 68.910261) (xy 138.286498 68.910264) (xy 138.140827 68.970602) - (xy 138.140814 68.970609) (xy 138.009711 69.05821) (xy 138.009707 69.058213) (xy 137.898213 69.169707) - (xy 137.89821 69.169711) (xy 137.810609 69.300814) (xy 137.810602 69.300827) (xy 137.750264 69.446498) - (xy 137.750261 69.44651) (xy 137.7195 69.601153) (xy 136.700064 69.601153) (xy 136.725501 69.539744) - (xy 136.744047 69.44651) (xy 136.7505 69.414071) (xy 136.7505 69.285928) (xy 136.725502 69.160261) - (xy 136.725501 69.16026) (xy 136.725501 69.160256) (xy 136.683233 69.058213) (xy 136.676466 69.041875) - (xy 136.676461 69.041866) (xy 136.628375 68.9699) (xy 136.607497 68.903222) (xy 136.625982 68.835842) - (xy 136.677961 68.789152) (xy 136.684008 68.786455) (xy 136.708127 68.776465) (xy 136.814669 68.705276) - (xy 136.905276 68.614669) (xy 136.976465 68.508127) (xy 137.025501 68.389744) (xy 137.043253 68.3005) - (xy 137.0505 68.264071) (xy 137.0505 68.135928) (xy 137.025502 68.010261) (xy 137.025501 68.01026) - (xy 137.025501 68.010256) (xy 136.976465 67.891873) (xy 136.976464 67.891872) (xy 136.976461 67.891866) - (xy 136.905276 67.785331) (xy 136.905273 67.785327) (xy 136.814672 67.694726) (xy 136.814668 67.694723) - (xy 136.708133 67.623538) (xy 136.708124 67.623533) (xy 136.589744 67.574499) (xy 136.589738 67.574497) - (xy 136.464071 67.5495) (xy 136.464069 67.5495) (xy 136.335931 67.5495) (xy 136.335929 67.5495) - (xy 136.210261 67.574497) (xy 136.210255 67.574499) (xy 136.091875 67.623533) (xy 136.091866 67.623538) - (xy 135.985331 67.694723) (xy 135.985327 67.694726) (xy 135.894726 67.785327) (xy 135.894723 67.785331) - (xy 135.823538 67.891866) (xy 135.823533 67.891875) (xy 135.774499 68.010255) (xy 135.774497 68.010261) - (xy 135.7495 68.135928) (xy 135.7495 68.135931) (xy 135.7495 68.264069) (xy 135.7495 68.264071) - (xy 135.749499 68.264071) (xy 135.774497 68.389738) (xy 135.774499 68.389744) (xy 135.823533 68.508124) - (xy 135.823537 68.508131) (xy 135.871625 68.5801) (xy 135.892502 68.646777) (xy 135.874017 68.714157) - (xy 135.822038 68.760847) (xy 135.815976 68.76355) (xy 135.791881 68.77353) (xy 135.791866 68.773538) - (xy 135.685331 68.844723) (xy 135.685327 68.844726) (xy 135.594726 68.935327) (xy 135.594723 68.935331) - (xy 135.523538 69.041866) (xy 135.523533 69.041875) (xy 135.474499 69.160255) (xy 135.474497 69.160261) - (xy 135.4495 69.285928) (xy 135.4495 69.285931) (xy 135.4495 69.414069) (xy 135.4495 69.414071) - (xy 135.449499 69.414071) (xy 119.921885 69.414071) (xy 119.527437 69.019623) (xy 119.493952 68.9583) - (xy 119.491127 68.933387) (xy 119.473624 67.421153) (xy 127.6995 67.421153) (xy 127.6995 67.578846) - (xy 127.730261 67.733489) (xy 127.730264 67.733501) (xy 127.790602 67.879172) (xy 127.790609 67.879185) - (xy 127.87821 68.010288) (xy 127.878213 68.010292) (xy 127.989707 68.121786) (xy 127.989711 68.121789) - (xy 128.120814 68.20939) (xy 128.120827 68.209397) (xy 128.252819 68.264069) (xy 128.266503 68.269737) - (xy 128.421153 68.300499) (xy 128.421156 68.3005) (xy 128.421158 68.3005) (xy 128.578844 68.3005) - (xy 128.578845 68.300499) (xy 128.733497 68.269737) (xy 128.879179 68.209394) (xy 129.010289 68.121789) - (xy 129.121789 68.010289) (xy 129.209394 67.879179) (xy 129.269737 67.733497) (xy 129.3005 67.578842) - (xy 129.3005 67.421158) (xy 129.3005 67.421155) (xy 129.300499 67.421153) (xy 131.7995 67.421153) - (xy 131.7995 67.578846) (xy 131.830261 67.733489) (xy 131.830264 67.733501) (xy 131.890602 67.879172) - (xy 131.890609 67.879185) (xy 131.97821 68.010288) (xy 131.978213 68.010292) (xy 132.089707 68.121786) - (xy 132.089711 68.121789) (xy 132.220814 68.20939) (xy 132.220827 68.209397) (xy 132.352819 68.264069) - (xy 132.366503 68.269737) (xy 132.521153 68.300499) (xy 132.521156 68.3005) (xy 132.521158 68.3005) - (xy 132.678844 68.3005) (xy 132.678845 68.300499) (xy 132.833497 68.269737) (xy 132.979179 68.209394) - (xy 133.110289 68.121789) (xy 133.221789 68.010289) (xy 133.309394 67.879179) (xy 133.369737 67.733497) - (xy 133.4005 67.578842) (xy 133.4005 67.421158) (xy 133.4005 67.421155) (xy 133.400499 67.421153) - (xy 133.395254 67.394785) (xy 133.369737 67.266503) (xy 133.365017 67.255108) (xy 133.309397 67.120827) - (xy 133.30939 67.120814) (xy 133.23239 67.005576) (xy 133.221789 66.989711) (xy 133.221786 66.989707) - (xy 133.174851 66.942772) (xy 136.9395 66.942772) (xy 136.9395 67.100465) (xy 136.970261 67.255108) - (xy 136.970264 67.25512) (xy 137.030602 67.400791) (xy 137.030609 67.400804) (xy 137.11821 67.531907) - (xy 137.118213 67.531911) (xy 137.229707 67.643405) (xy 137.229711 67.643408) (xy 137.360814 67.731009) - (xy 137.360827 67.731016) (xy 137.491957 67.785331) (xy 137.506503 67.791356) (xy 137.645367 67.818978) - (xy 137.661153 67.822118) (xy 137.661156 67.822119) (xy 137.661158 67.822119) (xy 137.818844 67.822119) - (xy 137.818845 67.822118) (xy 137.973497 67.791356) (xy 138.086551 67.744528) (xy 138.119172 67.731016) - (xy 138.119172 67.731015) (xy 138.119179 67.731013) (xy 138.250289 67.643408) (xy 138.361789 67.531908) - (xy 138.449394 67.400798) (xy 138.509737 67.255116) (xy 138.5405 67.100461) (xy 138.5405 67.10046) + (xy 138.441153 70.480499) (xy 138.441156 70.4805) (xy 138.441158 70.4805) (xy 138.598844 70.4805) + (xy 138.598845 70.480499) (xy 138.753497 70.449737) (xy 138.899179 70.389394) (xy 139.030289 70.301789) + (xy 139.141789 70.190289) (xy 139.229394 70.059179) (xy 139.289737 69.913497) (xy 139.3205 69.758842) + (xy 139.3205 69.601158) (xy 139.3205 69.601155) (xy 139.320499 69.601153) (xy 139.314476 69.570873) + (xy 139.289737 69.446503) (xy 139.270594 69.400288) (xy 139.229397 69.300827) (xy 139.22939 69.300814) + (xy 139.141789 69.169711) (xy 139.141786 69.169707) (xy 139.030292 69.058213) (xy 139.030288 69.05821) + (xy 138.899185 68.970609) (xy 138.899172 68.970602) (xy 138.753501 68.910264) (xy 138.753489 68.910261) + (xy 138.598845 68.8795) (xy 138.598842 68.8795) (xy 138.441158 68.8795) (xy 138.441155 68.8795) + (xy 138.28651 68.910261) (xy 138.286498 68.910264) (xy 138.140827 68.970602) (xy 138.140814 68.970609) + (xy 138.009711 69.05821) (xy 138.009707 69.058213) (xy 137.898213 69.169707) (xy 137.89821 69.169711) + (xy 137.810609 69.300814) (xy 137.810602 69.300827) (xy 137.750264 69.446498) (xy 137.750261 69.44651) + (xy 137.7195 69.601153) (xy 136.790753 69.601153) (xy 136.79358 69.594328) (xy 136.8205 69.458993) + (xy 136.8205 69.321007) (xy 136.8205 69.321004) (xy 136.793581 69.185677) (xy 136.79358 69.185676) + (xy 136.79358 69.185672) (xy 136.767828 69.123501) (xy 136.740778 69.058195) (xy 136.740774 69.058188) + (xy 136.73895 69.055458) (xy 136.699143 68.995883) (xy 136.678266 68.929207) (xy 136.69675 68.861827) + (xy 136.733356 68.823891) (xy 136.777035 68.794705) (xy 136.834041 68.756615) (xy 136.931613 68.659043) + (xy 137.008274 68.544312) (xy 137.061079 68.416829) (xy 137.073722 68.35327) (xy 137.087999 68.281496) + (xy 137.087999 68.143505) (xy 137.06108 68.008178) (xy 137.061079 68.008175) (xy 137.061079 68.008173) + (xy 137.061076 68.008165) (xy 137.008277 67.880696) (xy 137.00827 67.880683) (xy 136.931613 67.765959) + (xy 136.93161 67.765955) (xy 136.834044 67.668389) (xy 136.83404 67.668386) (xy 136.719316 67.591729) + (xy 136.719303 67.591722) (xy 136.591831 67.538922) (xy 136.591821 67.538919) (xy 136.456494 67.512001) + (xy 136.456492 67.512001) (xy 136.318506 67.512001) (xy 136.318504 67.512001) (xy 136.183176 67.538919) + (xy 136.183166 67.538922) (xy 136.055694 67.591722) (xy 136.055681 67.591729) (xy 135.940957 67.668386) + (xy 135.940953 67.668389) (xy 135.843387 67.765955) (xy 135.843384 67.765959) (xy 135.766727 67.880683) + (xy 135.76672 67.880696) (xy 135.71392 68.008168) (xy 135.713917 68.008178) (xy 135.686999 68.143505) + (xy 135.686999 68.143508) (xy 135.686999 68.281494) (xy 135.686999 68.281496) (xy 135.686998 68.281496) + (xy 135.713917 68.416823) (xy 135.71392 68.416833) (xy 135.76672 68.544305) (xy 135.766727 68.544318) + (xy 135.808354 68.606616) (xy 135.829232 68.673293) (xy 135.810748 68.740673) (xy 135.774143 68.778609) + (xy 135.673458 68.845885) (xy 135.673454 68.845888) (xy 135.575888 68.943454) (xy 135.575885 68.943458) + (xy 135.499228 69.058182) (xy 135.499223 69.058192) (xy 135.470745 69.126943) (xy 135.470741 69.126953) + (xy 135.44642 69.185672) (xy 135.432889 69.253693) (xy 135.432887 69.253702) (xy 135.423515 69.300821) + (xy 135.4195 69.321007) (xy 135.4195 69.458993) (xy 135.4195 69.458995) (xy 135.419499 69.458995) + (xy 135.013083 69.458995) (xy 135.071789 69.400289) (xy 135.159394 69.269179) (xy 135.219737 69.123497) + (xy 135.25015 68.970602) (xy 135.2505 68.968844) (xy 135.2505 68.811155) (xy 135.250499 68.811153) + (xy 135.244139 68.779179) (xy 135.219737 68.656503) (xy 135.210208 68.633497) (xy 135.159397 68.510827) + (xy 135.15939 68.510814) (xy 135.071789 68.379711) (xy 135.071786 68.379707) (xy 134.960292 68.268213) + (xy 134.960288 68.26821) (xy 134.829185 68.180609) (xy 134.829172 68.180602) (xy 134.683501 68.120264) + (xy 134.683489 68.120261) (xy 134.528845 68.0895) (xy 134.528842 68.0895) (xy 134.371158 68.0895) + (xy 134.371155 68.0895) (xy 134.21651 68.120261) (xy 134.216498 68.120264) (xy 134.070827 68.180602) + (xy 134.070814 68.180609) (xy 133.939711 68.26821) (xy 133.939707 68.268213) (xy 133.828213 68.379707) + (xy 133.82821 68.379711) (xy 133.740609 68.510814) (xy 133.740602 68.510827) (xy 133.680264 68.656498) + (xy 133.680261 68.65651) (xy 133.6495 68.811153) (xy 130.37803 68.811153) (xy 130.399394 68.779179) + (xy 130.403517 68.769225) (xy 130.408327 68.757614) (xy 130.449154 68.659046) (xy 130.459737 68.633497) + (xy 130.4905 68.478842) (xy 130.4905 68.321158) (xy 130.4905 68.321155) (xy 130.490499 68.321153) + (xy 130.481639 68.27661) (xy 130.459737 68.166503) (xy 130.45021 68.143502) (xy 130.399397 68.020827) + (xy 130.39939 68.020814) (xy 130.311789 67.889711) (xy 130.311786 67.889707) (xy 130.200292 67.778213) + (xy 130.200288 67.77821) (xy 130.06918 67.690606) (xy 130.067833 67.689886) (xy 130.067259 67.689323) + (xy 130.064114 67.687221) (xy 130.064512 67.686624) (xy 130.01799 67.640922) (xy 130.002531 67.572784) + (xy 130.026365 67.507105) (xy 130.081923 67.464737) (xy 130.102098 67.458912) (xy 130.198497 67.439737) + (xy 130.336007 67.382779) (xy 130.344172 67.379397) (xy 130.344172 67.379396) (xy 130.344179 67.379394) + (xy 130.475289 67.291789) (xy 130.586789 67.180289) (xy 130.674394 67.049179) (xy 130.718469 66.942772) + (xy 136.9395 66.942772) (xy 136.9395 67.100465) (xy 136.970261 67.255108) (xy 136.970264 67.25512) + (xy 137.030602 67.400791) (xy 137.030609 67.400804) (xy 137.11821 67.531907) (xy 137.118213 67.531911) + (xy 137.229707 67.643405) (xy 137.229711 67.643408) (xy 137.360814 67.731009) (xy 137.360827 67.731016) + (xy 137.506498 67.791354) (xy 137.506503 67.791356) (xy 137.661153 67.822118) (xy 137.661156 67.822119) + (xy 137.661158 67.822119) (xy 137.818844 67.822119) (xy 137.818845 67.822118) (xy 137.973497 67.791356) + (xy 138.086166 67.744686) (xy 138.119172 67.731016) (xy 138.119172 67.731015) (xy 138.119179 67.731013) + (xy 138.250289 67.643408) (xy 138.361789 67.531908) (xy 138.449394 67.400798) (xy 138.449438 67.400693) + (xy 138.465816 67.361151) (xy 138.509737 67.255116) (xy 138.5405 67.100461) (xy 138.5405 67.10046) (xy 138.541345 67.096212) (xy 138.573729 67.034301) (xy 138.634445 66.999727) (xy 138.704215 67.003466) (xy 138.750643 67.032722) (xy 138.864707 67.146786) (xy 138.864711 67.146789) (xy 138.995814 67.23439) - (xy 138.995827 67.234397) (xy 139.073356 67.26651) (xy 139.141503 67.294737) (xy 139.277487 67.321786) - (xy 139.296153 67.325499) (xy 139.296156 67.3255) (xy 139.296158 67.3255) (xy 139.453844 67.3255) - (xy 139.453845 67.325499) (xy 139.608497 67.294737) (xy 139.754179 67.234394) (xy 139.885289 67.146789) - (xy 139.996789 67.035289) (xy 140.084394 66.904179) (xy 140.144737 66.758497) (xy 140.1755 66.603842) + (xy 138.995827 67.234397) (xy 139.134386 67.291789) (xy 139.141503 67.294737) (xy 139.149545 67.296336) + (xy 139.211455 67.328717) (xy 139.246032 67.389431) (xy 139.242296 67.459201) (xy 139.239919 67.465405) + (xy 139.213921 67.528171) (xy 139.213919 67.528176) (xy 139.187001 67.663503) (xy 139.187001 67.663506) + (xy 139.187001 67.801492) (xy 139.187001 67.801494) (xy 139.187 67.801494) (xy 139.213919 67.936821) + (xy 139.213922 67.936831) (xy 139.266722 68.064303) (xy 139.266729 68.064316) (xy 139.343386 68.17904) + (xy 139.343389 68.179044) (xy 139.440955 68.27661) (xy 139.440959 68.276613) (xy 139.555683 68.35327) + (xy 139.555696 68.353277) (xy 139.665701 68.398842) (xy 139.683173 68.406079) (xy 139.683177 68.406079) + (xy 139.683178 68.40608) (xy 139.818505 68.432999) (xy 139.818508 68.432999) (xy 139.956496 68.432999) + (xy 140.097803 68.404891) (xy 140.098207 68.406924) (xy 140.158618 68.406366) (xy 140.217742 68.443596) + (xy 140.239345 68.478208) (xy 140.266723 68.544306) (xy 140.266728 68.544315) (xy 140.343385 68.659039) + (xy 140.343388 68.659043) (xy 140.440954 68.756609) (xy 140.440958 68.756612) (xy 140.555682 68.833269) + (xy 140.555695 68.833276) (xy 140.667291 68.8795) (xy 140.683172 68.886078) (xy 140.683176 68.886078) + (xy 140.683177 68.886079) (xy 140.818504 68.912998) (xy 140.818507 68.912998) (xy 140.956495 68.912998) + (xy 141.047541 68.894887) (xy 141.091828 68.886078) (xy 141.219311 68.833273) (xy 141.334042 68.756612) + (xy 141.431614 68.65904) (xy 141.508275 68.544309) (xy 141.56108 68.416826) (xy 141.58011 68.321158) + (xy 141.588 68.281493) (xy 141.588 68.143502) (xy 141.561081 68.008175) (xy 141.56108 68.008174) + (xy 141.56108 68.00817) (xy 141.533186 67.940827) (xy 141.508278 67.880693) (xy 141.508272 67.880682) + (xy 141.496416 67.862938) (xy 141.486435 67.831063) (xy 141.475637 67.799465) (xy 141.476035 67.797848) + (xy 141.475539 67.796261) (xy 141.484373 67.764059) (xy 141.492375 67.73163) (xy 141.493583 67.730486) + (xy 141.494024 67.728881) (xy 141.518872 67.70656) (xy 141.543129 67.683612) (xy 141.545046 67.683049) + (xy 141.546003 67.682191) (xy 141.576527 67.672198) (xy 141.585526 67.6705) (xy 141.588842 67.6705) + (xy 141.650049 67.658324) (xy 141.650558 67.658229) (xy 141.684723 67.661626) (xy 141.718949 67.664688) + (xy 141.719753 67.665109) (xy 141.720085 67.665142) (xy 141.720605 67.665554) (xy 141.742441 67.676977) + (xy 141.850814 67.74939) (xy 141.850827 67.749397) (xy 141.99644 67.809711) (xy 141.996503 67.809737) + (xy 142.151153 67.840499) (xy 142.151156 67.8405) (xy 142.151158 67.8405) (xy 142.308844 67.8405) + (xy 142.308845 67.840499) (xy 142.463497 67.809737) (xy 142.609179 67.749394) (xy 142.740289 67.661789) + (xy 142.851789 67.550289) (xy 142.939394 67.419179) (xy 142.948713 67.396682) (xy 142.99216 67.291789) + (xy 142.999737 67.273497) (xy 143.0305 67.118842) (xy 143.0305 66.961158) (xy 143.0305 66.961155) + (xy 143.030499 66.961153) (xy 143.019166 66.904179) (xy 142.999737 66.806503) (xy 142.992126 66.788129) + (xy 142.939397 66.660827) (xy 142.93939 66.660814) (xy 142.851789 66.529711) (xy 142.851786 66.529707) + (xy 142.740292 66.418213) (xy 142.740288 66.41821) (xy 142.616293 66.335358) (xy 142.571488 66.281745) + (xy 142.562781 66.21242) (xy 142.592936 66.149393) (xy 142.597484 66.144593) (xy 142.661789 66.080289) + (xy 142.749394 65.949179) (xy 142.749716 65.948403) (xy 142.768435 65.90321) (xy 142.809737 65.803497) + (xy 142.8405 65.648842) (xy 142.8405 65.491158) (xy 142.8405 65.491155) (xy 142.840499 65.491153) + (xy 142.819637 65.386273) (xy 142.809737 65.336503) (xy 142.78251 65.270771) (xy 142.749397 65.190827) + (xy 142.74939 65.190814) (xy 142.661789 65.059711) (xy 142.661786 65.059707) (xy 142.550292 64.948213) + (xy 142.550288 64.94821) (xy 142.419185 64.860609) (xy 142.419172 64.860602) (xy 142.273501 64.800264) + (xy 142.273489 64.800261) (xy 142.118845 64.7695) (xy 142.118842 64.7695) (xy 141.961158 64.7695) + (xy 141.961155 64.7695) (xy 141.80651 64.800261) (xy 141.806498 64.800264) (xy 141.660827 64.860602) + (xy 141.660814 64.860609) (xy 141.529714 64.948208) (xy 141.529708 64.948212) (xy 141.485519 64.992401) + (xy 141.424196 65.025885) (xy 141.354504 65.020899) (xy 141.350389 65.01928) (xy 141.34391 65.016596) + (xy 141.293497 64.995715) (xy 141.293493 64.995714) (xy 141.293488 64.995712) (xy 141.138845 64.964952) + (xy 141.138842 64.964952) (xy 140.981158 64.964952) (xy 140.981155 64.964952) (xy 140.82651 64.995713) + (xy 140.826498 64.995716) (xy 140.680827 65.056054) (xy 140.680814 65.056061) (xy 140.549711 65.143662) + (xy 140.549707 65.143665) (xy 140.438213 65.255159) (xy 140.43821 65.255163) (xy 140.350609 65.386266) + (xy 140.350602 65.386279) (xy 140.290264 65.53195) (xy 140.290261 65.531962) (xy 140.2595 65.686605) + (xy 140.2595 65.844298) (xy 140.288901 65.992104) (xy 140.290263 65.998949) (xy 140.350606 66.144631) + (xy 140.354755 66.150841) (xy 140.354759 66.150849) (xy 140.43821 66.27574) (xy 140.438213 66.275744) + (xy 140.54971 66.387241) (xy 140.648427 66.453201) (xy 140.680821 66.474846) (xy 140.680824 66.474847) + (xy 140.685187 66.477179) (xy 140.735035 66.526138) (xy 140.7505 66.594275) (xy 140.741306 66.633983) + (xy 140.740265 66.636495) (xy 140.74026 66.636511) (xy 140.7095 66.791153) (xy 140.7095 66.948846) + (xy 140.740261 67.103489) (xy 140.740264 67.103501) (xy 140.800602 67.249172) (xy 140.800609 67.249185) + (xy 140.854611 67.330004) (xy 140.864363 67.361151) (xy 140.875312 67.391915) (xy 140.87475 67.394322) + (xy 140.875489 67.396682) (xy 140.866854 67.428156) (xy 140.859433 67.459957) (xy 140.857657 67.461679) + (xy 140.857004 67.464062) (xy 140.832723 67.485872) (xy 140.809288 67.508611) (xy 140.806185 67.50971) + (xy 140.805026 67.510752) (xy 140.776037 67.520445) (xy 140.775734 67.520505) (xy 140.683172 67.538918) + (xy 140.681918 67.539437) (xy 140.674744 67.540885) (xy 140.64559 67.538357) (xy 140.616331 67.538615) + (xy 140.61119 67.535374) (xy 140.605135 67.53485) (xy 140.581977 67.516963) (xy 140.557222 67.501361) + (xy 140.552986 67.494571) (xy 140.549839 67.49214) (xy 140.547672 67.486052) (xy 140.535655 67.466787) + (xy 140.508279 67.400693) (xy 140.508272 67.400681) (xy 140.431615 67.285957) (xy 140.431612 67.285953) + (xy 140.334046 67.188387) (xy 140.334042 67.188384) (xy 140.219318 67.111727) (xy 140.219305 67.11172) + (xy 140.144424 67.080704) (xy 140.09002 67.036863) (xy 140.067955 66.970569) (xy 140.082517 66.90769) + (xy 140.084387 66.904188) (xy 140.084394 66.904179) (xy 140.144737 66.758497) (xy 140.1755 66.603842) (xy 140.1755 66.446158) (xy 140.1755 66.446155) (xy 140.175499 66.446153) (xy 140.166285 66.39983) - (xy 140.144737 66.291503) (xy 140.122174 66.237031) (xy 140.084397 66.145827) (xy 140.08439 66.145814) + (xy 140.144737 66.291503) (xy 140.084394 66.145821) (xy 140.08024 66.139605) (xy 140.080239 66.139601) (xy 139.996789 66.014711) (xy 139.996786 66.014707) (xy 139.885292 65.903213) (xy 139.885288 65.90321) (xy 139.754185 65.815609) (xy 139.754172 65.815602) (xy 139.608501 65.755264) (xy 139.608489 65.755261) (xy 139.453845 65.7245) (xy 139.453842 65.7245) (xy 139.306853 65.7245) (xy 139.239814 65.704815) (xy 139.194059 65.652011) (xy 139.185236 65.624691) (xy 139.159738 65.49651) (xy 139.159737 65.496503) - (xy 139.132961 65.431859) (xy 139.099397 65.350827) (xy 139.09939 65.350814) (xy 139.011789 65.219711) + (xy 139.106921 65.368993) (xy 139.099397 65.350827) (xy 139.09939 65.350814) (xy 139.011789 65.219711) (xy 139.011786 65.219707) (xy 138.900292 65.108213) (xy 138.900288 65.10821) (xy 138.769185 65.020609) (xy 138.769172 65.020602) (xy 138.623501 64.960264) (xy 138.623489 64.960261) (xy 138.468845 64.9295) (xy 138.468842 64.9295) (xy 138.311158 64.9295) (xy 138.311155 64.9295) (xy 138.15651 64.960261) @@ -37112,237 +41934,401 @@ (xy 137.506507 66.25188) (xy 137.506498 66.251883) (xy 137.360827 66.312221) (xy 137.360814 66.312228) (xy 137.229711 66.399829) (xy 137.229707 66.399832) (xy 137.118213 66.511326) (xy 137.11821 66.51133) (xy 137.030609 66.642433) (xy 137.030602 66.642446) (xy 136.970264 66.788117) (xy 136.970261 66.788129) - (xy 136.9395 66.942772) (xy 133.174851 66.942772) (xy 133.110292 66.878213) (xy 133.110288 66.87821) - (xy 132.979185 66.790609) (xy 132.979172 66.790602) (xy 132.833501 66.730264) (xy 132.833489 66.730261) - (xy 132.678845 66.6995) (xy 132.678842 66.6995) (xy 132.521158 66.6995) (xy 132.521155 66.6995) - (xy 132.36651 66.730261) (xy 132.366498 66.730264) (xy 132.220827 66.790602) (xy 132.220814 66.790609) - (xy 132.089711 66.87821) (xy 132.089707 66.878213) (xy 131.978213 66.989707) (xy 131.97821 66.989711) - (xy 131.890609 67.120814) (xy 131.890602 67.120827) (xy 131.830264 67.266498) (xy 131.830261 67.26651) - (xy 131.7995 67.421153) (xy 129.300499 67.421153) (xy 129.295254 67.394785) (xy 129.269737 67.266503) - (xy 129.265017 67.255108) (xy 129.209397 67.120827) (xy 129.20939 67.120814) (xy 129.121789 66.989711) - (xy 129.121786 66.989707) (xy 129.010292 66.878213) (xy 129.010288 66.87821) (xy 128.879185 66.790609) - (xy 128.879172 66.790602) (xy 128.733501 66.730264) (xy 128.733489 66.730261) (xy 128.578845 66.6995) - (xy 128.578842 66.6995) (xy 128.421158 66.6995) (xy 128.421155 66.6995) (xy 128.26651 66.730261) - (xy 128.266498 66.730264) (xy 128.120827 66.790602) (xy 128.120814 66.790609) (xy 127.989711 66.87821) - (xy 127.989707 66.878213) (xy 127.878213 66.989707) (xy 127.87821 66.989711) (xy 127.790609 67.120814) - (xy 127.790602 67.120827) (xy 127.730264 67.266498) (xy 127.730261 67.26651) (xy 127.6995 67.421153) - (xy 119.473624 67.421153) (xy 119.461153 66.343628) (xy 119.48006 66.276369) (xy 119.532331 66.230006) - (xy 119.601369 66.219263) (xy 119.665257 66.247551) (xy 119.672825 66.254516) (xy 119.811504 66.393195) - (xy 119.811511 66.393201) (xy 119.990691 66.53069) (xy 119.990699 66.530696) (xy 120.186301 66.643627) - (xy 120.186304 66.643628) (xy 120.186309 66.643631) (xy 120.240053 66.665892) (xy 120.394971 66.730061) - (xy 120.613138 66.788519) (xy 120.837069 66.818) (xy 120.837076 66.818) (xy 121.062924 66.818) (xy 121.062931 66.818) - (xy 121.286862 66.788519) (xy 121.505029 66.730061) (xy 121.66906 66.662116) (xy 121.71369 66.643631) - (xy 121.713691 66.643629) (xy 121.713699 66.643627) (xy 121.909301 66.530696) (xy 122.08849 66.3932) - (xy 122.2482 66.23349) (xy 122.385696 66.054301) (xy 122.498627 65.858699) (xy 122.51432 65.820814) - (xy 122.519278 65.808842) (xy 122.585061 65.650029) (xy 122.643519 65.431862) (xy 122.652444 65.364071) - (xy 129.549499 65.364071) (xy 129.574497 65.489738) (xy 129.574499 65.489744) (xy 129.623533 65.608124) - (xy 129.623538 65.608133) (xy 129.694723 65.714668) (xy 129.694726 65.714672) (xy 129.785327 65.805273) - (xy 129.785331 65.805276) (xy 129.891866 65.876461) (xy 129.891875 65.876466) (xy 129.897616 65.878844) - (xy 130.010256 65.925501) (xy 130.01026 65.925501) (xy 130.010261 65.925502) (xy 130.135928 65.9505) - (xy 130.135931 65.9505) (xy 130.264071 65.9505) (xy 130.351326 65.933143) (xy 130.389744 65.925501) - (xy 130.508127 65.876465) (xy 130.614669 65.805276) (xy 130.705276 65.714669) (xy 130.776465 65.608127) - (xy 130.825501 65.489744) (xy 130.847561 65.378844) (xy 130.8505 65.364071) (xy 134.349499 65.364071) - (xy 134.374497 65.489738) (xy 134.374499 65.489744) (xy 134.423533 65.608124) (xy 134.423538 65.608133) - (xy 134.494723 65.714668) (xy 134.494726 65.714672) (xy 134.585327 65.805273) (xy 134.585331 65.805276) - (xy 134.691866 65.876461) (xy 134.691875 65.876466) (xy 134.697616 65.878844) (xy 134.810256 65.925501) - (xy 134.81026 65.925501) (xy 134.810261 65.925502) (xy 134.935928 65.9505) (xy 134.935931 65.9505) - (xy 135.064071 65.9505) (xy 135.182632 65.926916) (xy 135.252224 65.933143) (xy 135.307401 65.976006) - (xy 135.328441 66.024338) (xy 135.330262 66.033495) (xy 135.330264 66.033501) (xy 135.390602 66.179172) - (xy 135.390609 66.179185) (xy 135.47821 66.310288) (xy 135.478213 66.310292) (xy 135.589707 66.421786) - (xy 135.589711 66.421789) (xy 135.720814 66.50939) (xy 135.720827 66.509397) (xy 135.780486 66.534108) - (xy 135.866503 66.569737) (xy 136.021153 66.600499) (xy 136.021156 66.6005) (xy 136.021158 66.6005) - (xy 136.178844 66.6005) (xy 136.178845 66.600499) (xy 136.333497 66.569737) (xy 136.479179 66.509394) - (xy 136.610289 66.421789) (xy 136.721789 66.310289) (xy 136.809394 66.179179) (xy 136.869737 66.033497) - (xy 136.9005 65.878842) (xy 136.9005 65.721158) (xy 136.9005 65.721155) (xy 136.900499 65.721153) - (xy 136.881311 65.624691) (xy 136.869737 65.566503) (xy 136.869194 65.565194) (xy 136.869115 65.564454) - (xy 136.867969 65.560676) (xy 136.868685 65.560458) (xy 136.861725 65.495726) (xy 136.880651 65.448851) - (xy 136.929951 65.375071) (xy 136.990294 65.229389) (xy 137.021057 65.074734) (xy 137.021057 64.91705) - (xy 137.021057 64.917047) (xy 137.021056 64.917045) (xy 137.011478 64.868892) (xy 136.990294 64.762395) - (xy 136.982471 64.743509) (xy 136.929954 64.616719) (xy 136.929947 64.616706) (xy 136.842346 64.485603) - (xy 136.842343 64.485599) (xy 136.730849 64.374105) (xy 136.730845 64.374102) (xy 136.599742 64.286501) - (xy 136.599729 64.286494) (xy 136.454058 64.226156) (xy 136.454046 64.226153) (xy 136.299402 64.195392) - (xy 136.299399 64.195392) (xy 136.141715 64.195392) (xy 136.141712 64.195392) (xy 135.987067 64.226153) - (xy 135.987055 64.226156) (xy 135.841384 64.286494) (xy 135.841371 64.286501) (xy 135.710268 64.374102) - (xy 135.710264 64.374105) (xy 135.59877 64.485599) (xy 135.598767 64.485603) (xy 135.511166 64.616706) - (xy 135.511161 64.616716) (xy 135.490316 64.667041) (xy 135.446475 64.721444) (xy 135.38018 64.743509) - (xy 135.312481 64.72623) (xy 135.30864 64.723809) (xy 135.308124 64.723533) (xy 135.189744 64.674499) - (xy 135.189738 64.674497) (xy 135.064071 64.6495) (xy 135.064069 64.6495) (xy 134.935931 64.6495) - (xy 134.935929 64.6495) (xy 134.810261 64.674497) (xy 134.810255 64.674499) (xy 134.691875 64.723533) - (xy 134.691866 64.723538) (xy 134.585331 64.794723) (xy 134.585327 64.794726) (xy 134.494726 64.885327) - (xy 134.494723 64.885331) (xy 134.423538 64.991866) (xy 134.423533 64.991875) (xy 134.374499 65.110255) - (xy 134.374497 65.110261) (xy 134.3495 65.235928) (xy 134.3495 65.235931) (xy 134.3495 65.364069) - (xy 134.3495 65.364071) (xy 134.349499 65.364071) (xy 130.8505 65.364071) (xy 130.8505 65.235928) - (xy 130.825502 65.110261) (xy 130.825501 65.11026) (xy 130.825501 65.110256) (xy 130.776465 64.991873) - (xy 130.776464 64.991872) (xy 130.776461 64.991866) (xy 130.705276 64.885331) (xy 130.705273 64.885327) - (xy 130.614672 64.794726) (xy 130.614668 64.794723) (xy 130.508133 64.723538) (xy 130.508124 64.723533) - (xy 130.48528 64.714071) (xy 131.899499 64.714071) (xy 131.924497 64.839738) (xy 131.924499 64.839744) - (xy 131.973533 64.958124) (xy 131.973538 64.958133) (xy 132.044723 65.064668) (xy 132.044726 65.064672) - (xy 132.135327 65.155273) (xy 132.135331 65.155276) (xy 132.241866 65.226461) (xy 132.241875 65.226466) - (xy 132.264719 65.235928) (xy 132.360256 65.275501) (xy 132.36026 65.275501) (xy 132.360261 65.275502) - (xy 132.485928 65.3005) (xy 132.485931 65.3005) (xy 132.614071 65.3005) (xy 132.698615 65.283682) - (xy 132.739744 65.275501) (xy 132.858127 65.226465) (xy 132.964669 65.155276) (xy 132.964672 65.155273) - (xy 132.977788 65.142158) (xy 133.055273 65.064672) (xy 133.055276 65.064669) (xy 133.126465 64.958127) - (xy 133.175501 64.839744) (xy 133.194644 64.743509) (xy 133.2005 64.714071) (xy 133.2005 64.585928) - (xy 133.175502 64.460261) (xy 133.175501 64.46026) (xy 133.175501 64.460256) (xy 133.126465 64.341873) - (xy 133.126464 64.341872) (xy 133.126461 64.341866) (xy 133.055276 64.235331) (xy 133.055273 64.235327) - (xy 132.964672 64.144726) (xy 132.964668 64.144723) (xy 132.858133 64.073538) (xy 132.858124 64.073533) - (xy 132.739744 64.024499) (xy 132.739738 64.024497) (xy 132.614071 63.9995) (xy 132.614069 63.9995) - (xy 132.485931 63.9995) (xy 132.485929 63.9995) (xy 132.360261 64.024497) (xy 132.360255 64.024499) - (xy 132.241875 64.073533) (xy 132.241866 64.073538) (xy 132.135331 64.144723) (xy 132.135327 64.144726) - (xy 132.044726 64.235327) (xy 132.044723 64.235331) (xy 131.973538 64.341866) (xy 131.973533 64.341875) - (xy 131.924499 64.460255) (xy 131.924497 64.460261) (xy 131.8995 64.585928) (xy 131.8995 64.585931) - (xy 131.8995 64.714069) (xy 131.8995 64.714071) (xy 131.899499 64.714071) (xy 130.48528 64.714071) - (xy 130.437789 64.6944) (xy 130.389744 64.674499) (xy 130.389738 64.674497) (xy 130.264071 64.6495) - (xy 130.264069 64.6495) (xy 130.135931 64.6495) (xy 130.135929 64.6495) (xy 130.010261 64.674497) - (xy 130.010255 64.674499) (xy 129.891875 64.723533) (xy 129.891866 64.723538) (xy 129.785331 64.794723) - (xy 129.785327 64.794726) (xy 129.694726 64.885327) (xy 129.694723 64.885331) (xy 129.623538 64.991866) - (xy 129.623533 64.991875) (xy 129.574499 65.110255) (xy 129.574497 65.110261) (xy 129.5495 65.235928) - (xy 129.5495 65.235931) (xy 129.5495 65.364069) (xy 129.5495 65.364071) (xy 129.549499 65.364071) - (xy 122.652444 65.364071) (xy 122.673 65.207931) (xy 122.673 64.982069) (xy 122.643519 64.758138) - (xy 122.585061 64.539971) (xy 122.545259 64.443882) (xy 122.498631 64.331309) (xy 122.498626 64.3313) - (xy 122.385696 64.135699) (xy 122.365512 64.109394) (xy 122.248201 63.956511) (xy 122.248195 63.956504) - (xy 122.088495 63.796804) (xy 122.088488 63.796798) (xy 121.909308 63.659309) (xy 121.909306 63.659307) - (xy 121.909301 63.659304) (xy 121.713699 63.546373) (xy 121.71369 63.546368) (xy 121.505029 63.459939) - (xy 121.376505 63.425501) (xy 121.286862 63.401481) (xy 121.286861 63.40148) (xy 121.286858 63.40148) - (xy 121.06294 63.372001) (xy 121.062937 63.372) (xy 121.062931 63.372) (xy 120.837069 63.372) (xy 120.837063 63.372) - (xy 120.837059 63.372001) (xy 120.613141 63.40148) (xy 120.39497 63.459939) (xy 120.186309 63.546368) - (xy 120.1863 63.546373) (xy 119.990692 63.659308) (xy 119.892431 63.734706) (xy 119.827262 63.759899) - (xy 119.758817 63.74586) (xy 119.708828 63.697046) (xy 119.693166 63.628954) (xy 119.697168 63.604249) - (xy 119.743409 63.431677) (xy 119.7755 63.187927) (xy 119.7755 62.942073) (xy 119.775133 62.939289) - (xy 119.767863 62.884069) (xy 119.743409 62.698323) (xy 119.679778 62.460847) (xy 119.585694 62.233708) - (xy 119.462767 62.020792) (xy 119.462762 62.020786) (xy 119.46276 62.020782) (xy 119.435467 61.985213) - (xy 119.410273 61.920043) (xy 119.409851 61.911162) (xy 119.30587 52.927215) (xy 119.324778 52.859954) - (xy 119.331476 52.850308) (xy 119.462767 52.679208) (xy 119.585694 52.466292) (xy 119.679778 52.239153) - (xy 119.702826 52.153135) (xy 123.0505 52.153135) (xy 123.0505 53.64687) (xy 123.050501 53.646876) - (xy 123.056908 53.706483) (xy 123.107202 53.841328) (xy 123.107206 53.841335) (xy 123.193452 53.956544) - (xy 123.193455 53.956547) (xy 123.308664 54.042793) (xy 123.308671 54.042797) (xy 123.443517 54.093091) - (xy 123.443516 54.093091) (xy 123.450444 54.093835) (xy 123.503127 54.0995) (xy 123.722257 54.099499) - (xy 123.789295 54.119183) (xy 123.83505 54.171987) (xy 123.844994 54.241145) (xy 123.815969 54.304701) - (xy 123.778552 54.333983) (xy 123.621326 54.414094) (xy 123.468575 54.525075) (xy 123.335075 54.658575) - (xy 123.224096 54.811324) (xy 123.138381 54.979547) (xy 123.080035 55.159115) (xy 123.05129 55.340609) - (xy 123.0505 55.345597) (xy 123.0505 55.534403) (xy 123.052309 55.545827) (xy 123.080035 55.720884) - (xy 123.138381 55.900452) (xy 123.181493 55.985062) (xy 123.224096 56.068675) (xy 123.335073 56.221422) - (xy 123.468578 56.354927) (xy 123.621325 56.465904) (xy 123.789552 56.55162) (xy 123.91485 56.592332) - (xy 123.972524 56.631768) (xy 123.999723 56.696127) (xy 123.987808 56.764973) (xy 123.940564 56.816449) - (xy 123.91485 56.828193) (xy 123.789739 56.868844) (xy 123.62158 56.954526) (xy 123.596386 56.972831) - (xy 123.596386 56.972832) (xy 124.165498 57.541944) (xy 124.078236 57.565326) (xy 123.976764 57.623911) - (xy 123.893911 57.706764) (xy 123.835326 57.808236) (xy 123.811944 57.895497) (xy 123.242832 57.326386) - (xy 123.242831 57.326386) (xy 123.224526 57.35158) (xy 123.138844 57.519741) (xy 123.080522 57.699236) - (xy 123.051 57.885631) (xy 123.051 58.074368) (xy 123.080522 58.260763) (xy 123.138844 58.440258) - (xy 123.224523 58.608413) (xy 123.242832 58.633612) (xy 123.242833 58.633613) (xy 123.811944 58.064501) - (xy 123.835326 58.151764) (xy 123.893911 58.253236) (xy 123.976764 58.336089) (xy 124.078236 58.394674) - (xy 124.165498 58.418055) (xy 123.596386 58.987166) (xy 123.621586 59.005476) (xy 123.789741 59.091155) - (xy 123.914849 59.131806) (xy 123.972525 59.171244) (xy 123.999723 59.235602) (xy 123.987808 59.304449) - (xy 123.940564 59.355924) (xy 123.91485 59.367668) (xy 123.789547 59.408381) (xy 123.621324 59.494096) - (xy 123.468575 59.605075) (xy 123.335075 59.738575) (xy 123.224096 59.891324) (xy 123.138381 60.059547) - (xy 123.080035 60.239115) (xy 123.0505 60.425597) (xy 123.0505 60.614402) (xy 123.080035 60.800884) - (xy 123.138381 60.980452) (xy 123.224096 61.148675) (xy 123.335073 61.301422) (xy 123.468578 61.434927) - (xy 123.621325 61.545904) (xy 123.688758 61.580263) (xy 123.789547 61.631618) (xy 123.789549 61.631618) - (xy 123.789552 61.63162) (xy 123.885802 61.662893) (xy 123.969115 61.689964) (xy 124.005413 61.695713) - (xy 124.155597 61.7195) (xy 124.155598 61.7195) (xy 124.344402 61.7195) (xy 124.344403 61.7195) - (xy 124.530884 61.689964) (xy 124.710448 61.63162) (xy 124.878675 61.545904) (xy 125.031422 61.434927) - (xy 125.164927 61.301422) (xy 125.275904 61.148675) (xy 125.36162 60.980448) (xy 125.419964 60.800884) - (xy 125.4495 60.614403) (xy 125.4495 60.425597) (xy 125.447525 60.413125) (xy 125.419964 60.239115) - (xy 125.373718 60.096786) (xy 125.36162 60.059552) (xy 125.361618 60.059549) (xy 125.361618 60.059547) - (xy 125.275903 59.891324) (xy 125.254111 59.86133) (xy 125.164927 59.738578) (xy 125.031422 59.605073) - (xy 124.878675 59.494096) (xy 124.831865 59.470245) (xy 124.710452 59.408381) (xy 124.616268 59.377779) - (xy 124.585148 59.367667) (xy 124.527474 59.32823) (xy 124.500276 59.263871) (xy 124.512191 59.195025) - (xy 124.559435 59.143549) (xy 124.58515 59.131806) (xy 124.710258 59.091155) (xy 124.810186 59.04024) - (xy 124.878409 59.005478) (xy 124.878414 59.005475) (xy 124.903613 58.987166) (xy 124.334502 58.418055) - (xy 124.421764 58.394674) (xy 124.523236 58.336089) (xy 124.606089 58.253236) (xy 124.664674 58.151764) - (xy 124.688055 58.064501) (xy 125.257166 58.633612) (xy 125.275475 58.608414) (xy 125.275478 58.608408) - (xy 125.361155 58.440258) (xy 125.419477 58.260763) (xy 125.449 58.074368) (xy 125.449 57.885631) - (xy 125.419477 57.699236) (xy 125.361155 57.519741) (xy 125.275476 57.351586) (xy 125.257166 57.326386) - (xy 124.688055 57.895497) (xy 124.664674 57.808236) (xy 124.606089 57.706764) (xy 124.523236 57.623911) - (xy 124.421764 57.565326) (xy 124.334502 57.541944) (xy 124.903613 56.972833) (xy 124.903612 56.972832) - (xy 124.878413 56.954523) (xy 124.71026 56.868844) (xy 124.585149 56.828193) (xy 124.527474 56.788755) - (xy 124.500276 56.724396) (xy 124.512191 56.65555) (xy 124.559435 56.604074) (xy 124.585143 56.592334) - (xy 124.710448 56.55162) (xy 124.878675 56.465904) (xy 125.031422 56.354927) (xy 125.164927 56.221422) - (xy 125.275904 56.068675) (xy 125.36162 55.900448) (xy 125.419964 55.720884) (xy 125.4495 55.534403) - (xy 125.4495 55.345597) (xy 125.442787 55.303211) (xy 125.419964 55.159115) (xy 125.361618 54.979547) - (xy 125.275903 54.811324) (xy 125.266713 54.798675) (xy 125.164927 54.658578) (xy 125.031422 54.525073) - (xy 124.878675 54.414096) (xy 124.721445 54.333983) (xy 124.67065 54.286009) (xy 124.653855 54.218188) - (xy 124.676392 54.152054) (xy 124.731107 54.108602) (xy 124.77774 54.099499) (xy 124.996872 54.099499) - (xy 125.056483 54.093091) (xy 125.191331 54.042796) (xy 125.306546 53.956546) (xy 125.390547 53.844335) - (xy 125.44648 53.802465) (xy 125.516172 53.797481) (xy 125.577495 53.830966) (xy 125.610979 53.89229) - (xy 125.612286 53.938045) (xy 125.5905 54.075597) (xy 125.5905 54.264402) (xy 125.620035 54.450884) - (xy 125.678381 54.630452) (xy 125.764096 54.798675) (xy 125.875073 54.951422) (xy 126.008578 55.084927) - (xy 126.161325 55.195904) (xy 126.329552 55.28162) (xy 126.45485 55.322332) (xy 126.512524 55.361768) - (xy 126.539723 55.426127) (xy 126.527808 55.494973) (xy 126.480564 55.546449) (xy 126.45485 55.558193) - (xy 126.329739 55.598844) (xy 126.16158 55.684526) (xy 126.136386 55.702831) (xy 126.136386 55.702832) - (xy 126.705498 56.271944) (xy 126.618236 56.295326) (xy 126.516764 56.353911) (xy 126.433911 56.436764) - (xy 126.375326 56.538236) (xy 126.351944 56.625498) (xy 125.782832 56.056386) (xy 125.782831 56.056386) - (xy 125.764526 56.08158) (xy 125.678844 56.249741) (xy 125.620522 56.429236) (xy 125.591 56.615631) - (xy 125.591 56.804368) (xy 125.620522 56.990763) (xy 125.678844 57.170258) (xy 125.764523 57.338413) - (xy 125.782832 57.363612) (xy 125.782833 57.363613) (xy 126.351944 56.794501) (xy 126.375326 56.881764) - (xy 126.433911 56.983236) (xy 126.516764 57.066089) (xy 126.618236 57.124674) (xy 126.705498 57.148055) - (xy 126.136386 57.717166) (xy 126.161586 57.735476) (xy 126.329741 57.821155) (xy 126.454849 57.861806) - (xy 126.512525 57.901244) (xy 126.539723 57.965602) (xy 126.527808 58.034449) (xy 126.480564 58.085924) - (xy 126.45485 58.097668) (xy 126.329547 58.138381) (xy 126.161324 58.224096) (xy 126.008575 58.335075) - (xy 125.875075 58.468575) (xy 125.764096 58.621324) (xy 125.678381 58.789547) (xy 125.620035 58.969115) - (xy 125.593022 59.139672) (xy 125.5905 59.155597) (xy 125.5905 59.344403) (xy 125.591392 59.350036) - (xy 125.620035 59.530884) (xy 125.678381 59.710452) (xy 125.751611 59.854172) (xy 125.764096 59.878675) - (xy 125.875073 60.031422) (xy 126.008578 60.164927) (xy 126.161325 60.275904) (xy 126.240804 60.3164) - (xy 126.329547 60.361618) (xy 126.329549 60.361618) (xy 126.329552 60.36162) (xy 126.397347 60.383648) - (xy 126.45404 60.402069) (xy 126.511715 60.441507) (xy 126.538913 60.505866) (xy 126.526998 60.574712) - (xy 126.479754 60.626188) (xy 126.45404 60.637931) (xy 126.329547 60.678381) (xy 126.161324 60.764096) - (xy 126.008575 60.875075) (xy 125.875075 61.008575) (xy 125.764096 61.161324) (xy 125.678381 61.329547) - (xy 125.620035 61.509115) (xy 125.5905 61.695597) (xy 125.5905 61.884402) (xy 125.620035 62.070884) - (xy 125.678381 62.250452) (xy 125.747104 62.385327) (xy 125.764096 62.418675) (xy 125.875073 62.571422) - (xy 126.008578 62.704927) (xy 126.161325 62.815904) (xy 126.240804 62.8564) (xy 126.329547 62.901618) - (xy 126.329549 62.901618) (xy 126.329552 62.90162) (xy 126.425802 62.932893) (xy 126.509115 62.959964) - (xy 126.583756 62.971786) (xy 126.695597 62.9895) (xy 126.695598 62.9895) (xy 126.884402 62.9895) - (xy 126.884403 62.9895) (xy 127.070884 62.959964) (xy 127.250448 62.90162) (xy 127.418675 62.815904) - (xy 127.571422 62.704927) (xy 127.704927 62.571422) (xy 127.815904 62.418675) (xy 127.90162 62.250448) - (xy 127.959964 62.070884) (xy 127.9895 61.884403) (xy 127.9895 61.695597) (xy 127.979054 61.629645) - (xy 127.959964 61.509115) (xy 127.917786 61.379306) (xy 127.90162 61.329552) (xy 127.901618 61.329549) - (xy 127.901618 61.329547) (xy 127.83026 61.1895) (xy 127.815904 61.161325) (xy 127.704927 61.008578) - (xy 127.571422 60.875073) (xy 127.418675 60.764096) (xy 127.372701 60.740671) (xy 127.250452 60.678381) - (xy 127.125959 60.637931) (xy 127.068284 60.598493) (xy 127.041086 60.534134) (xy 127.053001 60.465288) - (xy 127.100245 60.413812) (xy 127.125959 60.402069) (xy 127.250448 60.36162) (xy 127.418675 60.275904) - (xy 127.571422 60.164927) (xy 127.704927 60.031422) (xy 127.815904 59.878675) (xy 127.90162 59.710448) - (xy 127.959964 59.530884) (xy 127.9895 59.344403) (xy 127.9895 59.155597) (xy 127.984011 59.120943) - (xy 127.959964 58.969115) (xy 127.901618 58.789547) (xy 127.822165 58.633613) (xy 127.815904 58.621325) - (xy 127.704927 58.468578) (xy 127.571422 58.335073) (xy 127.418675 58.224096) (xy 127.250452 58.138381) - (xy 127.160555 58.109172) (xy 127.125148 58.097667) (xy 127.067474 58.05823) (xy 127.040276 57.993871) - (xy 127.052191 57.925025) (xy 127.099435 57.873549) (xy 127.12515 57.861806) (xy 127.250258 57.821155) - (xy 127.418408 57.735478) (xy 127.418414 57.735475) (xy 127.443613 57.717166) (xy 126.874502 57.148055) - (xy 126.961764 57.124674) (xy 127.063236 57.066089) (xy 127.146089 56.983236) (xy 127.204674 56.881764) - (xy 127.228055 56.794501) (xy 127.797166 57.363612) (xy 127.815475 57.338414) (xy 127.815478 57.338408) - (xy 127.901155 57.170258) (xy 127.959477 56.990763) (xy 127.989 56.804368) (xy 127.989 56.615631) - (xy 127.959477 56.429236) (xy 127.901155 56.249741) (xy 127.815476 56.081586) (xy 127.797166 56.056386) - (xy 127.228055 56.625497) (xy 127.204674 56.538236) (xy 127.146089 56.436764) (xy 127.063236 56.353911) - (xy 126.961764 56.295326) (xy 126.874502 56.271944) (xy 127.443613 55.702833) (xy 127.443612 55.702832) - (xy 127.418413 55.684523) (xy 127.25026 55.598844) (xy 127.125149 55.558193) (xy 127.067474 55.518755) - (xy 127.040276 55.454396) (xy 127.052191 55.38555) (xy 127.099435 55.334074) (xy 127.125143 55.322334) - (xy 127.250448 55.28162) (xy 127.418675 55.195904) (xy 127.571422 55.084927) (xy 127.704927 54.951422) - (xy 127.815904 54.798675) (xy 127.90162 54.630448) (xy 127.959964 54.450884) (xy 127.9895 54.264403) - (xy 127.9895 54.075597) (xy 127.959964 53.889116) (xy 127.90162 53.709552) (xy 127.901618 53.709549) - (xy 127.901618 53.709547) (xy 127.8564 53.620804) (xy 127.815904 53.541325) (xy 127.704927 53.388578) - (xy 127.571422 53.255073) (xy 127.418675 53.144096) (xy 127.250452 53.058381) (xy 127.070884 53.000035) - (xy 126.909899 52.974538) (xy 126.884403 52.9705) (xy 126.695597 52.9705) (xy 126.673167 52.974052) - (xy 126.509115 53.000035) (xy 126.329547 53.058381) (xy 126.161324 53.144096) (xy 126.008575 53.255075) - (xy 125.875075 53.388575) (xy 125.764094 53.541326) (xy 125.683983 53.698552) (xy 125.636009 53.749347) - (xy 125.568188 53.766142) (xy 125.502053 53.743604) (xy 125.458602 53.688889) (xy 125.449499 53.642261) - (xy 125.449499 52.153128) (xy 125.443091 52.093517) (xy 125.392796 51.958669) (xy 125.392795 51.958668) - (xy 125.392793 51.958664) (xy 125.306547 51.843455) (xy 125.306544 51.843452) (xy 125.191335 51.757206) - (xy 125.191328 51.757202) (xy 125.056482 51.706908) (xy 125.056483 51.706908) (xy 124.996883 51.700501) - (xy 124.996881 51.7005) (xy 124.996873 51.7005) (xy 124.996864 51.7005) (xy 123.503129 51.7005) - (xy 123.503123 51.700501) (xy 123.443516 51.706908) (xy 123.308671 51.757202) (xy 123.308664 51.757206) - (xy 123.193455 51.843452) (xy 123.193452 51.843455) (xy 123.107206 51.958664) (xy 123.107202 51.958671) - (xy 123.056908 52.093517) (xy 123.050501 52.153116) (xy 123.050501 52.153123) (xy 123.0505 52.153135) - (xy 119.702826 52.153135) (xy 119.743409 52.001677) (xy 119.7755 51.757927) (xy 119.7755 51.512073) - (xy 119.743409 51.268323) (xy 119.697171 51.095759) (xy 119.698834 51.025914) (xy 119.737996 50.968051) - (xy 119.802225 50.940547) (xy 119.871127 50.952133) (xy 119.892432 50.965294) (xy 119.977863 51.030847) - (xy 119.990699 51.040696) (xy 120.186301 51.153627) (xy 120.186304 51.153628) (xy 120.186309 51.153631) - (xy 120.298882 51.200259) (xy 120.394971 51.240061) (xy 120.613138 51.298519) (xy 120.837069 51.328) - (xy 120.837076 51.328) (xy 121.062924 51.328) (xy 121.062931 51.328) (xy 121.286862 51.298519) (xy 121.505029 51.240061) - (xy 121.66906 51.172116) (xy 121.71369 51.153631) (xy 121.713691 51.153629) (xy 121.713699 51.153627) - (xy 121.909301 51.040696) (xy 122.08849 50.9032) (xy 122.2482 50.74349) (xy 122.385696 50.564301) - (xy 122.498627 50.368699) (xy 122.585061 50.160029) (xy 122.643519 49.941862) (xy 122.673 49.717931) - (xy 122.673 49.492069) (xy 122.643519 49.268138) (xy 122.585061 49.049971) (xy 122.542195 48.946483) - (xy 122.498631 48.841309) (xy 122.498623 48.841293) (xy 122.466988 48.7865) (xy 122.450515 48.7186) - (xy 122.473367 48.652573) (xy 122.528288 48.609383) (xy 122.574375 48.6005) (xy 123.656857 48.6005) + (xy 136.9395 66.942772) (xy 130.718469 66.942772) (xy 130.734737 66.903497) (xy 130.7655 66.748842) + (xy 130.7655 66.591158) (xy 130.7655 66.591155) (xy 130.765499 66.591153) (xy 130.759326 66.560118) + (xy 130.734737 66.436503) (xy 130.72387 66.410267) (xy 130.674397 66.290827) (xy 130.67439 66.290814) + (xy 130.586789 66.159711) (xy 130.586786 66.159707) (xy 130.528377 66.101298) (xy 130.494892 66.039975) + (xy 130.499876 65.970283) (xy 130.541748 65.91435) (xy 130.547167 65.910515) (xy 130.59706 65.877177) + (xy 130.646542 65.844114) (xy 130.744114 65.746542) (xy 130.820775 65.631811) (xy 130.87358 65.504328) + (xy 130.9005 65.368995) (xy 134.359499 65.368995) (xy 134.386418 65.504322) (xy 134.386421 65.504332) + (xy 134.439221 65.631804) (xy 134.439228 65.631817) (xy 134.515885 65.746541) (xy 134.515888 65.746545) + (xy 134.613454 65.844111) (xy 134.613458 65.844114) (xy 134.728182 65.920771) (xy 134.728195 65.920778) + (xy 134.824357 65.960609) (xy 134.855672 65.97358) (xy 134.855676 65.97358) (xy 134.855677 65.973581) + (xy 134.991004 66.0005) (xy 134.991007 66.0005) (xy 135.128994 66.0005) (xy 135.146276 65.997062) + (xy 135.202506 65.985877) (xy 135.272096 65.992104) (xy 135.327274 66.034966) (xy 135.341258 66.060042) + (xy 135.390602 66.179172) (xy 135.390609 66.179185) (xy 135.47821 66.310288) (xy 135.478213 66.310292) + (xy 135.589707 66.421786) (xy 135.589711 66.421789) (xy 135.720814 66.50939) (xy 135.720827 66.509397) + (xy 135.866498 66.569735) (xy 135.866503 66.569737) (xy 135.989863 66.594275) (xy 136.021153 66.600499) + (xy 136.021156 66.6005) (xy 136.021158 66.6005) (xy 136.178844 66.6005) (xy 136.178845 66.600499) + (xy 136.333497 66.569737) (xy 136.479179 66.509394) (xy 136.610289 66.421789) (xy 136.721789 66.310289) + (xy 136.809394 66.179179) (xy 136.869737 66.033497) (xy 136.9005 65.878842) (xy 136.9005 65.721158) + (xy 136.9005 65.721155) (xy 136.900499 65.721153) (xy 136.882729 65.631817) (xy 136.869737 65.566503) + (xy 136.869194 65.565194) (xy 136.869115 65.564454) (xy 136.867969 65.560676) (xy 136.868685 65.560458) + (xy 136.861725 65.495726) (xy 136.880651 65.448851) (xy 136.929951 65.375071) (xy 136.990294 65.229389) + (xy 137.021057 65.074734) (xy 137.021057 64.91705) (xy 137.021057 64.917047) (xy 137.021056 64.917045) + (xy 137.00983 64.860609) (xy 136.990294 64.762395) (xy 136.987598 64.755886) (xy 136.929954 64.616719) + (xy 136.929947 64.616706) (xy 136.842346 64.485603) (xy 136.842343 64.485599) (xy 136.730849 64.374105) + (xy 136.730845 64.374102) (xy 136.599742 64.286501) (xy 136.599729 64.286494) (xy 136.454058 64.226156) + (xy 136.454046 64.226153) (xy 136.299402 64.195392) (xy 136.299399 64.195392) (xy 136.141715 64.195392) + (xy 136.141712 64.195392) (xy 135.987067 64.226153) (xy 135.987055 64.226156) (xy 135.841384 64.286494) + (xy 135.841371 64.286501) (xy 135.710268 64.374102) (xy 135.710264 64.374105) (xy 135.59877 64.485599) + (xy 135.598767 64.485603) (xy 135.509112 64.61978) (xy 135.455499 64.664585) (xy 135.386174 64.673292) + (xy 135.358558 64.665451) (xy 135.343398 64.659171) (xy 135.264328 64.62642) (xy 135.264323 64.626419) + (xy 135.264322 64.626418) (xy 135.128995 64.5995) (xy 135.128993 64.5995) (xy 134.991007 64.5995) + (xy 134.991005 64.5995) (xy 134.855677 64.626418) (xy 134.855667 64.626421) (xy 134.728195 64.679221) + (xy 134.728182 64.679228) (xy 134.613458 64.755885) (xy 134.613454 64.755888) (xy 134.515888 64.853454) + (xy 134.515885 64.853458) (xy 134.439228 64.968182) (xy 134.439221 64.968195) (xy 134.386421 65.095667) + (xy 134.386418 65.095677) (xy 134.3595 65.231004) (xy 134.3595 65.231007) (xy 134.3595 65.368993) + (xy 134.3595 65.368995) (xy 134.359499 65.368995) (xy 130.9005 65.368995) (xy 130.9005 65.368993) + (xy 130.9005 65.231007) (xy 130.9005 65.231004) (xy 130.873581 65.095677) (xy 130.87358 65.095676) + (xy 130.87358 65.095672) (xy 130.857173 65.056061) (xy 130.820778 64.968195) (xy 130.820771 64.968182) + (xy 130.744114 64.853458) (xy 130.744111 64.853454) (xy 130.646545 64.755888) (xy 130.646541 64.755885) + (xy 130.591331 64.718995) (xy 131.849499 64.718995) (xy 131.876418 64.854322) (xy 131.876421 64.854332) + (xy 131.929221 64.981804) (xy 131.929228 64.981817) (xy 132.005885 65.096541) (xy 132.005888 65.096545) + (xy 132.103454 65.194111) (xy 132.103458 65.194114) (xy 132.218182 65.270771) (xy 132.218195 65.270778) + (xy 132.345667 65.323578) (xy 132.345672 65.32358) (xy 132.345676 65.32358) (xy 132.345677 65.323581) + (xy 132.481004 65.3505) (xy 132.481007 65.3505) (xy 132.618995 65.3505) (xy 132.710041 65.332389) + (xy 132.754328 65.32358) (xy 132.881811 65.270775) (xy 132.996542 65.194114) (xy 132.999842 65.190814) + (xy 133.053423 65.137234) (xy 133.094111 65.096545) (xy 133.094114 65.096542) (xy 133.170775 64.981811) + (xy 133.22358 64.854328) (xy 133.234335 64.800261) (xy 133.2505 64.718995) (xy 133.2505 64.581004) + (xy 133.223581 64.445677) (xy 133.22358 64.445676) (xy 133.22358 64.445672) (xy 133.223578 64.445667) + (xy 133.170778 64.318195) (xy 133.170771 64.318182) (xy 133.094114 64.203458) (xy 133.094111 64.203454) + (xy 132.996545 64.105888) (xy 132.996541 64.105885) (xy 132.881817 64.029228) (xy 132.881804 64.029221) + (xy 132.754332 63.976421) (xy 132.754322 63.976418) (xy 132.618995 63.9495) (xy 132.618993 63.9495) + (xy 132.481007 63.9495) (xy 132.481005 63.9495) (xy 132.345677 63.976418) (xy 132.345667 63.976421) + (xy 132.218195 64.029221) (xy 132.218182 64.029228) (xy 132.103458 64.105885) (xy 132.103454 64.105888) + (xy 132.005888 64.203454) (xy 132.005885 64.203458) (xy 131.929228 64.318182) (xy 131.929221 64.318195) + (xy 131.876421 64.445667) (xy 131.876418 64.445677) (xy 131.8495 64.581004) (xy 131.8495 64.581007) + (xy 131.8495 64.718993) (xy 131.8495 64.718995) (xy 131.849499 64.718995) (xy 130.591331 64.718995) + (xy 130.531816 64.679228) (xy 130.531804 64.679221) (xy 130.404332 64.626421) (xy 130.404322 64.626418) + (xy 130.268995 64.5995) (xy 130.268993 64.5995) (xy 130.131007 64.5995) (xy 130.131005 64.5995) + (xy 129.995677 64.626418) (xy 129.995667 64.626421) (xy 129.868195 64.679221) (xy 129.868182 64.679228) + (xy 129.753458 64.755885) (xy 129.753454 64.755888) (xy 129.655888 64.853454) (xy 129.655885 64.853458) + (xy 129.579228 64.968182) (xy 129.579221 64.968195) (xy 129.526421 65.095667) (xy 129.526418 65.095677) + (xy 129.4995 65.231004) (xy 129.4995 65.231007) (xy 129.4995 65.368993) (xy 129.4995 65.368995) + (xy 129.499499 65.368995) (xy 129.526418 65.504322) (xy 129.526421 65.504332) (xy 129.579221 65.631804) + (xy 129.579228 65.631817) (xy 129.655885 65.746541) (xy 129.659751 65.751252) (xy 129.658738 65.752083) + (xy 129.68899 65.807485) (xy 129.684006 65.877177) (xy 129.642134 65.93311) (xy 129.615279 65.948403) + (xy 129.585826 65.960603) (xy 129.585814 65.960609) (xy 129.454711 66.04821) (xy 129.454707 66.048213) + (xy 129.343213 66.159707) (xy 129.34321 66.159711) (xy 129.255609 66.290814) (xy 129.255602 66.290827) + (xy 129.195264 66.436498) (xy 129.195261 66.43651) (xy 129.1645 66.591153) (xy 129.1645 66.748846) + (xy 129.195261 66.903489) (xy 129.195264 66.903501) (xy 129.255602 67.049172) (xy 129.255609 67.049185) + (xy 129.34321 67.180288) (xy 129.343213 67.180292) (xy 129.454707 67.291786) (xy 129.454711 67.291789) + (xy 129.585818 67.379393) (xy 129.58716 67.38011) (xy 129.587731 67.38067) (xy 129.590886 67.382779) + (xy 129.590486 67.383377) (xy 129.637006 67.429071) (xy 129.652468 67.497208) (xy 129.628638 67.562889) + (xy 129.573082 67.605259) (xy 129.552902 67.611087) (xy 129.456508 67.630261) (xy 129.456498 67.630264) + (xy 129.310827 67.690602) (xy 129.310814 67.690609) (xy 129.179711 67.77821) (xy 129.179707 67.778213) + (xy 129.068213 67.889707) (xy 129.06821 67.889711) (xy 128.980609 68.020814) (xy 128.980602 68.020827) + (xy 128.920264 68.166498) (xy 128.920261 68.16651) (xy 128.8895 68.321153) (xy 119.505174 68.321153) + (xy 119.511886 66.532472) (xy 119.531822 66.465508) (xy 119.584797 66.419951) (xy 119.653993 66.410267) + (xy 119.717439 66.43953) (xy 119.723566 66.445257) (xy 119.731504 66.453195) (xy 119.731511 66.453201) + (xy 119.883386 66.569738) (xy 119.910699 66.590696) (xy 120.106301 66.703627) (xy 120.106304 66.703628) + (xy 120.106309 66.703631) (xy 120.21546 66.748842) (xy 120.314971 66.790061) (xy 120.533138 66.848519) + (xy 120.757069 66.878) (xy 120.757076 66.878) (xy 120.982924 66.878) (xy 120.982931 66.878) (xy 121.206862 66.848519) + (xy 121.425029 66.790061) (xy 121.609685 66.713574) (xy 121.63369 66.703631) (xy 121.633691 66.703629) + (xy 121.633699 66.703627) (xy 121.829301 66.590696) (xy 122.00849 66.4532) (xy 122.1682 66.29349) + (xy 122.305696 66.114301) (xy 122.418627 65.918699) (xy 122.420429 65.91435) (xy 122.449445 65.844298) + (xy 122.505061 65.710029) (xy 122.563519 65.491862) (xy 122.593 65.267931) (xy 122.593 65.042069) + (xy 122.563519 64.818138) (xy 122.505061 64.599971) (xy 122.448225 64.462756) (xy 122.418631 64.391309) + (xy 122.418626 64.3913) (xy 122.305696 64.195699) (xy 122.30569 64.195691) (xy 122.168201 64.016511) + (xy 122.168195 64.016504) (xy 122.008495 63.856804) (xy 122.008488 63.856798) (xy 121.951985 63.813442) + (xy 121.831711 63.721153) (xy 139.9745 63.721153) (xy 139.9745 63.878846) (xy 140.005261 64.033489) + (xy 140.005264 64.033501) (xy 140.065602 64.179172) (xy 140.065609 64.179185) (xy 140.15321 64.310288) + (xy 140.153213 64.310292) (xy 140.264707 64.421786) (xy 140.264711 64.421789) (xy 140.395814 64.50939) + (xy 140.395827 64.509397) (xy 140.541498 64.569735) (xy 140.541503 64.569737) (xy 140.691131 64.5995) + (xy 140.696153 64.600499) (xy 140.696156 64.6005) (xy 140.696158 64.6005) (xy 140.853844 64.6005) + (xy 140.853845 64.600499) (xy 141.008497 64.569737) (xy 141.154179 64.509394) (xy 141.285289 64.421789) + (xy 141.396789 64.310289) (xy 141.484394 64.179179) (xy 141.544737 64.033497) (xy 141.5755 63.878842) + (xy 141.5755 63.721158) (xy 141.5755 63.721155) (xy 141.575499 63.721153) (xy 141.554307 63.614614) + (xy 141.544737 63.566503) (xy 141.506248 63.473581) (xy 141.484397 63.420827) (xy 141.48439 63.420814) + (xy 141.396789 63.289711) (xy 141.396786 63.289707) (xy 141.285292 63.178213) (xy 141.285288 63.17821) + (xy 141.154185 63.090609) (xy 141.154172 63.090602) (xy 141.008501 63.030264) (xy 141.008489 63.030261) + (xy 140.853845 62.9995) (xy 140.853842 62.9995) (xy 140.696158 62.9995) (xy 140.696155 62.9995) + (xy 140.54151 63.030261) (xy 140.541498 63.030264) (xy 140.395827 63.090602) (xy 140.395814 63.090609) + (xy 140.264711 63.17821) (xy 140.264707 63.178213) (xy 140.153213 63.289707) (xy 140.15321 63.289711) + (xy 140.065609 63.420814) (xy 140.065602 63.420827) (xy 140.005264 63.566498) (xy 140.005261 63.56651) + (xy 139.9745 63.721153) (xy 121.831711 63.721153) (xy 121.829308 63.719309) (xy 121.829306 63.719307) + (xy 121.829301 63.719304) (xy 121.633699 63.606373) (xy 121.63369 63.606368) (xy 121.425029 63.519939) + (xy 121.326649 63.493578) (xy 121.206862 63.461481) (xy 121.206861 63.46148) (xy 121.206858 63.46148) + (xy 120.98294 63.432001) (xy 120.982937 63.432) (xy 120.982931 63.432) (xy 120.757069 63.432) (xy 120.757063 63.432) + (xy 120.757059 63.432001) (xy 120.533141 63.46148) (xy 120.31497 63.519939) (xy 120.106309 63.606368) + (xy 120.1063 63.606373) (xy 120.037258 63.646235) (xy 119.910699 63.719304) (xy 119.910696 63.719305) + (xy 119.910691 63.719309) (xy 119.731511 63.856798) (xy 119.728457 63.859477) (xy 119.727222 63.858069) + (xy 119.714261 63.865127) (xy 119.697353 63.879668) (xy 119.684171 63.881512) (xy 119.672483 63.887878) + (xy 119.650241 63.886261) (xy 119.628158 63.889352) (xy 119.616072 63.883777) (xy 119.602797 63.882813) + (xy 119.58496 63.869428) (xy 119.564711 63.860089) (xy 119.557557 63.848865) (xy 119.546912 63.840877) + (xy 119.539142 63.819973) (xy 119.527158 63.801169) (xy 119.52414 63.779605) (xy 119.522571 63.775384) + (xy 119.522266 63.766237) (xy 119.522717 63.646235) (xy 119.526938 63.614623) (xy 119.565121 63.472126) + (xy 119.5955 63.241372) (xy 119.5955 63.008628) (xy 119.565121 62.777874) (xy 119.539179 62.68106) + (xy 119.530802 62.649794) (xy 119.526578 62.617236) (xy 119.526659 62.595667) (xy 119.565619 52.213135) + (xy 122.9705 52.213135) (xy 122.9705 53.70687) (xy 122.970501 53.706876) (xy 122.976908 53.766483) + (xy 123.027202 53.901328) (xy 123.027206 53.901335) (xy 123.113452 54.016544) (xy 123.113455 54.016547) + (xy 123.228664 54.102793) (xy 123.228671 54.102797) (xy 123.363517 54.153091) (xy 123.363516 54.153091) + (xy 123.370444 54.153835) (xy 123.423127 54.1595) (xy 123.642257 54.159499) (xy 123.709295 54.179183) + (xy 123.75505 54.231987) (xy 123.764994 54.301145) (xy 123.735969 54.364701) (xy 123.698552 54.393983) + (xy 123.541326 54.474094) (xy 123.388575 54.585075) (xy 123.255075 54.718575) (xy 123.144096 54.871324) + (xy 123.058381 55.039547) (xy 123.000035 55.219115) (xy 122.9705 55.405597) (xy 122.9705 55.594402) + (xy 123.000035 55.780884) (xy 123.058381 55.960452) (xy 123.111962 56.065609) (xy 123.144096 56.128675) + (xy 123.255073 56.281422) (xy 123.388578 56.414927) (xy 123.541325 56.525904) (xy 123.709552 56.61162) + (xy 123.83485 56.652332) (xy 123.892524 56.691768) (xy 123.919723 56.756127) (xy 123.907808 56.824973) + (xy 123.860564 56.876449) (xy 123.83485 56.888193) (xy 123.709739 56.928844) (xy 123.54158 57.014526) + (xy 123.516386 57.032831) (xy 123.516386 57.032832) (xy 124.085498 57.601944) (xy 123.998236 57.625326) + (xy 123.896764 57.683911) (xy 123.813911 57.766764) (xy 123.755326 57.868236) (xy 123.731944 57.955497) + (xy 123.162832 57.386386) (xy 123.162831 57.386386) (xy 123.144526 57.41158) (xy 123.058844 57.579741) + (xy 123.000522 57.759236) (xy 122.971 57.945631) (xy 122.971 58.134368) (xy 123.000522 58.320763) + (xy 123.058844 58.500258) (xy 123.144523 58.668413) (xy 123.162832 58.693612) (xy 123.162833 58.693613) + (xy 123.731944 58.124501) (xy 123.755326 58.211764) (xy 123.813911 58.313236) (xy 123.896764 58.396089) + (xy 123.998236 58.454674) (xy 124.085498 58.478055) (xy 123.516386 59.047166) (xy 123.541586 59.065476) + (xy 123.709741 59.151155) (xy 123.834849 59.191806) (xy 123.892525 59.231244) (xy 123.919723 59.295602) + (xy 123.907808 59.364449) (xy 123.860564 59.415924) (xy 123.83485 59.427668) (xy 123.709547 59.468381) + (xy 123.541324 59.554096) (xy 123.388575 59.665075) (xy 123.255075 59.798575) (xy 123.144096 59.951324) + (xy 123.058381 60.119547) (xy 123.000035 60.299115) (xy 122.9705 60.485597) (xy 122.9705 60.674402) + (xy 123.000035 60.860884) (xy 123.058381 61.040452) (xy 123.144096 61.208675) (xy 123.255073 61.361422) + (xy 123.388578 61.494927) (xy 123.541325 61.605904) (xy 123.61915 61.645558) (xy 123.709547 61.691618) + (xy 123.709549 61.691618) (xy 123.709552 61.69162) (xy 123.802719 61.721892) (xy 123.889115 61.749964) + (xy 123.982356 61.764732) (xy 124.075597 61.7795) (xy 124.075598 61.7795) (xy 124.264402 61.7795) + (xy 124.264403 61.7795) (xy 124.450884 61.749964) (xy 124.630448 61.69162) (xy 124.798675 61.605904) + (xy 124.951422 61.494927) (xy 125.084927 61.361422) (xy 125.195904 61.208675) (xy 125.28162 61.040448) + (xy 125.339964 60.860884) (xy 125.3695 60.674403) (xy 125.3695 60.485597) (xy 125.366821 60.468685) + (xy 125.339964 60.299115) (xy 125.297886 60.169613) (xy 125.28162 60.119552) (xy 125.281618 60.119549) + (xy 125.281618 60.119547) (xy 125.195903 59.951324) (xy 125.186713 59.938675) (xy 125.084927 59.798578) + (xy 124.951422 59.665073) (xy 124.798675 59.554096) (xy 124.783763 59.546498) (xy 124.630452 59.468381) + (xy 124.542288 59.439735) (xy 124.505148 59.427667) (xy 124.447474 59.38823) (xy 124.420276 59.323871) + (xy 124.432191 59.255025) (xy 124.479435 59.203549) (xy 124.50515 59.191806) (xy 124.630258 59.151155) + (xy 124.730186 59.10024) (xy 124.798409 59.065478) (xy 124.798414 59.065475) (xy 124.823613 59.047166) + (xy 124.254502 58.478055) (xy 124.341764 58.454674) (xy 124.443236 58.396089) (xy 124.526089 58.313236) + (xy 124.584674 58.211764) (xy 124.608055 58.124501) (xy 125.177166 58.693612) (xy 125.195475 58.668414) + (xy 125.195478 58.668408) (xy 125.281155 58.500258) (xy 125.339477 58.320763) (xy 125.369 58.134368) + (xy 125.369 57.945631) (xy 125.339477 57.759236) (xy 125.281155 57.579741) (xy 125.195476 57.411586) + (xy 125.177166 57.386386) (xy 124.608055 57.955497) (xy 124.584674 57.868236) (xy 124.526089 57.766764) + (xy 124.443236 57.683911) (xy 124.341764 57.625326) (xy 124.254502 57.601944) (xy 124.823613 57.032833) + (xy 124.823612 57.032832) (xy 124.798413 57.014523) (xy 124.63026 56.928844) (xy 124.505149 56.888193) + (xy 124.447474 56.848755) (xy 124.420276 56.784396) (xy 124.432191 56.71555) (xy 124.479435 56.664074) + (xy 124.505143 56.652334) (xy 124.630448 56.61162) (xy 124.798675 56.525904) (xy 124.951422 56.414927) + (xy 125.084927 56.281422) (xy 125.195904 56.128675) (xy 125.28162 55.960448) (xy 125.339964 55.780884) + (xy 125.3695 55.594403) (xy 125.3695 55.405597) (xy 125.345791 55.255903) (xy 125.339964 55.219115) + (xy 125.281618 55.039547) (xy 125.195903 54.871324) (xy 125.186713 54.858675) (xy 125.084927 54.718578) + (xy 124.951422 54.585073) (xy 124.798675 54.474096) (xy 124.641445 54.393983) (xy 124.59065 54.346009) + (xy 124.573855 54.278188) (xy 124.596392 54.212054) (xy 124.651107 54.168602) (xy 124.69774 54.159499) + (xy 124.916872 54.159499) (xy 124.976483 54.153091) (xy 125.111331 54.102796) (xy 125.226546 54.016546) + (xy 125.310547 53.904335) (xy 125.36648 53.862465) (xy 125.436172 53.857481) (xy 125.497495 53.890966) + (xy 125.530979 53.95229) (xy 125.532286 53.998045) (xy 125.5105 54.135597) (xy 125.5105 54.324402) + (xy 125.540035 54.510884) (xy 125.598381 54.690452) (xy 125.684096 54.858675) (xy 125.795073 55.011422) + (xy 125.928578 55.144927) (xy 126.081325 55.255904) (xy 126.249552 55.34162) (xy 126.37485 55.382332) + (xy 126.432524 55.421768) (xy 126.459723 55.486127) (xy 126.447808 55.554973) (xy 126.400564 55.606449) + (xy 126.37485 55.618193) (xy 126.249739 55.658844) (xy 126.08158 55.744526) (xy 126.056386 55.762831) + (xy 126.056386 55.762832) (xy 126.625498 56.331944) (xy 126.538236 56.355326) (xy 126.436764 56.413911) + (xy 126.353911 56.496764) (xy 126.295326 56.598236) (xy 126.271944 56.685498) (xy 125.702832 56.116386) + (xy 125.702831 56.116386) (xy 125.684526 56.14158) (xy 125.598844 56.309741) (xy 125.540522 56.489236) + (xy 125.511 56.675631) (xy 125.511 56.864368) (xy 125.540522 57.050763) (xy 125.598844 57.230258) + (xy 125.684523 57.398413) (xy 125.702832 57.423612) (xy 125.702833 57.423613) (xy 126.271944 56.854501) + (xy 126.295326 56.941764) (xy 126.353911 57.043236) (xy 126.436764 57.126089) (xy 126.538236 57.184674) + (xy 126.625498 57.208055) (xy 126.056386 57.777166) (xy 126.081586 57.795476) (xy 126.249741 57.881155) + (xy 126.374849 57.921806) (xy 126.432525 57.961244) (xy 126.459723 58.025602) (xy 126.447808 58.094449) + (xy 126.400564 58.145924) (xy 126.37485 58.157668) (xy 126.249547 58.198381) (xy 126.081324 58.284096) + (xy 125.928575 58.395075) (xy 125.795075 58.528575) (xy 125.684096 58.681324) (xy 125.598381 58.849547) + (xy 125.540035 59.029115) (xy 125.5105 59.215597) (xy 125.5105 59.404402) (xy 125.540035 59.590884) + (xy 125.598381 59.770452) (xy 125.660205 59.891786) (xy 125.684096 59.938675) (xy 125.795073 60.091422) + (xy 125.928578 60.224927) (xy 126.081325 60.335904) (xy 126.160804 60.3764) (xy 126.249547 60.421618) + (xy 126.249549 60.421618) (xy 126.249552 60.42162) (xy 126.317347 60.443648) (xy 126.37404 60.462069) + (xy 126.431715 60.501507) (xy 126.458913 60.565866) (xy 126.446998 60.634712) (xy 126.399754 60.686188) + (xy 126.37404 60.697931) (xy 126.249547 60.738381) (xy 126.081324 60.824096) (xy 125.928575 60.935075) + (xy 125.795075 61.068575) (xy 125.684096 61.221324) (xy 125.598381 61.389547) (xy 125.540035 61.569115) + (xy 125.515838 61.721892) (xy 125.5105 61.755597) (xy 125.5105 61.944403) (xy 125.511741 61.952237) + (xy 125.540035 62.130884) (xy 125.598381 62.310452) (xy 125.678753 62.468189) (xy 125.684096 62.478675) + (xy 125.795073 62.631422) (xy 125.928578 62.764927) (xy 126.081325 62.875904) (xy 126.107014 62.888993) + (xy 126.249547 62.961618) (xy 126.249549 62.961618) (xy 126.249552 62.96162) (xy 126.345802 62.992893) + (xy 126.429115 63.019964) (xy 126.494147 63.030264) (xy 126.615597 63.0495) (xy 126.615598 63.0495) + (xy 126.804402 63.0495) (xy 126.804403 63.0495) (xy 126.990884 63.019964) (xy 127.170448 62.96162) + (xy 127.338675 62.875904) (xy 127.348184 62.868995) (xy 134.274497 62.868995) (xy 134.301416 63.004322) + (xy 134.301419 63.004332) (xy 134.354219 63.131804) (xy 134.354226 63.131817) (xy 134.430883 63.246541) + (xy 134.430886 63.246545) (xy 134.528452 63.344111) (xy 134.528456 63.344114) (xy 134.64318 63.420771) + (xy 134.643193 63.420778) (xy 134.76716 63.472126) (xy 134.77067 63.47358) (xy 134.770674 63.47358) + (xy 134.770675 63.473581) (xy 134.906002 63.5005) (xy 134.906005 63.5005) (xy 135.043993 63.5005) + (xy 135.135039 63.482389) (xy 135.179326 63.47358) (xy 135.279709 63.432) (xy 135.306802 63.420778) + (xy 135.306802 63.420777) (xy 135.306809 63.420775) (xy 135.42154 63.344114) (xy 135.519112 63.246542) + (xy 135.52256 63.241382) (xy 135.547715 63.203735) (xy 135.601327 63.15893) (xy 135.670652 63.150223) + (xy 135.733679 63.180377) (xy 135.753919 63.203735) (xy 135.795885 63.266541) (xy 135.795888 63.266545) + (xy 135.893454 63.364111) (xy 135.893458 63.364114) (xy 136.008182 63.440771) (xy 136.008195 63.440778) + (xy 136.135667 63.493578) (xy 136.135672 63.49358) (xy 136.135676 63.49358) (xy 136.135677 63.493581) + (xy 136.271004 63.5205) (xy 136.271007 63.5205) (xy 136.408995 63.5205) (xy 136.509539 63.5005) + (xy 136.544328 63.49358) (xy 136.671811 63.440775) (xy 136.786542 63.364114) (xy 136.884114 63.266542) + (xy 136.960775 63.151811) (xy 137.01358 63.024328) (xy 137.02449 62.969479) (xy 137.0405 62.888995) + (xy 137.0405 62.751004) (xy 137.013581 62.615677) (xy 137.01358 62.615676) (xy 137.01358 62.615672) + (xy 137.005294 62.595667) (xy 136.960778 62.488195) (xy 136.960771 62.488182) (xy 136.884114 62.373458) + (xy 136.884111 62.373454) (xy 136.859049 62.348392) (xy 136.825564 62.287069) (xy 136.830548 62.217377) + (xy 136.859049 62.17303) (xy 136.921786 62.110292) (xy 136.921789 62.110289) (xy 137.009394 61.979179) + (xy 137.069737 61.833497) (xy 137.072556 61.819321) (xy 137.104938 61.75741) (xy 137.165652 61.722834) + (xy 137.218366 61.721892) (xy 137.308655 61.739852) (xy 137.308658 61.739852) (xy 137.466344 61.739852) + (xy 137.466345 61.739851) (xy 137.620997 61.709089) (xy 137.737976 61.660634) (xy 137.807445 61.653166) + (xy 137.869924 61.684441) (xy 137.873809 61.688575) (xy 137.873903 61.688482) (xy 137.989707 61.804286) + (xy 137.989711 61.804289) (xy 138.120814 61.89189) (xy 138.120827 61.891897) (xy 138.247587 61.944402) + (xy 138.266503 61.952237) (xy 138.401949 61.979179) (xy 138.421153 61.982999) (xy 138.421156 61.983) + (xy 138.421158 61.983) (xy 138.578844 61.983) (xy 138.578845 61.982999) (xy 138.733497 61.952237) + (xy 138.879179 61.891894) (xy 139.010289 61.804289) (xy 139.010296 61.804281) (xy 139.012343 61.802603) + (xy 139.013632 61.802055) (xy 139.015354 61.800905) (xy 139.015572 61.801231) (xy 139.076652 61.775287) + (xy 139.14552 61.787076) (xy 139.178693 61.810772) (xy 139.189707 61.821786) (xy 139.189711 61.821789) + (xy 139.320814 61.90939) (xy 139.320827 61.909397) (xy 139.424256 61.952238) (xy 139.466503 61.969737) + (xy 139.621153 62.000499) (xy 139.621156 62.0005) (xy 139.621158 62.0005) (xy 139.778844 62.0005) + (xy 139.778845 62.000499) (xy 139.933497 61.969737) (xy 140.079179 61.909394) (xy 140.105376 61.89189) + (xy 140.163609 61.85298) (xy 140.230286 61.832102) (xy 140.297667 61.850586) (xy 140.301391 61.85298) + (xy 140.385814 61.90939) (xy 140.385827 61.909397) (xy 140.489256 61.952238) (xy 140.531503 61.969737) + (xy 140.686153 62.000499) (xy 140.686156 62.0005) (xy 140.686158 62.0005) (xy 140.843844 62.0005) + (xy 140.843845 62.000499) (xy 140.998497 61.969737) (xy 141.144179 61.909394) (xy 141.275289 61.821789) + (xy 141.386789 61.710289) (xy 141.474394 61.579179) (xy 141.534737 61.433497) (xy 141.5655 61.278842) + (xy 141.5655 61.121158) (xy 141.5655 61.121155) (xy 141.565499 61.121153) (xy 141.555041 61.068578) + (xy 141.534737 60.966503) (xy 141.521719 60.935075) (xy 141.474397 60.820827) (xy 141.47439 60.820814) + (xy 141.386789 60.689711) (xy 141.386786 60.689707) (xy 141.275292 60.578213) (xy 141.275288 60.57821) + (xy 141.144185 60.490609) (xy 141.144172 60.490602) (xy 140.998501 60.430264) (xy 140.998489 60.430261) + (xy 140.843845 60.3995) (xy 140.843842 60.3995) (xy 140.686158 60.3995) (xy 140.686155 60.3995) + (xy 140.53151 60.430261) (xy 140.531498 60.430264) (xy 140.385827 60.490602) (xy 140.385816 60.490608) + (xy 140.30139 60.54702) (xy 140.234713 60.567897) (xy 140.167333 60.549412) (xy 140.16361 60.54702) + (xy 140.079183 60.490608) (xy 140.079172 60.490602) (xy 139.933501 60.430264) (xy 139.933489 60.430261) + (xy 139.778845 60.3995) (xy 139.778842 60.3995) (xy 139.621158 60.3995) (xy 139.621155 60.3995) + (xy 139.46651 60.430261) (xy 139.466498 60.430264) (xy 139.320827 60.490602) (xy 139.320814 60.490609) + (xy 139.189705 60.578214) (xy 139.18764 60.579909) (xy 139.186348 60.580457) (xy 139.184646 60.581595) + (xy 139.18443 60.581271) (xy 139.123327 60.607214) (xy 139.054461 60.595414) (xy 139.021306 60.571727) + (xy 139.010292 60.560713) (xy 139.010288 60.56071) (xy 138.879185 60.473109) (xy 138.879172 60.473102) + (xy 138.733501 60.412764) (xy 138.733489 60.412761) (xy 138.578845 60.382) (xy 138.578842 60.382) + (xy 138.421158 60.382) (xy 138.421155 60.382) (xy 138.26651 60.412761) (xy 138.266507 60.412762) + (xy 138.266506 60.412762) (xy 138.266503 60.412763) (xy 138.216753 60.43337) (xy 138.149523 60.461217) + (xy 138.080053 60.468685) (xy 138.017574 60.437409) (xy 138.013691 60.433275) (xy 138.013597 60.43337) + (xy 137.897792 60.317565) (xy 137.897788 60.317562) (xy 137.766685 60.229961) (xy 137.766672 60.229954) + (xy 137.621001 60.169616) (xy 137.620989 60.169613) (xy 137.466345 60.138852) (xy 137.466342 60.138852) + (xy 137.308658 60.138852) (xy 137.308655 60.138852) (xy 137.15401 60.169613) (xy 137.153998 60.169616) + (xy 137.008327 60.229954) (xy 137.008314 60.229961) (xy 136.877211 60.317562) (xy 136.877207 60.317565) + (xy 136.765713 60.429059) (xy 136.76571 60.429063) (xy 136.678109 60.560166) (xy 136.678102 60.560179) + (xy 136.617763 60.705852) (xy 136.617761 60.705861) (xy 136.61494 60.72004) (xy 136.582552 60.781949) + (xy 136.521834 60.81652) (xy 136.469133 60.817459) (xy 136.378846 60.7995) (xy 136.378842 60.7995) + (xy 136.221158 60.7995) (xy 136.221155 60.7995) (xy 136.06651 60.830261) (xy 136.066498 60.830264) + (xy 135.920827 60.890602) (xy 135.920814 60.890609) (xy 135.789711 60.97821) (xy 135.789707 60.978213) + (xy 135.678213 61.089707) (xy 135.67821 61.089711) (xy 135.590609 61.220814) (xy 135.590602 61.220827) + (xy 135.530264 61.366498) (xy 135.530261 61.36651) (xy 135.4995 61.521153) (xy 135.4995 61.678846) + (xy 135.530261 61.833489) (xy 135.530264 61.833501) (xy 135.590602 61.979172) (xy 135.590609 61.979185) + (xy 135.67821 62.110288) (xy 135.678213 62.110292) (xy 135.782203 62.214282) (xy 135.797414 62.24214) + (xy 135.814104 62.269157) (xy 135.814042 62.272591) (xy 135.815688 62.275605) (xy 135.813423 62.307266) + (xy 135.812857 62.339016) (xy 135.810853 62.343202) (xy 135.810704 62.345297) (xy 135.797624 62.370854) + (xy 135.767282 62.416264) (xy 135.71367 62.461069) (xy 135.644345 62.469776) (xy 135.581318 62.439622) + (xy 135.561078 62.416264) (xy 135.519112 62.353458) (xy 135.519109 62.353454) (xy 135.421543 62.255888) + (xy 135.421539 62.255885) (xy 135.306815 62.179228) (xy 135.306802 62.179221) (xy 135.17933 62.126421) + (xy 135.17932 62.126418) (xy 135.043993 62.0995) (xy 135.043991 62.0995) (xy 134.906005 62.0995) + (xy 134.906003 62.0995) (xy 134.770675 62.126418) (xy 134.770665 62.126421) (xy 134.643193 62.179221) + (xy 134.64318 62.179228) (xy 134.528456 62.255885) (xy 134.528452 62.255888) (xy 134.430886 62.353454) + (xy 134.430883 62.353458) (xy 134.354226 62.468182) (xy 134.354219 62.468195) (xy 134.301419 62.595667) + (xy 134.301416 62.595677) (xy 134.274498 62.731004) (xy 134.274498 62.731007) (xy 134.274498 62.868993) + (xy 134.274498 62.868995) (xy 134.274497 62.868995) (xy 127.348184 62.868995) (xy 127.491422 62.764927) + (xy 127.624927 62.631422) (xy 127.735904 62.478675) (xy 127.82162 62.310448) (xy 127.879964 62.130884) + (xy 127.9095 61.944403) (xy 127.9095 61.755597) (xy 127.879964 61.569116) (xy 127.864381 61.521158) + (xy 127.8359 61.433501) (xy 127.82162 61.389552) (xy 127.821618 61.389549) (xy 127.821618 61.389547) + (xy 127.735903 61.221324) (xy 127.735538 61.220821) (xy 127.624927 61.068578) (xy 127.491422 60.935073) + (xy 127.338675 60.824096) (xy 127.332259 60.820827) (xy 127.170452 60.738381) (xy 127.045959 60.697931) + (xy 126.988284 60.658493) (xy 126.961086 60.594134) (xy 126.973001 60.525288) (xy 127.020245 60.473812) + (xy 127.045959 60.462069) (xy 127.048581 60.461217) (xy 127.170448 60.42162) (xy 127.338675 60.335904) + (xy 127.491422 60.224927) (xy 127.624927 60.091422) (xy 127.735904 59.938675) (xy 127.82162 59.770448) + (xy 127.879964 59.590884) (xy 127.9095 59.404403) (xy 127.9095 59.215597) (xy 127.905629 59.191155) + (xy 127.905629 59.191153) (xy 132.077 59.191153) (xy 132.077 59.348846) (xy 132.107761 59.503489) + (xy 132.107764 59.503501) (xy 132.168102 59.649172) (xy 132.168109 59.649185) (xy 132.25571 59.780288) + (xy 132.255713 59.780292) (xy 132.367207 59.891786) (xy 132.367211 59.891789) (xy 132.498314 59.97939) + (xy 132.498327 59.979397) (xy 132.643998 60.039735) (xy 132.644003 60.039737) (xy 132.798653 60.070499) + (xy 132.798656 60.0705) (xy 132.798658 60.0705) (xy 132.956344 60.0705) (xy 132.956345 60.070499) + (xy 133.110997 60.039737) (xy 133.256679 59.979394) (xy 133.387789 59.891789) (xy 133.499289 59.780289) + (xy 133.586894 59.649179) (xy 133.647237 59.503497) (xy 133.678 59.348842) (xy 133.678 59.191158) + (xy 133.678 59.191155) (xy 133.677999 59.191153) (xy 133.675126 59.176711) (xy 133.647237 59.036503) + (xy 133.644177 59.029115) (xy 133.586897 58.890827) (xy 133.58689 58.890814) (xy 133.499289 58.759711) + (xy 133.499286 58.759707) (xy 133.387792 58.648213) (xy 133.387788 58.64821) (xy 133.256685 58.560609) + (xy 133.256672 58.560602) (xy 133.111001 58.500264) (xy 133.110989 58.500261) (xy 132.956345 58.4695) + (xy 132.956342 58.4695) (xy 132.798658 58.4695) (xy 132.798655 58.4695) (xy 132.64401 58.500261) + (xy 132.643998 58.500264) (xy 132.498327 58.560602) (xy 132.498314 58.560609) (xy 132.367211 58.64821) + (xy 132.367207 58.648213) (xy 132.255713 58.759707) (xy 132.25571 58.759711) (xy 132.168109 58.890814) + (xy 132.168102 58.890827) (xy 132.107764 59.036498) (xy 132.107761 59.03651) (xy 132.077 59.191153) + (xy 127.905629 59.191153) (xy 127.879964 59.029115) (xy 127.821618 58.849547) (xy 127.742165 58.693613) + (xy 127.735904 58.681325) (xy 127.624927 58.528578) (xy 127.491422 58.395073) (xy 127.338675 58.284096) + (xy 127.170452 58.198381) (xy 127.051437 58.159711) (xy 127.045148 58.157667) (xy 126.987474 58.11823) + (xy 126.960276 58.053871) (xy 126.972191 57.985025) (xy 127.019435 57.933549) (xy 127.04515 57.921806) + (xy 127.170258 57.881155) (xy 127.338408 57.795478) (xy 127.338414 57.795475) (xy 127.363613 57.777166) + (xy 126.794502 57.208055) (xy 126.881764 57.184674) (xy 126.983236 57.126089) (xy 127.066089 57.043236) + (xy 127.124674 56.941764) (xy 127.148055 56.854501) (xy 127.717166 57.423612) (xy 127.735475 57.398414) + (xy 127.735478 57.398408) (xy 127.821155 57.230258) (xy 127.879477 57.050763) (xy 127.909 56.864368) + (xy 127.909 56.696153) (xy 132.8595 56.696153) (xy 132.8595 56.853846) (xy 132.890261 57.008489) + (xy 132.890264 57.008501) (xy 132.950602 57.154172) (xy 132.950609 57.154185) (xy 133.03821 57.285288) + (xy 133.038213 57.285292) (xy 133.149707 57.396786) (xy 133.149711 57.396789) (xy 133.280814 57.48439) + (xy 133.280827 57.484397) (xy 133.426498 57.544735) (xy 133.426503 57.544737) (xy 133.499692 57.559295) + (xy 133.561602 57.591679) (xy 133.596176 57.652395) (xy 133.5995 57.680912) (xy 133.5995 57.808846) + (xy 133.630261 57.963489) (xy 133.630264 57.963501) (xy 133.690602 58.109172) (xy 133.690609 58.109185) + (xy 133.77821 58.240288) (xy 133.778213 58.240292) (xy 133.889707 58.351786) (xy 133.889711 58.351789) + (xy 134.020814 58.43939) (xy 134.020827 58.439397) (xy 134.130924 58.485) (xy 134.166503 58.499737) + (xy 134.311496 58.528578) (xy 134.321153 58.530499) (xy 134.321156 58.5305) (xy 134.321158 58.5305) + (xy 134.478844 58.5305) (xy 134.478845 58.530499) (xy 134.633497 58.499737) (xy 134.707548 58.469063) + (xy 134.777016 58.461595) (xy 134.802448 58.469062) (xy 134.876503 58.499737) (xy 135.021496 58.528578) + (xy 135.031153 58.530499) (xy 135.031156 58.5305) (xy 135.031158 58.5305) (xy 135.188844 58.5305) + (xy 135.188845 58.530499) (xy 135.343497 58.499737) (xy 135.456166 58.453067) (xy 135.489172 58.439397) + (xy 135.489172 58.439396) (xy 135.489179 58.439394) (xy 135.620289 58.351789) (xy 135.721636 58.250442) + (xy 136.118378 58.250442) (xy 136.118378 58.408135) (xy 136.149139 58.562778) (xy 136.149142 58.56279) + (xy 136.20948 58.708461) (xy 136.209487 58.708474) (xy 136.297088 58.839577) (xy 136.297091 58.839581) + (xy 136.408585 58.951075) (xy 136.408589 58.951078) (xy 136.539692 59.038679) (xy 136.539705 59.038686) + (xy 136.644539 59.082109) (xy 136.685381 59.099026) (xy 136.831887 59.128168) (xy 136.840031 59.129788) + (xy 136.840034 59.129789) (xy 136.840036 59.129789) (xy 136.924991 59.129789) (xy 136.99203 59.149474) + (xy 137.019772 59.176711) (xy 137.02115 59.175581) (xy 137.025016 59.180292) (xy 137.13651 59.291786) + (xy 137.136514 59.291789) (xy 137.267617 59.37939) (xy 137.26763 59.379397) (xy 137.389516 59.429883) + (xy 137.413306 59.439737) (xy 137.557303 59.46838) (xy 137.567956 59.470499) (xy 137.567959 59.4705) + (xy 137.567961 59.4705) (xy 137.725647 59.4705) (xy 137.725648 59.470499) (xy 137.8803 59.439737) + (xy 138.025982 59.379394) (xy 138.157092 59.291789) (xy 138.268592 59.180289) (xy 138.356197 59.049179) + (xy 138.41654 58.903497) (xy 138.447303 58.748842) (xy 138.447303 58.591158) (xy 138.447303 58.591155) + (xy 138.447302 58.591153) (xy 138.429118 58.499736) (xy 138.41654 58.436503) (xy 138.381451 58.351789) + (xy 138.3562 58.290827) (xy 138.356193 58.290814) (xy 138.268592 58.159711) (xy 138.268589 58.159707) + (xy 138.157095 58.048213) (xy 138.157091 58.04821) (xy 138.025988 57.960609) (xy 138.025975 57.960602) + (xy 137.880304 57.900264) (xy 137.880292 57.900261) (xy 137.725648 57.8695) (xy 137.725645 57.8695) + (xy 137.64069 57.8695) (xy 137.573651 57.849815) (xy 137.545908 57.822577) (xy 137.544531 57.823708) + (xy 137.540664 57.818996) (xy 137.42917 57.707502) (xy 137.429166 57.707499) (xy 137.298063 57.619898) + (xy 137.29805 57.619891) (xy 137.152379 57.559553) (xy 137.152367 57.55955) (xy 136.997723 57.528789) + (xy 136.99772 57.528789) (xy 136.840036 57.528789) (xy 136.840033 57.528789) (xy 136.685388 57.55955) + (xy 136.685376 57.559553) (xy 136.539705 57.619891) (xy 136.539692 57.619898) (xy 136.408589 57.707499) + (xy 136.408585 57.707502) (xy 136.297091 57.818996) (xy 136.297088 57.819) (xy 136.209487 57.950103) + (xy 136.20948 57.950116) (xy 136.149142 58.095787) (xy 136.149139 58.095799) (xy 136.118378 58.250442) + (xy 135.721636 58.250442) (xy 135.731789 58.240289) (xy 135.819394 58.109179) (xy 135.879737 57.963497) + (xy 135.9105 57.808842) (xy 135.9105 57.651158) (xy 135.9105 57.651155) (xy 135.910499 57.651153) + (xy 135.879738 57.496507) (xy 135.879735 57.496498) (xy 135.819397 57.350827) (xy 135.81939 57.350814) + (xy 135.731789 57.219711) (xy 135.731786 57.219707) (xy 135.620292 57.108213) (xy 135.620288 57.10821) + (xy 135.489185 57.020609) (xy 135.489172 57.020602) (xy 135.343501 56.960264) (xy 135.343489 56.960261) + (xy 135.188845 56.9295) (xy 135.188842 56.9295) (xy 135.031158 56.9295) (xy 135.031155 56.9295) + (xy 134.876505 56.960261) (xy 134.876502 56.960263) (xy 134.802451 56.990935) (xy 134.777588 56.993607) + (xy 134.753517 57.000364) (xy 134.740182 56.997628) (xy 134.732982 56.998403) (xy 134.718645 56.994924) + (xy 134.712994 56.993191) (xy 134.633497 56.960263) (xy 134.554152 56.94448) (xy 134.548145 56.942638) + (xy 134.524015 56.926719) (xy 134.498397 56.913319) (xy 134.495205 56.907713) (xy 134.489823 56.904163) + (xy 134.478131 56.87773) (xy 134.463823 56.852603) (xy 134.46268 56.842798) (xy 134.46156 56.840265) + (xy 134.462032 56.837237) (xy 134.4605 56.824087) (xy 134.4605 56.696155) (xy 134.460499 56.696153) + (xy 134.433474 56.560292) (xy 134.429737 56.541503) (xy 134.411206 56.496764) (xy 134.369397 56.395827) + (xy 134.36939 56.395814) (xy 134.281789 56.264711) (xy 134.281786 56.264707) (xy 134.170292 56.153213) + (xy 134.170288 56.15321) (xy 134.039185 56.065609) (xy 134.039172 56.065602) (xy 133.893501 56.005264) + (xy 133.893489 56.005261) (xy 133.738845 55.9745) (xy 133.738842 55.9745) (xy 133.581158 55.9745) + (xy 133.581155 55.9745) (xy 133.42651 56.005261) (xy 133.426498 56.005264) (xy 133.280827 56.065602) + (xy 133.280814 56.065609) (xy 133.149711 56.15321) (xy 133.149707 56.153213) (xy 133.038213 56.264707) + (xy 133.03821 56.264711) (xy 132.950609 56.395814) (xy 132.950602 56.395827) (xy 132.890264 56.541498) + (xy 132.890261 56.54151) (xy 132.8595 56.696153) (xy 127.909 56.696153) (xy 127.909 56.675631) (xy 127.879477 56.489236) + (xy 127.821155 56.309741) (xy 127.735476 56.141586) (xy 127.717166 56.116386) (xy 127.148055 56.685497) + (xy 127.124674 56.598236) (xy 127.066089 56.496764) (xy 126.983236 56.413911) (xy 126.881764 56.355326) + (xy 126.794502 56.331944) (xy 127.363613 55.762833) (xy 127.363612 55.762832) (xy 127.338413 55.744523) + (xy 127.17026 55.658844) (xy 127.045149 55.618193) (xy 126.987474 55.578755) (xy 126.960276 55.514396) + (xy 126.972191 55.44555) (xy 127.019435 55.394074) (xy 127.045143 55.382334) (xy 127.170448 55.34162) + (xy 127.338675 55.255904) (xy 127.491422 55.144927) (xy 127.624927 55.011422) (xy 127.735904 54.858675) + (xy 127.82162 54.690448) (xy 127.879964 54.510884) (xy 127.9095 54.324403) (xy 127.9095 54.135597) + (xy 127.879964 53.949116) (xy 127.82162 53.769552) (xy 127.821618 53.769549) (xy 127.821618 53.769547) + (xy 127.7764 53.680804) (xy 127.735904 53.601325) (xy 127.624927 53.448578) (xy 127.491422 53.315073) + (xy 127.338675 53.204096) (xy 127.280476 53.174442) (xy 127.170452 53.118381) (xy 126.990884 53.060035) + (xy 126.829899 53.034538) (xy 126.804403 53.0305) (xy 126.615597 53.0305) (xy 126.593167 53.034052) + (xy 126.429115 53.060035) (xy 126.249547 53.118381) (xy 126.081324 53.204096) (xy 125.928575 53.315075) + (xy 125.795075 53.448575) (xy 125.684094 53.601326) (xy 125.603983 53.758552) (xy 125.556009 53.809347) + (xy 125.488188 53.826142) (xy 125.422053 53.803604) (xy 125.378602 53.748889) (xy 125.369499 53.702261) + (xy 125.369499 52.213128) (xy 125.363091 52.153517) (xy 125.312796 52.018669) (xy 125.312795 52.018668) + (xy 125.312793 52.018664) (xy 125.226547 51.903455) (xy 125.226544 51.903452) (xy 125.111335 51.817206) + (xy 125.111328 51.817202) (xy 124.976482 51.766908) (xy 124.976483 51.766908) (xy 124.916883 51.760501) + (xy 124.916881 51.7605) (xy 124.916873 51.7605) (xy 124.916864 51.7605) (xy 123.423129 51.7605) + (xy 123.423123 51.760501) (xy 123.363516 51.766908) (xy 123.228671 51.817202) (xy 123.228664 51.817206) + (xy 123.113455 51.903452) (xy 123.113452 51.903455) (xy 123.027206 52.018664) (xy 123.027202 52.018671) + (xy 122.976908 52.153517) (xy 122.970501 52.213116) (xy 122.970501 52.213123) (xy 122.9705 52.213135) + (xy 119.565619 52.213135) (xy 119.566265 52.041083) (xy 119.567323 52.025393) (xy 119.5955 51.811372) + (xy 119.5955 51.578628) (xy 119.569853 51.38382) (xy 119.568794 51.36719) (xy 119.569834 51.090121) + (xy 119.58977 51.023157) (xy 119.642745 50.977601) (xy 119.711941 50.967917) (xy 119.769319 50.992212) + (xy 119.910699 51.100696) (xy 120.106301 51.213627) (xy 120.106304 51.213628) (xy 120.106309 51.213631) + (xy 120.218882 51.260259) (xy 120.314971 51.300061) (xy 120.533138 51.358519) (xy 120.757069 51.388) + (xy 120.757076 51.388) (xy 120.982924 51.388) (xy 120.982931 51.388) (xy 121.206862 51.358519) (xy 121.425029 51.300061) + (xy 121.58906 51.232116) (xy 121.63369 51.213631) (xy 121.633691 51.213629) (xy 121.633699 51.213627) + (xy 121.829301 51.100696) (xy 122.00849 50.9632) (xy 122.1682 50.80349) (xy 122.305696 50.624301) + (xy 122.418627 50.428699) (xy 122.505061 50.220029) (xy 122.563519 50.001862) (xy 122.593 49.777931) + (xy 122.593 49.552069) (xy 122.563519 49.328138) (xy 122.505061 49.109971) (xy 122.437342 48.946483) + (xy 122.418631 48.901309) (xy 122.418626 48.9013) (xy 122.305696 48.705699) (xy 122.1682 48.52651) + (xy 122.168195 48.526504) (xy 122.153872 48.512181) (xy 122.120387 48.450858) (xy 122.125371 48.381166) + (xy 122.167243 48.325233) (xy 122.232707 48.300816) (xy 122.241553 48.3005) (xy 123.450831 48.3005) ) ) ) @@ -37363,319 +42349,296 @@ ) (polygon (pts - (xy 145.672771 72.402049) (xy 208.75 72.412925) (xy 208.81 48.9) (xy 156.569553 48.780604) (xy 150.289312 54.993042) - (xy 145.675774 54.986213) + (xy 145.604963 72.402111) (xy 208.806546 72.397562) (xy 208.804855 48.90248) (xy 156.517539 48.791255) + (xy 150.271938 54.999865) (xy 145.60794 55.017258) ) ) (filled_polygon (layer "In2.Cu") (pts - (xy 185.771633 48.847345) (xy 185.838627 48.867183) (xy 185.884261 48.920091) (xy 185.894046 48.989273) - (xy 185.864876 49.052762) (xy 185.840241 49.074446) (xy 185.789713 49.108208) (xy 185.789707 49.108213) - (xy 185.678213 49.219707) (xy 185.67821 49.219711) (xy 185.590609 49.350814) (xy 185.590602 49.350827) - (xy 185.530264 49.496498) (xy 185.530261 49.49651) (xy 185.4995 49.651153) (xy 185.4995 49.808846) - (xy 185.530261 49.963489) (xy 185.530264 49.963501) (xy 185.590602 50.109172) (xy 185.590609 50.109185) - (xy 185.67821 50.240288) (xy 185.678213 50.240292) (xy 185.789707 50.351786) (xy 185.789711 50.351789) - (xy 185.920814 50.43939) (xy 185.920827 50.439397) (xy 186.031622 50.485289) (xy 186.066503 50.499737) - (xy 186.221153 50.530499) (xy 186.221156 50.5305) (xy 186.221158 50.5305) (xy 186.378844 50.5305) - (xy 186.378845 50.530499) (xy 186.533497 50.499737) (xy 186.679179 50.439394) (xy 186.810289 50.351789) - (xy 186.921789 50.240289) (xy 187.009394 50.109179) (xy 187.069737 49.963497) (xy 187.080478 49.9095) - (xy 187.083133 49.896153) (xy 196.6245 49.896153) (xy 196.6245 50.053846) (xy 196.655261 50.208489) - (xy 196.655264 50.208501) (xy 196.715602 50.354172) (xy 196.715609 50.354185) (xy 196.80321 50.485288) - (xy 196.803213 50.485292) (xy 196.914707 50.596786) (xy 196.914711 50.596789) (xy 197.045814 50.68439) - (xy 197.045827 50.684397) (xy 197.184386 50.741789) (xy 197.191503 50.744737) (xy 197.346153 50.775499) - (xy 197.346156 50.7755) (xy 197.346158 50.7755) (xy 197.503844 50.7755) (xy 197.503845 50.775499) - (xy 197.658497 50.744737) (xy 197.793436 50.688844) (xy 197.804172 50.684397) (xy 197.804172 50.684396) - (xy 197.804179 50.684394) (xy 197.812488 50.678842) (xy 197.81889 50.674565) (xy 197.885567 50.653686) - (xy 197.952947 50.67217) (xy 197.999638 50.724148) (xy 198.009399 50.753474) (xy 198.035261 50.883491) - (xy 198.035264 50.883501) (xy 198.095602 51.029172) (xy 198.095609 51.029185) (xy 198.18321 51.160288) - (xy 198.183213 51.160292) (xy 198.294707 51.271786) (xy 198.294711 51.271789) (xy 198.425814 51.35939) - (xy 198.425827 51.359397) (xy 198.570665 51.41939) (xy 198.571503 51.419737) (xy 198.726153 51.450499) - (xy 198.726156 51.4505) (xy 198.726158 51.4505) (xy 198.883844 51.4505) (xy 198.883845 51.450499) - (xy 199.038497 51.419737) (xy 199.184179 51.359394) (xy 199.315289 51.271789) (xy 199.426789 51.160289) - (xy 199.514394 51.029179) (xy 199.574737 50.883497) (xy 199.6055 50.728842) (xy 199.6055 50.571158) - (xy 199.6055 50.571155) (xy 199.605499 50.571153) (xy 203.0845 50.571153) (xy 203.0845 50.728846) - (xy 203.115261 50.883489) (xy 203.115264 50.883501) (xy 203.175602 51.029172) (xy 203.175609 51.029185) - (xy 203.26321 51.160288) (xy 203.263213 51.160292) (xy 203.374707 51.271786) (xy 203.374711 51.271789) - (xy 203.505814 51.35939) (xy 203.505827 51.359397) (xy 203.650665 51.41939) (xy 203.651503 51.419737) - (xy 203.806153 51.450499) (xy 203.806156 51.4505) (xy 203.806158 51.4505) (xy 203.963844 51.4505) - (xy 203.963845 51.450499) (xy 204.118497 51.419737) (xy 204.264179 51.359394) (xy 204.395289 51.271789) - (xy 204.506789 51.160289) (xy 204.594394 51.029179) (xy 204.654737 50.883497) (xy 204.6855 50.728842) - (xy 204.6855 50.571158) (xy 204.6855 50.571155) (xy 204.685499 50.571153) (xy 205.6245 50.571153) - (xy 205.6245 50.728846) (xy 205.655261 50.883489) (xy 205.655264 50.883501) (xy 205.715602 51.029172) - (xy 205.715609 51.029185) (xy 205.80321 51.160288) (xy 205.803213 51.160292) (xy 205.914707 51.271786) - (xy 205.914711 51.271789) (xy 206.045814 51.35939) (xy 206.045827 51.359397) (xy 206.190665 51.41939) - (xy 206.191503 51.419737) (xy 206.346153 51.450499) (xy 206.346156 51.4505) (xy 206.346158 51.4505) - (xy 206.503844 51.4505) (xy 206.503845 51.450499) (xy 206.658497 51.419737) (xy 206.804179 51.359394) - (xy 206.935289 51.271789) (xy 207.046789 51.160289) (xy 207.134394 51.029179) (xy 207.194737 50.883497) - (xy 207.2255 50.728842) (xy 207.2255 50.571158) (xy 207.2255 50.571155) (xy 207.225499 50.571153) - (xy 207.220135 50.544185) (xy 207.194737 50.416503) (xy 207.194735 50.416498) (xy 207.134397 50.270827) - (xy 207.13439 50.270814) (xy 207.046789 50.139711) (xy 207.046786 50.139707) (xy 206.935292 50.028213) - (xy 206.935288 50.02821) (xy 206.804185 49.940609) (xy 206.804172 49.940602) (xy 206.658501 49.880264) - (xy 206.658489 49.880261) (xy 206.503845 49.8495) (xy 206.503842 49.8495) (xy 206.346158 49.8495) - (xy 206.346155 49.8495) (xy 206.19151 49.880261) (xy 206.191498 49.880264) (xy 206.045827 49.940602) - (xy 206.045814 49.940609) (xy 205.914711 50.02821) (xy 205.914707 50.028213) (xy 205.803213 50.139707) - (xy 205.80321 50.139711) (xy 205.715609 50.270814) (xy 205.715602 50.270827) (xy 205.655264 50.416498) - (xy 205.655261 50.41651) (xy 205.6245 50.571153) (xy 204.685499 50.571153) (xy 204.680135 50.544185) - (xy 204.654737 50.416503) (xy 204.654735 50.416498) (xy 204.594397 50.270827) (xy 204.59439 50.270814) - (xy 204.506789 50.139711) (xy 204.506786 50.139707) (xy 204.395292 50.028213) (xy 204.395288 50.02821) - (xy 204.264185 49.940609) (xy 204.264172 49.940602) (xy 204.118501 49.880264) (xy 204.118489 49.880261) - (xy 203.963845 49.8495) (xy 203.963842 49.8495) (xy 203.806158 49.8495) (xy 203.806155 49.8495) - (xy 203.65151 49.880261) (xy 203.651498 49.880264) (xy 203.505827 49.940602) (xy 203.505814 49.940609) - (xy 203.374711 50.02821) (xy 203.374707 50.028213) (xy 203.263213 50.139707) (xy 203.26321 50.139711) - (xy 203.175609 50.270814) (xy 203.175602 50.270827) (xy 203.115264 50.416498) (xy 203.115261 50.41651) - (xy 203.0845 50.571153) (xy 199.605499 50.571153) (xy 199.600135 50.544185) (xy 199.574737 50.416503) - (xy 199.574735 50.416498) (xy 199.514397 50.270827) (xy 199.51439 50.270814) (xy 199.426789 50.139711) - (xy 199.426786 50.139707) (xy 199.315292 50.028213) (xy 199.315288 50.02821) (xy 199.184185 49.940609) - (xy 199.184172 49.940602) (xy 199.038501 49.880264) (xy 199.038489 49.880261) (xy 198.883845 49.8495) - (xy 198.883842 49.8495) (xy 198.726158 49.8495) (xy 198.726155 49.8495) (xy 198.57151 49.880261) - (xy 198.571498 49.880264) (xy 198.425827 49.940602) (xy 198.425809 49.940612) (xy 198.411103 49.950438) - (xy 198.344425 49.971313) (xy 198.277046 49.952826) (xy 198.230358 49.900845) (xy 198.2206 49.871524) - (xy 198.212393 49.830264) (xy 198.194737 49.741503) (xy 198.158787 49.654711) (xy 198.134397 49.595827) - (xy 198.13439 49.595814) (xy 198.046789 49.464711) (xy 198.046786 49.464707) (xy 197.935292 49.353213) - (xy 197.935288 49.35321) (xy 197.804185 49.265609) (xy 197.804172 49.265602) (xy 197.658501 49.205264) - (xy 197.658489 49.205261) (xy 197.503845 49.1745) (xy 197.503842 49.1745) (xy 197.346158 49.1745) - (xy 197.346155 49.1745) (xy 197.19151 49.205261) (xy 197.191498 49.205264) (xy 197.045827 49.265602) - (xy 197.045814 49.265609) (xy 196.914711 49.35321) (xy 196.914707 49.353213) (xy 196.803213 49.464707) - (xy 196.80321 49.464711) (xy 196.715609 49.595814) (xy 196.715602 49.595827) (xy 196.655264 49.741498) - (xy 196.655261 49.74151) (xy 196.6245 49.896153) (xy 187.083133 49.896153) (xy 187.089156 49.865874) - (xy 187.089156 49.865873) (xy 187.100499 49.808846) (xy 187.1005 49.808844) (xy 187.1005 49.651155) - (xy 187.100499 49.651153) (xy 187.079028 49.543211) (xy 187.069737 49.496503) (xy 187.069735 49.496498) - (xy 187.009397 49.350827) (xy 187.00939 49.350814) (xy 186.921789 49.219711) (xy 186.921786 49.219707) - (xy 186.810292 49.108213) (xy 186.810284 49.108207) (xy 186.763388 49.076872) (xy 186.718582 49.02326) - (xy 186.709875 48.953935) (xy 186.740029 48.890908) (xy 186.799472 48.854188) (xy 186.832558 48.84977) - (xy 208.175784 48.89855) (xy 208.242778 48.918388) (xy 208.288412 48.971296) (xy 208.2995 49.02255) - (xy 208.2995 71.7755) (xy 208.279815 71.842539) (xy 208.227011 71.888294) (xy 208.1755 71.8995) - (xy 145.796878 71.8995) (xy 145.729839 71.879815) (xy 145.684084 71.827011) (xy 145.672878 71.775482) - (xy 145.673297 69.344071) (xy 169.609499 69.344071) (xy 169.634497 69.469738) (xy 169.634499 69.469744) - (xy 169.683533 69.588124) (xy 169.683538 69.588133) (xy 169.754723 69.694668) (xy 169.754726 69.694672) - (xy 169.845327 69.785273) (xy 169.845331 69.785276) (xy 169.951866 69.856461) (xy 169.951872 69.856464) - (xy 169.951873 69.856465) (xy 170.070256 69.905501) (xy 170.07026 69.905501) (xy 170.070261 69.905502) - (xy 170.195928 69.9305) (xy 170.195931 69.9305) (xy 170.324071 69.9305) (xy 170.408615 69.913682) - (xy 170.449744 69.905501) (xy 170.472312 69.896153) (xy 195.5195 69.896153) (xy 195.5195 70.053846) - (xy 195.550261 70.208489) (xy 195.550264 70.208501) (xy 195.610602 70.354172) (xy 195.610609 70.354185) - (xy 195.69821 70.485288) (xy 195.698213 70.485292) (xy 195.809707 70.596786) (xy 195.809711 70.596789) - (xy 195.940814 70.68439) (xy 195.940827 70.684397) (xy 196.086498 70.744735) (xy 196.086503 70.744737) - (xy 196.241153 70.775499) (xy 196.241156 70.7755) (xy 196.241158 70.7755) (xy 196.398844 70.7755) - (xy 196.398845 70.775499) (xy 196.553497 70.744737) (xy 196.699179 70.684394) (xy 196.830289 70.596789) - (xy 196.941789 70.485289) (xy 197.029394 70.354179) (xy 197.053449 70.296102) (xy 197.097289 70.241701) - (xy 197.163582 70.219635) (xy 197.231282 70.236913) (xy 197.271112 70.274666) (xy 197.278207 70.285284) + (xy 195.544555 48.874272) (xy 195.611548 48.894098) (xy 195.657191 48.947) (xy 195.666987 49.016179) + (xy 195.637827 49.079673) (xy 195.631969 49.085951) (xy 195.588214 49.129706) (xy 195.58821 49.129711) + (xy 195.500609 49.260814) (xy 195.500602 49.260827) (xy 195.440264 49.406498) (xy 195.440261 49.40651) + (xy 195.4095 49.561153) (xy 195.4095 49.718846) (xy 195.440261 49.873489) (xy 195.440264 49.873501) + (xy 195.500602 50.019172) (xy 195.500609 50.019185) (xy 195.58821 50.150288) (xy 195.588213 50.150292) + (xy 195.699707 50.261786) (xy 195.699711 50.261789) (xy 195.830814 50.34939) (xy 195.830827 50.349397) + (xy 195.961419 50.403489) (xy 195.976503 50.409737) (xy 196.131153 50.440499) (xy 196.131156 50.4405) + (xy 196.131158 50.4405) (xy 196.288844 50.4405) (xy 196.288845 50.440499) (xy 196.443497 50.409737) + (xy 196.579264 50.353501) (xy 196.589172 50.349397) (xy 196.589172 50.349396) (xy 196.589179 50.349394) + (xy 196.720289 50.261789) (xy 196.831789 50.150289) (xy 196.919394 50.019179) (xy 196.979737 49.873497) + (xy 197.0105 49.718842) (xy 197.0105 49.561158) (xy 197.0105 49.561155) (xy 197.010499 49.561153) + (xy 196.989503 49.455602) (xy 196.979737 49.406503) (xy 196.977152 49.400263) (xy 196.919397 49.260827) + (xy 196.91939 49.260814) (xy 196.831789 49.129711) (xy 196.831786 49.129707) (xy 196.79087 49.088791) + (xy 196.757385 49.027468) (xy 196.762369 48.957776) (xy 196.804241 48.901843) (xy 196.869705 48.877426) + (xy 196.8788 48.87711) (xy 208.475768 48.901779) (xy 208.542761 48.921605) (xy 208.588404 48.974507) + (xy 208.5995 49.025778) (xy 208.5995 72.0755) (xy 208.579815 72.142539) (xy 208.527011 72.188294) + (xy 208.4755 72.1995) (xy 145.729018 72.1995) (xy 145.661979 72.179815) (xy 145.616224 72.127011) + (xy 145.605019 72.075484) (xy 145.605622 68.551153) (xy 150.303739 68.551153) (xy 150.303739 68.708846) + (xy 150.3345 68.863489) (xy 150.334503 68.863501) (xy 150.394841 69.009172) (xy 150.394848 69.009185) + (xy 150.482449 69.140288) (xy 150.482452 69.140292) (xy 150.593946 69.251786) (xy 150.59395 69.251789) + (xy 150.725053 69.33939) (xy 150.725066 69.339397) (xy 150.870679 69.399711) (xy 150.870742 69.399737) + (xy 151.025392 69.430499) (xy 151.025395 69.4305) (xy 151.025397 69.4305) (xy 151.183083 69.4305) + (xy 151.183084 69.430499) (xy 151.337736 69.399737) (xy 151.36367 69.388995) (xy 169.549499 69.388995) + (xy 169.576418 69.524322) (xy 169.576421 69.524332) (xy 169.629221 69.651804) (xy 169.629228 69.651817) + (xy 169.705885 69.766541) (xy 169.705888 69.766545) (xy 169.803454 69.864111) (xy 169.803458 69.864114) + (xy 169.918182 69.940771) (xy 169.918195 69.940778) (xy 170.034233 69.988842) (xy 170.045672 69.99358) + (xy 170.045676 69.99358) (xy 170.045677 69.993581) (xy 170.181004 70.0205) (xy 170.181007 70.0205) + (xy 170.318995 70.0205) (xy 170.410041 70.002389) (xy 170.454328 69.99358) (xy 170.581811 69.940775) + (xy 170.696542 69.864114) (xy 170.729503 69.831153) (xy 194.306998 69.831153) (xy 194.306998 69.988846) + (xy 194.337759 70.143489) (xy 194.337762 70.143501) (xy 194.3981 70.289172) (xy 194.398107 70.289185) + (xy 194.485708 70.420288) (xy 194.485711 70.420292) (xy 194.597205 70.531786) (xy 194.597209 70.531789) + (xy 194.728312 70.61939) (xy 194.728325 70.619397) (xy 194.873996 70.679735) (xy 194.874001 70.679737) + (xy 195.028651 70.710499) (xy 195.028654 70.7105) (xy 195.028656 70.7105) (xy 195.186342 70.7105) + (xy 195.186343 70.710499) (xy 195.340995 70.679737) (xy 195.486677 70.619394) (xy 195.617787 70.531789) + (xy 195.729287 70.420289) (xy 195.816892 70.289179) (xy 195.877235 70.143497) (xy 195.907998 69.988842) + (xy 195.907998 69.831158) (xy 195.907998 69.831155) (xy 195.884746 69.714263) (xy 195.884745 69.714262) + (xy 195.881143 69.696153) (xy 197.0995 69.696153) (xy 197.0995 69.853846) (xy 197.130261 70.008489) + (xy 197.130264 70.008501) (xy 197.190602 70.154172) (xy 197.190609 70.154185) (xy 197.27821 70.285288) (xy 197.278213 70.285292) (xy 197.389707 70.396786) (xy 197.389711 70.396789) (xy 197.520814 70.48439) (xy 197.520827 70.484397) (xy 197.666498 70.544735) (xy 197.666503 70.544737) (xy 197.821153 70.575499) (xy 197.821156 70.5755) (xy 197.821158 70.5755) (xy 197.978844 70.5755) (xy 197.978845 70.575499) (xy 198.133497 70.544737) (xy 198.279179 70.484394) (xy 198.410289 70.396789) (xy 198.521789 70.285289) (xy 198.609394 70.154179) (xy 198.669737 70.008497) (xy 198.7005 69.853842) (xy 198.7005 69.696158) - (xy 198.7005 69.696155) (xy 198.700499 69.696153) (xy 198.680543 69.595827) (xy 198.669737 69.541503) - (xy 198.669735 69.541498) (xy 198.609397 69.395827) (xy 198.60939 69.395814) (xy 198.521789 69.264711) + (xy 198.7005 69.696155) (xy 198.700499 69.696153) (xy 198.669738 69.54151) (xy 198.669737 69.541503) + (xy 198.665315 69.530827) (xy 198.609397 69.395827) (xy 198.60939 69.395814) (xy 198.521789 69.264711) (xy 198.521786 69.264707) (xy 198.410292 69.153213) (xy 198.410288 69.15321) (xy 198.279185 69.065609) (xy 198.279172 69.065602) (xy 198.133501 69.005264) (xy 198.133489 69.005261) (xy 197.978845 68.9745) (xy 197.978842 68.9745) (xy 197.821158 68.9745) (xy 197.821155 68.9745) (xy 197.66651 69.005261) (xy 197.666498 69.005264) (xy 197.520827 69.065602) (xy 197.520814 69.065609) (xy 197.389711 69.15321) - (xy 197.38971 69.15321) (xy 197.381883 69.161038) (xy 197.320558 69.19452) (xy 197.250867 69.189533) - (xy 197.194935 69.147659) (xy 197.170521 69.082194) (xy 197.172587 69.049165) (xy 197.196919 68.926845) - (xy 197.2005 68.908844) (xy 197.2005 68.751155) (xy 197.200499 68.751153) (xy 197.194658 68.721789) - (xy 197.169737 68.596503) (xy 197.166906 68.589668) (xy 197.109397 68.450827) (xy 197.10939 68.450814) - (xy 197.021789 68.319711) (xy 197.021786 68.319707) (xy 196.910292 68.208213) (xy 196.910288 68.20821) - (xy 196.779185 68.120609) (xy 196.779172 68.120602) (xy 196.633501 68.060264) (xy 196.633489 68.060261) - (xy 196.478845 68.0295) (xy 196.478842 68.0295) (xy 196.321158 68.0295) (xy 196.321155 68.0295) - (xy 196.16651 68.060261) (xy 196.166498 68.060264) (xy 196.020827 68.120602) (xy 196.020814 68.120609) - (xy 195.889711 68.20821) (xy 195.889707 68.208213) (xy 195.778213 68.319707) (xy 195.77821 68.319711) - (xy 195.690609 68.450814) (xy 195.690602 68.450827) (xy 195.630264 68.596498) (xy 195.630261 68.59651) - (xy 195.5995 68.751153) (xy 195.5995 68.908846) (xy 195.630261 69.063489) (xy 195.630264 69.063501) - (xy 195.690602 69.209172) (xy 195.690609 69.209185) (xy 195.739466 69.282304) (xy 195.760344 69.348982) - (xy 195.741859 69.416362) (xy 195.724045 69.438876) (xy 195.698213 69.464707) (xy 195.69821 69.464711) - (xy 195.610609 69.595814) (xy 195.610602 69.595827) (xy 195.550264 69.741498) (xy 195.550261 69.74151) - (xy 195.5195 69.896153) (xy 170.472312 69.896153) (xy 170.568127 69.856465) (xy 170.672144 69.786963) - (xy 170.672145 69.786963) (xy 170.673675 69.785939) (xy 170.674669 69.785276) (xy 170.765276 69.694669) - (xy 170.836465 69.588127) (xy 170.885501 69.469744) (xy 170.89612 69.416362) (xy 170.9105 69.344071) - (xy 170.9105 69.215928) (xy 170.885502 69.090261) (xy 170.885501 69.09026) (xy 170.885501 69.090256) - (xy 170.847574 68.998692) (xy 170.836466 68.971875) (xy 170.836461 68.971866) (xy 170.765276 68.865331) - (xy 170.765273 68.865327) (xy 170.674672 68.774726) (xy 170.674668 68.774723) (xy 170.627443 68.743168) - (xy 170.568133 68.703538) (xy 170.568124 68.703533) (xy 170.449744 68.654499) (xy 170.449738 68.654497) - (xy 170.40779 68.646153) (xy 174.3745 68.646153) (xy 174.3745 68.803846) (xy 174.405261 68.958489) + (xy 197.389707 69.153213) (xy 197.278213 69.264707) (xy 197.27821 69.264711) (xy 197.190609 69.395814) + (xy 197.190602 69.395827) (xy 197.130264 69.541498) (xy 197.130261 69.54151) (xy 197.0995 69.696153) + (xy 195.881143 69.696153) (xy 195.877235 69.676503) (xy 195.86701 69.651817) (xy 195.816895 69.530827) + (xy 195.816888 69.530814) (xy 195.729287 69.399711) (xy 195.729284 69.399707) (xy 195.61779 69.288213) + (xy 195.617786 69.28821) (xy 195.486683 69.200609) (xy 195.48667 69.200602) (xy 195.340999 69.140264) + (xy 195.340987 69.140261) (xy 195.186343 69.1095) (xy 195.18634 69.1095) (xy 195.028656 69.1095) + (xy 195.028653 69.1095) (xy 194.874008 69.140261) (xy 194.873996 69.140264) (xy 194.728325 69.200602) + (xy 194.728312 69.200609) (xy 194.597209 69.28821) (xy 194.597205 69.288213) (xy 194.485711 69.399707) + (xy 194.485708 69.399711) (xy 194.398107 69.530814) (xy 194.3981 69.530827) (xy 194.337762 69.676498) + (xy 194.337759 69.67651) (xy 194.306998 69.831153) (xy 170.729503 69.831153) (xy 170.794114 69.766542) + (xy 170.870775 69.651811) (xy 170.92358 69.524328) (xy 170.948363 69.399737) (xy 170.9505 69.388995) + (xy 170.9505 69.251004) (xy 170.923581 69.115677) (xy 170.92358 69.115676) (xy 170.92358 69.115672) + (xy 170.923578 69.115667) (xy 170.870778 68.988195) (xy 170.870771 68.988182) (xy 170.794114 68.873458) + (xy 170.794111 68.873454) (xy 170.696545 68.775888) (xy 170.696541 68.775885) (xy 170.647577 68.743168) + (xy 170.581817 68.699228) (xy 170.581804 68.699221) (xy 170.454332 68.646421) (xy 170.454322 68.646418) + (xy 170.45299 68.646153) (xy 174.3745 68.646153) (xy 174.3745 68.803846) (xy 174.405261 68.958489) (xy 174.405264 68.958501) (xy 174.465602 69.104172) (xy 174.465609 69.104185) (xy 174.55321 69.235288) (xy 174.553213 69.235292) (xy 174.664707 69.346786) (xy 174.664711 69.346789) (xy 174.795814 69.43439) - (xy 174.795827 69.434397) (xy 174.941498 69.494735) (xy 174.941503 69.494737) (xy 175.096153 69.525499) - (xy 175.096156 69.5255) (xy 175.096158 69.5255) (xy 175.253844 69.5255) (xy 175.253845 69.525499) - (xy 175.408497 69.494737) (xy 175.534609 69.4425) (xy 175.554172 69.434397) (xy 175.554172 69.434396) - (xy 175.554179 69.434394) (xy 175.685289 69.346789) (xy 175.796789 69.235289) (xy 175.884394 69.104179) - (xy 175.890162 69.090255) (xy 175.916645 69.026317) (xy 175.944737 68.958497) (xy 175.9755 68.803842) - (xy 175.9755 68.646158) (xy 175.9755 68.646155) (xy 175.975499 68.646153) (xy 175.964264 68.589672) - (xy 175.944737 68.491503) (xy 175.94137 68.483375) (xy 175.884397 68.345827) (xy 175.88439 68.345814) + (xy 174.795827 69.434397) (xy 174.941498 69.494735) (xy 174.941503 69.494737) (xy 175.090236 69.524322) + (xy 175.096153 69.525499) (xy 175.096156 69.5255) (xy 175.096158 69.5255) (xy 175.253844 69.5255) + (xy 175.253845 69.525499) (xy 175.408497 69.494737) (xy 175.554179 69.434394) (xy 175.685289 69.346789) + (xy 175.796789 69.235289) (xy 175.884394 69.104179) (xy 175.944737 68.958497) (xy 175.9755 68.803842) + (xy 175.9755 68.646158) (xy 175.9755 68.646155) (xy 175.975499 68.646153) (xy 175.970604 68.621545) + (xy 175.944737 68.491503) (xy 175.939864 68.479738) (xy 175.884397 68.345827) (xy 175.88439 68.345814) (xy 175.796789 68.214711) (xy 175.796786 68.214707) (xy 175.685292 68.103213) (xy 175.685288 68.10321) - (xy 175.554185 68.015609) (xy 175.554172 68.015602) (xy 175.408501 67.955264) (xy 175.408489 67.955261) - (xy 175.253845 67.9245) (xy 175.253842 67.9245) (xy 175.096158 67.9245) (xy 175.096155 67.9245) - (xy 174.94151 67.955261) (xy 174.941498 67.955264) (xy 174.795827 68.015602) (xy 174.795814 68.015609) - (xy 174.664711 68.10321) (xy 174.664707 68.103213) (xy 174.553213 68.214707) (xy 174.55321 68.214711) - (xy 174.465609 68.345814) (xy 174.465602 68.345827) (xy 174.405264 68.491498) (xy 174.405261 68.49151) - (xy 174.3745 68.646153) (xy 170.40779 68.646153) (xy 170.324071 68.6295) (xy 170.324069 68.6295) - (xy 170.195931 68.6295) (xy 170.195929 68.6295) (xy 170.070261 68.654497) (xy 170.070255 68.654499) - (xy 169.951875 68.703533) (xy 169.951866 68.703538) (xy 169.845331 68.774723) (xy 169.845327 68.774726) - (xy 169.754726 68.865327) (xy 169.754723 68.865331) (xy 169.683538 68.971866) (xy 169.683533 68.971875) - (xy 169.634499 69.090255) (xy 169.634497 69.090261) (xy 169.6095 69.215928) (xy 169.6095 69.215931) - (xy 169.6095 69.344069) (xy 169.6095 69.344071) (xy 169.609499 69.344071) (xy 145.673297 69.344071) - (xy 145.673473 68.325684) (xy 146.584791 68.325684) (xy 146.584791 68.483377) (xy 146.615552 68.63802) - (xy 146.615555 68.638032) (xy 146.675893 68.783703) (xy 146.6759 68.783716) (xy 146.763501 68.914819) - (xy 146.763504 68.914823) (xy 146.874998 69.026317) (xy 146.875002 69.02632) (xy 147.006105 69.113921) - (xy 147.006118 69.113928) (xy 147.151789 69.174266) (xy 147.151794 69.174268) (xy 147.306444 69.20503) - (xy 147.306447 69.205031) (xy 147.306449 69.205031) (xy 147.464135 69.205031) (xy 147.464136 69.20503) - (xy 147.618788 69.174268) (xy 147.76447 69.113925) (xy 147.89558 69.02632) (xy 148.00708 68.91482) - (xy 148.094685 68.78371) (xy 148.155028 68.638028) (xy 148.185791 68.483373) (xy 148.185791 68.43307) - (xy 148.205476 68.366031) (xy 148.25828 68.320276) (xy 148.327438 68.310332) (xy 148.390994 68.339357) - (xy 148.424352 68.385618) (xy 148.463102 68.479172) (xy 148.463109 68.479185) (xy 148.55071 68.610288) - (xy 148.550713 68.610292) (xy 148.662207 68.721786) (xy 148.662211 68.721789) (xy 148.793314 68.80939) - (xy 148.793327 68.809397) (xy 148.938998 68.869735) (xy 148.939003 68.869737) (xy 149.093653 68.900499) - (xy 149.093656 68.9005) (xy 149.093658 68.9005) (xy 149.251344 68.9005) (xy 149.251345 68.900499) - (xy 149.405997 68.869737) (xy 149.551679 68.809394) (xy 149.682789 68.721789) (xy 149.780507 68.624071) - (xy 159.699499 68.624071) (xy 159.724497 68.749738) (xy 159.724499 68.749744) (xy 159.773533 68.868124) - (xy 159.773538 68.868133) (xy 159.844723 68.974668) (xy 159.844726 68.974672) (xy 159.935327 69.065273) - (xy 159.935331 69.065276) (xy 160.041866 69.136461) (xy 160.041872 69.136464) (xy 160.041873 69.136465) - (xy 160.160256 69.185501) (xy 160.16026 69.185501) (xy 160.160261 69.185502) (xy 160.285928 69.2105) - (xy 160.285931 69.2105) (xy 160.414071 69.2105) (xy 160.519474 69.189533) (xy 160.539744 69.185501) - (xy 160.658127 69.136465) (xy 160.658133 69.136461) (xy 160.702619 69.106737) (xy 160.739349 69.082194) - (xy 160.764669 69.065276) (xy 160.855276 68.974669) (xy 160.895266 68.914819) (xy 160.92985 68.863062) - (xy 160.931535 68.864188) (xy 160.973967 68.82096) (xy 161.042099 68.805473) (xy 161.103295 68.826132) - (xy 161.163713 68.866502) (xy 161.163715 68.866503) (xy 161.163719 68.866505) (xy 161.280371 68.914823) - (xy 161.309395 68.926845) (xy 161.464045 68.957607) (xy 161.464048 68.957608) (xy 161.46405 68.957608) - (xy 161.621736 68.957608) (xy 161.621737 68.957607) (xy 161.776389 68.926845) (xy 161.914266 68.869735) - (xy 161.922064 68.866505) (xy 161.922064 68.866504) (xy 161.922071 68.866502) (xy 162.053181 68.778897) - (xy 162.164681 68.667397) (xy 162.252286 68.536287) (xy 162.312629 68.390605) (xy 162.343392 68.23595) - (xy 162.343392 68.078266) (xy 162.343392 68.078263) (xy 162.343391 68.078261) (xy 162.324549 67.983538) - (xy 162.312629 67.923611) (xy 162.300464 67.894242) (xy 162.252289 67.777935) (xy 162.252282 67.777922) - (xy 162.164681 67.646819) (xy 162.164678 67.646815) (xy 162.053184 67.535321) (xy 162.05318 67.535318) - (xy 161.922077 67.447717) (xy 161.922064 67.44771) (xy 161.776393 67.387372) (xy 161.776381 67.387369) - (xy 161.621737 67.356608) (xy 161.621734 67.356608) (xy 161.46405 67.356608) (xy 161.464047 67.356608) - (xy 161.309402 67.387369) (xy 161.30939 67.387372) (xy 161.163719 67.44771) (xy 161.163706 67.447717) - (xy 161.032603 67.535318) (xy 161.032599 67.535321) (xy 160.921105 67.646815) (xy 160.921102 67.646819) - (xy 160.833501 67.777922) (xy 160.833496 67.777932) (xy 160.782575 67.900866) (xy 160.738734 67.955269) - (xy 160.672439 67.977334) (xy 160.620562 67.967974) (xy 160.539748 67.9345) (xy 160.539738 67.934497) - (xy 160.414071 67.9095) (xy 160.414069 67.9095) (xy 160.285931 67.9095) (xy 160.285929 67.9095) - (xy 160.160261 67.934497) (xy 160.160255 67.934499) (xy 160.041875 67.983533) (xy 160.041866 67.983538) - (xy 159.935331 68.054723) (xy 159.935327 68.054726) (xy 159.844726 68.145327) (xy 159.844723 68.145331) - (xy 159.773538 68.251866) (xy 159.773533 68.251875) (xy 159.724499 68.370255) (xy 159.724497 68.370261) - (xy 159.6995 68.495928) (xy 159.6995 68.495931) (xy 159.6995 68.624069) (xy 159.6995 68.624071) - (xy 159.699499 68.624071) (xy 149.780507 68.624071) (xy 149.794289 68.610289) (xy 149.881894 68.479179) - (xy 149.906657 68.419397) (xy 149.937135 68.345814) (xy 149.942237 68.333497) (xy 149.973 68.178842) - (xy 149.973 68.021158) (xy 149.973 68.021155) (xy 149.972999 68.021153) (xy 149.971895 68.015602) - (xy 149.942237 67.866503) (xy 149.940001 67.861104) (xy 149.881897 67.720827) (xy 149.88189 67.720814) - (xy 149.794289 67.589711) (xy 149.794286 67.589707) (xy 149.682792 67.478213) (xy 149.682788 67.47821) - (xy 149.551685 67.390609) (xy 149.551672 67.390602) (xy 149.406001 67.330264) (xy 149.405991 67.330261) - (xy 149.321029 67.313361) (xy 149.259118 67.280976) (xy 149.224544 67.22026) (xy 149.228285 67.15049) - (xy 149.269151 67.093819) (xy 149.297767 67.077183) (xy 149.350666 67.055273) (xy 149.419173 67.026897) - (xy 149.419176 67.026895) (xy 149.419179 67.026894) (xy 149.550289 66.939289) (xy 149.661789 66.827789) - (xy 149.749394 66.696679) (xy 149.809737 66.550997) (xy 149.8405 66.396342) (xy 149.8405 66.238658) - (xy 149.8405 66.238655) (xy 149.840499 66.238653) (xy 149.826019 66.165858) (xy 149.809737 66.084003) - (xy 149.799639 66.059624) (xy 149.749397 65.938327) (xy 149.749395 65.938323) (xy 149.749394 65.938321) - (xy 149.669592 65.81889) (xy 149.663619 65.799814) (xy 149.653113 65.782806) (xy 149.653392 65.767152) - (xy 149.648715 65.752214) (xy 149.654003 65.732936) (xy 149.654213 65.721153) (xy 154.978739 65.721153) - (xy 154.978739 65.878846) (xy 155.0095 66.033489) (xy 155.009503 66.033501) (xy 155.069841 66.179172) - (xy 155.069848 66.179185) (xy 155.157449 66.310288) (xy 155.157452 66.310292) (xy 155.268946 66.421786) - (xy 155.26895 66.421789) (xy 155.400053 66.50939) (xy 155.400066 66.509397) (xy 155.545737 66.569735) - (xy 155.545742 66.569737) (xy 155.700392 66.600499) (xy 155.700395 66.6005) (xy 155.700397 66.6005) - (xy 155.858083 66.6005) (xy 155.858084 66.600499) (xy 156.012736 66.569737) (xy 156.158418 66.509394) - (xy 156.289528 66.421789) (xy 156.401028 66.310289) (xy 156.488633 66.179179) (xy 156.548976 66.033497) - (xy 156.579739 65.878842) (xy 156.579739 65.721158) (xy 156.579739 65.721155) (xy 156.579738 65.721153) - (xy 156.571773 65.681109) (xy 156.548976 65.566503) (xy 156.54639 65.56026) (xy 156.488636 65.420827) - (xy 156.488629 65.420814) (xy 156.401028 65.289711) (xy 156.401025 65.289707) (xy 156.289531 65.178213) - (xy 156.289527 65.17821) (xy 156.193537 65.114071) (xy 158.549499 65.114071) (xy 158.574498 65.239742) - (xy 158.574498 65.239744) (xy 158.579803 65.252551) (xy 158.587269 65.322021) (xy 158.579803 65.347449) - (xy 158.574498 65.360255) (xy 158.574498 65.360257) (xy 158.5495 65.485928) (xy 158.5495 65.485931) - (xy 158.5495 65.614069) (xy 158.5495 65.614071) (xy 158.549499 65.614071) (xy 158.574497 65.739738) - (xy 158.574499 65.739744) (xy 158.623533 65.858124) (xy 158.623538 65.858133) (xy 158.694723 65.964668) - (xy 158.694726 65.964672) (xy 158.719106 65.989052) (xy 158.752591 66.050375) (xy 158.747607 66.120067) - (xy 158.734528 66.145623) (xy 158.663537 66.251868) (xy 158.663533 66.251875) (xy 158.614499 66.370255) - (xy 158.614497 66.370261) (xy 158.5895 66.495928) (xy 158.5895 66.495931) (xy 158.5895 66.624069) - (xy 158.5895 66.624071) (xy 158.589499 66.624071) (xy 158.614497 66.749738) (xy 158.614499 66.749744) - (xy 158.663533 66.868124) (xy 158.663538 66.868133) (xy 158.734723 66.974668) (xy 158.734726 66.974672) - (xy 158.825327 67.065273) (xy 158.825331 67.065276) (xy 158.931866 67.136461) (xy 158.931875 67.136466) - (xy 158.958692 67.147574) (xy 159.050256 67.185501) (xy 159.05026 67.185501) (xy 159.050261 67.185502) - (xy 159.175928 67.2105) (xy 159.175931 67.2105) (xy 159.304071 67.2105) (xy 159.388615 67.193682) - (xy 159.429744 67.185501) (xy 159.548127 67.136465) (xy 159.654669 67.065276) (xy 159.693055 67.02689) - (xy 159.742319 66.977627) (xy 159.803642 66.944142) (xy 159.873334 66.949126) (xy 159.917681 66.977627) - (xy 159.995327 67.055273) (xy 159.995331 67.055276) (xy 160.101866 67.126461) (xy 160.101875 67.126466) - (xy 160.126005 67.136461) (xy 160.220256 67.175501) (xy 160.22026 67.175501) (xy 160.220261 67.175502) - (xy 160.345928 67.2005) (xy 160.345931 67.2005) (xy 160.474071 67.2005) (xy 160.558615 67.183682) - (xy 160.599744 67.175501) (xy 160.718127 67.126465) (xy 160.824669 67.055276) (xy 160.915276 66.964669) - (xy 160.919099 66.958948) (xy 165.87435 66.958948) (xy 165.87435 67.116641) (xy 165.905111 67.271284) - (xy 165.905114 67.271296) (xy 165.965452 67.416967) (xy 165.965459 67.41698) (xy 166.05306 67.548083) - (xy 166.053063 67.548087) (xy 166.164557 67.659581) (xy 166.164561 67.659584) (xy 166.295664 67.747185) - (xy 166.295677 67.747192) (xy 166.425619 67.801015) (xy 166.441353 67.807532) (xy 166.59452 67.837999) - (xy 166.596003 67.838294) (xy 166.596006 67.838295) (xy 166.596008 67.838295) (xy 166.753694 67.838295) - (xy 166.753695 67.838294) (xy 166.908347 67.807532) (xy 166.981554 67.777208) (xy 167.051021 67.76974) - (xy 167.113501 67.801015) (xy 167.149153 67.861104) (xy 167.14666 67.930929) (xy 167.143567 67.939221) - (xy 167.124499 67.985256) (xy 167.124497 67.985261) (xy 167.0995 68.110928) (xy 167.0995 68.110931) - (xy 167.0995 68.239069) (xy 167.0995 68.239071) (xy 167.099499 68.239071) (xy 167.124497 68.364738) - (xy 167.124499 68.364744) (xy 167.173533 68.483124) (xy 167.173538 68.483133) (xy 167.244723 68.589668) - (xy 167.244726 68.589672) (xy 167.335327 68.680273) (xy 167.335331 68.680276) (xy 167.441866 68.751461) - (xy 167.441872 68.751464) (xy 167.441873 68.751465) (xy 167.560256 68.800501) (xy 167.56026 68.800501) - (xy 167.560261 68.800502) (xy 167.685928 68.8255) (xy 167.685931 68.8255) (xy 167.814071 68.8255) - (xy 167.898615 68.808682) (xy 167.939744 68.800501) (xy 168.058127 68.751465) (xy 168.164669 68.680276) - (xy 168.255276 68.589669) (xy 168.326465 68.483127) (xy 168.375501 68.364744) (xy 168.397953 68.251873) - (xy 168.4005 68.239071) (xy 168.4005 68.110928) (xy 168.375502 67.985261) (xy 168.375501 67.98526) - (xy 168.375501 67.985256) (xy 168.326465 67.866873) (xy 168.326464 67.866872) (xy 168.326461 67.866866) - (xy 168.255276 67.760331) (xy 168.255273 67.760327) (xy 168.164672 67.669726) (xy 168.164668 67.669723) - (xy 168.058133 67.598538) (xy 168.058124 67.598533) (xy 167.939744 67.549499) (xy 167.939738 67.549497) - (xy 167.814071 67.5245) (xy 167.814069 67.5245) (xy 167.685931 67.5245) (xy 167.685929 67.5245) - (xy 167.560261 67.549497) (xy 167.560245 67.549502) (xy 167.55809 67.550395) (xy 167.556872 67.550525) - (xy 167.554429 67.551267) (xy 167.554288 67.550803) (xy 167.48862 67.557856) (xy 167.426144 67.526575) - (xy 167.390498 67.466482) (xy 167.393 67.396657) (xy 167.396083 67.38839) (xy 167.444587 67.271292) - (xy 167.47535 67.116637) (xy 167.47535 66.971153) (xy 171.9245 66.971153) (xy 171.9245 67.128846) - (xy 171.955261 67.283489) (xy 171.955264 67.283501) (xy 172.015602 67.429172) (xy 172.015609 67.429185) - (xy 172.10321 67.560288) (xy 172.103213 67.560292) (xy 172.214707 67.671786) (xy 172.214711 67.671789) - (xy 172.345814 67.75939) (xy 172.345827 67.759397) (xy 172.479427 67.814735) (xy 172.491503 67.819737) + (xy 175.554185 68.015609) (xy 175.554172 68.015602) (xy 175.408501 67.955264) (xy 175.408491 67.955261) + (xy 175.297267 67.933137) (xy 175.235356 67.900752) (xy 175.200782 67.840036) (xy 175.204523 67.770266) + (xy 175.245389 67.713595) (xy 175.297268 67.689903) (xy 175.312338 67.686905) (xy 175.379328 67.67358) + (xy 175.506811 67.620775) (xy 175.621542 67.544114) (xy 175.719114 67.446542) (xy 175.795775 67.331811) + (xy 175.84858 67.204328) (xy 175.86353 67.129172) (xy 175.8755 67.068995) (xy 175.8755 66.931004) + (xy 175.848581 66.795677) (xy 175.84858 66.795676) (xy 175.84858 66.795672) (xy 175.839607 66.77401) + (xy 175.795778 66.668195) (xy 175.795771 66.668182) (xy 175.719114 66.553458) (xy 175.719111 66.553454) + (xy 175.621545 66.455888) (xy 175.621541 66.455885) (xy 175.506817 66.379228) (xy 175.506804 66.379221) + (xy 175.379332 66.326421) (xy 175.379322 66.326418) (xy 175.243995 66.2995) (xy 175.243993 66.2995) + (xy 175.106007 66.2995) (xy 175.106005 66.2995) (xy 174.970677 66.326418) (xy 174.970667 66.326421) + (xy 174.843195 66.379221) (xy 174.843182 66.379228) (xy 174.728458 66.455885) (xy 174.728454 66.455888) + (xy 174.630888 66.553454) (xy 174.630885 66.553458) (xy 174.554228 66.668182) (xy 174.554221 66.668195) + (xy 174.501421 66.795667) (xy 174.501418 66.795677) (xy 174.4745 66.931004) (xy 174.4745 66.931007) + (xy 174.4745 67.068993) (xy 174.4745 67.068995) (xy 174.474499 67.068995) (xy 174.501418 67.204322) + (xy 174.501421 67.204332) (xy 174.554221 67.331804) (xy 174.554228 67.331817) (xy 174.630885 67.446541) + (xy 174.630888 67.446545) (xy 174.728454 67.544111) (xy 174.728458 67.544114) (xy 174.843182 67.620771) + (xy 174.843195 67.620778) (xy 174.953603 67.66651) (xy 174.970672 67.67358) (xy 175.015128 67.682422) + (xy 175.052731 67.689903) (xy 175.114642 67.722288) (xy 175.149216 67.783003) (xy 175.145477 67.852773) + (xy 175.10461 67.909445) (xy 175.052732 67.933137) (xy 174.941508 67.955261) (xy 174.941498 67.955264) + (xy 174.795827 68.015602) (xy 174.795814 68.015609) (xy 174.664711 68.10321) (xy 174.664707 68.103213) + (xy 174.553213 68.214707) (xy 174.55321 68.214711) (xy 174.465609 68.345814) (xy 174.465602 68.345827) + (xy 174.405264 68.491498) (xy 174.405261 68.49151) (xy 174.3745 68.646153) (xy 170.45299 68.646153) + (xy 170.318995 68.6195) (xy 170.318993 68.6195) (xy 170.181007 68.6195) (xy 170.181005 68.6195) + (xy 170.045677 68.646418) (xy 170.045667 68.646421) (xy 169.918195 68.699221) (xy 169.918182 68.699228) + (xy 169.803458 68.775885) (xy 169.803454 68.775888) (xy 169.705888 68.873454) (xy 169.705885 68.873458) + (xy 169.629228 68.988182) (xy 169.629221 68.988195) (xy 169.576421 69.115667) (xy 169.576418 69.115677) + (xy 169.5495 69.251004) (xy 169.5495 69.251007) (xy 169.5495 69.388993) (xy 169.5495 69.388995) + (xy 169.549499 69.388995) (xy 151.36367 69.388995) (xy 151.483418 69.339394) (xy 151.614528 69.251789) + (xy 151.726028 69.140289) (xy 151.813633 69.009179) (xy 151.814725 69.006544) (xy 151.847736 68.926846) + (xy 151.873976 68.863497) (xy 151.904739 68.708842) (xy 151.904739 68.551158) (xy 151.904739 68.551155) + (xy 151.904738 68.551153) (xy 151.898897 68.521789) (xy 151.873976 68.396503) (xy 151.87153 68.390597) + (xy 151.813636 68.250827) (xy 151.813629 68.250814) (xy 151.726028 68.119711) (xy 151.726025 68.119707) + (xy 151.614531 68.008213) (xy 151.614527 68.00821) (xy 151.483424 67.920609) (xy 151.483411 67.920602) + (xy 151.33774 67.860264) (xy 151.337728 67.860261) (xy 151.183084 67.8295) (xy 151.183081 67.8295) + (xy 151.025397 67.8295) (xy 151.025394 67.8295) (xy 150.870749 67.860261) (xy 150.870737 67.860264) + (xy 150.725066 67.920602) (xy 150.725053 67.920609) (xy 150.59395 68.00821) (xy 150.593946 68.008213) + (xy 150.482452 68.119707) (xy 150.482449 68.119711) (xy 150.394848 68.250814) (xy 150.394841 68.250827) + (xy 150.334503 68.396498) (xy 150.3345 68.39651) (xy 150.303739 68.551153) (xy 145.605622 68.551153) + (xy 145.605862 67.151153) (xy 147.9995 67.151153) (xy 147.9995 67.308846) (xy 148.030261 67.463489) + (xy 148.030264 67.463501) (xy 148.090602 67.609172) (xy 148.090609 67.609185) (xy 148.17821 67.740288) + (xy 148.178213 67.740292) (xy 148.289707 67.851786) (xy 148.289711 67.851789) (xy 148.420814 67.93939) + (xy 148.420827 67.939397) (xy 148.516062 67.978844) (xy 148.566503 67.999737) (xy 148.721153 68.030499) + (xy 148.721156 68.0305) (xy 148.721158 68.0305) (xy 148.878844 68.0305) (xy 148.878845 68.030499) + (xy 149.033497 67.999737) (xy 149.169264 67.943501) (xy 149.179172 67.939397) (xy 149.179172 67.939396) + (xy 149.179179 67.939394) (xy 149.310289 67.851789) (xy 149.421789 67.740289) (xy 149.509394 67.609179) + (xy 149.569737 67.463497) (xy 149.6005 67.308842) (xy 149.6005 67.151158) (xy 149.6005 67.151155) + (xy 149.600499 67.151153) (xy 149.592774 67.112319) (xy 149.569737 66.996503) (xy 149.564451 66.983741) + (xy 149.509397 66.850827) (xy 149.50939 66.850814) (xy 149.421789 66.719711) (xy 149.421786 66.719707) + (xy 149.310292 66.608213) (xy 149.310288 66.60821) (xy 149.179185 66.520609) (xy 149.179172 66.520602) + (xy 149.033501 66.460264) (xy 149.033489 66.460261) (xy 148.878845 66.4295) (xy 148.878842 66.4295) + (xy 148.721158 66.4295) (xy 148.721155 66.4295) (xy 148.56651 66.460261) (xy 148.566498 66.460264) + (xy 148.420827 66.520602) (xy 148.420814 66.520609) (xy 148.289711 66.60821) (xy 148.289707 66.608213) + (xy 148.178213 66.719707) (xy 148.17821 66.719711) (xy 148.090609 66.850814) (xy 148.090602 66.850827) + (xy 148.030264 66.996498) (xy 148.030261 66.99651) (xy 147.9995 67.151153) (xy 145.605862 67.151153) + (xy 145.606214 65.091153) (xy 149.3295 65.091153) (xy 149.3295 65.248846) (xy 149.360261 65.403489) + (xy 149.360264 65.403501) (xy 149.420602 65.549172) (xy 149.420609 65.549185) (xy 149.50821 65.680288) + (xy 149.508213 65.680292) (xy 149.619707 65.791786) (xy 149.619711 65.791789) (xy 149.750814 65.87939) + (xy 149.750827 65.879397) (xy 149.875786 65.931156) (xy 149.896503 65.939737) (xy 150.051153 65.970499) + (xy 150.051156 65.9705) (xy 150.051158 65.9705) (xy 150.208844 65.9705) (xy 150.208845 65.970499) + (xy 150.363497 65.939737) (xy 150.509179 65.879394) (xy 150.640289 65.791789) (xy 150.751789 65.680289) + (xy 150.792746 65.618993) (xy 151.641238 65.618993) (xy 151.668157 65.75432) (xy 151.66816 65.75433) + (xy 151.72096 65.881802) (xy 151.720967 65.881815) (xy 151.797624 65.996539) (xy 151.797627 65.996543) + (xy 151.895193 66.094109) (xy 151.895197 66.094112) (xy 152.009921 66.170769) (xy 152.009934 66.170776) + (xy 152.124415 66.218195) (xy 152.137411 66.223578) (xy 152.137415 66.223578) (xy 152.137416 66.223579) + (xy 152.272743 66.250498) (xy 152.272746 66.250498) (xy 152.410734 66.250498) (xy 152.50178 66.232387) + (xy 152.546067 66.223578) (xy 152.67355 66.170773) (xy 152.718673 66.140622) (xy 152.785348 66.119744) + (xy 152.852729 66.138227) (xy 152.89942 66.190205) (xy 152.910598 66.259175) (xy 152.909181 66.267915) + (xy 152.8787 66.421153) (xy 152.8787 66.578846) (xy 152.909461 66.733489) (xy 152.909464 66.733501) + (xy 152.969802 66.879172) (xy 152.969809 66.879185) (xy 153.05741 67.010288) (xy 153.057413 67.010292) + (xy 153.15944 67.112319) (xy 153.192925 67.173642) (xy 153.187941 67.243334) (xy 153.15944 67.287681) + (xy 153.057413 67.389707) (xy 153.05741 67.389711) (xy 152.969809 67.520814) (xy 152.969802 67.520827) + (xy 152.909464 67.666498) (xy 152.909461 67.66651) (xy 152.8787 67.821153) (xy 152.8787 67.978846) + (xy 152.909461 68.133489) (xy 152.909464 68.133501) (xy 152.969802 68.279172) (xy 152.969809 68.279185) + (xy 153.05741 68.410288) (xy 153.057413 68.410292) (xy 153.168907 68.521786) (xy 153.168911 68.521789) + (xy 153.300014 68.60939) (xy 153.300027 68.609397) (xy 153.440061 68.6674) (xy 153.445703 68.669737) + (xy 153.593928 68.699221) (xy 153.600353 68.700499) (xy 153.600356 68.7005) (xy 153.600358 68.7005) + (xy 153.758044 68.7005) (xy 153.758045 68.700499) (xy 153.912697 68.669737) (xy 154.058379 68.609394) + (xy 154.189489 68.521789) (xy 154.231543 68.479735) (xy 154.291519 68.41976) (xy 154.352842 68.386275) + (xy 154.422534 68.391259) (xy 154.466881 68.41976) (xy 154.568907 68.521786) (xy 154.568911 68.521789) + (xy 154.700014 68.60939) (xy 154.700027 68.609397) (xy 154.840061 68.6674) (xy 154.845703 68.669737) + (xy 154.993928 68.699221) (xy 155.000353 68.700499) (xy 155.000356 68.7005) (xy 155.000358 68.7005) + (xy 155.158044 68.7005) (xy 155.158045 68.700499) (xy 155.312697 68.669737) (xy 155.458379 68.609394) + (xy 155.589489 68.521789) (xy 155.631543 68.479735) (xy 155.691519 68.41976) (xy 155.752842 68.386275) + (xy 155.822534 68.391259) (xy 155.866881 68.41976) (xy 155.968907 68.521786) (xy 155.968911 68.521789) + (xy 156.100014 68.60939) (xy 156.100027 68.609397) (xy 156.240061 68.6674) (xy 156.245703 68.669737) + (xy 156.393928 68.699221) (xy 156.400353 68.700499) (xy 156.400356 68.7005) (xy 156.400358 68.7005) + (xy 156.558044 68.7005) (xy 156.558045 68.700499) (xy 156.712697 68.669737) (xy 156.858379 68.609394) + (xy 156.989489 68.521789) (xy 157.031543 68.479735) (xy 157.091519 68.41976) (xy 157.152842 68.386275) + (xy 157.222534 68.391259) (xy 157.266881 68.41976) (xy 157.368907 68.521786) (xy 157.368911 68.521789) + (xy 157.500014 68.60939) (xy 157.500027 68.609397) (xy 157.640061 68.6674) (xy 157.645703 68.669737) + (xy 157.793928 68.699221) (xy 157.800353 68.700499) (xy 157.800356 68.7005) (xy 157.800358 68.7005) + (xy 157.958044 68.7005) (xy 157.958045 68.700499) (xy 158.112697 68.669737) (xy 158.211058 68.628995) + (xy 159.836999 68.628995) (xy 159.863918 68.764322) (xy 159.863921 68.764332) (xy 159.916721 68.891804) + (xy 159.916728 68.891817) (xy 159.993385 69.006541) (xy 159.993388 69.006545) (xy 160.090954 69.104111) + (xy 160.090958 69.104114) (xy 160.205682 69.180771) (xy 160.205695 69.180778) (xy 160.333167 69.233578) + (xy 160.333172 69.23358) (xy 160.333176 69.23358) (xy 160.333177 69.233581) (xy 160.468504 69.2605) + (xy 160.468507 69.2605) (xy 160.606495 69.2605) (xy 160.697541 69.242389) (xy 160.741828 69.23358) + (xy 160.869311 69.180775) (xy 160.929903 69.140289) (xy 160.943622 69.131121) (xy 160.984042 69.104114) + (xy 161.081614 69.006542) (xy 161.116162 68.954836) (xy 161.169773 68.910032) (xy 161.239098 68.901325) + (xy 161.266715 68.909166) (xy 161.309395 68.926845) (xy 161.464045 68.957607) (xy 161.464048 68.957608) + (xy 161.46405 68.957608) (xy 161.621736 68.957608) (xy 161.621737 68.957607) (xy 161.776389 68.926845) + (xy 161.905287 68.873454) (xy 161.922064 68.866505) (xy 161.922064 68.866504) (xy 161.922071 68.866502) + (xy 162.053181 68.778897) (xy 162.164681 68.667397) (xy 162.252286 68.536287) (xy 162.258293 68.521786) + (xy 162.27571 68.479735) (xy 162.312629 68.390605) (xy 162.343392 68.23595) (xy 162.343392 68.078266) + (xy 162.343392 68.078263) (xy 162.343391 68.078261) (xy 162.330984 68.015886) (xy 162.312629 67.923611) + (xy 162.304068 67.902942) (xy 162.252289 67.777935) (xy 162.252282 67.777922) (xy 162.164681 67.646819) + (xy 162.164678 67.646815) (xy 162.053184 67.535321) (xy 162.05318 67.535318) (xy 161.922077 67.447717) + (xy 161.922064 67.44771) (xy 161.776393 67.387372) (xy 161.776381 67.387369) (xy 161.621737 67.356608) + (xy 161.621734 67.356608) (xy 161.46405 67.356608) (xy 161.464047 67.356608) (xy 161.309402 67.387369) + (xy 161.30939 67.387372) (xy 161.163719 67.44771) (xy 161.163706 67.447717) (xy 161.032603 67.535318) + (xy 161.032599 67.535321) (xy 160.921105 67.646815) (xy 160.921102 67.646819) (xy 160.833501 67.777922) + (xy 160.833495 67.777934) (xy 160.823944 67.800992) (xy 160.780102 67.855394) (xy 160.713808 67.877458) + (xy 160.685192 67.875154) (xy 160.606495 67.8595) (xy 160.606493 67.8595) (xy 160.468507 67.8595) + (xy 160.468505 67.8595) (xy 160.333177 67.886418) (xy 160.333167 67.886421) (xy 160.205695 67.939221) + (xy 160.205682 67.939228) (xy 160.090958 68.015885) (xy 160.090954 68.015888) (xy 159.993388 68.113454) + (xy 159.993385 68.113458) (xy 159.916728 68.228182) (xy 159.916721 68.228195) (xy 159.863921 68.355667) + (xy 159.863918 68.355677) (xy 159.837 68.491004) (xy 159.837 68.491007) (xy 159.837 68.628993) (xy 159.837 68.628995) + (xy 159.836999 68.628995) (xy 158.211058 68.628995) (xy 158.258379 68.609394) (xy 158.389489 68.521789) + (xy 158.500989 68.410289) (xy 158.588594 68.279179) (xy 158.648937 68.133497) (xy 158.6797 67.978842) + (xy 158.6797 67.821158) (xy 158.6797 67.821155) (xy 158.679699 67.821153) (xy 158.670964 67.777238) + (xy 158.648937 67.666503) (xy 158.634297 67.631158) (xy 158.588597 67.520827) (xy 158.58859 67.520814) + (xy 158.500989 67.389711) (xy 158.500986 67.389707) (xy 158.39896 67.287681) (xy 158.394822 67.280103) + (xy 158.387874 67.274974) (xy 158.37833 67.2499) (xy 158.365475 67.226358) (xy 158.36609 67.217745) + (xy 158.363019 67.209675) (xy 158.368545 67.183425) (xy 158.370459 67.156666) (xy 158.376011 67.147963) + (xy 158.377413 67.141304) (xy 158.397482 67.114307) (xy 158.398374 67.112909) (xy 158.398744 67.112533) + (xy 158.500989 67.010289) (xy 158.503846 67.006012) (xy 158.511708 66.998045) (xy 158.537489 66.983741) + (xy 158.56186 66.967139) (xy 158.567698 66.966982) (xy 158.572805 66.964149) (xy 158.602229 66.966055) + (xy 158.631704 66.965264) (xy 158.636699 66.968288) (xy 158.642529 66.968666) (xy 158.666255 66.98618) + (xy 158.691475 67.001448) (xy 158.695837 67.006481) (xy 158.695881 67.006535) (xy 158.695886 67.006542) + (xy 158.695891 67.006547) (xy 158.695896 67.006553) (xy 158.793454 67.104111) (xy 158.793458 67.104114) + (xy 158.908182 67.180771) (xy 158.908195 67.180778) (xy 159.011532 67.223581) (xy 159.035672 67.23358) + (xy 159.035676 67.23358) (xy 159.035677 67.233581) (xy 159.171004 67.2605) (xy 159.171007 67.2605) + (xy 159.308995 67.2605) (xy 159.407081 67.240989) (xy 159.444328 67.23358) (xy 159.542924 67.19274) + (xy 159.571804 67.180778) (xy 159.571804 67.180777) (xy 159.571811 67.180775) (xy 159.686542 67.104114) + (xy 159.74232 67.048335) (xy 159.803639 67.014852) (xy 159.873331 67.019836) (xy 159.91768 67.048337) + (xy 159.963454 67.094111) (xy 159.963458 67.094114) (xy 160.078182 67.170771) (xy 160.078195 67.170778) + (xy 160.172102 67.209675) (xy 160.205672 67.22358) (xy 160.205676 67.22358) (xy 160.205677 67.223581) + (xy 160.341004 67.2505) (xy 160.341007 67.2505) (xy 160.478995 67.2505) (xy 160.570041 67.232389) + (xy 160.614328 67.22358) (xy 160.717678 67.180771) (xy 160.741804 67.170778) (xy 160.741804 67.170777) + (xy 160.741811 67.170775) (xy 160.856542 67.094114) (xy 160.954114 66.996542) (xy 161.030775 66.881811) + (xy 161.031048 66.881153) (xy 165.9495 66.881153) (xy 165.9495 67.038846) (xy 165.980261 67.193489) + (xy 165.980264 67.193501) (xy 166.040602 67.339172) (xy 166.040609 67.339185) (xy 166.12821 67.470288) + (xy 166.128213 67.470292) (xy 166.239707 67.581786) (xy 166.239711 67.581789) (xy 166.370814 67.66939) + (xy 166.370827 67.669397) (xy 166.513415 67.728458) (xy 166.516503 67.729737) (xy 166.665578 67.75939) + (xy 166.671153 67.760499) (xy 166.671156 67.7605) (xy 166.671158 67.7605) (xy 166.828844 67.7605) + (xy 166.934687 67.739446) (xy 166.965991 67.733219) (xy 167.035583 67.739446) (xy 167.09076 67.782309) + (xy 167.114005 67.848198) (xy 167.104745 67.902287) (xy 167.07642 67.970672) (xy 167.076418 67.970677) + (xy 167.0495 68.106004) (xy 167.0495 68.106007) (xy 167.0495 68.243993) (xy 167.0495 68.243995) + (xy 167.049499 68.243995) (xy 167.076418 68.379322) (xy 167.076421 68.379332) (xy 167.129221 68.506804) + (xy 167.129228 68.506817) (xy 167.205885 68.621541) (xy 167.205888 68.621545) (xy 167.303454 68.719111) + (xy 167.303458 68.719114) (xy 167.418182 68.795771) (xy 167.418195 68.795778) (xy 167.545667 68.848578) + (xy 167.545672 68.84858) (xy 167.545676 68.84858) (xy 167.545677 68.848581) (xy 167.681004 68.8755) + (xy 167.681007 68.8755) (xy 167.818995 68.8755) (xy 167.910041 68.857389) (xy 167.954328 68.84858) + (xy 168.062331 68.803844) (xy 168.081804 68.795778) (xy 168.081804 68.795777) (xy 168.081811 68.795775) + (xy 168.196542 68.719114) (xy 168.294114 68.621542) (xy 168.370775 68.506811) (xy 168.42358 68.379328) + (xy 168.433037 68.331786) (xy 168.4505 68.243995) (xy 168.4505 68.106004) (xy 168.423581 67.970677) + (xy 168.42358 67.970676) (xy 168.42358 67.970672) (xy 168.417198 67.955264) (xy 168.370778 67.843195) + (xy 168.370771 67.843182) (xy 168.294114 67.728458) (xy 168.294111 67.728454) (xy 168.196545 67.630888) + (xy 168.196541 67.630885) (xy 168.081817 67.554228) (xy 168.081804 67.554221) (xy 167.954332 67.501421) + (xy 167.954322 67.501418) (xy 167.818995 67.4745) (xy 167.818993 67.4745) (xy 167.681007 67.4745) + (xy 167.681002 67.4745) (xy 167.60594 67.489431) (xy 167.536349 67.483204) (xy 167.481171 67.440341) + (xy 167.457927 67.374451) (xy 167.467187 67.320363) (xy 167.519737 67.193497) (xy 167.5505 67.038842) + (xy 167.5505 66.971153) (xy 171.9245 66.971153) (xy 171.9245 67.128846) (xy 171.955261 67.283489) + (xy 171.955264 67.283501) (xy 172.015602 67.429172) (xy 172.015609 67.429185) (xy 172.10321 67.560288) + (xy 172.103213 67.560292) (xy 172.214707 67.671786) (xy 172.214711 67.671789) (xy 172.345814 67.75939) + (xy 172.345827 67.759397) (xy 172.463167 67.808) (xy 172.491503 67.819737) (xy 172.609434 67.843195) (xy 172.646153 67.850499) (xy 172.646156 67.8505) (xy 172.646158 67.8505) (xy 172.803844 67.8505) - (xy 172.803845 67.850499) (xy 172.958497 67.819737) (xy 173.104179 67.759394) (xy 173.235289 67.671789) - (xy 173.346789 67.560289) (xy 173.434394 67.429179) (xy 173.43945 67.416974) (xy 173.451712 67.387369) - (xy 173.494737 67.283497) (xy 173.5255 67.128842) (xy 173.5255 66.971158) (xy 173.5255 66.971155) - (xy 173.525499 66.971153) (xy 173.523013 66.958653) (xy 173.494737 66.816503) (xy 173.492664 66.811498) - (xy 173.434397 66.670827) (xy 173.43439 66.670814) (xy 173.346789 66.539711) (xy 173.346786 66.539707) - (xy 173.235292 66.428213) (xy 173.235288 66.42821) (xy 173.104185 66.340609) (xy 173.104172 66.340602) - (xy 173.100476 66.339071) (xy 174.499499 66.339071) (xy 174.524497 66.464738) (xy 174.524499 66.464744) - (xy 174.573533 66.583124) (xy 174.573538 66.583133) (xy 174.644723 66.689668) (xy 174.644726 66.689672) - (xy 174.735327 66.780273) (xy 174.735331 66.780276) (xy 174.841866 66.851461) (xy 174.841872 66.851464) - (xy 174.841873 66.851465) (xy 174.960256 66.900501) (xy 174.96026 66.900501) (xy 174.960261 66.900502) - (xy 175.085928 66.9255) (xy 175.085931 66.9255) (xy 175.214071 66.9255) (xy 175.298615 66.908682) - (xy 175.339744 66.900501) (xy 175.458127 66.851465) (xy 175.564669 66.780276) (xy 175.655276 66.689669) - (xy 175.726465 66.583127) (xy 175.775501 66.464744) (xy 175.788959 66.397086) (xy 175.821343 66.335176) - (xy 175.882059 66.300602) (xy 175.951828 66.304341) (xy 175.979466 66.318175) (xy 175.991867 66.326461) - (xy 175.991872 66.326464) (xy 175.991875 66.326466) (xy 175.995842 66.328109) (xy 176.110256 66.375501) - (xy 176.11026 66.375501) (xy 176.110261 66.375502) (xy 176.235928 66.4005) (xy 176.235931 66.4005) - (xy 176.364071 66.4005) (xy 176.464613 66.3805) (xy 176.489744 66.375501) (xy 176.608127 66.326465) - (xy 176.714669 66.255276) (xy 176.805276 66.164669) (xy 176.876465 66.058127) (xy 176.925501 65.939744) - (xy 176.937615 65.878844) (xy 176.9505 65.814071) (xy 176.9505 65.68593) (xy 176.950005 65.680907) - (xy 176.96302 65.61226) (xy 177.004525 65.56564) (xy 177.010289 65.561789) (xy 177.121789 65.450289) - (xy 177.209394 65.319179) (xy 177.269737 65.173497) (xy 177.3005 65.018842) (xy 177.3005 64.861158) - (xy 177.3005 64.861155) (xy 177.300499 64.861153) (xy 177.290271 64.809735) (xy 177.269737 64.706503) - (xy 177.262992 64.690218) (xy 177.209397 64.560827) (xy 177.20939 64.560814) (xy 177.121789 64.429711) - (xy 177.121786 64.429707) (xy 177.010292 64.318213) (xy 177.010288 64.31821) (xy 176.879185 64.230609) - (xy 176.879172 64.230602) (xy 176.733501 64.170264) (xy 176.733489 64.170261) (xy 176.578845 64.1395) - (xy 176.578842 64.1395) (xy 176.421158 64.1395) (xy 176.421155 64.1395) (xy 176.26651 64.170261) - (xy 176.266498 64.170264) (xy 176.120827 64.230602) (xy 176.120814 64.230609) (xy 175.989711 64.31821) - (xy 175.989707 64.318213) (xy 175.878213 64.429707) (xy 175.87821 64.429711) (xy 175.790609 64.560814) - (xy 175.790602 64.560827) (xy 175.730264 64.706498) (xy 175.730261 64.70651) (xy 175.6995 64.861153) - (xy 175.6995 65.018846) (xy 175.730261 65.173489) (xy 175.730264 65.173501) (xy 175.770947 65.27172) - (xy 175.778416 65.34119) (xy 175.759489 65.388061) (xy 175.72354 65.441863) (xy 175.723533 65.441875) - (xy 175.674499 65.560255) (xy 175.674497 65.56026) (xy 175.66104 65.627914) (xy 175.628654 65.689824) - (xy 175.567938 65.724398) (xy 175.498169 65.720657) (xy 175.470533 65.706823) (xy 175.458138 65.698541) - (xy 175.458124 65.698533) (xy 175.339744 65.649499) (xy 175.339738 65.649497) (xy 175.214071 65.6245) - (xy 175.214069 65.6245) (xy 175.085931 65.6245) (xy 175.085929 65.6245) (xy 174.960261 65.649497) - (xy 174.960255 65.649499) (xy 174.841875 65.698533) (xy 174.841866 65.698538) (xy 174.735331 65.769723) - (xy 174.735327 65.769726) (xy 174.644726 65.860327) (xy 174.644723 65.860331) (xy 174.573538 65.966866) - (xy 174.573533 65.966875) (xy 174.524499 66.085255) (xy 174.524497 66.085261) (xy 174.4995 66.210928) - (xy 174.4995 66.210931) (xy 174.4995 66.339069) (xy 174.4995 66.339071) (xy 174.499499 66.339071) - (xy 173.100476 66.339071) (xy 173.052984 66.3194) (xy 172.958501 66.280264) (xy 172.958489 66.280261) - (xy 172.803845 66.2495) (xy 172.803842 66.2495) (xy 172.646158 66.2495) (xy 172.646155 66.2495) - (xy 172.49151 66.280261) (xy 172.491498 66.280264) (xy 172.345827 66.340602) (xy 172.345814 66.340609) - (xy 172.214711 66.42821) (xy 172.214707 66.428213) (xy 172.103213 66.539707) (xy 172.10321 66.539711) - (xy 172.015609 66.670814) (xy 172.015602 66.670827) (xy 171.955264 66.816498) (xy 171.955261 66.81651) - (xy 171.9245 66.971153) (xy 167.47535 66.971153) (xy 167.47535 66.958953) (xy 167.47535 66.95895) - (xy 167.475349 66.958948) (xy 167.472404 66.944142) (xy 167.444587 66.804298) (xy 167.40001 66.696679) - (xy 167.389415 66.671099) (xy 167.381946 66.60163) (xy 167.413221 66.539151) (xy 167.47331 66.503499) - (xy 167.528167 66.50203) (xy 167.554473 66.507262) (xy 167.646155 66.5255) (xy 167.646158 66.5255) - (xy 167.803844 66.5255) (xy 167.803845 66.525499) (xy 167.958497 66.494737) (xy 168.104179 66.434394) - (xy 168.235289 66.346789) (xy 168.346789 66.235289) (xy 168.434394 66.104179) (xy 168.443829 66.081402) - (xy 168.461424 66.038923) (xy 168.494737 65.958497) (xy 168.5255 65.803842) (xy 168.5255 65.646158) - (xy 168.5255 65.646155) (xy 168.525499 65.646153) (xy 168.518407 65.6105) (xy 168.494737 65.491503) + (xy 172.803845 67.850499) (xy 172.958497 67.819737) (xy 173.071166 67.773067) (xy 173.104172 67.759397) + (xy 173.104172 67.759396) (xy 173.104179 67.759394) (xy 173.235289 67.671789) (xy 173.346789 67.560289) + (xy 173.434394 67.429179) (xy 173.494737 67.283497) (xy 173.5255 67.128842) (xy 173.5255 66.971158) + (xy 173.5255 66.971155) (xy 173.525499 66.971153) (xy 173.519355 66.940264) (xy 173.494737 66.816503) + (xy 173.477131 66.773998) (xy 173.434397 66.670827) (xy 173.43439 66.670814) (xy 173.346789 66.539711) + (xy 173.346786 66.539707) (xy 173.235292 66.428213) (xy 173.235288 66.42821) (xy 173.104185 66.340609) + (xy 173.104172 66.340602) (xy 172.958501 66.280264) (xy 172.958489 66.280261) (xy 172.803845 66.2495) + (xy 172.803842 66.2495) (xy 172.646158 66.2495) (xy 172.646155 66.2495) (xy 172.49151 66.280261) + (xy 172.491498 66.280264) (xy 172.345827 66.340602) (xy 172.345814 66.340609) (xy 172.214711 66.42821) + (xy 172.214707 66.428213) (xy 172.103213 66.539707) (xy 172.10321 66.539711) (xy 172.015609 66.670814) + (xy 172.015602 66.670827) (xy 171.955264 66.816498) (xy 171.955261 66.81651) (xy 171.9245 66.971153) + (xy 167.5505 66.971153) (xy 167.5505 66.881158) (xy 167.5505 66.881155) (xy 167.550499 66.881153) + (xy 167.544467 66.850827) (xy 167.519737 66.726503) (xy 167.506428 66.694373) (xy 167.49896 66.624907) + (xy 167.530234 66.562428) (xy 167.590323 66.526775) (xy 167.640039 66.525444) (xy 167.640093 66.524903) + (xy 167.644407 66.525327) (xy 167.645187 66.525307) (xy 167.646157 66.5255) (xy 167.646158 66.5255) + (xy 167.803844 66.5255) (xy 167.803845 66.525499) (xy 167.958497 66.494737) (xy 168.071166 66.448067) + (xy 168.104172 66.434397) (xy 168.104172 66.434396) (xy 168.104179 66.434394) (xy 168.235289 66.346789) + (xy 168.346789 66.235289) (xy 168.434394 66.104179) (xy 168.494737 65.958497) (xy 168.522486 65.818995) + (xy 175.599499 65.818995) (xy 175.626418 65.954322) (xy 175.626421 65.954332) (xy 175.679221 66.081804) + (xy 175.679228 66.081817) (xy 175.755885 66.196541) (xy 175.755888 66.196545) (xy 175.853454 66.294111) + (xy 175.853458 66.294114) (xy 175.968182 66.370771) (xy 175.968195 66.370778) (xy 176.089825 66.421158) + (xy 176.095672 66.42358) (xy 176.095676 66.42358) (xy 176.095677 66.423581) (xy 176.231004 66.4505) + (xy 176.231007 66.4505) (xy 176.368995 66.4505) (xy 176.474566 66.4295) (xy 176.504328 66.42358) + (xy 176.611411 66.379225) (xy 176.631804 66.370778) (xy 176.631804 66.370777) (xy 176.631811 66.370775) + (xy 176.746542 66.294114) (xy 176.844114 66.196542) (xy 176.920775 66.081811) (xy 176.924059 66.073884) + (xy 176.956095 65.99654) (xy 176.97358 65.954328) (xy 176.988005 65.881809) (xy 177.0005 65.818995) + (xy 177.0005 65.681005) (xy 176.995275 65.65474) (xy 177.001502 65.585148) (xy 177.02921 65.542867) + (xy 177.121789 65.450289) (xy 177.209394 65.319179) (xy 177.269737 65.173497) (xy 177.3005 65.018842) + (xy 177.3005 64.861158) (xy 177.3005 64.861155) (xy 177.300499 64.861153) (xy 177.290376 64.810261) + (xy 177.269737 64.706503) (xy 177.262494 64.689017) (xy 177.209397 64.560827) (xy 177.20939 64.560814) + (xy 177.121789 64.429711) (xy 177.121786 64.429707) (xy 177.010292 64.318213) (xy 177.010288 64.31821) + (xy 176.879185 64.230609) (xy 176.879172 64.230602) (xy 176.733501 64.170264) (xy 176.733489 64.170261) + (xy 176.578845 64.1395) (xy 176.578842 64.1395) (xy 176.421158 64.1395) (xy 176.421155 64.1395) + (xy 176.26651 64.170261) (xy 176.266498 64.170264) (xy 176.120827 64.230602) (xy 176.120814 64.230609) + (xy 175.989711 64.31821) (xy 175.989707 64.318213) (xy 175.878213 64.429707) (xy 175.87821 64.429711) + (xy 175.790609 64.560814) (xy 175.790602 64.560827) (xy 175.730264 64.706498) (xy 175.730261 64.70651) + (xy 175.6995 64.861153) (xy 175.6995 65.018846) (xy 175.730261 65.173489) (xy 175.730263 65.173496) + (xy 175.747936 65.216164) (xy 175.755404 65.285633) (xy 175.736476 65.332506) (xy 175.679228 65.418182) + (xy 175.679221 65.418195) (xy 175.626421 65.545667) (xy 175.626418 65.545677) (xy 175.5995 65.681004) + (xy 175.5995 65.681005) (xy 175.5995 65.681007) (xy 175.5995 65.818993) (xy 175.5995 65.818995) + (xy 175.599499 65.818995) (xy 168.522486 65.818995) (xy 168.5255 65.803842) (xy 168.5255 65.646158) + (xy 168.5255 65.646155) (xy 168.525499 65.646153) (xy 168.524176 65.639503) (xy 168.494737 65.491503) (xy 168.477666 65.450289) (xy 168.434397 65.345827) (xy 168.43439 65.345814) (xy 168.346789 65.214711) (xy 168.346786 65.214707) (xy 168.235292 65.103213) (xy 168.235288 65.10321) (xy 168.104185 65.015609) (xy 168.104172 65.015602) (xy 167.958501 64.955264) (xy 167.958489 64.955261) (xy 167.803845 64.9245) @@ -37683,393 +42646,444 @@ (xy 167.491498 64.955264) (xy 167.345827 65.015602) (xy 167.345814 65.015609) (xy 167.214711 65.10321) (xy 167.214707 65.103213) (xy 167.103213 65.214707) (xy 167.10321 65.214711) (xy 167.015609 65.345814) (xy 167.015602 65.345827) (xy 166.955264 65.491498) (xy 166.955261 65.49151) (xy 166.9245 65.646153) - (xy 166.9245 65.803846) (xy 166.955261 65.958489) (xy 166.955264 65.958501) (xy 167.010434 66.091695) - (xy 167.017903 66.161164) (xy 166.986627 66.223643) (xy 166.926538 66.259295) (xy 166.871682 66.260764) - (xy 166.753696 66.237295) (xy 166.753692 66.237295) (xy 166.596008 66.237295) (xy 166.596005 66.237295) - (xy 166.44136 66.268056) (xy 166.441348 66.268059) (xy 166.295677 66.328397) (xy 166.295664 66.328404) - (xy 166.164561 66.416005) (xy 166.164557 66.416008) (xy 166.053063 66.527502) (xy 166.05306 66.527506) - (xy 165.965459 66.658609) (xy 165.965452 66.658622) (xy 165.905114 66.804293) (xy 165.905111 66.804305) - (xy 165.87435 66.958948) (xy 160.919099 66.958948) (xy 160.958152 66.900501) (xy 160.969198 66.88397) - (xy 160.986461 66.858133) (xy 160.986461 66.858132) (xy 160.986465 66.858127) (xy 161.035501 66.739744) - (xy 161.049211 66.670821) (xy 161.0605 66.614071) (xy 161.0605 66.485928) (xy 161.035502 66.360261) - (xy 161.035501 66.36026) (xy 161.035501 66.360256) (xy 160.99429 66.260764) (xy 160.986466 66.241875) - (xy 160.986461 66.241866) (xy 160.915276 66.135331) (xy 160.915273 66.135327) (xy 160.824672 66.044726) - (xy 160.824668 66.044723) (xy 160.718133 65.973538) (xy 160.718124 65.973533) (xy 160.599744 65.924499) - (xy 160.599738 65.924497) (xy 160.474071 65.8995) (xy 160.474069 65.8995) (xy 160.345931 65.8995) - (xy 160.345929 65.8995) (xy 160.220261 65.924497) (xy 160.220255 65.924499) (xy 160.101875 65.973533) - (xy 160.101866 65.973538) (xy 159.995331 66.044723) (xy 159.995327 66.044726) (xy 159.907681 66.132373) - (xy 159.899735 66.136711) (xy 159.89431 66.143959) (xy 159.86955 66.153193) (xy 159.846358 66.165858) - (xy 159.837328 66.165212) (xy 159.828846 66.168376) (xy 159.803025 66.162759) (xy 159.776666 66.160874) - (xy 159.767612 66.155055) (xy 159.760573 66.153524) (xy 159.732319 66.132373) (xy 159.720893 66.120947) - (xy 159.687408 66.059624) (xy 159.692392 65.989932) (xy 159.705472 65.964375) (xy 159.772493 65.864071) - (xy 162.049499 65.864071) (xy 162.074497 65.989738) (xy 162.074499 65.989744) (xy 162.123533 66.108124) - (xy 162.123538 66.108133) (xy 162.194723 66.214668) (xy 162.194726 66.214672) (xy 162.285327 66.305273) - (xy 162.285331 66.305276) (xy 162.391866 66.376461) (xy 162.391872 66.376464) (xy 162.391873 66.376465) - (xy 162.510256 66.425501) (xy 162.51026 66.425501) (xy 162.510261 66.425502) (xy 162.635928 66.4505) - (xy 162.635931 66.4505) (xy 162.764071 66.4505) (xy 162.876125 66.42821) (xy 162.889744 66.425501) - (xy 163.008127 66.376465) (xy 163.114669 66.305276) (xy 163.205276 66.214669) (xy 163.276465 66.108127) - (xy 163.325501 65.989744) (xy 163.335731 65.938314) (xy 163.3505 65.864071) (xy 163.3505 65.735928) - (xy 163.325502 65.610261) (xy 163.325501 65.61026) (xy 163.325501 65.610256) (xy 163.276465 65.491873) - (xy 163.276464 65.491872) (xy 163.276461 65.491866) (xy 163.205276 65.385331) (xy 163.205273 65.385327) - (xy 163.114672 65.294726) (xy 163.114668 65.294723) (xy 163.008133 65.223538) (xy 163.008124 65.223533) - (xy 162.889744 65.174499) (xy 162.889738 65.174497) (xy 162.764071 65.1495) (xy 162.764069 65.1495) - (xy 162.635931 65.1495) (xy 162.635929 65.1495) (xy 162.510261 65.174497) (xy 162.510255 65.174499) - (xy 162.391875 65.223533) (xy 162.391866 65.223538) (xy 162.285331 65.294723) (xy 162.285327 65.294726) - (xy 162.194726 65.385327) (xy 162.194723 65.385331) (xy 162.123538 65.491866) (xy 162.123533 65.491875) - (xy 162.074499 65.610255) (xy 162.074497 65.610261) (xy 162.0495 65.735928) (xy 162.0495 65.735931) - (xy 162.0495 65.864069) (xy 162.0495 65.864071) (xy 162.049499 65.864071) (xy 159.772493 65.864071) - (xy 159.776465 65.858127) (xy 159.825501 65.739744) (xy 159.829298 65.720657) (xy 159.832284 65.705647) - (xy 159.8505 65.614071) (xy 159.8505 65.485928) (xy 159.825502 65.360261) (xy 159.825501 65.36026) - (xy 159.825501 65.360256) (xy 159.820197 65.347452) (xy 159.812728 65.277987) (xy 159.820196 65.252551) - (xy 159.825501 65.239744) (xy 159.837741 65.17821) (xy 159.8505 65.114071) (xy 159.8505 64.985928) - (xy 159.825502 64.860261) (xy 159.825501 64.86026) (xy 159.825501 64.860256) (xy 159.776465 64.741873) - (xy 159.776464 64.741872) (xy 159.776461 64.741866) (xy 159.705276 64.635331) (xy 159.705273 64.635327) - (xy 159.614672 64.544726) (xy 159.614668 64.544723) (xy 159.508133 64.473538) (xy 159.508124 64.473533) - (xy 159.389744 64.424499) (xy 159.389738 64.424497) (xy 159.264071 64.3995) (xy 159.264069 64.3995) - (xy 159.135931 64.3995) (xy 159.135929 64.3995) (xy 159.010261 64.424497) (xy 159.010255 64.424499) - (xy 158.891875 64.473533) (xy 158.891866 64.473538) (xy 158.785331 64.544723) (xy 158.785327 64.544726) - (xy 158.694726 64.635327) (xy 158.694723 64.635331) (xy 158.623538 64.741866) (xy 158.623533 64.741875) - (xy 158.574499 64.860255) (xy 158.574497 64.860261) (xy 158.5495 64.985928) (xy 158.5495 64.985931) - (xy 158.5495 65.114069) (xy 158.5495 65.114071) (xy 158.549499 65.114071) (xy 156.193537 65.114071) - (xy 156.158418 65.090605) (xy 156.01274 65.030264) (xy 156.012728 65.030261) (xy 155.858084 64.9995) - (xy 155.858081 64.9995) (xy 155.700397 64.9995) (xy 155.700394 64.9995) (xy 155.545749 65.030261) - (xy 155.545737 65.030264) (xy 155.400066 65.090602) (xy 155.400053 65.090609) (xy 155.26895 65.17821) - (xy 155.268946 65.178213) (xy 155.157452 65.289707) (xy 155.157449 65.289711) (xy 155.069848 65.420814) - (xy 155.069841 65.420827) (xy 155.009503 65.566498) (xy 155.0095 65.56651) (xy 154.978739 65.721153) - (xy 149.654213 65.721153) (xy 149.65436 65.712947) (xy 149.666376 65.687832) (xy 149.667199 65.684834) - (xy 149.669593 65.68111) (xy 149.684469 65.658846) (xy 149.749394 65.561679) (xy 149.749984 65.560256) - (xy 149.774462 65.501158) (xy 149.809737 65.415997) (xy 149.8405 65.261342) (xy 149.8405 65.103658) - (xy 149.8405 65.103655) (xy 149.840499 65.103653) (xy 149.828533 65.043497) (xy 149.809737 64.949003) - (xy 149.799588 64.9245) (xy 149.749397 64.803327) (xy 149.74939 64.803314) (xy 149.661789 64.672211) - (xy 149.661786 64.672207) (xy 149.550292 64.560713) (xy 149.550288 64.56071) (xy 149.419185 64.473109) - (xy 149.419172 64.473102) (xy 149.273501 64.412764) (xy 149.273489 64.412761) (xy 149.118845 64.382) - (xy 149.118842 64.382) (xy 148.961158 64.382) (xy 148.961155 64.382) (xy 148.80651 64.412761) (xy 148.806498 64.412764) - (xy 148.660827 64.473102) (xy 148.660814 64.473109) (xy 148.529711 64.56071) (xy 148.529707 64.560713) - (xy 148.418213 64.672207) (xy 148.41821 64.672211) (xy 148.330609 64.803314) (xy 148.330602 64.803327) - (xy 148.270264 64.948998) (xy 148.270261 64.94901) (xy 148.2395 65.103653) (xy 148.2395 65.261346) - (xy 148.270261 65.415989) (xy 148.270264 65.416001) (xy 148.330602 65.561672) (xy 148.330609 65.561685) - (xy 148.410406 65.681109) (xy 148.431284 65.747787) (xy 148.412799 65.815167) (xy 148.410406 65.818891) - (xy 148.330609 65.938314) (xy 148.330602 65.938327) (xy 148.270264 66.083998) (xy 148.270261 66.08401) - (xy 148.2395 66.238653) (xy 148.2395 66.396346) (xy 148.270261 66.550989) (xy 148.270264 66.551001) - (xy 148.330602 66.696672) (xy 148.330609 66.696685) (xy 148.41821 66.827788) (xy 148.418213 66.827792) - (xy 148.529707 66.939286) (xy 148.529711 66.939289) (xy 148.660814 67.02689) (xy 148.660827 67.026897) - (xy 148.78223 67.077183) (xy 148.806503 67.087237) (xy 148.874544 67.100771) (xy 148.891469 67.104138) - (xy 148.95338 67.136522) (xy 148.987954 67.197238) (xy 148.984215 67.267008) (xy 148.943349 67.32368) - (xy 148.914731 67.340316) (xy 148.793324 67.390604) (xy 148.793314 67.390609) (xy 148.662211 67.47821) - (xy 148.662207 67.478213) (xy 148.550713 67.589707) (xy 148.55071 67.589711) (xy 148.463109 67.720814) - (xy 148.463102 67.720827) (xy 148.402764 67.866498) (xy 148.402761 67.86651) (xy 148.372 68.021153) - (xy 148.372 68.07146) (xy 148.352315 68.138499) (xy 148.299511 68.184254) (xy 148.230353 68.194198) - (xy 148.166797 68.165173) (xy 148.133439 68.118912) (xy 148.094688 68.025358) (xy 148.094681 68.025345) - (xy 148.00708 67.894242) (xy 148.007077 67.894238) (xy 147.895583 67.782744) (xy 147.895579 67.782741) - (xy 147.764476 67.69514) (xy 147.764463 67.695133) (xy 147.618792 67.634795) (xy 147.61878 67.634792) - (xy 147.464136 67.604031) (xy 147.464133 67.604031) (xy 147.306449 67.604031) (xy 147.306446 67.604031) - (xy 147.151801 67.634792) (xy 147.151789 67.634795) (xy 147.006118 67.695133) (xy 147.006105 67.69514) - (xy 146.875002 67.782741) (xy 146.874998 67.782744) (xy 146.763504 67.894238) (xy 146.763501 67.894242) - (xy 146.6759 68.025345) (xy 146.675893 68.025358) (xy 146.615555 68.171029) (xy 146.615552 68.171041) - (xy 146.584791 68.325684) (xy 145.673473 68.325684) (xy 145.674413 62.871153) (xy 148.2595 62.871153) - (xy 148.2595 63.028846) (xy 148.290261 63.183489) (xy 148.290264 63.183501) (xy 148.350602 63.329172) - (xy 148.350609 63.329185) (xy 148.43821 63.460288) (xy 148.438213 63.460292) (xy 148.549707 63.571786) - (xy 148.549711 63.571789) (xy 148.680814 63.65939) (xy 148.680827 63.659397) (xy 148.776062 63.698844) - (xy 148.826503 63.719737) (xy 148.981153 63.750499) (xy 148.981156 63.7505) (xy 148.981158 63.7505) - (xy 149.138844 63.7505) (xy 149.138845 63.750499) (xy 149.293497 63.719737) (xy 149.439179 63.659394) - (xy 149.477366 63.633877) (xy 149.544042 63.612999) (xy 149.611422 63.631483) (xy 149.615148 63.633877) - (xy 149.660814 63.66439) (xy 149.660827 63.664397) (xy 149.794427 63.719735) (xy 149.806503 63.724737) - (xy 149.961153 63.755499) (xy 149.961156 63.7555) (xy 149.961158 63.7555) (xy 150.118844 63.7555) - (xy 150.118845 63.755499) (xy 150.273497 63.724737) (xy 150.419179 63.664394) (xy 150.550289 63.576789) - (xy 150.661789 63.465289) (xy 150.729421 63.364071) (xy 163.149499 63.364071) (xy 163.174498 63.489742) - (xy 163.174498 63.489744) (xy 163.179803 63.502551) (xy 163.187269 63.572021) (xy 163.179803 63.597449) - (xy 163.174498 63.610255) (xy 163.174498 63.610257) (xy 163.1495 63.735928) (xy 163.1495 63.735931) - (xy 163.1495 63.864069) (xy 163.1495 63.864071) (xy 163.149499 63.864071) (xy 163.174497 63.989738) - (xy 163.174499 63.989744) (xy 163.223533 64.108124) (xy 163.223538 64.108133) (xy 163.294723 64.214668) - (xy 163.294726 64.214672) (xy 163.385327 64.305273) (xy 163.385331 64.305276) (xy 163.491866 64.376461) - (xy 163.491875 64.376466) (xy 163.516095 64.386498) (xy 163.610256 64.425501) (xy 163.61026 64.425501) - (xy 163.610261 64.425502) (xy 163.735928 64.4505) (xy 163.735931 64.4505) (xy 163.864071 64.4505) - (xy 163.968579 64.429711) (xy 163.989744 64.425501) (xy 164.108127 64.376465) (xy 164.214669 64.305276) - (xy 164.305276 64.214669) (xy 164.376465 64.108127) (xy 164.425501 63.989744) (xy 164.436621 63.933843) - (xy 164.4505 63.864071) (xy 164.4505 63.781173) (xy 164.4505 63.776154) (xy 180.889499 63.776154) + (xy 166.9245 65.803846) (xy 166.955261 65.958489) (xy 166.955264 65.958501) (xy 166.96857 65.990624) + (xy 166.976039 66.060093) (xy 166.944764 66.122572) (xy 166.884674 66.158224) (xy 166.83496 66.159557) + (xy 166.834907 66.160097) (xy 166.83061 66.159673) (xy 166.829825 66.159695) (xy 166.828844 66.1595) + (xy 166.828842 66.1595) (xy 166.671158 66.1595) (xy 166.671155 66.1595) (xy 166.51651 66.190261) + (xy 166.516498 66.190264) (xy 166.370827 66.250602) (xy 166.370814 66.250609) (xy 166.239711 66.33821) + (xy 166.239707 66.338213) (xy 166.128213 66.449707) (xy 166.12821 66.449711) (xy 166.040609 66.580814) + (xy 166.040602 66.580827) (xy 165.980264 66.726498) (xy 165.980261 66.72651) (xy 165.9495 66.881153) + (xy 161.031048 66.881153) (xy 161.08358 66.754328) (xy 161.100716 66.668182) (xy 161.1105 66.618995) + (xy 161.1105 66.481004) (xy 161.083581 66.345677) (xy 161.08358 66.345676) (xy 161.08358 66.345672) + (xy 161.060269 66.289394) (xy 161.030778 66.218195) (xy 161.030771 66.218182) (xy 160.954114 66.103458) + (xy 160.954111 66.103454) (xy 160.856545 66.005888) (xy 160.856541 66.005885) (xy 160.741817 65.929228) + (xy 160.741804 65.929221) (xy 160.614332 65.876421) (xy 160.614322 65.876418) (xy 160.577005 65.868995) + (xy 161.999499 65.868995) (xy 162.026418 66.004322) (xy 162.026421 66.004332) (xy 162.079221 66.131804) + (xy 162.079228 66.131817) (xy 162.155885 66.246541) (xy 162.155888 66.246545) (xy 162.253454 66.344111) + (xy 162.253458 66.344114) (xy 162.368182 66.420771) (xy 162.368195 66.420778) (xy 162.463524 66.460264) + (xy 162.495672 66.47358) (xy 162.495676 66.47358) (xy 162.495677 66.473581) (xy 162.631004 66.5005) + (xy 162.631007 66.5005) (xy 162.768995 66.5005) (xy 162.867005 66.481004) (xy 162.904328 66.47358) + (xy 163.025044 66.423578) (xy 163.031804 66.420778) (xy 163.031804 66.420777) (xy 163.031811 66.420775) + (xy 163.146542 66.344114) (xy 163.244114 66.246542) (xy 163.320775 66.131811) (xy 163.37358 66.004328) + (xy 163.386428 65.939737) (xy 163.4005 65.868995) (xy 163.4005 65.731004) (xy 163.373581 65.595677) + (xy 163.37358 65.595676) (xy 163.37358 65.595672) (xy 163.354319 65.549172) (xy 163.320778 65.468195) + (xy 163.320771 65.468182) (xy 163.244114 65.353458) (xy 163.244111 65.353454) (xy 163.146545 65.255888) + (xy 163.146541 65.255885) (xy 163.031817 65.179228) (xy 163.031804 65.179221) (xy 162.904332 65.126421) + (xy 162.904322 65.126418) (xy 162.768995 65.0995) (xy 162.768993 65.0995) (xy 162.631007 65.0995) + (xy 162.631005 65.0995) (xy 162.495677 65.126418) (xy 162.495667 65.126421) (xy 162.368195 65.179221) + (xy 162.368182 65.179228) (xy 162.253458 65.255885) (xy 162.253454 65.255888) (xy 162.155888 65.353454) + (xy 162.155885 65.353458) (xy 162.079228 65.468182) (xy 162.079221 65.468195) (xy 162.026421 65.595667) + (xy 162.026418 65.595677) (xy 161.9995 65.731004) (xy 161.9995 65.731007) (xy 161.9995 65.868993) + (xy 161.9995 65.868995) (xy 161.999499 65.868995) (xy 160.577005 65.868995) (xy 160.478995 65.849499) + (xy 160.472933 65.848903) (xy 160.473089 65.847314) (xy 160.46035 65.843574) (xy 160.439349 65.842461) + (xy 160.427501 65.833928) (xy 160.413493 65.829815) (xy 160.39972 65.813921) (xy 160.382653 65.801629) + (xy 160.377298 65.788044) (xy 160.367738 65.777011) (xy 160.364744 65.756194) (xy 160.357032 65.736626) + (xy 160.358351 65.71173) (xy 160.357794 65.707853) (xy 160.3589 65.701382) (xy 160.359016 65.700797) + (xy 160.359019 65.700789) (xy 160.359031 65.700724) (xy 160.371207 65.639507) (xy 160.371208 65.639505) + (xy 160.371208 65.501514) (xy 160.344289 65.366187) (xy 160.344288 65.366183) (xy 160.344288 65.366182) + (xy 160.325245 65.32021) (xy 160.317777 65.250741) (xy 160.323573 65.231002) (xy 160.323537 65.230991) + (xy 160.324791 65.226854) (xy 160.325249 65.225298) (xy 160.325305 65.225163) (xy 160.352225 65.089828) + (xy 160.352225 64.951842) (xy 160.352225 64.951839) (xy 160.325306 64.816512) (xy 160.325305 64.816511) + (xy 160.325305 64.816507) (xy 160.325303 64.816502) (xy 160.272503 64.68903) (xy 160.272496 64.689017) + (xy 160.195839 64.574293) (xy 160.195836 64.574289) (xy 160.09827 64.476723) (xy 160.098266 64.47672) + (xy 159.983542 64.400063) (xy 159.983529 64.400056) (xy 159.856057 64.347256) (xy 159.856047 64.347253) + (xy 159.72072 64.320335) (xy 159.720718 64.320335) (xy 159.582732 64.320335) (xy 159.58273 64.320335) + (xy 159.447402 64.347253) (xy 159.447392 64.347256) (xy 159.31992 64.400056) (xy 159.319907 64.400063) + (xy 159.205183 64.47672) (xy 159.205179 64.476723) (xy 159.107613 64.574289) (xy 159.10761 64.574293) + (xy 159.030953 64.689017) (xy 159.030946 64.68903) (xy 158.978146 64.816502) (xy 158.978143 64.816512) + (xy 158.951225 64.951839) (xy 158.951225 64.951842) (xy 158.951225 65.089828) (xy 158.951225 65.08983) + (xy 158.951224 65.08983) (xy 158.978143 65.225156) (xy 158.978144 65.225159) (xy 158.978145 65.225163) + (xy 158.990871 65.255886) (xy 158.997187 65.271135) (xy 159.004654 65.340605) (xy 158.998861 65.360338) + (xy 158.998897 65.360349) (xy 158.99769 65.364325) (xy 158.997192 65.366025) (xy 158.997129 65.366174) + (xy 158.997127 65.366183) (xy 158.970208 65.501514) (xy 158.970208 65.501517) (xy 158.970208 65.639503) + (xy 158.970208 65.639505) (xy 158.970207 65.639505) (xy 158.997127 65.774836) (xy 158.998876 65.780601) + (xy 158.999499 65.850467) (xy 158.96225 65.90958) (xy 158.927669 65.931156) (xy 158.908189 65.939225) + (xy 158.908182 65.939228) (xy 158.793458 66.015885) (xy 158.735459 66.073884) (xy 158.723602 66.080357) + (xy 158.714751 66.09056) (xy 158.693536 66.096774) (xy 158.674135 66.107368) (xy 158.660663 66.106404) + (xy 158.647699 66.110202) (xy 158.62649 66.103959) (xy 158.604444 66.102383) (xy 158.592179 66.093861) + (xy 158.580672 66.090475) (xy 158.564681 66.074756) (xy 158.554013 66.067345) (xy 158.548964 66.06151) + (xy 158.500989 65.989711) (xy 158.395801 65.884523) (xy 158.392876 65.881143) (xy 158.380159 65.853251) + (xy 158.365475 65.826358) (xy 158.365803 65.821762) (xy 158.363892 65.817569) (xy 158.368272 65.78724) + (xy 158.370459 65.756666) (xy 158.373334 65.752191) (xy 158.37388 65.748417) (xy 158.381133 65.740056) + (xy 158.39896 65.712319) (xy 158.500986 65.610292) (xy 158.500989 65.610289) (xy 158.588594 65.479179) + (xy 158.595306 65.462976) (xy 158.610016 65.427461) (xy 158.648937 65.333497) (xy 158.6797 65.178842) + (xy 158.6797 65.021158) (xy 158.6797 65.021155) (xy 158.679699 65.021153) (xy 158.666593 64.955264) + (xy 158.648937 64.866503) (xy 158.624843 64.808334) (xy 158.588597 64.720827) (xy 158.58859 64.720814) + (xy 158.500989 64.589711) (xy 158.500986 64.589707) (xy 158.39896 64.487681) (xy 158.365475 64.426358) + (xy 158.370459 64.356666) (xy 158.39896 64.312319) (xy 158.500986 64.210292) (xy 158.500989 64.210289) + (xy 158.588594 64.079179) (xy 158.648937 63.933497) (xy 158.667735 63.838995) (xy 162.998202 63.838995) + (xy 163.025121 63.974322) (xy 163.025124 63.974332) (xy 163.077924 64.101804) (xy 163.077931 64.101817) + (xy 163.154588 64.216541) (xy 163.154591 64.216545) (xy 163.252157 64.314111) (xy 163.252161 64.314114) + (xy 163.366885 64.390771) (xy 163.366898 64.390778) (xy 163.459726 64.429228) (xy 163.494375 64.44358) + (xy 163.494379 64.44358) (xy 163.49438 64.443581) (xy 163.629707 64.4705) (xy 163.62971 64.4705) + (xy 163.767698 64.4705) (xy 163.858744 64.452389) (xy 163.903031 64.44358) (xy 164.001627 64.40274) + (xy 164.030507 64.390778) (xy 164.030507 64.390777) (xy 164.030514 64.390775) (xy 164.145245 64.314114) + (xy 164.242817 64.216542) (xy 164.319478 64.101811) (xy 164.372283 63.974328) (xy 164.385242 63.909179) + (xy 164.399203 63.838995) (xy 164.3998 63.832933) (xy 164.401101 63.833061) (xy 164.406758 63.813795) + (xy 164.41075 63.787273) (xy 164.417294 63.777913) (xy 164.417811 63.776154) (xy 180.889499 63.776154) (xy 180.889499 63.933847) (xy 180.92026 64.08849) (xy 180.920263 64.088502) (xy 180.980601 64.234173) (xy 180.980608 64.234186) (xy 181.068209 64.365289) (xy 181.068212 64.365293) (xy 181.179706 64.476787) - (xy 181.17971 64.47679) (xy 181.310813 64.564391) (xy 181.310826 64.564398) (xy 181.456497 64.624736) - (xy 181.456502 64.624738) (xy 181.56011 64.645347) (xy 181.611152 64.6555) (xy 181.611155 64.655501) - (xy 181.611157 64.655501) (xy 181.768842 64.655501) (xy 181.784403 64.652405) (xy 181.851191 64.63912) - (xy 181.920781 64.645347) (xy 181.975959 64.688209) (xy 181.996999 64.736545) (xy 182.020261 64.853491) - (xy 182.020264 64.853501) (xy 182.080602 64.999172) (xy 182.080609 64.999185) (xy 182.16821 65.130288) - (xy 182.168213 65.130292) (xy 182.279707 65.241786) (xy 182.279711 65.241789) (xy 182.410814 65.32939) - (xy 182.410827 65.329397) (xy 182.545856 65.385327) (xy 182.556503 65.389737) (xy 182.68848 65.415989) - (xy 182.711153 65.420499) (xy 182.711156 65.4205) (xy 182.711158 65.4205) (xy 182.868844 65.4205) - (xy 182.921308 65.410064) (xy 182.9909 65.416291) (xy 183.046077 65.459154) (xy 183.069322 65.525043) - (xy 183.0695 65.531681) (xy 183.0695 65.658846) (xy 183.100261 65.813489) (xy 183.100264 65.813501) - (xy 183.160602 65.959172) (xy 183.160612 65.95919) (xy 183.242271 66.081402) (xy 183.263149 66.148079) - (xy 183.244664 66.215459) (xy 183.192685 66.262149) (xy 183.163362 66.271909) (xy 183.146507 66.275261) - (xy 183.146498 66.275264) (xy 183.000827 66.335602) (xy 183.000814 66.335609) (xy 182.869711 66.42321) - (xy 182.869707 66.423213) (xy 182.758213 66.534707) (xy 182.75821 66.534711) (xy 182.670609 66.665814) - (xy 182.670602 66.665827) (xy 182.610264 66.811498) (xy 182.610261 66.81151) (xy 182.5795 66.966153) - (xy 182.5795 67.123846) (xy 182.610261 67.278489) (xy 182.610264 67.278501) (xy 182.670602 67.424172) - (xy 182.670609 67.424185) (xy 182.75821 67.555288) (xy 182.758213 67.555292) (xy 182.869707 67.666786) - (xy 182.869711 67.666789) (xy 183.000814 67.75439) (xy 183.000827 67.754397) (xy 183.129106 67.807531) - (xy 183.146503 67.814737) (xy 183.301153 67.845499) (xy 183.301156 67.8455) (xy 183.301158 67.8455) - (xy 183.458844 67.8455) (xy 183.458845 67.845499) (xy 183.613497 67.814737) (xy 183.747108 67.759394) - (xy 183.759172 67.754397) (xy 183.759172 67.754396) (xy 183.759179 67.754394) (xy 183.890289 67.666789) - (xy 184.001789 67.555289) (xy 184.089394 67.424179) (xy 184.092504 67.416672) (xy 184.128067 67.330814) - (xy 184.149737 67.278497) (xy 184.1805 67.123842) (xy 184.1805 66.966158) (xy 184.1805 66.966155) - (xy 184.180499 66.966153) (xy 184.179007 66.958653) (xy 184.9395 66.958653) (xy 184.9395 67.116346) - (xy 184.970261 67.270989) (xy 184.970264 67.271001) (xy 185.030602 67.416672) (xy 185.030609 67.416685) - (xy 185.11821 67.547788) (xy 185.118213 67.547792) (xy 185.229707 67.659286) (xy 185.229711 67.659289) - (xy 185.360814 67.74689) (xy 185.360827 67.746897) (xy 185.506498 67.807235) (xy 185.506503 67.807237) - (xy 185.661153 67.837999) (xy 185.661156 67.838) (xy 185.661158 67.838) (xy 185.818844 67.838) (xy 185.818845 67.837999) - (xy 185.973497 67.807237) (xy 186.118467 67.747189) (xy 186.119172 67.746897) (xy 186.119172 67.746896) - (xy 186.119179 67.746894) (xy 186.250289 67.659289) (xy 186.278425 67.631153) (xy 205.6595 67.631153) - (xy 205.6595 67.788846) (xy 205.690261 67.943489) (xy 205.690264 67.943501) (xy 205.750602 68.089172) - (xy 205.750609 68.089185) (xy 205.83821 68.220288) (xy 205.838213 68.220292) (xy 205.949707 68.331786) - (xy 205.949711 68.331789) (xy 206.080814 68.41939) (xy 206.080827 68.419397) (xy 206.225139 68.479172) - (xy 206.226503 68.479737) (xy 206.381153 68.510499) (xy 206.381156 68.5105) (xy 206.381158 68.5105) - (xy 206.538844 68.5105) (xy 206.538845 68.510499) (xy 206.693497 68.479737) (xy 206.839179 68.419394) - (xy 206.970289 68.331789) (xy 207.081789 68.220289) (xy 207.169394 68.089179) (xy 207.229737 67.943497) - (xy 207.2605 67.788842) (xy 207.2605 67.631158) (xy 207.2605 67.631155) (xy 207.260499 67.631153) - (xy 207.245409 67.555292) (xy 207.229737 67.476503) (xy 207.217811 67.44771) (xy 207.169397 67.330827) - (xy 207.16939 67.330814) (xy 207.081789 67.199711) (xy 207.081786 67.199707) (xy 206.970292 67.088213) - (xy 206.970288 67.08821) (xy 206.839185 67.000609) (xy 206.839172 67.000602) (xy 206.693501 66.940264) - (xy 206.693489 66.940261) (xy 206.538845 66.9095) (xy 206.538842 66.9095) (xy 206.381158 66.9095) - (xy 206.381155 66.9095) (xy 206.22651 66.940261) (xy 206.226498 66.940264) (xy 206.080827 67.000602) - (xy 206.080814 67.000609) (xy 205.949711 67.08821) (xy 205.949707 67.088213) (xy 205.838213 67.199707) - (xy 205.83821 67.199711) (xy 205.750609 67.330814) (xy 205.750602 67.330827) (xy 205.690264 67.476498) - (xy 205.690261 67.47651) (xy 205.6595 67.631153) (xy 186.278425 67.631153) (xy 186.361789 67.547789) - (xy 186.449394 67.416679) (xy 186.509737 67.270997) (xy 186.5405 67.116342) (xy 186.5405 66.958658) - (xy 186.5405 66.958655) (xy 186.540499 66.958653) (xy 186.528932 66.900501) (xy 186.509737 66.804003) - (xy 186.454709 66.671153) (xy 191.6795 66.671153) (xy 191.6795 66.828846) (xy 191.710261 66.983489) - (xy 191.710264 66.983501) (xy 191.770602 67.129172) (xy 191.770609 67.129185) (xy 191.85821 67.260288) - (xy 191.858213 67.260292) (xy 191.969707 67.371786) (xy 191.969711 67.371789) (xy 192.100814 67.45939) - (xy 192.100827 67.459397) (xy 192.246498 67.519735) (xy 192.246503 67.519737) (xy 192.387524 67.547788) - (xy 192.401153 67.550499) (xy 192.401156 67.5505) (xy 192.401158 67.5505) (xy 192.558844 67.5505) - (xy 192.558845 67.550499) (xy 192.713497 67.519737) (xy 192.724766 67.515069) (xy 192.735786 67.510505) - (xy 192.859172 67.459397) (xy 192.859172 67.459396) (xy 192.859179 67.459394) (xy 192.990289 67.371789) - (xy 193.101789 67.260289) (xy 193.189394 67.129179) (xy 193.194025 67.118) (xy 193.215863 67.065276) - (xy 193.249737 66.983497) (xy 193.2805 66.828842) (xy 193.2805 66.671158) (xy 193.2805 66.671155) - (xy 193.280499 66.671153) (xy 193.271133 66.624069) (xy 193.249737 66.516503) (xy 193.240721 66.494737) - (xy 193.189397 66.370827) (xy 193.18939 66.370814) (xy 193.101789 66.239711) (xy 193.101786 66.239707) - (xy 192.990292 66.128213) (xy 192.990288 66.12821) (xy 192.859185 66.040609) (xy 192.859172 66.040602) - (xy 192.713501 65.980264) (xy 192.713489 65.980261) (xy 192.558845 65.9495) (xy 192.558842 65.9495) - (xy 192.401158 65.9495) (xy 192.401155 65.9495) (xy 192.24651 65.980261) (xy 192.246498 65.980264) - (xy 192.100827 66.040602) (xy 192.100814 66.040609) (xy 191.969711 66.12821) (xy 191.969707 66.128213) - (xy 191.858213 66.239707) (xy 191.85821 66.239711) (xy 191.770609 66.370814) (xy 191.770602 66.370827) - (xy 191.710264 66.516498) (xy 191.710261 66.51651) (xy 191.6795 66.671153) (xy 186.454709 66.671153) - (xy 186.449394 66.658321) (xy 186.449392 66.658318) (xy 186.44939 66.658314) (xy 186.361789 66.527211) - (xy 186.361786 66.527207) (xy 186.250292 66.415713) (xy 186.250288 66.41571) (xy 186.119185 66.328109) - (xy 186.119172 66.328102) (xy 185.973501 66.267764) (xy 185.973489 66.267761) (xy 185.818845 66.237) - (xy 185.818842 66.237) (xy 185.661158 66.237) (xy 185.661155 66.237) (xy 185.50651 66.267761) (xy 185.506498 66.267764) - (xy 185.360827 66.328102) (xy 185.360814 66.328109) (xy 185.229711 66.41571) (xy 185.229707 66.415713) - (xy 185.118213 66.527207) (xy 185.11821 66.527211) (xy 185.030609 66.658314) (xy 185.030602 66.658327) - (xy 184.970264 66.803998) (xy 184.970261 66.80401) (xy 184.9395 66.958653) (xy 184.179007 66.958653) - (xy 184.175155 66.939286) (xy 184.149737 66.811503) (xy 184.146633 66.80401) (xy 184.089397 66.665827) - (xy 184.08939 66.665814) (xy 184.007728 66.543598) (xy 183.98685 66.47692) (xy 184.005335 66.40954) - (xy 184.057314 66.36285) (xy 184.086639 66.35309) (xy 184.103497 66.349737) (xy 184.249179 66.289394) - (xy 184.380289 66.201789) (xy 184.491789 66.090289) (xy 184.579394 65.959179) (xy 184.579677 65.958497) - (xy 184.612669 65.878846) (xy 184.639737 65.813497) (xy 184.662357 65.699779) (xy 184.69474 65.637871) - (xy 184.755456 65.603297) (xy 184.759715 65.602369) (xy 184.873497 65.579737) (xy 185.019179 65.519394) - (xy 185.150289 65.431789) (xy 185.261789 65.320289) (xy 185.349394 65.189179) (xy 185.353938 65.17821) - (xy 185.373787 65.130288) (xy 185.409737 65.043497) (xy 185.4405 64.888842) (xy 185.4405 64.731158) - (xy 185.4405 64.731155) (xy 185.440499 64.731153) (xy 185.429319 64.674948) (xy 185.409737 64.576503) - (xy 185.403241 64.560821) (xy 185.349397 64.430827) (xy 185.34939 64.430814) (xy 185.261789 64.299711) - (xy 185.261786 64.299707) (xy 185.150292 64.188213) (xy 185.150288 64.18821) (xy 185.019185 64.100609) - (xy 185.019172 64.100602) (xy 184.873501 64.040264) (xy 184.873489 64.040261) (xy 184.718845 64.0095) - (xy 184.718842 64.0095) (xy 184.561158 64.0095) (xy 184.561155 64.0095) (xy 184.40651 64.040261) - (xy 184.406498 64.040264) (xy 184.260827 64.100602) (xy 184.260814 64.100609) (xy 184.129711 64.18821) - (xy 184.129707 64.188213) (xy 184.018213 64.299707) (xy 184.01821 64.299711) (xy 183.930609 64.430814) - (xy 183.930602 64.430827) (xy 183.870264 64.576498) (xy 183.870261 64.576508) (xy 183.847643 64.690218) - (xy 183.838376 64.707933) (xy 183.833777 64.727392) (xy 183.822512 64.738259) (xy 183.815258 64.752129) - (xy 183.797883 64.762022) (xy 183.783495 64.775905) (xy 183.757245 64.785163) (xy 183.754542 64.786703) - (xy 183.75021 64.787645) (xy 183.738684 64.789937) (xy 183.669093 64.783705) (xy 183.613918 64.740839) - (xy 183.590677 64.674948) (xy 183.5905 64.668318) (xy 183.5905 64.541155) (xy 183.590499 64.541153) - (xy 183.576964 64.473109) (xy 183.559737 64.386503) (xy 183.555579 64.376465) (xy 183.499397 64.240827) - (xy 183.49939 64.240814) (xy 183.411789 64.109711) (xy 183.411786 64.109707) (xy 183.300292 63.998213) - (xy 183.300288 63.99821) (xy 183.169185 63.910609) (xy 183.169172 63.910602) (xy 183.023501 63.850264) - (xy 183.023489 63.850261) (xy 182.868845 63.8195) (xy 182.868842 63.8195) (xy 182.711158 63.8195) - (xy 182.711155 63.8195) (xy 182.628807 63.83588) (xy 182.623374 63.835393) (xy 182.618342 63.837501) - (xy 182.588946 63.832313) (xy 182.559216 63.829653) (xy 182.554907 63.826306) (xy 182.549535 63.825358) - (xy 182.527613 63.805103) (xy 182.504038 63.78679) (xy 182.501158 63.78066) (xy 182.498217 63.777943) - (xy 182.490622 63.758236) (xy 182.484586 63.745388) (xy 182.483693 63.741947) (xy 182.459736 63.621504) - (xy 182.426454 63.541153) (xy 185.7195 63.541153) (xy 185.7195 63.698846) (xy 185.750261 63.853489) - (xy 185.750264 63.853501) (xy 185.810602 63.999172) (xy 185.810609 63.999185) (xy 185.89821 64.130288) - (xy 185.898213 64.130292) (xy 186.009707 64.241786) (xy 186.009711 64.241789) (xy 186.140814 64.32939) - (xy 186.140827 64.329397) (xy 186.267824 64.382) (xy 186.286503 64.389737) (xy 186.402252 64.412761) - (xy 186.441153 64.420499) (xy 186.441156 64.4205) (xy 186.441158 64.4205) (xy 186.598844 64.4205) - (xy 186.598845 64.420499) (xy 186.753497 64.389737) (xy 186.899179 64.329394) (xy 187.030289 64.241789) - (xy 187.141789 64.130289) (xy 187.229394 63.999179) (xy 187.289737 63.853497) (xy 187.3205 63.698842) - (xy 187.3205 63.541158) (xy 187.3205 63.541155) (xy 187.320499 63.541153) (xy 187.306199 63.469257) - (xy 187.302598 63.451153) (xy 192.3445 63.451153) (xy 192.3445 63.608846) (xy 192.375261 63.763489) - (xy 192.375264 63.763501) (xy 192.435602 63.909172) (xy 192.435609 63.909185) (xy 192.52321 64.040288) - (xy 192.523213 64.040292) (xy 192.634707 64.151786) (xy 192.634711 64.151789) (xy 192.765814 64.23939) - (xy 192.765827 64.239397) (xy 192.91144 64.299711) (xy 192.911503 64.299737) (xy 193.060578 64.32939) - (xy 193.066153 64.330499) (xy 193.066156 64.3305) (xy 193.066158 64.3305) (xy 193.223844 64.3305) - (xy 193.223845 64.330499) (xy 193.378497 64.299737) (xy 193.518404 64.241786) (xy 193.524172 64.239397) - (xy 193.524172 64.239396) (xy 193.524179 64.239394) (xy 193.655289 64.151789) (xy 193.766789 64.040289) + (xy 181.17971 64.47679) (xy 181.310813 64.564391) (xy 181.310826 64.564398) (xy 181.405117 64.603454) + (xy 181.456502 64.624738) (xy 181.611152 64.6555) (xy 181.611155 64.655501) (xy 181.611157 64.655501) + (xy 181.768843 64.655501) (xy 181.768844 64.6555) (xy 181.923496 64.624738) (xy 182.03993 64.57651) + (xy 182.069171 64.564398) (xy 182.069171 64.564397) (xy 182.069178 64.564395) (xy 182.188611 64.484591) + (xy 182.255286 64.463715) (xy 182.322666 64.482199) (xy 182.326377 64.484584) (xy 182.445821 64.564394) + (xy 182.445823 64.564395) (xy 182.445827 64.564397) (xy 182.591498 64.624735) (xy 182.591503 64.624737) + (xy 182.649767 64.636326) (xy 182.752132 64.656689) (xy 182.751825 64.658228) (xy 182.809504 64.681507) + (xy 182.849872 64.738534) (xy 182.853001 64.808334) (xy 182.817897 64.868745) (xy 182.80147 64.881864) + (xy 182.687211 64.95821) (xy 182.687207 64.958213) (xy 182.575713 65.069707) (xy 182.57571 65.069711) + (xy 182.488109 65.200814) (xy 182.488102 65.200827) (xy 182.427764 65.346498) (xy 182.427761 65.34651) + (xy 182.397 65.501153) (xy 182.397 65.658846) (xy 182.427761 65.813489) (xy 182.427764 65.813501) + (xy 182.488102 65.959172) (xy 182.488109 65.959185) (xy 182.53035 66.022402) (xy 182.551228 66.089079) + (xy 182.532744 66.156459) (xy 182.480765 66.20315) (xy 182.45144 66.21291) (xy 182.326508 66.237761) + (xy 182.326498 66.237764) (xy 182.180827 66.298102) (xy 182.180814 66.298109) (xy 182.049711 66.38571) + (xy 182.049707 66.385713) (xy 181.938213 66.497207) (xy 181.93821 66.497211) (xy 181.850609 66.628314) + (xy 181.850602 66.628327) (xy 181.790264 66.773998) (xy 181.790261 66.77401) (xy 181.7595 66.928653) + (xy 181.7595 67.086346) (xy 181.790261 67.240989) (xy 181.790264 67.241001) (xy 181.850602 67.386672) + (xy 181.850609 67.386685) (xy 181.93821 67.517788) (xy 181.938213 67.517792) (xy 182.049707 67.629286) + (xy 182.049711 67.629289) (xy 182.180814 67.71689) (xy 182.180827 67.716897) (xy 182.286096 67.7605) + (xy 182.326503 67.777237) (xy 182.445927 67.800992) (xy 182.481153 67.807999) (xy 182.481156 67.808) + (xy 182.481158 67.808) (xy 182.638844 67.808) (xy 182.638845 67.807999) (xy 182.793497 67.777237) + (xy 182.911261 67.728458) (xy 182.939172 67.716897) (xy 182.939172 67.716896) (xy 182.939179 67.716894) + (xy 183.070289 67.629289) (xy 183.181789 67.517789) (xy 183.269394 67.386679) (xy 183.329737 67.240997) + (xy 183.3605 67.086342) (xy 183.3605 66.928658) (xy 183.3605 66.928655) (xy 183.360499 66.928653) + (xy 184.2895 66.928653) (xy 184.2895 67.086346) (xy 184.320261 67.240989) (xy 184.320264 67.241001) + (xy 184.380602 67.386672) (xy 184.380609 67.386685) (xy 184.46821 67.517788) (xy 184.468213 67.517792) + (xy 184.579707 67.629286) (xy 184.579711 67.629289) (xy 184.710814 67.71689) (xy 184.710827 67.716897) + (xy 184.816096 67.7605) (xy 184.856503 67.777237) (xy 184.975927 67.800992) (xy 185.011153 67.807999) + (xy 185.011156 67.808) (xy 185.011158 67.808) (xy 185.168844 67.808) (xy 185.168845 67.807999) (xy 185.323497 67.777237) + (xy 185.441261 67.728458) (xy 185.469172 67.716897) (xy 185.469172 67.716896) (xy 185.469179 67.716894) + (xy 185.597499 67.631153) (xy 205.6595 67.631153) (xy 205.6595 67.788846) (xy 205.690261 67.943489) + (xy 205.690264 67.943501) (xy 205.750602 68.089172) (xy 205.750609 68.089185) (xy 205.83821 68.220288) + (xy 205.838213 68.220292) (xy 205.949707 68.331786) (xy 205.949711 68.331789) (xy 206.080814 68.41939) + (xy 206.080827 68.419397) (xy 206.226498 68.479735) (xy 206.226503 68.479737) (xy 206.381153 68.510499) + (xy 206.381156 68.5105) (xy 206.381158 68.5105) (xy 206.538844 68.5105) (xy 206.538845 68.510499) + (xy 206.693497 68.479737) (xy 206.806166 68.433067) (xy 206.839172 68.419397) (xy 206.839172 68.419396) + (xy 206.839179 68.419394) (xy 206.970289 68.331789) (xy 207.081789 68.220289) (xy 207.169394 68.089179) + (xy 207.229737 67.943497) (xy 207.2605 67.788842) (xy 207.2605 67.631158) (xy 207.2605 67.631155) + (xy 207.260499 67.631153) (xy 207.246403 67.560288) (xy 207.229737 67.476503) (xy 207.227163 67.470288) + (xy 207.169397 67.330827) (xy 207.16939 67.330814) (xy 207.081789 67.199711) (xy 207.081786 67.199707) + (xy 206.970292 67.088213) (xy 206.970288 67.08821) (xy 206.839185 67.000609) (xy 206.839172 67.000602) + (xy 206.693501 66.940264) (xy 206.693489 66.940261) (xy 206.538845 66.9095) (xy 206.538842 66.9095) + (xy 206.381158 66.9095) (xy 206.381155 66.9095) (xy 206.22651 66.940261) (xy 206.226498 66.940264) + (xy 206.080827 67.000602) (xy 206.080814 67.000609) (xy 205.949711 67.08821) (xy 205.949707 67.088213) + (xy 205.838213 67.199707) (xy 205.83821 67.199711) (xy 205.750609 67.330814) (xy 205.750602 67.330827) + (xy 205.690264 67.476498) (xy 205.690261 67.47651) (xy 205.6595 67.631153) (xy 185.597499 67.631153) + (xy 185.600289 67.629289) (xy 185.711789 67.517789) (xy 185.799394 67.386679) (xy 185.859737 67.240997) + (xy 185.8905 67.086342) (xy 185.8905 66.928658) (xy 185.8905 66.928655) (xy 185.890499 66.928653) + (xy 185.881181 66.881811) (xy 185.859737 66.774003) (xy 185.859735 66.773998) (xy 185.83427 66.712518) + (xy 185.817136 66.671153) (xy 191.184498 66.671153) (xy 191.184498 66.828846) (xy 191.215259 66.983489) + (xy 191.215262 66.983501) (xy 191.2756 67.129172) (xy 191.275607 67.129185) (xy 191.363208 67.260288) + (xy 191.363211 67.260292) (xy 191.474705 67.371786) (xy 191.474709 67.371789) (xy 191.605812 67.45939) + (xy 191.605825 67.459397) (xy 191.746798 67.517789) (xy 191.751501 67.519737) (xy 191.874037 67.544111) + (xy 191.906151 67.550499) (xy 191.906154 67.5505) (xy 191.906156 67.5505) (xy 192.063842 67.5505) + (xy 192.063843 67.550499) (xy 192.218495 67.519737) (xy 192.229764 67.515069) (xy 192.240784 67.510505) + (xy 192.36417 67.459397) (xy 192.36417 67.459396) (xy 192.364177 67.459394) (xy 192.495287 67.371789) + (xy 192.606787 67.260289) (xy 192.694392 67.129179) (xy 192.754735 66.983497) (xy 192.785498 66.828842) + (xy 192.785498 66.671158) (xy 192.785498 66.671155) (xy 192.785497 66.671153) (xy 192.776978 66.628327) + (xy 192.754735 66.516503) (xy 192.754733 66.516498) (xy 192.694395 66.370827) (xy 192.694388 66.370814) + (xy 192.606787 66.239711) (xy 192.606784 66.239707) (xy 192.49529 66.128213) (xy 192.495286 66.12821) + (xy 192.364183 66.040609) (xy 192.36417 66.040602) (xy 192.277311 66.004625) (xy 192.218499 65.980264) + (xy 192.218487 65.980261) (xy 192.063843 65.9495) (xy 192.06384 65.9495) (xy 191.906156 65.9495) + (xy 191.906153 65.9495) (xy 191.751508 65.980261) (xy 191.751496 65.980264) (xy 191.605825 66.040602) + (xy 191.605812 66.040609) (xy 191.474709 66.12821) (xy 191.474705 66.128213) (xy 191.363211 66.239707) + (xy 191.363208 66.239711) (xy 191.275607 66.370814) (xy 191.2756 66.370827) (xy 191.215262 66.516498) + (xy 191.215259 66.51651) (xy 191.184498 66.671153) (xy 185.817136 66.671153) (xy 185.799395 66.628323) + (xy 185.79939 66.628314) (xy 185.711789 66.497211) (xy 185.711786 66.497207) (xy 185.600292 66.385713) + (xy 185.600288 66.38571) (xy 185.469185 66.298109) (xy 185.469172 66.298102) (xy 185.323501 66.237764) + (xy 185.323489 66.237761) (xy 185.168845 66.207) (xy 185.168842 66.207) (xy 185.011158 66.207) (xy 185.011155 66.207) + (xy 184.85651 66.237761) (xy 184.856498 66.237764) (xy 184.710827 66.298102) (xy 184.710814 66.298109) + (xy 184.579711 66.38571) (xy 184.579707 66.385713) (xy 184.468213 66.497207) (xy 184.46821 66.497211) + (xy 184.380609 66.628314) (xy 184.380602 66.628327) (xy 184.320264 66.773998) (xy 184.320261 66.77401) + (xy 184.2895 66.928653) (xy 183.360499 66.928653) (xy 183.351181 66.881811) (xy 183.329737 66.774003) + (xy 183.329735 66.773998) (xy 183.269397 66.628327) (xy 183.269395 66.628323) (xy 183.269394 66.628321) + (xy 183.227148 66.565096) (xy 183.206271 66.49842) (xy 183.224755 66.43104) (xy 183.276734 66.384349) + (xy 183.30606 66.374589) (xy 183.356321 66.364591) (xy 183.430997 66.349737) (xy 183.576679 66.289394) + (xy 183.707789 66.201789) (xy 183.819289 66.090289) (xy 183.906894 65.959179) (xy 183.907177 65.958497) + (xy 183.933001 65.896151) (xy 195.3495 65.896151) (xy 195.3495 66.053844) (xy 195.380261 66.208487) + (xy 195.380264 66.208499) (xy 195.440602 66.35417) (xy 195.440609 66.354183) (xy 195.52821 66.485286) + (xy 195.528213 66.48529) (xy 195.639707 66.596784) (xy 195.639711 66.596787) (xy 195.770814 66.684388) + (xy 195.770827 66.684395) (xy 195.916498 66.744733) (xy 195.916503 66.744735) (xy 196.063617 66.773998) + (xy 196.071153 66.775497) (xy 196.071156 66.775498) (xy 196.071158 66.775498) (xy 196.228844 66.775498) + (xy 196.228845 66.775497) (xy 196.383497 66.744735) (xy 196.529179 66.684392) (xy 196.660289 66.596787) + (xy 196.771789 66.485287) (xy 196.859394 66.354177) (xy 196.862456 66.346786) (xy 196.884274 66.294111) + (xy 196.919737 66.208495) (xy 196.9505 66.05384) (xy 196.9505 65.896156) (xy 196.9505 65.896153) + (xy 196.950499 65.896151) (xy 196.942411 65.855492) (xy 196.919737 65.741501) (xy 196.919735 65.741496) + (xy 196.859397 65.595825) (xy 196.85939 65.595812) (xy 196.771789 65.464709) (xy 196.771786 65.464705) + (xy 196.660292 65.353211) (xy 196.660288 65.353208) (xy 196.529185 65.265607) (xy 196.529172 65.2656) + (xy 196.383501 65.205262) (xy 196.383489 65.205259) (xy 196.228845 65.174498) (xy 196.228842 65.174498) + (xy 196.071158 65.174498) (xy 196.071155 65.174498) (xy 195.91651 65.205259) (xy 195.916498 65.205262) + (xy 195.770827 65.2656) (xy 195.770814 65.265607) (xy 195.639711 65.353208) (xy 195.639707 65.353211) + (xy 195.528213 65.464705) (xy 195.52821 65.464709) (xy 195.440609 65.595812) (xy 195.440602 65.595825) + (xy 195.380264 65.741496) (xy 195.380261 65.741508) (xy 195.3495 65.896151) (xy 183.933001 65.896151) + (xy 183.967237 65.813497) (xy 183.998 65.658842) (xy 183.998 65.57577) (xy 184.017685 65.508731) + (xy 184.070489 65.462976) (xy 184.139647 65.453032) (xy 184.190888 65.472666) (xy 184.260821 65.519394) + (xy 184.260823 65.519395) (xy 184.260827 65.519397) (xy 184.406498 65.579735) (xy 184.406503 65.579737) + (xy 184.560092 65.610288) (xy 184.561153 65.610499) (xy 184.561156 65.6105) (xy 184.561158 65.6105) + (xy 184.718844 65.6105) (xy 184.718845 65.610499) (xy 184.873497 65.579737) (xy 185.019179 65.519394) + (xy 185.150289 65.431789) (xy 185.261789 65.320289) (xy 185.349394 65.189179) (xy 185.409737 65.043497) + (xy 185.4405 64.888842) (xy 185.4405 64.731158) (xy 185.4405 64.731155) (xy 185.440499 64.731153) + (xy 185.435595 64.706498) (xy 185.409737 64.576503) (xy 185.403241 64.560821) (xy 185.349397 64.430827) + (xy 185.34939 64.430814) (xy 185.261789 64.299711) (xy 185.261786 64.299707) (xy 185.150292 64.188213) + (xy 185.150288 64.18821) (xy 185.019185 64.100609) (xy 185.019172 64.100602) (xy 184.873501 64.040264) + (xy 184.873489 64.040261) (xy 184.718845 64.0095) (xy 184.718842 64.0095) (xy 184.561158 64.0095) + (xy 184.561155 64.0095) (xy 184.40651 64.040261) (xy 184.406498 64.040264) (xy 184.260827 64.100602) + (xy 184.260814 64.100609) (xy 184.129711 64.18821) (xy 184.129707 64.188213) (xy 184.018213 64.299707) + (xy 184.01821 64.299711) (xy 183.930609 64.430814) (xy 183.930602 64.430827) (xy 183.870264 64.576498) + (xy 183.870261 64.57651) (xy 183.8395 64.731153) (xy 183.8395 64.814229) (xy 183.819815 64.881268) + (xy 183.767011 64.927023) (xy 183.697853 64.936967) (xy 183.646609 64.917331) (xy 183.576685 64.870609) + (xy 183.576672 64.870602) (xy 183.431001 64.810264) (xy 183.430989 64.810261) (xy 183.270368 64.778311) + (xy 183.270673 64.776776) (xy 183.212977 64.753477) (xy 183.172619 64.696442) (xy 183.169503 64.626642) + (xy 183.204619 64.566238) (xy 183.22103 64.553135) (xy 183.318988 64.487681) (xy 183.335289 64.476789) + (xy 183.446789 64.365289) (xy 183.534394 64.234179) (xy 183.54429 64.210289) (xy 183.560869 64.170263) + (xy 183.594737 64.088497) (xy 183.6255 63.933842) (xy 183.6255 63.776158) (xy 183.6255 63.776155) + (xy 183.625499 63.776153) (xy 183.614277 63.719735) (xy 183.594737 63.621503) (xy 183.561455 63.541153) + (xy 185.7195 63.541153) (xy 185.7195 63.698846) (xy 185.750261 63.853489) (xy 185.750264 63.853501) + (xy 185.810602 63.999172) (xy 185.810609 63.999185) (xy 185.89821 64.130288) (xy 185.898213 64.130292) + (xy 186.009707 64.241786) (xy 186.009711 64.241789) (xy 186.140814 64.32939) (xy 186.140827 64.329397) + (xy 186.286498 64.389735) (xy 186.286503 64.389737) (xy 186.436523 64.419578) (xy 186.441153 64.420499) + (xy 186.441156 64.4205) (xy 186.441158 64.4205) (xy 186.598844 64.4205) (xy 186.598845 64.420499) + (xy 186.753497 64.389737) (xy 186.899179 64.329394) (xy 187.030289 64.241789) (xy 187.141789 64.130289) + (xy 187.229394 63.999179) (xy 187.289737 63.853497) (xy 187.3205 63.698842) (xy 187.3205 63.541158) + (xy 187.3205 63.541155) (xy 187.320499 63.541153) (xy 187.306199 63.469257) (xy 187.302598 63.451153) + (xy 192.3445 63.451153) (xy 192.3445 63.608846) (xy 192.375261 63.763489) (xy 192.375264 63.763501) + (xy 192.435602 63.909172) (xy 192.435609 63.909185) (xy 192.52321 64.040288) (xy 192.523213 64.040292) + (xy 192.634707 64.151786) (xy 192.634711 64.151789) (xy 192.765814 64.23939) (xy 192.765827 64.239397) + (xy 192.91144 64.299711) (xy 192.911503 64.299737) (xy 193.060578 64.32939) (xy 193.066153 64.330499) + (xy 193.066156 64.3305) (xy 193.066158 64.3305) (xy 193.223844 64.3305) (xy 193.223845 64.330499) + (xy 193.378497 64.299737) (xy 193.524179 64.239394) (xy 193.655289 64.151789) (xy 193.766789 64.040289) (xy 193.854394 63.909179) (xy 193.914737 63.763497) (xy 193.9455 63.608842) (xy 193.9455 63.451158) - (xy 193.9455 63.451155) (xy 193.945499 63.451153) (xy 193.921253 63.329257) (xy 193.917651 63.311153) - (xy 195.4495 63.311153) (xy 195.4495 63.468846) (xy 195.480261 63.623489) (xy 195.480264 63.623501) - (xy 195.540602 63.769172) (xy 195.540609 63.769185) (xy 195.62821 63.900288) (xy 195.628213 63.900292) - (xy 195.739707 64.011786) (xy 195.739711 64.011789) (xy 195.870814 64.09939) (xy 195.870827 64.099397) - (xy 196.016498 64.159735) (xy 196.016503 64.159737) (xy 196.159661 64.188213) (xy 196.171153 64.190499) - (xy 196.171156 64.1905) (xy 196.171158 64.1905) (xy 196.328844 64.1905) (xy 196.328845 64.190499) - (xy 196.483497 64.159737) (xy 196.629179 64.099394) (xy 196.760289 64.011789) (xy 196.765302 64.006776) - (xy 196.778674 63.993405) (xy 196.839997 63.95992) (xy 196.909689 63.964904) (xy 196.965622 64.006776) - (xy 196.990039 64.07224) (xy 196.990355 64.081086) (xy 196.990355 64.118846) (xy 197.021116 64.273489) - (xy 197.021119 64.273501) (xy 197.081457 64.419172) (xy 197.081464 64.419185) (xy 197.169065 64.550288) - (xy 197.169068 64.550292) (xy 197.280562 64.661786) (xy 197.280566 64.661789) (xy 197.411669 64.74939) - (xy 197.411682 64.749397) (xy 197.557353 64.809735) (xy 197.557358 64.809737) (xy 197.712008 64.840499) - (xy 197.712011 64.8405) (xy 197.712013 64.8405) (xy 197.869699 64.8405) (xy 197.8697 64.840499) - (xy 198.024352 64.809737) (xy 198.170034 64.749394) (xy 198.301144 64.661789) (xy 198.412644 64.550289) - (xy 198.500249 64.419179) (xy 198.560592 64.273497) (xy 198.591355 64.118842) (xy 198.591355 63.961158) - (xy 198.591355 63.961155) (xy 198.591354 63.961153) (xy 198.5813 63.910609) (xy 198.560592 63.806503) - (xy 198.548021 63.776154) (xy 198.500252 63.660827) (xy 198.500245 63.660814) (xy 198.412644 63.529711) - (xy 198.412641 63.529707) (xy 198.301144 63.41821) (xy 198.286114 63.408168) (xy 198.17004 63.330609) - (xy 198.170027 63.330602) (xy 198.123072 63.311153) (xy 200.5695 63.311153) (xy 200.5695 63.468846) + (xy 193.9455 63.451155) (xy 193.945499 63.451153) (xy 193.940169 63.424359) (xy 193.914737 63.296503) + (xy 193.899138 63.258844) (xy 193.854394 63.15082) (xy 193.821207 63.101153) (xy 195.3395 63.101153) + (xy 195.3395 63.258846) (xy 195.370261 63.413489) (xy 195.370264 63.413501) (xy 195.430602 63.559172) + (xy 195.430609 63.559185) (xy 195.51821 63.690288) (xy 195.518213 63.690292) (xy 195.629707 63.801786) + (xy 195.629711 63.801789) (xy 195.760814 63.88939) (xy 195.760827 63.889397) (xy 195.906498 63.949735) + (xy 195.906503 63.949737) (xy 196.03015 63.974332) (xy 196.061153 63.980499) (xy 196.061156 63.9805) + (xy 196.061158 63.9805) (xy 196.218844 63.9805) (xy 196.218845 63.980499) (xy 196.373497 63.949737) + (xy 196.519179 63.889394) (xy 196.650289 63.801789) (xy 196.658426 63.793652) (xy 197.129501 63.793652) + (xy 197.129501 63.951345) (xy 197.160262 64.105988) (xy 197.160265 64.106) (xy 197.220603 64.251671) + (xy 197.22061 64.251684) (xy 197.308211 64.382787) (xy 197.308214 64.382791) (xy 197.419708 64.494285) + (xy 197.419712 64.494288) (xy 197.550815 64.581889) (xy 197.550828 64.581896) (xy 197.654262 64.624739) + (xy 197.696504 64.642236) (xy 197.851154 64.672998) (xy 197.851157 64.672999) (xy 197.851159 64.672999) + (xy 198.008845 64.672999) (xy 198.008846 64.672998) (xy 198.163498 64.642236) (xy 198.30918 64.581893) + (xy 198.44029 64.494288) (xy 198.55179 64.382788) (xy 198.639395 64.251678) (xy 198.699738 64.105996) + (xy 198.730501 63.951341) (xy 198.730501 63.793657) (xy 198.730501 63.793654) (xy 198.7305 63.793652) + (xy 198.725631 63.769172) (xy 198.699738 63.639002) (xy 198.699736 63.638997) (xy 198.639398 63.493326) + (xy 198.639391 63.493313) (xy 198.559639 63.373957) (xy 198.559638 63.373955) (xy 198.551791 63.362211) + (xy 198.551787 63.362206) (xy 198.500734 63.311153) (xy 200.5695 63.311153) (xy 200.5695 63.468846) (xy 200.600261 63.623489) (xy 200.600264 63.623501) (xy 200.660602 63.769172) (xy 200.660609 63.769185) (xy 200.74821 63.900288) (xy 200.748213 63.900292) (xy 200.859707 64.011786) (xy 200.859711 64.011789) (xy 200.990814 64.09939) (xy 200.990827 64.099397) (xy 201.136498 64.159735) (xy 201.136503 64.159737) (xy 201.279661 64.188213) (xy 201.291153 64.190499) (xy 201.291156 64.1905) (xy 201.291158 64.1905) - (xy 201.448844 64.1905) (xy 201.448845 64.190499) (xy 201.603497 64.159737) (xy 201.749179 64.099394) - (xy 201.880289 64.011789) (xy 201.991789 63.900289) (xy 202.079394 63.769179) (xy 202.089249 63.745388) - (xy 202.122797 63.664394) (xy 202.139737 63.623497) (xy 202.1705 63.468842) (xy 202.1705 63.311158) - (xy 202.1705 63.311155) (xy 202.170499 63.311153) (xy 202.167584 63.296498) (xy 202.139737 63.156503) - (xy 202.137386 63.150827) (xy 202.079397 63.010827) (xy 202.07939 63.010814) (xy 201.991789 62.879711) - (xy 201.991786 62.879707) (xy 201.880292 62.768213) (xy 201.880288 62.76821) (xy 201.749185 62.680609) - (xy 201.749172 62.680602) (xy 201.603501 62.620264) (xy 201.603489 62.620261) (xy 201.448845 62.5895) - (xy 201.448842 62.5895) (xy 201.291158 62.5895) (xy 201.291155 62.5895) (xy 201.13651 62.620261) - (xy 201.136498 62.620264) (xy 200.990827 62.680602) (xy 200.990814 62.680609) (xy 200.859711 62.76821) - (xy 200.859707 62.768213) (xy 200.748213 62.879707) (xy 200.74821 62.879711) (xy 200.660609 63.010814) - (xy 200.660602 63.010827) (xy 200.600264 63.156498) (xy 200.600261 63.15651) (xy 200.5695 63.311153) - (xy 198.123072 63.311153) (xy 198.024356 63.270264) (xy 198.024344 63.270261) (xy 197.8697 63.2395) - (xy 197.869697 63.2395) (xy 197.712013 63.2395) (xy 197.71201 63.2395) (xy 197.557365 63.270261) - (xy 197.557353 63.270264) (xy 197.411682 63.330602) (xy 197.411669 63.330609) (xy 197.280566 63.41821) - (xy 197.280562 63.418213) (xy 197.262181 63.436595) (xy 197.200858 63.47008) (xy 197.131166 63.465096) - (xy 197.075233 63.423224) (xy 197.050816 63.35776) (xy 197.0505 63.348914) (xy 197.0505 63.311155) - (xy 197.050499 63.311153) (xy 197.047584 63.296498) (xy 197.019737 63.156503) (xy 197.017386 63.150827) - (xy 196.959397 63.010827) (xy 196.95939 63.010814) (xy 196.871789 62.879711) (xy 196.871786 62.879707) - (xy 196.760292 62.768213) (xy 196.760288 62.76821) (xy 196.629185 62.680609) (xy 196.629172 62.680602) - (xy 196.483501 62.620264) (xy 196.483489 62.620261) (xy 196.328845 62.5895) (xy 196.328842 62.5895) - (xy 196.171158 62.5895) (xy 196.171155 62.5895) (xy 196.01651 62.620261) (xy 196.016498 62.620264) - (xy 195.870827 62.680602) (xy 195.870814 62.680609) (xy 195.739711 62.76821) (xy 195.739707 62.768213) - (xy 195.628213 62.879707) (xy 195.62821 62.879711) (xy 195.540609 63.010814) (xy 195.540602 63.010827) - (xy 195.480264 63.156498) (xy 195.480261 63.15651) (xy 195.4495 63.311153) (xy 193.917651 63.311153) - (xy 193.914738 63.296508) (xy 193.914737 63.296507) (xy 193.914737 63.296503) (xy 193.914735 63.296498) - (xy 193.854397 63.150827) (xy 193.85439 63.150814) (xy 193.766789 63.019711) (xy 193.766786 63.019707) - (xy 193.655292 62.908213) (xy 193.655288 62.90821) (xy 193.524185 62.820609) (xy 193.524172 62.820602) - (xy 193.378501 62.760264) (xy 193.378489 62.760261) (xy 193.223845 62.7295) (xy 193.223842 62.7295) - (xy 193.066158 62.7295) (xy 193.066155 62.7295) (xy 192.91151 62.760261) (xy 192.911498 62.760264) - (xy 192.765827 62.820602) (xy 192.765814 62.820609) (xy 192.634711 62.90821) (xy 192.634707 62.908213) - (xy 192.523213 63.019707) (xy 192.52321 63.019711) (xy 192.435609 63.150814) (xy 192.435602 63.150827) - (xy 192.375264 63.296498) (xy 192.375261 63.29651) (xy 192.3445 63.451153) (xy 187.302598 63.451153) - (xy 187.289738 63.386508) (xy 187.289737 63.386507) (xy 187.289737 63.386503) (xy 187.28518 63.375501) - (xy 187.229397 63.240827) (xy 187.22939 63.240814) (xy 187.141789 63.109711) (xy 187.141786 63.109707) - (xy 187.030292 62.998213) (xy 187.030288 62.99821) (xy 186.899185 62.910609) (xy 186.899172 62.910602) - (xy 186.753501 62.850264) (xy 186.753489 62.850261) (xy 186.598845 62.8195) (xy 186.598842 62.8195) - (xy 186.441158 62.8195) (xy 186.441155 62.8195) (xy 186.28651 62.850261) (xy 186.286498 62.850264) - (xy 186.140827 62.910602) (xy 186.140814 62.910609) (xy 186.009711 62.99821) (xy 186.009707 62.998213) - (xy 185.898213 63.109707) (xy 185.89821 63.109711) (xy 185.810609 63.240814) (xy 185.810602 63.240827) - (xy 185.750264 63.386498) (xy 185.750261 63.38651) (xy 185.7195 63.541153) (xy 182.426454 63.541153) - (xy 182.415813 63.515464) (xy 182.399396 63.475828) (xy 182.399392 63.475821) (xy 182.395006 63.469257) - (xy 182.353 63.40639) (xy 182.332123 63.339715) (xy 182.350607 63.272335) (xy 182.353002 63.268609) - (xy 182.399389 63.199187) (xy 182.39939 63.199184) (xy 182.399394 63.199179) (xy 182.459737 63.053497) - (xy 182.4905 62.898842) (xy 182.4905 62.741158) (xy 182.4905 62.741155) (xy 182.490499 62.741153) - (xy 182.486995 62.723538) (xy 182.459737 62.586503) (xy 182.455315 62.575827) (xy 182.399397 62.440827) - (xy 182.39939 62.440814) (xy 182.311789 62.309711) (xy 182.311786 62.309707) (xy 182.200292 62.198213) - (xy 182.200288 62.19821) (xy 182.069185 62.110609) (xy 182.069172 62.110602) (xy 181.923501 62.050264) - (xy 181.923489 62.050261) (xy 181.768845 62.0195) (xy 181.768842 62.0195) (xy 181.611158 62.0195) - (xy 181.611155 62.0195) (xy 181.45651 62.050261) (xy 181.456498 62.050264) (xy 181.310827 62.110602) - (xy 181.310814 62.110609) (xy 181.179711 62.19821) (xy 181.179707 62.198213) (xy 181.068213 62.309707) - (xy 181.06821 62.309711) (xy 180.980609 62.440814) (xy 180.980602 62.440827) (xy 180.920264 62.586498) - (xy 180.920261 62.58651) (xy 180.8895 62.741153) (xy 180.8895 62.898846) (xy 180.920261 63.053489) - (xy 180.920264 63.053501) (xy 180.980602 63.199172) (xy 180.980609 63.199184) (xy 181.026997 63.268608) - (xy 181.047875 63.335285) (xy 181.029391 63.402665) (xy 181.026997 63.406389) (xy 180.980611 63.47581) - (xy 180.980601 63.475828) (xy 180.920263 63.621499) (xy 180.92026 63.621511) (xy 180.889499 63.776154) - (xy 164.4505 63.776154) (xy 164.4505 63.735931) (xy 164.425501 63.610256) (xy 164.415098 63.585143) - (xy 164.412732 63.572037) (xy 164.415096 63.550011) (xy 164.412728 63.527987) (xy 164.420187 63.502582) - (xy 164.420188 63.502569) (xy 164.424885 63.49123) (xy 164.468726 63.436828) (xy 164.535021 63.414764) - (xy 164.586897 63.424124) (xy 164.711724 63.475828) (xy 164.733148 63.484702) (xy 164.887798 63.515464) - (xy 164.887801 63.515465) (xy 164.887803 63.515465) (xy 165.045489 63.515465) (xy 165.04549 63.515464) - (xy 165.200142 63.484702) (xy 165.345824 63.424359) (xy 165.476934 63.336754) (xy 165.588434 63.225254) - (xy 165.676039 63.094144) (xy 165.736382 62.948462) (xy 165.763114 62.814071) (xy 175.599499 62.814071) - (xy 175.624497 62.939738) (xy 175.624499 62.939744) (xy 175.673533 63.058124) (xy 175.673538 63.058133) - (xy 175.744723 63.164668) (xy 175.744726 63.164672) (xy 175.835327 63.255273) (xy 175.835331 63.255276) - (xy 175.941866 63.326461) (xy 175.941875 63.326466) (xy 175.966713 63.336754) (xy 176.060256 63.375501) - (xy 176.06026 63.375501) (xy 176.060261 63.375502) (xy 176.185928 63.4005) (xy 176.185931 63.4005) - (xy 176.314071 63.4005) (xy 176.398615 63.383682) (xy 176.439744 63.375501) (xy 176.558127 63.326465) - (xy 176.664669 63.255276) (xy 176.755276 63.164669) (xy 176.826465 63.058127) (xy 176.875501 62.939744) - (xy 176.887443 62.879711) (xy 176.9005 62.814071) (xy 176.9005 62.685928) (xy 176.875502 62.560261) - (xy 176.875501 62.56026) (xy 176.875501 62.560256) (xy 176.826465 62.441873) (xy 176.826464 62.441872) - (xy 176.826461 62.441866) (xy 176.755276 62.335331) (xy 176.755273 62.335327) (xy 176.664672 62.244726) - (xy 176.664668 62.244723) (xy 176.558133 62.173538) (xy 176.558124 62.173533) (xy 176.439744 62.124499) - (xy 176.439738 62.124497) (xy 176.314071 62.0995) (xy 176.314069 62.0995) (xy 176.185931 62.0995) - (xy 176.185929 62.0995) (xy 176.060261 62.124497) (xy 176.060255 62.124499) (xy 175.941875 62.173533) - (xy 175.941866 62.173538) (xy 175.835331 62.244723) (xy 175.835327 62.244726) (xy 175.744726 62.335327) - (xy 175.744723 62.335331) (xy 175.673538 62.441866) (xy 175.673533 62.441875) (xy 175.624499 62.560255) - (xy 175.624497 62.560261) (xy 175.5995 62.685928) (xy 175.5995 62.685931) (xy 175.5995 62.814069) - (xy 175.5995 62.814071) (xy 175.599499 62.814071) (xy 165.763114 62.814071) (xy 165.767145 62.793807) - (xy 165.767145 62.636123) (xy 165.767145 62.63612) (xy 165.767144 62.636118) (xy 165.754157 62.570827) - (xy 165.736382 62.481468) (xy 165.719982 62.441875) (xy 165.676042 62.335792) (xy 165.676035 62.335779) + (xy 201.448844 64.1905) (xy 201.448845 64.190499) (xy 201.603497 64.159737) (xy 201.73326 64.105988) + (xy 201.749172 64.099397) (xy 201.749172 64.099396) (xy 201.749179 64.099394) (xy 201.880289 64.011789) + (xy 201.991789 63.900289) (xy 202.079394 63.769179) (xy 202.139737 63.623497) (xy 202.1705 63.468842) + (xy 202.1705 63.311158) (xy 202.1705 63.311155) (xy 202.170499 63.311153) (xy 202.160094 63.258844) + (xy 202.139737 63.156503) (xy 202.137386 63.150827) (xy 202.079397 63.010827) (xy 202.07939 63.010814) + (xy 201.991789 62.879711) (xy 201.991786 62.879707) (xy 201.880292 62.768213) (xy 201.880288 62.76821) + (xy 201.749185 62.680609) (xy 201.749172 62.680602) (xy 201.603501 62.620264) (xy 201.603489 62.620261) + (xy 201.448845 62.5895) (xy 201.448842 62.5895) (xy 201.291158 62.5895) (xy 201.291155 62.5895) + (xy 201.13651 62.620261) (xy 201.136498 62.620264) (xy 200.990827 62.680602) (xy 200.990814 62.680609) + (xy 200.859711 62.76821) (xy 200.859707 62.768213) (xy 200.748213 62.879707) (xy 200.74821 62.879711) + (xy 200.660609 63.010814) (xy 200.660602 63.010827) (xy 200.600264 63.156498) (xy 200.600261 63.15651) + (xy 200.5695 63.311153) (xy 198.500734 63.311153) (xy 198.440293 63.250712) (xy 198.440289 63.250709) + (xy 198.309186 63.163108) (xy 198.309173 63.163101) (xy 198.163502 63.102763) (xy 198.16349 63.10276) + (xy 198.008846 63.071999) (xy 198.008843 63.071999) (xy 197.851159 63.071999) (xy 197.851156 63.071999) + (xy 197.696511 63.10276) (xy 197.696499 63.102763) (xy 197.550828 63.163101) (xy 197.550815 63.163108) + (xy 197.419712 63.250709) (xy 197.419708 63.250712) (xy 197.308214 63.362206) (xy 197.308211 63.36221) + (xy 197.22061 63.493313) (xy 197.220603 63.493326) (xy 197.160265 63.638997) (xy 197.160262 63.639009) + (xy 197.129501 63.793652) (xy 196.658426 63.793652) (xy 196.69437 63.757708) (xy 196.752195 63.699884) + (xy 196.761786 63.690292) (xy 196.761789 63.690289) (xy 196.849394 63.559179) (xy 196.856859 63.541158) + (xy 196.867501 63.515464) (xy 196.909737 63.413497) (xy 196.9405 63.258842) (xy 196.9405 63.101158) + (xy 196.9405 63.101155) (xy 196.940499 63.101153) (xy 196.935936 63.078213) (xy 196.909737 62.946503) + (xy 196.90301 62.930263) (xy 196.849397 62.800827) (xy 196.84939 62.800814) (xy 196.761789 62.669711) + (xy 196.761786 62.669707) (xy 196.650292 62.558213) (xy 196.650288 62.55821) (xy 196.519185 62.470609) + (xy 196.519172 62.470602) (xy 196.373501 62.410264) (xy 196.373489 62.410261) (xy 196.218845 62.3795) + (xy 196.218842 62.3795) (xy 196.061158 62.3795) (xy 196.061155 62.3795) (xy 195.90651 62.410261) + (xy 195.906498 62.410264) (xy 195.760827 62.470602) (xy 195.760814 62.470609) (xy 195.629711 62.55821) + (xy 195.629707 62.558213) (xy 195.518213 62.669707) (xy 195.51821 62.669711) (xy 195.430609 62.800814) + (xy 195.430602 62.800827) (xy 195.370264 62.946498) (xy 195.370261 62.94651) (xy 195.3395 63.101153) + (xy 193.821207 63.101153) (xy 193.766789 63.019711) (xy 193.766786 63.019707) (xy 193.655292 62.908213) + (xy 193.655288 62.90821) (xy 193.524185 62.820609) (xy 193.524172 62.820602) (xy 193.378501 62.760264) + (xy 193.378489 62.760261) (xy 193.223845 62.7295) (xy 193.223842 62.7295) (xy 193.066158 62.7295) + (xy 193.066155 62.7295) (xy 192.91151 62.760261) (xy 192.911498 62.760264) (xy 192.765827 62.820602) + (xy 192.765814 62.820609) (xy 192.634711 62.90821) (xy 192.634707 62.908213) (xy 192.523213 63.019707) + (xy 192.52321 63.019711) (xy 192.435609 63.150814) (xy 192.435602 63.150827) (xy 192.375264 63.296498) + (xy 192.375261 63.29651) (xy 192.3445 63.451153) (xy 187.302598 63.451153) (xy 187.289738 63.386508) + (xy 187.289737 63.386507) (xy 187.289737 63.386503) (xy 187.28454 63.373957) (xy 187.229397 63.240827) + (xy 187.22939 63.240814) (xy 187.141789 63.109711) (xy 187.141786 63.109707) (xy 187.030292 62.998213) + (xy 187.030288 62.99821) (xy 186.899185 62.910609) (xy 186.899172 62.910602) (xy 186.753501 62.850264) + (xy 186.753489 62.850261) (xy 186.598845 62.8195) (xy 186.598842 62.8195) (xy 186.441158 62.8195) + (xy 186.441155 62.8195) (xy 186.28651 62.850261) (xy 186.286498 62.850264) (xy 186.140827 62.910602) + (xy 186.140814 62.910609) (xy 186.009711 62.99821) (xy 186.009707 62.998213) (xy 185.898213 63.109707) + (xy 185.89821 63.109711) (xy 185.810609 63.240814) (xy 185.810602 63.240827) (xy 185.750264 63.386498) + (xy 185.750261 63.38651) (xy 185.7195 63.541153) (xy 183.561455 63.541153) (xy 183.541645 63.493326) + (xy 183.534397 63.475827) (xy 183.53439 63.475814) (xy 183.446789 63.344711) (xy 183.446786 63.344707) + (xy 183.335292 63.233213) (xy 183.335288 63.23321) (xy 183.204185 63.145609) (xy 183.204172 63.145602) + (xy 183.058501 63.085264) (xy 183.058489 63.085261) (xy 182.903845 63.0545) (xy 182.903842 63.0545) + (xy 182.746158 63.0545) (xy 182.714806 63.060736) (xy 182.629743 63.077656) (xy 182.560151 63.071428) + (xy 182.504974 63.028564) (xy 182.48173 62.962674) (xy 182.483935 62.931845) (xy 182.4905 62.898843) + (xy 182.4905 62.741155) (xy 182.490499 62.741153) (xy 182.478455 62.680606) (xy 182.459737 62.586503) + (xy 182.453241 62.570821) (xy 182.399397 62.440827) (xy 182.39939 62.440814) (xy 182.311789 62.309711) + (xy 182.311786 62.309707) (xy 182.200292 62.198213) (xy 182.200288 62.19821) (xy 182.069185 62.110609) + (xy 182.069172 62.110602) (xy 181.923501 62.050264) (xy 181.923489 62.050261) (xy 181.768845 62.0195) + (xy 181.768842 62.0195) (xy 181.611158 62.0195) (xy 181.611155 62.0195) (xy 181.45651 62.050261) + (xy 181.456498 62.050264) (xy 181.310827 62.110602) (xy 181.310814 62.110609) (xy 181.179711 62.19821) + (xy 181.179707 62.198213) (xy 181.068213 62.309707) (xy 181.06821 62.309711) (xy 180.980609 62.440814) + (xy 180.980602 62.440827) (xy 180.920264 62.586498) (xy 180.920261 62.58651) (xy 180.8895 62.741153) + (xy 180.8895 62.898846) (xy 180.920261 63.053489) (xy 180.920264 63.053501) (xy 180.980602 63.199172) + (xy 180.980609 63.199184) (xy 181.026997 63.268608) (xy 181.047875 63.335285) (xy 181.029391 63.402665) + (xy 181.026997 63.406389) (xy 180.980611 63.47581) (xy 180.980601 63.475828) (xy 180.920263 63.621499) + (xy 180.92026 63.621511) (xy 180.889499 63.776154) (xy 164.417811 63.776154) (xy 164.418888 63.772487) + (xy 164.430027 63.757708) (xy 164.432677 63.754689) (xy 164.470825 63.716542) (xy 164.547486 63.601811) + (xy 164.568627 63.550769) (xy 164.612467 63.496369) (xy 164.678761 63.474303) (xy 164.727283 63.483058) + (xy 164.727321 63.482934) (xy 164.728388 63.483257) (xy 164.730644 63.483664) (xy 164.733148 63.484702) + (xy 164.887798 63.515464) (xy 164.887801 63.515465) (xy 164.887803 63.515465) (xy 165.045489 63.515465) + (xy 165.04549 63.515464) (xy 165.200142 63.484702) (xy 165.345824 63.424359) (xy 165.476934 63.336754) + (xy 165.588434 63.225254) (xy 165.676039 63.094144) (xy 165.679719 63.085261) (xy 165.70687 63.019711) + (xy 165.736382 62.948462) (xy 165.760146 62.828995) (xy 175.599499 62.828995) (xy 175.626418 62.964322) + (xy 175.626421 62.964332) (xy 175.679221 63.091804) (xy 175.679228 63.091817) (xy 175.755885 63.206541) + (xy 175.755888 63.206545) (xy 175.853454 63.304111) (xy 175.853458 63.304114) (xy 175.968182 63.380771) + (xy 175.968195 63.380778) (xy 176.094441 63.43307) (xy 176.095672 63.43358) (xy 176.095676 63.43358) + (xy 176.095677 63.433581) (xy 176.231004 63.4605) (xy 176.231007 63.4605) (xy 176.368995 63.4605) + (xy 176.481192 63.438182) (xy 176.504328 63.43358) (xy 176.602924 63.39274) (xy 176.631804 63.380778) + (xy 176.631804 63.380777) (xy 176.631811 63.380775) (xy 176.746542 63.304114) (xy 176.844114 63.206542) + (xy 176.920775 63.091811) (xy 176.926408 63.078213) (xy 176.946857 63.028844) (xy 176.97358 62.964328) + (xy 176.986606 62.898842) (xy 177.0005 62.828995) (xy 177.0005 62.691004) (xy 176.973581 62.555677) + (xy 176.97358 62.555676) (xy 176.97358 62.555672) (xy 176.954782 62.510289) (xy 176.920778 62.428195) + (xy 176.920771 62.428182) (xy 176.844114 62.313458) (xy 176.844111 62.313454) (xy 176.746545 62.215888) + (xy 176.746541 62.215885) (xy 176.631817 62.139228) (xy 176.631804 62.139221) (xy 176.504332 62.086421) + (xy 176.504322 62.086418) (xy 176.368995 62.0595) (xy 176.368993 62.0595) (xy 176.231007 62.0595) + (xy 176.231005 62.0595) (xy 176.095677 62.086418) (xy 176.095667 62.086421) (xy 175.968195 62.139221) + (xy 175.968182 62.139228) (xy 175.853458 62.215885) (xy 175.853454 62.215888) (xy 175.755888 62.313454) + (xy 175.755885 62.313458) (xy 175.679228 62.428182) (xy 175.679221 62.428195) (xy 175.626421 62.555667) + (xy 175.626418 62.555677) (xy 175.5995 62.691004) (xy 175.5995 62.691007) (xy 175.5995 62.828993) + (xy 175.5995 62.828995) (xy 175.599499 62.828995) (xy 165.760146 62.828995) (xy 165.767145 62.793807) + (xy 165.767145 62.636123) (xy 165.767145 62.63612) (xy 165.767144 62.636118) (xy 165.759248 62.596421) + (xy 165.736382 62.481468) (xy 165.714316 62.428195) (xy 165.676042 62.335792) (xy 165.676035 62.335779) (xy 165.588434 62.204676) (xy 165.588431 62.204672) (xy 165.476937 62.093178) (xy 165.476933 62.093175) (xy 165.34583 62.005574) (xy 165.345817 62.005567) (xy 165.200146 61.945229) (xy 165.200134 61.945226) (xy 165.04549 61.914465) (xy 165.045487 61.914465) (xy 164.887803 61.914465) (xy 164.8878 61.914465) (xy 164.733155 61.945226) (xy 164.733143 61.945229) (xy 164.587472 62.005567) (xy 164.587459 62.005574) (xy 164.456356 62.093175) (xy 164.456352 62.093178) (xy 164.344858 62.204672) (xy 164.344855 62.204676) - (xy 164.257254 62.335779) (xy 164.257247 62.335792) (xy 164.196909 62.481463) (xy 164.196906 62.481473) - (xy 164.175141 62.590893) (xy 164.142756 62.652804) (xy 164.08204 62.687378) (xy 164.01227 62.683637) - (xy 164.006072 62.681262) (xy 163.989748 62.6745) (xy 163.989738 62.674497) (xy 163.864071 62.6495) - (xy 163.864069 62.6495) (xy 163.735931 62.6495) (xy 163.735929 62.6495) (xy 163.610261 62.674497) - (xy 163.610255 62.674499) (xy 163.491875 62.723533) (xy 163.491866 62.723538) (xy 163.385331 62.794723) - (xy 163.385327 62.794726) (xy 163.294726 62.885327) (xy 163.294723 62.885331) (xy 163.223538 62.991866) - (xy 163.223533 62.991875) (xy 163.174499 63.110255) (xy 163.174497 63.110261) (xy 163.1495 63.235928) - (xy 163.1495 63.235931) (xy 163.1495 63.364069) (xy 163.1495 63.364071) (xy 163.149499 63.364071) - (xy 150.729421 63.364071) (xy 150.749394 63.334179) (xy 150.809737 63.188497) (xy 150.8405 63.033842) - (xy 150.8405 62.876158) (xy 150.8405 62.876155) (xy 150.840499 62.876153) (xy 150.809738 62.721507) - (xy 150.809735 62.721498) (xy 150.749397 62.575827) (xy 150.74939 62.575814) (xy 150.661789 62.444711) - (xy 150.661786 62.444707) (xy 150.550292 62.333213) (xy 150.550288 62.33321) (xy 150.419185 62.245609) - (xy 150.419172 62.245602) (xy 150.273501 62.185264) (xy 150.273489 62.185261) (xy 150.118845 62.1545) - (xy 150.118842 62.1545) (xy 149.961158 62.1545) (xy 149.961155 62.1545) (xy 149.80651 62.185261) - (xy 149.806498 62.185264) (xy 149.660828 62.245602) (xy 149.660812 62.245611) (xy 149.62263 62.271123) - (xy 149.555952 62.292) (xy 149.488572 62.273514) (xy 149.48485 62.271122) (xy 149.439185 62.240609) - (xy 149.439172 62.240602) (xy 149.293501 62.180264) (xy 149.293489 62.180261) (xy 149.138845 62.1495) - (xy 149.138842 62.1495) (xy 148.981158 62.1495) (xy 148.981155 62.1495) (xy 148.82651 62.180261) - (xy 148.826498 62.180264) (xy 148.680827 62.240602) (xy 148.680814 62.240609) (xy 148.549711 62.32821) - (xy 148.549707 62.328213) (xy 148.438213 62.439707) (xy 148.43821 62.439711) (xy 148.350609 62.570814) - (xy 148.350602 62.570827) (xy 148.290264 62.716498) (xy 148.290261 62.71651) (xy 148.2595 62.871153) - (xy 145.674413 62.871153) (xy 145.67469 61.264071) (xy 152.399499 61.264071) (xy 152.424497 61.389738) - (xy 152.424499 61.389744) (xy 152.473533 61.508124) (xy 152.473538 61.508133) (xy 152.544723 61.614668) - (xy 152.544726 61.614672) (xy 152.635327 61.705273) (xy 152.635331 61.705276) (xy 152.741866 61.776461) - (xy 152.741872 61.776464) (xy 152.741873 61.776465) (xy 152.860256 61.825501) (xy 152.86026 61.825501) - (xy 152.860261 61.825502) (xy 152.985928 61.8505) (xy 152.985931 61.8505) (xy 153.114071 61.8505) - (xy 153.199526 61.833501) (xy 153.239744 61.825501) (xy 153.358127 61.776465) (xy 153.464669 61.705276) - (xy 153.464673 61.705271) (xy 153.469379 61.701411) (xy 153.47072 61.703045) (xy 153.523611 61.674148) - (xy 153.593304 61.679114) (xy 153.629715 61.702514) (xy 153.630621 61.701411) (xy 153.635331 61.705276) - (xy 153.741866 61.776461) (xy 153.741872 61.776464) (xy 153.741873 61.776465) (xy 153.860256 61.825501) - (xy 153.86026 61.825501) (xy 153.860261 61.825502) (xy 153.985928 61.8505) (xy 153.985931 61.8505) - (xy 154.114071 61.8505) (xy 154.199526 61.833501) (xy 154.239744 61.825501) (xy 154.358127 61.776465) - (xy 154.464669 61.705276) (xy 154.555276 61.614669) (xy 154.626465 61.508127) (xy 154.675501 61.389744) - (xy 154.687506 61.329394) (xy 154.7005 61.264071) (xy 154.7005 61.168759) (xy 154.720185 61.10172) - (xy 154.772989 61.055965) (xy 154.842147 61.046021) (xy 154.905703 61.075046) (xy 154.939062 61.121308) - (xy 154.950605 61.149178) (xy 154.950609 61.149185) (xy 155.03821 61.280288) (xy 155.038213 61.280292) - (xy 155.149707 61.391786) (xy 155.149711 61.391789) (xy 155.280814 61.47939) (xy 155.280827 61.479397) - (xy 155.388138 61.523846) (xy 155.426503 61.539737) (xy 155.572823 61.568842) (xy 155.581153 61.570499) - (xy 155.581156 61.5705) (xy 155.581158 61.5705) (xy 155.738844 61.5705) (xy 155.738845 61.570499) - (xy 155.893497 61.539737) (xy 156.039179 61.479394) (xy 156.170289 61.391789) (xy 156.281789 61.280289) - (xy 156.348284 61.180773) (xy 158.67912 61.180773) (xy 158.67912 61.338466) (xy 158.709881 61.493109) - (xy 158.709884 61.493121) (xy 158.770222 61.638792) (xy 158.770229 61.638805) (xy 158.85783 61.769908) - (xy 158.857833 61.769912) (xy 158.969327 61.881406) (xy 158.969331 61.881409) (xy 159.100434 61.96901) - (xy 159.100447 61.969017) (xy 159.188705 62.005574) (xy 159.246123 62.029357) (xy 159.400773 62.060119) - (xy 159.400776 62.06012) (xy 159.400778 62.06012) (xy 159.558464 62.06012) (xy 159.558465 62.060119) - (xy 159.713117 62.029357) (xy 159.858799 61.969014) (xy 159.989909 61.881409) (xy 160.101409 61.769909) - (xy 160.189014 61.638799) (xy 160.248376 61.495484) (xy 160.292216 61.441081) (xy 160.315485 61.428376) - (xy 160.357054 61.411158) (xy 160.422009 61.384253) (xy 160.458792 61.369017) (xy 160.458792 61.369016) - (xy 160.458799 61.369014) (xy 160.589909 61.281409) (xy 160.701409 61.169909) (xy 160.789014 61.038799) - (xy 160.849357 60.893117) (xy 160.88012 60.738462) (xy 160.88012 60.580778) (xy 160.88012 60.580775) - (xy 160.880119 60.580773) (xy 160.871312 60.536498) (xy 160.849357 60.426123) (xy 160.823654 60.364071) - (xy 161.999499 60.364071) (xy 162.024497 60.489738) (xy 162.024499 60.489744) (xy 162.073533 60.608124) - (xy 162.073538 60.608133) (xy 162.144723 60.714668) (xy 162.144726 60.714672) (xy 162.235327 60.805273) - (xy 162.235331 60.805276) (xy 162.341866 60.876461) (xy 162.341872 60.876464) (xy 162.341873 60.876465) - (xy 162.460256 60.925501) (xy 162.46026 60.925501) (xy 162.460261 60.925502) (xy 162.585928 60.9505) - (xy 162.585931 60.9505) (xy 162.714071 60.9505) (xy 162.798615 60.933682) (xy 162.839744 60.925501) - (xy 162.958127 60.876465) (xy 163.064669 60.805276) (xy 163.155276 60.714669) (xy 163.226465 60.608127) - (xy 163.254207 60.541153) (xy 181.3545 60.541153) (xy 181.3545 60.698846) (xy 181.385261 60.853489) + (xy 164.257254 62.335779) (xy 164.257247 62.335792) (xy 164.196909 62.481463) (xy 164.196905 62.481475) + (xy 164.196594 62.483043) (xy 164.196204 62.483786) (xy 164.195139 62.4873) (xy 164.194472 62.487097) + (xy 164.164203 62.54495) (xy 164.103483 62.579518) (xy 164.050788 62.580456) (xy 163.995708 62.5695) + (xy 163.995704 62.5695) (xy 163.857718 62.5695) (xy 163.857716 62.5695) (xy 163.722388 62.596418) + (xy 163.722378 62.596421) (xy 163.594906 62.649221) (xy 163.594893 62.649228) (xy 163.480169 62.725885) + (xy 163.480165 62.725888) (xy 163.382599 62.823454) (xy 163.382596 62.823458) (xy 163.305939 62.938182) + (xy 163.305932 62.938195) (xy 163.253132 63.065667) (xy 163.253129 63.065677) (xy 163.22621 63.201004) + (xy 163.225614 63.207067) (xy 163.224312 63.206938) (xy 163.206526 63.267512) (xy 163.189892 63.288154) + (xy 163.154591 63.323454) (xy 163.154588 63.323458) (xy 163.077931 63.438182) (xy 163.077924 63.438195) + (xy 163.025124 63.565667) (xy 163.025121 63.565677) (xy 162.998203 63.701004) (xy 162.998203 63.701007) + (xy 162.998203 63.838993) (xy 162.998203 63.838995) (xy 162.998202 63.838995) (xy 158.667735 63.838995) + (xy 158.6797 63.778842) (xy 158.6797 63.621158) (xy 158.6797 63.621155) (xy 158.679699 63.621153) + (xy 158.667373 63.559185) (xy 158.648937 63.466503) (xy 158.648935 63.466498) (xy 158.588597 63.320827) + (xy 158.58859 63.320814) (xy 158.500989 63.189711) (xy 158.500986 63.189707) (xy 158.389492 63.078213) + (xy 158.389488 63.07821) (xy 158.258385 62.990609) (xy 158.258372 62.990602) (xy 158.112701 62.930264) + (xy 158.112689 62.930261) (xy 157.958045 62.8995) (xy 157.958042 62.8995) (xy 157.800358 62.8995) + (xy 157.800355 62.8995) (xy 157.64571 62.930261) (xy 157.645698 62.930264) (xy 157.500027 62.990602) + (xy 157.500014 62.990609) (xy 157.368911 63.07821) (xy 157.368907 63.078213) (xy 157.266881 63.18024) + (xy 157.205558 63.213725) (xy 157.135866 63.208741) (xy 157.091519 63.18024) (xy 156.989492 63.078213) + (xy 156.989488 63.07821) (xy 156.858385 62.990609) (xy 156.858372 62.990602) (xy 156.712701 62.930264) + (xy 156.712689 62.930261) (xy 156.558045 62.8995) (xy 156.558042 62.8995) (xy 156.400358 62.8995) + (xy 156.400355 62.8995) (xy 156.24571 62.930261) (xy 156.245698 62.930264) (xy 156.100027 62.990602) + (xy 156.100014 62.990609) (xy 155.968911 63.07821) (xy 155.968907 63.078213) (xy 155.866881 63.18024) + (xy 155.805558 63.213725) (xy 155.735866 63.208741) (xy 155.691519 63.18024) (xy 155.589492 63.078213) + (xy 155.589488 63.07821) (xy 155.458385 62.990609) (xy 155.458372 62.990602) (xy 155.312701 62.930264) + (xy 155.312689 62.930261) (xy 155.158045 62.8995) (xy 155.158042 62.8995) (xy 155.000358 62.8995) + (xy 155.000355 62.8995) (xy 154.84571 62.930261) (xy 154.845698 62.930264) (xy 154.700027 62.990602) + (xy 154.700014 62.990609) (xy 154.568911 63.07821) (xy 154.568907 63.078213) (xy 154.466881 63.18024) + (xy 154.405558 63.213725) (xy 154.335866 63.208741) (xy 154.291519 63.18024) (xy 154.189492 63.078213) + (xy 154.189488 63.07821) (xy 154.058385 62.990609) (xy 154.058372 62.990602) (xy 153.912701 62.930264) + (xy 153.912689 62.930261) (xy 153.758045 62.8995) (xy 153.758042 62.8995) (xy 153.600358 62.8995) + (xy 153.600355 62.8995) (xy 153.44571 62.930261) (xy 153.445698 62.930264) (xy 153.300027 62.990602) + (xy 153.300014 62.990609) (xy 153.168911 63.07821) (xy 153.168907 63.078213) (xy 153.057413 63.189707) + (xy 153.05741 63.189711) (xy 152.969809 63.320814) (xy 152.969802 63.320827) (xy 152.909464 63.466498) + (xy 152.909461 63.46651) (xy 152.8787 63.621153) (xy 152.8787 63.778846) (xy 152.909461 63.933489) + (xy 152.909464 63.933501) (xy 152.969802 64.079172) (xy 152.969809 64.079185) (xy 153.05741 64.210288) + (xy 153.057413 64.210292) (xy 153.11665 64.269529) (xy 153.150135 64.330852) (xy 153.145151 64.400544) + (xy 153.103279 64.456477) (xy 153.037815 64.480894) (xy 152.969542 64.466042) (xy 152.960078 64.460312) + (xy 152.913558 64.429228) (xy 152.913545 64.429221) (xy 152.786073 64.376421) (xy 152.786063 64.376418) + (xy 152.650736 64.3495) (xy 152.650734 64.3495) (xy 152.512748 64.3495) (xy 152.512746 64.3495) + (xy 152.377418 64.376418) (xy 152.377408 64.376421) (xy 152.249936 64.429221) (xy 152.249923 64.429228) + (xy 152.135199 64.505885) (xy 152.135195 64.505888) (xy 152.037629 64.603454) (xy 152.037626 64.603458) + (xy 151.960969 64.718182) (xy 151.960962 64.718195) (xy 151.908162 64.845667) (xy 151.908159 64.845677) + (xy 151.880052 64.986982) (xy 151.878615 64.986696) (xy 151.855184 65.044718) (xy 151.845625 65.055455) + (xy 151.797627 65.103452) (xy 151.797624 65.103456) (xy 151.720967 65.21818) (xy 151.72096 65.218193) + (xy 151.66816 65.345665) (xy 151.668157 65.345675) (xy 151.641239 65.481002) (xy 151.641239 65.481005) + (xy 151.641239 65.618991) (xy 151.641239 65.618993) (xy 151.641238 65.618993) (xy 150.792746 65.618993) + (xy 150.839394 65.549179) (xy 150.863286 65.491498) (xy 150.889811 65.427461) (xy 150.889811 65.42746) + (xy 150.899737 65.403497) (xy 150.9305 65.248842) (xy 150.9305 65.091158) (xy 150.9305 65.091155) + (xy 150.930499 65.091153) (xy 150.92102 65.043501) (xy 150.899737 64.936503) (xy 150.879996 64.888844) + (xy 150.839397 64.790827) (xy 150.83939 64.790814) (xy 150.751789 64.659711) (xy 150.751786 64.659707) + (xy 150.640292 64.548213) (xy 150.640288 64.54821) (xy 150.509185 64.460609) (xy 150.509172 64.460602) + (xy 150.363501 64.400264) (xy 150.363489 64.400261) (xy 150.208845 64.3695) (xy 150.208842 64.3695) + (xy 150.051158 64.3695) (xy 150.051155 64.3695) (xy 149.89651 64.400261) (xy 149.896498 64.400264) + (xy 149.750827 64.460602) (xy 149.750814 64.460609) (xy 149.619711 64.54821) (xy 149.619707 64.548213) + (xy 149.508213 64.659707) (xy 149.50821 64.659711) (xy 149.420609 64.790814) (xy 149.420602 64.790827) + (xy 149.360264 64.936498) (xy 149.360261 64.93651) (xy 149.3295 65.091153) (xy 145.606214 65.091153) + (xy 145.606596 62.861153) (xy 149.3295 62.861153) (xy 149.3295 63.018846) (xy 149.360261 63.173489) + (xy 149.360264 63.173501) (xy 149.420602 63.319172) (xy 149.420609 63.319185) (xy 149.50821 63.450288) + (xy 149.508213 63.450292) (xy 149.619707 63.561786) (xy 149.619711 63.561789) (xy 149.750814 63.64939) + (xy 149.750827 63.649397) (xy 149.896498 63.709735) (xy 149.896503 63.709737) (xy 150.051153 63.740499) + (xy 150.051156 63.7405) (xy 150.051158 63.7405) (xy 150.208844 63.7405) (xy 150.208845 63.740499) + (xy 150.363497 63.709737) (xy 150.476166 63.663067) (xy 150.509172 63.649397) (xy 150.509172 63.649396) + (xy 150.509179 63.649394) (xy 150.538627 63.629717) (xy 150.605302 63.60884) (xy 150.672682 63.627324) + (xy 150.676407 63.629718) (xy 150.720814 63.65939) (xy 150.720827 63.659397) (xy 150.866498 63.719735) + (xy 150.866503 63.719737) (xy 151.021153 63.750499) (xy 151.021156 63.7505) (xy 151.021158 63.7505) + (xy 151.178844 63.7505) (xy 151.178845 63.750499) (xy 151.333497 63.719737) (xy 151.479179 63.659394) + (xy 151.610289 63.571789) (xy 151.721789 63.460289) (xy 151.809394 63.329179) (xy 151.812854 63.320827) + (xy 151.849145 63.23321) (xy 151.869737 63.183497) (xy 151.9005 63.028842) (xy 151.9005 62.871158) + (xy 151.9005 62.871155) (xy 151.900499 62.871153) (xy 151.890445 62.820609) (xy 151.869737 62.716503) + (xy 151.859175 62.691004) (xy 151.809397 62.570827) (xy 151.80939 62.570814) (xy 151.721789 62.439711) + (xy 151.721786 62.439707) (xy 151.610292 62.328213) (xy 151.610288 62.32821) (xy 151.479185 62.240609) + (xy 151.479172 62.240602) (xy 151.333501 62.180264) (xy 151.333489 62.180261) (xy 151.178845 62.1495) + (xy 151.178842 62.1495) (xy 151.021158 62.1495) (xy 151.021155 62.1495) (xy 150.86651 62.180261) + (xy 150.866498 62.180264) (xy 150.720828 62.240602) (xy 150.720812 62.240611) (xy 150.691372 62.260282) + (xy 150.624694 62.281159) (xy 150.557314 62.262673) (xy 150.553593 62.260282) (xy 150.509182 62.230608) + (xy 150.509181 62.230607) (xy 150.509179 62.230606) (xy 150.509176 62.230604) (xy 150.509171 62.230602) + (xy 150.363501 62.170264) (xy 150.363489 62.170261) (xy 150.208845 62.1395) (xy 150.208842 62.1395) + (xy 150.051158 62.1395) (xy 150.051155 62.1395) (xy 149.89651 62.170261) (xy 149.896498 62.170264) + (xy 149.750827 62.230602) (xy 149.750814 62.230609) (xy 149.619711 62.31821) (xy 149.619707 62.318213) + (xy 149.508213 62.429707) (xy 149.50821 62.429711) (xy 149.420609 62.560814) (xy 149.420602 62.560827) + (xy 149.360264 62.706498) (xy 149.360261 62.70651) (xy 149.3295 62.861153) (xy 145.606596 62.861153) + (xy 145.606869 61.268995) (xy 152.349499 61.268995) (xy 152.376418 61.404322) (xy 152.376421 61.404332) + (xy 152.429221 61.531804) (xy 152.429228 61.531817) (xy 152.505885 61.646541) (xy 152.505888 61.646545) + (xy 152.603454 61.744111) (xy 152.603458 61.744114) (xy 152.718182 61.820771) (xy 152.718195 61.820778) + (xy 152.83503 61.869172) (xy 152.845672 61.87358) (xy 152.845676 61.87358) (xy 152.845677 61.873581) + (xy 152.981004 61.9005) (xy 152.981007 61.9005) (xy 153.118995 61.9005) (xy 153.214984 61.881406) + (xy 153.254328 61.87358) (xy 153.381811 61.820775) (xy 153.481109 61.754425) (xy 153.547786 61.733548) + (xy 153.615166 61.752032) (xy 153.618889 61.754425) (xy 153.718189 61.820775) (xy 153.718191 61.820776) + (xy 153.718195 61.820778) (xy 153.83503 61.869172) (xy 153.845672 61.87358) (xy 153.845676 61.87358) + (xy 153.845677 61.873581) (xy 153.981004 61.9005) (xy 153.981007 61.9005) (xy 154.118995 61.9005) + (xy 154.214984 61.881406) (xy 154.254328 61.87358) (xy 154.381811 61.820775) (xy 154.496542 61.744114) + (xy 154.594114 61.646542) (xy 154.670775 61.531811) (xy 154.72358 61.404328) (xy 154.738485 61.329397) + (xy 154.7505 61.268995) (xy 154.7505 61.258473) (xy 154.770185 61.191434) (xy 154.822989 61.145679) + (xy 154.892147 61.135735) (xy 154.955703 61.16476) (xy 154.977602 61.189582) (xy 155.03821 61.280288) + (xy 155.038213 61.280292) (xy 155.149707 61.391786) (xy 155.149711 61.391789) (xy 155.280814 61.47939) + (xy 155.280827 61.479397) (xy 155.407382 61.531817) (xy 155.426503 61.539737) (xy 155.572823 61.568842) + (xy 155.581153 61.570499) (xy 155.581156 61.5705) (xy 155.581158 61.5705) (xy 155.738844 61.5705) + (xy 155.738845 61.570499) (xy 155.893497 61.539737) (xy 156.039179 61.479394) (xy 156.170289 61.391789) + (xy 156.281789 61.280289) (xy 156.348284 61.180773) (xy 158.67912 61.180773) (xy 158.67912 61.338466) + (xy 158.709881 61.493109) (xy 158.709884 61.493121) (xy 158.770222 61.638792) (xy 158.770229 61.638805) + (xy 158.85783 61.769908) (xy 158.857833 61.769912) (xy 158.969327 61.881406) (xy 158.969331 61.881409) + (xy 159.100434 61.96901) (xy 159.100447 61.969017) (xy 159.188705 62.005574) (xy 159.246123 62.029357) + (xy 159.397661 62.0595) (xy 159.400773 62.060119) (xy 159.400776 62.06012) (xy 159.400778 62.06012) + (xy 159.558464 62.06012) (xy 159.558465 62.060119) (xy 159.713117 62.029357) (xy 159.858799 61.969014) + (xy 159.989909 61.881409) (xy 160.101409 61.769909) (xy 160.189014 61.638799) (xy 160.248376 61.495484) + (xy 160.292216 61.441081) (xy 160.315485 61.428376) (xy 160.357054 61.411158) (xy 160.422009 61.384253) + (xy 160.458792 61.369017) (xy 160.458792 61.369016) (xy 160.458799 61.369014) (xy 160.589909 61.281409) + (xy 160.701409 61.169909) (xy 160.789014 61.038799) (xy 160.849357 60.893117) (xy 160.88012 60.738462) + (xy 160.88012 60.580778) (xy 160.88012 60.580775) (xy 160.880119 60.580773) (xy 160.864912 60.504322) + (xy 160.849357 60.426123) (xy 160.825694 60.368995) (xy 161.949499 60.368995) (xy 161.976418 60.504322) + (xy 161.976421 60.504332) (xy 162.029221 60.631804) (xy 162.029228 60.631817) (xy 162.105885 60.746541) + (xy 162.105888 60.746545) (xy 162.203454 60.844111) (xy 162.203458 60.844114) (xy 162.318182 60.920771) + (xy 162.318195 60.920778) (xy 162.445667 60.973578) (xy 162.445672 60.97358) (xy 162.445676 60.97358) + (xy 162.445677 60.973581) (xy 162.581004 61.0005) (xy 162.581007 61.0005) (xy 162.718995 61.0005) + (xy 162.810041 60.982389) (xy 162.854328 60.97358) (xy 162.981811 60.920775) (xy 163.096542 60.844114) + (xy 163.194114 60.746542) (xy 163.270775 60.631811) (xy 163.28015 60.609179) (xy 163.304569 60.550224) + (xy 163.308326 60.541153) (xy 181.3545 60.541153) (xy 181.3545 60.698846) (xy 181.385261 60.853489) (xy 181.385264 60.853501) (xy 181.445602 60.999172) (xy 181.445609 60.999185) (xy 181.53321 61.130288) (xy 181.533213 61.130292) (xy 181.644707 61.241786) (xy 181.644711 61.241789) (xy 181.775814 61.32939) (xy 181.775827 61.329397) (xy 181.921498 61.389735) (xy 181.921503 61.389737) (xy 182.076153 61.420499) @@ -38085,7 +43099,7 @@ (xy 187.2245 61.366153) (xy 187.2245 61.523846) (xy 187.255261 61.678489) (xy 187.255264 61.678501) (xy 187.315602 61.824172) (xy 187.315609 61.824185) (xy 187.40321 61.955288) (xy 187.403213 61.955292) (xy 187.514707 62.066786) (xy 187.514711 62.066789) (xy 187.645814 62.15439) (xy 187.645827 62.154397) - (xy 187.767213 62.204676) (xy 187.791503 62.214737) (xy 187.942252 62.244723) (xy 187.946153 62.245499) + (xy 187.767213 62.204676) (xy 187.791503 62.214737) (xy 187.92158 62.240611) (xy 187.946153 62.245499) (xy 187.946156 62.2455) (xy 187.946158 62.2455) (xy 188.103844 62.2455) (xy 188.103845 62.245499) (xy 188.258497 62.214737) (xy 188.404179 62.154394) (xy 188.535289 62.066789) (xy 188.646789 61.955289) (xy 188.734394 61.824179) (xy 188.794737 61.678497) (xy 188.8255 61.523842) (xy 188.8255 61.521153) @@ -38107,7 +43121,7 @@ (xy 200.419394 61.979179) (xy 200.443429 61.921153) (xy 204.0995 61.921153) (xy 204.0995 62.078846) (xy 204.130261 62.233489) (xy 204.130264 62.233501) (xy 204.190602 62.379172) (xy 204.190609 62.379185) (xy 204.27821 62.510288) (xy 204.278213 62.510292) (xy 204.389707 62.621786) (xy 204.389711 62.621789) - (xy 204.520814 62.70939) (xy 204.520827 62.709397) (xy 204.662816 62.76821) (xy 204.666503 62.769737) + (xy 204.520814 62.70939) (xy 204.520827 62.709397) (xy 204.643633 62.760264) (xy 204.666503 62.769737) (xy 204.821153 62.800499) (xy 204.821156 62.8005) (xy 204.821158 62.8005) (xy 204.978844 62.8005) (xy 204.978845 62.800499) (xy 205.133497 62.769737) (xy 205.279179 62.709394) (xy 205.410289 62.621789) (xy 205.521789 62.510289) (xy 205.609394 62.379179) (xy 205.669737 62.233497) (xy 205.7005 62.078842) @@ -38123,9 +43137,9 @@ (xy 200.494242 61.762485) (xy 200.510334 61.736791) (xy 200.524385 61.709931) (xy 200.528696 61.707476) (xy 200.53133 61.703271) (xy 200.558759 61.690356) (xy 200.585101 61.675357) (xy 200.589414 61.674418) (xy 200.713497 61.649737) (xy 200.859179 61.589394) (xy 200.990289 61.501789) (xy 201.101789 61.390289) - (xy 201.189394 61.259179) (xy 201.190503 61.256503) (xy 201.214114 61.1995) (xy 201.249737 61.113497) + (xy 201.189394 61.259179) (xy 201.189687 61.258473) (xy 201.218222 61.189582) (xy 201.249737 61.113497) (xy 201.2805 60.958842) (xy 201.2805 60.801158) (xy 201.2805 60.801155) (xy 201.280499 60.801153) - (xy 201.277351 60.785327) (xy 201.249737 60.646503) (xy 201.240225 60.623538) (xy 201.189397 60.500827) + (xy 201.28017 60.7995) (xy 201.249737 60.646503) (xy 201.243654 60.631817) (xy 201.189397 60.500827) (xy 201.18939 60.500814) (xy 201.101789 60.369711) (xy 201.101786 60.369707) (xy 200.990292 60.258213) (xy 200.990288 60.25821) (xy 200.859185 60.170609) (xy 200.859172 60.170602) (xy 200.713501 60.110264) (xy 200.713489 60.110261) (xy 200.558845 60.0795) (xy 200.558842 60.0795) (xy 200.401158 60.0795) @@ -38145,7 +43159,7 @@ (xy 191.234711 60.97821) (xy 191.234707 60.978213) (xy 191.123213 61.089707) (xy 191.12321 61.089711) (xy 191.035609 61.220814) (xy 191.035602 61.220827) (xy 190.975264 61.366498) (xy 190.975261 61.36651) (xy 190.9445 61.521153) (xy 188.8255 61.521153) (xy 188.8255 61.366158) (xy 188.8255 61.366155) - (xy 188.825499 61.366153) (xy 188.810472 61.290609) (xy 188.794737 61.211503) (xy 188.789765 61.1995) + (xy 188.825499 61.366153) (xy 188.810472 61.290609) (xy 188.794737 61.211503) (xy 188.785657 61.189582) (xy 188.734397 61.065827) (xy 188.73439 61.065814) (xy 188.646789 60.934711) (xy 188.646786 60.934707) (xy 188.535292 60.823213) (xy 188.535288 60.82321) (xy 188.404185 60.735609) (xy 188.404172 60.735602) (xy 188.258501 60.675264) (xy 188.258489 60.675261) (xy 188.103845 60.6445) (xy 188.103842 60.6445) @@ -38162,244 +43176,279 @@ (xy 184.961482 60.979707) (xy 184.961479 60.979711) (xy 184.873878 61.110814) (xy 184.873871 61.110827) (xy 184.813533 61.256498) (xy 184.81353 61.25651) (xy 184.782769 61.411153) (xy 182.280831 61.411153) (xy 182.388497 61.389737) (xy 182.534179 61.329394) (xy 182.534185 61.32939) (xy 182.575232 61.301964) - (xy 182.623405 61.269774) (xy 182.665289 61.241789) (xy 182.776789 61.130289) (xy 182.864394 60.999179) + (xy 182.639263 61.259179) (xy 182.665289 61.241789) (xy 182.776789 61.130289) (xy 182.864394 60.999179) (xy 182.924737 60.853497) (xy 182.9555 60.698842) (xy 182.9555 60.541158) (xy 182.9555 60.541155) - (xy 182.955499 60.541153) (xy 182.940052 60.463497) (xy 182.924737 60.386503) (xy 182.91778 60.369707) + (xy 182.955499 60.541153) (xy 182.940052 60.463497) (xy 182.924737 60.386503) (xy 182.880808 60.280447) (xy 182.864397 60.240827) (xy 182.86439 60.240814) (xy 182.776789 60.109711) (xy 182.776786 60.109707) (xy 182.665292 59.998213) (xy 182.665288 59.99821) (xy 182.534185 59.910609) (xy 182.534172 59.910602) (xy 182.388501 59.850264) (xy 182.388489 59.850261) (xy 182.233845 59.8195) (xy 182.233842 59.8195) (xy 182.076158 59.8195) (xy 182.076155 59.8195) (xy 181.92151 59.850261) (xy 181.921498 59.850264) (xy 181.775827 59.910602) (xy 181.775814 59.910609) (xy 181.644711 59.99821) (xy 181.644707 59.998213) (xy 181.533213 60.109707) (xy 181.53321 60.109711) (xy 181.445609 60.240814) (xy 181.445602 60.240827) - (xy 181.385264 60.386498) (xy 181.385261 60.38651) (xy 181.3545 60.541153) (xy 163.254207 60.541153) - (xy 163.270916 60.500814) (xy 163.275499 60.489749) (xy 163.275499 60.489748) (xy 163.275501 60.489744) - (xy 163.288157 60.426118) (xy 163.3005 60.364071) (xy 163.3005 60.235928) (xy 163.275502 60.110261) - (xy 163.275501 60.11026) (xy 163.275501 60.110256) (xy 163.22994 60.000263) (xy 163.226466 59.991875) - (xy 163.226461 59.991866) (xy 163.155276 59.885331) (xy 163.155273 59.885327) (xy 163.064672 59.794726) - (xy 163.064668 59.794723) (xy 162.958133 59.723538) (xy 162.958124 59.723533) (xy 162.839744 59.674499) - (xy 162.839738 59.674497) (xy 162.714071 59.6495) (xy 162.714069 59.6495) (xy 162.585931 59.6495) - (xy 162.585929 59.6495) (xy 162.460261 59.674497) (xy 162.460255 59.674499) (xy 162.341875 59.723533) - (xy 162.341866 59.723538) (xy 162.235331 59.794723) (xy 162.235327 59.794726) (xy 162.144726 59.885327) - (xy 162.144723 59.885331) (xy 162.073538 59.991866) (xy 162.073533 59.991875) (xy 162.024499 60.110255) - (xy 162.024497 60.110261) (xy 161.9995 60.235928) (xy 161.9995 60.235931) (xy 161.9995 60.364069) - (xy 161.9995 60.364071) (xy 161.999499 60.364071) (xy 160.823654 60.364071) (xy 160.789014 60.280441) - (xy 160.789012 60.280438) (xy 160.78901 60.280434) (xy 160.701409 60.149331) (xy 160.701406 60.149327) - (xy 160.589912 60.037833) (xy 160.589908 60.03783) (xy 160.458805 59.950229) (xy 160.458792 59.950222) - (xy 160.313121 59.889884) (xy 160.313109 59.889881) (xy 160.158465 59.85912) (xy 160.158462 59.85912) - (xy 160.000778 59.85912) (xy 160.000775 59.85912) (xy 159.84613 59.889881) (xy 159.846118 59.889884) - (xy 159.700447 59.950222) (xy 159.700434 59.950229) (xy 159.569331 60.03783) (xy 159.569327 60.037833) - (xy 159.457833 60.149327) (xy 159.45783 60.149331) (xy 159.370229 60.280434) (xy 159.370224 60.280444) - (xy 159.310863 60.423755) (xy 159.267022 60.478158) (xy 159.243755 60.490863) (xy 159.100444 60.550224) - (xy 159.100434 60.550229) (xy 158.969331 60.63783) (xy 158.969327 60.637833) (xy 158.857833 60.749327) - (xy 158.85783 60.749331) (xy 158.770229 60.880434) (xy 158.770222 60.880447) (xy 158.709884 61.026118) - (xy 158.709881 61.02613) (xy 158.67912 61.180773) (xy 156.348284 61.180773) (xy 156.369394 61.149179) - (xy 156.38957 61.100468) (xy 156.433408 61.046066) (xy 156.479938 61.026303) (xy 156.613497 60.999737) - (xy 156.759179 60.939394) (xy 156.890289 60.851789) (xy 157.001789 60.740289) (xy 157.089394 60.609179) - (xy 157.089832 60.608123) (xy 157.119499 60.536498) (xy 157.149737 60.463497) (xy 157.1805 60.308842) - (xy 157.1805 60.151158) (xy 157.1805 60.151155) (xy 157.180499 60.151153) (xy 157.166246 60.0795) - (xy 157.149737 59.996503) (xy 157.134366 59.959394) (xy 157.089397 59.850827) (xy 157.08939 59.850814) - (xy 157.001789 59.719711) (xy 157.001786 59.719707) (xy 156.890292 59.608213) (xy 156.890288 59.60821) - (xy 156.759185 59.520609) (xy 156.759172 59.520602) (xy 156.613501 59.460264) (xy 156.613489 59.460261) - (xy 156.458845 59.4295) (xy 156.458842 59.4295) (xy 156.301158 59.4295) (xy 156.301155 59.4295) - (xy 156.14651 59.460261) (xy 156.146498 59.460264) (xy 156.000827 59.520602) (xy 156.000814 59.520609) - (xy 155.869711 59.60821) (xy 155.869707 59.608213) (xy 155.758213 59.719707) (xy 155.75821 59.719711) - (xy 155.670609 59.850814) (xy 155.670604 59.850824) (xy 155.650429 59.899532) (xy 155.606588 59.953935) - (xy 155.56006 59.973696) (xy 155.426508 60.000261) (xy 155.426498 60.000264) (xy 155.280827 60.060602) - (xy 155.280814 60.060609) (xy 155.149711 60.14821) (xy 155.149707 60.148213) (xy 155.038213 60.259707) - (xy 155.03821 60.259711) (xy 154.950609 60.390814) (xy 154.950602 60.390827) (xy 154.890264 60.536498) - (xy 154.890261 60.53651) (xy 154.8595 60.691153) (xy 154.8595 60.832814) (xy 154.839815 60.899853) - (xy 154.787011 60.945608) (xy 154.717853 60.955552) (xy 154.654297 60.926527) (xy 154.630384 60.89658) - (xy 154.62985 60.896938) (xy 154.555276 60.785331) (xy 154.555273 60.785327) (xy 154.464672 60.694726) - (xy 154.464668 60.694723) (xy 154.358133 60.623538) (xy 154.358124 60.623533) (xy 154.239744 60.574499) - (xy 154.239738 60.574497) (xy 154.114071 60.5495) (xy 154.114069 60.5495) (xy 153.985931 60.5495) - (xy 153.985929 60.5495) (xy 153.860261 60.574497) (xy 153.860255 60.574499) (xy 153.741875 60.623533) - (xy 153.741866 60.623538) (xy 153.635331 60.694723) (xy 153.630621 60.698589) (xy 153.629283 60.696958) - (xy 153.576358 60.725858) (xy 153.506666 60.720874) (xy 153.47028 60.697489) (xy 153.469379 60.698589) - (xy 153.464668 60.694723) (xy 153.358133 60.623538) (xy 153.358124 60.623533) (xy 153.239744 60.574499) - (xy 153.239738 60.574497) (xy 153.114071 60.5495) (xy 153.114069 60.5495) (xy 152.985931 60.5495) - (xy 152.985929 60.5495) (xy 152.860261 60.574497) (xy 152.860255 60.574499) (xy 152.741875 60.623533) - (xy 152.741866 60.623538) (xy 152.635331 60.694723) (xy 152.635327 60.694726) (xy 152.544726 60.785327) - (xy 152.544723 60.785331) (xy 152.473538 60.891866) (xy 152.473533 60.891875) (xy 152.424499 61.010255) - (xy 152.424497 61.010261) (xy 152.3995 61.135928) (xy 152.3995 61.135931) (xy 152.3995 61.264069) - (xy 152.3995 61.264071) (xy 152.399499 61.264071) (xy 145.67469 61.264071) (xy 145.675069 59.071153) - (xy 148.7495 59.071153) (xy 148.7495 59.228846) (xy 148.780261 59.383489) (xy 148.780264 59.383501) - (xy 148.840602 59.529172) (xy 148.840609 59.529185) (xy 148.92821 59.660288) (xy 148.928213 59.660292) - (xy 149.039707 59.771786) (xy 149.039711 59.771789) (xy 149.170814 59.85939) (xy 149.170827 59.859397) - (xy 149.294466 59.910609) (xy 149.316503 59.919737) (xy 149.46976 59.950222) (xy 149.471153 59.950499) - (xy 149.471156 59.9505) (xy 149.471158 59.9505) (xy 149.628844 59.9505) (xy 149.628845 59.950499) - (xy 149.783497 59.919737) (xy 149.929179 59.859394) (xy 150.060289 59.771789) (xy 150.171789 59.660289) - (xy 150.259394 59.529179) (xy 150.319737 59.383497) (xy 150.3505 59.228842) (xy 150.3505 59.071158) - (xy 150.3505 59.071155) (xy 150.350499 59.071153) (xy 152.0745 59.071153) (xy 152.0745 59.228846) - (xy 152.105261 59.383489) (xy 152.105264 59.383501) (xy 152.165602 59.529172) (xy 152.165609 59.529185) - (xy 152.25321 59.660288) (xy 152.253213 59.660292) (xy 152.364707 59.771786) (xy 152.364711 59.771789) - (xy 152.495814 59.85939) (xy 152.495827 59.859397) (xy 152.619466 59.910609) (xy 152.641503 59.919737) - (xy 152.79476 59.950222) (xy 152.796153 59.950499) (xy 152.796156 59.9505) (xy 152.796158 59.9505) - (xy 152.953844 59.9505) (xy 152.953845 59.950499) (xy 153.108497 59.919737) (xy 153.254179 59.859394) - (xy 153.385289 59.771789) (xy 153.399817 59.75726) (xy 153.461134 59.723775) (xy 153.530826 59.728756) - (xy 153.57518 59.757259) (xy 153.689707 59.871786) (xy 153.689711 59.871789) (xy 153.820814 59.95939) - (xy 153.820827 59.959397) (xy 153.966498 60.019735) (xy 153.966503 60.019737) (xy 154.121153 60.050499) - (xy 154.121156 60.0505) (xy 154.121158 60.0505) (xy 154.278844 60.0505) (xy 154.278845 60.050499) - (xy 154.433497 60.019737) (xy 154.579179 59.959394) (xy 154.710289 59.871789) (xy 154.821789 59.760289) - (xy 154.909394 59.629179) (xy 154.969737 59.483497) (xy 155.0005 59.328842) (xy 155.0005 59.171158) - (xy 155.0005 59.171155) (xy 155.000499 59.171153) (xy 154.984949 59.092977) (xy 154.969737 59.016503) - (xy 154.948298 58.964744) (xy 154.909397 58.870827) (xy 154.90939 58.870814) (xy 154.821789 58.739711) - (xy 154.821786 58.739707) (xy 154.710292 58.628213) (xy 154.710288 58.62821) (xy 154.579185 58.540609) - (xy 154.579172 58.540602) (xy 154.433501 58.480264) (xy 154.433489 58.480261) (xy 154.278845 58.4495) - (xy 154.278842 58.4495) (xy 154.121158 58.4495) (xy 154.121155 58.4495) (xy 153.96651 58.480261) - (xy 153.966498 58.480264) (xy 153.820827 58.540602) (xy 153.820814 58.540609) (xy 153.689711 58.62821) - (xy 153.689707 58.628213) (xy 153.675181 58.64274) (xy 153.613858 58.676225) (xy 153.544166 58.671241) - (xy 153.499819 58.64274) (xy 153.385292 58.528213) (xy 153.385288 58.52821) (xy 153.254185 58.440609) - (xy 153.254172 58.440602) (xy 153.108501 58.380264) (xy 153.108489 58.380261) (xy 152.953845 58.3495) - (xy 152.953842 58.3495) (xy 152.796158 58.3495) (xy 152.796155 58.3495) (xy 152.64151 58.380261) - (xy 152.641498 58.380264) (xy 152.495827 58.440602) (xy 152.495814 58.440609) (xy 152.364711 58.52821) - (xy 152.364707 58.528213) (xy 152.253213 58.639707) (xy 152.25321 58.639711) (xy 152.165609 58.770814) - (xy 152.165602 58.770827) (xy 152.105264 58.916498) (xy 152.105261 58.91651) (xy 152.0745 59.071153) - (xy 150.350499 59.071153) (xy 150.338104 59.008842) (xy 150.319737 58.916503) (xy 150.308879 58.890289) - (xy 150.259397 58.770827) (xy 150.25939 58.770814) (xy 150.171789 58.639711) (xy 150.171786 58.639707) - (xy 150.060292 58.528213) (xy 150.060288 58.52821) (xy 149.929185 58.440609) (xy 149.929172 58.440602) - (xy 149.783501 58.380264) (xy 149.783489 58.380261) (xy 149.628845 58.3495) (xy 149.628842 58.3495) - (xy 149.471158 58.3495) (xy 149.471155 58.3495) (xy 149.31651 58.380261) (xy 149.316498 58.380264) - (xy 149.170827 58.440602) (xy 149.170814 58.440609) (xy 149.039711 58.52821) (xy 149.039707 58.528213) - (xy 148.928213 58.639707) (xy 148.92821 58.639711) (xy 148.840609 58.770814) (xy 148.840602 58.770827) - (xy 148.780264 58.916498) (xy 148.780261 58.91651) (xy 148.7495 59.071153) (xy 145.675069 59.071153) - (xy 145.675329 57.561151) (xy 147.1095 57.561151) (xy 147.1095 57.718844) (xy 147.140261 57.873487) - (xy 147.140264 57.873499) (xy 147.200602 58.01917) (xy 147.200609 58.019183) (xy 147.28821 58.150286) - (xy 147.288213 58.15029) (xy 147.399707 58.261784) (xy 147.399711 58.261787) (xy 147.530814 58.349388) - (xy 147.530827 58.349395) (xy 147.670656 58.407313) (xy 147.676503 58.409735) (xy 147.822833 58.438842) - (xy 147.831153 58.440497) (xy 147.831156 58.440498) (xy 147.831158 58.440498) (xy 147.988844 58.440498) - (xy 147.988845 58.440497) (xy 148.143497 58.409735) (xy 148.27451 58.355468) (xy 148.289172 58.349395) - (xy 148.289172 58.349394) (xy 148.289179 58.349392) (xy 148.420289 58.261787) (xy 148.531789 58.150287) - (xy 148.619394 58.019177) (xy 148.679737 57.873495) (xy 148.7105 57.71884) (xy 148.7105 57.561156) - (xy 148.7105 57.561153) (xy 148.710499 57.561151) (xy 148.710171 57.5595) (xy 148.679737 57.406501) - (xy 148.679735 57.406496) (xy 148.619397 57.260825) (xy 148.61939 57.260812) (xy 148.531789 57.129709) - (xy 148.531786 57.129705) (xy 148.420292 57.018211) (xy 148.420288 57.018208) (xy 148.289185 56.930607) - (xy 148.289172 56.9306) (xy 148.143501 56.870262) (xy 148.143489 56.870259) (xy 147.988845 56.839498) - (xy 147.988842 56.839498) (xy 147.831158 56.839498) (xy 147.831155 56.839498) (xy 147.67651 56.870259) - (xy 147.676498 56.870262) (xy 147.530827 56.9306) (xy 147.530814 56.930607) (xy 147.399711 57.018208) - (xy 147.399707 57.018211) (xy 147.288213 57.129705) (xy 147.28821 57.129709) (xy 147.200609 57.260812) - (xy 147.200602 57.260825) (xy 147.140264 57.406496) (xy 147.140261 57.406508) (xy 147.1095 57.561151) - (xy 145.675329 57.561151) (xy 145.675493 56.611153) (xy 149.3845 56.611153) (xy 149.3845 56.768846) - (xy 149.415261 56.923489) (xy 149.415264 56.923501) (xy 149.475602 57.069172) (xy 149.475609 57.069185) - (xy 149.56321 57.200288) (xy 149.563213 57.200292) (xy 149.674707 57.311786) (xy 149.674711 57.311789) - (xy 149.805814 57.39939) (xy 149.805827 57.399397) (xy 149.951394 57.459692) (xy 149.951503 57.459737) - (xy 150.068403 57.48299) (xy 150.106153 57.490499) (xy 150.106156 57.4905) (xy 150.106158 57.4905) - (xy 150.263844 57.4905) (xy 150.263845 57.490499) (xy 150.418497 57.459737) (xy 150.564179 57.399394) - (xy 150.695289 57.311789) (xy 150.806789 57.200289) (xy 150.807882 57.198653) (xy 152.2395 57.198653) - (xy 152.2395 57.356346) (xy 152.270261 57.510989) (xy 152.270264 57.511001) (xy 152.330602 57.656672) - (xy 152.330609 57.656685) (xy 152.41821 57.787788) (xy 152.418213 57.787792) (xy 152.529707 57.899286) - (xy 152.529711 57.899289) (xy 152.660814 57.98689) (xy 152.660827 57.986897) (xy 152.806498 58.047235) - (xy 152.806503 58.047237) (xy 152.946423 58.075069) (xy 152.961153 58.077999) (xy 152.961156 58.078) - (xy 152.961158 58.078) (xy 153.118844 58.078) (xy 153.118845 58.077999) (xy 153.273497 58.047237) - (xy 153.419179 57.986894) (xy 153.550289 57.899289) (xy 153.661789 57.787789) (xy 153.749394 57.656679) - (xy 153.75191 57.650606) (xy 153.776533 57.591158) (xy 153.794139 57.548653) (xy 155.082 57.548653) + (xy 181.385264 60.386498) (xy 181.385261 60.38651) (xy 181.3545 60.541153) (xy 163.308326 60.541153) + (xy 163.32358 60.504328) (xy 163.347018 60.386498) (xy 163.3505 60.368995) (xy 163.3505 60.231004) + (xy 163.323581 60.095677) (xy 163.32358 60.095676) (xy 163.32358 60.095672) (xy 163.316881 60.0795) + (xy 163.270778 59.968195) (xy 163.270771 59.968182) (xy 163.194114 59.853458) (xy 163.194111 59.853454) + (xy 163.096545 59.755888) (xy 163.096541 59.755885) (xy 162.981817 59.679228) (xy 162.981804 59.679221) + (xy 162.854332 59.626421) (xy 162.854322 59.626418) (xy 162.718995 59.5995) (xy 162.718993 59.5995) + (xy 162.581007 59.5995) (xy 162.581005 59.5995) (xy 162.445677 59.626418) (xy 162.445667 59.626421) + (xy 162.318195 59.679221) (xy 162.318182 59.679228) (xy 162.203458 59.755885) (xy 162.203454 59.755888) + (xy 162.105888 59.853454) (xy 162.105885 59.853458) (xy 162.029228 59.968182) (xy 162.029221 59.968195) + (xy 161.976421 60.095667) (xy 161.976418 60.095677) (xy 161.9495 60.231004) (xy 161.9495 60.231007) + (xy 161.9495 60.368993) (xy 161.9495 60.368995) (xy 161.949499 60.368995) (xy 160.825694 60.368995) + (xy 160.800778 60.308842) (xy 160.789017 60.280447) (xy 160.78901 60.280434) (xy 160.701409 60.149331) + (xy 160.701406 60.149327) (xy 160.589912 60.037833) (xy 160.589908 60.03783) (xy 160.458805 59.950229) + (xy 160.458792 59.950222) (xy 160.313121 59.889884) (xy 160.313109 59.889881) (xy 160.158465 59.85912) + (xy 160.158462 59.85912) (xy 160.000778 59.85912) (xy 160.000775 59.85912) (xy 159.84613 59.889881) + (xy 159.846118 59.889884) (xy 159.700447 59.950222) (xy 159.700434 59.950229) (xy 159.569331 60.03783) + (xy 159.569327 60.037833) (xy 159.457833 60.149327) (xy 159.45783 60.149331) (xy 159.370229 60.280434) + (xy 159.370224 60.280444) (xy 159.310863 60.423755) (xy 159.267022 60.478158) (xy 159.243755 60.490863) + (xy 159.100444 60.550224) (xy 159.100434 60.550229) (xy 158.969331 60.63783) (xy 158.969327 60.637833) + (xy 158.857833 60.749327) (xy 158.85783 60.749331) (xy 158.770229 60.880434) (xy 158.770222 60.880447) + (xy 158.709884 61.026118) (xy 158.709881 61.02613) (xy 158.67912 61.180773) (xy 156.348284 61.180773) + (xy 156.369394 61.149179) (xy 156.38957 61.100468) (xy 156.433408 61.046066) (xy 156.479938 61.026303) + (xy 156.613497 60.999737) (xy 156.759179 60.939394) (xy 156.890289 60.851789) (xy 157.001789 60.740289) + (xy 157.089394 60.609179) (xy 157.149737 60.463497) (xy 157.1805 60.308842) (xy 157.1805 60.151158) + (xy 157.1805 60.151155) (xy 157.180499 60.151153) (xy 157.166246 60.0795) (xy 157.149737 59.996503) + (xy 157.134366 59.959394) (xy 157.089397 59.850827) (xy 157.08939 59.850814) (xy 157.001789 59.719711) + (xy 157.001786 59.719707) (xy 156.890292 59.608213) (xy 156.890288 59.60821) (xy 156.759185 59.520609) + (xy 156.759172 59.520602) (xy 156.613501 59.460264) (xy 156.613489 59.460261) (xy 156.458845 59.4295) + (xy 156.458842 59.4295) (xy 156.301158 59.4295) (xy 156.301155 59.4295) (xy 156.14651 59.460261) + (xy 156.146498 59.460264) (xy 156.000827 59.520602) (xy 156.000814 59.520609) (xy 155.869711 59.60821) + (xy 155.869707 59.608213) (xy 155.758213 59.719707) (xy 155.75821 59.719711) (xy 155.670609 59.850814) + (xy 155.670604 59.850824) (xy 155.650429 59.899532) (xy 155.606588 59.953935) (xy 155.56006 59.973696) + (xy 155.426508 60.000261) (xy 155.426498 60.000264) (xy 155.280827 60.060602) (xy 155.280814 60.060609) + (xy 155.149711 60.14821) (xy 155.149707 60.148213) (xy 155.038213 60.259707) (xy 155.03821 60.259711) + (xy 154.950609 60.390814) (xy 154.950602 60.390827) (xy 154.890264 60.536498) (xy 154.890261 60.53651) + (xy 154.8595 60.691153) (xy 154.8595 60.741862) (xy 154.839815 60.808901) (xy 154.787011 60.854656) + (xy 154.717853 60.8646) (xy 154.654297 60.835575) (xy 154.632398 60.810753) (xy 154.594114 60.753458) + (xy 154.594111 60.753454) (xy 154.496545 60.655888) (xy 154.496541 60.655885) (xy 154.381817 60.579228) + (xy 154.381804 60.579221) (xy 154.254332 60.526421) (xy 154.254322 60.526418) (xy 154.118995 60.4995) + (xy 154.118993 60.4995) (xy 153.981007 60.4995) (xy 153.981005 60.4995) (xy 153.845677 60.526418) + (xy 153.845667 60.526421) (xy 153.718195 60.579221) (xy 153.718182 60.579228) (xy 153.618891 60.645573) + (xy 153.552213 60.666451) (xy 153.484833 60.647966) (xy 153.481109 60.645573) (xy 153.381817 60.579228) + (xy 153.381804 60.579221) (xy 153.254332 60.526421) (xy 153.254322 60.526418) (xy 153.118995 60.4995) + (xy 153.118993 60.4995) (xy 152.981007 60.4995) (xy 152.981005 60.4995) (xy 152.845677 60.526418) + (xy 152.845667 60.526421) (xy 152.718195 60.579221) (xy 152.718182 60.579228) (xy 152.603458 60.655885) + (xy 152.603454 60.655888) (xy 152.505888 60.753454) (xy 152.505885 60.753458) (xy 152.429228 60.868182) + (xy 152.429221 60.868195) (xy 152.376421 60.995667) (xy 152.376418 60.995677) (xy 152.3495 61.131004) + (xy 152.3495 61.131007) (xy 152.3495 61.268993) (xy 152.3495 61.268995) (xy 152.349499 61.268995) + (xy 145.606869 61.268995) (xy 145.607245 59.071153) (xy 148.7495 59.071153) (xy 148.7495 59.228846) + (xy 148.780261 59.383489) (xy 148.780264 59.383501) (xy 148.840602 59.529172) (xy 148.840609 59.529185) + (xy 148.92821 59.660288) (xy 148.928213 59.660292) (xy 149.039707 59.771786) (xy 149.039711 59.771789) + (xy 149.170814 59.85939) (xy 149.170827 59.859397) (xy 149.294466 59.910609) (xy 149.316503 59.919737) + (xy 149.46976 59.950222) (xy 149.471153 59.950499) (xy 149.471156 59.9505) (xy 149.471158 59.9505) + (xy 149.628844 59.9505) (xy 149.628845 59.950499) (xy 149.783497 59.919737) (xy 149.929179 59.859394) + (xy 150.060289 59.771789) (xy 150.171789 59.660289) (xy 150.259394 59.529179) (xy 150.319737 59.383497) + (xy 150.3505 59.228842) (xy 150.3505 59.071158) (xy 150.3505 59.071155) (xy 150.350499 59.071153) + (xy 152.0745 59.071153) (xy 152.0745 59.228846) (xy 152.105261 59.383489) (xy 152.105264 59.383501) + (xy 152.165602 59.529172) (xy 152.165609 59.529185) (xy 152.25321 59.660288) (xy 152.253213 59.660292) + (xy 152.364707 59.771786) (xy 152.364711 59.771789) (xy 152.495814 59.85939) (xy 152.495827 59.859397) + (xy 152.619466 59.910609) (xy 152.641503 59.919737) (xy 152.79476 59.950222) (xy 152.796153 59.950499) + (xy 152.796156 59.9505) (xy 152.796158 59.9505) (xy 152.953844 59.9505) (xy 152.953845 59.950499) + (xy 153.108497 59.919737) (xy 153.254179 59.859394) (xy 153.385289 59.771789) (xy 153.399817 59.75726) + (xy 153.461134 59.723775) (xy 153.530826 59.728756) (xy 153.57518 59.757259) (xy 153.689707 59.871786) + (xy 153.689711 59.871789) (xy 153.820814 59.95939) (xy 153.820827 59.959397) (xy 153.966498 60.019735) + (xy 153.966503 60.019737) (xy 154.121153 60.050499) (xy 154.121156 60.0505) (xy 154.121158 60.0505) + (xy 154.278844 60.0505) (xy 154.278845 60.050499) (xy 154.433497 60.019737) (xy 154.579179 59.959394) + (xy 154.710289 59.871789) (xy 154.821789 59.760289) (xy 154.909394 59.629179) (xy 154.969737 59.483497) + (xy 155.0005 59.328842) (xy 155.0005 59.171158) (xy 155.0005 59.171155) (xy 155.000499 59.171153) + (xy 154.986706 59.101811) (xy 154.969737 59.016503) (xy 154.955357 58.981786) (xy 154.909397 58.870827) + (xy 154.90939 58.870814) (xy 154.821789 58.739711) (xy 154.821786 58.739707) (xy 154.710292 58.628213) + (xy 154.710288 58.62821) (xy 154.579185 58.540609) (xy 154.579172 58.540602) (xy 154.433501 58.480264) + (xy 154.433489 58.480261) (xy 154.278845 58.4495) (xy 154.278842 58.4495) (xy 154.121158 58.4495) + (xy 154.121155 58.4495) (xy 153.96651 58.480261) (xy 153.966498 58.480264) (xy 153.820827 58.540602) + (xy 153.820814 58.540609) (xy 153.689711 58.62821) (xy 153.689707 58.628213) (xy 153.675181 58.64274) + (xy 153.613858 58.676225) (xy 153.544166 58.671241) (xy 153.499819 58.64274) (xy 153.385292 58.528213) + (xy 153.385288 58.52821) (xy 153.254185 58.440609) (xy 153.254172 58.440602) (xy 153.108501 58.380264) + (xy 153.108489 58.380261) (xy 152.953845 58.3495) (xy 152.953842 58.3495) (xy 152.796158 58.3495) + (xy 152.796155 58.3495) (xy 152.64151 58.380261) (xy 152.641498 58.380264) (xy 152.495827 58.440602) + (xy 152.495814 58.440609) (xy 152.364711 58.52821) (xy 152.364707 58.528213) (xy 152.253213 58.639707) + (xy 152.25321 58.639711) (xy 152.165609 58.770814) (xy 152.165602 58.770827) (xy 152.105264 58.916498) + (xy 152.105261 58.91651) (xy 152.0745 59.071153) (xy 150.350499 59.071153) (xy 150.332723 58.981789) + (xy 150.319737 58.916503) (xy 150.295615 58.858266) (xy 150.259397 58.770827) (xy 150.25939 58.770814) + (xy 150.171789 58.639711) (xy 150.171786 58.639707) (xy 150.060292 58.528213) (xy 150.060288 58.52821) + (xy 149.929185 58.440609) (xy 149.929172 58.440602) (xy 149.783501 58.380264) (xy 149.783489 58.380261) + (xy 149.628845 58.3495) (xy 149.628842 58.3495) (xy 149.471158 58.3495) (xy 149.471155 58.3495) + (xy 149.31651 58.380261) (xy 149.316498 58.380264) (xy 149.170827 58.440602) (xy 149.170814 58.440609) + (xy 149.039711 58.52821) (xy 149.039707 58.528213) (xy 148.928213 58.639707) (xy 148.92821 58.639711) + (xy 148.840609 58.770814) (xy 148.840602 58.770827) (xy 148.780264 58.916498) (xy 148.780261 58.91651) + (xy 148.7495 59.071153) (xy 145.607245 59.071153) (xy 145.607504 57.561153) (xy 146.7595 57.561153) + (xy 146.7595 57.718846) (xy 146.790261 57.873489) (xy 146.790264 57.873501) (xy 146.850602 58.019172) + (xy 146.850609 58.019185) (xy 146.93821 58.150288) (xy 146.938213 58.150292) (xy 147.049707 58.261786) + (xy 147.049711 58.261789) (xy 147.180814 58.34939) (xy 147.180827 58.349397) (xy 147.326498 58.409735) + (xy 147.326503 58.409737) (xy 147.418312 58.427999) (xy 147.481153 58.440499) (xy 147.481156 58.4405) + (xy 147.481158 58.4405) (xy 147.638844 58.4405) (xy 147.638845 58.440499) (xy 147.793497 58.409737) + (xy 147.813602 58.401408) (xy 147.88307 58.393939) (xy 147.908507 58.401407) (xy 148.004904 58.441336) + (xy 148.004907 58.441336) (xy 148.004912 58.441338) (xy 148.159554 58.472098) (xy 148.159557 58.472099) + (xy 148.159559 58.472099) (xy 148.317245 58.472099) (xy 148.317246 58.472098) (xy 148.471898 58.441336) + (xy 148.61758 58.380993) (xy 148.74869 58.293388) (xy 148.86019 58.181888) (xy 148.947795 58.050778) + (xy 149.008138 57.905096) (xy 149.038901 57.750441) (xy 149.038901 57.592757) (xy 149.038901 57.592754) + (xy 149.0389 57.592752) (xy 149.038405 57.590263) (xy 149.008138 57.438102) (xy 148.995052 57.40651) + (xy 148.947798 57.292426) (xy 148.947791 57.292413) (xy 148.86019 57.16131) (xy 148.860187 57.161306) + (xy 148.748693 57.049812) (xy 148.748689 57.049809) (xy 148.617586 56.962208) (xy 148.617573 56.962201) + (xy 148.471902 56.901863) (xy 148.47189 56.90186) (xy 148.317246 56.871099) (xy 148.317243 56.871099) + (xy 148.159559 56.871099) (xy 148.159556 56.871099) (xy 148.004907 56.90186) (xy 148.004906 56.901861) + (xy 147.984792 56.910192) (xy 147.915322 56.917658) (xy 147.889892 56.91019) (xy 147.842618 56.890609) + (xy 147.793498 56.870263) (xy 147.793488 56.87026) (xy 147.638845 56.8395) (xy 147.638842 56.8395) + (xy 147.481158 56.8395) (xy 147.481155 56.8395) (xy 147.32651 56.870261) (xy 147.326498 56.870264) + (xy 147.180827 56.930602) (xy 147.180814 56.930609) (xy 147.049711 57.01821) (xy 147.049707 57.018213) + (xy 146.938213 57.129707) (xy 146.93821 57.129711) (xy 146.850609 57.260814) (xy 146.850602 57.260827) + (xy 146.790264 57.406498) (xy 146.790261 57.40651) (xy 146.7595 57.561153) (xy 145.607504 57.561153) + (xy 145.607667 56.611153) (xy 149.3845 56.611153) (xy 149.3845 56.768846) (xy 149.415261 56.923489) + (xy 149.415264 56.923501) (xy 149.475602 57.069172) (xy 149.475609 57.069185) (xy 149.56321 57.200288) + (xy 149.563213 57.200292) (xy 149.674707 57.311786) (xy 149.674711 57.311789) (xy 149.805814 57.39939) + (xy 149.805827 57.399397) (xy 149.951394 57.459692) (xy 149.951503 57.459737) (xy 150.079664 57.48523) + (xy 150.106153 57.490499) (xy 150.106156 57.4905) (xy 150.106158 57.4905) (xy 150.263844 57.4905) + (xy 150.263845 57.490499) (xy 150.418497 57.459737) (xy 150.564179 57.399394) (xy 150.695289 57.311789) + (xy 150.695925 57.311153) (xy 151.3495 57.311153) (xy 151.3495 57.468846) (xy 151.380261 57.623489) + (xy 151.380264 57.623501) (xy 151.440602 57.769172) (xy 151.440609 57.769185) (xy 151.52821 57.900288) + (xy 151.528213 57.900292) (xy 151.639707 58.011786) (xy 151.639711 58.011789) (xy 151.770814 58.09939) + (xy 151.770827 58.099397) (xy 151.916498 58.159735) (xy 151.916503 58.159737) (xy 152.027858 58.181887) + (xy 152.071153 58.190499) (xy 152.071156 58.1905) (xy 152.071158 58.1905) (xy 152.228844 58.1905) + (xy 152.228845 58.190499) (xy 152.383497 58.159737) (xy 152.529179 58.099394) (xy 152.660289 58.011789) + (xy 152.771789 57.900289) (xy 152.859394 57.769179) (xy 152.867156 57.750441) (xy 152.889783 57.695813) + (xy 152.919737 57.623497) (xy 152.926171 57.591153) (xy 152.934625 57.548653) (xy 155.082 57.548653) (xy 155.082 57.706346) (xy 155.112761 57.860989) (xy 155.112764 57.861001) (xy 155.173102 58.006672) (xy 155.173109 58.006685) (xy 155.26071 58.137788) (xy 155.260713 58.137792) (xy 155.372207 58.249286) - (xy 155.372211 58.249289) (xy 155.503314 58.33689) (xy 155.503327 58.336897) (xy 155.608026 58.380264) + (xy 155.372211 58.249289) (xy 155.503314 58.33689) (xy 155.503327 58.336897) (xy 155.609786 58.380993) (xy 155.649003 58.397237) (xy 155.803653 58.427999) (xy 155.803656 58.428) (xy 155.803658 58.428) (xy 155.961344 58.428) (xy 155.961345 58.427999) (xy 156.115997 58.397237) (xy 156.261679 58.336894) - (xy 156.315169 58.301153) (xy 156.9195 58.301153) (xy 156.9195 58.458846) (xy 156.950261 58.613489) - (xy 156.950264 58.613501) (xy 157.010602 58.759172) (xy 157.010609 58.759185) (xy 157.09821 58.890288) - (xy 157.098213 58.890292) (xy 157.209707 59.001786) (xy 157.209711 59.001789) (xy 157.340814 59.08939) - (xy 157.340827 59.089397) (xy 157.486498 59.149735) (xy 157.486503 59.149737) (xy 157.632823 59.178842) - (xy 157.641153 59.180499) (xy 157.641156 59.1805) (xy 157.641158 59.1805) (xy 157.798844 59.1805) - (xy 157.798845 59.180499) (xy 157.953497 59.149737) (xy 158.090529 59.092977) (xy 158.099172 59.089397) - (xy 158.099172 59.089396) (xy 158.099179 59.089394) (xy 158.230289 59.001789) (xy 158.341789 58.890289) - (xy 158.429394 58.759179) (xy 158.431058 58.755163) (xy 158.451008 58.706998) (xy 158.489737 58.613497) - (xy 158.5205 58.458842) (xy 158.5205 58.321153) (xy 159.6595 58.321153) (xy 159.6595 58.478846) - (xy 159.690261 58.633489) (xy 159.690264 58.633501) (xy 159.750602 58.779172) (xy 159.750609 58.779185) - (xy 159.83821 58.910288) (xy 159.838213 58.910292) (xy 159.949707 59.021786) (xy 159.949711 59.021789) - (xy 160.080814 59.10939) (xy 160.080827 59.109397) (xy 160.211419 59.163489) (xy 160.226503 59.169737) - (xy 160.367811 59.197845) (xy 160.381153 59.200499) (xy 160.381156 59.2005) (xy 160.381158 59.2005) - (xy 160.538844 59.2005) (xy 160.538845 59.200499) (xy 160.693497 59.169737) (xy 160.839179 59.109394) - (xy 160.970289 59.021789) (xy 161.081789 58.910289) (xy 161.169394 58.779179) (xy 161.172854 58.770827) - (xy 161.210571 58.679767) (xy 161.229737 58.633497) (xy 161.2605 58.478842) (xy 161.2605 58.321158) - (xy 161.2605 58.321155) (xy 161.260499 58.321153) (xy 161.246204 58.249289) (xy 161.229737 58.166503) - (xy 161.224493 58.153842) (xy 161.169397 58.020827) (xy 161.16939 58.020814) (xy 161.138081 57.973957) - (xy 161.105714 57.925517) (xy 161.101216 57.911153) (xy 165.4695 57.911153) (xy 165.4695 58.068846) - (xy 165.500261 58.223489) (xy 165.500264 58.223501) (xy 165.560602 58.369172) (xy 165.560609 58.369185) - (xy 165.64821 58.500288) (xy 165.648213 58.500292) (xy 165.759707 58.611786) (xy 165.759711 58.611789) - (xy 165.781209 58.626154) (xy 165.826014 58.679767) (xy 165.834721 58.749092) (xy 165.833935 58.753447) - (xy 165.8145 58.851153) (xy 165.8145 59.008846) (xy 165.845261 59.163489) (xy 165.845264 59.163501) - (xy 165.905602 59.309172) (xy 165.905609 59.309185) (xy 165.99321 59.440288) (xy 165.993213 59.440292) - (xy 166.104707 59.551786) (xy 166.104711 59.551789) (xy 166.235814 59.63939) (xy 166.235827 59.639397) - (xy 166.381498 59.699735) (xy 166.381503 59.699737) (xy 166.536153 59.730499) (xy 166.536156 59.7305) - (xy 166.536158 59.7305) (xy 166.693844 59.7305) (xy 166.693845 59.730499) (xy 166.848497 59.699737) - (xy 166.994179 59.639394) (xy 167.125289 59.551789) (xy 167.236789 59.440289) (xy 167.324394 59.309179) - (xy 167.384737 59.163497) (xy 167.4155 59.008842) (xy 167.4155 58.858266) (xy 167.435185 58.791227) - (xy 167.470609 58.755164) (xy 167.531741 58.714318) (xy 167.641947 58.604111) (xy 167.703268 58.570628) - (xy 167.77296 58.575612) (xy 167.798518 58.588692) (xy 167.892266 58.651333) (xy 167.892279 58.65134) - (xy 168.036139 58.710928) (xy 168.037955 58.71168) (xy 168.192605 58.742442) (xy 168.192608 58.742443) - (xy 168.19261 58.742443) (xy 168.350294 58.742443) (xy 168.409351 58.730695) (xy 168.478941 58.736921) - (xy 168.480995 58.737751) (xy 168.593611 58.784397) (xy 168.606503 58.789737) (xy 168.761153 58.820499) - (xy 168.761156 58.8205) (xy 168.761158 58.8205) (xy 168.918844 58.8205) (xy 168.918845 58.820499) - (xy 169.073497 58.789737) (xy 169.219179 58.729394) (xy 169.350289 58.641789) (xy 169.461789 58.530289) - (xy 169.549394 58.399179) (xy 169.609737 58.253497) (xy 169.6405 58.098842) (xy 169.6405 57.941158) - (xy 169.6405 57.941155) (xy 169.640499 57.941153) (xy 169.635858 57.91782) (xy 169.609737 57.786503) - (xy 169.603241 57.770821) (xy 169.549397 57.640827) (xy 169.549393 57.64082) (xy 169.548652 57.639711) - (xy 169.533508 57.617046) (xy 169.512631 57.55037) (xy 169.531115 57.48299) (xy 169.567716 57.445057) - (xy 169.664669 57.380276) (xy 169.755276 57.289669) (xy 169.826465 57.183127) (xy 169.875501 57.064744) - (xy 169.876686 57.058784) (xy 169.878383 57.050257) (xy 169.910768 56.988347) (xy 169.971484 56.953772) - (xy 170.041253 56.957512) (xy 170.097925 56.998379) (xy 170.121617 57.050257) (xy 170.124497 57.064738) - (xy 170.124499 57.064744) (xy 170.173533 57.183124) (xy 170.173538 57.183133) (xy 170.244723 57.289668) - (xy 170.244726 57.289672) (xy 170.335327 57.380273) (xy 170.335331 57.380276) (xy 170.441866 57.451461) - (xy 170.441879 57.451468) (xy 170.499901 57.475501) (xy 170.542825 57.493281) (xy 170.54665 57.494865) - (xy 170.601054 57.538705) (xy 170.623119 57.605) (xy 170.60584 57.672699) (xy 170.602303 57.678313) - (xy 170.590609 57.695815) (xy 170.590602 57.695827) (xy 170.530264 57.841498) (xy 170.530261 57.84151) - (xy 170.4995 57.996153) (xy 170.4995 58.153846) (xy 170.530261 58.308489) (xy 170.530264 58.308501) - (xy 170.590602 58.454172) (xy 170.590609 58.454185) (xy 170.67821 58.585288) (xy 170.678213 58.585292) - (xy 170.789707 58.696786) (xy 170.789711 58.696789) (xy 170.920814 58.78439) (xy 170.920827 58.784397) - (xy 171.007989 58.8205) (xy 171.066503 58.844737) (xy 171.221153 58.875499) (xy 171.221156 58.8755) - (xy 171.221158 58.8755) (xy 171.378844 58.8755) (xy 171.378845 58.875499) (xy 171.533497 58.844737) - (xy 171.679179 58.784394) (xy 171.810289 58.696789) (xy 171.921789 58.585289) (xy 172.009394 58.454179) - (xy 172.069737 58.308497) (xy 172.085923 58.227121) (xy 172.118307 58.165213) (xy 172.179023 58.130639) - (xy 172.248792 58.134378) (xy 172.305464 58.175244) (xy 172.329157 58.227123) (xy 172.360261 58.383491) - (xy 172.360264 58.383501) (xy 172.420602 58.529172) (xy 172.420609 58.529185) (xy 172.50821 58.660288) - (xy 172.508213 58.660292) (xy 172.619707 58.771786) (xy 172.619711 58.771789) (xy 172.750814 58.85939) - (xy 172.750827 58.859397) (xy 172.884217 58.914648) (xy 172.896503 58.919737) (xy 173.021341 58.944569) - (xy 173.051153 58.950499) (xy 173.051156 58.9505) (xy 173.051158 58.9505) (xy 173.208844 58.9505) - (xy 173.208845 58.950499) (xy 173.363497 58.919737) (xy 173.481592 58.870821) (xy 173.509172 58.859397) - (xy 173.509172 58.859396) (xy 173.509179 58.859394) (xy 173.640289 58.771789) (xy 173.751789 58.660289) - (xy 173.839394 58.529179) (xy 173.865433 58.466314) (xy 173.909271 58.411913) (xy 173.975565 58.389847) - (xy 174.004184 58.39215) (xy 174.022499 58.395794) (xy 174.046157 58.4005) (xy 174.046158 58.4005) - (xy 174.203844 58.4005) (xy 174.203845 58.400499) (xy 174.358497 58.369737) (xy 174.450419 58.331661) - (xy 174.519888 58.324193) (xy 174.582367 58.355468) (xy 174.618019 58.415557) (xy 174.615525 58.485382) - (xy 174.612432 58.493675) (xy 174.5745 58.585251) (xy 174.574497 58.585261) (xy 174.5495 58.710928) - (xy 174.5495 58.710931) (xy 174.5495 58.839069) (xy 174.5495 58.839071) (xy 174.549499 58.839071) - (xy 174.574497 58.964738) (xy 174.574499 58.964744) (xy 174.623533 59.083124) (xy 174.623538 59.083133) - (xy 174.694723 59.189668) (xy 174.694726 59.189672) (xy 174.785327 59.280273) (xy 174.785331 59.280276) - (xy 174.891866 59.351461) (xy 174.891872 59.351464) (xy 174.891873 59.351465) (xy 175.010256 59.400501) - (xy 175.01026 59.400501) (xy 175.010261 59.400502) (xy 175.135928 59.4255) (xy 175.135931 59.4255) - (xy 175.264071 59.4255) (xy 175.348615 59.408682) (xy 175.389744 59.400501) (xy 175.508127 59.351465) - (xy 175.614669 59.280276) (xy 175.705276 59.189669) (xy 175.776465 59.083127) (xy 175.825501 58.964744) - (xy 175.834371 58.920152) (xy 175.8505 58.839071) (xy 175.8505 58.710928) (xy 175.833768 58.626814) - (xy 175.830166 58.608709) (xy 186.586707 58.608709) (xy 186.586707 58.766402) (xy 186.617468 58.921045) + (xy 156.285237 58.321153) (xy 159.6595 58.321153) (xy 159.6595 58.478846) (xy 159.690261 58.633489) + (xy 159.690264 58.633501) (xy 159.750602 58.779172) (xy 159.750609 58.779185) (xy 159.83821 58.910288) + (xy 159.838213 58.910292) (xy 159.949707 59.021786) (xy 159.949711 59.021789) (xy 160.080814 59.10939) + (xy 160.080827 59.109397) (xy 160.211419 59.163489) (xy 160.226503 59.169737) (xy 160.367811 59.197845) + (xy 160.381153 59.200499) (xy 160.381156 59.2005) (xy 160.381158 59.2005) (xy 160.538844 59.2005) + (xy 160.538845 59.200499) (xy 160.693497 59.169737) (xy 160.839179 59.109394) (xy 160.970289 59.021789) + (xy 161.081789 58.910289) (xy 161.169394 58.779179) (xy 161.172854 58.770827) (xy 161.210571 58.679767) + (xy 161.229737 58.633497) (xy 161.2605 58.478842) (xy 161.2605 58.321158) (xy 161.2605 58.321155) + (xy 161.260499 58.321153) (xy 161.254976 58.293388) (xy 161.229737 58.166503) (xy 161.226935 58.159738) + (xy 161.169397 58.020827) (xy 161.16939 58.020814) (xy 161.138081 57.973957) (xy 161.105714 57.925517) + (xy 161.101216 57.911153) (xy 165.4695 57.911153) (xy 165.4695 58.068846) (xy 165.500261 58.223489) + (xy 165.500264 58.223501) (xy 165.560602 58.369172) (xy 165.560609 58.369185) (xy 165.64821 58.500288) + (xy 165.648213 58.500292) (xy 165.759707 58.611786) (xy 165.759711 58.611789) (xy 165.781209 58.626154) + (xy 165.826014 58.679767) (xy 165.834721 58.749092) (xy 165.833935 58.753447) (xy 165.8145 58.851153) + (xy 165.8145 59.008846) (xy 165.845261 59.163489) (xy 165.845264 59.163501) (xy 165.905602 59.309172) + (xy 165.905609 59.309185) (xy 165.99321 59.440288) (xy 165.993213 59.440292) (xy 166.104707 59.551786) + (xy 166.104711 59.551789) (xy 166.235814 59.63939) (xy 166.235827 59.639397) (xy 166.381498 59.699735) + (xy 166.381503 59.699737) (xy 166.536153 59.730499) (xy 166.536156 59.7305) (xy 166.536158 59.7305) + (xy 166.693844 59.7305) (xy 166.693845 59.730499) (xy 166.848497 59.699737) (xy 166.994179 59.639394) + (xy 167.125289 59.551789) (xy 167.236789 59.440289) (xy 167.324394 59.309179) (xy 167.384737 59.163497) + (xy 167.4155 59.008842) (xy 167.4155 58.858266) (xy 167.435185 58.791227) (xy 167.470609 58.755164) + (xy 167.531741 58.714318) (xy 167.641947 58.604111) (xy 167.703268 58.570628) (xy 167.77296 58.575612) + (xy 167.798518 58.588692) (xy 167.892266 58.651333) (xy 167.892279 58.65134) (xy 168.03795 58.711678) + (xy 168.037955 58.71168) (xy 168.192605 58.742442) (xy 168.192608 58.742443) (xy 168.19261 58.742443) + (xy 168.350294 58.742443) (xy 168.409351 58.730695) (xy 168.478941 58.736921) (xy 168.480995 58.737751) + (xy 168.593611 58.784397) (xy 168.606503 58.789737) (xy 168.761153 58.820499) (xy 168.761156 58.8205) + (xy 168.761158 58.8205) (xy 168.918844 58.8205) (xy 168.918845 58.820499) (xy 169.073497 58.789737) + (xy 169.219179 58.729394) (xy 169.350289 58.641789) (xy 169.461789 58.530289) (xy 169.549394 58.399179) + (xy 169.551565 58.393939) (xy 169.586959 58.308489) (xy 169.609737 58.253497) (xy 169.6405 58.098842) + (xy 169.6405 57.941158) (xy 169.6405 57.941155) (xy 169.640499 57.941153) (xy 169.635858 57.91782) + (xy 169.609737 57.786503) (xy 169.603241 57.770821) (xy 169.548308 57.638198) (xy 169.540839 57.568729) + (xy 169.572114 57.50625) (xy 169.59397 57.48765) (xy 169.696542 57.419114) (xy 169.794114 57.321542) + (xy 169.870775 57.206811) (xy 169.873475 57.200292) (xy 169.885439 57.17141) (xy 169.92928 57.117006) + (xy 169.995574 57.094941) (xy 170.063273 57.11222) (xy 170.110884 57.163357) (xy 170.114561 57.17141) + (xy 170.129221 57.206804) (xy 170.129228 57.206817) (xy 170.205885 57.321541) (xy 170.205888 57.321545) + (xy 170.303454 57.419111) (xy 170.303458 57.419114) (xy 170.418182 57.495771) (xy 170.418194 57.495778) + (xy 170.479457 57.521153) (xy 170.521521 57.538576) (xy 170.575925 57.582416) (xy 170.59799 57.64871) + (xy 170.58863 57.700589) (xy 170.530264 57.841498) (xy 170.530261 57.84151) (xy 170.4995 57.996153) + (xy 170.4995 58.153846) (xy 170.530261 58.308489) (xy 170.530264 58.308501) (xy 170.590602 58.454172) + (xy 170.590609 58.454185) (xy 170.67821 58.585288) (xy 170.678213 58.585292) (xy 170.789707 58.696786) + (xy 170.789711 58.696789) (xy 170.920814 58.78439) (xy 170.920827 58.784397) (xy 171.05264 58.838995) + (xy 171.066503 58.844737) (xy 171.221153 58.875499) (xy 171.221156 58.8755) (xy 171.221158 58.8755) + (xy 171.378844 58.8755) (xy 171.378845 58.875499) (xy 171.533497 58.844737) (xy 171.679179 58.784394) + (xy 171.810289 58.696789) (xy 171.921789 58.585289) (xy 172.009394 58.454179) (xy 172.069737 58.308497) + (xy 172.085923 58.227121) (xy 172.118307 58.165213) (xy 172.179023 58.130639) (xy 172.248792 58.134378) + (xy 172.305464 58.175244) (xy 172.329157 58.227123) (xy 172.360261 58.383491) (xy 172.360264 58.383501) + (xy 172.420602 58.529172) (xy 172.420609 58.529185) (xy 172.50821 58.660288) (xy 172.508213 58.660292) + (xy 172.619707 58.771786) (xy 172.619711 58.771789) (xy 172.750814 58.85939) (xy 172.750827 58.859397) + (xy 172.884217 58.914648) (xy 172.896503 58.919737) (xy 173.021341 58.944569) (xy 173.051153 58.950499) + (xy 173.051156 58.9505) (xy 173.051158 58.9505) (xy 173.208844 58.9505) (xy 173.208845 58.950499) + (xy 173.363497 58.919737) (xy 173.481592 58.870821) (xy 173.509172 58.859397) (xy 173.509172 58.859396) + (xy 173.509179 58.859394) (xy 173.640289 58.771789) (xy 173.751789 58.660289) (xy 173.839394 58.529179) + (xy 173.865433 58.466314) (xy 173.909271 58.411913) (xy 173.975565 58.389847) (xy 174.004184 58.39215) + (xy 174.007579 58.392826) (xy 174.046157 58.4005) (xy 174.046158 58.4005) (xy 174.203844 58.4005) + (xy 174.203845 58.400499) (xy 174.358497 58.369737) (xy 174.358506 58.369733) (xy 174.36388 58.368103) + (xy 174.433747 58.367472) (xy 174.492863 58.404715) (xy 174.522461 58.468006) (xy 174.514449 58.53421) + (xy 174.501419 58.565667) (xy 174.501416 58.565677) (xy 174.474498 58.701004) (xy 174.474498 58.701007) + (xy 174.474498 58.838993) (xy 174.474498 58.838995) (xy 174.474497 58.838995) (xy 174.501416 58.974322) + (xy 174.501419 58.974332) (xy 174.554219 59.101804) (xy 174.554226 59.101817) (xy 174.630883 59.216541) + (xy 174.630886 59.216545) (xy 174.728452 59.314111) (xy 174.728456 59.314114) (xy 174.84318 59.390771) + (xy 174.843193 59.390778) (xy 174.962722 59.440288) (xy 174.97067 59.44358) (xy 174.970674 59.44358) + (xy 174.970675 59.443581) (xy 175.106002 59.4705) (xy 175.106005 59.4705) (xy 175.243993 59.4705) + (xy 175.335039 59.452389) (xy 175.379326 59.44358) (xy 175.506809 59.390775) (xy 175.62154 59.314114) + (xy 175.719112 59.216542) (xy 175.795773 59.101811) (xy 175.848578 58.974328) (xy 175.858725 58.923315) + (xy 175.875498 58.838995) (xy 175.875498 58.701004) (xy 175.86074 58.626814) (xy 175.86074 58.626813) + (xy 175.857139 58.608709) (xy 186.586707 58.608709) (xy 186.586707 58.766402) (xy 186.617468 58.921045) (xy 186.617471 58.921057) (xy 186.677809 59.066728) (xy 186.677816 59.066741) (xy 186.765417 59.197844) (xy 186.76542 59.197848) (xy 186.876914 59.309342) (xy 186.876918 59.309345) (xy 187.008021 59.396946) - (xy 187.008034 59.396953) (xy 187.153705 59.457291) (xy 187.15371 59.457293) (xy 187.285446 59.483497) + (xy 187.008034 59.396953) (xy 187.120606 59.443581) (xy 187.15371 59.457293) (xy 187.285446 59.483497) (xy 187.30836 59.488055) (xy 187.308363 59.488056) (xy 187.308365 59.488056) (xy 187.466051 59.488056) - (xy 187.466052 59.488055) (xy 187.620704 59.457293) (xy 187.757813 59.400501) (xy 187.766379 59.396953) - (xy 187.766379 59.396952) (xy 187.766386 59.39695) (xy 187.897496 59.309345) (xy 188.008996 59.197845) - (xy 188.096601 59.066735) (xy 188.101949 59.053825) (xy 188.110274 59.033722) (xy 188.156944 58.921053) - (xy 188.182768 58.791227) (xy 188.187208 58.768909) (xy 188.219593 58.706998) (xy 188.280309 58.672424) - (xy 188.350078 58.676163) (xy 188.40675 58.71703) (xy 188.418185 58.73465) (xy 188.420606 58.739181) - (xy 188.50821 58.870288) (xy 188.508213 58.870292) (xy 188.619707 58.981786) (xy 188.619711 58.981789) - (xy 188.750814 59.06939) (xy 188.750827 59.069397) (xy 188.896498 59.129735) (xy 188.896503 59.129737) - (xy 189.051153 59.160499) (xy 189.051156 59.1605) (xy 189.051158 59.1605) (xy 189.208844 59.1605) - (xy 189.208845 59.160499) (xy 189.363497 59.129737) (xy 189.476166 59.083067) (xy 189.509172 59.069397) - (xy 189.509172 59.069396) (xy 189.509179 59.069394) (xy 189.640289 58.981789) (xy 189.751789 58.870289) - (xy 189.839394 58.739179) (xy 189.839986 58.737751) (xy 189.879735 58.641786) (xy 189.899737 58.593497) - (xy 189.910216 58.540818) (xy 189.942601 58.478907) (xy 190.003316 58.444333) (xy 190.073086 58.448072) - (xy 190.119514 58.477328) (xy 190.142686 58.5005) (xy 190.256814 58.566392) (xy 190.384108 58.6005) - (xy 191.62556 58.6005) (xy 191.692599 58.620185) (xy 191.736045 58.668205) (xy 191.777259 58.749092) - (xy 191.780476 58.755405) (xy 191.896172 58.914646) (xy 192.035354 59.053828) (xy 192.194595 59.169524) - (xy 192.255389 59.2005) (xy 192.36997 59.258882) (xy 192.369972 59.258882) (xy 192.369975 59.258884) - (xy 192.470317 59.291487) (xy 192.557173 59.319709) (xy 192.751578 59.3505) (xy 192.751583 59.3505) - (xy 192.948422 59.3505) (xy 193.142826 59.319709) (xy 193.175215 59.309185) (xy 193.330025 59.258884) - (xy 193.505405 59.169524) (xy 193.664646 59.053828) (xy 193.762319 58.956155) (xy 193.823642 58.92267) - (xy 193.893334 58.927654) (xy 193.937681 58.956155) (xy 194.035354 59.053828) (xy 194.194595 59.169524) - (xy 194.255389 59.2005) (xy 194.36997 59.258882) (xy 194.369972 59.258882) (xy 194.369975 59.258884) - (xy 194.470317 59.291487) (xy 194.557173 59.319709) (xy 194.751578 59.3505) (xy 194.751583 59.3505) - (xy 194.948422 59.3505) (xy 195.142826 59.319709) (xy 195.175215 59.309185) (xy 195.330025 59.258884) + (xy 187.466052 59.488055) (xy 187.620704 59.457293) (xy 187.766386 59.39695) (xy 187.897496 59.309345) + (xy 188.008996 59.197845) (xy 188.096601 59.066735) (xy 188.101949 59.053825) (xy 188.110274 59.033722) + (xy 188.156944 58.921053) (xy 188.182768 58.791227) (xy 188.187208 58.768909) (xy 188.219593 58.706998) + (xy 188.280309 58.672424) (xy 188.350078 58.676163) (xy 188.40675 58.71703) (xy 188.418185 58.73465) + (xy 188.420606 58.739181) (xy 188.50821 58.870288) (xy 188.508213 58.870292) (xy 188.619707 58.981786) + (xy 188.619711 58.981789) (xy 188.750814 59.06939) (xy 188.750827 59.069397) (xy 188.896498 59.129735) + (xy 188.896503 59.129737) (xy 189.051153 59.160499) (xy 189.051156 59.1605) (xy 189.051158 59.1605) + (xy 189.208844 59.1605) (xy 189.208845 59.160499) (xy 189.363497 59.129737) (xy 189.476166 59.083067) + (xy 189.509172 59.069397) (xy 189.509172 59.069396) (xy 189.509179 59.069394) (xy 189.640289 58.981789) + (xy 189.751789 58.870289) (xy 189.839394 58.739179) (xy 189.839986 58.737751) (xy 189.879735 58.641786) + (xy 189.899737 58.593497) (xy 189.9305 58.438842) (xy 189.9305 58.281158) (xy 189.9305 58.281155) + (xy 189.930499 58.281153) (xy 189.92416 58.249286) (xy 189.899737 58.126503) (xy 189.888759 58.1) + (xy 189.839397 57.980827) (xy 189.83939 57.980814) (xy 189.751789 57.849711) (xy 189.751786 57.849707) + (xy 189.640292 57.738213) (xy 189.640288 57.73821) (xy 189.509185 57.650609) (xy 189.509172 57.650602) + (xy 189.363501 57.590264) (xy 189.363489 57.590261) (xy 189.208845 57.5595) (xy 189.208842 57.5595) + (xy 189.155967 57.5595) (xy 189.088928 57.539815) (xy 189.043173 57.487011) (xy 189.03435 57.459692) + (xy 189.029738 57.436508) (xy 189.029737 57.436507) (xy 189.029737 57.436503) (xy 189.022534 57.419114) + (xy 188.969397 57.290827) (xy 188.96939 57.290814) (xy 188.881789 57.159711) (xy 188.881786 57.159707) + (xy 188.770292 57.048213) (xy 188.770288 57.04821) (xy 188.639185 56.960609) (xy 188.639172 56.960602) + (xy 188.493501 56.900264) (xy 188.493489 56.900261) (xy 188.338845 56.8695) (xy 188.338842 56.8695) + (xy 188.181158 56.8695) (xy 188.181155 56.8695) (xy 188.02651 56.900261) (xy 188.026498 56.900264) + (xy 187.880827 56.960602) (xy 187.880814 56.960609) (xy 187.749711 57.04821) (xy 187.749707 57.048213) + (xy 187.638213 57.159707) (xy 187.63821 57.159711) (xy 187.550609 57.290814) (xy 187.550602 57.290827) + (xy 187.490264 57.436498) (xy 187.490261 57.43651) (xy 187.4595 57.591153) (xy 187.4595 57.74884) + (xy 187.459703 57.750901) (xy 187.4595 57.751971) (xy 187.4595 57.754934) (xy 187.458938 57.754934) + (xy 187.446685 57.819547) (xy 187.39862 57.870258) (xy 187.3363 57.887056) (xy 187.308362 57.887056) + (xy 187.153717 57.917817) (xy 187.153705 57.91782) (xy 187.008034 57.978158) (xy 187.008021 57.978165) + (xy 186.876918 58.065766) (xy 186.876914 58.065769) (xy 186.76542 58.177263) (xy 186.765417 58.177267) + (xy 186.677816 58.30837) (xy 186.677809 58.308383) (xy 186.617471 58.454054) (xy 186.617468 58.454066) + (xy 186.586707 58.608709) (xy 175.857139 58.608709) (xy 175.855967 58.602818) (xy 175.848578 58.565672) + (xy 175.848576 58.565667) (xy 175.795776 58.438195) (xy 175.795769 58.438182) (xy 175.719112 58.323458) + (xy 175.719109 58.323454) (xy 175.621543 58.225888) (xy 175.621539 58.225885) (xy 175.506815 58.149228) + (xy 175.506802 58.149221) (xy 175.37933 58.096421) (xy 175.37932 58.096418) (xy 175.243993 58.0695) + (xy 175.243991 58.0695) (xy 175.106005 58.0695) (xy 175.09767 58.071158) (xy 174.996764 58.091229) + (xy 174.927172 58.085001) (xy 174.871995 58.042137) (xy 174.848751 57.976247) (xy 174.858011 57.92216) + (xy 174.894737 57.833497) (xy 174.9255 57.678842) (xy 174.9255 57.521158) (xy 174.9255 57.521155) + (xy 174.925499 57.521153) (xy 174.919402 57.4905) (xy 174.894737 57.366503) (xy 174.892106 57.360152) + (xy 174.834397 57.220827) (xy 174.83439 57.220814) (xy 174.746789 57.089711) (xy 174.746786 57.089707) + (xy 174.635292 56.978213) (xy 174.635288 56.97821) (xy 174.504185 56.890609) (xy 174.504172 56.890602) + (xy 174.358501 56.830264) (xy 174.358489 56.830261) (xy 174.203845 56.7995) (xy 174.203842 56.7995) + (xy 174.046158 56.7995) (xy 174.046155 56.7995) (xy 173.89151 56.830261) (xy 173.891498 56.830264) + (xy 173.745827 56.890602) (xy 173.745814 56.890609) (xy 173.614711 56.97821) (xy 173.614707 56.978213) + (xy 173.503213 57.089707) (xy 173.50321 57.089711) (xy 173.415609 57.220814) (xy 173.415604 57.220824) + (xy 173.389567 57.283684) (xy 173.345726 57.338087) (xy 173.279432 57.360152) (xy 173.250816 57.357849) + (xy 173.238529 57.355405) (xy 173.208842 57.3495) (xy 173.051158 57.3495) (xy 173.051155 57.3495) + (xy 172.89651 57.380261) (xy 172.896498 57.380264) (xy 172.750827 57.440602) (xy 172.750814 57.440609) + (xy 172.619711 57.52821) (xy 172.619707 57.528213) (xy 172.508213 57.639707) (xy 172.50821 57.639711) + (xy 172.420609 57.770814) (xy 172.420602 57.770827) (xy 172.360264 57.916498) (xy 172.360261 57.916508) + (xy 172.344076 57.997876) (xy 172.311691 58.059787) (xy 172.250975 58.094361) (xy 172.181205 58.09062) + (xy 172.124534 58.049754) (xy 172.100842 57.997875) (xy 172.083591 57.911153) (xy 172.069737 57.841503) + (xy 172.049009 57.79146) (xy 172.009397 57.695827) (xy 172.009389 57.695813) (xy 171.991262 57.668684) + (xy 171.970383 57.602007) (xy 171.988867 57.534627) (xy 172.040845 57.487936) (xy 172.046893 57.485238) + (xy 172.081811 57.470775) (xy 172.196542 57.394114) (xy 172.294114 57.296542) (xy 172.370775 57.181811) + (xy 172.42358 57.054328) (xy 172.441905 56.962205) (xy 172.4505 56.918995) (xy 172.4505 56.781004) + (xy 172.434387 56.7) (xy 190.45 56.7) (xy 190.45 56.726813) (xy 190.45 58.1) (xy 191.478006 58.1) + (xy 191.545045 58.119685) (xy 191.5908 58.172489) (xy 191.600479 58.204602) (xy 191.63029 58.392826) + (xy 191.691117 58.580029) (xy 191.777259 58.749092) (xy 191.780476 58.755405) (xy 191.896172 58.914646) + (xy 192.035354 59.053828) (xy 192.194595 59.169524) (xy 192.255389 59.2005) (xy 192.36997 59.258882) + (xy 192.369972 59.258882) (xy 192.369975 59.258884) (xy 192.470317 59.291487) (xy 192.557173 59.319709) + (xy 192.751578 59.3505) (xy 192.751583 59.3505) (xy 192.948422 59.3505) (xy 193.142826 59.319709) + (xy 193.330025 59.258884) (xy 193.505405 59.169524) (xy 193.664646 59.053828) (xy 193.762319 58.956155) + (xy 193.823642 58.92267) (xy 193.893334 58.927654) (xy 193.937681 58.956155) (xy 194.035354 59.053828) + (xy 194.194595 59.169524) (xy 194.255389 59.2005) (xy 194.36997 59.258882) (xy 194.369972 59.258882) + (xy 194.369975 59.258884) (xy 194.470317 59.291487) (xy 194.557173 59.319709) (xy 194.751578 59.3505) + (xy 194.751583 59.3505) (xy 194.948422 59.3505) (xy 195.142826 59.319709) (xy 195.330025 59.258884) (xy 195.505405 59.169524) (xy 195.664646 59.053828) (xy 195.762321 58.956152) (xy 195.770262 58.951816) (xy 195.775688 58.944569) (xy 195.800447 58.935334) (xy 195.82364 58.92267) (xy 195.832669 58.923315) (xy 195.841152 58.920152) (xy 195.866974 58.925769) (xy 195.893332 58.927654) (xy 195.902384 58.933471) @@ -38416,202 +43465,146 @@ (xy 197.937681 58.956155) (xy 198.035354 59.053828) (xy 198.194595 59.169524) (xy 198.255389 59.2005) (xy 198.36997 59.258882) (xy 198.369972 59.258882) (xy 198.369975 59.258884) (xy 198.470317 59.291487) (xy 198.557173 59.319709) (xy 198.751578 59.3505) (xy 198.751583 59.3505) (xy 198.948422 59.3505) - (xy 199.142826 59.319709) (xy 199.175215 59.309185) (xy 199.330025 59.258884) (xy 199.505405 59.169524) - (xy 199.664646 59.053828) (xy 199.762319 58.956155) (xy 199.823642 58.92267) (xy 199.893334 58.927654) - (xy 199.937681 58.956155) (xy 200.035354 59.053828) (xy 200.194595 59.169524) (xy 200.255389 59.2005) - (xy 200.36997 59.258882) (xy 200.369972 59.258882) (xy 200.369975 59.258884) (xy 200.470317 59.291487) - (xy 200.557173 59.319709) (xy 200.751578 59.3505) (xy 200.751583 59.3505) (xy 200.948422 59.3505) - (xy 201.142826 59.319709) (xy 201.175215 59.309185) (xy 201.330025 59.258884) (xy 201.505405 59.169524) - (xy 201.664646 59.053828) (xy 201.762319 58.956155) (xy 201.823642 58.92267) (xy 201.893334 58.927654) - (xy 201.937681 58.956155) (xy 202.035354 59.053828) (xy 202.194595 59.169524) (xy 202.255389 59.2005) - (xy 202.36997 59.258882) (xy 202.369972 59.258882) (xy 202.369975 59.258884) (xy 202.470317 59.291487) - (xy 202.557173 59.319709) (xy 202.751578 59.3505) (xy 202.751583 59.3505) (xy 202.948422 59.3505) - (xy 203.142826 59.319709) (xy 203.175215 59.309185) (xy 203.330025 59.258884) (xy 203.505405 59.169524) - (xy 203.664646 59.053828) (xy 203.803828 58.914646) (xy 203.919524 58.755405) (xy 203.951188 58.69326) - (xy 203.963955 58.668205) (xy 204.01193 58.617409) (xy 204.07444 58.6005) (xy 204.31589 58.6005) - (xy 204.315892 58.6005) (xy 204.443186 58.566392) (xy 204.557314 58.5005) (xy 204.6505 58.407314) - (xy 204.716392 58.293186) (xy 204.7505 58.165892) (xy 204.7505 56.634108) (xy 204.716392 56.506814) - (xy 204.6505 56.392686) (xy 204.557314 56.2995) (xy 204.472633 56.250609) (xy 204.443187 56.233608) - (xy 204.379539 56.216554) (xy 204.315892 56.1995) (xy 204.315891 56.1995) (xy 203.07444 56.1995) - (xy 203.007401 56.179815) (xy 202.963955 56.131795) (xy 202.940792 56.086336) (xy 202.919524 56.044595) - (xy 202.803828 55.885354) (xy 202.664646 55.746172) (xy 202.505405 55.630476) (xy 202.501154 55.62831) - (xy 202.330029 55.541117) (xy 202.142826 55.48029) (xy 201.948422 55.4495) (xy 201.948417 55.4495) - (xy 201.751583 55.4495) (xy 201.751578 55.4495) (xy 201.557173 55.48029) (xy 201.36997 55.541117) - (xy 201.194594 55.630476) (xy 201.125157 55.680926) (xy 201.035354 55.746172) (xy 201.035352 55.746174) - (xy 201.035351 55.746174) (xy 200.937681 55.843845) (xy 200.876358 55.87733) (xy 200.806666 55.872346) - (xy 200.762319 55.843845) (xy 200.664648 55.746174) (xy 200.664646 55.746172) (xy 200.505405 55.630476) - (xy 200.501154 55.62831) (xy 200.330029 55.541117) (xy 200.142826 55.48029) (xy 199.948422 55.4495) - (xy 199.948417 55.4495) (xy 199.751583 55.4495) (xy 199.751578 55.4495) (xy 199.557173 55.48029) - (xy 199.36997 55.541117) (xy 199.194594 55.630476) (xy 199.125157 55.680926) (xy 199.035354 55.746172) - (xy 199.035352 55.746174) (xy 199.035351 55.746174) (xy 198.937681 55.843845) (xy 198.876358 55.87733) - (xy 198.806666 55.872346) (xy 198.762319 55.843845) (xy 198.664648 55.746174) (xy 198.664646 55.746172) - (xy 198.505405 55.630476) (xy 198.501154 55.62831) (xy 198.330029 55.541117) (xy 198.142826 55.48029) + (xy 199.142826 59.319709) (xy 199.330025 59.258884) (xy 199.505405 59.169524) (xy 199.664646 59.053828) + (xy 199.762319 58.956155) (xy 199.823642 58.92267) (xy 199.893334 58.927654) (xy 199.937681 58.956155) + (xy 200.035354 59.053828) (xy 200.194595 59.169524) (xy 200.255389 59.2005) (xy 200.36997 59.258882) + (xy 200.369972 59.258882) (xy 200.369975 59.258884) (xy 200.470317 59.291487) (xy 200.557173 59.319709) + (xy 200.751578 59.3505) (xy 200.751583 59.3505) (xy 200.948422 59.3505) (xy 201.142826 59.319709) + (xy 201.330025 59.258884) (xy 201.505405 59.169524) (xy 201.664646 59.053828) (xy 201.762319 58.956155) + (xy 201.823642 58.92267) (xy 201.893334 58.927654) (xy 201.937681 58.956155) (xy 202.035354 59.053828) + (xy 202.194595 59.169524) (xy 202.255389 59.2005) (xy 202.36997 59.258882) (xy 202.369972 59.258882) + (xy 202.369975 59.258884) (xy 202.470317 59.291487) (xy 202.557173 59.319709) (xy 202.751578 59.3505) + (xy 202.751583 59.3505) (xy 202.948422 59.3505) (xy 203.142826 59.319709) (xy 203.330025 59.258884) + (xy 203.505405 59.169524) (xy 203.664646 59.053828) (xy 203.803828 58.914646) (xy 203.919524 58.755405) + (xy 204.008884 58.580025) (xy 204.069709 58.392826) (xy 204.071699 58.380261) (xy 204.099521 58.204602) + (xy 204.12945 58.141467) (xy 204.188762 58.104536) (xy 204.221994 58.1) (xy 204.25 58.1) (xy 204.25 56.7) + (xy 203.221994 56.7) (xy 203.154955 56.680315) (xy 203.1092 56.627511) (xy 203.099521 56.595398) + (xy 203.069709 56.407173) (xy 203.041487 56.320317) (xy 203.008884 56.219975) (xy 203.008882 56.219972) + (xy 203.008882 56.21997) (xy 202.957825 56.119766) (xy 202.919524 56.044595) (xy 202.803828 55.885354) + (xy 202.664646 55.746172) (xy 202.505405 55.630476) (xy 202.330029 55.541117) (xy 202.142826 55.48029) + (xy 201.948422 55.4495) (xy 201.948417 55.4495) (xy 201.751583 55.4495) (xy 201.751578 55.4495) + (xy 201.557173 55.48029) (xy 201.36997 55.541117) (xy 201.194594 55.630476) (xy 201.152369 55.661155) + (xy 201.035354 55.746172) (xy 201.035352 55.746174) (xy 201.035351 55.746174) (xy 200.937681 55.843845) + (xy 200.876358 55.87733) (xy 200.806666 55.872346) (xy 200.762319 55.843845) (xy 200.664648 55.746174) + (xy 200.664646 55.746172) (xy 200.505405 55.630476) (xy 200.330029 55.541117) (xy 200.142826 55.48029) + (xy 199.948422 55.4495) (xy 199.948417 55.4495) (xy 199.751583 55.4495) (xy 199.751578 55.4495) + (xy 199.557173 55.48029) (xy 199.36997 55.541117) (xy 199.194594 55.630476) (xy 199.152369 55.661155) + (xy 199.035354 55.746172) (xy 199.035352 55.746174) (xy 199.035351 55.746174) (xy 198.937681 55.843845) + (xy 198.876358 55.87733) (xy 198.806666 55.872346) (xy 198.762319 55.843845) (xy 198.664648 55.746174) + (xy 198.664646 55.746172) (xy 198.505405 55.630476) (xy 198.330029 55.541117) (xy 198.142826 55.48029) (xy 197.948422 55.4495) (xy 197.948417 55.4495) (xy 197.751583 55.4495) (xy 197.751578 55.4495) - (xy 197.557173 55.48029) (xy 197.36997 55.541117) (xy 197.194594 55.630476) (xy 197.125157 55.680926) + (xy 197.557173 55.48029) (xy 197.36997 55.541117) (xy 197.194594 55.630476) (xy 197.152369 55.661155) (xy 197.035354 55.746172) (xy 197.035352 55.746174) (xy 197.035351 55.746174) (xy 196.937681 55.843845) (xy 196.876358 55.87733) (xy 196.806666 55.872346) (xy 196.762319 55.843845) (xy 196.664648 55.746174) - (xy 196.664646 55.746172) (xy 196.505405 55.630476) (xy 196.501154 55.62831) (xy 196.330029 55.541117) - (xy 196.142826 55.48029) (xy 195.948422 55.4495) (xy 195.948417 55.4495) (xy 195.751583 55.4495) - (xy 195.751578 55.4495) (xy 195.557173 55.48029) (xy 195.36997 55.541117) (xy 195.194594 55.630476) - (xy 195.125157 55.680926) (xy 195.035354 55.746172) (xy 195.035352 55.746174) (xy 195.035351 55.746174) - (xy 194.937681 55.843845) (xy 194.876358 55.87733) (xy 194.806666 55.872346) (xy 194.762319 55.843845) - (xy 194.664648 55.746174) (xy 194.664646 55.746172) (xy 194.505405 55.630476) (xy 194.501154 55.62831) - (xy 194.330029 55.541117) (xy 194.142826 55.48029) (xy 193.948422 55.4495) (xy 193.948417 55.4495) - (xy 193.751583 55.4495) (xy 193.751578 55.4495) (xy 193.557173 55.48029) (xy 193.36997 55.541117) - (xy 193.194594 55.630476) (xy 193.125157 55.680926) (xy 193.035354 55.746172) (xy 193.035352 55.746174) - (xy 193.035351 55.746174) (xy 192.937681 55.843845) (xy 192.876358 55.87733) (xy 192.806666 55.872346) - (xy 192.762319 55.843845) (xy 192.664648 55.746174) (xy 192.664646 55.746172) (xy 192.505405 55.630476) - (xy 192.501154 55.62831) (xy 192.330029 55.541117) (xy 192.142826 55.48029) (xy 191.948422 55.4495) - (xy 191.948417 55.4495) (xy 191.751583 55.4495) (xy 191.751578 55.4495) (xy 191.557173 55.48029) - (xy 191.36997 55.541117) (xy 191.194594 55.630476) (xy 191.125157 55.680926) (xy 191.035354 55.746172) - (xy 191.035352 55.746174) (xy 191.035351 55.746174) (xy 190.896174 55.885351) (xy 190.896174 55.885352) - (xy 190.896172 55.885354) (xy 190.856 55.940646) (xy 190.780476 56.044594) (xy 190.736045 56.131795) - (xy 190.68807 56.182591) (xy 190.62556 56.1995) (xy 190.384108 56.1995) (xy 190.256812 56.233608) - (xy 190.142686 56.2995) (xy 190.142683 56.299502) (xy 190.049502 56.392683) (xy 190.0495 56.392686) - (xy 189.983608 56.506812) (xy 189.9495 56.634108) (xy 189.9495 57.748059) (xy 189.929815 57.815098) - (xy 189.877011 57.860853) (xy 189.807853 57.870797) (xy 189.744297 57.841772) (xy 189.737819 57.83574) - (xy 189.640292 57.738213) (xy 189.640288 57.73821) (xy 189.509185 57.650609) (xy 189.509172 57.650602) - (xy 189.363501 57.590264) (xy 189.363489 57.590261) (xy 189.208845 57.5595) (xy 189.208842 57.5595) - (xy 189.155967 57.5595) (xy 189.088928 57.539815) (xy 189.043173 57.487011) (xy 189.03435 57.459692) - (xy 189.029738 57.436508) (xy 189.029737 57.436507) (xy 189.029737 57.436503) (xy 189.025579 57.426465) - (xy 188.969397 57.290827) (xy 188.96939 57.290814) (xy 188.881789 57.159711) (xy 188.881786 57.159707) - (xy 188.770292 57.048213) (xy 188.770288 57.04821) (xy 188.639185 56.960609) (xy 188.639172 56.960602) - (xy 188.493501 56.900264) (xy 188.493489 56.900261) (xy 188.338845 56.8695) (xy 188.338842 56.8695) - (xy 188.181158 56.8695) (xy 188.181155 56.8695) (xy 188.02651 56.900261) (xy 188.026498 56.900264) - (xy 187.880827 56.960602) (xy 187.880814 56.960609) (xy 187.749711 57.04821) (xy 187.749707 57.048213) - (xy 187.638213 57.159707) (xy 187.63821 57.159711) (xy 187.550609 57.290814) (xy 187.550602 57.290827) - (xy 187.490264 57.436498) (xy 187.490261 57.43651) (xy 187.4595 57.591153) (xy 187.4595 57.74884) - (xy 187.459703 57.750901) (xy 187.4595 57.751971) (xy 187.4595 57.754934) (xy 187.458938 57.754934) - (xy 187.446685 57.819547) (xy 187.39862 57.870258) (xy 187.3363 57.887056) (xy 187.308362 57.887056) - (xy 187.153717 57.917817) (xy 187.153705 57.91782) (xy 187.008034 57.978158) (xy 187.008021 57.978165) - (xy 186.876918 58.065766) (xy 186.876914 58.065769) (xy 186.76542 58.177263) (xy 186.765417 58.177267) - (xy 186.677816 58.30837) (xy 186.677809 58.308383) (xy 186.617471 58.454054) (xy 186.617468 58.454066) - (xy 186.586707 58.608709) (xy 175.830166 58.608709) (xy 175.825502 58.585261) (xy 175.825501 58.58526) - (xy 175.825501 58.585256) (xy 175.780796 58.477328) (xy 175.776466 58.466875) (xy 175.776461 58.466866) - (xy 175.705276 58.360331) (xy 175.705273 58.360327) (xy 175.614672 58.269726) (xy 175.614668 58.269723) - (xy 175.508133 58.198538) (xy 175.508124 58.198533) (xy 175.389744 58.149499) (xy 175.389738 58.149497) - (xy 175.264071 58.1245) (xy 175.264069 58.1245) (xy 175.135931 58.1245) (xy 175.135929 58.1245) - (xy 175.010261 58.149497) (xy 175.010251 58.1495) (xy 174.987394 58.158968) (xy 174.917925 58.166435) - (xy 174.855446 58.135159) (xy 174.819795 58.075069) (xy 174.82229 58.005244) (xy 174.832235 57.984936) - (xy 174.831521 57.984554) (xy 174.83439 57.979184) (xy 174.834394 57.979179) (xy 174.894737 57.833497) - (xy 174.9255 57.678842) (xy 174.9255 57.521158) (xy 174.9255 57.521155) (xy 174.925499 57.521153) - (xy 174.919402 57.4905) (xy 174.894737 57.366503) (xy 174.892106 57.360152) (xy 174.834397 57.220827) - (xy 174.83439 57.220814) (xy 174.746789 57.089711) (xy 174.746786 57.089707) (xy 174.635292 56.978213) - (xy 174.635288 56.97821) (xy 174.504185 56.890609) (xy 174.504172 56.890602) (xy 174.358501 56.830264) - (xy 174.358489 56.830261) (xy 174.203845 56.7995) (xy 174.203842 56.7995) (xy 174.046158 56.7995) - (xy 174.046155 56.7995) (xy 173.89151 56.830261) (xy 173.891498 56.830264) (xy 173.745827 56.890602) - (xy 173.745814 56.890609) (xy 173.614711 56.97821) (xy 173.614707 56.978213) (xy 173.503213 57.089707) - (xy 173.50321 57.089711) (xy 173.415609 57.220814) (xy 173.415604 57.220824) (xy 173.389567 57.283684) - (xy 173.345726 57.338087) (xy 173.279432 57.360152) (xy 173.250816 57.357849) (xy 173.24325 57.356344) - (xy 173.208842 57.3495) (xy 173.051158 57.3495) (xy 173.051155 57.3495) (xy 172.89651 57.380261) - (xy 172.896498 57.380264) (xy 172.750827 57.440602) (xy 172.750814 57.440609) (xy 172.619711 57.52821) - (xy 172.619707 57.528213) (xy 172.508213 57.639707) (xy 172.50821 57.639711) (xy 172.420609 57.770814) - (xy 172.420602 57.770827) (xy 172.360264 57.916498) (xy 172.360261 57.916508) (xy 172.344076 57.997876) - (xy 172.311691 58.059787) (xy 172.250975 58.094361) (xy 172.181205 58.09062) (xy 172.124534 58.049754) - (xy 172.100842 57.997875) (xy 172.076101 57.873499) (xy 172.069737 57.841503) (xy 172.06735 57.83574) - (xy 172.009397 57.695827) (xy 172.00939 57.695814) (xy 171.962938 57.626294) (xy 171.94206 57.559617) - (xy 171.960544 57.492236) (xy 172.012523 57.445546) (xy 172.018564 57.442852) (xy 172.058127 57.426465) - (xy 172.164669 57.355276) (xy 172.255276 57.264669) (xy 172.326465 57.158127) (xy 172.375501 57.039744) - (xy 172.387741 56.97821) (xy 172.4005 56.914071) (xy 172.4005 56.785928) (xy 172.375502 56.660261) - (xy 172.375501 56.66026) (xy 172.375501 56.660256) (xy 172.326465 56.541873) (xy 172.326464 56.541872) - (xy 172.326461 56.541866) (xy 172.255276 56.435331) (xy 172.255273 56.435327) (xy 172.164672 56.344726) - (xy 172.164668 56.344723) (xy 172.058133 56.273538) (xy 172.058124 56.273533) (xy 171.939744 56.224499) - (xy 171.939738 56.224497) (xy 171.81518 56.19972) (xy 171.753269 56.167334) (xy 171.718695 56.106618) - (xy 171.722436 56.036849) (xy 171.763303 55.980177) (xy 171.77047 55.975008) (xy 171.775289 55.971789) - (xy 171.886789 55.860289) (xy 171.974394 55.729179) (xy 172.034737 55.583497) (xy 172.0655 55.428842) - (xy 172.0655 55.271158) (xy 172.0655 55.271155) (xy 172.065499 55.271153) (xy 172.061188 55.249482) - (xy 172.034737 55.116503) (xy 172.034735 55.116498) (xy 171.974397 54.970827) (xy 171.97439 54.970814) - (xy 171.886789 54.839711) (xy 171.886786 54.839707) (xy 171.775292 54.728213) (xy 171.775288 54.72821) - (xy 171.644185 54.640609) (xy 171.644172 54.640602) (xy 171.498501 54.580264) (xy 171.498489 54.580261) - (xy 171.343845 54.5495) (xy 171.343842 54.5495) (xy 171.186158 54.5495) (xy 171.186155 54.5495) - (xy 171.03151 54.580261) (xy 171.031498 54.580264) (xy 170.885827 54.640602) (xy 170.885814 54.640609) - (xy 170.754711 54.72821) (xy 170.754707 54.728213) (xy 170.643213 54.839707) (xy 170.64321 54.839711) - (xy 170.555609 54.970814) (xy 170.555602 54.970827) (xy 170.495264 55.116498) (xy 170.495261 55.11651) - (xy 170.4645 55.271153) (xy 170.4645 55.428846) (xy 170.495261 55.583489) (xy 170.495264 55.583501) - (xy 170.555602 55.729172) (xy 170.555609 55.729185) (xy 170.64321 55.860288) (xy 170.643213 55.860292) - (xy 170.754707 55.971786) (xy 170.754711 55.971789) (xy 170.793037 55.997398) (xy 170.837842 56.05101) - (xy 170.846549 56.120335) (xy 170.816395 56.183363) (xy 170.756952 56.220082) (xy 170.724146 56.2245) - (xy 170.685929 56.2245) (xy 170.560261 56.249497) (xy 170.560255 56.249499) (xy 170.441875 56.298533) - (xy 170.441866 56.298538) (xy 170.335331 56.369723) (xy 170.335327 56.369726) (xy 170.244726 56.460327) - (xy 170.244723 56.460331) (xy 170.173538 56.566866) (xy 170.173533 56.566875) (xy 170.124499 56.685255) - (xy 170.124497 56.68526) (xy 170.121617 56.699743) (xy 170.089231 56.761653) (xy 170.028515 56.796227) - (xy 169.958746 56.792486) (xy 169.902074 56.751619) (xy 169.878383 56.699743) (xy 169.875502 56.68526) - (xy 169.875501 56.685258) (xy 169.875501 56.685256) (xy 169.832245 56.580827) (xy 169.826466 56.566875) - (xy 169.826461 56.566866) (xy 169.755276 56.460331) (xy 169.755273 56.460327) (xy 169.664672 56.369726) - (xy 169.664668 56.369723) (xy 169.558133 56.298538) (xy 169.558124 56.298533) (xy 169.439744 56.249499) - (xy 169.439738 56.249497) (xy 169.314071 56.2245) (xy 169.314069 56.2245) (xy 169.185931 56.2245) - (xy 169.185929 56.2245) (xy 169.060261 56.249497) (xy 169.060255 56.249499) (xy 168.941875 56.298533) - (xy 168.941866 56.298538) (xy 168.835331 56.369723) (xy 168.835327 56.369726) (xy 168.744726 56.460327) - (xy 168.744723 56.460331) (xy 168.673538 56.566866) (xy 168.673535 56.566872) (xy 168.622827 56.689291) - (xy 168.578985 56.743694) (xy 168.512691 56.765758) (xy 168.444992 56.748478) (xy 168.397382 56.697341) - (xy 168.386649 56.666028) (xy 168.385501 56.660256) (xy 168.336465 56.541873) (xy 168.336464 56.541872) - (xy 168.336461 56.541866) (xy 168.265276 56.435331) (xy 168.265273 56.435327) (xy 168.170362 56.340416) - (xy 168.17138 56.339397) (xy 168.136102 56.28761) (xy 168.134231 56.217765) (xy 168.170417 56.157996) - (xy 168.233172 56.127279) (xy 168.254101 56.1255) (xy 168.368844 56.1255) (xy 168.368845 56.125499) - (xy 168.523497 56.094737) (xy 168.669179 56.034394) (xy 168.800289 55.946789) (xy 168.911789 55.835289) - (xy 168.999394 55.704179) (xy 169.059737 55.558497) (xy 169.0905 55.403842) (xy 169.0905 55.246158) - (xy 169.0905 55.246155) (xy 169.090499 55.246153) (xy 169.081021 55.198504) (xy 169.059737 55.091503) - (xy 169.050599 55.069442) (xy 168.999397 54.945827) (xy 168.99939 54.945814) (xy 168.911789 54.814711) - (xy 168.911786 54.814707) (xy 168.800292 54.703213) (xy 168.800288 54.70321) (xy 168.669185 54.615609) - (xy 168.669172 54.615602) (xy 168.523501 54.555264) (xy 168.523489 54.555261) (xy 168.368845 54.5245) - (xy 168.368842 54.5245) (xy 168.211158 54.5245) (xy 168.171103 54.532467) (xy 168.101511 54.526238) - (xy 168.046335 54.483375) (xy 168.023091 54.417485) (xy 168.032351 54.363398) (xy 168.044737 54.333497) - (xy 168.0755 54.178842) (xy 168.0755 54.101153) (xy 173.062 54.101153) (xy 173.062 54.258846) (xy 173.092761 54.413489) - (xy 173.092764 54.413501) (xy 173.153102 54.559172) (xy 173.153109 54.559185) (xy 173.24071 54.690288) - (xy 173.240713 54.690292) (xy 173.352207 54.801786) (xy 173.352211 54.801789) (xy 173.483314 54.88939) - (xy 173.483327 54.889397) (xy 173.619532 54.945814) (xy 173.629003 54.949737) (xy 173.783653 54.980499) - (xy 173.783656 54.9805) (xy 173.783658 54.9805) (xy 173.941344 54.9805) (xy 173.941345 54.980499) - (xy 174.095997 54.949737) (xy 174.241679 54.889394) (xy 174.372789 54.801789) (xy 174.484289 54.690289) - (xy 174.571894 54.559179) (xy 174.632237 54.413497) (xy 174.663 54.258842) (xy 174.663 54.101158) - (xy 174.663 54.101156) (xy 174.663 54.101155) (xy 174.662999 54.101153) (xy 174.655042 54.061153) - (xy 174.632237 53.946503) (xy 174.624923 53.928846) (xy 174.571897 53.800827) (xy 174.57189 53.800814) - (xy 174.484289 53.669711) (xy 174.484286 53.669707) (xy 174.372792 53.558213) (xy 174.372788 53.55821) - (xy 174.241685 53.470609) (xy 174.241672 53.470602) (xy 174.096001 53.410264) (xy 174.095989 53.410261) - (xy 173.941345 53.3795) (xy 173.941342 53.3795) (xy 173.783658 53.3795) (xy 173.783655 53.3795) - (xy 173.62901 53.410261) (xy 173.628998 53.410264) (xy 173.483327 53.470602) (xy 173.483314 53.470609) - (xy 173.352211 53.55821) (xy 173.352207 53.558213) (xy 173.240713 53.669707) (xy 173.24071 53.669711) - (xy 173.153109 53.800814) (xy 173.153102 53.800827) (xy 173.092764 53.946498) (xy 173.092761 53.94651) - (xy 173.062 54.101153) (xy 168.0755 54.101153) (xy 168.0755 54.021158) (xy 168.0755 54.021155) (xy 168.075499 54.021153) - (xy 168.069279 53.989883) (xy 168.044737 53.866503) (xy 168.027956 53.825989) (xy 167.984397 53.720827) - (xy 167.98439 53.720814) (xy 167.896789 53.589711) (xy 167.896786 53.589707) (xy 167.785292 53.478213) - (xy 167.785288 53.47821) (xy 167.654185 53.390609) (xy 167.654172 53.390602) (xy 167.508501 53.330264) - (xy 167.508489 53.330261) (xy 167.353845 53.2995) (xy 167.353842 53.2995) (xy 167.196158 53.2995) - (xy 167.196155 53.2995) (xy 167.04151 53.330261) (xy 167.041498 53.330264) (xy 166.895827 53.390602) - (xy 166.895814 53.390609) (xy 166.764711 53.47821) (xy 166.764707 53.478213) (xy 166.653213 53.589707) - (xy 166.65321 53.589711) (xy 166.565609 53.720814) (xy 166.565602 53.720827) (xy 166.505264 53.866498) - (xy 166.505261 53.86651) (xy 166.4745 54.021153) (xy 166.4745 54.178846) (xy 166.505261 54.333489) - (xy 166.505264 54.333501) (xy 166.565602 54.479172) (xy 166.565609 54.479185) (xy 166.65321 54.610288) - (xy 166.653213 54.610292) (xy 166.764707 54.721786) (xy 166.764711 54.721789) (xy 166.895814 54.80939) - (xy 166.895827 54.809397) (xy 167.01815 54.860064) (xy 167.041503 54.869737) (xy 167.196153 54.900499) - (xy 167.196156 54.9005) (xy 167.196158 54.9005) (xy 167.353843 54.9005) (xy 167.369591 54.897367) - (xy 167.393894 54.892533) (xy 167.463485 54.89876) (xy 167.518663 54.941622) (xy 167.541908 55.007511) - (xy 167.532648 55.061599) (xy 167.520265 55.091494) (xy 167.520261 55.09151) (xy 167.4895 55.246153) - (xy 167.4895 55.403846) (xy 167.520261 55.558489) (xy 167.520264 55.558501) (xy 167.580602 55.704172) - (xy 167.580609 55.704185) (xy 167.66821 55.835288) (xy 167.668213 55.835292) (xy 167.779707 55.946786) - (xy 167.779711 55.946789) (xy 167.818037 55.972398) (xy 167.862842 56.02601) (xy 167.871549 56.095335) - (xy 167.841395 56.158363) (xy 167.781952 56.195082) (xy 167.749146 56.1995) (xy 167.695929 56.1995) - (xy 167.570261 56.224497) (xy 167.570255 56.224499) (xy 167.451875 56.273533) (xy 167.451866 56.273538) - (xy 167.345331 56.344723) (xy 167.345327 56.344726) (xy 167.342681 56.347373) (xy 167.340952 56.348316) - (xy 167.340621 56.348589) (xy 167.340569 56.348526) (xy 167.281358 56.380858) (xy 167.211666 56.375874) - (xy 167.167319 56.347373) (xy 167.164672 56.344726) (xy 167.164668 56.344723) (xy 167.058133 56.273538) - (xy 167.058124 56.273533) (xy 166.939744 56.224499) (xy 166.939738 56.224497) (xy 166.814071 56.1995) - (xy 166.814069 56.1995) (xy 166.685931 56.1995) (xy 166.685929 56.1995) (xy 166.560261 56.224497) - (xy 166.560255 56.224499) (xy 166.441875 56.273533) (xy 166.441866 56.273538) (xy 166.335331 56.344723) - (xy 166.335327 56.344726) (xy 166.244726 56.435327) (xy 166.244723 56.435331) (xy 166.173538 56.541866) - (xy 166.173533 56.541875) (xy 166.124499 56.660255) (xy 166.124497 56.660261) (xy 166.0995 56.785928) - (xy 166.0995 56.785931) (xy 166.0995 56.914069) (xy 166.0995 56.914071) (xy 166.099499 56.914071) - (xy 166.124497 57.039738) (xy 166.124499 57.039744) (xy 166.129061 57.050757) (xy 166.13653 57.120226) - (xy 166.105255 57.182705) (xy 166.045166 57.218358) (xy 166.038695 57.219827) (xy 166.036504 57.220262) - (xy 166.036498 57.220264) (xy 165.890827 57.280602) (xy 165.890814 57.280609) (xy 165.759711 57.36821) - (xy 165.759707 57.368213) (xy 165.648213 57.479707) (xy 165.64821 57.479711) (xy 165.560609 57.610814) - (xy 165.560602 57.610827) (xy 165.500264 57.756498) (xy 165.500261 57.75651) (xy 165.4695 57.911153) - (xy 161.101216 57.911153) (xy 161.084836 57.85884) (xy 161.10332 57.79146) (xy 161.155299 57.744769) - (xy 161.224269 57.733593) (xy 161.233002 57.735008) (xy 161.266119 57.741595) (xy 161.361155 57.7605) - (xy 161.361158 57.7605) (xy 161.518844 57.7605) (xy 161.518845 57.760499) (xy 161.673497 57.729737) - (xy 161.796369 57.678842) (xy 161.819172 57.669397) (xy 161.819172 57.669396) (xy 161.819179 57.669394) + (xy 196.664646 55.746172) (xy 196.505405 55.630476) (xy 196.330029 55.541117) (xy 196.142826 55.48029) + (xy 195.948422 55.4495) (xy 195.948417 55.4495) (xy 195.751583 55.4495) (xy 195.751578 55.4495) + (xy 195.557173 55.48029) (xy 195.36997 55.541117) (xy 195.194594 55.630476) (xy 195.152369 55.661155) + (xy 195.035354 55.746172) (xy 195.035352 55.746174) (xy 195.035351 55.746174) (xy 194.937681 55.843845) + (xy 194.876358 55.87733) (xy 194.806666 55.872346) (xy 194.762319 55.843845) (xy 194.664648 55.746174) + (xy 194.664646 55.746172) (xy 194.505405 55.630476) (xy 194.330029 55.541117) (xy 194.142826 55.48029) + (xy 193.948422 55.4495) (xy 193.948417 55.4495) (xy 193.751583 55.4495) (xy 193.751578 55.4495) + (xy 193.557173 55.48029) (xy 193.36997 55.541117) (xy 193.194594 55.630476) (xy 193.152369 55.661155) + (xy 193.035354 55.746172) (xy 193.035352 55.746174) (xy 193.035351 55.746174) (xy 192.937681 55.843845) + (xy 192.876358 55.87733) (xy 192.806666 55.872346) (xy 192.762319 55.843845) (xy 192.664648 55.746174) + (xy 192.664646 55.746172) (xy 192.505405 55.630476) (xy 192.330029 55.541117) (xy 192.142826 55.48029) + (xy 191.948422 55.4495) (xy 191.948417 55.4495) (xy 191.751583 55.4495) (xy 191.751578 55.4495) + (xy 191.557173 55.48029) (xy 191.36997 55.541117) (xy 191.194594 55.630476) (xy 191.152369 55.661155) + (xy 191.035354 55.746172) (xy 191.035352 55.746174) (xy 191.035351 55.746174) (xy 190.896174 55.885351) + (xy 190.896174 55.885352) (xy 190.896172 55.885354) (xy 190.861687 55.932818) (xy 190.780476 56.044594) + (xy 190.691117 56.21997) (xy 190.63029 56.407173) (xy 190.600479 56.595398) (xy 190.57055 56.658533) + (xy 190.53147 56.687882) (xy 190.506111 56.7) (xy 190.45 56.7) (xy 172.434387 56.7) (xy 172.428982 56.67283) + (xy 172.42358 56.645672) (xy 172.421509 56.640671) (xy 172.370778 56.518195) (xy 172.370771 56.518182) + (xy 172.294114 56.403458) (xy 172.294111 56.403454) (xy 172.196545 56.305888) (xy 172.196541 56.305885) + (xy 172.081817 56.229228) (xy 172.081804 56.229221) (xy 171.954332 56.176421) (xy 171.95432 56.176418) + (xy 171.861843 56.158023) (xy 171.799932 56.125638) (xy 171.765358 56.064922) (xy 171.769097 55.995153) + (xy 171.798351 55.948726) (xy 171.886789 55.860289) (xy 171.974394 55.729179) (xy 172.034737 55.583497) + (xy 172.0655 55.428842) (xy 172.0655 55.271158) (xy 172.0655 55.271155) (xy 172.065499 55.271153) + (xy 172.060527 55.246158) (xy 172.034737 55.116503) (xy 171.999158 55.030606) (xy 171.974397 54.970827) + (xy 171.97439 54.970814) (xy 171.886789 54.839711) (xy 171.886786 54.839707) (xy 171.775292 54.728213) + (xy 171.775288 54.72821) (xy 171.644185 54.640609) (xy 171.644172 54.640602) (xy 171.498501 54.580264) + (xy 171.498489 54.580261) (xy 171.343845 54.5495) (xy 171.343842 54.5495) (xy 171.186158 54.5495) + (xy 171.186155 54.5495) (xy 171.03151 54.580261) (xy 171.031498 54.580264) (xy 170.885827 54.640602) + (xy 170.885814 54.640609) (xy 170.754711 54.72821) (xy 170.754707 54.728213) (xy 170.643213 54.839707) + (xy 170.64321 54.839711) (xy 170.555609 54.970814) (xy 170.555602 54.970827) (xy 170.495264 55.116498) + (xy 170.495261 55.11651) (xy 170.4645 55.271153) (xy 170.4645 55.428846) (xy 170.495261 55.583489) + (xy 170.495264 55.583501) (xy 170.555602 55.729172) (xy 170.555609 55.729185) (xy 170.64321 55.860288) + (xy 170.643213 55.860292) (xy 170.74752 55.964599) (xy 170.781005 56.025922) (xy 170.776021 56.095614) + (xy 170.734149 56.151547) (xy 170.684031 56.173897) (xy 170.545677 56.201418) (xy 170.545667 56.201421) + (xy 170.418195 56.254221) (xy 170.418182 56.254228) (xy 170.303458 56.330885) (xy 170.303454 56.330888) + (xy 170.205888 56.428454) (xy 170.205885 56.428458) (xy 170.129228 56.543182) (xy 170.129223 56.543192) + (xy 170.114561 56.57859) (xy 170.07072 56.632994) (xy 170.004425 56.655058) (xy 169.936726 56.637778) + (xy 169.889116 56.586641) (xy 169.885439 56.57859) (xy 169.870776 56.543192) (xy 169.870775 56.543189) + (xy 169.870773 56.543186) (xy 169.870771 56.543182) (xy 169.794114 56.428458) (xy 169.794111 56.428454) + (xy 169.696545 56.330888) (xy 169.696541 56.330885) (xy 169.581817 56.254228) (xy 169.581804 56.254221) + (xy 169.454332 56.201421) (xy 169.454322 56.201418) (xy 169.318995 56.1745) (xy 169.318993 56.1745) + (xy 169.181007 56.1745) (xy 169.181005 56.1745) (xy 169.045677 56.201418) (xy 169.045667 56.201421) + (xy 168.918195 56.254221) (xy 168.918182 56.254228) (xy 168.803458 56.330885) (xy 168.803454 56.330888) + (xy 168.705888 56.428454) (xy 168.705885 56.428458) (xy 168.629228 56.543182) (xy 168.629222 56.543194) + (xy 168.620772 56.563594) (xy 168.57693 56.617997) (xy 168.510635 56.64006) (xy 168.442936 56.62278) + (xy 168.395327 56.571641) (xy 168.391651 56.563591) (xy 168.370776 56.513194) (xy 168.370769 56.513181) + (xy 168.294112 56.398457) (xy 168.294109 56.398453) (xy 168.232837 56.337181) (xy 168.199352 56.275858) + (xy 168.204336 56.206166) (xy 168.246208 56.150233) (xy 168.311672 56.125816) (xy 168.320518 56.1255) + (xy 168.368844 56.1255) (xy 168.368845 56.125499) (xy 168.523497 56.094737) (xy 168.669179 56.034394) + (xy 168.800289 55.946789) (xy 168.911789 55.835289) (xy 168.999394 55.704179) (xy 169.059737 55.558497) + (xy 169.0905 55.403842) (xy 169.0905 55.246158) (xy 169.0905 55.246155) (xy 169.090499 55.246153) + (xy 169.079493 55.190822) (xy 169.059737 55.091503) (xy 169.048327 55.063957) (xy 168.999397 54.945827) + (xy 168.99939 54.945814) (xy 168.911789 54.814711) (xy 168.911786 54.814707) (xy 168.800292 54.703213) + (xy 168.800288 54.70321) (xy 168.669185 54.615609) (xy 168.669172 54.615602) (xy 168.523501 54.555264) + (xy 168.523489 54.555261) (xy 168.368845 54.5245) (xy 168.368842 54.5245) (xy 168.211158 54.5245) + (xy 168.171103 54.532467) (xy 168.101511 54.526238) (xy 168.046335 54.483375) (xy 168.023091 54.417485) + (xy 168.032351 54.363398) (xy 168.044737 54.333497) (xy 168.0755 54.178842) (xy 168.0755 54.101153) + (xy 173.062 54.101153) (xy 173.062 54.258846) (xy 173.092761 54.413489) (xy 173.092764 54.413501) + (xy 173.153102 54.559172) (xy 173.153109 54.559185) (xy 173.24071 54.690288) (xy 173.240713 54.690292) + (xy 173.352207 54.801786) (xy 173.352211 54.801789) (xy 173.483314 54.88939) (xy 173.483327 54.889397) + (xy 173.619532 54.945814) (xy 173.629003 54.949737) (xy 173.783653 54.980499) (xy 173.783656 54.9805) + (xy 173.783658 54.9805) (xy 173.941344 54.9805) (xy 173.941345 54.980499) (xy 174.095997 54.949737) + (xy 174.241679 54.889394) (xy 174.372789 54.801789) (xy 174.484289 54.690289) (xy 174.571894 54.559179) + (xy 174.632237 54.413497) (xy 174.663 54.258842) (xy 174.663 54.101158) (xy 174.663 54.101156) (xy 174.663 54.101155) + (xy 174.662999 54.101153) (xy 174.655042 54.061153) (xy 174.632237 53.946503) (xy 174.624923 53.928846) + (xy 174.571897 53.800827) (xy 174.57189 53.800814) (xy 174.484289 53.669711) (xy 174.484286 53.669707) + (xy 174.372792 53.558213) (xy 174.372788 53.55821) (xy 174.241685 53.470609) (xy 174.241672 53.470602) + (xy 174.096001 53.410264) (xy 174.095989 53.410261) (xy 173.941345 53.3795) (xy 173.941342 53.3795) + (xy 173.783658 53.3795) (xy 173.783655 53.3795) (xy 173.62901 53.410261) (xy 173.628998 53.410264) + (xy 173.483327 53.470602) (xy 173.483314 53.470609) (xy 173.352211 53.55821) (xy 173.352207 53.558213) + (xy 173.240713 53.669707) (xy 173.24071 53.669711) (xy 173.153109 53.800814) (xy 173.153102 53.800827) + (xy 173.092764 53.946498) (xy 173.092761 53.94651) (xy 173.062 54.101153) (xy 168.0755 54.101153) + (xy 168.0755 54.021158) (xy 168.0755 54.021155) (xy 168.075499 54.021153) (xy 168.069279 53.989883) + (xy 168.044737 53.866503) (xy 168.020853 53.808842) (xy 167.984397 53.720827) (xy 167.98439 53.720814) + (xy 167.896789 53.589711) (xy 167.896786 53.589707) (xy 167.785292 53.478213) (xy 167.785288 53.47821) + (xy 167.654185 53.390609) (xy 167.654172 53.390602) (xy 167.508501 53.330264) (xy 167.508489 53.330261) + (xy 167.353845 53.2995) (xy 167.353842 53.2995) (xy 167.196158 53.2995) (xy 167.196155 53.2995) + (xy 167.04151 53.330261) (xy 167.041498 53.330264) (xy 166.895827 53.390602) (xy 166.895814 53.390609) + (xy 166.764711 53.47821) (xy 166.764707 53.478213) (xy 166.653213 53.589707) (xy 166.65321 53.589711) + (xy 166.565609 53.720814) (xy 166.565602 53.720827) (xy 166.505264 53.866498) (xy 166.505261 53.86651) + (xy 166.4745 54.021153) (xy 166.4745 54.178846) (xy 166.505261 54.333489) (xy 166.505264 54.333501) + (xy 166.565602 54.479172) (xy 166.565609 54.479185) (xy 166.65321 54.610288) (xy 166.653213 54.610292) + (xy 166.764707 54.721786) (xy 166.764711 54.721789) (xy 166.895814 54.80939) (xy 166.895827 54.809397) + (xy 167.01815 54.860064) (xy 167.041503 54.869737) (xy 167.196153 54.900499) (xy 167.196156 54.9005) + (xy 167.196158 54.9005) (xy 167.353843 54.9005) (xy 167.369591 54.897367) (xy 167.393894 54.892533) + (xy 167.463485 54.89876) (xy 167.518663 54.941622) (xy 167.541908 55.007511) (xy 167.532648 55.061599) + (xy 167.520265 55.091494) (xy 167.520261 55.09151) (xy 167.4895 55.246153) (xy 167.4895 55.403846) + (xy 167.520261 55.558489) (xy 167.520264 55.558501) (xy 167.580602 55.704172) (xy 167.580609 55.704185) + (xy 167.66821 55.835288) (xy 167.668213 55.835292) (xy 167.765739 55.932818) (xy 167.799224 55.994141) + (xy 167.79424 56.063833) (xy 167.752368 56.119766) (xy 167.686904 56.144183) (xy 167.682678 56.144333) + (xy 167.681002 56.144498) (xy 167.545675 56.171417) (xy 167.545665 56.17142) (xy 167.418193 56.22422) + (xy 167.418175 56.22423) (xy 167.315146 56.293072) (xy 167.248469 56.31395) (xy 167.181089 56.295465) + (xy 167.177365 56.293072) (xy 167.081817 56.229228) (xy 167.081804 56.229221) (xy 166.954332 56.176421) + (xy 166.954322 56.176418) (xy 166.818995 56.1495) (xy 166.818993 56.1495) (xy 166.681007 56.1495) + (xy 166.681005 56.1495) (xy 166.545677 56.176418) (xy 166.545667 56.176421) (xy 166.418195 56.229221) + (xy 166.418182 56.229228) (xy 166.303458 56.305885) (xy 166.303454 56.305888) (xy 166.205888 56.403454) + (xy 166.205885 56.403458) (xy 166.129228 56.518182) (xy 166.129221 56.518195) (xy 166.076421 56.645667) + (xy 166.076418 56.645677) (xy 166.0495 56.781004) (xy 166.0495 56.781007) (xy 166.0495 56.918993) + (xy 166.0495 56.918995) (xy 166.049499 56.918995) (xy 166.076418 57.054322) (xy 166.07642 57.054328) + (xy 166.081789 57.06729) (xy 166.089256 57.13676) (xy 166.05798 57.199238) (xy 166.01468 57.229302) + (xy 165.890823 57.280604) (xy 165.890814 57.280609) (xy 165.759711 57.36821) (xy 165.759707 57.368213) + (xy 165.648213 57.479707) (xy 165.64821 57.479711) (xy 165.560609 57.610814) (xy 165.560602 57.610827) + (xy 165.500264 57.756498) (xy 165.500262 57.756506) (xy 165.4695 57.911153) (xy 161.101216 57.911153) + (xy 161.084836 57.85884) (xy 161.10332 57.79146) (xy 161.155299 57.744769) (xy 161.224269 57.733593) + (xy 161.233002 57.735008) (xy 161.266119 57.741595) (xy 161.361155 57.7605) (xy 161.361158 57.7605) + (xy 161.518844 57.7605) (xy 161.518845 57.760499) (xy 161.673497 57.729737) (xy 161.819179 57.669394) (xy 161.950289 57.581789) (xy 162.061789 57.470289) (xy 162.149394 57.339179) (xy 162.209737 57.193497) (xy 162.2405 57.038842) (xy 162.2405 56.881158) (xy 162.2405 56.881155) (xy 162.240499 56.881153) - (xy 162.221557 56.785928) (xy 162.209737 56.726503) (xy 162.197658 56.697341) (xy 162.149397 56.580827) + (xy 162.224257 56.7995) (xy 162.209737 56.726503) (xy 162.19374 56.687882) (xy 162.149397 56.580827) (xy 162.14939 56.580814) (xy 162.061789 56.449711) (xy 162.061786 56.449707) (xy 161.950292 56.338213) (xy 161.950288 56.33821) (xy 161.819185 56.250609) (xy 161.819172 56.250602) (xy 161.673501 56.190264) (xy 161.673489 56.190261) (xy 161.518845 56.1595) (xy 161.518842 56.1595) (xy 161.361158 56.1595) @@ -38625,84 +43618,112 @@ (xy 160.381155 57.5995) (xy 160.22651 57.630261) (xy 160.226498 57.630264) (xy 160.080827 57.690602) (xy 160.080814 57.690609) (xy 159.949711 57.77821) (xy 159.949707 57.778213) (xy 159.838213 57.889707) (xy 159.83821 57.889711) (xy 159.750609 58.020814) (xy 159.750602 58.020827) (xy 159.690264 58.166498) - (xy 159.690261 58.16651) (xy 159.6595 58.321153) (xy 158.5205 58.321153) (xy 158.5205 58.301158) - (xy 158.5205 58.301155) (xy 158.520499 58.301153) (xy 158.514247 58.269723) (xy 158.489737 58.146503) - (xy 158.469996 58.098844) (xy 158.429397 58.000827) (xy 158.42939 58.000814) (xy 158.341789 57.869711) - (xy 158.341786 57.869707) (xy 158.230292 57.758213) (xy 158.230288 57.75821) (xy 158.099185 57.670609) - (xy 158.099172 57.670602) (xy 157.953501 57.610264) (xy 157.953489 57.610261) (xy 157.798845 57.5795) - (xy 157.798842 57.5795) (xy 157.641158 57.5795) (xy 157.641155 57.5795) (xy 157.48651 57.610261) - (xy 157.486498 57.610264) (xy 157.340827 57.670602) (xy 157.340814 57.670609) (xy 157.209711 57.75821) - (xy 157.209707 57.758213) (xy 157.098213 57.869707) (xy 157.09821 57.869711) (xy 157.010609 58.000814) - (xy 157.010602 58.000827) (xy 156.950264 58.146498) (xy 156.950261 58.14651) (xy 156.9195 58.301153) - (xy 156.315169 58.301153) (xy 156.392789 58.249289) (xy 156.413236 58.228842) (xy 156.434694 58.207385) - (xy 156.504286 58.137792) (xy 156.504289 58.137789) (xy 156.591894 58.006679) (xy 156.594321 58.000821) - (xy 156.619035 57.941155) (xy 156.652237 57.860997) (xy 156.683 57.706342) (xy 156.683 57.548658) - (xy 156.683 57.548655) (xy 156.682999 57.548653) (xy 156.678448 57.525773) (xy 156.652237 57.394003) - (xy 156.645676 57.378163) (xy 156.591897 57.248327) (xy 156.59189 57.248314) (xy 156.504289 57.117211) - (xy 156.504286 57.117207) (xy 156.392792 57.005713) (xy 156.392788 57.00571) (xy 156.261685 56.918109) - (xy 156.261672 56.918102) (xy 156.116001 56.857764) (xy 156.115989 56.857761) (xy 155.961345 56.827) - (xy 155.961342 56.827) (xy 155.803658 56.827) (xy 155.803655 56.827) (xy 155.64901 56.857761) (xy 155.648998 56.857764) - (xy 155.503327 56.918102) (xy 155.503314 56.918109) (xy 155.372211 57.00571) (xy 155.372207 57.005713) + (xy 159.690261 58.16651) (xy 159.6595 58.321153) (xy 156.285237 58.321153) (xy 156.392789 58.249289) + (xy 156.392792 58.249286) (xy 156.414694 58.227385) (xy 156.504286 58.137792) (xy 156.504289 58.137789) + (xy 156.591894 58.006679) (xy 156.652237 57.860997) (xy 156.683 57.706342) (xy 156.683 57.548658) + (xy 156.683 57.548655) (xy 156.682999 57.548653) (xy 156.676976 57.518373) (xy 156.652237 57.394003) + (xy 156.637262 57.357849) (xy 156.59912 57.265765) (xy 156.591651 57.196296) (xy 156.622926 57.133817) + (xy 156.666225 57.103754) (xy 156.749179 57.069394) (xy 156.880289 56.981789) (xy 156.991789 56.870289) + (xy 157.079394 56.739179) (xy 157.139737 56.593497) (xy 157.1705 56.438842) (xy 157.1705 56.281158) + (xy 157.1705 56.281155) (xy 157.170499 56.281153) (xy 157.16436 56.250289) (xy 157.139737 56.126503) + (xy 157.139735 56.126498) (xy 157.079397 55.980827) (xy 157.07939 55.980814) (xy 156.991789 55.849711) + (xy 156.991786 55.849707) (xy 156.880292 55.738213) (xy 156.880288 55.73821) (xy 156.749185 55.650609) + (xy 156.749172 55.650602) (xy 156.626107 55.599628) (xy 156.603501 55.590264) (xy 156.603489 55.590261) + (xy 156.448845 55.5595) (xy 156.448842 55.5595) (xy 156.291158 55.5595) (xy 156.291155 55.5595) + (xy 156.13651 55.590261) (xy 156.136498 55.590264) (xy 155.990827 55.650602) (xy 155.990814 55.650609) + (xy 155.859711 55.73821) (xy 155.859707 55.738213) (xy 155.748213 55.849707) (xy 155.74821 55.849711) + (xy 155.660609 55.980814) (xy 155.660602 55.980827) (xy 155.600264 56.126498) (xy 155.600261 56.12651) + (xy 155.5695 56.281153) (xy 155.5695 56.438846) (xy 155.600261 56.593489) (xy 155.600264 56.593501) + (xy 155.653379 56.721734) (xy 155.660848 56.791204) (xy 155.629572 56.853683) (xy 155.586271 56.883747) + (xy 155.503323 56.918104) (xy 155.503314 56.918109) (xy 155.372211 57.00571) (xy 155.372207 57.005713) (xy 155.260713 57.117207) (xy 155.26071 57.117211) (xy 155.173109 57.248314) (xy 155.173102 57.248327) - (xy 155.112764 57.393998) (xy 155.112761 57.39401) (xy 155.082 57.548653) (xy 153.794139 57.548653) - (xy 153.809737 57.510997) (xy 153.8405 57.356342) (xy 153.8405 57.198658) (xy 153.8405 57.198655) - (xy 153.840499 57.198653) (xy 153.814743 57.069172) (xy 153.809737 57.044003) (xy 153.799053 57.018209) - (xy 153.749397 56.898327) (xy 153.74939 56.898314) (xy 153.661789 56.767211) (xy 153.661786 56.767207) - (xy 153.550292 56.655713) (xy 153.550288 56.65571) (xy 153.419185 56.568109) (xy 153.419172 56.568102) - (xy 153.273501 56.507764) (xy 153.273489 56.507761) (xy 153.118845 56.477) (xy 153.118842 56.477) - (xy 152.961158 56.477) (xy 152.961155 56.477) (xy 152.80651 56.507761) (xy 152.806498 56.507764) - (xy 152.660827 56.568102) (xy 152.660814 56.568109) (xy 152.529711 56.65571) (xy 152.529707 56.655713) - (xy 152.418213 56.767207) (xy 152.41821 56.767211) (xy 152.330609 56.898314) (xy 152.330602 56.898327) - (xy 152.270264 57.043998) (xy 152.270261 57.04401) (xy 152.2395 57.198653) (xy 150.807882 57.198653) - (xy 150.818538 57.182705) (xy 150.857981 57.123675) (xy 150.880675 57.089711) (xy 150.894394 57.069179) - (xy 150.954737 56.923497) (xy 150.9855 56.768842) (xy 150.9855 56.611158) (xy 150.9855 56.611155) - (xy 150.985499 56.611153) (xy 150.979467 56.580827) (xy 150.954737 56.456503) (xy 150.951922 56.449707) - (xy 150.894397 56.310827) (xy 150.89439 56.310814) (xy 150.806789 56.179711) (xy 150.806786 56.179707) - (xy 150.695292 56.068213) (xy 150.695288 56.06821) (xy 150.564185 55.980609) (xy 150.564172 55.980602) - (xy 150.418501 55.920264) (xy 150.418489 55.920261) (xy 150.263845 55.8895) (xy 150.263842 55.8895) - (xy 150.106158 55.8895) (xy 150.106155 55.8895) (xy 149.95151 55.920261) (xy 149.951498 55.920264) - (xy 149.805827 55.980602) (xy 149.805814 55.980609) (xy 149.674711 56.06821) (xy 149.674707 56.068213) - (xy 149.563213 56.179707) (xy 149.56321 56.179711) (xy 149.475609 56.310814) (xy 149.475602 56.310827) - (xy 149.415264 56.456498) (xy 149.415261 56.45651) (xy 149.3845 56.611153) (xy 145.675493 56.611153) - (xy 145.675752 55.110372) (xy 145.695448 55.043339) (xy 145.74826 54.997593) (xy 145.799931 54.986396) - (xy 146.089191 54.986824) (xy 146.156199 55.006608) (xy 146.201875 55.059479) (xy 146.211717 55.128653) - (xy 146.182598 55.192165) (xy 146.176687 55.198504) (xy 146.125714 55.249477) (xy 146.12571 55.249482) - (xy 146.038109 55.380585) (xy 146.038102 55.380598) (xy 145.977764 55.526269) (xy 145.977761 55.526281) - (xy 145.947 55.680924) (xy 145.947 55.838617) (xy 145.977761 55.99326) (xy 145.977764 55.993272) - (xy 146.038102 56.138943) (xy 146.038109 56.138956) (xy 146.12571 56.270059) (xy 146.125713 56.270063) - (xy 146.237207 56.381557) (xy 146.237211 56.38156) (xy 146.368314 56.469161) (xy 146.368327 56.469168) - (xy 146.513998 56.529506) (xy 146.514003 56.529508) (xy 146.668653 56.56027) (xy 146.668656 56.560271) - (xy 146.668658 56.560271) (xy 146.826344 56.560271) (xy 146.826345 56.56027) (xy 146.980997 56.529508) - (xy 147.033492 56.507764) (xy 147.07516 56.490505) (xy 147.126672 56.469168) (xy 147.126672 56.469167) - (xy 147.126679 56.469165) (xy 147.257789 56.38156) (xy 147.369289 56.27006) (xy 147.456894 56.13895) - (xy 147.517237 55.993268) (xy 147.548 55.838613) (xy 147.548 55.680929) (xy 147.548 55.680926) (xy 147.541135 55.646415) - (xy 147.541135 55.646414) (xy 147.537534 55.62831) (xy 156.255471 55.62831) (xy 156.255471 55.786003) - (xy 156.286232 55.940646) (xy 156.286235 55.940658) (xy 156.346573 56.086329) (xy 156.34658 56.086342) - (xy 156.434181 56.217445) (xy 156.434184 56.217449) (xy 156.545678 56.328943) (xy 156.545682 56.328946) - (xy 156.676785 56.416547) (xy 156.676798 56.416554) (xy 156.822469 56.476892) (xy 156.822474 56.476894) - (xy 156.972881 56.506812) (xy 156.977124 56.507656) (xy 156.977127 56.507657) (xy 156.977129 56.507657) - (xy 157.134815 56.507657) (xy 157.134816 56.507656) (xy 157.289468 56.476894) (xy 157.43515 56.416551) - (xy 157.56626 56.328946) (xy 157.67776 56.217446) (xy 157.765365 56.086336) (xy 157.825708 55.940654) - (xy 157.856471 55.785999) (xy 157.856471 55.628315) (xy 157.856471 55.628312) (xy 157.85647 55.62831) - (xy 157.842583 55.558497) (xy 157.825708 55.47366) (xy 157.807144 55.428842) (xy 157.765368 55.327984) - (xy 157.765361 55.327971) (xy 157.67776 55.196868) (xy 157.677757 55.196864) (xy 157.566263 55.08537) - (xy 157.566259 55.085367) (xy 157.435156 54.997766) (xy 157.435143 54.997759) (xy 157.289472 54.937421) - (xy 157.28946 54.937418) (xy 157.134816 54.906657) (xy 157.134813 54.906657) (xy 156.977129 54.906657) - (xy 156.977126 54.906657) (xy 156.822481 54.937418) (xy 156.822469 54.937421) (xy 156.676798 54.997759) - (xy 156.676785 54.997766) (xy 156.545682 55.085367) (xy 156.545678 55.08537) (xy 156.434184 55.196864) - (xy 156.434181 55.196868) (xy 156.34658 55.327971) (xy 156.346573 55.327984) (xy 156.286235 55.473655) - (xy 156.286232 55.473667) (xy 156.255471 55.62831) (xy 147.537534 55.62831) (xy 147.523647 55.558501) - (xy 147.517237 55.526274) (xy 147.517235 55.526269) (xy 147.456897 55.380598) (xy 147.45689 55.380585) - (xy 147.369289 55.249482) (xy 147.369286 55.249478) (xy 147.320265 55.200457) (xy 147.28678 55.139134) - (xy 147.291764 55.069442) (xy 147.333636 55.013509) (xy 147.3991 54.989092) (xy 147.408095 54.988777) - (xy 150.289312 54.993042) (xy 151.746938 53.551153) (xy 153.4595 53.551153) (xy 153.4595 53.708846) - (xy 153.490261 53.863489) (xy 153.490264 53.863501) (xy 153.550602 54.009172) (xy 153.550609 54.009185) - (xy 153.63821 54.140288) (xy 153.638213 54.140292) (xy 153.749707 54.251786) (xy 153.749711 54.251789) - (xy 153.880814 54.33939) (xy 153.880827 54.339397) (xy 153.979932 54.380447) (xy 154.026503 54.399737) - (xy 154.115728 54.417485) (xy 154.181153 54.430499) (xy 154.181156 54.4305) (xy 154.181158 54.4305) - (xy 154.338844 54.4305) (xy 154.338845 54.430499) (xy 154.493497 54.399737) (xy 154.639179 54.339394) - (xy 154.770289 54.251789) (xy 154.881789 54.140289) (xy 154.969394 54.009179) (xy 155.029737 53.863497) - (xy 155.035655 53.833741) (xy 155.048106 53.771153) (xy 163.5995 53.771153) (xy 163.5995 53.928846) + (xy 155.112764 57.393998) (xy 155.112761 57.39401) (xy 155.082 57.548653) (xy 152.934625 57.548653) + (xy 152.940648 57.518374) (xy 152.940648 57.518373) (xy 152.950116 57.470771) (xy 152.9505 57.468842) + (xy 152.9505 57.311158) (xy 152.9505 57.311155) (xy 152.950499 57.311153) (xy 152.929744 57.206811) + (xy 152.919737 57.156503) (xy 152.915458 57.146172) (xy 152.859397 57.010827) (xy 152.85939 57.010814) + (xy 152.771789 56.879711) (xy 152.771786 56.879707) (xy 152.660292 56.768213) (xy 152.660288 56.76821) + (xy 152.529185 56.680609) (xy 152.529172 56.680602) (xy 152.383501 56.620264) (xy 152.383489 56.620261) + (xy 152.228845 56.5895) (xy 152.228842 56.5895) (xy 152.071158 56.5895) (xy 152.071155 56.5895) + (xy 151.91651 56.620261) (xy 151.916498 56.620264) (xy 151.770827 56.680602) (xy 151.770814 56.680609) + (xy 151.639711 56.76821) (xy 151.639707 56.768213) (xy 151.528213 56.879707) (xy 151.52821 56.879711) + (xy 151.440609 57.010814) (xy 151.440602 57.010827) (xy 151.380264 57.156498) (xy 151.380261 57.15651) + (xy 151.3495 57.311153) (xy 150.695925 57.311153) (xy 150.741313 57.265765) (xy 150.789694 57.217385) + (xy 150.806786 57.200292) (xy 150.806789 57.200289) (xy 150.894394 57.069179) (xy 150.895177 57.06729) + (xy 150.920683 57.005711) (xy 150.954737 56.923497) (xy 150.9855 56.768842) (xy 150.9855 56.611158) + (xy 150.9855 56.611155) (xy 150.985499 56.611153) (xy 150.979467 56.580827) (xy 150.954737 56.456503) + (xy 150.947423 56.438846) (xy 150.894397 56.310827) (xy 150.89439 56.310814) (xy 150.806789 56.179711) + (xy 150.806786 56.179707) (xy 150.695292 56.068213) (xy 150.695288 56.06821) (xy 150.564185 55.980609) + (xy 150.564172 55.980602) (xy 150.418501 55.920264) (xy 150.418489 55.920261) (xy 150.263845 55.8895) + (xy 150.263842 55.8895) (xy 150.106158 55.8895) (xy 150.106155 55.8895) (xy 149.95151 55.920261) + (xy 149.951498 55.920264) (xy 149.805827 55.980602) (xy 149.805814 55.980609) (xy 149.674711 56.06821) + (xy 149.674707 56.068213) (xy 149.563213 56.179707) (xy 149.56321 56.179711) (xy 149.475609 56.310814) + (xy 149.475602 56.310827) (xy 149.415264 56.456498) (xy 149.415261 56.45651) (xy 149.3845 56.611153) + (xy 145.607667 56.611153) (xy 145.607714 56.334132) (xy 145.62741 56.267098) (xy 145.680222 56.221352) + (xy 145.749382 56.21142) (xy 145.812933 56.240456) (xy 145.819395 56.246474) (xy 145.934707 56.361786) + (xy 145.934711 56.361789) (xy 146.065814 56.44939) (xy 146.065827 56.449397) (xy 146.16507 56.490504) + (xy 146.211503 56.509737) (xy 146.316579 56.530638) (xy 146.366153 56.540499) (xy 146.366156 56.5405) + (xy 146.366158 56.5405) (xy 146.523844 56.5405) (xy 146.523845 56.540499) (xy 146.678497 56.509737) + (xy 146.823414 56.449711) (xy 146.824172 56.449397) (xy 146.824172 56.449396) (xy 146.824179 56.449394) + (xy 146.955289 56.361789) (xy 147.066789 56.250289) (xy 147.154394 56.119179) (xy 147.214737 55.973497) + (xy 147.2455 55.818842) (xy 147.2455 55.661158) (xy 147.2455 55.661155) (xy 147.245499 55.661153) + (xy 147.231398 55.590263) (xy 147.214737 55.506503) (xy 147.208379 55.491154) (xy 157.429502 55.491154) + (xy 157.429502 55.648847) (xy 157.460263 55.80349) (xy 157.460266 55.803502) (xy 157.520604 55.949173) + (xy 157.520611 55.949186) (xy 157.608212 56.080289) (xy 157.608215 56.080293) (xy 157.719709 56.191787) + (xy 157.719713 56.19179) (xy 157.850816 56.279391) (xy 157.850829 56.279398) (xy 157.996499 56.339736) + (xy 157.996501 56.339736) (xy 157.996505 56.339738) (xy 157.998489 56.340132) (xy 157.999431 56.340625) + (xy 158.002337 56.341507) (xy 158.002169 56.342057) (xy 158.0604 56.372511) (xy 158.09498 56.433224) + (xy 158.091246 56.502994) (xy 158.07741 56.530638) (xy 158.070615 56.540807) (xy 158.070604 56.540827) + (xy 158.010266 56.686498) (xy 158.010263 56.68651) (xy 157.979502 56.841153) (xy 157.979502 56.998846) + (xy 158.010263 57.153489) (xy 158.010266 57.153501) (xy 158.070604 57.299172) (xy 158.070611 57.299185) + (xy 158.158212 57.430288) (xy 158.158215 57.430292) (xy 158.269709 57.541786) (xy 158.269713 57.541789) + (xy 158.400816 57.62939) (xy 158.400829 57.629397) (xy 158.5465 57.689735) (xy 158.546505 57.689737) + (xy 158.630004 57.706346) (xy 158.701155 57.720499) (xy 158.701158 57.7205) (xy 158.70116 57.7205) + (xy 158.858846 57.7205) (xy 158.858847 57.720499) (xy 159.013499 57.689737) (xy 159.159181 57.629394) + (xy 159.290291 57.541789) (xy 159.401791 57.430289) (xy 159.489396 57.299179) (xy 159.492856 57.290827) + (xy 159.510465 57.248314) (xy 159.549739 57.153497) (xy 159.580502 56.998842) (xy 159.580502 56.841158) + (xy 159.580502 56.841155) (xy 159.580501 56.841153) (xy 159.568537 56.781007) (xy 159.549739 56.686503) + (xy 159.536714 56.655058) (xy 159.489399 56.540827) (xy 159.489392 56.540814) (xy 159.401791 56.409711) + (xy 159.401788 56.409707) (xy 159.290294 56.298213) (xy 159.29029 56.29821) (xy 159.159187 56.210609) + (xy 159.159174 56.210602) (xy 159.013503 56.150264) (xy 159.013493 56.150261) (xy 159.011505 56.149866) + (xy 159.010559 56.149371) (xy 159.007667 56.148494) (xy 159.007833 56.147945) (xy 158.949594 56.117481) + (xy 158.91502 56.056765) (xy 158.918761 55.986995) (xy 158.932598 55.959354) (xy 158.939392 55.949186) + (xy 158.939392 55.949185) (xy 158.939396 55.94918) (xy 158.999739 55.803498) (xy 159.030502 55.648843) + (xy 159.030502 55.491159) (xy 159.030502 55.491156) (xy 159.030501 55.491154) (xy 159.008671 55.381409) + (xy 158.999739 55.336504) (xy 158.972155 55.269909) (xy 158.939399 55.190828) (xy 158.939392 55.190815) + (xy 158.854628 55.063957) (xy 158.85179 55.05971) (xy 158.793233 55.001153) (xy 161.7395 55.001153) + (xy 161.7395 55.158846) (xy 161.770261 55.313489) (xy 161.770264 55.313501) (xy 161.830602 55.459172) + (xy 161.830609 55.459185) (xy 161.91821 55.590288) (xy 161.918213 55.590292) (xy 162.029707 55.701786) + (xy 162.029711 55.701789) (xy 162.160814 55.78939) (xy 162.160827 55.789397) (xy 162.30644 55.849711) + (xy 162.306503 55.849737) (xy 162.461153 55.880499) (xy 162.461156 55.8805) (xy 162.461158 55.8805) + (xy 162.618844 55.8805) (xy 162.618845 55.880499) (xy 162.773497 55.849737) (xy 162.919179 55.789394) + (xy 163.050289 55.701789) (xy 163.161789 55.590289) (xy 163.249394 55.459179) (xy 163.309737 55.313497) + (xy 163.3405 55.158842) (xy 163.3405 55.001158) (xy 163.3405 55.001155) (xy 163.340499 55.001153) + (xy 163.334467 54.970827) (xy 163.309737 54.846503) (xy 163.306406 54.838462) (xy 163.249397 54.700827) + (xy 163.24939 54.700814) (xy 163.161789 54.569711) (xy 163.161786 54.569707) (xy 163.050292 54.458213) + (xy 163.050288 54.45821) (xy 162.919185 54.370609) (xy 162.919172 54.370602) (xy 162.773501 54.310264) + (xy 162.773489 54.310261) (xy 162.618845 54.2795) (xy 162.618842 54.2795) (xy 162.461158 54.2795) + (xy 162.461155 54.2795) (xy 162.30651 54.310261) (xy 162.306498 54.310264) (xy 162.160827 54.370602) + (xy 162.160814 54.370609) (xy 162.029711 54.45821) (xy 162.029707 54.458213) (xy 161.918213 54.569707) + (xy 161.91821 54.569711) (xy 161.830609 54.700814) (xy 161.830602 54.700827) (xy 161.770264 54.846498) + (xy 161.770261 54.84651) (xy 161.7395 55.001153) (xy 158.793233 55.001153) (xy 158.740294 54.948214) + (xy 158.74029 54.948211) (xy 158.609187 54.86061) (xy 158.609174 54.860603) (xy 158.463503 54.800265) + (xy 158.463491 54.800262) (xy 158.308847 54.769501) (xy 158.308844 54.769501) (xy 158.15116 54.769501) + (xy 158.151157 54.769501) (xy 157.996512 54.800262) (xy 157.9965 54.800265) (xy 157.850829 54.860603) + (xy 157.850816 54.86061) (xy 157.719713 54.948211) (xy 157.719709 54.948214) (xy 157.608215 55.059708) + (xy 157.608212 55.059712) (xy 157.520611 55.190815) (xy 157.520604 55.190828) (xy 157.460266 55.336499) + (xy 157.460263 55.336511) (xy 157.429502 55.491154) (xy 147.208379 55.491154) (xy 147.199207 55.46901) + (xy 147.154397 55.360827) (xy 147.15439 55.360814) (xy 147.066789 55.229711) (xy 147.066786 55.229707) + (xy 147.060274 55.223195) (xy 147.026789 55.161872) (xy 147.031773 55.09218) (xy 147.073645 55.036247) + (xy 147.139109 55.01183) (xy 147.147442 55.011516) (xy 150.271938 54.999865) (xy 151.658081 53.621931) + (xy 151.719502 53.588629) (xy 151.789178 53.59382) (xy 151.844987 53.635858) (xy 151.86921 53.701394) + (xy 151.8695 53.709873) (xy 151.8695 53.808846) (xy 151.900261 53.963489) (xy 151.900264 53.963501) + (xy 151.960602 54.109172) (xy 151.960609 54.109185) (xy 152.04821 54.240288) (xy 152.048213 54.240292) + (xy 152.159707 54.351786) (xy 152.159711 54.351789) (xy 152.290814 54.43939) (xy 152.290827 54.439397) + (xy 152.397001 54.483375) (xy 152.436503 54.499737) (xy 152.569189 54.52613) (xy 152.591153 54.530499) + (xy 152.591156 54.5305) (xy 152.591158 54.5305) (xy 152.748844 54.5305) (xy 152.748845 54.530499) + (xy 152.903497 54.499737) (xy 153.049179 54.439394) (xy 153.180289 54.351789) (xy 153.291789 54.240289) + (xy 153.379394 54.109179) (xy 153.382719 54.101153) (xy 153.428807 53.989884) (xy 153.439737 53.963497) + (xy 153.4705 53.808842) (xy 153.4705 53.771153) (xy 163.5995 53.771153) (xy 163.5995 53.928846) (xy 163.630261 54.083489) (xy 163.630264 54.083501) (xy 163.690602 54.229172) (xy 163.690609 54.229185) (xy 163.77821 54.360288) (xy 163.778213 54.360292) (xy 163.889707 54.471786) (xy 163.889711 54.471789) (xy 164.020814 54.55939) (xy 164.020827 54.559397) (xy 164.15652 54.615602) (xy 164.166503 54.619737) @@ -38717,99 +43738,88 @@ (xy 164.321155 53.0495) (xy 164.16651 53.080261) (xy 164.166498 53.080264) (xy 164.020827 53.140602) (xy 164.020814 53.140609) (xy 163.889711 53.22821) (xy 163.889707 53.228213) (xy 163.778213 53.339707) (xy 163.77821 53.339711) (xy 163.690609 53.470814) (xy 163.690602 53.470827) (xy 163.630264 53.616498) - (xy 163.630261 53.61651) (xy 163.5995 53.771153) (xy 155.048106 53.771153) (xy 155.054129 53.740874) - (xy 155.054129 53.740873) (xy 155.060499 53.708846) (xy 155.0605 53.708844) (xy 155.0605 53.551155) - (xy 155.060499 53.551153) (xy 155.047398 53.485289) (xy 155.029737 53.396503) (xy 155.018867 53.370261) - (xy 154.969397 53.250827) (xy 154.96939 53.250814) (xy 154.881789 53.119711) (xy 154.881786 53.119707) - (xy 154.770292 53.008213) (xy 154.770288 53.00821) (xy 154.639185 52.920609) (xy 154.639172 52.920602) - (xy 154.493501 52.860264) (xy 154.493489 52.860261) (xy 154.338845 52.8295) (xy 154.338842 52.8295) - (xy 154.181158 52.8295) (xy 154.181155 52.8295) (xy 154.02651 52.860261) (xy 154.026498 52.860264) - (xy 153.880827 52.920602) (xy 153.880814 52.920609) (xy 153.749711 53.00821) (xy 153.749707 53.008213) - (xy 153.638213 53.119707) (xy 153.63821 53.119711) (xy 153.550609 53.250814) (xy 153.550602 53.250827) - (xy 153.490264 53.396498) (xy 153.490261 53.39651) (xy 153.4595 53.551153) (xy 151.746938 53.551153) - (xy 153.000471 52.311153) (xy 154.8995 52.311153) (xy 154.8995 52.468846) (xy 154.930261 52.623489) - (xy 154.930264 52.623501) (xy 154.990602 52.769172) (xy 154.990609 52.769185) (xy 155.07821 52.900288) - (xy 155.078213 52.900292) (xy 155.189707 53.011786) (xy 155.189711 53.011789) (xy 155.320814 53.09939) - (xy 155.320827 53.099397) (xy 155.42112 53.140939) (xy 155.466503 53.159737) (xy 155.617312 53.189735) - (xy 155.621153 53.190499) (xy 155.621156 53.1905) (xy 155.621158 53.1905) (xy 155.778844 53.1905) - (xy 155.778845 53.190499) (xy 155.933497 53.159737) (xy 156.079179 53.099394) (xy 156.210289 53.011789) - (xy 156.321789 52.900289) (xy 156.324553 52.896153) (xy 169.5995 52.896153) (xy 169.5995 53.053846) - (xy 169.630261 53.208489) (xy 169.630264 53.208501) (xy 169.690602 53.354172) (xy 169.690609 53.354185) - (xy 169.77821 53.485288) (xy 169.778213 53.485292) (xy 169.889707 53.596786) (xy 169.889711 53.596789) - (xy 170.020814 53.68439) (xy 170.020827 53.684397) (xy 170.157174 53.740873) (xy 170.166503 53.744737) - (xy 170.321153 53.775499) (xy 170.321156 53.7755) (xy 170.321158 53.7755) (xy 170.478844 53.7755) - (xy 170.478845 53.775499) (xy 170.633497 53.744737) (xy 170.779179 53.684394) (xy 170.910289 53.596789) - (xy 171.021789 53.485289) (xy 171.109394 53.354179) (xy 171.115389 53.339707) (xy 171.132043 53.2995) - (xy 171.169737 53.208497) (xy 171.2005 53.053842) (xy 171.2005 52.896158) (xy 171.2005 52.896155) - (xy 171.200499 52.896153) (xy 171.19336 52.860263) (xy 171.169737 52.741503) (xy 171.133281 52.653489) - (xy 171.109397 52.595827) (xy 171.10939 52.595814) (xy 171.021789 52.464711) (xy 171.021786 52.464707) - (xy 170.910292 52.353213) (xy 170.910288 52.35321) (xy 170.892244 52.341153) (xy 176.392 52.341153) - (xy 176.392 52.498846) (xy 176.422761 52.653489) (xy 176.422764 52.653501) (xy 176.483102 52.799172) - (xy 176.483109 52.799185) (xy 176.57071 52.930288) (xy 176.570713 52.930292) (xy 176.682207 53.041786) - (xy 176.682211 53.041789) (xy 176.813314 53.12939) (xy 176.813327 53.129397) (xy 176.886578 53.159738) - (xy 176.959003 53.189737) (xy 177.113653 53.220499) (xy 177.113656 53.2205) (xy 177.24874 53.2205) - (xy 177.315779 53.240185) (xy 177.361534 53.292989) (xy 177.371478 53.362147) (xy 177.342453 53.425703) - (xy 177.296192 53.459061) (xy 177.268327 53.470602) (xy 177.268314 53.470609) (xy 177.137211 53.55821) - (xy 177.137207 53.558213) (xy 177.025713 53.669707) (xy 177.02571 53.669711) (xy 176.938109 53.800814) - (xy 176.938102 53.800827) (xy 176.877764 53.946498) (xy 176.877761 53.94651) (xy 176.847 54.101153) - (xy 176.847 54.258846) (xy 176.877761 54.413489) (xy 176.877764 54.413501) (xy 176.938102 54.559172) - (xy 176.938109 54.559185) (xy 177.02571 54.690288) (xy 177.025713 54.690292) (xy 177.137207 54.801786) - (xy 177.137211 54.801789) (xy 177.268314 54.88939) (xy 177.268327 54.889397) (xy 177.404532 54.945814) - (xy 177.414003 54.949737) (xy 177.568653 54.980499) (xy 177.568656 54.9805) (xy 177.568658 54.9805) - (xy 177.726344 54.9805) (xy 177.726345 54.980499) (xy 177.880997 54.949737) (xy 178.026679 54.889394) - (xy 178.157789 54.801789) (xy 178.269289 54.690289) (xy 178.356894 54.559179) (xy 178.417237 54.413497) - (xy 178.448 54.258842) (xy 178.448 54.101158) (xy 178.447999 54.101155) (xy 178.443644 54.079259) - (xy 178.443644 54.079257) (xy 178.440043 54.061153) (xy 187.5395 54.061153) (xy 187.5395 54.218846) - (xy 187.570261 54.373489) (xy 187.570264 54.373501) (xy 187.630602 54.519172) (xy 187.630609 54.519185) - (xy 187.71821 54.650288) (xy 187.718213 54.650292) (xy 187.829707 54.761786) (xy 187.829711 54.761789) - (xy 187.960814 54.84939) (xy 187.960827 54.849397) (xy 188.099067 54.906657) (xy 188.106503 54.909737) - (xy 188.245664 54.937418) (xy 188.261153 54.940499) (xy 188.261156 54.9405) (xy 188.261158 54.9405) - (xy 188.418843 54.9405) (xy 188.453337 54.933638) (xy 188.573497 54.909737) (xy 188.5735 54.909735) - (xy 188.57747 54.908946) (xy 188.647061 54.915173) (xy 188.702239 54.958035) (xy 188.716945 54.987741) - (xy 188.717552 54.98749) (xy 188.780222 55.138792) (xy 188.780229 55.138805) (xy 188.86783 55.269908) - (xy 188.867833 55.269912) (xy 188.979327 55.381406) (xy 188.979331 55.381409) (xy 189.110434 55.46901) - (xy 189.110447 55.469017) (xy 189.248668 55.526269) (xy 189.256123 55.529357) (xy 189.402619 55.558497) - (xy 189.410773 55.560119) (xy 189.410776 55.56012) (xy 189.410778 55.56012) (xy 189.568464 55.56012) - (xy 189.568465 55.560119) (xy 189.723117 55.529357) (xy 189.857566 55.473667) (xy 189.868792 55.469017) - (xy 189.868792 55.469016) (xy 189.868799 55.469014) (xy 189.999909 55.381409) (xy 190.111409 55.269909) - (xy 190.199014 55.138799) (xy 190.199353 55.137982) (xy 190.235639 55.050377) (xy 190.259357 54.993117) - (xy 190.29012 54.838462) (xy 190.29012 54.680778) (xy 190.29012 54.680775) (xy 190.290119 54.680773) - (xy 190.277156 54.615606) (xy 190.259357 54.526123) (xy 190.256478 54.519172) (xy 190.199017 54.380447) - (xy 190.19901 54.380434) (xy 190.111409 54.249331) (xy 190.111406 54.249327) (xy 189.999912 54.137833) - (xy 189.999908 54.13783) (xy 189.868805 54.050229) (xy 189.868792 54.050222) (xy 189.723121 53.989884) - (xy 189.723109 53.989881) (xy 189.568465 53.95912) (xy 189.568462 53.95912) (xy 189.410778 53.95912) - (xy 189.410773 53.95912) (xy 189.252147 53.990673) (xy 189.182556 53.984446) (xy 189.127378 53.941583) - (xy 189.112677 53.911878) (xy 189.112068 53.912131) (xy 189.049397 53.760827) (xy 189.04939 53.760814) - (xy 188.961789 53.629711) (xy 188.961786 53.629707) (xy 188.850292 53.518213) (xy 188.850288 53.51821) - (xy 188.843468 53.513653) (xy 205.142 53.513653) (xy 205.142 53.671346) (xy 205.172761 53.825989) - (xy 205.172764 53.826001) (xy 205.233102 53.971672) (xy 205.233109 53.971685) (xy 205.32071 54.102788) - (xy 205.320713 54.102792) (xy 205.432207 54.214286) (xy 205.432211 54.214289) (xy 205.563314 54.30189) - (xy 205.563327 54.301897) (xy 205.7043 54.360289) (xy 205.709003 54.362237) (xy 205.863653 54.392999) - (xy 205.863656 54.393) (xy 205.863658 54.393) (xy 206.021344 54.393) (xy 206.021345 54.392999) (xy 206.175997 54.362237) - (xy 206.321679 54.301894) (xy 206.452789 54.214289) (xy 206.564289 54.102789) (xy 206.651894 53.971679) - (xy 206.712237 53.825997) (xy 206.743 53.671342) (xy 206.743 53.513658) (xy 206.743 53.513655) (xy 206.742999 53.513653) - (xy 206.737357 53.485288) (xy 206.712237 53.359003) (xy 206.704246 53.339711) (xy 206.651897 53.213327) - (xy 206.65189 53.213314) (xy 206.564289 53.082211) (xy 206.564286 53.082207) (xy 206.452792 52.970713) - (xy 206.452788 52.97071) (xy 206.321685 52.883109) (xy 206.321672 52.883102) (xy 206.176001 52.822764) - (xy 206.175989 52.822761) (xy 206.021345 52.792) (xy 206.021342 52.792) (xy 205.863658 52.792) (xy 205.863655 52.792) - (xy 205.70901 52.822761) (xy 205.708998 52.822764) (xy 205.563327 52.883102) (xy 205.563314 52.883109) - (xy 205.432211 52.97071) (xy 205.432207 52.970713) (xy 205.320713 53.082207) (xy 205.32071 53.082211) - (xy 205.233109 53.213314) (xy 205.233102 53.213327) (xy 205.172764 53.358998) (xy 205.172761 53.35901) - (xy 205.142 53.513653) (xy 188.843468 53.513653) (xy 188.719185 53.430609) (xy 188.719172 53.430602) - (xy 188.573501 53.370264) (xy 188.573489 53.370261) (xy 188.418845 53.3395) (xy 188.418842 53.3395) - (xy 188.261158 53.3395) (xy 188.261155 53.3395) (xy 188.10651 53.370261) (xy 188.106498 53.370264) - (xy 187.960827 53.430602) (xy 187.960814 53.430609) (xy 187.829711 53.51821) (xy 187.829707 53.518213) - (xy 187.718213 53.629707) (xy 187.71821 53.629711) (xy 187.630609 53.760814) (xy 187.630602 53.760827) - (xy 187.570264 53.906498) (xy 187.570261 53.90651) (xy 187.5395 54.061153) (xy 178.440043 54.061153) - (xy 178.422243 53.971672) (xy 178.417237 53.946503) (xy 178.409923 53.928846) (xy 178.356897 53.800827) - (xy 178.35689 53.800814) (xy 178.269289 53.669711) (xy 178.269286 53.669707) (xy 178.157792 53.558213) - (xy 178.157788 53.55821) (xy 178.026685 53.470609) (xy 178.026672 53.470602) (xy 177.881001 53.410264) - (xy 177.880989 53.410261) (xy 177.726345 53.3795) (xy 177.726342 53.3795) (xy 177.59126 53.3795) - (xy 177.524221 53.359815) (xy 177.478466 53.307011) (xy 177.468522 53.237853) (xy 177.497547 53.174297) - (xy 177.543808 53.140939) (xy 177.571672 53.129397) (xy 177.571672 53.129396) (xy 177.571679 53.129394) - (xy 177.702789 53.041789) (xy 177.814289 52.930289) (xy 177.901894 52.799179) (xy 177.962237 52.653497) - (xy 177.993 52.498842) (xy 177.993 52.341158) (xy 177.993 52.341155) (xy 177.992999 52.341153) (xy 177.977972 52.265609) - (xy 177.962237 52.186503) (xy 177.949809 52.156498) (xy 177.901897 52.040827) (xy 177.90189 52.040814) + (xy 163.630261 53.61651) (xy 163.5995 53.771153) (xy 153.4705 53.771153) (xy 153.4705 53.651158) + (xy 153.4705 53.651155) (xy 153.470499 53.651153) (xy 153.458277 53.589711) (xy 153.439737 53.496503) + (xy 153.429096 53.470814) (xy 153.379397 53.350827) (xy 153.37939 53.350814) (xy 153.291789 53.219711) + (xy 153.291786 53.219707) (xy 153.180292 53.108213) (xy 153.180288 53.10821) (xy 153.049185 53.020609) + (xy 153.049172 53.020602) (xy 153.010603 53.004627) (xy 152.903501 52.960264) (xy 152.903489 52.960261) + (xy 152.748845 52.9295) (xy 152.748842 52.9295) (xy 152.655262 52.9295) (xy 152.588223 52.909815) + (xy 152.576385 52.896153) (xy 169.5995 52.896153) (xy 169.5995 53.053846) (xy 169.630261 53.208489) + (xy 169.630264 53.208501) (xy 169.690602 53.354172) (xy 169.690609 53.354185) (xy 169.77821 53.485288) + (xy 169.778213 53.485292) (xy 169.889707 53.596786) (xy 169.889711 53.596789) (xy 170.020814 53.68439) + (xy 170.020827 53.684397) (xy 170.166498 53.744735) (xy 170.166503 53.744737) (xy 170.321153 53.775499) + (xy 170.321156 53.7755) (xy 170.321158 53.7755) (xy 170.478844 53.7755) (xy 170.478845 53.775499) + (xy 170.633497 53.744737) (xy 170.779179 53.684394) (xy 170.910289 53.596789) (xy 171.021789 53.485289) + (xy 171.109394 53.354179) (xy 171.110783 53.350827) (xy 171.132043 53.2995) (xy 171.169737 53.208497) + (xy 171.2005 53.053842) (xy 171.2005 52.896158) (xy 171.2005 52.896155) (xy 171.200499 52.896153) + (xy 171.1859 52.822761) (xy 171.169737 52.741503) (xy 171.133281 52.653489) (xy 171.109397 52.595827) + (xy 171.10939 52.595814) (xy 171.021789 52.464711) (xy 171.021786 52.464707) (xy 170.910292 52.353213) + (xy 170.910288 52.35321) (xy 170.892244 52.341153) (xy 176.392 52.341153) (xy 176.392 52.498846) + (xy 176.422761 52.653489) (xy 176.422764 52.653501) (xy 176.483102 52.799172) (xy 176.483109 52.799185) + (xy 176.57071 52.930288) (xy 176.570713 52.930292) (xy 176.682207 53.041786) (xy 176.682211 53.041789) + (xy 176.813314 53.12939) (xy 176.813327 53.129397) (xy 176.921727 53.174297) (xy 176.959003 53.189737) + (xy 177.113653 53.220499) (xy 177.113656 53.2205) (xy 177.24874 53.2205) (xy 177.315779 53.240185) + (xy 177.361534 53.292989) (xy 177.371478 53.362147) (xy 177.342453 53.425703) (xy 177.296192 53.459061) + (xy 177.268327 53.470602) (xy 177.268314 53.470609) (xy 177.137211 53.55821) (xy 177.137207 53.558213) + (xy 177.025713 53.669707) (xy 177.02571 53.669711) (xy 176.938109 53.800814) (xy 176.938102 53.800827) + (xy 176.877764 53.946498) (xy 176.877761 53.94651) (xy 176.847 54.101153) (xy 176.847 54.258846) + (xy 176.877761 54.413489) (xy 176.877764 54.413501) (xy 176.938102 54.559172) (xy 176.938109 54.559185) + (xy 177.02571 54.690288) (xy 177.025713 54.690292) (xy 177.137207 54.801786) (xy 177.137211 54.801789) + (xy 177.268314 54.88939) (xy 177.268327 54.889397) (xy 177.404532 54.945814) (xy 177.414003 54.949737) + (xy 177.568653 54.980499) (xy 177.568656 54.9805) (xy 177.568658 54.9805) (xy 177.726344 54.9805) + (xy 177.726345 54.980499) (xy 177.880997 54.949737) (xy 178.026679 54.889394) (xy 178.157789 54.801789) + (xy 178.269289 54.690289) (xy 178.356894 54.559179) (xy 178.417237 54.413497) (xy 178.448 54.258842) + (xy 178.448 54.101158) (xy 178.447999 54.101155) (xy 178.443644 54.079259) (xy 178.443644 54.079257) + (xy 178.440043 54.061153) (xy 187.5395 54.061153) (xy 187.5395 54.218846) (xy 187.570261 54.373489) + (xy 187.570264 54.373501) (xy 187.630602 54.519172) (xy 187.630609 54.519185) (xy 187.71821 54.650288) + (xy 187.718213 54.650292) (xy 187.829707 54.761786) (xy 187.829711 54.761789) (xy 187.960814 54.84939) + (xy 187.960827 54.849397) (xy 188.104593 54.908946) (xy 188.106503 54.909737) (xy 188.256131 54.9395) + (xy 188.261153 54.940499) (xy 188.261156 54.9405) (xy 188.261158 54.9405) (xy 188.418843 54.9405) + (xy 188.453337 54.933638) (xy 188.573497 54.909737) (xy 188.5735 54.909735) (xy 188.57747 54.908946) + (xy 188.647061 54.915173) (xy 188.702239 54.958035) (xy 188.716945 54.987741) (xy 188.717552 54.98749) + (xy 188.780222 55.138792) (xy 188.780229 55.138805) (xy 188.86783 55.269908) (xy 188.867833 55.269912) + (xy 188.979327 55.381406) (xy 188.979331 55.381409) (xy 189.110434 55.46901) (xy 189.110447 55.469017) + (xy 189.256118 55.529355) (xy 189.256123 55.529357) (xy 189.402619 55.558497) (xy 189.410773 55.560119) + (xy 189.410776 55.56012) (xy 189.410778 55.56012) (xy 189.568464 55.56012) (xy 189.568465 55.560119) + (xy 189.723117 55.529357) (xy 189.868799 55.469014) (xy 189.999909 55.381409) (xy 190.111409 55.269909) + (xy 190.199014 55.138799) (xy 190.259357 54.993117) (xy 190.29012 54.838462) (xy 190.29012 54.680778) + (xy 190.29012 54.680775) (xy 190.290119 54.680773) (xy 190.277156 54.615606) (xy 190.259357 54.526123) + (xy 190.248427 54.499735) (xy 190.199017 54.380447) (xy 190.19901 54.380434) (xy 190.111409 54.249331) + (xy 190.111406 54.249327) (xy 189.999912 54.137833) (xy 189.999908 54.13783) (xy 189.868805 54.050229) + (xy 189.868792 54.050222) (xy 189.723121 53.989884) (xy 189.723109 53.989881) (xy 189.568465 53.95912) + (xy 189.568462 53.95912) (xy 189.410778 53.95912) (xy 189.410773 53.95912) (xy 189.252147 53.990673) + (xy 189.182556 53.984446) (xy 189.127378 53.941583) (xy 189.112677 53.911878) (xy 189.112068 53.912131) + (xy 189.049397 53.760827) (xy 189.04939 53.760814) (xy 188.961789 53.629711) (xy 188.961786 53.629707) + (xy 188.850292 53.518213) (xy 188.850288 53.51821) (xy 188.843468 53.513653) (xy 205.142 53.513653) + (xy 205.142 53.671346) (xy 205.172761 53.825989) (xy 205.172764 53.826001) (xy 205.233102 53.971672) + (xy 205.233109 53.971685) (xy 205.32071 54.102788) (xy 205.320713 54.102792) (xy 205.432207 54.214286) + (xy 205.432211 54.214289) (xy 205.563314 54.30189) (xy 205.563327 54.301897) (xy 205.7043 54.360289) + (xy 205.709003 54.362237) (xy 205.863653 54.392999) (xy 205.863656 54.393) (xy 205.863658 54.393) + (xy 206.021344 54.393) (xy 206.021345 54.392999) (xy 206.175997 54.362237) (xy 206.321679 54.301894) + (xy 206.452789 54.214289) (xy 206.564289 54.102789) (xy 206.651894 53.971679) (xy 206.712237 53.825997) + (xy 206.743 53.671342) (xy 206.743 53.513658) (xy 206.743 53.513655) (xy 206.742999 53.513653) (xy 206.737357 53.485288) + (xy 206.712237 53.359003) (xy 206.710236 53.354172) (xy 206.651897 53.213327) (xy 206.65189 53.213314) + (xy 206.564289 53.082211) (xy 206.564286 53.082207) (xy 206.452792 52.970713) (xy 206.452788 52.97071) + (xy 206.321685 52.883109) (xy 206.321672 52.883102) (xy 206.176001 52.822764) (xy 206.175989 52.822761) + (xy 206.021345 52.792) (xy 206.021342 52.792) (xy 205.863658 52.792) (xy 205.863655 52.792) (xy 205.70901 52.822761) + (xy 205.708998 52.822764) (xy 205.563327 52.883102) (xy 205.563314 52.883109) (xy 205.432211 52.97071) + (xy 205.432207 52.970713) (xy 205.320713 53.082207) (xy 205.32071 53.082211) (xy 205.233109 53.213314) + (xy 205.233102 53.213327) (xy 205.172764 53.358998) (xy 205.172761 53.35901) (xy 205.142 53.513653) + (xy 188.843468 53.513653) (xy 188.719185 53.430609) (xy 188.719172 53.430602) (xy 188.573501 53.370264) + (xy 188.573489 53.370261) (xy 188.418845 53.3395) (xy 188.418842 53.3395) (xy 188.261158 53.3395) + (xy 188.261155 53.3395) (xy 188.10651 53.370261) (xy 188.106498 53.370264) (xy 187.960827 53.430602) + (xy 187.960814 53.430609) (xy 187.829711 53.51821) (xy 187.829707 53.518213) (xy 187.718213 53.629707) + (xy 187.71821 53.629711) (xy 187.630609 53.760814) (xy 187.630602 53.760827) (xy 187.570264 53.906498) + (xy 187.570261 53.90651) (xy 187.5395 54.061153) (xy 178.440043 54.061153) (xy 178.420617 53.963497) + (xy 178.417237 53.946503) (xy 178.409923 53.928846) (xy 178.356897 53.800827) (xy 178.35689 53.800814) + (xy 178.269289 53.669711) (xy 178.269286 53.669707) (xy 178.157792 53.558213) (xy 178.157788 53.55821) + (xy 178.026685 53.470609) (xy 178.026672 53.470602) (xy 177.881001 53.410264) (xy 177.880989 53.410261) + (xy 177.726345 53.3795) (xy 177.726342 53.3795) (xy 177.59126 53.3795) (xy 177.524221 53.359815) + (xy 177.478466 53.307011) (xy 177.468522 53.237853) (xy 177.497547 53.174297) (xy 177.543808 53.140939) + (xy 177.571672 53.129397) (xy 177.571672 53.129396) (xy 177.571679 53.129394) (xy 177.702789 53.041789) + (xy 177.814289 52.930289) (xy 177.901894 52.799179) (xy 177.962237 52.653497) (xy 177.993 52.498842) + (xy 177.993 52.341158) (xy 177.993 52.341155) (xy 177.992999 52.341153) (xy 177.977972 52.265609) + (xy 177.962237 52.186503) (xy 177.929405 52.107238) (xy 177.901897 52.040827) (xy 177.90189 52.040814) (xy 177.814289 51.909711) (xy 177.814286 51.909707) (xy 177.702792 51.798213) (xy 177.702788 51.79821) (xy 177.571685 51.710609) (xy 177.571672 51.710602) (xy 177.426001 51.650264) (xy 177.425989 51.650261) (xy 177.271345 51.6195) (xy 177.271342 51.6195) (xy 177.113658 51.6195) (xy 177.113655 51.6195) @@ -38821,18 +43831,9 @@ (xy 170.321158 52.1745) (xy 170.321155 52.1745) (xy 170.16651 52.205261) (xy 170.166498 52.205264) (xy 170.020827 52.265602) (xy 170.020814 52.265609) (xy 169.889711 52.35321) (xy 169.889707 52.353213) (xy 169.778213 52.464707) (xy 169.77821 52.464711) (xy 169.690609 52.595814) (xy 169.690602 52.595827) - (xy 169.630264 52.741498) (xy 169.630261 52.74151) (xy 169.5995 52.896153) (xy 156.324553 52.896153) - (xy 156.37359 52.822764) (xy 156.374652 52.821175) (xy 156.40939 52.769185) (xy 156.40939 52.769184) - (xy 156.409394 52.769179) (xy 156.469737 52.623497) (xy 156.5005 52.468842) (xy 156.5005 52.311158) - (xy 156.5005 52.311155) (xy 156.500499 52.311153) (xy 156.479436 52.205263) (xy 156.469737 52.156503) - (xy 156.421823 52.040827) (xy 156.409397 52.010827) (xy 156.40939 52.010814) (xy 156.321789 51.879711) - (xy 156.321786 51.879707) (xy 156.210292 51.768213) (xy 156.210288 51.76821) (xy 156.079185 51.680609) - (xy 156.079172 51.680602) (xy 155.933501 51.620264) (xy 155.933489 51.620261) (xy 155.778845 51.5895) - (xy 155.778842 51.5895) (xy 155.621158 51.5895) (xy 155.621155 51.5895) (xy 155.46651 51.620261) - (xy 155.466498 51.620264) (xy 155.320827 51.680602) (xy 155.320814 51.680609) (xy 155.189711 51.76821) - (xy 155.189707 51.768213) (xy 155.078213 51.879707) (xy 155.07821 51.879711) (xy 154.990609 52.010814) - (xy 154.990602 52.010827) (xy 154.930264 52.156498) (xy 154.930261 52.15651) (xy 154.8995 52.311153) - (xy 153.000471 52.311153) (xy 154.698807 50.631153) (xy 158.8695 50.631153) (xy 158.8695 50.788846) + (xy 169.630264 52.741498) (xy 169.630261 52.74151) (xy 169.5995 52.896153) (xy 152.576385 52.896153) + (xy 152.542468 52.857011) (xy 152.532524 52.787853) (xy 152.561549 52.724297) (xy 152.567842 52.717559) + (xy 152.822196 52.464711) (xy 154.666678 50.631153) (xy 158.8695 50.631153) (xy 158.8695 50.788846) (xy 158.900261 50.943489) (xy 158.900264 50.943501) (xy 158.960602 51.089172) (xy 158.960609 51.089185) (xy 159.04821 51.220288) (xy 159.048213 51.220292) (xy 159.159707 51.331786) (xy 159.159711 51.331789) (xy 159.290814 51.41939) (xy 159.290827 51.419397) (xy 159.436498 51.479735) (xy 159.436503 51.479737) @@ -38843,91 +43844,152 @@ (xy 160.450608 50.531153) (xy 166.507 50.531153) (xy 166.507 50.688846) (xy 166.537761 50.843489) (xy 166.537764 50.843501) (xy 166.598102 50.989172) (xy 166.598109 50.989185) (xy 166.68571 51.120288) (xy 166.685713 51.120292) (xy 166.797207 51.231786) (xy 166.797211 51.231789) (xy 166.928314 51.31939) - (xy 166.928327 51.319397) (xy 167.049863 51.369738) (xy 167.074003 51.379737) (xy 167.228653 51.410499) + (xy 166.928327 51.319397) (xy 167.073998 51.379735) (xy 167.074003 51.379737) (xy 167.228653 51.410499) (xy 167.228656 51.4105) (xy 167.228658 51.4105) (xy 167.386344 51.4105) (xy 167.386345 51.410499) (xy 167.540997 51.379737) (xy 167.686679 51.319394) (xy 167.817789 51.231789) (xy 167.929289 51.120289) - (xy 168.016894 50.989179) (xy 168.077237 50.843497) (xy 168.108 50.688842) (xy 168.108 50.551153) - (xy 170.0545 50.551153) (xy 170.0545 50.708846) (xy 170.085261 50.863489) (xy 170.085264 50.863501) - (xy 170.145602 51.009172) (xy 170.145609 51.009185) (xy 170.23321 51.140288) (xy 170.233213 51.140292) - (xy 170.344707 51.251786) (xy 170.344711 51.251789) (xy 170.475814 51.33939) (xy 170.475827 51.339397) - (xy 170.621498 51.399735) (xy 170.621503 51.399737) (xy 170.776153 51.430499) (xy 170.776156 51.4305) - (xy 170.776158 51.4305) (xy 170.933844 51.4305) (xy 170.933845 51.430499) (xy 171.088497 51.399737) - (xy 171.234179 51.339394) (xy 171.365289 51.251789) (xy 171.476789 51.140289) (xy 171.564394 51.009179) - (xy 171.624737 50.863497) (xy 171.6555 50.708842) (xy 171.6555 50.551158) (xy 171.6555 50.551155) - (xy 171.655499 50.551153) (xy 171.642398 50.485289) (xy 171.624737 50.396503) (xy 171.612309 50.366498) - (xy 171.564397 50.250827) (xy 171.56439 50.250814) (xy 171.476789 50.119711) (xy 171.476786 50.119707) - (xy 171.398232 50.041153) (xy 173.492 50.041153) (xy 173.492 50.198846) (xy 173.522761 50.353489) + (xy 168.016894 50.989179) (xy 168.077237 50.843497) (xy 168.108 50.688842) (xy 168.108 50.531158) + (xy 168.102032 50.501153) (xy 170.0345 50.501153) (xy 170.0345 50.658846) (xy 170.065261 50.813489) + (xy 170.065264 50.813501) (xy 170.125602 50.959172) (xy 170.125609 50.959185) (xy 170.21321 51.090288) + (xy 170.213213 51.090292) (xy 170.324707 51.201786) (xy 170.324711 51.201789) (xy 170.455814 51.28939) + (xy 170.455827 51.289397) (xy 170.558165 51.331786) (xy 170.601503 51.349737) (xy 170.752312 51.379735) + (xy 170.756153 51.380499) (xy 170.756156 51.3805) (xy 170.756158 51.3805) (xy 170.913844 51.3805) + (xy 170.913845 51.380499) (xy 171.068497 51.349737) (xy 171.214179 51.289394) (xy 171.260186 51.258653) + (xy 178.2495 51.258653) (xy 178.2495 51.416346) (xy 178.280261 51.570989) (xy 178.280264 51.571001) + (xy 178.340602 51.716672) (xy 178.340609 51.716685) (xy 178.42821 51.847788) (xy 178.428213 51.847792) + (xy 178.539707 51.959286) (xy 178.539711 51.959289) (xy 178.670814 52.04689) (xy 178.670827 52.046897) + (xy 178.816498 52.107235) (xy 178.816503 52.107237) (xy 178.971153 52.137999) (xy 178.971156 52.138) + (xy 178.971158 52.138) (xy 179.128844 52.138) (xy 179.128845 52.137999) (xy 179.283497 52.107237) + (xy 179.429179 52.046894) (xy 179.560289 51.959289) (xy 179.671789 51.847789) (xy 179.759394 51.716679) + (xy 179.76191 51.710606) (xy 179.786905 51.650261) (xy 179.819737 51.570997) (xy 179.8505 51.416342) + (xy 179.8505 51.258658) (xy 179.8505 51.258655) (xy 179.850499 51.258653) (xy 179.831847 51.164885) + (xy 179.819737 51.104003) (xy 179.788744 51.029179) (xy 179.759397 50.958327) (xy 179.75939 50.958314) + (xy 179.671789 50.827211) (xy 179.671786 50.827207) (xy 179.560292 50.715713) (xy 179.560288 50.71571) + (xy 179.429185 50.628109) (xy 179.429172 50.628102) (xy 179.283501 50.567764) (xy 179.283489 50.567761) + (xy 179.128845 50.537) (xy 179.128842 50.537) (xy 178.971158 50.537) (xy 178.971155 50.537) (xy 178.81651 50.567761) + (xy 178.816498 50.567764) (xy 178.670827 50.628102) (xy 178.670814 50.628109) (xy 178.539711 50.71571) + (xy 178.539707 50.715713) (xy 178.428213 50.827207) (xy 178.42821 50.827211) (xy 178.340609 50.958314) + (xy 178.340602 50.958327) (xy 178.280264 51.103998) (xy 178.280261 51.10401) (xy 178.2495 51.258653) + (xy 171.260186 51.258653) (xy 171.345289 51.201789) (xy 171.345292 51.201786) (xy 171.382194 51.164885) + (xy 171.456786 51.090292) (xy 171.456789 51.090289) (xy 171.544394 50.959179) (xy 171.604737 50.813497) + (xy 171.6355 50.658842) (xy 171.6355 50.501158) (xy 171.6355 50.501155) (xy 171.635499 50.501153) + (xy 171.617315 50.409737) (xy 171.604737 50.346503) (xy 171.598241 50.330821) (xy 171.544397 50.200827) + (xy 171.54439 50.200814) (xy 171.479672 50.103957) (xy 171.456789 50.069711) (xy 171.456786 50.069707) + (xy 171.428232 50.041153) (xy 173.492 50.041153) (xy 173.492 50.198846) (xy 173.522761 50.353489) (xy 173.522764 50.353501) (xy 173.583102 50.499172) (xy 173.583109 50.499185) (xy 173.67071 50.630288) (xy 173.670713 50.630292) (xy 173.782207 50.741786) (xy 173.782211 50.741789) (xy 173.913314 50.82939) - (xy 173.913327 50.829397) (xy 174.043938 50.883497) (xy 174.059003 50.889737) (xy 174.213653 50.920499) + (xy 173.913327 50.829397) (xy 174.043919 50.883489) (xy 174.059003 50.889737) (xy 174.213653 50.920499) (xy 174.213656 50.9205) (xy 174.213658 50.9205) (xy 174.371344 50.9205) (xy 174.371345 50.920499) - (xy 174.525997 50.889737) (xy 174.661764 50.833501) (xy 174.671672 50.829397) (xy 174.671672 50.829396) - (xy 174.671679 50.829394) (xy 174.802789 50.741789) (xy 174.914289 50.630289) (xy 174.987211 50.521153) - (xy 178.2995 50.521153) (xy 178.2995 50.678846) (xy 178.330261 50.833489) (xy 178.330264 50.833501) - (xy 178.390602 50.979172) (xy 178.390609 50.979185) (xy 178.47821 51.110288) (xy 178.478213 51.110292) - (xy 178.589707 51.221786) (xy 178.589711 51.221789) (xy 178.720814 51.30939) (xy 178.720827 51.309397) - (xy 178.866498 51.369735) (xy 178.866503 51.369737) (xy 179.017312 51.399735) (xy 179.021153 51.400499) - (xy 179.021156 51.4005) (xy 179.021158 51.4005) (xy 179.178844 51.4005) (xy 179.178845 51.400499) - (xy 179.333497 51.369737) (xy 179.446166 51.323067) (xy 179.479172 51.309397) (xy 179.479172 51.309396) - (xy 179.479179 51.309394) (xy 179.610289 51.221789) (xy 179.721789 51.110289) (xy 179.809394 50.979179) - (xy 179.869737 50.833497) (xy 179.9005 50.678842) (xy 179.9005 50.521158) (xy 179.9005 50.521155) - (xy 179.900499 50.521153) (xy 179.891619 50.47651) (xy 179.869737 50.366503) (xy 179.864629 50.354172) - (xy 179.809397 50.220827) (xy 179.809395 50.220823) (xy 179.809394 50.220821) (xy 179.755195 50.139707) - (xy 179.721792 50.089715) (xy 179.721786 50.089707) (xy 179.718232 50.086153) (xy 183.3645 50.086153) - (xy 183.3645 50.243846) (xy 183.395261 50.398489) (xy 183.395264 50.398501) (xy 183.455602 50.544172) - (xy 183.455609 50.544185) (xy 183.54321 50.675288) (xy 183.543213 50.675292) (xy 183.654707 50.786786) - (xy 183.654711 50.786789) (xy 183.785814 50.87439) (xy 183.785827 50.874397) (xy 183.931498 50.934735) - (xy 183.931503 50.934737) (xy 184.086153 50.965499) (xy 184.086156 50.9655) (xy 184.086158 50.9655) - (xy 184.243844 50.9655) (xy 184.243845 50.965499) (xy 184.398497 50.934737) (xy 184.544179 50.874394) - (xy 184.675289 50.786789) (xy 184.786789 50.675289) (xy 184.874394 50.544179) (xy 184.934737 50.398497) - (xy 184.9655 50.243842) (xy 184.9655 50.086158) (xy 184.9655 50.086155) (xy 184.965499 50.086153) - (xy 184.953974 50.028213) (xy 184.934737 49.931503) (xy 184.922038 49.900845) (xy 184.874397 49.785827) - (xy 184.87439 49.785814) (xy 184.786789 49.654711) (xy 184.786786 49.654707) (xy 184.675292 49.543213) - (xy 184.675288 49.54321) (xy 184.544185 49.455609) (xy 184.544172 49.455602) (xy 184.398501 49.395264) - (xy 184.398489 49.395261) (xy 184.243845 49.3645) (xy 184.243842 49.3645) (xy 184.086158 49.3645) - (xy 184.086155 49.3645) (xy 183.93151 49.395261) (xy 183.931498 49.395264) (xy 183.785827 49.455602) - (xy 183.785814 49.455609) (xy 183.654711 49.54321) (xy 183.654707 49.543213) (xy 183.543213 49.654707) - (xy 183.54321 49.654711) (xy 183.455609 49.785814) (xy 183.455602 49.785827) (xy 183.395264 49.931498) - (xy 183.395261 49.93151) (xy 183.3645 50.086153) (xy 179.718232 50.086153) (xy 179.610292 49.978213) - (xy 179.610288 49.97821) (xy 179.479185 49.890609) (xy 179.479172 49.890602) (xy 179.333501 49.830264) - (xy 179.333489 49.830261) (xy 179.178845 49.7995) (xy 179.178842 49.7995) (xy 179.021158 49.7995) - (xy 179.021155 49.7995) (xy 178.86651 49.830261) (xy 178.866498 49.830264) (xy 178.720827 49.890602) - (xy 178.720814 49.890609) (xy 178.589711 49.97821) (xy 178.589707 49.978213) (xy 178.478213 50.089707) - (xy 178.47821 50.089711) (xy 178.390609 50.220814) (xy 178.390602 50.220827) (xy 178.330264 50.366498) - (xy 178.330261 50.36651) (xy 178.2995 50.521153) (xy 174.987211 50.521153) (xy 175.001894 50.499179) - (xy 175.007646 50.485292) (xy 175.014969 50.467614) (xy 175.044423 50.396503) (xy 175.062237 50.353497) - (xy 175.093 50.198842) (xy 175.093 50.041158) (xy 175.093 50.041155) (xy 175.092999 50.041153) (xy 175.084933 50.000602) - (xy 175.062237 49.886503) (xy 175.059652 49.880263) (xy 175.001897 49.740827) (xy 175.00189 49.740814) - (xy 174.914289 49.609711) (xy 174.914286 49.609707) (xy 174.802792 49.498213) (xy 174.802788 49.49821) - (xy 174.671685 49.410609) (xy 174.671672 49.410602) (xy 174.526001 49.350264) (xy 174.525989 49.350261) - (xy 174.371345 49.3195) (xy 174.371342 49.3195) (xy 174.213658 49.3195) (xy 174.213655 49.3195) - (xy 174.05901 49.350261) (xy 174.058998 49.350264) (xy 173.913327 49.410602) (xy 173.913314 49.410609) - (xy 173.782211 49.49821) (xy 173.782207 49.498213) (xy 173.670713 49.609707) (xy 173.67071 49.609711) - (xy 173.583109 49.740814) (xy 173.583102 49.740827) (xy 173.522764 49.886498) (xy 173.522761 49.88651) - (xy 173.492 50.041153) (xy 171.398232 50.041153) (xy 171.365292 50.008213) (xy 171.365288 50.00821) - (xy 171.234185 49.920609) (xy 171.234172 49.920602) (xy 171.088501 49.860264) (xy 171.088489 49.860261) - (xy 170.933845 49.8295) (xy 170.933842 49.8295) (xy 170.776158 49.8295) (xy 170.776155 49.8295) - (xy 170.62151 49.860261) (xy 170.621498 49.860264) (xy 170.475827 49.920602) (xy 170.475814 49.920609) - (xy 170.344711 50.00821) (xy 170.344707 50.008213) (xy 170.233213 50.119707) (xy 170.23321 50.119711) - (xy 170.145609 50.250814) (xy 170.145602 50.250827) (xy 170.085264 50.396498) (xy 170.085261 50.39651) - (xy 170.0545 50.551153) (xy 168.108 50.551153) (xy 168.108 50.531158) (xy 168.108 50.531155) (xy 168.107999 50.531153) - (xy 168.10175 50.499737) (xy 168.077237 50.376503) (xy 168.067708 50.353497) (xy 168.016897 50.230827) - (xy 168.01689 50.230814) (xy 167.929289 50.099711) (xy 167.929286 50.099707) (xy 167.817792 49.988213) - (xy 167.817788 49.98821) (xy 167.686685 49.900609) (xy 167.686672 49.900602) (xy 167.541001 49.840264) - (xy 167.540989 49.840261) (xy 167.386345 49.8095) (xy 167.386342 49.8095) (xy 167.228658 49.8095) - (xy 167.228655 49.8095) (xy 167.07401 49.840261) (xy 167.073998 49.840264) (xy 166.928327 49.900602) - (xy 166.928314 49.900609) (xy 166.797211 49.98821) (xy 166.797207 49.988213) (xy 166.685713 50.099707) - (xy 166.68571 50.099711) (xy 166.598109 50.230814) (xy 166.598102 50.230827) (xy 166.537764 50.376498) - (xy 166.537761 50.37651) (xy 166.507 50.531153) (xy 160.450608 50.531153) (xy 160.444359 50.499738) - (xy 160.439737 50.476503) (xy 160.424366 50.439394) (xy 160.379397 50.330827) (xy 160.37939 50.330814) - (xy 160.291789 50.199711) (xy 160.291786 50.199707) (xy 160.180292 50.088213) (xy 160.180288 50.08821) - (xy 160.049185 50.000609) (xy 160.049172 50.000602) (xy 159.903501 49.940264) (xy 159.903489 49.940261) - (xy 159.748845 49.9095) (xy 159.748842 49.9095) (xy 159.591158 49.9095) (xy 159.591155 49.9095) - (xy 159.43651 49.940261) (xy 159.436498 49.940264) (xy 159.290827 50.000602) (xy 159.290814 50.000609) - (xy 159.159711 50.08821) (xy 159.159707 50.088213) (xy 159.048213 50.199707) (xy 159.04821 50.199711) - (xy 158.960609 50.330814) (xy 158.960602 50.330827) (xy 158.900264 50.476498) (xy 158.900261 50.47651) - (xy 158.8695 50.631153) (xy 154.698807 50.631153) (xy 156.533202 48.816562) (xy 156.594703 48.783413) - (xy 156.620677 48.78072) + (xy 174.525997 50.889737) (xy 174.671679 50.829394) (xy 174.802789 50.741789) (xy 174.914289 50.630289) + (xy 175.001894 50.499179) (xy 175.062237 50.353497) (xy 175.093 50.198842) (xy 175.093 50.086153) + (xy 183.3645 50.086153) (xy 183.3645 50.243846) (xy 183.395261 50.398489) (xy 183.395264 50.398501) + (xy 183.455602 50.544172) (xy 183.455609 50.544185) (xy 183.54321 50.675288) (xy 183.543213 50.675292) + (xy 183.654707 50.786786) (xy 183.654711 50.786789) (xy 183.785814 50.87439) (xy 183.785827 50.874397) + (xy 183.931498 50.934735) (xy 183.931503 50.934737) (xy 184.054411 50.959185) (xy 184.086153 50.965499) + (xy 184.086156 50.9655) (xy 184.086158 50.9655) (xy 184.243844 50.9655) (xy 184.243845 50.965499) + (xy 184.398497 50.934737) (xy 184.532108 50.879394) (xy 184.544172 50.874397) (xy 184.544172 50.874396) + (xy 184.544179 50.874394) (xy 184.675289 50.786789) (xy 184.786789 50.675289) (xy 184.874394 50.544179) + (xy 184.885398 50.517614) (xy 184.927276 50.41651) (xy 184.934737 50.398497) (xy 184.9655 50.243842) + (xy 184.9655 50.091153) (xy 189.5995 50.091153) (xy 189.5995 50.248846) (xy 189.630261 50.403489) + (xy 189.630264 50.403501) (xy 189.690602 50.549172) (xy 189.690609 50.549185) (xy 189.77821 50.680288) + (xy 189.778213 50.680292) (xy 189.889707 50.791786) (xy 189.889711 50.791789) (xy 190.020814 50.87939) + (xy 190.020827 50.879397) (xy 190.12006 50.9205) (xy 190.166503 50.939737) (xy 190.321153 50.970499) + (xy 190.321156 50.9705) (xy 190.321158 50.9705) (xy 190.478844 50.9705) (xy 190.478845 50.970499) + (xy 190.633497 50.939737) (xy 190.769264 50.883501) (xy 190.779172 50.879397) (xy 190.779172 50.879396) + (xy 190.779179 50.879394) (xy 190.910289 50.791789) (xy 191.021789 50.680289) (xy 191.094711 50.571153) + (xy 198.0045 50.571153) (xy 198.0045 50.728846) (xy 198.035261 50.883489) (xy 198.035264 50.883501) + (xy 198.095602 51.029172) (xy 198.095609 51.029185) (xy 198.18321 51.160288) (xy 198.183213 51.160292) + (xy 198.294707 51.271786) (xy 198.294711 51.271789) (xy 198.425814 51.35939) (xy 198.425827 51.359397) + (xy 198.563316 51.416346) (xy 198.571503 51.419737) (xy 198.726153 51.450499) (xy 198.726156 51.4505) + (xy 198.726158 51.4505) (xy 198.883844 51.4505) (xy 198.883845 51.450499) (xy 199.038497 51.419737) + (xy 199.184179 51.359394) (xy 199.315289 51.271789) (xy 199.426789 51.160289) (xy 199.514394 51.029179) + (xy 199.574737 50.883497) (xy 199.6055 50.728842) (xy 199.6055 50.571158) (xy 199.6055 50.571155) + (xy 199.605499 50.571153) (xy 203.0845 50.571153) (xy 203.0845 50.728846) (xy 203.115261 50.883489) + (xy 203.115264 50.883501) (xy 203.175602 51.029172) (xy 203.175609 51.029185) (xy 203.26321 51.160288) + (xy 203.263213 51.160292) (xy 203.374707 51.271786) (xy 203.374711 51.271789) (xy 203.505814 51.35939) + (xy 203.505827 51.359397) (xy 203.643316 51.416346) (xy 203.651503 51.419737) (xy 203.806153 51.450499) + (xy 203.806156 51.4505) (xy 203.806158 51.4505) (xy 203.963844 51.4505) (xy 203.963845 51.450499) + (xy 204.118497 51.419737) (xy 204.264179 51.359394) (xy 204.395289 51.271789) (xy 204.506789 51.160289) + (xy 204.594394 51.029179) (xy 204.654737 50.883497) (xy 204.6855 50.728842) (xy 204.6855 50.571158) + (xy 204.6855 50.571155) (xy 204.685499 50.571153) (xy 205.6245 50.571153) (xy 205.6245 50.728846) + (xy 205.655261 50.883489) (xy 205.655264 50.883501) (xy 205.715602 51.029172) (xy 205.715609 51.029185) + (xy 205.80321 51.160288) (xy 205.803213 51.160292) (xy 205.914707 51.271786) (xy 205.914711 51.271789) + (xy 206.045814 51.35939) (xy 206.045827 51.359397) (xy 206.183316 51.416346) (xy 206.191503 51.419737) + (xy 206.346153 51.450499) (xy 206.346156 51.4505) (xy 206.346158 51.4505) (xy 206.503844 51.4505) + (xy 206.503845 51.450499) (xy 206.658497 51.419737) (xy 206.804179 51.359394) (xy 206.935289 51.271789) + (xy 207.046789 51.160289) (xy 207.134394 51.029179) (xy 207.194737 50.883497) (xy 207.2255 50.728842) + (xy 207.2255 50.571158) (xy 207.2255 50.571155) (xy 207.225499 50.571153) (xy 207.220135 50.544185) + (xy 207.194737 50.416503) (xy 207.191935 50.409738) (xy 207.134397 50.270827) (xy 207.13439 50.270814) + (xy 207.046789 50.139711) (xy 207.046786 50.139707) (xy 206.935292 50.028213) (xy 206.935288 50.02821) + (xy 206.804185 49.940609) (xy 206.804172 49.940602) (xy 206.658501 49.880264) (xy 206.658489 49.880261) + (xy 206.503845 49.8495) (xy 206.503842 49.8495) (xy 206.346158 49.8495) (xy 206.346155 49.8495) + (xy 206.19151 49.880261) (xy 206.191498 49.880264) (xy 206.045827 49.940602) (xy 206.045814 49.940609) + (xy 205.914711 50.02821) (xy 205.914707 50.028213) (xy 205.803213 50.139707) (xy 205.80321 50.139711) + (xy 205.715609 50.270814) (xy 205.715602 50.270827) (xy 205.655264 50.416498) (xy 205.655261 50.41651) + (xy 205.6245 50.571153) (xy 204.685499 50.571153) (xy 204.680135 50.544185) (xy 204.654737 50.416503) + (xy 204.651935 50.409738) (xy 204.594397 50.270827) (xy 204.59439 50.270814) (xy 204.506789 50.139711) + (xy 204.506786 50.139707) (xy 204.395292 50.028213) (xy 204.395288 50.02821) (xy 204.264185 49.940609) + (xy 204.264172 49.940602) (xy 204.118501 49.880264) (xy 204.118489 49.880261) (xy 203.963845 49.8495) + (xy 203.963842 49.8495) (xy 203.806158 49.8495) (xy 203.806155 49.8495) (xy 203.65151 49.880261) + (xy 203.651498 49.880264) (xy 203.505827 49.940602) (xy 203.505814 49.940609) (xy 203.374711 50.02821) + (xy 203.374707 50.028213) (xy 203.263213 50.139707) (xy 203.26321 50.139711) (xy 203.175609 50.270814) + (xy 203.175602 50.270827) (xy 203.115264 50.416498) (xy 203.115261 50.41651) (xy 203.0845 50.571153) + (xy 199.605499 50.571153) (xy 199.600135 50.544185) (xy 199.574737 50.416503) (xy 199.571935 50.409738) + (xy 199.514397 50.270827) (xy 199.51439 50.270814) (xy 199.426789 50.139711) (xy 199.426786 50.139707) + (xy 199.315292 50.028213) (xy 199.315288 50.02821) (xy 199.184185 49.940609) (xy 199.184172 49.940602) + (xy 199.038501 49.880264) (xy 199.038489 49.880261) (xy 198.883845 49.8495) (xy 198.883842 49.8495) + (xy 198.726158 49.8495) (xy 198.726155 49.8495) (xy 198.57151 49.880261) (xy 198.571498 49.880264) + (xy 198.425827 49.940602) (xy 198.425814 49.940609) (xy 198.294711 50.02821) (xy 198.294707 50.028213) + (xy 198.183213 50.139707) (xy 198.18321 50.139711) (xy 198.095609 50.270814) (xy 198.095602 50.270827) + (xy 198.035264 50.416498) (xy 198.035261 50.41651) (xy 198.0045 50.571153) (xy 191.094711 50.571153) + (xy 191.109394 50.549179) (xy 191.114439 50.537) (xy 191.122469 50.517614) (xy 191.169735 50.403501) + (xy 191.169737 50.403497) (xy 191.2005 50.248842) (xy 191.2005 50.091158) (xy 191.2005 50.091155) + (xy 191.200499 50.091153) (xy 191.187979 50.02821) (xy 191.169737 49.936503) (xy 191.158552 49.9095) + (xy 191.109397 49.790827) (xy 191.10939 49.790814) (xy 191.021789 49.659711) (xy 191.021786 49.659707) + (xy 190.910292 49.548213) (xy 190.910288 49.54821) (xy 190.779185 49.460609) (xy 190.779172 49.460602) + (xy 190.633501 49.400264) (xy 190.633489 49.400261) (xy 190.478845 49.3695) (xy 190.478842 49.3695) + (xy 190.321158 49.3695) (xy 190.321155 49.3695) (xy 190.16651 49.400261) (xy 190.166498 49.400264) + (xy 190.020827 49.460602) (xy 190.020814 49.460609) (xy 189.889711 49.54821) (xy 189.889707 49.548213) + (xy 189.778213 49.659707) (xy 189.77821 49.659711) (xy 189.690609 49.790814) (xy 189.690602 49.790827) + (xy 189.630264 49.936498) (xy 189.630261 49.93651) (xy 189.5995 50.091153) (xy 184.9655 50.091153) + (xy 184.9655 50.086158) (xy 184.9655 50.086155) (xy 184.965499 50.086153) (xy 184.953974 50.028213) + (xy 184.934737 49.931503) (xy 184.925623 49.9095) (xy 184.874397 49.785827) (xy 184.87439 49.785814) + (xy 184.786789 49.654711) (xy 184.786786 49.654707) (xy 184.675292 49.543213) (xy 184.675288 49.54321) + (xy 184.544185 49.455609) (xy 184.544172 49.455602) (xy 184.398501 49.395264) (xy 184.398489 49.395261) + (xy 184.243845 49.3645) (xy 184.243842 49.3645) (xy 184.086158 49.3645) (xy 184.086155 49.3645) + (xy 183.93151 49.395261) (xy 183.931498 49.395264) (xy 183.785827 49.455602) (xy 183.785814 49.455609) + (xy 183.654711 49.54321) (xy 183.654707 49.543213) (xy 183.543213 49.654707) (xy 183.54321 49.654711) + (xy 183.455609 49.785814) (xy 183.455602 49.785827) (xy 183.395264 49.931498) (xy 183.395261 49.93151) + (xy 183.3645 50.086153) (xy 175.093 50.086153) (xy 175.093 50.041158) (xy 175.093 50.041155) (xy 175.092999 50.041153) + (xy 175.084933 50.000602) (xy 175.062237 49.886503) (xy 175.059652 49.880263) (xy 175.001897 49.740827) + (xy 175.00189 49.740814) (xy 174.914289 49.609711) (xy 174.914286 49.609707) (xy 174.802792 49.498213) + (xy 174.802788 49.49821) (xy 174.671685 49.410609) (xy 174.671672 49.410602) (xy 174.526001 49.350264) + (xy 174.525989 49.350261) (xy 174.371345 49.3195) (xy 174.371342 49.3195) (xy 174.213658 49.3195) + (xy 174.213655 49.3195) (xy 174.05901 49.350261) (xy 174.058998 49.350264) (xy 173.913327 49.410602) + (xy 173.913314 49.410609) (xy 173.782211 49.49821) (xy 173.782207 49.498213) (xy 173.670713 49.609707) + (xy 173.67071 49.609711) (xy 173.583109 49.740814) (xy 173.583102 49.740827) (xy 173.522764 49.886498) + (xy 173.522761 49.88651) (xy 173.492 50.041153) (xy 171.428232 50.041153) (xy 171.345292 49.958213) + (xy 171.345288 49.95821) (xy 171.214185 49.870609) (xy 171.214172 49.870602) (xy 171.068501 49.810264) + (xy 171.068489 49.810261) (xy 170.913845 49.7795) (xy 170.913842 49.7795) (xy 170.756158 49.7795) + (xy 170.756155 49.7795) (xy 170.60151 49.810261) (xy 170.601498 49.810264) (xy 170.455827 49.870602) + (xy 170.455814 49.870609) (xy 170.324711 49.95821) (xy 170.324707 49.958213) (xy 170.213213 50.069707) + (xy 170.21321 50.069711) (xy 170.125609 50.200814) (xy 170.125602 50.200827) (xy 170.065264 50.346498) + (xy 170.065261 50.34651) (xy 170.0345 50.501153) (xy 168.102032 50.501153) (xy 168.077237 50.376503) + (xy 168.067708 50.353497) (xy 168.016897 50.230827) (xy 168.01689 50.230814) (xy 167.929289 50.099711) + (xy 167.929286 50.099707) (xy 167.817792 49.988213) (xy 167.817788 49.98821) (xy 167.686685 49.900609) + (xy 167.686672 49.900602) (xy 167.541001 49.840264) (xy 167.540989 49.840261) (xy 167.386345 49.8095) + (xy 167.386342 49.8095) (xy 167.228658 49.8095) (xy 167.228655 49.8095) (xy 167.07401 49.840261) + (xy 167.073998 49.840264) (xy 166.928327 49.900602) (xy 166.928314 49.900609) (xy 166.797211 49.98821) + (xy 166.797207 49.988213) (xy 166.685713 50.099707) (xy 166.68571 50.099711) (xy 166.598109 50.230814) + (xy 166.598102 50.230827) (xy 166.537764 50.376498) (xy 166.537761 50.37651) (xy 166.507 50.531153) + (xy 160.450608 50.531153) (xy 160.444641 50.501158) (xy 160.439737 50.476503) (xy 160.424824 50.440499) + (xy 160.379397 50.330827) (xy 160.37939 50.330814) (xy 160.291789 50.199711) (xy 160.291786 50.199707) + (xy 160.180292 50.088213) (xy 160.180288 50.08821) (xy 160.049185 50.000609) (xy 160.049172 50.000602) + (xy 159.903501 49.940264) (xy 159.903489 49.940261) (xy 159.748845 49.9095) (xy 159.748842 49.9095) + (xy 159.591158 49.9095) (xy 159.591155 49.9095) (xy 159.43651 49.940261) (xy 159.436498 49.940264) + (xy 159.290827 50.000602) (xy 159.290814 50.000609) (xy 159.159711 50.08821) (xy 159.159707 50.088213) + (xy 159.048213 50.199707) (xy 159.04821 50.199711) (xy 158.960609 50.330814) (xy 158.960602 50.330827) + (xy 158.900264 50.476498) (xy 158.900261 50.47651) (xy 158.8695 50.631153) (xy 154.666678 50.631153) + (xy 156.481156 48.827422) (xy 156.542577 48.79412) (xy 156.568837 48.791364) ) ) ) diff --git a/hardware/re-bba-rb/re-bba-rb.kicad_prl b/hardware/re-bba-rb/re-bba-rb.kicad_prl index 9cc0518..8f96d17 100644 --- a/hardware/re-bba-rb/re-bba-rb.kicad_prl +++ b/hardware/re-bba-rb/re-bba-rb.kicad_prl @@ -1,6 +1,6 @@ { "board": { - "active_layer": 5, + "active_layer": 4, "active_layer_preset": "", "auto_track_width": true, "hidden_netclasses": [], @@ -53,7 +53,7 @@ "board_outline_area", "ly_points" ], - "visible_layers": "ffffffff_ffffffff_ffffffff_ffffff5f", + "visible_layers": "ffffffff_ffffffff_ffffffff_ffffffff", "zone_display_mode": 0 }, "git": { diff --git a/hardware/re-bba-rb/re-bba-rb.kicad_pro b/hardware/re-bba-rb/re-bba-rb.kicad_pro index 0ef53f4..eb8d3ab 100644 --- a/hardware/re-bba-rb/re-bba-rb.kicad_pro +++ b/hardware/re-bba-rb/re-bba-rb.kicad_pro @@ -148,20 +148,20 @@ "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, - "min_copper_edge_clearance": 0.5, + "min_copper_edge_clearance": 0.2, "min_groove_width": 0.0, - "min_hole_clearance": 0.25, - "min_hole_to_hole": 0.25, + "min_hole_clearance": 0.15, + "min_hole_to_hole": 0.2, "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_through_hole_diameter": 0.2, "min_track_width": 0.2, - "min_via_annular_width": 0.1, - "min_via_diameter": 0.5, + "min_via_annular_width": 0.05, + "min_via_diameter": 0.3, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, @@ -508,7 +508,7 @@ "classes": [ { "bus_width": 12, - "clearance": 0.2, + "clearance": 0.15, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, @@ -537,7 +537,7 @@ "last_paths": { "idf": "", "netlist": "", - "plot": "", + "plot": "gerbers/", "specctra_dsn": "", "vrml": "" }, @@ -677,6 +677,78 @@ "label": "#", "name": "${ITEM_NUMBER}", "show": false + }, + { + "group_by": false, + "label": "ESR", + "name": "ESR", + "show": false + }, + { + "group_by": false, + "label": "PARTREV", + "name": "PARTREV", + "show": false + }, + { + "group_by": false, + "label": "LCSC", + "name": "LCSC", + "show": false + }, + { + "group_by": false, + "label": "MAXIMUM_PACKAGE_HEIGHT", + "name": "MAXIMUM_PACKAGE_HEIGHT", + "show": false + }, + { + "group_by": false, + "label": "STANDARD", + "name": "STANDARD", + "show": false + }, + { + "group_by": false, + "label": "Tolerance", + "name": "Tolerance", + "show": false + }, + { + "group_by": false, + "label": "Type", + "name": "Type", + "show": false + }, + { + "group_by": false, + "label": "V", + "name": "V", + "show": false + }, + { + "group_by": false, + "label": "CL", + "name": "CL", + "show": false + }, + { + "group_by": false, + "label": "Current", + "name": "Current", + "show": false + }, + { + "group_by": false, + "label": "MPN", + "name": "MPN", + "show": false + }, + { + "group_by": false, + "label": "C0", + "name": "C0", + "show": false } ], "filter_string": "", diff --git a/hardware/re-bba-rb/sym-lib-table b/hardware/re-bba-rb/sym-lib-table index 57a35b1..2f160ba 100644 --- a/hardware/re-bba-rb/sym-lib-table +++ b/hardware/re-bba-rb/sym-lib-table @@ -1,4 +1,6 @@ (sym_lib_table (version 7) (lib (name "GameCube")(type "KiCad")(uri "${KIPRJMOD}/../sp1_test_plug/symbols/GameCube.kicad_sym")(options "")(descr "GameCube SP1 connector")) + (lib (name "TPS562201DDCR")(type "KiCad")(uri "${KIPRJMOD}/../TPS562201DDCR.kicad_sym")(options "")(descr "TPS562201 buck (custom)")) + (lib (name "HR911105A")(type "KiCad")(uri "${KIPRJMOD}/../HR911105A.kicad_sym")(options "")(descr "HanRun HR911105A RJ45 magjack (custom)")) )